From 5d4b59ea18d4b74c3247603299f3972940c5f7bd Mon Sep 17 00:00:00 2001 From: Emine A-Y Date: Sun, 7 Dec 2025 12:50:57 +0100 Subject: [PATCH 1/3] Adding Hackaton Project : CineMatch --- apps/CineMatch/Dockerfile | 51 + apps/CineMatch/Makefile | 23 + apps/CineMatch/cloudbuild.yaml | 59 + apps/CineMatch/cloudrun.yaml | 88 + apps/CineMatch/deploy.sh | 153 + apps/CineMatch/next-env.d.ts | 5 + apps/CineMatch/next.config.mjs | 105 + apps/CineMatch/notes/notes.md | 21 + apps/CineMatch/package-lock.json | 9335 + apps/CineMatch/package.json | 55 + apps/CineMatch/postcss.config.mjs | 9 + .../public/.well-known/arw-manifest.json | 207 + apps/CineMatch/public/cross.png | Bin 0 -> 49132 bytes apps/CineMatch/public/heart.png | Bin 0 -> 66598 bytes apps/CineMatch/public/llms.txt | 93 + apps/CineMatch/public/llms/home.llm.md | 74 + apps/CineMatch/public/logo.png | Bin 0 -> 57065 bytes apps/CineMatch/public/world-countries.json | 182 + apps/CineMatch/scripts/seed-data.ts | 162 + apps/CineMatch/scripts/sync-embeddings.ts | 340 + apps/CineMatch/scripts/test-agent.ts | 30 + apps/CineMatch/scripts/test-sorting.ts | 36 + apps/CineMatch/src/app/api/discover/route.ts | 99 + apps/CineMatch/src/app/api/feedback/route.ts | 28 + apps/CineMatch/src/app/api/health/route.ts | 114 + .../src/app/api/movies/[id]/route.ts | 39 + .../src/app/api/preferences/route.ts | 218 + apps/CineMatch/src/app/api/recommend/route.ts | 28 + .../src/app/api/recommendations/route.ts | 216 + apps/CineMatch/src/app/api/search/route.ts | 110 + apps/CineMatch/src/app/api/tv/[id]/route.ts | 39 + apps/CineMatch/src/app/globals.css | 86 + apps/CineMatch/src/app/history/page.tsx | 73 + apps/CineMatch/src/app/layout.tsx | 43 + apps/CineMatch/src/app/page.tsx | 377 + apps/CineMatch/src/app/providers.tsx | 22 + .../src/components/CountrySelector.tsx | 107 + .../CineMatch/src/components/DetailsModal.tsx | 139 + apps/CineMatch/src/components/LeafletMap.tsx | 119 + apps/CineMatch/src/components/MediaCard.tsx | 87 + apps/CineMatch/src/components/Onboarding.tsx | 268 + .../src/components/RecommendationsSection.tsx | 54 + apps/CineMatch/src/components/SearchBar.tsx | 76 + apps/CineMatch/src/components/SwipeCard.tsx | 120 + .../src/components/TrendingSection.tsx | 48 + .../src/components/detail/Backdrop.tsx | 35 + .../src/components/detail/CastSection.tsx | 68 + .../src/components/detail/DetailHero.tsx | 184 + .../src/components/detail/RelatedSection.tsx | 75 + .../src/components/detail/VideoSection.tsx | 76 + apps/CineMatch/src/components/detail/index.ts | 5 + apps/CineMatch/src/data/db.json | 268060 +++++++++++++++ apps/CineMatch/src/lib/country-codes.ts | 8 + apps/CineMatch/src/lib/local-db.ts | 175 + apps/CineMatch/src/lib/mock-tmdb.ts | 98 + .../src/lib/natural-language-search.ts | 405 + apps/CineMatch/src/lib/preferences.ts | 290 + apps/CineMatch/src/lib/tmdb.ts | 610 + apps/CineMatch/src/lib/vector-db.ts | 457 + apps/CineMatch/src/lib/vector-search.ts | 355 + apps/CineMatch/src/store/match-store.ts | 123 + apps/CineMatch/src/types/media.ts | 170 + apps/CineMatch/tailwind.config.ts | 19 + apps/CineMatch/tsconfig.json | 33 + 64 files changed, 284784 insertions(+) create mode 100644 apps/CineMatch/Dockerfile create mode 100644 apps/CineMatch/Makefile create mode 100644 apps/CineMatch/cloudbuild.yaml create mode 100644 apps/CineMatch/cloudrun.yaml create mode 100755 apps/CineMatch/deploy.sh create mode 100644 apps/CineMatch/next-env.d.ts create mode 100644 apps/CineMatch/next.config.mjs create mode 100644 apps/CineMatch/notes/notes.md create mode 100644 apps/CineMatch/package-lock.json create mode 100644 apps/CineMatch/package.json create mode 100644 apps/CineMatch/postcss.config.mjs create mode 100644 apps/CineMatch/public/.well-known/arw-manifest.json create mode 100644 apps/CineMatch/public/cross.png create mode 100644 apps/CineMatch/public/heart.png create mode 100644 apps/CineMatch/public/llms.txt create mode 100644 apps/CineMatch/public/llms/home.llm.md create mode 100644 apps/CineMatch/public/logo.png create mode 100644 apps/CineMatch/public/world-countries.json create mode 100644 apps/CineMatch/scripts/seed-data.ts create mode 100644 apps/CineMatch/scripts/sync-embeddings.ts create mode 100644 apps/CineMatch/scripts/test-agent.ts create mode 100644 apps/CineMatch/scripts/test-sorting.ts create mode 100644 apps/CineMatch/src/app/api/discover/route.ts create mode 100644 apps/CineMatch/src/app/api/feedback/route.ts create mode 100644 apps/CineMatch/src/app/api/health/route.ts create mode 100644 apps/CineMatch/src/app/api/movies/[id]/route.ts create mode 100644 apps/CineMatch/src/app/api/preferences/route.ts create mode 100644 apps/CineMatch/src/app/api/recommend/route.ts create mode 100644 apps/CineMatch/src/app/api/recommendations/route.ts create mode 100644 apps/CineMatch/src/app/api/search/route.ts create mode 100644 apps/CineMatch/src/app/api/tv/[id]/route.ts create mode 100644 apps/CineMatch/src/app/globals.css create mode 100644 apps/CineMatch/src/app/history/page.tsx create mode 100644 apps/CineMatch/src/app/layout.tsx create mode 100644 apps/CineMatch/src/app/page.tsx create mode 100644 apps/CineMatch/src/app/providers.tsx create mode 100644 apps/CineMatch/src/components/CountrySelector.tsx create mode 100644 apps/CineMatch/src/components/DetailsModal.tsx create mode 100644 apps/CineMatch/src/components/LeafletMap.tsx create mode 100644 apps/CineMatch/src/components/MediaCard.tsx create mode 100644 apps/CineMatch/src/components/Onboarding.tsx create mode 100644 apps/CineMatch/src/components/RecommendationsSection.tsx create mode 100644 apps/CineMatch/src/components/SearchBar.tsx create mode 100644 apps/CineMatch/src/components/SwipeCard.tsx create mode 100644 apps/CineMatch/src/components/TrendingSection.tsx create mode 100644 apps/CineMatch/src/components/detail/Backdrop.tsx create mode 100644 apps/CineMatch/src/components/detail/CastSection.tsx create mode 100644 apps/CineMatch/src/components/detail/DetailHero.tsx create mode 100644 apps/CineMatch/src/components/detail/RelatedSection.tsx create mode 100644 apps/CineMatch/src/components/detail/VideoSection.tsx create mode 100644 apps/CineMatch/src/components/detail/index.ts create mode 100644 apps/CineMatch/src/data/db.json create mode 100644 apps/CineMatch/src/lib/country-codes.ts create mode 100644 apps/CineMatch/src/lib/local-db.ts create mode 100644 apps/CineMatch/src/lib/mock-tmdb.ts create mode 100644 apps/CineMatch/src/lib/natural-language-search.ts create mode 100644 apps/CineMatch/src/lib/preferences.ts create mode 100644 apps/CineMatch/src/lib/tmdb.ts create mode 100644 apps/CineMatch/src/lib/vector-db.ts create mode 100644 apps/CineMatch/src/lib/vector-search.ts create mode 100644 apps/CineMatch/src/store/match-store.ts create mode 100644 apps/CineMatch/src/types/media.ts create mode 100644 apps/CineMatch/tailwind.config.ts create mode 100644 apps/CineMatch/tsconfig.json diff --git a/apps/CineMatch/Dockerfile b/apps/CineMatch/Dockerfile new file mode 100644 index 00000000..14563960 --- /dev/null +++ b/apps/CineMatch/Dockerfile @@ -0,0 +1,51 @@ +# Multi-stage build for CineMatch Platform +# Optimized for Google Cloud Run deployment + +# Stage 1: Dependencies +FROM node:20-alpine AS deps +RUN apk add --no-cache libc6-compat +WORKDIR /app + +# Copy package files +COPY package.json package-lock.json* ./ +RUN npm ci --only=production + +# Stage 2: Builder +FROM node:20-alpine AS builder +WORKDIR /app + +# Copy dependencies +COPY --from=deps /app/node_modules ./node_modules +COPY . . + +# Set environment for build +ENV NEXT_TELEMETRY_DISABLED 1 +ENV NODE_ENV production + +# Build the application +RUN npm run build + +# Stage 3: Runner +FROM node:20-alpine AS runner +WORKDIR /app + +ENV NODE_ENV production +ENV NEXT_TELEMETRY_DISABLED 1 + +# Create non-root user +RUN addgroup --system --gid 1001 nodejs +RUN adduser --system --uid 1001 nextjs + +# Copy built application +COPY --from=builder /app/public ./public +COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ +COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static + +USER nextjs + +# Cloud Run uses PORT environment variable +EXPOSE 8080 +ENV PORT 8080 +ENV HOSTNAME "0.0.0.0" + +CMD ["node", "server.js"] diff --git a/apps/CineMatch/Makefile b/apps/CineMatch/Makefile new file mode 100644 index 00000000..fc47a467 --- /dev/null +++ b/apps/CineMatch/Makefile @@ -0,0 +1,23 @@ +# Makefile for Movie Match App + +.PHONY: run install build lint test + +# Default target +run: + npm run dev + +# Install dependencies +install: + npm install + +# Build for production +build: + npm run build + +# Lint code +lint: + npm run lint + +# Run tests +test: + npm run test diff --git a/apps/CineMatch/cloudbuild.yaml b/apps/CineMatch/cloudbuild.yaml new file mode 100644 index 00000000..16ff5baa --- /dev/null +++ b/apps/CineMatch/cloudbuild.yaml @@ -0,0 +1,59 @@ +# Google Cloud Build configuration +# Builds and deploys the Media Discovery Platform to Cloud Run + +steps: + # Build the container image + - name: 'gcr.io/cloud-builders/docker' + args: + - 'build' + - '-t' + - 'gcr.io/$PROJECT_ID/media-discovery:$COMMIT_SHA' + - '-t' + - 'gcr.io/$PROJECT_ID/media-discovery:latest' + - '.' + + # Push to Container Registry + - name: 'gcr.io/cloud-builders/docker' + args: + - 'push' + - 'gcr.io/$PROJECT_ID/media-discovery:$COMMIT_SHA' + + - name: 'gcr.io/cloud-builders/docker' + args: + - 'push' + - 'gcr.io/$PROJECT_ID/media-discovery:latest' + + # Deploy to Cloud Run + - name: 'gcr.io/google.com/cloudsdktool/cloud-sdk' + entrypoint: gcloud + args: + - 'run' + - 'deploy' + - 'media-discovery' + - '--image' + - 'gcr.io/$PROJECT_ID/media-discovery:$COMMIT_SHA' + - '--region' + - '${_REGION}' + - '--platform' + - 'managed' + - '--allow-unauthenticated' + - '--memory' + - '1Gi' + - '--cpu' + - '2' + - '--min-instances' + - '0' + - '--max-instances' + - '10' + - '--set-env-vars' + - 'NODE_ENV=production' + +substitutions: + _REGION: us-central1 + +options: + logging: CLOUD_LOGGING_ONLY + +images: + - 'gcr.io/$PROJECT_ID/media-discovery:$COMMIT_SHA' + - 'gcr.io/$PROJECT_ID/media-discovery:latest' diff --git a/apps/CineMatch/cloudrun.yaml b/apps/CineMatch/cloudrun.yaml new file mode 100644 index 00000000..1e8f2247 --- /dev/null +++ b/apps/CineMatch/cloudrun.yaml @@ -0,0 +1,88 @@ +# Cloud Run service configuration +# Media Discovery Platform - Production deployment + +apiVersion: serving.knative.dev/v1 +kind: Service +metadata: + name: media-discovery + labels: + app: media-discovery + version: v1 + annotations: + run.googleapis.com/description: "AI-native media discovery platform with natural language search" + run.googleapis.com/ingress: all +spec: + template: + metadata: + annotations: + # Performance optimizations + run.googleapis.com/startup-cpu-boost: "true" + run.googleapis.com/cpu-throttling: "false" + run.googleapis.com/execution-environment: gen2 + + # Scaling configuration + autoscaling.knative.dev/minScale: "0" + autoscaling.knative.dev/maxScale: "20" + + # Request handling + run.googleapis.com/container-dependencies: "{}" + + spec: + containerConcurrency: 80 + timeoutSeconds: 300 + + containers: + - image: gcr.io/PROJECT_ID/media-discovery:latest + ports: + - containerPort: 8080 + + resources: + limits: + cpu: "2" + memory: "2Gi" + + env: + - name: NODE_ENV + value: "production" + - name: NEXT_TELEMETRY_DISABLED + value: "1" + + # TMDB API (from Secret Manager) + - name: NEXT_PUBLIC_TMDB_ACCESS_TOKEN + valueFrom: + secretKeyRef: + name: tmdb-access-token + key: latest + + # OpenAI API (from Secret Manager) + - name: OPENAI_API_KEY + valueFrom: + secretKeyRef: + name: openai-api-key + key: latest + + # RuVector endpoint + - name: RUVECTOR_ENDPOINT + value: "https://ruvector-SERVICE_ID.run.app" + + # Health checks + startupProbe: + httpGet: + path: /api/health + port: 8080 + initialDelaySeconds: 0 + periodSeconds: 2 + timeoutSeconds: 2 + failureThreshold: 30 + + livenessProbe: + httpGet: + path: /api/health + port: 8080 + periodSeconds: 30 + timeoutSeconds: 5 + failureThreshold: 3 + + traffic: + - percent: 100 + latestRevision: true diff --git a/apps/CineMatch/deploy.sh b/apps/CineMatch/deploy.sh new file mode 100755 index 00000000..69d504aa --- /dev/null +++ b/apps/CineMatch/deploy.sh @@ -0,0 +1,153 @@ +#!/bin/bash +# Deployment script for CineMatch Platform +# Usage: ./deploy.sh [command] + +set -e + +# Configuration +PROJECT_ID="${GCP_PROJECT_ID:-your-project-id}" +REGION="${GCP_REGION:-us-central1}" +SERVICE_NAME="media-discovery" +IMAGE_NAME="gcr.io/${PROJECT_ID}/${SERVICE_NAME}" + +# Colors for output +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +NC='\033[0m' + +log_info() { echo -e "${GREEN}[INFO]${NC} $1"; } +log_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; } +log_error() { echo -e "${RED}[ERROR]${NC} $1"; } + +# Commands +case "${1:-help}" in + setup) + log_info "Setting up GCP project..." + + # Enable required APIs + gcloud services enable \ + run.googleapis.com \ + cloudbuild.googleapis.com \ + containerregistry.googleapis.com \ + secretmanager.googleapis.com \ + firestore.googleapis.com \ + --project="${PROJECT_ID}" + + log_info "Creating secrets (you'll need to add values)..." + + # Create secrets if they don't exist + gcloud secrets describe tmdb-access-token --project="${PROJECT_ID}" 2>/dev/null || \ + gcloud secrets create tmdb-access-token --project="${PROJECT_ID}" + + gcloud secrets describe openai-api-key --project="${PROJECT_ID}" 2>/dev/null || \ + gcloud secrets create openai-api-key --project="${PROJECT_ID}" + + log_info "Setup complete! Add secret values with:" + echo " gcloud secrets versions add tmdb-access-token --data-file=- <<< 'YOUR_TOKEN'" + echo " gcloud secrets versions add openai-api-key --data-file=- <<< 'YOUR_KEY'" + ;; + + build) + TAG="${2:-latest}" + log_info "Building Docker image: ${IMAGE_NAME}:${TAG}" + + docker build -t "${IMAGE_NAME}:${TAG}" . + ;; + + build-cloud) + TAG="${2:-latest}" + log_info "Building with Cloud Build: ${IMAGE_NAME}:${TAG}" + + gcloud builds submit --tag "${IMAGE_NAME}:${TAG}" --project="${PROJECT_ID}" + ;; + + push) + TAG="${2:-latest}" + log_info "Pushing image to Container Registry..." + + docker push "${IMAGE_NAME}:${TAG}" + ;; + + deploy) + TAG="${2:-latest}" + log_info "Deploying to Cloud Run..." + + gcloud run deploy "${SERVICE_NAME}" \ + --image "${IMAGE_NAME}:${TAG}" \ + --region "${REGION}" \ + --platform managed \ + --allow-unauthenticated \ + --memory 2Gi \ + --cpu 2 \ + --min-instances 0 \ + --max-instances 20 \ + --set-env-vars "NODE_ENV=production" \ + --set-secrets "NEXT_PUBLIC_TMDB_ACCESS_TOKEN=tmdb-access-token:latest,OPENAI_API_KEY=openai-api-key:latest" \ + --project="${PROJECT_ID}" + + URL=$(gcloud run services describe "${SERVICE_NAME}" --region="${REGION}" --format='value(status.url)' --project="${PROJECT_ID}") + log_info "Deployed to: ${URL}" + ;; + + deploy-ruvector) + log_info "Deploying RuVector service..." + + # Deploy RuVector from the repos directory + pushd ../../repos/ruvector-main/examples/google-cloud + ./deploy.sh build Dockerfile.simple latest + ./deploy.sh push latest + ./deploy.sh deploy latest false + popd + + RUVECTOR_URL=$(gcloud run services describe ruvector-benchmark --region="${REGION}" --format='value(status.url)' --project="${PROJECT_ID}") + log_info "RuVector deployed to: ${RUVECTOR_URL}" + log_info "Update RUVECTOR_ENDPOINT in your deployment." + ;; + + logs) + log_info "Fetching logs..." + gcloud run services logs read "${SERVICE_NAME}" --region="${REGION}" --project="${PROJECT_ID}" --limit="${2:-100}" + ;; + + status) + log_info "Service status:" + gcloud run services describe "${SERVICE_NAME}" --region="${REGION}" --project="${PROJECT_ID}" --format='yaml(status)' + ;; + + url) + URL=$(gcloud run services describe "${SERVICE_NAME}" --region="${REGION}" --format='value(status.url)' --project="${PROJECT_ID}") + echo "${URL}" + ;; + + cleanup) + log_warn "This will delete the Cloud Run service. Continue? (y/N)" + read -r confirm + if [[ "${confirm}" == "y" ]]; then + gcloud run services delete "${SERVICE_NAME}" --region="${REGION}" --project="${PROJECT_ID}" --quiet + log_info "Service deleted." + fi + ;; + + help|*) + echo "CineMatch Platform - Deployment Script" + echo "" + echo "Usage: ./deploy.sh [command] [options]" + echo "" + echo "Commands:" + echo " setup - Enable GCP APIs and create secrets" + echo " build [tag] - Build Docker image locally" + echo " build-cloud [tag] - Build with Cloud Build" + echo " push [tag] - Push image to Container Registry" + echo " deploy [tag] - Deploy to Cloud Run" + echo " deploy-ruvector - Deploy RuVector service" + echo " logs [count] - View service logs" + echo " status - Show service status" + echo " url - Get service URL" + echo " cleanup - Delete the service" + echo "" + echo "Environment variables:" + echo " GCP_PROJECT_ID - Google Cloud project ID" + echo " GCP_REGION - Deployment region (default: us-central1)" + ;; +esac diff --git a/apps/CineMatch/next-env.d.ts b/apps/CineMatch/next-env.d.ts new file mode 100644 index 00000000..40c3d680 --- /dev/null +++ b/apps/CineMatch/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. diff --git a/apps/CineMatch/next.config.mjs b/apps/CineMatch/next.config.mjs new file mode 100644 index 00000000..55299720 --- /dev/null +++ b/apps/CineMatch/next.config.mjs @@ -0,0 +1,105 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + // Enable standalone output for Docker/Cloud Run deployment + output: 'standalone', + + // Image optimization for TMDB images + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'image.tmdb.org', + pathname: '/t/p/**', + }, + ], + // Optimize for common poster sizes + deviceSizes: [640, 750, 828, 1080, 1200, 1920], + imageSizes: [16, 32, 48, 64, 96, 128, 256, 384, 500], + }, + + // Headers for ARW discovery + async headers() { + return [ + { + source: '/:path*', + headers: [ + { + key: 'X-ARW-Version', + value: '0.1', + }, + ], + }, + { + source: '/.well-known/arw-manifest.json', + headers: [ + { + key: 'Cache-Control', + value: 'public, max-age=3600, stale-while-revalidate=86400', + }, + { + key: 'Content-Type', + value: 'application/json', + }, + ], + }, + { + source: '/llms.txt', + headers: [ + { + key: 'Cache-Control', + value: 'public, max-age=3600, stale-while-revalidate=86400', + }, + { + key: 'Content-Type', + value: 'text/plain; charset=utf-8', + }, + ], + }, + { + source: '/llms/:path*.llm.md', + headers: [ + { + key: 'Cache-Control', + value: 'public, max-age=3600, stale-while-revalidate=86400', + }, + { + key: 'Content-Type', + value: 'text/markdown; charset=utf-8', + }, + ], + }, + ]; + }, + + // Redirects for legacy paths + async redirects() { + return [ + { + source: '/arw-manifest.json', + destination: '/.well-known/arw-manifest.json', + permanent: true, + }, + ]; + }, + + // Experimental features + experimental: { + // Enable server actions + serverActions: { + bodySizeLimit: '2mb', + }, + // Exclude native modules from webpack bundling + serverComponentsExternalPackages: [ + 'ruvector', + '@ruvector/core', + '@ruvector/sona', + '@ruvector/sona-darwin-arm64', + '@ruvector/sona-darwin-x64', + '@ruvector/sona-linux-x64-gnu', + '@ruvector/sona-linux-arm64-gnu', + '@ruvector/sona-win32-x64-msvc', + ], + }, +}; + +export default nextConfig; diff --git a/apps/CineMatch/notes/notes.md b/apps/CineMatch/notes/notes.md new file mode 100644 index 00000000..e7c5d774 --- /dev/null +++ b/apps/CineMatch/notes/notes.md @@ -0,0 +1,21 @@ +⏺ Dev server is running and healthy. The sync was successful: + +Summary: + +- 100 embeddings generated from trending content +- 22 unique vectors in the database (some may have been duplicates from previous runs) +- All services are up: TMDB, RuVector, OpenAI + +The database was locked because RuVector uses a file-based storage (./data/media-vectors.db) that only +allows one process at a time. You need to stop the dev server before running npm run embed:sync, then +restart it after. + +To sync more content in the future: + +# Stop the dev server first (Ctrl+C) + +npm run embed:sync + +# Then restart + +npm run dev diff --git a/apps/CineMatch/package-lock.json b/apps/CineMatch/package-lock.json new file mode 100644 index 00000000..1e725687 --- /dev/null +++ b/apps/CineMatch/package-lock.json @@ -0,0 +1,9335 @@ +{ + "name": "@arw/movie-match", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@arw/movie-match", + "version": "0.1.0", + "dependencies": { + "@ai-sdk/google": "^1.0.0", + "@ai-sdk/openai": "^1.0.0", + "@tanstack/react-query": "^5.60.0", + "@types/leaflet": "^1.9.21", + "ai": "^4.0.0", + "clsx": "^2.1.1", + "framer-motion": "^12.23.25", + "leaflet": "^1.9.4", + "lucide-react": "^0.556.0", + "next": "^14.2.16", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "react-leaflet": "^4.2.1", + "ruvector": "^0.1.31", + "tailwind-merge": "^2.6.0", + "tmdb-ts": "^2.0.3", + "zod": "^3.23.0", + "zustand": "^5.0.9" + }, + "devDependencies": { + "@types/node": "^22.0.0", + "@types/react": "^18.3.27", + "@types/react-dom": "^18.3.7", + "@vitejs/plugin-react": "^4.3.0", + "autoprefixer": "^10.4.20", + "dotenv": "^17.2.3", + "eslint": "^8.57.1", + "eslint-config-next": "^14.2.16", + "postcss": "^8.4.47", + "tailwindcss": "^3.4.0", + "tsx": "^4.19.0", + "typescript": "^5.6.0", + "vitest": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@ai-sdk/google": { + "version": "1.2.22", + "resolved": "https://registry.npmjs.org/@ai-sdk/google/-/google-1.2.22.tgz", + "integrity": "sha512-Ppxu3DIieF1G9pyQ5O1Z646GYR0gkC57YdBqXJ82qvCdhEhZHu0TWhmnOoeIWe2olSbuDeoOY+MfJrW8dzS3Hw==", + "license": "Apache-2.0", + "dependencies": { + "@ai-sdk/provider": "1.1.3", + "@ai-sdk/provider-utils": "2.2.8" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + } + }, + "node_modules/@ai-sdk/openai": { + "version": "1.3.24", + "resolved": "https://registry.npmjs.org/@ai-sdk/openai/-/openai-1.3.24.tgz", + "integrity": "sha512-GYXnGJTHRTZc4gJMSmFRgEQudjqd4PUN0ZjQhPwOAYH1yOAvQoG/Ikqs+HyISRbLPCrhbZnPKCNHuRU4OfpW0Q==", + "license": "Apache-2.0", + "dependencies": { + "@ai-sdk/provider": "1.1.3", + "@ai-sdk/provider-utils": "2.2.8" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + } + }, + "node_modules/@ai-sdk/provider": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-1.1.3.tgz", + "integrity": "sha512-qZMxYJ0qqX/RfnuIaab+zp8UAeJn/ygXXAffR5I4N0n1IrvA6qBsjc8hXLmBiMV2zoXlifkacF7sEFnYnjBcqg==", + "license": "Apache-2.0", + "dependencies": { + "json-schema": "^0.4.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@ai-sdk/provider-utils": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-2.2.8.tgz", + "integrity": "sha512-fqhG+4sCVv8x7nFzYnFo19ryhAa3w096Kmc3hWxMQfW/TubPOmt3A6tYZhl4mUfQWWQMsuSkLrtjlWuXBVSGQA==", + "license": "Apache-2.0", + "dependencies": { + "@ai-sdk/provider": "1.1.3", + "nanoid": "^3.3.8", + "secure-json-parse": "^2.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.23.8" + } + }, + "node_modules/@ai-sdk/react": { + "version": "1.2.12", + "resolved": "https://registry.npmjs.org/@ai-sdk/react/-/react-1.2.12.tgz", + "integrity": "sha512-jK1IZZ22evPZoQW3vlkZ7wvjYGYF+tRBKXtrcolduIkQ/m/sOAVcVeVDUDvh1T91xCnWCdUGCPZg2avZ90mv3g==", + "license": "Apache-2.0", + "dependencies": { + "@ai-sdk/provider-utils": "2.2.8", + "@ai-sdk/ui-utils": "1.2.11", + "swr": "^2.2.5", + "throttleit": "2.1.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^18 || ^19 || ^19.0.0-rc", + "zod": "^3.23.8" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/ui-utils": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/@ai-sdk/ui-utils/-/ui-utils-1.2.11.tgz", + "integrity": "sha512-3zcwCc8ezzFlwp3ZD15wAPjf2Au4s3vAbKsXQVyhxODHcmu0iyPO2Eua6D/vicq/AUm/BAo60r97O6HU+EI0+w==", + "license": "Apache-2.0", + "dependencies": { + "@ai-sdk/provider": "1.1.3", + "@ai-sdk/provider-utils": "2.2.8", + "zod-to-json-schema": "^3.24.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.23.8" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@emnapi/core": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.7.1.tgz", + "integrity": "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.1.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz", + "integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", + "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.1.tgz", + "integrity": "sha512-HHB50pdsBX6k47S4u5g/CaLjqS3qwaOVE5ILsq64jyzgMhLuCuZ8rGzM9yhsAjfjkbgUPMzZEPa7DAp7yz6vuA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.1.tgz", + "integrity": "sha512-kFqa6/UcaTbGm/NncN9kzVOODjhZW8e+FRdSeypWe6j33gzclHtwlANs26JrupOntlcWmB0u8+8HZo8s7thHvg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.1.tgz", + "integrity": "sha512-45fuKmAJpxnQWixOGCrS+ro4Uvb4Re9+UTieUY2f8AEc+t7d4AaZ6eUJ3Hva7dtrxAAWHtlEFsXFMAgNnGU9uQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.1.tgz", + "integrity": "sha512-LBEpOz0BsgMEeHgenf5aqmn/lLNTFXVfoWMUox8CtWWYK9X4jmQzWjoGoNb8lmAYml/tQ/Ysvm8q7szu7BoxRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.1.tgz", + "integrity": "sha512-veg7fL8eMSCVKL7IW4pxb54QERtedFDfY/ASrumK/SbFsXnRazxY4YykN/THYqFnFwJ0aVjiUrVG2PwcdAEqQQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.1.tgz", + "integrity": "sha512-+3ELd+nTzhfWb07Vol7EZ+5PTbJ/u74nC6iv4/lwIU99Ip5uuY6QoIf0Hn4m2HoV0qcnRivN3KSqc+FyCHjoVQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.1.tgz", + "integrity": "sha512-/8Rfgns4XD9XOSXlzUDepG8PX+AVWHliYlUkFI3K3GB6tqbdjYqdhcb4BKRd7C0BhZSoaCxhv8kTcBrcZWP+xg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.1.tgz", + "integrity": "sha512-GITpD8dK9C+r+5yRT/UKVT36h/DQLOHdwGVwwoHidlnA168oD3uxA878XloXebK4Ul3gDBBIvEdL7go9gCUFzQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.1.tgz", + "integrity": "sha512-ieMID0JRZY/ZeCrsFQ3Y3NlHNCqIhTprJfDgSB3/lv5jJZ8FX3hqPyXWhe+gvS5ARMBJ242PM+VNz/ctNj//eA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.1.tgz", + "integrity": "sha512-W9//kCrh/6in9rWIBdKaMtuTTzNj6jSeG/haWBADqLLa9P8O5YSRDzgD5y9QBok4AYlzS6ARHifAb75V6G670Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.1.tgz", + "integrity": "sha512-VIUV4z8GD8rtSVMfAj1aXFahsi/+tcoXXNYmXgzISL+KB381vbSTNdeZHHHIYqFyXcoEhu9n5cT+05tRv13rlw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.1.tgz", + "integrity": "sha512-l4rfiiJRN7sTNI//ff65zJ9z8U+k6zcCg0LALU5iEWzY+a1mVZ8iWC1k5EsNKThZ7XCQ6YWtsZ8EWYm7r1UEsg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.1.tgz", + "integrity": "sha512-U0bEuAOLvO/DWFdygTHWY8C067FXz+UbzKgxYhXC0fDieFa0kDIra1FAhsAARRJbvEyso8aAqvPdNxzWuStBnA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.1.tgz", + "integrity": "sha512-NzdQ/Xwu6vPSf/GkdmRNsOfIeSGnh7muundsWItmBsVpMoNPVpM61qNzAVY3pZ1glzzAxLR40UyYM23eaDDbYQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.1.tgz", + "integrity": "sha512-7zlw8p3IApcsN7mFw0O1Z1PyEk6PlKMu18roImfl3iQHTnr/yAfYv6s4hXPidbDoI2Q0pW+5xeoM4eTCC0UdrQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.1.tgz", + "integrity": "sha512-cGj5wli+G+nkVQdZo3+7FDKC25Uh4ZVwOAK6A06Hsvgr8WqBBuOy/1s+PUEd/6Je+vjfm6stX0kmib5b/O2Ykw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.1.tgz", + "integrity": "sha512-z3H/HYI9MM0HTv3hQZ81f+AKb+yEoCRlUby1F80vbQ5XdzEMyY/9iNlAmhqiBKw4MJXwfgsh7ERGEOhrM1niMA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.1.tgz", + "integrity": "sha512-wzC24DxAvk8Em01YmVXyjl96Mr+ecTPyOuADAvjGg+fyBpGmxmcr2E5ttf7Im8D0sXZihpxzO1isus8MdjMCXQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.1.tgz", + "integrity": "sha512-1YQ8ybGi2yIXswu6eNzJsrYIGFpnlzEWRl6iR5gMgmsrR0FcNoV1m9k9sc3PuP5rUBLshOZylc9nqSgymI+TYg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.1.tgz", + "integrity": "sha512-5Z+DzLCrq5wmU7RDaMDe2DVXMRm2tTDvX2KU14JJVBN2CT/qov7XVix85QoJqHltpvAOZUAc3ndU56HSMWrv8g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.1.tgz", + "integrity": "sha512-Q73ENzIdPF5jap4wqLtsfh8YbYSZ8Q0wnxplOlZUOyZy7B4ZKW8DXGWgTCZmF8VWD7Tciwv5F4NsRf6vYlZtqg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.1.tgz", + "integrity": "sha512-ajbHrGM/XiK+sXM0JzEbJAen+0E+JMQZ2l4RR4VFwvV9JEERx+oxtgkpoKv1SevhjavK2z2ReHk32pjzktWbGg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.1.tgz", + "integrity": "sha512-IPUW+y4VIjuDVn+OMzHc5FV4GubIwPnsz6ubkvN8cuhEqH81NovB53IUlrlBkPMEPxvNnf79MGBoz8rZ2iW8HA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.1.tgz", + "integrity": "sha512-RIVRWiljWA6CdVu8zkWcRmGP7iRRIIwvhDKem8UMBjPql2TXM5PkDVvvrzMtj1V+WFPB4K7zkIGM7VzRtFkjdg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.1.tgz", + "integrity": "sha512-2BR5M8CPbptC1AK5JbJT1fWrHLvejwZidKx3UMSF0ecHMa+smhi16drIrCEggkgviBwLYd5nwrFLSl5Kho96RQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.1.tgz", + "integrity": "sha512-d5X6RMYv6taIymSk8JBP+nxv8DQAMY6A51GPgusqLdK9wBz5wWIXy1KjTck6HnjE9hqJzJRdk+1p/t5soSbCtw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "deprecated": "Use @eslint/config-array instead", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", + "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@tybys/wasm-util": "^0.10.0" + } + }, + "node_modules/@next/env": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.33.tgz", + "integrity": "sha512-CgVHNZ1fRIlxkLhIX22flAZI/HmpDaZ8vwyJ/B0SDPTBuLZ1PJ+DWMjCHhqnExfmSQzA/PbZi8OAc7PAq2w9IA==", + "license": "MIT" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.33.tgz", + "integrity": "sha512-DQTJFSvlB+9JilwqMKJ3VPByBNGxAGFTfJ7BuFj25cVcbBy7jm88KfUN+dngM4D3+UxZ8ER2ft+WH9JccMvxyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob": "10.3.10" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.33.tgz", + "integrity": "sha512-HqYnb6pxlsshoSTubdXKu15g3iivcbsMXg4bYpjL2iS/V6aQot+iyF4BUc2qA/J/n55YtvE4PHMKWBKGCF/+wA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.33.tgz", + "integrity": "sha512-8HGBeAE5rX3jzKvF593XTTFg3gxeU4f+UWnswa6JPhzaR6+zblO5+fjltJWIZc4aUalqTclvN2QtTC37LxvZAA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.33.tgz", + "integrity": "sha512-JXMBka6lNNmqbkvcTtaX8Gu5by9547bukHQvPoLe9VRBx1gHwzf5tdt4AaezW85HAB3pikcvyqBToRTDA4DeLw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.33.tgz", + "integrity": "sha512-Bm+QulsAItD/x6Ih8wGIMfRJy4G73tu1HJsrccPW6AfqdZd0Sfm5Imhgkgq2+kly065rYMnCOxTBvmvFY1BKfg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.33.tgz", + "integrity": "sha512-FnFn+ZBgsVMbGDsTqo8zsnRzydvsGV8vfiWwUo1LD8FTmPTdV+otGSWKc4LJec0oSexFnCYVO4hX8P8qQKaSlg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.33.tgz", + "integrity": "sha512-345tsIWMzoXaQndUTDv1qypDRiebFxGYx9pYkhwY4hBRaOLt8UGfiWKr9FSSHs25dFIf8ZqIFaPdy5MljdoawA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.33.tgz", + "integrity": "sha512-nscpt0G6UCTkrT2ppnJnFsYbPDQwmum4GNXYTeoTIdsmMydSKFz9Iny2jpaRupTb+Wl298+Rh82WKzt9LCcqSQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.33.tgz", + "integrity": "sha512-pc9LpGNKhJ0dXQhZ5QMmYxtARwwmWLpeocFmVG5Z0DzWq5Uf0izcI8tLc+qOpqxO1PWqZ5A7J1blrUIKrIFc7Q==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.33.tgz", + "integrity": "sha512-nOjfZMy8B94MdisuzZo9/57xuFVLHJaDj5e/xrduJp9CV2/HrfxTRH2fbyLe+K9QT41WBLUd4iXX3R7jBp0EUg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@opentelemetry/api": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", + "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", + "license": "Apache-2.0", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@react-leaflet/core": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz", + "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==", + "license": "Hippocratic-2.1", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.27", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz", + "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz", + "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz", + "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz", + "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz", + "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz", + "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz", + "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz", + "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz", + "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz", + "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz", + "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz", + "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz", + "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz", + "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz", + "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz", + "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz", + "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz", + "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz", + "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz", + "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz", + "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz", + "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.15.0.tgz", + "integrity": "sha512-ojSshQPKwVvSMR8yT2L/QtUkV5SXi/IfDiJ4/8d6UbTPjiHVmxZzUAzGD8Tzks1b9+qQkZa0isUOvYObedITaw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@ruvector/attention": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@ruvector/attention/-/attention-0.1.3.tgz", + "integrity": "sha512-ckyqbQZwMGu3xFajR+rnUaPWiqD1qDtf3xvGi4R5UUEMPwaN90JnZilcBELqIBXY/G7AfQsZOjPCl5Bz5SOOuw==", + "license": "MIT OR Apache-2.0", + "engines": { + "node": ">= 10" + }, + "optionalDependencies": { + "@ruvector/attention-darwin-x64": "0.1.3", + "@ruvector/attention-linux-x64-gnu": "0.1.3", + "@ruvector/attention-win32-x64-msvc": "0.1.3" + } + }, + "node_modules/@ruvector/attention/node_modules/@ruvector/attention-darwin-x64": { + "optional": true + }, + "node_modules/@ruvector/attention/node_modules/@ruvector/attention-linux-x64-gnu": { + "optional": true + }, + "node_modules/@ruvector/attention/node_modules/@ruvector/attention-win32-x64-msvc": { + "optional": true + }, + "node_modules/@ruvector/core": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/@ruvector/core/-/core-0.1.17.tgz", + "integrity": "sha512-N540Hb8M+ILSUfqzkeniu3JgFydY3SUHzPp8sfVH9H0+IcIF1O28nu0l5sa/rjnP15aTk6Z4dIwvCbEKJjLVMg==", + "license": "MIT", + "engines": { + "node": ">= 18" + }, + "optionalDependencies": { + "@ruvector/attention": "^0.1.0" + } + }, + "node_modules/@ruvector/gnn": { + "version": "0.1.22", + "resolved": "https://registry.npmjs.org/@ruvector/gnn/-/gnn-0.1.22.tgz", + "integrity": "sha512-BOXLu6x/1GVj1zAqXJfF3zJWOzVl94i4bo6ATOlaDAlmGCvTwvvmomz8p9lPAMc99vmaox650MO9D4+CEqXK/A==", + "license": "MIT", + "engines": { + "node": ">= 10" + }, + "optionalDependencies": { + "@ruvector/gnn-darwin-arm64": "0.1.22", + "@ruvector/gnn-darwin-x64": "0.1.22", + "@ruvector/gnn-linux-arm64-gnu": "0.1.22", + "@ruvector/gnn-linux-arm64-musl": "0.1.22", + "@ruvector/gnn-linux-x64-gnu": "0.1.22", + "@ruvector/gnn-linux-x64-musl": "0.1.22", + "@ruvector/gnn-win32-x64-msvc": "0.1.22" + } + }, + "node_modules/@ruvector/gnn-linux-x64-gnu": { + "version": "0.1.22", + "resolved": "https://registry.npmjs.org/@ruvector/gnn-linux-x64-gnu/-/gnn-linux-x64-gnu-0.1.22.tgz", + "integrity": "sha512-fv+WKHTVv5TU2Oiod+ue8SwcllE83V+Kc9/14OU1aF5lR6ZAIPIha/MvTYTlgz5+O2B2s0+ArhLJJ2vohaXZkA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@ruvector/gnn/node_modules/@ruvector/gnn-darwin-arm64": { + "optional": true + }, + "node_modules/@ruvector/gnn/node_modules/@ruvector/gnn-darwin-x64": { + "optional": true + }, + "node_modules/@ruvector/gnn/node_modules/@ruvector/gnn-linux-arm64-gnu": { + "optional": true + }, + "node_modules/@ruvector/gnn/node_modules/@ruvector/gnn-linux-arm64-musl": { + "optional": true + }, + "node_modules/@ruvector/gnn/node_modules/@ruvector/gnn-linux-x64-musl": { + "optional": true + }, + "node_modules/@ruvector/gnn/node_modules/@ruvector/gnn-win32-x64-msvc": { + "optional": true + }, + "node_modules/@ruvector/sona": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@ruvector/sona/-/sona-0.1.4.tgz", + "integrity": "sha512-CdT6yxroS2N75B+4Cl4kXJB2PdNFkhFCPzElQBPikcxhfiUrDcLyaBIrD5nbymVj98URmY3PUv/Pepm6uQl4rQ==", + "license": "MIT OR Apache-2.0", + "engines": { + "node": ">= 16" + }, + "optionalDependencies": { + "@ruvector/sona-darwin-arm64": "0.1.4", + "@ruvector/sona-darwin-x64": "0.1.4", + "@ruvector/sona-linux-arm64-gnu": "0.1.4", + "@ruvector/sona-linux-x64-gnu": "0.1.4", + "@ruvector/sona-linux-x64-musl": "0.1.4", + "@ruvector/sona-win32-arm64-msvc": "0.1.4", + "@ruvector/sona-win32-x64-msvc": "0.1.4" + } + }, + "node_modules/@ruvector/sona-darwin-arm64": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@ruvector/sona-darwin-arm64/-/sona-darwin-arm64-0.1.4.tgz", + "integrity": "sha512-XLXGnlcrrVM00cTsq7VyGhWu2Fvr4zJQD1bktthR3j0r4Y1PXwnw1QPHVtdcKzKmZ5WKPDGxsgRNPUKAIT/PRA==", + "cpu": [ + "arm64" + ], + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@ruvector/sona-darwin-x64": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@ruvector/sona-darwin-x64/-/sona-darwin-x64-0.1.4.tgz", + "integrity": "sha512-8bUvmQHn/N7zcD5Zf/u+lsggl6ql0NiuwPPYxitimJKAV+8oT7Zt4zE7kgnx8wqO2YCD4GPxw5laqhRz6IWwQQ==", + "cpu": [ + "x64" + ], + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@ruvector/sona-linux-arm64-gnu": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@ruvector/sona-linux-arm64-gnu/-/sona-linux-arm64-gnu-0.1.4.tgz", + "integrity": "sha512-QyGIK++wbdRDTF2oio1Ikq1QjS5KKUKJx4Z/rRjxJu29TGXigEdJmwTnPDtsKKzVwXahrEi1mI4Ri/ALMJID9w==", + "cpu": [ + "arm64" + ], + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@ruvector/sona-linux-x64-gnu": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@ruvector/sona-linux-x64-gnu/-/sona-linux-x64-gnu-0.1.4.tgz", + "integrity": "sha512-lh4HYZUag0yiFpooFxAF6TTx/SVDnh/OPD1yY6G2KH9UaIPgLzw0l/dGv4DaVtv6qjeQMMrxrI8y6vFHUOBvuw==", + "cpu": [ + "x64" + ], + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@ruvector/sona-linux-x64-musl": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@ruvector/sona-linux-x64-musl/-/sona-linux-x64-musl-0.1.4.tgz", + "integrity": "sha512-+g+5px2k4lztba8wqxuoNnOU1tFWEdCJHMXqU0Tqn5rq06YoGCGpzoDI55jo1OKtCgCbPLBVT8KiUHIKxT1L/g==", + "cpu": [ + "x64" + ], + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@ruvector/sona-win32-arm64-msvc": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@ruvector/sona-win32-arm64-msvc/-/sona-win32-arm64-msvc-0.1.4.tgz", + "integrity": "sha512-xQkFe5x8SBcg+IM/I5EtDz7gQYdznG1GZnAqt9zKbY/xEOqPmJFlk9A8ab3w9QMBgXTCmlZKkWKDGQgqg3RQ5w==", + "cpu": [ + "arm64" + ], + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@ruvector/sona-win32-x64-msvc": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@ruvector/sona-win32-x64-msvc/-/sona-win32-x64-msvc-0.1.4.tgz", + "integrity": "sha512-kox5tXvKiTtZaSw0fyo7fvAIp/VK5XAtnoN8C8BuERcqOgrcwY6CS8z5M1hEH1XUR9CHBNpiL6+wURsLXwq4/g==", + "cpu": [ + "x64" + ], + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "license": "Apache-2.0" + }, + "node_modules/@swc/helpers": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz", + "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==", + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3", + "tslib": "^2.4.0" + } + }, + "node_modules/@tanstack/query-core": { + "version": "5.90.12", + "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.90.12.tgz", + "integrity": "sha512-T1/8t5DhV/SisWjDnaiU2drl6ySvsHj1bHBCWNXd+/T+Hh1cf6JodyEYMd5sgwm+b/mETT4EV3H+zCVczCU5hg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "node_modules/@tanstack/react-query": { + "version": "5.90.12", + "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.90.12.tgz", + "integrity": "sha512-graRZspg7EoEaw0a8faiUASCyJrqjKPdqJ9EwuDRUF9mEYJ1YPczI9H+/agJ0mOJkPCJDk0lsz5QTrLZ/jQ2rg==", + "license": "MIT", + "dependencies": { + "@tanstack/query-core": "5.90.12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^18 || ^19" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/diff-match-patch": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/diff-match-patch/-/diff-match-patch-1.0.36.tgz", + "integrity": "sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==", + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/leaflet": { + "version": "1.9.21", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.21.tgz", + "integrity": "sha512-TbAd9DaPGSnzp6QvtYngntMZgcRk+igFELwR2N99XZn7RXUdKgsXMR+28bUO0rPsWp8MIu/f47luLIQuSLYv/w==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/node": { + "version": "22.19.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.1.tgz", + "integrity": "sha512-LCCV0HdSZZZb34qifBsyWlUmok6W7ouER+oQIGBScS8EsZsQbrtFTUrDX4hOl+CS6p7cnNC4td+qrSVGSCTUfQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.15", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.27", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.27.tgz", + "integrity": "sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==", + "devOptional": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.1.tgz", + "integrity": "sha512-X63hI1bxl5ohelzr0LY5coufyl0LJNthld+abwxpCoo6Gq+hSqhKwci7MUWkXo67mzgUK6YFByhmaHmUcuBJmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.48.1", + "@typescript-eslint/type-utils": "8.48.1", + "@typescript-eslint/utils": "8.48.1", + "@typescript-eslint/visitor-keys": "8.48.1", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.48.1", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.48.1.tgz", + "integrity": "sha512-PC0PDZfJg8sP7cmKe6L3QIL8GZwU5aRvUFedqSIpw3B+QjRSUZeeITC2M5XKeMXEzL6wccN196iy3JLwKNvDVA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "8.48.1", + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/typescript-estree": "8.48.1", + "@typescript-eslint/visitor-keys": "8.48.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.48.1.tgz", + "integrity": "sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.48.1", + "@typescript-eslint/types": "^8.48.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz", + "integrity": "sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/visitor-keys": "8.48.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.1.tgz", + "integrity": "sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.48.1.tgz", + "integrity": "sha512-1jEop81a3LrJQLTf/1VfPQdhIY4PlGDBc/i67EVWObrtvcziysbLN3oReexHOM6N3jyXgCrkBsZpqwH0hiDOQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/typescript-estree": "8.48.1", + "@typescript-eslint/utils": "8.48.1", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.48.1.tgz", + "integrity": "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.1.tgz", + "integrity": "sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.48.1", + "@typescript-eslint/tsconfig-utils": "8.48.1", + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/visitor-keys": "8.48.1", + "debug": "^4.3.4", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.48.1.tgz", + "integrity": "sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.48.1", + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/typescript-estree": "8.48.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.48.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.1.tgz", + "integrity": "sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.1", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", + "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", + "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", + "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", + "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", + "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", + "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", + "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", + "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", + "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", + "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", + "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", + "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", + "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", + "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", + "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", + "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.11" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", + "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", + "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", + "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", + "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.0", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.27", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/@vitest/expect": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.9.tgz", + "integrity": "sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.9", + "@vitest/utils": "2.1.9", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.9.tgz", + "integrity": "sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.9", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/pretty-format": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.9.tgz", + "integrity": "sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.9.tgz", + "integrity": "sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "2.1.9", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.9.tgz", + "integrity": "sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.9", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.9.tgz", + "integrity": "sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.9.tgz", + "integrity": "sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.9", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ai": { + "version": "4.3.19", + "resolved": "https://registry.npmjs.org/ai/-/ai-4.3.19.tgz", + "integrity": "sha512-dIE2bfNpqHN3r6IINp9znguYdhIOheKW2LDigAMrgt/upT3B8eBGPSCblENvaZGoq+hxaN9fSMzjWpbqloP+7Q==", + "license": "Apache-2.0", + "dependencies": { + "@ai-sdk/provider": "1.1.3", + "@ai-sdk/provider-utils": "2.2.8", + "@ai-sdk/react": "1.2.12", + "@ai-sdk/ui-utils": "1.2.11", + "@opentelemetry/api": "1.9.0", + "jsondiffpatch": "0.6.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^18 || ^19 || ^19.0.0-rc", + "zod": "^3.23.8" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + } + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.22", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.22.tgz", + "integrity": "sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.27.0", + "caniuse-lite": "^1.0.30001754", + "fraction.js": "^5.3.4", + "normalize-range": "^0.1.2", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.11.0.tgz", + "integrity": "sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.3.tgz", + "integrity": "sha512-8QdH6czo+G7uBsNo0GiUfouPN1lRzKdJTGnKXwe12gkFbnnOUaUKGN55dMkfy+mnxmvjwl9zcI4VncczcVXDhA==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001759", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001759.tgz", + "integrity": "sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chai": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", + "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/check-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", + "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-fetch": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.1.0.tgz", + "integrity": "sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.7.0" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/diff-match-patch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", + "integrity": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==", + "license": "Apache-2.0" + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true, + "license": "MIT" + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dotenv": { + "version": "17.2.3", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.3.tgz", + "integrity": "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.266", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.266.tgz", + "integrity": "sha512-kgWEglXvkEfMH7rxP5OSZZwnaDWT7J9EoZCujhnpLbfi0bbNtRkgdX2E3gt0Uer11c61qCYktB3hwkAS325sJg==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/es-abstract": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", + "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", + "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.6", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.4", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.1.tgz", + "integrity": "sha512-yY35KZckJJuVVPXpvjgxiCuVEJT67F6zDeVTv4rizyPrfGBUpZQsvmxnN+C371c2esD/hNMjj4tpBhuueLN7aA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.1", + "@esbuild/android-arm": "0.27.1", + "@esbuild/android-arm64": "0.27.1", + "@esbuild/android-x64": "0.27.1", + "@esbuild/darwin-arm64": "0.27.1", + "@esbuild/darwin-x64": "0.27.1", + "@esbuild/freebsd-arm64": "0.27.1", + "@esbuild/freebsd-x64": "0.27.1", + "@esbuild/linux-arm": "0.27.1", + "@esbuild/linux-arm64": "0.27.1", + "@esbuild/linux-ia32": "0.27.1", + "@esbuild/linux-loong64": "0.27.1", + "@esbuild/linux-mips64el": "0.27.1", + "@esbuild/linux-ppc64": "0.27.1", + "@esbuild/linux-riscv64": "0.27.1", + "@esbuild/linux-s390x": "0.27.1", + "@esbuild/linux-x64": "0.27.1", + "@esbuild/netbsd-arm64": "0.27.1", + "@esbuild/netbsd-x64": "0.27.1", + "@esbuild/openbsd-arm64": "0.27.1", + "@esbuild/openbsd-x64": "0.27.1", + "@esbuild/openharmony-arm64": "0.27.1", + "@esbuild/sunos-x64": "0.27.1", + "@esbuild/win32-arm64": "0.27.1", + "@esbuild/win32-ia32": "0.27.1", + "@esbuild/win32-x64": "0.27.1" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-next": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.33.tgz", + "integrity": "sha512-e2W+waB+I5KuoALAtKZl3WVDU4Q1MS6gF/gdcwHh0WOAkHf4TZI6dPjd25wKhlZFAsFrVKy24Z7/IwOhn8dHBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "14.2.33", + "@rushstack/eslint-patch": "^1.3.3", + "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.13", + "unrs-resolver": "^1.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.0.0-canary-7118f5dd7-20230705", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz", + "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect-type": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.2.2.tgz", + "integrity": "sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/framer-motion": { + "version": "12.23.25", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.23.25.tgz", + "integrity": "sha512-gUHGl2e4VG66jOcH0JHhuJQr6ZNwrET9g31ZG0xdXzT0CznP7fHX4P8Bcvuc4MiUB90ysNnWX2ukHRIggkl6hQ==", + "license": "MIT", + "dependencies": { + "motion-dom": "^12.23.23", + "motion-utils": "^12.23.6", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "@emotion/is-prop-valid": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/is-prop-valid": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz", + "integrity": "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-bun-module/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "license": "(AFL-2.1 OR BSD-3-Clause)" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsondiffpatch": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.6.0.tgz", + "integrity": "sha512-3QItJOXp2AP1uv7waBkao5nCvhEv+QmJAd38Ybq7wNI74Q+BBmnLn4EDKz6yI9xGAIQoUF87qHt+kc1IVxB4zQ==", + "license": "MIT", + "dependencies": { + "@types/diff-match-patch": "^1.0.36", + "chalk": "^5.3.0", + "diff-match-patch": "^1.0.5" + }, + "bin": { + "jsondiffpatch": "bin/jsondiffpatch.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/jsondiffpatch/node_modules/chalk": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz", + "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==", + "license": "BSD-2-Clause", + "peer": true + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loupe": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.556.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.556.0.tgz", + "integrity": "sha512-iOb8dRk7kLaYBZhR2VlV1CeJGxChBgUthpSP8wom9jfj79qovgG6qcSdiy6vkoREKPnbUYzJsCn4o4PtG3Iy+A==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/motion-dom": { + "version": "12.23.23", + "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.23.23.tgz", + "integrity": "sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==", + "license": "MIT", + "dependencies": { + "motion-utils": "^12.23.6" + } + }, + "node_modules/motion-utils": { + "version": "12.23.6", + "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.23.6.tgz", + "integrity": "sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==", + "license": "MIT" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "dev": true, + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next": { + "version": "14.2.33", + "resolved": "https://registry.npmjs.org/next/-/next-14.2.33.tgz", + "integrity": "sha512-GiKHLsD00t4ACm1p00VgrI0rUFAC9cRDGReKyERlM57aeEZkOQGcZTpIbsGn0b562FTPJWmYfKwplfO9EaT6ng==", + "license": "MIT", + "dependencies": { + "@next/env": "14.2.33", + "@swc/helpers": "0.5.5", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001579", + "graceful-fs": "^4.2.11", + "postcss": "8.4.31", + "styled-jsx": "5.1.1" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=18.17.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "14.2.33", + "@next/swc-darwin-x64": "14.2.33", + "@next/swc-linux-arm64-gnu": "14.2.33", + "@next/swc-linux-arm64-musl": "14.2.33", + "@next/swc-linux-x64-gnu": "14.2.33", + "@next/swc-linux-x64-musl": "14.2.33", + "@next/swc-win32-arm64-msvc": "14.2.33", + "@next/swc-win32-ia32-msvc": "14.2.33", + "@next/swc-win32-x64-msvc": "14.2.33" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.41.2", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/pathval": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz", + "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/react-leaflet": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz", + "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==", + "license": "Hippocratic-2.1", + "dependencies": { + "@react-leaflet/core": "^2.1.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/react-refresh": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/restore-cursor/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz", + "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.53.3", + "@rollup/rollup-android-arm64": "4.53.3", + "@rollup/rollup-darwin-arm64": "4.53.3", + "@rollup/rollup-darwin-x64": "4.53.3", + "@rollup/rollup-freebsd-arm64": "4.53.3", + "@rollup/rollup-freebsd-x64": "4.53.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.53.3", + "@rollup/rollup-linux-arm-musleabihf": "4.53.3", + "@rollup/rollup-linux-arm64-gnu": "4.53.3", + "@rollup/rollup-linux-arm64-musl": "4.53.3", + "@rollup/rollup-linux-loong64-gnu": "4.53.3", + "@rollup/rollup-linux-ppc64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-musl": "4.53.3", + "@rollup/rollup-linux-s390x-gnu": "4.53.3", + "@rollup/rollup-linux-x64-gnu": "4.53.3", + "@rollup/rollup-linux-x64-musl": "4.53.3", + "@rollup/rollup-openharmony-arm64": "4.53.3", + "@rollup/rollup-win32-arm64-msvc": "4.53.3", + "@rollup/rollup-win32-ia32-msvc": "4.53.3", + "@rollup/rollup-win32-x64-gnu": "4.53.3", + "@rollup/rollup-win32-x64-msvc": "4.53.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/ruvector": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/ruvector/-/ruvector-0.1.31.tgz", + "integrity": "sha512-JIGHC6Q7z2WV/rMn8bEDHY1SvGxxqQvGwCXW+PHkBG9Y2/DYpgN6BL3WpZt3NvRdliGl2WO42GCM9y1P/rcssg==", + "license": "MIT", + "dependencies": { + "@ruvector/attention": "^0.1.3", + "@ruvector/core": "^0.1.17", + "@ruvector/gnn": "^0.1.22", + "@ruvector/sona": "^0.1.4", + "chalk": "^4.1.2", + "commander": "^11.1.0", + "ora": "^5.4.1" + }, + "bin": { + "ruvector": "bin/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/secure-json-parse": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", + "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==", + "license": "BSD-3-Clause" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/std-env": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", + "dev": true, + "license": "MIT" + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/sucrase": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz", + "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "tinyglobby": "^0.2.11", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/swr": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.3.7.tgz", + "integrity": "sha512-ZEquQ82QvalqTxhBVv/DlAg2mbmUjF4UgpPg9wwk4ufb9rQnZXh1iKyyKBqV6bQGu1Ie7L1QwSYO07qFIa1p+g==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.3", + "use-sync-external-store": "^1.4.0" + }, + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/tailwind-merge": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.0.tgz", + "integrity": "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/dcastil" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.18", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.18.tgz", + "integrity": "sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.7", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throttleit": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-2.1.0.tgz", + "integrity": "sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/tinypool": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", + "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/tinyrainbow": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", + "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", + "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tmdb-ts": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tmdb-ts/-/tmdb-ts-2.0.3.tgz", + "integrity": "sha512-zcytL1lYJnggiilswjOfWvOYmdjaGmxx8UuwAdMgYLebhG/aw9rvuxwv2TpekuayORrcvMuZobsLE3xThQrVqA==", + "license": "MIT", + "dependencies": { + "cross-fetch": "^4.0.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/tsx": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", + "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "esbuild": "~0.27.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unrs-resolver": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", + "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.3.0" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-android-arm-eabi": "1.11.1", + "@unrs/resolver-binding-android-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-x64": "1.11.1", + "@unrs/resolver-binding-freebsd-x64": "1.11.1", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", + "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-musl": "1.11.1", + "@unrs/resolver-binding-wasm32-wasi": "1.11.1", + "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", + "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", + "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.2.tgz", + "integrity": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-node": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.9.tgz", + "integrity": "sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vite/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vitest": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.9.tgz", + "integrity": "sha512-MSmPM9REYqDGBI8439mA4mWhV5sKmDlBKWIYbA3lRb2PTHACE0mgKwA8yQ2xq9vxDTuk4iPrECBAEW2aoFXY0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "2.1.9", + "@vitest/mocker": "2.1.9", + "@vitest/pretty-format": "^2.1.9", + "@vitest/runner": "2.1.9", + "@vitest/snapshot": "2.1.9", + "@vitest/spy": "2.1.9", + "@vitest/utils": "2.1.9", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.9", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.9", + "@vitest/ui": "2.1.9", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-to-json-schema": { + "version": "3.25.0", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.0.tgz", + "integrity": "sha512-HvWtU2UG41LALjajJrML6uQejQhNJx+JBO9IflpSja4R03iNWfKXrj6W2h7ljuLyc1nKS+9yDyL/9tD1U/yBnQ==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.25 || ^4" + } + }, + "node_modules/zustand": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.9.tgz", + "integrity": "sha512-ALBtUj0AfjJt3uNRQoL1tL2tMvj6Gp/6e39dnfT6uzpelGru8v1tPOGBzayOWbPJvujM8JojDk3E1LxeFisBNg==", + "license": "MIT", + "engines": { + "node": ">=12.20.0" + }, + "peerDependencies": { + "@types/react": ">=18.0.0", + "immer": ">=9.0.6", + "react": ">=18.0.0", + "use-sync-external-store": ">=1.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + }, + "use-sync-external-store": { + "optional": true + } + } + } + } +} diff --git a/apps/CineMatch/package.json b/apps/CineMatch/package.json new file mode 100644 index 00000000..e8728a79 --- /dev/null +++ b/apps/CineMatch/package.json @@ -0,0 +1,55 @@ +{ + "name": "@arw/movie-match", + "version": "0.1.0", + "private": true, + "description": "AI-native movie matching platform with natural language search and preference learning", + "scripts": { + "dev": "next dev -p 3005", + "build": "next build", + "start": "next start", + "lint": "next lint", + "typecheck": "tsc --noEmit", + "test": "vitest", + "test:coverage": "vitest --coverage", + "embed:sync": "tsx scripts/sync-embeddings.ts", + "deploy": "gcloud run deploy media-discovery --source ." + }, + "dependencies": { + "@ai-sdk/google": "^1.0.0", + "@ai-sdk/openai": "^1.0.0", + "@tanstack/react-query": "^5.60.0", + "@types/leaflet": "^1.9.21", + "ai": "^4.0.0", + "clsx": "^2.1.1", + "framer-motion": "^12.23.25", + "leaflet": "^1.9.4", + "lucide-react": "^0.556.0", + "next": "^14.2.16", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "react-leaflet": "^4.2.1", + "ruvector": "^0.1.31", + "tailwind-merge": "^2.6.0", + "tmdb-ts": "^2.0.3", + "zod": "^3.23.0", + "zustand": "^5.0.9" + }, + "devDependencies": { + "@types/node": "^22.0.0", + "@types/react": "^18.3.27", + "@types/react-dom": "^18.3.7", + "@vitejs/plugin-react": "^4.3.0", + "autoprefixer": "^10.4.20", + "dotenv": "^17.2.3", + "eslint": "^8.57.1", + "eslint-config-next": "^14.2.16", + "postcss": "^8.4.47", + "tailwindcss": "^3.4.0", + "tsx": "^4.19.0", + "typescript": "^5.6.0", + "vitest": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } +} diff --git a/apps/CineMatch/postcss.config.mjs b/apps/CineMatch/postcss.config.mjs new file mode 100644 index 00000000..2ef30fcf --- /dev/null +++ b/apps/CineMatch/postcss.config.mjs @@ -0,0 +1,9 @@ +/** @type {import('postcss-load-config').Config} */ +const config = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; + +export default config; diff --git a/apps/CineMatch/public/.well-known/arw-manifest.json b/apps/CineMatch/public/.well-known/arw-manifest.json new file mode 100644 index 00000000..b7be4cf4 --- /dev/null +++ b/apps/CineMatch/public/.well-known/arw-manifest.json @@ -0,0 +1,207 @@ +{ + "version": "0.1", + "profile": "ARW-1", + "site": { + "name": "CineMatch", + "description": "Discover movies and TV shows through natural language prompts and personalized recommendations", + "homepage": "https://media-discovery.example.com", + "contact": "ai@media-discovery.example.com" + }, + "content": [ + { + "url": "/", + "machine_view": "/llms/home.llm.md", + "purpose": "browse", + "priority": "high", + "description": "Homepage with trending and personalized content" + }, + { + "url": "/search", + "machine_view": "/llms/search.llm.md", + "purpose": "search", + "priority": "high", + "description": "Natural language search for movies and TV shows" + }, + { + "url": "/discover", + "machine_view": "/llms/discover.llm.md", + "purpose": "browse", + "priority": "medium", + "description": "Browse content by genre, year, and rating" + }, + { + "url": "/movie/[id]", + "machine_view": "/api/movie/[id]/llm", + "purpose": "details", + "priority": "medium", + "description": "Movie details page" + }, + { + "url": "/tv/[id]", + "machine_view": "/api/tv/[id]/llm", + "purpose": "details", + "priority": "medium", + "description": "TV show details page" + } + ], + "actions": [ + { + "id": "semantic_search", + "name": "Semantic Search", + "endpoint": "/api/search", + "method": "POST", + "description": "Search for movies and TV shows using natural language queries", + "schema": { + "type": "object", + "properties": { + "query": { + "type": "string", + "description": "Natural language search query", + "examples": [ + "exciting sci-fi movies like Inception", + "heartwarming comedy for family movie night", + "dark thriller with plot twists" + ] + }, + "filters": { + "type": "object", + "properties": { + "mediaType": { + "type": "string", + "enum": [ + "movie", + "tv", + "all" + ] + }, + "ratingMin": { + "type": "number", + "minimum": 0, + "maximum": 10 + } + } + }, + "explain": { + "type": "boolean", + "description": "Include AI-generated explanations for recommendations" + } + }, + "required": [ + "query" + ] + } + }, + { + "id": "get_recommendations", + "name": "Get Personalized Recommendations", + "endpoint": "/api/recommendations", + "method": "POST", + "description": "Get personalized content recommendations", + "schema": { + "type": "object", + "properties": { + "basedOn": { + "type": "object", + "properties": { + "contentId": { + "type": "number" + }, + "mediaType": { + "type": "string", + "enum": [ + "movie", + "tv" + ] + } + } + }, + "preferences": { + "type": "object", + "properties": { + "genres": { + "type": "array", + "items": { + "type": "number" + } + }, + "likedContentIds": { + "type": "array", + "items": { + "type": "number" + } + } + } + } + } + } + }, + { + "id": "discover_content", + "name": "Discover Content", + "endpoint": "/api/discover", + "method": "GET", + "description": "Browse trending and popular content", + "schema": { + "type": "object", + "properties": { + "category": { + "type": "string", + "enum": [ + "trending", + "popular", + "discover" + ], + "default": "trending" + }, + "type": { + "type": "string", + "enum": [ + "movie", + "tv", + "all" + ], + "default": "all" + }, + "genres": { + "type": "string", + "description": "Comma-separated genre IDs" + }, + "page": { + "type": "number", + "default": 1 + } + } + } + } + ], + "protocols": [ + { + "name": "Media Discovery API", + "type": "rest", + "endpoint": "/api", + "description": "RESTful API for content discovery and recommendations" + } + ], + "policies": { + "training": { + "allowed": false, + "note": "Content metadata from TMDB. Training not permitted." + }, + "inference": { + "allowed": true, + "restrictions": [ + "attribution_required", + "non_commercial" + ] + }, + "attribution": { + "required": true, + "format": "link", + "template": "Powered by CineMatch (https://media-discovery.example.com)" + }, + "rate_limits": { + "authenticated": "1000 requests per minute", + "unauthenticated": "100 requests per minute" + } + } +} \ No newline at end of file diff --git a/apps/CineMatch/public/cross.png b/apps/CineMatch/public/cross.png new file mode 100644 index 0000000000000000000000000000000000000000..2833c84f4de1153e16e143b260377106ad1c33b9 GIT binary patch literal 49132 zcmZ^~RX`li(>08{ySuvv3%Nia9v*b{lDk(yV#4J z={i;CbWcxrbxoA2vJ5H`5fTIh1ge}YKpg@CQvTzI0QY{ymk|#Z0s;d<4j``S1^L$q zK8RLo4qQ#&+xkca52T==LdtAGD5i=Q1x6F%Dk3D~NWsv`CFWwPiiy)Q%OxWKVboj_ ze?ewkeCp#bdTTg1Tleqj!0&4G6l&2}*j(x=f66&I_ilkZPLiic6JrY2go;TMLrRUo zRUyjy?+PRZ?1Uz=I$|l7ENvqUVk}~zp#<^5ktS3Xj5=biHe#t*m;TQJ?fmz~gV_|p zI1He$p44{E53D7o_rJuyRW|?Em_-7LQI$=CgHh;zj!@riR}%pziGZXI8>p7e?C!@P;%9eeb*kzSv@yq(I2eb`5H z%0!;b{}D<0fGY*eJAD{e!AQ%#^T33X3pJC3vSC(7jHP||E|7jMy_Wu;v(gXilnz>Z z&HtRqeK;%YNou$FCP!hf#1stq(VPOfDEIE_ooO*mBGi5{P0E$Vf5LEl5Qm3J5_}K4 z9A;iS4)&ut-nqnD#DD0mALt7m^!A4Tp^JZ@hxa75Q>G2Bqz`sF8X=|beSuYn{7+<> zciS!+#Ik=M3dj0>Af0Pb;J%aQm4vEkNn=#4S3a(AulVSY|7h|4{!|vH_@RNj{5#7f z#@E*K54Xz*h$v9|M00DcNgq(9Sh}bmqVOUJ*KvJl$gA)kN4?%Xv%URCST*8MX2=XW zp%C*-|6|qo{~w7altS|RFhQ1Mu=t4i-F4>&MYaT<)c?sJ{vnVAl^o&!JQJ|J3luqN zRvR|&@nOIb@o}G^o6tt%BQS!TkHEfdWwdJjN1F13bcDl*uATf^{s)zl_xsIkkvG}@ zLznvCDHTl@_u=||+#08|lGFlBY?@@+D0Q~`nvJuvb_#d482VDDw%3Ak-y%F>g zDl{LZ{SVy?v9GCQW0;4S({w{ z-X?kYTgCc@Qe=VWr6c2(} zf1Dq8i0Rk^DV16LS1ZM9kFxMJ@R_aKO6YL2y6Tc(uabl2$VVPXLYf zD|tc7G;am?07&@O8AyLPuG7(TQfXXZMjqha;>-}OHNPJo?2@M0bEjRLzGn}g@3S!! z*l&{{*Py-jsRnOWq$Kn4@Tbn1_kNX3fy3cydt1l7&5U+9%->Cw-u-(~ft&fusAKYt zLLF5v=lpg5Z8LHa#|!_4+Sgan3te1$0!R0ErJ*i5{VfmvoF<6u{_zF7y^>AWg72c7 z@mOgK`~G}&`8g%xw8YwDeAPm&+_>P|t^KvlMr}_Pirv`xIv$_Qf1_*ey1}or1}h5@ zFZ0BlqX;K^xywJtC}3lJz`$whjGR!0N{`m)y_aC4Rz)0zz#bb?13rIeIs$n4YBUq& z!{iByq@~Uo+y?UuMxI^??*nyS_K5LGoo)o~Rv*upD^FT8ov9$7$B-SnPZnF^qY46! zg;Sm;$L{W^_Mn9~xj8ALIm-s<{z=X_1RQ4J=j%O9=8+T7o9fYSl9Y&b$v^e~U}{=^ z3KV`?8G3VHy*0KyOW@Xc`SdUny64^an*z<$jVh)cYgP;AFw5Y4^RXLyT1dO%n7J0y zM%=Cq=5K7j96qVXqTFMbzvJ|MYGTdu?5=O-z*n>{_uaRu%xM&TQr{A7(!lfu>o*hF zGoNcb_FgaaYr>n6gfgJ^?Qq)tn|iM63vyjI0_(f>4UCp&vTYGC2=+2z4MJB&Dwk}> zy8LcHP;SF)bP@H}NA4XL0ZTM52FSh}=4w|Aa&Y6R+ZgY)lM+An!rsy-$G^(dPgz<%VH zmCI~N72)dxSMcSgTv3i=%xABnL07}duR|PRr_YTqHQ~H}enx5_s#fZ@-T|`U8#?!y zK_s5b<99#Lr|0ZsyY`Hr+I-2qN4p|P+%0bw70B~cqnn!x(P2l$?fQe{%R>75MOxe2 zq3e+qc48~7PFvk6wl$=0HfnNS_gh`3bA2DD$Vo3;{OVr$8rp)|_}@%>EGyRQnd3iS zx6;@5`Gckd%-5LU=5?gEE^UmfiW4WPfl!*Zxb@T)2x;jFzLSWZ!76rzB}|#x*S+*? z1Gfq~2ar<@H_ z806#|a*H7xVU;m9|>1@4ZIn(vyt{JsRC=kP3YL19_oPdBAn&Bu1)8zM!%M-`lhxGv09g~5;gOMJOTg&_X@&{IHP7zA= z#Bp=1MigsaZCkB}7vxUvRf7|$<#DRtt|A!7qqmf;JVqhbgK^~Bs^9Ap>XXM`?xS=1 z!I49O&LRG7o~9*wRYLtVv#VKHOthSxOR6Wl0k9Rr5WZ#?SG9K5V{Y}_x2{`Fnd^8mki;N|4M zPp@~|Dg(Ri8Uem;kHK&DApIyVw2W_1B3?f|cQF5ctApD^pc*<8KS?~v3m)V}lQ_|} z4gxMX?ID>)VP+FFA&0@JMk+|A*oI7Z?JHgMU0xM{uX|I_nwBj`lDv#HbQsq_sey*( z2MZmizYFr6Y#&yb4Gs>p$`o8U#8C>COOb~}gH`QFnd*?jkSft4==hyeM5E-{<)a#&OVFT#s3X>6PmkLAfB*@e}*{a;4?E@vS^WKS!@TVsD7fOt>_D1#V?q}?Jz zY~t#{Gpa?wnHr_Q1$*VrM{^xm<=>ghO*=kVJ6Gcu9CcSqOt+uWO~N(qY{T5Cw!L>J z0{!k!3SO^nIRClIvro1csCx6KlSGp`h@ zKOst+Mmb6#H}F#HQ;Jodx5;(MTTdCtH*ftJEYb^TVDU&ST!nTKyqlMeKORs+m=_y+@?E~)NHjA2E1cdp-iS+}R- za)6gdG$B}DaAB5sH7&K&n^iqoAHE)@kVnxL?pSAP$bmlb8dA%iC>(QE=!6r^_EU^~ z4p^!)?!Q`Dh;LEp{S0~Bq%B|Qar%1E{Z!hb%p&sgN4e|VWw{RS$l6gVjiL%&#UBDB zA0`Qa}c(y?U064}An9}0S@Viy+oeg{u`0j{xcFB@@vT~etr7P@;} z(mMiVZXHQ?R7;v?GR^RQ5}UYiO2w^shWb>p@=%Gk_SLw@9GL&`ufwNDFixS9p62IZ}w_aPuJY=9A81}^`hrDdwo{Muc}3cX(R>Z z-R&#u+o9U*(4wVaRXMNXlOVfzx~w=aa{|?hO7!DNFHz9^{_OJ-L_V z-lxX+o1D<6AwTrgP5=Ww0L9+KjBl!oqiiV*CHYHY@FBo zPPyw+9z!TgFDJjq&PG<1{D3LG24V1DjcS#?UbT$dLL}{ZPjY5jf^BLBq%{M2Cp}Jy z!Oh_yEKPY2lH*9G`nKwh*+Ox{djkv_)7FbZMEvrd|9{XuIj;8a;3!WI0hXnQxsxZngS;N+7zJrxEa z1v0`7@HQDkFN%4jxT6E!yP)UD?>A_%nTEhO*JHm$K=X0&s1WBPGo4B#{ z1xnC(83W&5yl+2vaP{zIep;4QAE1PTW_D=eOB0wh~TbEZoQkjz${3_zg#mb~oJBo!)BC#iM*? zN|*epvCpN+rh?)}&dQN41l46iqp2G!SV^)XL9>=xWvPGYRXfG zFyxWQ4^%}?DG>4quYa4p?eIT;-%kjSi)4fEg=;Az{V%KB9Yx%gE!2*Z#j3zxLZ=-HGW+f(i{@jJrO0T)W5iR>*eUBMQ2Bl4(a<#^ z(V{w?BZS*7z~j3=df;yQ!VLeG$kX4`F|zxLiGU5HV2a~y|C{jl1?eA~igq@H<*8eE zYibhhYAG+x<;?VArt;)-o|B$$@=QEh$_M0hLYTH^6fzo&s9X`g2+61sM+^ig!@aup{p4CAeKiX&g?Dhf;niTPRlCHO&*DX><{)5&M`zPT^x~h0q z$6HYq$ABrh0fFY5VdMhaW7Lh$AgF7@6c)UgOYW@FCaUDlxR|j^CvIZ^2Z4jv(Wh%d z!xN3$2|+mC8S(Lm@ld@$K>yXL7&t3SWd41^%YY=(mL12AyKR#%!{IRQX<;LIn$Y-4hKMn`5I(kn7 zFo6tJ1mS5+l)EOEvz?Yiv9j|~vcHMC^%EE*xa69}%}qnhVc2V8UbT)+C6V^JEmyU; zGj&7WZg>OVo^A*Dcg=;?mk*tP<>bHT?Cy%_`Ff8ZTH?{cuYc<2YFuAfma4=OYp+Z) z%Hk1~1ZBvFwAUwPPcoiT34Uh5!pV8No0>MM`eRm|#se2ilI?!gVCBsz8yS;R;6a1< z5jyAgjz&uDFcJx+cp#Z@Tf;--%4TbXA8yz{WZv^OcaQ&i7R{tn_Sb&3%&h-4l6iG_ zGhpxZ+g?6zY^ghdSRyJnrz^tJQN7exi-x)ZNa;G%A3b$U4E>OhrKn=2(sZ8u+L8=K zH8iCAV~zl0YP_;0RQweyNsZRBubU*%)4x@puSn4mmvyu4mx3qw5V?cQ_k~@363gsh z_V`4p;_a?;D^T?5-{0PV4&F~dM3EhJdCD9GOPVJpUDwb!xL-$4)Lg^(gjaUy`xOLi zxEw4xMYKq`Gvh9O^VmnBf`^2Ex;~x%$~}Zd7j4-SjTgD4c^>2@W)JkYbC~|KRogXX z+@5Y=_xc9jMHlTq?VUtt6y-KEYB1l$b~CJ3m~OcH;f{QSSk17CK$?dwfLbLELQG@P zssiWYJ%v%od4~OnMi^WXq!iG#;$m1-B2Y~t24WOueW?Idr#_L9EMePf(G3qP!unU# z>(__@63Z;A2H@H8e0OEUbjk;B<VL*B{CoT}OWCVp~1>!V=nou#UWMc6}lRYUbxmmH{bffpHu**j(T>Rk;S zxW5h*I0@Un2cMnaL++ib>cz#7t$VkhO-s%Q{Vl-%@|yRfw~*tzW!cXusy}STe-R8* zs5#&``q3kKe7_q$z|i5wGdURHhI`~uJW@LmCXcX312XgNvZ?o^%oEdsN(qrpDP)1T zCo2eDNoI<#pKvE>D+gHDk@CRs`$#VFkx>DZ)6>k}+~)z-AZBI$`$ilV_@6x!!h)Oq z*Bi|7e)&1}8q}cMYOOy4Wvuwm7&W|dPK&+-KRG3Au^q2nI@HW%9n&ik0Rv1H=AX$4 z)Azsc^E*+*2d7Lz7oCD)%}xNS8m)Rcv{$!w!g+Uz9(K^nP})uk!wty>@9~ z)A62NIGf#5>DD}p^1gcG^Q01prk`7-tQb5A}yz)(r@ zG=GnHDxpzVSs-b60+Em{u`lwLsZm1?9lHoeooX|7pi(gyX!V4^ZZc)+5mSknv^HjK{z0|%`;63 zeVO++io{7WUpv(uEOF?9E`6WmGJJ7Mi2!)OFF_p8>Gu>6NHLT)#6)G*Nl{wk#i%e; z$pA)O+wROz=2F~R`?&;LU442iz!>Jg3T=|Ne*;^0;R9sX>m~Clt+b{FwD`||kcq*M zIu#^3{x9KYQ-5K<__Dz#Xq>Gq)_|TFdkcE^fQypt(x_g9`nMG#m2LhfpKLvAgHL+9 zBfu;AKu3&K3__h*OBAG6-i71VUv#ePLkw_q!LqR_Go_TLf{daprd`O1#Y0`E;Y}|2k`JUg2GHzEkPMs3 z2GM>!aDiwx#@1E`AQz>5PFLKd>hpU zU+{{|trk~(RFjsn8YvR2m9S`vEb#kg9YPu9=&6tziWZZwbEXjavYgI5{5}gX z-MFA?oEE{E1HH(;)MU9VE1DxV8;?o!gYOihIyYINW{@(Z+Sp3B{zClw{QM7;r>CSt zmsvsOk)19=1JQ?`Nfp0GKAix2^Hn>8m0EjJ+Z!3y@qyR7WDUoGo9YIfr{C?2k7z5l zVYOgM_KcX5Tr>-T*H0KC;%1e@|1nAZ$&z#E!Q zuGe|fvBI&gO=RC&5#N^U`Onem&Sz1f)^rJw6A|$!Wpr79VrJn0ECs?Glg6pB9C7je z_$8Qli@ooD!hn@#aRE|(d7=tnikia(Km)O-Y5vINU#*Lb$J(7$Vd*god9JsC0{=ZJu&=Y)DJ_@5mJc{Nf5sP(DB3?Kdl+k1?t4bH zD3c$$LRT_}QH&DjfJVoZ^U5}OFo&;n8bY`=6GP<8p2U%GVJUncA@dY~Z!B_Hc7XL% zz@@~eLGcQ^N|frNkbZE07g@nWcRv8i08bOjJgW3GC*b~NApparzqel56~t~iZp{(#|8>8J-K=Ny3UC-N_Br^NVmj&E+U`4<+aR9ZY= z>p!PIaTe<=HgZ;yAiN}Hf`(S0HP10)O{8i;>LPkOx8-^oRd-S+N3JcXQiaUQM4-M2 z$;yNRRy-W9DZD?EY$o$Qf|wn=w{>^yZ68zXfttV(E)78bJ&HJq=XARUq^4YxW$S6MPB2<#NJ*u22cL#hl-Q5nz|p z^}+V-Q%$ISy~bW+X3&&W>iLwcM=Vt4?{n=y-t)I*`+52M`v&3*tFP?f(C#86FwvRI z$vT{{z7HUQ*7nIMsJaHHOVwp2DN;K!=1HV%atI`= z84aZ1zEzv%=jt+R16dYbP;;w&b+5eON^0^Ai94H;3OpK!?)vD0xtIvfiCg3wL6LTy zL|S*rED}2qbAYSi@)z&h%HBM5LidQmU6a)!cI8n4Pv;3WC@&U1@! z|6eWut`-wh%|jyl(|p4~r!v>8vd3UuI5>S}`Gtqmg&hiAL|~4c#&6t zPzn2Mv^&*zi-99{4KO(8I^oFwr7EGGy*~w!W$l{vC|?Mj46 zik!GQc|8h-0}D9_&jd6TgeKFgS$Cd_YVxnsC3}xG?dT96r zO9`lMj3^xmhhMbC4MK;J@#EiM02l~;@xV}en)R)J_(chSzReOf|IlbjQM=<-EM%c@!RP!%lS7G;}nh zZkd;xm$udNlb@bGE7hD#!q(}m%HOtUlkZPw3wC*gLayL%n)aC9&T|qJoGhxGEX|k` zNQs&x>?wPKv{=!=FXO3zg`}HWW`D&7EYkeqU;C=I?MYqUw$!OdM%fzQ_3IS1o`z?d ztXA)WNQ;wVP2(n|zok$|2sMfc)%}rRoOr#sxc}=hZX)x=dLiMBP3_l{@HlaR|5KCK z$v*nBR&3KoZJaOj3Nk%2AyK(VYr*uc*B*|NhA+*xqJO01OilWOFrUdA&25fko0zyI4z z!M`};mj|&Phv#eL-0Z22_7ZF6%DL*ra9d{-l9{qA1BRm@75z3eHv*m@StAASV;(~r zLJrh#(603>8tWCbbZ1ykv0|_CNa>eGnyaD(J-goe6C33KV(PV+CZX5!$o9V9D=Es2 zGdE@IWg2cJc~4xAb%#biW3fHtFT;OUJlDD~GY>=C6qzSgb)+X3cH%q+a=fK)B6!u& zyQq?nqJb!!I>|HcsHvZ23ePw(7`~pw98lI-8fC;*@d+E!Rl2pNuD5U8WY3U;7sw~* z_J)#&2TkBMoOcmeC##Gf2Ge@Le|$x)x35s&dnM)4zMqPDpMakHZgsjjjQH0mnc+iv1a|L%l^x&1q{BJG4fndqc1J6F5!^LO^eL; z+uM#8zF+k2*t-8I*R-c|;3*06C)GEcHNa3i`n8ZK)Hj~BAu2gYIjtwnM2o3}PaUiH zLw^J#iswN;SUuTVfK9M94KHu0aSgcetzPsyqQnvVyo6nB}*4vp2Rrld|at3yIcju0%H;z&Wum-bI>6GVMq1ItqLA5|}X zA|SW~vgA5Y*p>-!S`innR@z-vQ}doE#GTE$gJ!QejU^2JGNiVz9PbTyKW`boR`oi+ z>S*hmjW~TD?;{;LGq6$0X9TYF4}6I zs)?&{Dt&LBV?cFXglOf5MhX_Zl`hQT;#_k;SF!EYf{L6 z@yOF_JzFdPCNjedB4Vk~&XN$xinw>b7uypez`wgKDZ{g}+6vgtm|49a#n&S9Igg9G z8m$q!NDu74pWd4hD7i@Y6>aNJakt&vWH1*dnEuqf@#_*XLY%cY-z${LmQ2>2bk4V4 zQ>FMbW}iXO7T-P^yuw!Nci-9oF~H>-x_#FC4_d?=ogD}NPdULvNR+JONaU4E`m(}N zbNI0B4K-!=q{i#}4;_JfGS78W7jkSYdAqrDwEUl^^odViR@T8yrz!)!vy1n=`}OiM z*jl7wl`KE#zu~~ZDB)LESFgw;B1kDhOW;wv+13p2*a}O*RNvUj(G5cu?o@sD@0h<8 zD72vi-QZGzq|$?I2;yxaJ%|1IU$ttnEflu{!5vcEPv7No01K1fg)n~mt z;O><#;Av1eaO3I#B)oAb(+J1}LQ_l{iIU>fUr@ADBJl38kUlBkw{b`|HMVknr6EK> z`b_nMQOIkUh9>4W)$K#r_ZV5>+T%39i3z63my|@H82V&I50GZxPFD`FC@1ULL5K)z zSEJ3^x|LZ-2&&k@o4sdT)f@qA6h>pZ-ixFnP{RBFMQGL|-}%ak{M4AF!Lb`yuzHZr zJuU3_IiR@CXS5_|+kH)n{@2?xG&~QYissUY3N22R$8r0VtjnFV<^=lC0_>|9`C|~)a4=cE+hbk$Zl4?;(yjE(i zL9X@nFPxu#%B!IRRED`VIYbjQd&bb`?O~0rzNIwBH?U58suJCeZT>&S)GM!Z5zX~u~xmwNOfspT2|Sbj}TViwGz z5G++hFVy^Qs^a+Nyv`CMfVpn(*k$9vT({elCjQQn)=!;)P#lW18#?4HdAAcuZwgf= zyt&o2h|kZdbtBfN^#bUI&O;gXq6e+me^c0%7H%Y4@1FkpC-gnuAqRNAyabBgeIIu! zn^!=duRyJWGViFuntg;V5T1p{)*}F_UsTel54@E~*GrTGX}W2shHP;$Z}2A>aP%>2 zt{(J;S@nJ;@#o&<*EKxuc=m%evIO1l8Ws0=3eBu@J^Z~ogggR3b=!jHiG6z@ci}Hg z{LU(6=$x!_djgjRRbu(#an#iDP%tpEn86p=9LLpC5SPw*7;tC``y`iWt|*cb&hBMx zFlw}1@YB))?m7Ut1vDC2lGjgPV-bq%Ojqb$9Za}rt&;vih4~3D zIaX7$cn(pQBd>HYvXZV0+RgO3E#w&spGJ!IeA^OEaHzKdSypd4zx9B9{xDkgyIc>5 zY_avurGC_}tROsL%o~eW;Z|{Ju8yR(G|6r$@HWwYRd2ijuvg$?fv=rM zy3=NzxdMqT=L|cHHnM;;b$>}3u3@`U;^?wwES{X96Ofzyi6b3m`p@r`%W-I5Hlsk0 zwe@Jq`*u$-D6EBeYN2k4F$iJ#@$qP3F!H0$gYiYaTYg?;5OsaQ*dn(RzV#yDUm9l` z3!t@4C*O;}_TIZi*8qXHfrP-XuitX^A~qg=Lyz4WbsDZ~C2Hzb$1d5AX^LxLU6wed z35Zc~?bHZSU*wHlKKN9pdEzF0*NbbH0w5$OYgX80) z7eGhsu#!h3&mQ$&jj1@SI)I=w6#wQ6G9GZ=mEN8lr7Grk_dR!gw--0(h^mRK90Cr@+Q!{lFn38oR0#o!H%O< zhfsRWeiDaDj19IC;8Bl$ z@a*3ELd?K7fY{;VyxmUaZAuOqeEksFvgsd1d+eH3Herz#G{{+0g8dU5Fna{|Gj`=t z`8t@9>xGOb$}Q?k(yn*T#Tgd&Km<(5Qb}*3|A}*O|J}E@k%EUoT=G@d8R$Q8#Gmhp zs`c$!)HUtwx4&qN()oj5L1#}fuXmTmqWf9NsCzJTAI=@D@;4x4@3Z}A% zBhknqDDa1!O3G&|ntPFHnU+cCcFWdch4=f&HvFg(kA z|K$QKC@|eNnSM(r zoC-z#wlT$2vr5#YOv{9zYge5FP^UnSw4OxEa*d^m645>qQgWp#1I8d@mawoKq2hmh zy`EZh62?bcg!$-Z`o;N-@?`c20$fY1Vy`G5qTC;cRb2M-WLxemmf@|995u!+nkt!7n zAywAUf9D9goKgex`xRNbUD0GtN0Q2V(IP@9`j|;+_h`D1DFqd9B^U|&9-GGZ>WjsX zo^7AUp8Jhgg5$q`>4b#wDIr@B0w&5~05k!c=j+Cg#|3_#hBnj zAwdS=x$#wH2L#ZhT$Jzz=4L>%2yy>`wN1Pe zc-I8UCtW>E0 z0;Zhoq=ub}95xUECCSZ+0}(EP&XKDVo*M3RggpTjv<&`Ea;HzuqG<@5PqI!;YT~{_ z;C61;Ipo(bps@46E7DVV2Sa z3FRU$V@eDmo_FgW>Ghgh`K|T7?`%E+d_ymq3R1}qzR@j)kzR{a>Zedr)V z(kS{V`-O(CO>c9N6K4D~`L0nHUMCyK*V^PnMtP}PvoXx9@Ki4t`Y66@LJ5SGrkTLI zp-43ZpAMu6RRX+cWEhA_Q82G;vc%*FC&ky|;dq;wy<9sfi#?8N)E<}d{um(r1;B{5 zHVT*hTDX6)Iy7MGeOTe$ExXaFe|?r|5Z&!vFz(vlBK_0~YgK%!#&`u;=r1owN)Oua z($znLz_g}l0n*%mqv%v8H92NG)d|AKBuFNQeDa5i_-X_VJIWN4`J{L7%d8#ycHsKD zK*TDC{Otk0S$q^qy6jN>y&zI5n`b--hA!}G^S#O>=z>)J{MTpEZEbsiR4oiHpbg^b zDV!ih*Bi)+;}h@~illOLQHr-BNCC$+;<9n@z(+VS(PwsyCT4NXra13jI#=PN? zr`mOqYpE)XM^W7<=3#iD0peB@nk5lqDe7!V$>U+REGN*uWA6{Dk#IxTm9u6Lp^U%( zlo4){b)J!^+Z1}h>*R$Xv5J4y$_eH6T6!%joL_TJEIj=wJv5-0pnp%I;BE(#IJiH) zXt|83N#xduhzm(G)?S@FtJlV$Whh+EHxlN6s=et|owN6S`j`Vrn zhTuoN3tiE>-JA5?fBBsOaJ=Vk&rQMKRcEA50x*Mts!%@qPvW*=O<`tXy-RC4`V#f~ zaqTSYR3X?YEEpOyRHNdGi6{c731*?0f~(uBA=CHvx1*jHxBHS7dpA~5lT3~+wS*(S zKJNuhqW!m1LKkm+&`%XO(S-1^3X2WhJ|Do0flOVL7) zkg%C$%p$N)WeHGqpidkVBaD%41WNYb4=!uqOIq`a;wU#Lm)zNmLUGynj!tDsmxo}A z156wSo(G7}UrsIt?qj(BzJDEqX8C0*f1dQs|1C|1JTU+IN9?^&OHZ6}%xw8ZbOdh@ zUIrU23`~YJw@gaZRVtB$6BLc2O+Eeq#ueXBacoxqi=1 zU6I!6(OIJ1PcG%CWRta`%x-q?%1Q`q!cmNJo$Ar$hL|25SzF#(GtB)Kgg$&!Q>T?I zO{I9YsGztxPpX=DNOI`e4z}0_S(foTzxVaj%Vie%^OE@Uc-RfI7|yCoo)39CvspG` zX6Igy!-~naBe->+l~`D08?nw|gWr$`G)3Ys+N8=*iN*}3saGBf4~a2(eCZ%D#T2_7 zVu%Em!@w8PgzfVK%%i$+7*ctPoNgGa)UB0o?Tpvf*G&xJ{b3Z%P?}f2nbICw+rSC? zkEKG_PO3d_u)aOb)5_#~ot(VD&h!p!JT(bT58QPA9#ZM^hwcbssgvf!bYoqe>Yi?=SmVY@!dG z7Iy^rc9>brm-dHqRm7I12gOH~Dd*CWut8!*8NbD;ygcqb2kz0Y#+85GK8%=cnATN} zY<@(sbw-V6b{hT>NA&=4vk4%MY-Ga_gkru8rsLYMn18AgtJXwkb;Es6NG8M{Gf*}; z5Xvei1-ro|LeA^_<0->Z6yCyM=}LwG3BpLi!-Y^FP*DAiiJ6UP)rDJ|5phS<@IQ%PVCNt1e=w!j{)f47H3;u0c-*_k%|5;9)u)Kew0XVj72#nHvp0`w zyHiK;Ss&2Lj=5J$k+hI_D+4K3we>(5AdGT=hc{mc=Q+FNyQCP3IeCbg1h`v^=Z`l* zxj^tfIh3IB(|;6igELBiaf~RUC3G_C>SzhNyLWhuyg%!>C~DsFxlV7m_PBOclGAMgYyfU>C%0Jj=KsYAhr`y>lXpYO{8S zSF#62BX%Q+b!;%r84cMiJWain%TaT1|EE%7;iRb51cIlSbfCtyvNLB9`we;T%ZPBj z=<#oCo&6fg>xP%-3b4;_LaPjNZ;u$cZ-vAW3^-S+Jx0X!#mY~V5|tX$PFQm|L*7JK zgn13lH6d7H=2BEpm_X0-(&R4Iu3qfXHm!{H8dzcF zaF^|9u8FQIR^e$Hr*%Yp9(B;)=C+#WQt`XFm(#7i8Tl;@kes+gs6y1z(k+LJYLmO0gjaO`RX^}@`cNm6w7l77qQZPfaXiAY(9TM=TEv3@2A<@!|oSr}McEv2j#JMPB zBY1?DxTf2%5}VQF%L3dm=A@eu623f7g zv8Fc`u7u9k)O6_oBP&2)gKfov!;?kd44e%6Up!q|scatr zU+*)Q-BY}UiBP-jbW$~8<@GF}~5d!cEq~VM3Om8LBopdcJWiM)#quJ~vOkIe+%q(M|QEE=b!r0|`QCR=dygqZk zF6y%xcFg^a(83tw870yiB+oQnC3^eZ z>8)&h(U;$!I!FSp7(Jx7Y4#grnclO{LKlM1_cDU)Q$Blt{E$N$W7Sn*V=0(7I)hC> zs1$x2h*);&e2W_}G_32f;b`x#cbLm;etaKDcf*d z#J;If%L??5_6uANiwDChq73^#p2K_gf7_OvZcpfK7K!nlqKA~kGrUg7V-vbcjhRpp zdDHIb$r!Xw+J(!`xW=68uGVIX%55`7dNOSPL$q~S&0GInZ9tv+b9PVZ!`xM^b$+|J z+$1XLS7pPN?|@TW3k_454=fu^PKg( zxA)&WC1YIUsK3FVVp?yBYOIh<+wQZQEfD@~RKu=wLY^XPcFPxU7jGWj zcSkA8%__gVgk$v2HN>yduInF9>gbJ~{2o@2bCh`c$6Y4K)$(!KTyg9y2pmcupU(dT z!Ir1lY@6yHJynaKWY_Kg9GAIf%hFV*wi)kAr;}=-tvX%}bjPaUb0Z~IInD)1?Y{h9 zF5tFY#oqUKyQsi#3ONuB_G)cx%*opXgJ*a~7abn|J~w&iUCQ?J(+r(s*YVI&t=SOD z8N0&?4zq=3wU*cFFRY%juZt8)8xWlCCIG!jC0oKzR?G7!H`Rt{enxPr?5s2IQ=Glp zz=3-v&0gnt4WN6dVF01Z*`H%*^B_ImLz9VC(Z)`uUH4~Lw7b>T^QkaOlV+my>Rq->&I ze8Sj4K1`gF#R_stU}>9zRe8S#$2D}Mxe4hnCpkheXQgW7gyHn@cu(KO+ixqCP16J; zm89FU+V>Bd1h6=mD^^-H(;(n$^EyxA>z`*m`<+Tx-A*PK_C(xzAgR#DPF2Xd#)mi| zXfvS25SIsCRwQ9;m5y3h%%I%e4Q&l&nb|3w{b^{t z;W~jp8#BL!;T6#GSu5QbgD$7BAYjG`afU5`h~^hK%x7W)VVhmoN655+E6^A3%hfWn zt_xGCqK)zKoCR11u2*{Kf7@L2)1xo2cRu`fEaUOY#aDgtpBMb$=)&CYDTQ(cweD_Y zxN#(uj|nV%>j2zLio+Pb&tcfD=uJh%l`kAoUCTENDI~ z0}bm=Wkbo36O-yEi>6#KNT3XwDb_}i#4&6OlI4O%TSNqExpO}dSucw)iVzbdZPw?; zO@uOaXGX?Eo9yt>^IpH(H%^wRQ;SHCl_~+VQcF(@*8ygyeQEnEKDyV}_jBI3?&Axx zh;@S}pz=FnV03J8eXnjg*hFFqkm||ia!@O%&Q%WT0}u5>`69yya6M+|s)Jc+h%?+r zj2UEz2ox+E1U*C>sGbIm3~T*Eq~$4TYE`Z(t!H6h*PAp6y|2u`WKNacSqt8M;m?mg z+devdV@xoY&WbNd!x&(IT2NPn>zht*<`(xYO+; zFTFwYE{+~O`;u=zc*(UtFTB#b{v^L3#bOa!Udh&wSaZ#C7*UXjKtzUdRkjTp7V(+_ zhPjpKEY+#f0j=Gb4<{1uogwLtJRPp38pK9W$mG%Lre`6hCH8x#?XR<#Av+Rr~`<02t3Q= zBm-V(f`|x2WSLqiBFw}5Q0t~aiz*@>NIN`U!BR=v1D0A7r7upM*vK#x~Bb^Ia}ZIt20lu|9y6o;UxpT*WR_$J!k*^$krF?UX^Xl%EntIYeX>ZcLsMozYI-3%wr+4aP6uFw$I}%8W}Bh{9wR zp}*h?`4CXqk%Ka49;KEHUdf`m;SL}E?OPB0?g{A!E(Qg^$~=0nR#|0fMRf@jKK-8S zzkc*jzLk0N1`l^<5%s$^*#HSR@FTS(Ga2~4kANE%YGtV9sKBFuWW_?Q4&^Bs2t=e_ z@G@LQmOanN;za~Hpp^_GwT-&wnh?W!#smT{<0qE0uE*v5Z1U5=76MenYW|AJ@6AFln}rHB9exajGZ->?ocu+uHe4 z^7l(*`SUjFUlv!}E+R0n5M7(3tn@)>jf0p}dId1jA{#f~Cg+ zq~vfA0T!T@srHT#RFxD+lL8lc(bP(dOt8oZ4ob#p-gs0nR)CCkv}?PVQcrDVKZz_K6eDJFIxoUq3zf?92B4=jj(6 zF?m7xja`wEjN_m;uAt>{lEF( zkM=xNHj!$QCcUh33Gf!J@;cKB2PDw8-PU*Sbij9h*tX@y56qLAm7I^Z&JH*P2L0z{ z3NQ*bI;a}!k^@$DTfasH*7|M|`9es#vVH=lUU5xE)NZ*=GN!_-19O#~3%B+CyL z5i$hYN_QVD<5slXH{mq}bJK5@rR@4xN6-}>yKxsBI*erCBBu^9N7 z9N-w}%iG3vl1e?=V;ON^LYh+&1LOxf$Y7JTt%V0Y(;!YjLPQcbDQNH#)2Bpdl+zNB zlthN-6-mN_IhyOW0)iR9v7W>mkfCdeY`bq9xa^w{^+T>1gu2{dBKU22_8@}8X>?|8 zUuIfwJoR-|r#)Yb;kgFL7z9k0bv-yl5YKVJ;sDA=M3Q>+A|enGdWkYDQA7s9WDPrG zhK5L_o=!x_AATl%Q&}qwk6KKKZB80EJc*W-5ar4z2UHGLSSQz|bzRc3U$GTFKU{c) z0v2SXw)L(%ochMScRwlp#SK>bp?7t)H)6auVA}s}`?uW>J?JY_-@f@jX4^_QKPVv} z2)4Ah5iDcq_bheCST{1rh64e|6s!Wtfbc{(=mz|+)e#Yh)M;^L39T|iTvF2ZDEz3a z1X@ViR$Z@jm_|tugI>gp)0fhfsmQMkidB9ioRICtfRL|u0}klided9O2`ypS#^~+m^wJ32 zY!*&F3uHVPT2___q0?81Z8F$7m{^RWNHdW&>}-xx|FFoxfLc0g@eDE+@>p^jL~n9x zc^vozwZz9ZCv096L>)5q>q6?+w#G!ykfb~LHVU9%82CUjYtiS1=raK-P6TnlrbNg@ zF?3y0zah!4Csu3nn{7uxY@rOmV`Q7i;+a@+R^wuZl;{kcA~N6`#bIAq`6v;?SwfIg zf;J?fdc4-uOhfGe+bc{d5H_pe=3v+v&(9+)WbAZ5n)BX0KL6{te(y_1r)!cJGe-)P zW9C)>vhAB5`0P*i`I*^p%AKWxi(1x4nSfHY5y}LVN?1#N$>ACYN;=T6h(kn@0lA3i zJTd)QBF5B_0_B*x9e{lBO%LpL@Bs$}(>h-$wz!B2K5CvI5P(Z`gc7FVKzBF+ zM?^m@Pb6FM4o++^yCWNWMZIa$YX%hf6@z_d|)5+B<+eUT8sD1WXgMeZqnqE`l1m zN`sXy(xdgn!(_6^q#7|G3-yjpG1<+;;9|~1#*7z{VQo-;2tkn#!Kl3jsNG{~e!WMLlJtL)VKq?M^< zsTQP&KtWRZ6+Y>riEZ{3Ct9${$3AfCyT1GRpQh7omDbp!6e!2uJxN;By3_mq@%e)f z*l+Tdo8A>>GogOZ(yJ0cLhf>NCt0mD<9nlmLsG!trD6RHGM4BOktL=Xo**WM31m2v zmLL#277CV18m*YAKXFvbC>Vx7mMEyC>yQ~*$-WYK9?@2bMI>0O`I{*LOtw{IWX;W~ z7WOMpHE7}3W#lX&xz^K2qJ9NPbrm?HjBn?4W@f%=w@)9tv|lQ3rAA)um->xfNFuD8>yn&dBMf2$ zd^l8$gJLd&zK;BYx9+mTG4DBe?^Dt>NeXKWpN;!DhMPFPnc1b{OwE-btV$uw6)5OJ3{AP7YyhXCcl za4k@H9Zq6V2Pe8<8A=LDN*FjqgmoBzu4M^HQu_5(A0@ViWiy5m3VIkgEZYo{C0JNC zQn4^*T;v!8+I|75B=su~!aA6aN$MwqtPV=T{?wVHUA0uD;c+6uCN~k60i>DOUUDc5 zcK`qo07*naRPF!pTwsa@8T#vF*@%d;)c1E(Hc37rqOP|Zm0KJ$1(5Y~h=0yED-@#Akzdf!`b z>1*?XnUx|+)e3x%)}`yiaw=XcSCX}_46RLvgEtnyD0oVJfNP-&SbD>g0j-RLl!F93 zu$Y5`d7(544w^;l(s=bRikj=x^a&*}!W@>c!gg8$U(Dt-h%;{}F~uTJZG+Mx6RhM2 z{r^0k=OnU`FotIw7!icJ_UgJ2J}v^~^FBqqUp=m|Gh93S{a^dSuitU-KF5eih}V3i z1*~idn3Y{YTKX9JCq6D*%PO`^x8FU8Y8kOi!3tbbeaEP-2Ra`N%>NHxQ54 zaEt^?txIW1MXDS|qmlV2DvTrr|BMKtaup5>@d=pf=lmK@COi0lksPii7kQtGzOl1f zCpV%y13N<)C#O2l~~X&;gV*f$*X`%}Vq_K{7#G4J;>durF24k?Ax%l13J! z@y)!E;pVtz|I(&w&a*sz9XvJ&(UQ%8b8A$qRb+E~fYFlI^<&rZ;d&W#mrJO&=TV$c zn7Pxw-#+{;yME^snKrGoJawjdR*wYqUay{-(^{8H0`ks{AN|T9`yE)B*70PyD`#z6 z4r&?JxHe{tfn#_}37En#5I5Bk6BA=NG=r3kx||r&X-d=VwG1fH88{Vylm>!J3jazfNyFG8?&un+n#IJnjx3b|{xhA>%f?NY~nl+$}X%k0CKt8m^ecwFd zps%j`;dlOJwigEdKA>M75`v^oxjANGAgGke1V_{f^+T;lB~4T3Ec!ZfI=kqUqsNHI zLJ=avc_IRl;j~buB``$l`8An{sFToZZGTe8VlOeR$TDATqc9$*Dg98k1b;?tXRZE$>im4=2*BQOP0k*kP#UGAc--! zuBd*DeyGJNBgz*UC?mUD9fQF|c!d3_Th8_JMz(t}o3>SHkWu&4b2XPx z_t#^Gu3F7V(pa_PD?t_DbldnDl(=45i6WRx4n@b6g~kHaBQ#^DJ*VwaznKmvlJ=*D_q) z-8K$-eL=A+Kl?-9{_-z3*?G^?B>lhJDxQ^2E31MOC|8zbS5di{_r3LzPw%(qA(P+! zrhChIC!XEk1C#aPcrGfH3a8+_#RN%xWyL3ODp=~TLn6Xu%z#>$K*M^o2?!ca;hRYT zO=yKGH2^5#i465ptu@kUmSjCqOe>X^7V9+$0m8M^MtSNYIV`VAba)Q&8A#5UZM01! z^e>vgHYJqgUG|IC-yqE`GE^5RU48W@s72`SFL8-OWi6<%V|^0~uWt2~|2uBV9-q5F z(l3*%=+G}xJpQ?&Ct38HyI+|Nq%=-3j;*@fn2U#(x_Zik#+tOEHc)B zge+j_t7mGy#tg)a(|CGEoQge4LsspG1cSkPIfKC^d6v-bMs`EbXhe2$20;MbAk!Di zX%j=2E5tD{u9J`@qgsh5R|h>&WSkxmB@IfOJL1W*f)JF|sMHUY2|(JO+&uwpbk zl7=NkZ=KG3lNm|zGlt2oUt5fBEi8~(S;;ro4S!aFv*tFO(AN?C&% zH+cfy>1q@qAUWbdDJ(B~EbDrt(vq4;K!8$ny5_K9gc6;>Q{$Be8BHGLD-E$$v?bXn zui*~WG@7q5#nw1&my$6C3Y@yrUGf~viUM1n+&<@>U)tr@>+blq6VjK-Ra$Eojnv__ zt9RqHH}aNEp55t?{l7l-y<1+>okO)mOH$V>edEB;3gW&@A{qU?c;ewj0f0_&Hv1FC zGF(RH)$m9ft++;-(c&6BP1EqNDp##XB?Zi8vewc+N(=TSSks~yWaTR_6O{7@ax{U^^HzPA=Hm%6e5Eb@!)Y?&GkLx zTU)sQjO9EQw#bG9*~0OoRit^8MvGe&JYAz5jT&|Pz7LpaJF2*NluRtYHS@3(bBhs(TNVsPMkIY^-eQD+CLlRNs}xWh-z-|Wjfp2M~*dL5&=@YKIX zN+1QwHS)GCeWMf0a^LUox6uwCx~@2}C7RwhACmD1f`kEDNBSMh(8jbZErCE_qX0V9 z6t2U;0b&Iqq9ae#|JRK`zmx+WB1}Lxi9-xCi~!;E6oZGQZ(-6YEF*@U1RV%LyiP)Y zorWc1AjzxkW4%aRG8?C*YBy7ZKg=C!v1RLrqGBZfA(CZgvsw6V2IXP}0im#1i!nEX zeYrjV>Ki`)nPav%`1?nvAKe|2+}i4+Hm$8)Tbcb@v&xotZ1U{(Ki+fi{M$CYv1Rj( zg4uByhP$+CSvnBnA%Tb(=DRL(xm@y|Wo*Obg>@|AFbYD9Q;?*y+^2%#@@I~lvZ`OH ziM0$~8Axjhj{0kx21r+nWwvCIcH;0)e5mXi=+Flb=5(7Ntl6 znl6Eq#vK$mtYgvmsIG(KMJ9OGROW2{xsRW+?gu}8nTSM4k8vS^6e!2VZLW7R^Uf_F-RYno?AQLb zH~mf4nSl9m0R0b-)-{P0>FTaH1PUIO)8?3)7V1|54+W7(03~7uQ^o*65={re0}WEP zmZPM8C5=;eQM9D^h4Zlu3p1CJ6C?S_B|D>^Nu%MInB^m4UaHs9#QU620x9<5uy@v`|XZdfa15qbs@ zfk6QRboD(!rNpviEk*>oR;lZDF-V=KiD5{I&SFnZqf}26BSM38+HJ`e5n7TCmn0m-#>K3#V&_h4o%!ake)@zh_x{F_ z>6#?Q-C@REkJAoAHk>^36Z?N_zm2zj-SY8?@qF|`L(Me?S@y)qJmOgEBzSrW{cO!K(OWyzpxy4m4%fQmQuDK58nFzu9 z6JC1Xw{|=7{fGVN7m|J|tuCT*cBR^nvmU42O(Y;&z44W8_y6XPC%<>A%cIF1VZ{Ud zTo$^^tLu_#P3mhgx)urATm%Rxsb5L?hP&lSVZ7Ai=ovf}R&A0;;~F#=J?K&Ev6%)V zhI@o*l!kK|QWaLBxB1kx&D0#1`0IJBAvkkwA!JY=0suXvDjyUJG6u6cGNlc7+5UnJ z_t@lZ`Vnzm(jiDVj+3NO z>#;!zW5i{7gF4MuT3mht)8e96NSv#EC23s(_L&Q@ku@lDWGwJZu<2*EJ@f6mfBpo< zmysUhRsvLqaohK_KS-&L@ePxIXmgw*AN3KwSPDg3W0ct&x z9080Vu@o&m1dzI)n?DMCmT8zc;TdC~q-nszCTSx2V#Zs>fvyY^MjVm~k(GQ~%2ML^9YXF1h@(W$-cfmC>W|msbbmlN)m zmX^fYGQ=5TAw&e~s=_$**Fkb&(TT{y%mI!_Jx)ZD@&?!|)lslsR0SFr5M*_S+r$nm zcXMoP;8+iFImEO7e*E2kJnE!h*_Vpb7F9;dA0HA>y&oSvO?x>^0t5;7i3=|K&J8DC zaGvwroOk4EL`1I3WeR!p*DAFCEF7`4A%!l1jnQa62rwFCIfKju8liOn zod5t307*naRKoWhM6QK?G-E;Ug5)QRjde+4W&)aq;G!bq3_O8A41~c$L?9ycjed#@ z#VLR(jh=F8x$)8_Owx(Su=ZJU-CPdUFhZ$XMSmqA)zDKbBdA6w#4aX>8Rx~@|GoWL z2Of6mtJmK9ab{V>nX=br37ECHb7|j3m%tO(U9`{rXJ7iWiO+OT+^m|zgx&~Kb8YCG z-;G)v!TN&Mwl-8s*e?TU~bGG3WH%_~1tx`BQiN zNWhGruBJUDNXRRf{`Cw0x#EWXI?F-px^5O3T9RG47WB@Yi-{eb5ZZ|fke=%jBq!!-D>4LB33K40aY{*01}wvdn=qH=(xkq&$)9A^GGpkA@kx*uYXw$K zVFDo7JAsS1CNNx+wBn-}1gHcShJDv~8-(zgt~75h-q}H?^XIN z)r28(5Jc4qas=5q4?OYq^A9@mqIs9xvOS~6+L^XzB}u@nq;k_@$B+c$iXUX<>e8oz7Y$wcb90MSzeR5Gc+Nv>XD0LySp?VG&wj#4-g)aGIL9gZ-+5q~$L8 zpk+81x0Id)BpYd2F=4C`TH!81*BCA$h=VWyDqN4Ol;}}_4B5}vuy%IVPzsKLF$Rv1 zX9Kjiv@$){E&KYgN!L0icyab7*PnCov2!lIVW$<|&a}WWDFF_XG1;!PQ7cFS1TpuK zOU^y;KbKv5P-k!0QK(o*xrUBx9y+-;1Va%5#6W#QOH*ke2oXuB5nhzbdWJ=bEM2}~ znU*_X7s?q!65z9pieo?skPd;;678$H9$Bsu{HoB8V$|DiAWS20pajGGj==LX=gIfIi+sRw08D4kKJd zAyBS_s8S9QlM8{-5E>H;lCFqAfs?ar#MUCPloPE>FOxx3ivZ@El5IsREz!QGUfSf3 z$DDS;oGb7A6w+f*0&Anktc{&Y`vlnO({uOz@w&tR^@qz2@n4xgVG_3`&{s^r(GU=9 z6u~ndhz1ETBtS#3QIJqtlnjX@P+C-cGhbv`0Mjt55}n1KnnppBI=zR>;F3x9shX|G=X_y1!a8OWYGYncShTGpSmJCuNep|P zv->()Dv?O7hPKuMJl7;YPt^a7V_cW1m+lmi1V~0pEix1*B7;c?9E1K*Jp{5*`OCzN znYuyrCMVTetw^{KQfvv5w4h70Bo!nhu1P}U9Res0zi7KEfO$mOGnav)Fr@y z>i+i+*Zt_e-(9hH*Mf4FUo4?5mj#SPZ>0qBTsXdme(vU0Y)HOfachzyP^3 zak!@~29XkzYU!fgi!F3B%VmEZQngx5UcA?S>6exCwJH5Ho5!_IpVM#jSCH+ip)jks z@iiy?=7=Z$aP8-{tdv%>1XghM11hqDOHGSgEfTP=zM6mX*XRG}u`90Mduj=t`JM_o zGFfzY&xi30oQw;#j!ecwRd=gBg@SrhMTCGT^#HFTGAvBiQlAPc4O;3<%aw4r`dWe> z2$C_^9YK(^v?haEj0&m5UG5sE+-hCAt_Rok34`3#HUf4OP#1t>0YeLtb9D&A*=&~U znNPf z>e)E!i=8>M@XymOJ@%gS|9nXPrTG&&xQ<3Ul51-<_=PNLalo-3LEmpw%SeBw7>Grz zXh2yhu+bSj8{vjK7(tJSu$-kMCSSQH0glEUVhD|10}&U-xb(Y-BSBwZnLrmp2%g5t z0Q5zXO#sgtJ}8(iS&OtpNC1w2WZ<&U1TgtP5fONvhltzfDlc&bl{kcT4C{$tXq`{a zP7#+;{O6 z`%Eszt!)8N>+MA*<3ZmMOxD|o1Ul%6nE)*?^=BeLsi6QOGSDYQ&t@86FXXV$29H3D zx zJ~v~tYkqz9seRYpmHsxIqFd8X)sr>7597A|`kv%dSDts^6MwnoTP+L99Uazz<>rHe zWF@FUT!I3@M8Q%)(waIL>P>eEls?I^0ufnAh9V2|G?B;%z9^V!%<7?7t7pGKXp0Dl z`U+5uYm!P)D8N7*EPG87A#b3m#>UKLNirk@$|x2KONt4GhAs${gJ7BDjg#~-``*^o zj+t|3CDv))%b-nPZ9T0a?}Z!g z{^3J^y6!;l$29N(E3P2NS|3 z03ad>XY@-M2q-{SXiRQ{Yo#32@k7on8|$6Zu30NF@tUA{dCL%TOI$1&J65s`@5Dp`#7HF_b4z>hD9A z*1XH5k4e^({`;PI)2%0+clzu<-JI@*W6eEOPu9@ZkKbnN?)KBCU9|7Lm;7bF%-r6N zT&XIdP66{7Sl^%&)&So{7;$>Y!3-seD;eDC5*QQ&bYsFYPJ{!0fEc~VQ$!XSw>l!U z{osa-T9vxHU9Cpk;f@BT+khxITB^7b1`dKG5JRWghT!H9Xo-sq*ZUSTUd!bSp6ie? zG_2`ef}~pJ4kXzb*RY{K_5{{3s0Q2>cU^dtrx#MX{Uvm;-p-nl+`Q8ISDtjvk<K2hX|eu)8j}{1EfMKAs zM-XuE#soP-Q1D5@aa?mPsw4)NQkpT-DbX22r;UXm6{1+FqFAmVpf$S4Bk7vk3_Rm4!8em@E&SiD`?I5D9xUW%$&YWu0QR!$1b?;pC3YctZ@=BYg~)Raf1~kAO7uC z2S0q{t>4Xd_qP>-2w7T1ef>Qg^cJoT+Hx7m>pw&S-}hlDFC{t&SSVnqpZJn|Ij8{y z%3D?vk!8)YPmfqo*b!X54!r@Ph)W#PaW z7mzqvJG2Bg^#d^h(n1WQ6!{ni50OScVutjryV8`Vo?qht1F3r`O#Nx2pYtKKDp^}n zpIWOi*NC$ot$JGeQ(M~5ULnZ7GIztjo%!3-pS|enFImeD)k{gQYk&mI8qmhE+{9JZ zHV!QB$xCk7_kk;}-PgW6yDdxW(Kj6QA~52@B|vzj3@s@i1Ql>F#{^G~d6(o^3mQsb zl7zs+VH&F-0?W|QDI(CpKAdDI!GO=Q%(^$G(;#~FR2*m~Tr zrsjYaFCdu=*B@DTVByCevhdjt4>7?qus-_w0#qs>KxNtHEb|&f>{E;gpnTv2NXQI? zlS*Q!BO=f=mVgSjMmKI8=5=F0$)PLIgKecp0Xt%uA=AfN0Hb_P{b|xNyM^Nuv}xJb zSXbl=+Y!R!^2bDvZJW0Mg<{2&{`bOLZaMeDqhJ2*6<=cZ^jt$EVAha!j_YRX%jD0W ze#sB-`O{VV=jIm+>la$#(V8Td5F9K?2p%MhWJ;(T6AjWEoDkzM${`}7aF>!rz*x$Z zqbJk+Btwu=+!-XM);5EHuhy};!Uq5#u(6Z87g^&vV5Jf!)?^fF31Bho*YAN@Bn;qr?2*p*a)MY=-Snmwb;8iv&~&u*6X4 zPPu}7;96Sj7P&$WGp0|+l+G?p$+jR*%Qt*+<_35C_K&|TUjDcArF6=0O*qY((8%%J zMg_@#oOIC3|!+uJP$R;phQ3_*J>znZMMI+A5j$1x{Qg3hIt)` zNJ1DmL?rQvG+c*aLu#DNt3b_ok$M`95s|@iMCfN0QKG*dZ`oc8hv=#8cWJ5%BNTLX zBPehLHE#4Q2#d%~Y=dROd2?sOsRnpmODEzP^EUd^Dd(OzI-p51cSS${hG`G4HIhn+sBrL|(w?quN8s*+l)vqlb9frt*#(FG+Ug9E-fg@`l< z2mKw?zMRYGzQ`v@vAVwR~BXaz}!X_Yij$aU6;;gAVyL5xZ@;*ua4aG)QyFgn$y->_d4 z1j{sZgf8e>%E8bt(0JvF=oREkLTEZvmS8*7H5SQ(NTZ3xO=;PGD4~frAtHz! zT9r|lxUKCiu-qLF`uou#E;`ts$)T9&vFEnF@AsD<_u}uaOu-Uk_fRbwyR93iEwj_7 z=bkwI;{6}G^2YB^sMr=euNQt8p@r*Ry34AR$>)-3rw(eRhNwj9169K!k_={%Ay@f} zA`w|s)XL*a9dtNzML^3?t+0s5WI@%m4qSqYB{QT2T_aU$5!WSS?shX?JhqE2uOnq3 zA}}mZL=qW*hlucs!7z9<=Tnd*i)TDQfUtNGN%AD?n1lX0Pr)!D0pVJp;O;^a%UG@B z3^${KpqjjipuY>x@FAyPn9p#NM<09yOXO$wu6xJtFF$<26*r|{O2^nds0L%RVdJ$` zx+Z!5c~}1Yo(uo9fBT&NDS29vorNqS0!n|a1eZIjPS!;wrgcS9fDw^V#6^>6U?XCb z$R<_;6dG<*RI``$L#dgkep-l7QhzgP+Gc8wOZ*1HCMuYyODsf{)76q^P;w1wv=l8- z%5ZlZJ;#^?%ouCWxNeSpbau=AC;$Ga zhc3JB`%}v@C0DG%2|0C(Nj8LW9XO7I8aFfaC1)p>ftC6I9Zhh;21xdb_)ThQIUuwpe9mx zm9PC55hREVJz~8KQUaO^lA4CxBuoGlspk=)JIDviw@^R@50QGDE*XR-hSea;(j@~o zw%mjQDMm{+gIc+g4n`%=RZ@SQFmSLASQ{}EGmVAe-505+5fSo-pPC*V{0R+@TBeX;MKP^k z-Jw>$h(Nbvay2!Y_;MNh4QSRA+}%PFnErA3*@f#8aP zBLOgN>p<9m=~zCChKLMOJvycnQx-O{9v!HwR8I$jmq^{O@=`gF1!1oG8Pj2YBE0Tq zgRX+C)~Vz$rAu;HhPKmlxuIh%K&#U_>^sTvJ=83%WIhBP#(C8WxXz?g9#AfE{p=xXNn~k~~6zD!_q<$Ut62M272UTu(=yrd6J% z7m)$JC`<7VOhP}wkhO{^KW2E~WZ04wGf_-emr*S1*3|lPe5G1KM{6qzFqpt~*y#CJ zHoW)ZKOfO^)vY@Wl#n{BSpsG?*FWy7SCG8*xbu#_=XZZTxNSjkVy+w_=<9>;`-yBg ztAp+Ydohy1D8i8j)Oj=xb*fiq>9A8`dVX(oco8%#j`SjXMTD;x^ z#{vqHNt|J;SbyxOE4+`ak!6TTJ(}e>i9b%-P%M{`Z_Ouhx&#n%qsI>dtmkD->B(m{ zyXDm1ob}>afB34k`fnqXWa(u!NPxF=HPo6`2|K-~>&}x;IsTE$um5(({8C{`CXbjF zMUebX*n#e%x~>aDQ^bvg){B8fec&lrIt=NH&RD`R2og={MCyaKi8bVv7MLwIO3_Jt~QPs6QmX}z41NCX0hVl^+tqvlRP!iz9 zkQx@Gwmr#9W&)^m89i{uNj?LCVHrq{IJwp@mhG;G4H>#?@A6(~nL3@0B}Po-)akWa zjG9tJz?n9*e#3G#kAkHE5JVwzg*nr z4i0(*w48$pt>~ZJI(^Ik+u_{IXFhVX5W(b4>&^S%-d{g#vyX4{=W2VdHa94tDgrm- z!*@NX9JDMgR~sNA>L7_=B#QtD=ISP-!eh9>VRM<}M93L_Di96lth^AhDH-_c zj;ux7Vc32VTEm=b!w6zpV7g9O&Nz5HSL=P2JG7o_SWsGk8h6Aow|nZtSKYLK<(j+F_bjpM53}m49KSW%IdfY7ef|{( z&%W=$@3i)n{X!*xE!W^W4h)A+Y$K@UWeEZ*C69cLuf%%PFbFZ~avVV|NhOFVYxzmB zshO6kBm-gq6s#?gO4~ECHQFBqGl!sHV?oTGmYKH4Gj@J!X70PbzUy)CJn-Ac$c7tM zMpi9bPI!5j!@j@A8@7AbwRWAhsFDF9hpE`!kW*Irz~T}T5e8LSbuz3;C{G16p}=$+ z%mh%7#K2({xCi`;b3}w<9!{EG%T?F1e07`2Frdo;!gd%+NdZ!c?Bo=Y#06zi$hDwM zFf4QFC7UZC;D%PUR)gob$oMV_#=$zYEPI}O`pthk=eNHqUVi(h*>1^ z{ampnrlpN40sF+u6K*^5jN=~s<%fMOY1BxPzS)4?ah}S|Nt( zRXWfd8*^;a1|vAA)v4b@)Pbp+IWF@wMhgcH8l(+Sa8eR+ASC52L@ZP57^0>Wv|iCf zF{A2apkT-G4H`qJiABVXm4NMROot6YAc_KL8aO7|jIn`*D;dOI7NwR}yI@M!3p@Vw zhu?qCzTZ7sL;@B+>M0vfo&ANM?)BY`KKjnf!)Yz$7mITdctHDv4%EUbA`?U3M|9Z+ z&k;gW07oKN?jpMk3$(Qs6f3klhMt7Pfgx$7+J6Hqz6}sLc2L&9KnX|= z6(mbgM{zTzUs!fnETe-PeU+Xbbom)Bm+`6*vQ+q4^X9^D$pc1!rop42gQYw~n0JY3b+9Wf zG2!q8+9ss|t}4nfvH-CgE{D5BF)|$8w1W^@f&u{HrVEoG;JRXKYdfl*gPBnUl__mA zH~-{^&)#VJFPtMHA(rxxx2!vTr+xR@cfI$&?WSic3lQc#s1@r3Fa z{WD}^Yeo>0w4E8&q;1sdls7mPCxh)kGm*tJPI&at)hp=M<*jKkaHwBNgLT(3orV^s zdi)5!Hf{u~5wsGc5>?^lefYkMN`DbSZxL~QYe4%ka; zC;$Ku07*naRQ|zHvY}M4jEB5q-IsPb@H^k%Y`gc~&|7fAvM;n&tFQ!Wh385bAmEY( zXZdhELb#(XtXCq!hSDoCztvhunpP{Lum;~V-zG+j=9zr^z?I+Py52YnMxJ809Y^Ej^3x9fAgPDJoU7m zYi`?7^Q5%$Brv2&E3b}mS+afj#m>8ad;T#`UVFkrew*Ki}zZ6+|OA;dvdB+=G`rKhZ{pQ9W zdG93){J3JcTWn~(Is`^-imsPhf{M$4sYUSUI_!a3nEE=BWg8VB9Rj+h(c*>c7zv3$ zM98XJlOmFYMPz_y=_28=gU~}nk}w^*AT`3nT`b{XvyiM!*Q-cUtG615u(XPmk@I}C zP;Z=41zukTlOxC2r(fCPs*}z{vib{2Z@p)zw@F^Gt+!S(&%}x4&}YI`91ag(3qc*lVa-wwOHgQwQ&L*c(6o zfoo`42D8EvBHw|N<-^A%EYiX~ePeVbUDs`F+qOEkZQDsF9e12`%#LlNV_PRicWm3X zd6IjccZ~1;t5vo4u2r+fC@jpGN+uphNQoeX_!eVlkQiOUlwfg@eeDEki|e-jqHr!v-e8J@BA@OgbAs(|1_CSBT)wtavvN$1*!v zEKULb&2`y5COmCxkFb^>7_)Eux}SRbg{(u4T!f9u%2=AwoDv3gQM44W8>7$zJga&3 zuc+!wO1>iDHEfIKgR|9qVqebWrI*xshthn!Hz2}`?V@1kT@gi8l9MEuEdoFtiuFWr z9+Kh(hBQzL+E1fdoi2)2i-mxN5HROu2u#_IR%p@h)$87MWNOe`%!*Xhyet`cb~%My zdhqJBCJ<2SjLx{)uaxvM~Ye`0L;-`D>oE zHIGpj;s-0W(j zW8_DZ?!1+Pn55>O<}w=IZ=4)zRqb-E?w*EjhmO_k>*mW_1Jb*}{E;8YZ}q{bg_f_G zgD4w7_x0}cFl%)?Rd%*!V!dI7C1wfz%QSZeyxEEnG|6swQRHrRG}^Ah=p*xpf=X>l zKS7ydGonmEX2~;4_JkaeR35x5IY04G#D?1(Tbbffw~4^7+u|2-w-fJT~^*m%-1?V^oFEJjK>s<7JT#==598JSMr_ zxvt}L0{(F`Kk^;bBRiNEp^*JY1V<5^(TCxBJ2h^pN*Q0ol$a&!=cGr7DR>@26KM^I zfJ<&to#YWkKmz6bvKtq>`RlVQrVh2V3NlA*`D>`r8d=cII+@&L^yKA&)W5*O=fEQV{Dbq|7FN^}VhjmY~#s z#O0M4r(AVP9}FCJ%qb(f2lyQSA;rl3$86_ z(%7x&jGA-yxBOS2{eE8WPj{cUB7VM{XX-M8q&aCeFUb4pBtMI~Mye z*FrQL={V66^f?ppvLxm!5_h%8W2en;JjJo_IzS6JNvVa| z=p4z}Jua$Twk`W-2ORjNPqe0*f(O;hF0lP(LR!}^)GDPBs#VA?dG;k26yY$a<_q~8TG20 z8VGIGuAX0u6R-GzBlvb;@a3`eS~mH4zwNQ)OW*AQuX<3|op5Uyocq&NCC6oVt8VLl z`&-TV!96sA=^Hhk#ORXkMm;$JAi)A`CYsuLUUUcewyw$Ei=`WsbaF3Izykb=HI^fLt4>KZJ0XBEtF*G~72AYl-4(7QQ@R zKHYi)(P&zB3yB1vuglu7?lbVZ6ZC9OqkgQWIJEZc;?DrGR-!)Z5z<9Z31C-!QCMnz zjXy4|)PHL}tBGB01ZmI-%m$QzY=T70eR+#gUtZS(wmhm`yGaF<0Tn%GAL-7TIBZlNvU}g7y%z=gxR5nxv*pDs}Bn^^jA`uA5L@Dos5^l z$qZgVZlOLp0tvBhDo{U(jnGu7TWQoM$_x%!z%YOrc0o}C0&FFqV(8n zaBY|yH4K}IFenU^v?=_VYfm}q(izn&9}A($qp6aD5kUE8bWz_OTdZOrTth)dU_c*4 z6b8f*?%Ght$E?t6IX3a%w;ay*uzhwv6=AZ&*mm(+hAA+tjq6=fL`Vt{cv|4V*|?uc zFV(y_@Re4l<-p|NALiuot%Ks6_} zc2mc@Tu%oQ7}*DJ6hBXlZIh2mC7`jEzR-#FtA1tiZi+)LRr+<5>~r1l73OnM+S{&Y zUZ?vZ&u6(`(In!(g8FP6knL%Rp-A_jv&y}T)g^+Gq_V;Xg}JHb@!OAjgz7w2lEHn} zLdkYt(n9r#LOjh<*T{R-vzunfH_NkP#J1a={ox#_Ljjv6HEgdlaw;pijB&waG*eT? z<$D7GK~-$yz!KeKiw&y&cnOlyW$7S-JpF`?04B^DiT;~ zItpA13n6JUE0J#~d2Db*WxyV>2ReSP2-B=Q5?%dJ{U}YGrNKkKc}MN|X`2*V+>At( zgMYNZ_jjQl7u)kGQsB6}{g^r~^LfkU`$2q<=S&!>*L42-I#53z9(?p4sGLrG_7?BJ&1STEDda3PE;v&znu8vlOXw6rm z(9SE$pp z^V_St?1nGtC}}mlJb_`+D?RTk%ShcZg|vfp-P3RkyleRSU-GzxI< zMv5|Yd=$`6Ts%zZ*c@4+XqFC~woH2c)@^Tb^zlgA{&oZey-DBwWaBN<0`-oF_IX2c z*}l)2#C?p~cz(T}4Fbg1_tI@g>qG?6Q=))3a5VT@3+D7*T#|TUi5B&IXyx@<{e1Hw zB%>>MM1f=Y6zKQ}Orx~7N$O1O#_O!IA%{cujN=x(M{9Xz>+YfiC`$~>18;mS=ie;$ z#!{xN+Fp;+{kwMCdfdVyZqVyTY_%0a?HfKnR7jqH*D5RC_f;11J{@~}t$2$Gj0c5% zdW<>+&r-~?4h2^fA+WJLcnb0oi49b!gdv`Vjh!bfL}~85gzWz2 zAcu-mqN6b9MwL!w28WdwoiNRL;o2Z$56_2cqN)K*N~%h5ARk4Y+M%gN!$swxIuk3` zF*iw~WihAOd9$qV)KB;>g~NZBOojV5N^XB%K561O_C5b)^>cgsM8Je!MUn}TIJrzQ zoBP>yn7HS70mSOprNi!QvNCIK_53`be)HQ9k!VZAiQo#&kit%FzZ*-%=OXFQ6_RS$jml8txzFQL%o;P{ue2yLoS$7 z)zCpRJ2Mg61*}E`AOTo@YrK?ntR0iXW(_ai49m7QZaM#cvTv~Y+PO{2@tjok8E-m8 zq%SY8kQBI;OU&Q&-rbLlQ!278AaJqDVj=z zg5hoihplItkq}kEfVyWRj%)(|LICveD^VplE9K2_lfS!C*%{qeU*{Os{jjj zsF(o>&@3=x55a~Uk<^+@6aa-keLoV92{C_@2{WvZ@rzciH$E8Kqa1~f3qdm%UoMtc zX<2b>`N@kd$-_o>nftM&FblFAap>gyN-TQ+PqbgQtn8)NUPX=L*Q8XLb{&8oc$R?R zKreees!m1ND|d0R${cU(1{ACNIKJJa9g5rLab*cM$G=<^#F@xMMXQ!nLqjB`Xk>K_ zq@+Nrmqq*kNb=hrT(6K} z^#5W3Y|Jd4#5k&+f3tQ}EI+F_E<{CcxU-Y-a(X2Cd>BZ2D-2ypg?q+-$E3iv1G#mJvy) zH`|UOC9w3)0lkzc?2{}V@^yr%6*NpkJWA&hu5 z>+sw2=dO?N^C_l}{)azM`iE!D*lDX}e$j#P50DTzCY90D=y&~;KYgR8b(Aq}fm=$@ zbm5>Ld3jx>@K%Zc)UkTS5Yj-xRu4i7Jo!?wezT5=X@jY$Pr<>Xf^V4(?U59;abFrY4LN?2svJj;|=J9ZqOOw=7i8 zE<+f~xMTVXr^sw{;USan`y;5mv0hRFz5S6yLY+xtaD-8zWRBdG8@N-9ck=hg)Gk& z_O#yvF3a1l?jkkbXj_=*umuUNI9NM~4AW^cdiW*T)7B|zBoCyi5P=mH^4iNt#L&u! zytgapA!a^ds6Qab56OYymL0w%hqhcD+iwN&N6&rNb>>FNsVA8_t?i!+t}1!=@4fz! z<4m6`r?V@zqfV=FHLW$RODni07hSh09C2Q+tvlFVr_i>39ARQze;G9Mezqg(R&&6q4tqu1Jz== zjy_LQ?wqGS?(NUDpc(;(_jqa^i;J=ZcueoMwXgBvy8B&E<2jK+v4GMGl zZLY`n?%ZVZY<90pV-M%5M(=9d?quvL+YFsrWAkUoi(!MC3%B4>vm(wWa-uO)AT8Sj za_tPcWk>eUDx;{<#m4OS)kmiC3W_t6l~7Gvzrx%NU4$gxqRq%xx1lS*EEna| zom+?d0T;GB{VbPF-2LAu+feJwCQ;;cbf#OweV-HJJbMq5u4)ZAr=iOEq42juWDq&_ zG&@Hg*Bh46 zIyyKgx#{p+b9M;7xThUFKS`8M>mT<9^n4Ca=RLmrUCeVAfg;0HprW8~3vh*mu8V~4 zQ@*=LojqlBU>*1GI}hozS)*h-{CQWwI3G-|L-l&7Z(0t2NC(F~?@qf_rP1{w+8Xir zXC$G_@CI%TUpfRC%tE~k+s>!FoK19gOPD>@cFQz8fG>-TRmfFMhS1|Gq;DbJ-0wp& z%KZS$BTt`(%l$#|<);O4S0Y+3v@=NBJ=sXU-kQ#?uOeYzZ3jnl?J@_gIUjgo&c%~M z+x{IG71fGAA$DhPPTz2%(S(uOZzqR~lsul0YbJc{6B)Jt<~Et01=In|wlh7AfKq2P zJ`)IY9EqX~F_K7ue*RAjBA*xK91N(Rj%B03hGa(A5!cvZXJm1G9KGof8HX4?;ze-H zl1eRJC-Gg%od3!LQt(7`anIjr38>U=e=Twxl_iS+`z%*Z)y4Ciaj=H|5K`O+Nv9YzRbEA5P#B@l}Ty1paef$>|L^-s~`Y5CTP2+d1 z3GP{Wj*mu_|I2Ft^gIXYvY`U6HJJUdn_bWTXgI_d zm{oYa{rN_WFix|l{#R377)}J3c;=NLE6XFP75 z#N>+MVX{(7b+=~pmG8hDmd%~Q(N}U2?QO^Tb>^ZjW#^3qt6bZYR*RjuCR_&Gf+9$I zac~Az$|l*Uje`HBrDi&vF(~Jx$UUOgdd!Z&$9=0xmal=?2f#%p{B^N2=E0DiDi z54Nm*5+M9c%Qp1FsvtC;Dl^cp!B9_ii42sFeVo%pVj?{S*Ai#mPT;T37J4()0cut9 z@GIwB<&nJjW*o5_W?xDUtJCdwFRX7X} z=>%%G99RG!$FD#B`O7#yR>bFP+Bu#gBJvU9;Q|j4*niS^nHi)TYsR(Eg*xYy%4`qR z7_AbSlY`0}39?E7nSm6Pn1L3dVT2BB?pzK~iH4Z6~O_)=l~ggOj2gLp;@##T!o z@TkVFKvWaJ+mWMMU3b6Y{)~ik+@NvO_)`$>mfLC~ZLYB|h^M!w!y$Nd8KT)Kq?Aaf zBib5WwMbk)!knHWiCXqdLmwQIh=e4FO`^tvNda;(iXd_}F2i}SMZ-ePCNp2#)Ldy! z;0-@{lPqwu8na^!XRwu?Eh7gZiJ6&s#zwnBU6MOLWZG!cR#if=sv>LpPZ>3)456Z* zZ8-2r&~yz~*xfA2Img(-kKXYW_>Ht>aVnqR-QTCSt!?K|*0?ww4<$?JdD>1^eqp_o zMT@)~>0Io49kLp;MkQqNt`JZ8IpZ1sfUFpjA8HC)7PK+VAilI@Y7^bfZl*Kw0s|24 z{ap=?B6CK^q4T^gorrVaGhi#%RPLQ~l>3UMYjeMLx;|dG>GrUf_w3;;`CCtb(Ei|* zQD6i}6>+$!rYKh9+SsC8lmY^cELHPWQ@t_=C3FntWPDh>Z>WzPM9LbZx`~cYQtPU- zpat%FYiT3$w#s8v=4OQQX3J&soh4nuQ&rkCuG?!6;CcNqcr`tMUQkf-Kp>Z6SI6&~_9j zsKY6n3QXawMz0(`dwO`J%yyJBj%1k63Pn74B`eV{NCj+bN1K{tHcbHo0BE)L;qx!a*MwL3YI=m8W5RAMgU9H|)X$C-N|EvewRSQo!LW?V`_TJT&iWPX z-<)XZ=8;EAf|?FN@iXbL`MYKH;iwUX)KCn^fIaT?inks0cz0xtM?P{I&7L#nqMc3> z&2J25vEDz?|FYRGvj5S?#wS40o2sPo^5yN~wA(zN`n*g;B@TGn^*EXkcNN<27pV=L zQ_kOdTsFyf)_mwqZ*xC>Zifc(UCf_mC4YL0E!(){#kb@98F0_`^=}t0uh(4FoYmxG z5<-YL)6pkEQxrvETY!$`!>N#Brp8yj#)NPn)cTZ`mVnl|BhG@$VX34}nQkL*MR}tv z=%vQRrfm^v+DGkqk6w!JIlhkdtq`CB-{tgO|BfPHJ#OUrVd>!V&bZjxh0IR!2A`Cd zEzvS@h`801p+`{6flA$&q*2{({oI@=EZ3Za+r5oUpclGSu~Y;gDD$U&tX0_kRNGTWr#U8fL82H)p=9w*3dM0oBR@Yzn|CZfkw^X=4Q~rCioz;M zg`Pb!0P4FO3Zg3Zmz(2eA;5shs-GC5KC@|XXD2d+F$KaSTd1F#C5$vd4MZGr*qQgA z0T_tLUdthQhzzgh&LR8E_{6Bi@m$_E*VL+h_T2WiiW~%XbHCh`eKTh}?SO-ikiB#; z`Mi*G-1HjO7<4aX%0P#9S{E=QCjB>BUeNCaJ7xx*?z-B_ecpbD#T0(}4I+9sDY&?4Y zo+wm4m(+DJ^IiGs0#PL8xTvvCd#KtR^~hsdM#t*C-WSv!Sq&b(Q$+P&M=Bb6EQwok zUqp07Y2>KZpQZ?oB@0OBH2;#I9q~AZ)+A}V0)VD<3kiru8K>mDEG$rWzJ(^3KL;tQ z1Yr#TK=Z(wX;NDTlCC<&hkT&^yiG_;oSTyqH6iw%kMH#y`yt@_^3XG-s5-%0?!vtT z8!YF~$l!NqfissiTDY)@82;R#N#A&b2g7E#g&M!m-ezpSGe2Z-k8Tk4f3bjE$eD(~ z&pSHIxsoUVm65&+x%G)Ib>$yCEmda0nO$~=33WhuXNx=et6!m6hCic z!lk>x>PcYJ{ZWfiz>$}X6iAKc=T_6V4&t}OB|{SCOXg;>!7N$F!A+9k1~g$V;~kyz>W>M^I8yHk|p1v^u0zrP{+LYB+@_QTTs-k5nWE6*Mx zji8nppq<{i+&tuf&5J;9!}&MikCtg5lX02d&)(y;6?e6>Z?xBX1T2m(|HOO>q0yO@ z{q{uzj>_90Aj5?>+-B&>Dokw1Y+HCy`qe86&(CbL4H;+_qcj{*wQ3CpTodf*MPH4% z#1#VQnD58W1)V1yd_L}j5d-8mU3C;-wbe?zr?u6zs#*!&KZ4@~{GF%NT(5jCk~=;b z*yB97j^=v^Q9J=430vW^ol2}YI8JT3REg9Q6y887OP^9G$b zZP}KZs)VB>k1yp2K4d!3o<979A&mIjhVz$ae%DTvqq#k4U4^@Mo3RG?cdq;1y7%)k z(vGjsZ>ujphO1r=BdC$@Ishx0v-V!%=!r~-r>wEh}!M`<9Af_sE4yQriEYd6H1 zsVVg@teNkGjmFU{aBkgPf4oMqVL*NEAv;>$jgD(K*ZII#aGw^x3yCj7_(?oZsj)D1 zug$WakL()Z&V6_wrvA8)7ip7%RIQ7J>5!D8Cu!MM7@-yU!XL#RD>&c{so#@(RS{{`ALXqcEw#zYx_x3&?`NQpbBpG#ynBVdSpTG{ybSKqL}my``c|=Y zTl@8a7L7p^rG>SWr__8XavTw9abTusOdOViU6z0ZR2Cag@QnbqTwTAGV`)=5gO9TZ zlx!CMYa0zFyg}Y0b^!;`S~d2$psRcF7O}oweV-P4^>rZT1JvDW{kuQ;s_|u)9EirW z{cDGW))6p1jA~G?Y!}c$>8Q{}jlla`99(Nk*9}vW)VL5*6EnKeKcMBu7R8Nrg=b5m zt*QB?OPO4+U4es&$4ns`TM)Z+9HBP;_A$~JO`pkbZ9q>q&rBb6s8@iDD)%yq}QY zO#YJ`Q?x@aMEQs+0lFMmBVY0%W-B^Q#c;H2NXy)&G>|;pD7G`5T*h?gwcMj6tmTpB z(#QlCpV!cHj}fu)-;>5P!$$Mykt?W(kuG&t zLNQ3AhFjWn(I#?HONsOXCX46fOqz`mV%#q{lA5w&ku6=+;uFdMk{c6XjjI z+K$oEmQ}ySrxOj!Pz zW%?+Onzc#)J=C_&x1i*#P<;=U{)WVr=NAm&-S>~$!7>1e2P$=0gK5CdPHGnW-M69B zvq{DOW-tEYaglVC=6piWAy*d~I~$~ZVOt|E-2PW0pYP^l8V zl)R5vLE=sj^(_%@(5qTGle5~iBCxsrUzIpBi@(%gdR1G!HDPLp{BaMvcfj#;0oQhv zZ!L1S88T3h)WLD}!6g6XljnJ~taF{AHC1^bvvQ~hK#&7(|>zkFSs-+I1uB&GtfQeoq?Xy^Z^x!M#xKInGzGVjdy_pGbE z+9vwy{*Qh!4*6L)S$*UH7wT&MoUG-}#-QaJ8%X!{ZZ`I@14oaN)#)N!tMhE=!@Nq^?XXf$wc zYq;U8;UbEP?={{w*2PZ zx?%H<*(PLBmp_7|u7D92GTsg@-<{t0dT!-=Qt$Va3)l}=Mh2{nf%ngjT7c_Yy%C<` zRdT_^9S=Cah7#99NrlQ6Q7??D&Yt%y`(xu2N?Pq`a%ok<{$feB3|#cfQfHKmGKoeBOGh6L^+nAf&VEG&n}+v33;W>38)NN3U#eq34l4K+16m=_p`jtZeTX zJFiWFO^yN0qE4%#HC%uLrFyOunh5!-)52A;Sc!egi{h4UELXgh7kF89bCt?}@7&&h z@OAO)#@OeTRF+vTb@hx!F93K4BM|U1(H5}F(VM5iddSf4@)q22qklJI!JZ-H!`=8> z(EH6tHGtUav00agQsPWiy#51{=qz17!$KmcNrz(Mk?BWU2Z!g|?eo*t1MN1ydsk5L z7IA7gU_a^r+402dYr6OS9-egV4P#vo4w;!_v&$wSI3Y>dQ3gR;Qo1oLoRGXlI+b9T zx*cIao-&!s|HtX8F#9S~Bh@Av+#fjS{`gCpbD&*#{>8o0s`q`F%#qSyl?tetVZ-gq zG502nxQ(x{Q%K{1)_v8yCCXe^YB@#jG z71lvb2lv6z>8@8h0pk4E0oqzLau@RtVywlN^X4aA8kMW@Y_K~+>H#l6`E+z0yYhM>B z1#A#&vaB?6SAb=q5{uzy2T?(tu2h}0Qm*E?_qxH?T?eKAXUoL<)|;&B)Pe{%m8fb( z_jNsFod0@l{)bda6Kj*pi38fx$Yj0vs#>friQ+cz}ceOh{y_b#>C&#GdRt zr*(O#cjlPm&4Ni8+}k;Mxc>!HA&^inEC3FJ`arW8%KzwF?c`Z#!l;F4gJ5vJ&C3Cnn4Dqi7O znw4-2;4Z5;2WvEcmZw*@VwZc5yL|$VaqpIp^CY}u^gzF|UeSKff|o`nTaPPwk(c+K zuEHBjC{FPx8%m*+F!c+R{CVHehQNcO%%($nHVgE{vBiem(ux7a{EKABj5aG~=1Q0@ zv1;?ftWZ1rf6>wyBdSXjobkceVZyW0EV~WC!Wmi8siCFLJOUK9o|LV#AE)ZBJ$%p0 zMEI|IQBCO@o&Cl_;k&PaOQuVe4ZF3(;rl)(->?(+`Aa<{f>dEE0g4D!6X1KUg11r-l35YtN@d2e z3U1Lm)?}svrsX<{!7wJkESB=H^1FW0HXK!^mtS1b9i$&;xTwZo(fNRk*YeCPmyaa; zUL(@8j_PlR@kCw6QzsB!y!yeOdpd$xK@F9-3~ z@F(KGis6R$FrbNN%#FTgw_j|#-tdvNWYgC!=t4AX4m)ZQ^T+HcqRaI|n6(N?DI!J@ z`GBLX%|+^n1>Z(okJ%==eC7i_w#nbGHaiA=9G5@nYw$71Ru;Cp=JRNK@0$ejLMx0m z5jRHU$)l@B$tg*O9(SBOWPFNHt$FrcY>f+*@CFYrDDS^6a($dMm;Hu&k9(fFy@OR_ zSO?$`3BkkGjx1SQ8_@8w;aG#w@?a2eIdQoE;dQo3=xgxA8ql83&wFHXPrC6dam?#n zG!uK4CI{r$WCI>K-Oq>OkY&ZIj4tI(pPpFa5ss_ydagjKD<&t6JcL=$TtQg_+$}LQ3BF5Xr z!zkv^S$2~46tdFa?6iv`-SAYf8YXnxm{MIO6R{Jk{Wx?#&O5vd$q(>Wey`Nf-?vil z#!CKWhUhi?+o-^zlgjW+EompEuy41i$gp0nQPs=9KJ?>)J`j4c!a5~|&*D!rTn-&# zmoW>E>~0)n^1s@4+R?C!d5GbAu_7=$s(Z~ysJUCGLR;f|lb^qyMp*1-FYh)TV03@T zaaDX=%8-7QND-rol&Ms_A22}=Y>*w>lYX!f<=eB#3<{BCuAK8rgMpzE%Sno9>Wq-x z7r!<9Eu7&yG_QZb2WX>w~9ONAXexD7fpA*S_hS)G-4Aev?eVQ_r$X z%cvnL{0NT(YYf^8j~izaNx1BWxKA-Bw_LiowQ^v%xvo;3m;VUWDxF?m0Z)*$kldBh z9Y=2|S2=BApOI4dz+13mk?7uI3XH;UG`2q}Rl70QFH6Chj^F$M_wBYeZ{!vX1`zTU z;`>3wy+Q$lS-5jt4NVmhk=4q_0z|OeU>U>k`we*N-F^`nF!-cZq4U2Pk}s^KDVr9Y zMwz1dNLU{5gw!iwe~##t6_m@ok`&N8-MMMm7a-%#5JO813hGJ7I8q!Omo0U-*-sy7 z9R2A$z~zfPJw&~{!(~TxstS-9J~GK|+{@d(RMIt;*N_!JLBi0C5yz64mvck_i=1^m z!KYFbh3u;lp`AHkWN>DC#Wk6q$BtKBfr?%$yd8lMbaJtdMsdeRXkIjAKb5gkelMdI z5XjSRas|dkCL~5Lzr{$^ElZqZq|bcivaTfQYZV|3xJ`Jj3a&`lm+y z83USKjr+7GBCH>9pptfd0!jd$VF!4)7xWtqTwm`jeKK(A#A+Sm3UB!}_dMqDAh@T# z`Y%6fgy``?H?l56qV^C*LCHMuQtb^v^!U1dWJypfOT01};&6-L-j_dTj+UBrLie#p zebHxot#rtH|IRQC^Aa{E z%Il_(E;(7@ZF1gens43{Sn+sW8}Jl)nSc80AikW*A@`Z#)CJ-}yZ57H0u@~~mf?A) z5K<;vn^}a|rpK!2M#(<|#XwjbXX-KcTNa_+AnYm`eAEYWjxJ9%?Uh*Lm99jNuA{`;KD$J@+Y&BU zmoV2&+e75ptFrQ=1wf~+gSIzV1<_!OxFEuznw9XItDQJkZqp_Ye zVjq>oYLMz(#hB`kKClNTyoDRepTEr#JEaPWRtAz^elerCaw0e@mh@A39t@51Jvg5- zaMP~S_N$lI$o7S)bjtvA5AHj`2>#6S=15|ND7iaszb|}Z-to!BoJUTuFLwo;FJG;+ zzb)QlYn!mxk{fGi5QP-m2}-$gx+Sk!LZ{dM=;Zu2(k+3~H0TyI>*iZ8=8dI~o32)u z$Ti|cfVD!z_tDCU3DRY^F|au-Y#WgLslSP;eGzaG+EQKp^CCuFQJ>yJU-?}VnW6J$ zXjen2>dKE-+ZH!nED_CP!QI2DyEaiMth!#0?vA*_~~-_5N~`c?>~34DXBZQza>G_;3hs&Cl!j z>^C7PS1A>_L-0={(6CfL5Fed)(=9}Ev$f#!T`C{9PF~_H0kd|J(-Dk2)u1X$K_Llo zqnn;lJb5S+Bo3kK398g>we8Pw^yqRb9yIiA`>^#c~?OjLtUI*})lMH66c?BqzM?OBUN?@INwf#fI^8?*XaB&fikf zON>i#qbagu__&&~dpn<2J~z*<^zLE_p&Thna>@-N{8oM6s&9LXQsX*@^O~E#>dK1lBdi3qw~;LNyp-CSG(f zXAPKy%nU5|lGXTn$G6-ix%gla1Mw6$ZN1|1jSdWmV7~$nBFNe>rI{>>8g8mzslPscn z)c}(!KDFSqG)bvra;nXg1LR@uT<)y~{lFAz9k3xltkI3h&qhNfp^DsGT6VT}?I=}! z73;Vr@_>b~^kMnp0wE!9Mv%D11C^yuG^W+)p$Q_xk6t5G+oyyet{h5b`;Ns4J}Qzw zYuvA=LYD4czkHo>@32fkFUx_4MT1`UUcbfjZnMJ^u0`JUWf>TJ873kz6P0h~*ziaP zO*avkw4m3$>W*>A(L51#Jb^VWiCBPC`Ofy*&C^`%GnvQJXnFK#$;Y1>lM9yeHZ)(MBpMf$v8w9E*#uP) zAU^dwTv44KI#wK8O20`qLZ1GMD93(3N-Ch?2{*n@!*l9YWyDPh%AY0nF3VOuIJHy| za71XAztKkPwf=DZIJct~#~<0YjJ zXAvx{SbEEfVQWdGUsTxK4d&p(l= z_3mS8>;x0}A>^EhJLC;-QEpMe@dcIcl1>ibV&IPHqWP}sR{wt-{KvBejB z+z?r8&uPH1CN1cRL@?D?XB_5xfwIqqEbexf?O&6ZDv_R&Rncn3$n$jfv?8rns5(R| zUQ}$rBT@^)X|8Hsgb)@aZ0YM)PM8#N26UHqg37J6kH7otG&LR9lWJGuQLq_c&rIq0 z!d~sSJWXKDeM2d+8?tuud@WQDN}2Bo^oYFGj1h?M zK!Eo&X^oeLE4Nk~y}rdWO$!rp-C!chD#;$?{Cjhpv@!A2=ZcmyE^r5ag76bbOK-*c zX>_OKV3ezZZ9Q>U)P8zEyWHLO%V#*9rrPjsQ{lHXC*|+ZzEmhp4UHbl^J5h)=A8G( zyvWeK7Dg_W6-ERbhIL*4f=Eh#GqR-QzkodX}+{(OA~QXxD;xT|BZqUE;Aq_=0BsM znE4$8LcD+p-f)p_ypj8VN8o}8MMY!oU_?`u5I`5*19B&>?w-B{9YTBu2JPjQdyG)k zY_%A4T5;26(1pt=D2^e5lcVv1kPZ?!R5t^`Bds7BE(&s}02Aa80HXL4bXKJQ z?U(%j`sFzzA zpMikx`;Toj4lfl8G>WVoG%CdVXuM_1Wkb9G>c2T)Mjrp&0WT07Om+9vGK?St{=b#M z02hrL@FTadv7p;AGu6JJ19DOg@NP$@zbQbx#LH#55k*<~i7ls#^U>>b%7d++VO z=eb7uzQ4b^I?p-hv(9Iq^HNn=<|H9CAr21CNjcf;YB)G};3pmq{&DaR)gR0n4h{lG z?)o(iJKX6Vg6M}vcQ5Xin%`=K7rTBzo<9Ba@_q5Uo$$L-0>nNH4224>Cnn`OuV24* zogDA_4a9f$pDe-7>Ndg7az;^oNSoAP%|kFC-EeSWaQyurN|dVfxG+wNCY+}Wf7oLVhT=_O zlgxWxc3q6e?X0|e=L$6Is}^$Qa4z^$9(gS5R_iBCm;|Xsz`^AG4U9|BsgftruU@?Q zcYyB>@)4M-4W^Ei;?%Gn0A%dvCPIJ(3zb7?jFaE>`iEJkCTP0l@F_qcyJ{}UtzE6eO9N-&ds z?jKBo_S6P@)_&-eK7u9yW|E!33hdbfL}C6mt=W-1eceP3rsv`tm@_y{$8q^j|3gJwSUqK@I@s3n_2)y`+}plQ1z8DJ%L{NjK42>Q^zSrP zTilHUUbvi($6Y5Q>cE15%!X@79f2Li5sw=|$^nn$h!@zCg2Tc14VdFc)ngXsBC||? z0fmNFNQ2n`(qVu*+F?JW|IT}UCRlKveFMJ$LbXBgkVEW68`iDn>hl6 zd)R|S|H^;c4P@*-UZ@cu<>9uU_YQiSI`Y?1ggcdx$1DU9f&_fmkSC80fc23}c(WCP3Y3buc;Zy3JoYsXoWuI3U|9U}2sS&Dx&Ua3J^@c1RcSqZSAq zm%Bb0N`&a=f20Qil#|J&HXQAMFz3H0LCYYY!yiflyw4CA<7D_$EB^&J?Ggj`KEKg@ z0O7USVIAz>swB8~kIJnc3E;n@+vm5)b9jFg|3wR*Pgn2T855k0+jYBtmxkms-U;_C z_($&tn9QF1h3Sw(s5F9~-urlEnFIbi)BN7!zlIjl=IA1wet`cv7CkrOm0_0u;{b;d z^5b;8AEo*$wa{$USht_xU(GjQa$4T>Ux4E;!4?nbo~{V^@JM-e@7%VN2cJ2F5BykV z1biT2uq8`%cccB6o;W~7rhfxU`CE-};8E_t@yWRv&V$LfIl*L;%O|i*#IAZ#3+Z$~ z=^8-kJ7$km_9)GX`}^-_fLM4Cv5;SgP?v~){tx@(0I@hI*5F@|kk4S}fduI(fyqzw ztq_NppuWH>4#<|S3=n>{VrI#-ul#qL)D`C)y;07k*IbeAb5Rsq}adXwQ-w|0-r?)_ORW6zug4t~p0eeK~^B-#mAsh`Mtlp~m zFGzY$FlivEXiYG=s>~Si7vYf8JX{AKG0gfxBKl>JYrszfpr&crQ@;NdNq+^j&_4L6 z1)vZEtC}xj|JJ(;KufAGQi%Tmfw?{p84D`gkVmz-sGlLmLb7L;4M<);PC>qoU;;CPw9pJPF-pYYC00{qt5N@N` z_lpk(wy&f4!Di&ZiPOZ-X86m7)eCx}`)KKXf%aYD7unnQty}R?w0IbyeZNzOq3^+I z|D&4#hvUbgeJLn|u=G8|+5-&{%M&;N6w;hWtV1te&w(cnH2E=$#me)0lq)963qQI9 z8Bmtd3>ohT(xuTQf5FB=29#w@s_L;U;^(|aDTD+OhzSUVknaFKo|Z&^o$LV_n9IRo z_XRE-N9El;MU_?L_UY*25m`VmJWwZ9^q66*doJML;Ye=P+rY7WRPFaK`Ax}Hp}>xi z5-c38edPEaPW=JV!H9G3?B;!Q(>fdhKQ1Cc6o>PW5r0|9dHqqbz}UF~mdOdMFDJChB7J;j|etRo;DBinjyn4%Od)>@q5cDD|HO@IXjP z;loLex{s%Q7_#n5Dj=>Wkfe`1M3x7#yC)bdM5&Nhk_6_4)o=^#@8gDaglotPnrrdk z?B@dZNpMjHP?Og7CPc3IPq4`YX@eF+eh1{jb0?C~yP$VeZ9_fd-4UYv5?-1nP>g4cZXAgQAQX*o z^MSy|s{v%*M4qa~@*Dz~PX@`nzX-|%*xcI&bPur>Rq2c>iFWoYvr9bQDlzd?3sc2nKQl*dKO5=F^8hMrx@W;lY>fKvASOX#a##5b#Kr zc)A0EK)Y)|hZYvX;Au#d`X84ZqVOAbK;gyd|M=6B7Z~n9bJf7y*RAK-4i-dh68?-n zpfD%kxkz}WKG%k9!X z7y;EXO4ODFkS(YS6+1uyONV%0m?hvQ5{jnTC2pKPj1TsMf2^pt1I?H|+k*|t;gc*3 zx(BdfkyQl%zX&;>z`#a9Km$3C$|qy# z&5yfrs7|26bR6gy{)h`~xBnCJLnK_no74vSDaJ@;7MgpoAcJb6n3;Aj(e-2ZP0<3OU$a&*0i0nU9QTfp&d+@$qeS zsK6(wAQz=)nxZ^(IPV9MkLDSPJ04X$*4yR z?FyM#UiA-$F*Ry|i0VLls=7kBHon8!A-xt@&4k>KPg zLB8V4>@=1Gbg-1x4040AH%%A8!qQ49`iE##vg%#f{}Oox=#VJhpfpJIQE~)S|2X6P zkPg{^%a>B&{uBK{-;NUTK{htIA-&*mVd#e*CoB+X1LQDRm_{&(@X*F;mb#H1d|3}{ z?9&GAG^~xSBe4Y5(S|ZZqjY>YNXm+ z5Zy!K)x-fPVOXDHf`wBXR(YVcpi_dBf&jk!swTqU4eLc7_}2T#LN+$JG3y`C2e}_E zAPoR}Xhgpe9@<#VVmGEkWTC1{UvwH|V-3iJ%yy@{>A%hRy9X8zExQ{X&-SJhc3q7T zykGphb@XFHQFmQV{+2SysPasG<5f!sm)Sdpqgz(3?!QwSIF{r3XzIib93HH`t^HJd z4I^lFcPzF!DsE?`c{gD=dCVwI>`Fv$S5%zn6?50JWY6E;YdQ6?V#TJl#SYz@Rc0ll zbxZ=f&wnvSWpp~|m6TvQeYMRPy0MU=&0q;tvCRfeq(mwu<>L$E;~#TqcN3~A>hGB6 zH;(f@Gkh?`v^d-~>`1h8WznE}y3WZpLoh;=z5lA?vXE_Umun5D1OQ-DxWIfYaxJPl z$UVV8x+;*4L?$S+wcF73@lwtwiH@ka;{N74jeXC_tu`ZD=lC3)=tjP3MVetfY!u|I zgg^TH3Mx>2y`i`KXK-C*bxufJXn6c)Ij6+;^_4!o)s-vmyWSMTLox+1AA-2edgfn} z551uo8hR5mIPd!)ck5Lf!5j%=@s$cYIsb_{b>guqM1QE7ok8F3X2j5wa4jkP%)&=X znT=H?558i?^QeZkEd7@x6)DGN#-6Jc@mUXv>ZdI2HWAR%aXsgzw+YV}e@g43Z!Ioy zw;)+CqR=GNNQXQ6Y~4=txLik_-YQ)Jt8_wvCGB2eK=U(lu2n@;udRoscs`Wgh%Scy zj!tLPoNf!vvP5iH0ewTzHTrI$o@YPC7gD=tv`M`c=o^Dx(o>%jo%3TX7Ec;XVoO?* zBntS zJqpKG){D#Lm?hrjtC!3LZfv6L&#hf{@a{ji81FsGUqzS@QRShvn0IH_zJL4S z1WMRj-7+vi%t&3@9Jpw&{2(duz4 zqm@x3df}yV$|mW#-A03N&u&6V2WpV`?;M}F1+sNYlvKsFoEZ0=re^l-C<;URt5-}c zPj23s)gG=%Dk}LKx)Ypr#qYv( z@w-Z>u9B9wv5Lg3lWcsRujl>I;f2sSV_^4qcSDp>Lb@U*=*(anqO75+V%uuDOx8A_k_)D!RK=$yHoezIJ$D;N zN88i^b{`iTOY0^21+*tiBs}fxT|6<1%7m_QQCf}lTq((j*+^Hqv$iD$47%AItUM0- z*2YC6G2{uhXRcoGSofzI@{9?-`Zc1gs*uK;ewuT+zqwZBywUNUaKp9VZ?~`i6g}<^ zDGYfsD(CCA%ei)jB@%+-{g{v#di!(B-1n(%`p75+of1R5=mU9+nG=_%7!%bk->?0g zN_{8j;N3T~^t{#-K7_l`f6BHYDyVkKd6@HL^B9Sgoh{)46Hpok6QfaAJ872t!#X+w z=*WPbDg9MwIK@ltezy)vNm7I0`j_78M9m^MA9xLU=kkY7-YXP2eOAkXB|R3Kt=sb3 z-V{=uIiY1TR@swE!nys`5^-U!SJ^UI$DS|qCMJ}1N?4NLbNao(`*BzepVfmrmdD}r z+ssmiLfr_-?WW4F!^0cZjgHdvY_s=!F&oWtzxnaBwx`}(!{96|Je%Dj4l@1Y3OttO z6Kf9cyIbD9Nwt7y$_ZADmGfnQ3MU7bBZeA1sif%}>w{iiOW^jOxx8t&w7~0eVuVx% zv$`HYUPh$m6YiNbSXEvx==?sn34^Ya#CRrfUwhk^Goq7Vt3T?@2@HR#CsOM*a2jeA zKZf9-hWyKF;)Rg({ElUUDR%XF&b(sLCRAIJ1oeqEncrYJX^x#xlU;x0h9+Fn@4kD`{FHyYFI)LRljKB zykEi+b28ty-n4ZeeYk*&9?%FXI{jke5?g4jg3=V6zUNqyiOd+%i)X_SETTR8m63=9Iorg(BG_=;5b7`;R_E-Pjj#w{fs2pTfn`{^}Y+>fDNcn+q;m6z;XCC7Z>1d{u8lexP#{WZE z)8ee=@{S`@#=i7MiiSWbDVYJ*30JasoT!qfZVsg9&#EBkBBYs z6dIJx??pJW^7eQD}wh3vmG3#p{_LT1F!!Z(fgK*&JUkn?3{1*S7?( zc*^QXfr&{*WV{Io_HIRyZiI3%fa(n?RZOY5;XBNF&$Q!2VBUJhhYv#iatl)Sb=g)| z#=mcjeZE%C{dMWfQqhZzYEwIFpNUMb-Ve3j3cbw)?U;hxCW+w)Q=^rxiT5TT1I3ZG zq;MYC0VR^n%!#M8qmPnU1@5jU4TS`KU&9%@(;NH!Yv8W3Ib zdw6H0a=v?UbNlW0X{kWWLrfs2^-Yke#3TC37JXbV%1{er!2R#*EiWWBi{@J%8=LM~ z-cmKH8Xr~|+}`#W#S`w7T2fJYdfDTVFe>Kccd{k%(sOEg4?kotFEooXS{~c*Z0%Tf zt<1e-corzKZ)8HNzO5vEMNJq;Fk1TJOF21CN}QGy5%ii**RC5Ur}Q3;qkt6>`71kG zI`s){zJ3*+g6J=C=GA^nQ#D8DeBH^xqOy6TM2@o(Bs7rhz#Z4(t@piv)Qg5)asMr~ zBq1BuMpIYfV$ivON-|qZ>p=^%dd|<&j^z~v?vh5iYT~EM>$Q%@AlN)52owevAwxb< zzt$h&+L7}Vc)rcTjCc4WVh9kL0dCG6Ogx)3{LrC#dkv%HMq3JfN zIk%&pf{xS?0 zvtHr8#b<*?W0W<0zkl-wx zR~hprOh9wtO+Q6R5P45>Hswt7<8%uQgC04(Ojr~}4xPl6{gjv*JIaK1tc zhhO~@sDZ9t;1PMS0sQ$6$Q+42UjIy9zQO2K<&B8Wy_lz=t*7oY7%n9rZc`W&G%7uy zl{}UkZP~N^J2%s=uZ2mK5%W`kt zH+Yr?B3F3@)42OK8qn7;ro}zztGgl2DNjBurdI>qBngC`=mCWX4rp9a)V11-k!F1r zOIKIo@NC$N9oV`NTKcygg@4*x1W<-;j%z*mPL}>Lwom7#?aa*|tgbl{Y0driZ_&8s zh9rfxcIWgwF)YCp4XUlV^CsGQ^eihd_VDK+Qs1E)Y>#`*C*C~fxTU|Y>7u>;aa;1Y zl+4Ll>M*89fGP(~2gaZct&5Ro^KuZ-`Rqd$!y^eHvSY5aySFp8>FmEDjD69J&#d1s zlj~Bn%k8{@T+T$;fZM>`(eqf#P72#ANnDE{}&Dric!qjsI1N zA*s-lDz;B<;me@@+OaE3J7edZN2aa2soE5vLKh!S_mz%I%uR%-`a3btWp_{X^o&<4 zu>!5Cw(U;-Vu|vb{%VKj!`f4RjH{N_MoDeVdYDh zsZw$6NC!tCEu)v?Lg{IWySb$_@gJhxC5c%BuI~25_|i|F9Br5aIfoWXlShzB4*-eY zr)}1k3_rmFKbE3LzxUKF>#gROH?&kON(?kKo)Krulo@T8bVDz~yvL5C4I~N2hztGZ z;$r7Y<8AA2_s{1Sz4-(;VawV`yE6BSW*L*$J@bdMqDuWo8*Oh6zF8_E|J7>a<3wwUX_(>lSff)PeWX3*7^9NJnOCeEKUX0E{Uh6f8 z@Da1q17{(e0qm zev z3=YVOC!erN3Eb6HDqqgoF6#`jl9u@c@yHHuHr9J92H`a~4Rmc})C@^|F4j2)U7&iV z$@1?(dym-)9yTeJGPb31mg{-HIPqXv^n#QDzHOZZ_*PMk!K++SHb~*I-QaRO##Y() zs@zipGRe+mEvdW51q(m)4+W;i-^p+jpNvs&*rNU!fh>4k`S!kmY= zsLSAGQAJ*6pf5|ga(u@RQuJyrw=XkfQJ@^?u4HG8R5W88%gOuB+6d5SVX;y4aKSqoE(`LErzpf|kCO3VH^qL6cvn&tnZZ$`GFx%KbUG=d+sillGCR ztxr*vxxXNSa<8`HFz-?KTxTZwi~{OJZ~gyjMcl)*DRz9X2@X8+{WXXfc` zJC_ne;44VN7Tl0-=1CW=W|xV7`*_}4VMR!#DRNX z7G_F86;ovlaG4y;S}F-{;eJHKD%XG?_5#l%>MI%?AM;K+%KqtdBq7NHF6wXrkcyZw zquuQ#=_hsVPi{*(1%tbAScH?8sSoq${ECWmZid1h%sSm2;Bl$C0WRYHl+*xqq#uNJ z#D*j>cgIV4Y((dL8Fz07y4XP=^4%F2peoC>Q7eiU94~chZPyay&((NCs#%Ct+mKp( zfNx%1kMhoRz5u!fRf$lcvlRMHa<-RBI5DLlt+#Fd=iVPqIT$}>unRu5n+p-tErlK@ zy1Mu=x-?eJ$w+=sMUqfwCOS3mJAsDsz<6}?l4$v0_mUru3jL1KPoPWgaa*+ITsak~ z6S39%Kz6P%ptPCNiMGdq90$(AuKKNcE(+7{szey$=SXCga)(nGROy<;fPXq#|G^iu zALto&_c*uK3*JZQJ4yL`7u>pSXm~*~o*cC`N{QP?WmYgz)R*%+M4=j~3VTNlPr#f= z7NOa_3L;!#rm>A$dFkXgitVI(Xb z<8R2hejdERgp4nM+5Y?xb51lScZFh9=gWk;7D+8ul~R2KT|}C~CvQ{Y+AB*B)jU3CE%5abA-kRc-Gvgp5dP(Ay1b3o^az@#(0WgFYuf-cO+LlPI z(*_0cM+r=vPR#?-_JdW{0hEj_D#}9UnzSNzcFcU|8uPERdDtN>K*6&l>oDDqgL;Gi6iUqQv;-m@A!I8uw!2Aw?x*c3IkiO!|En zr|pl3p&ckSc#G6njjjr$Pjs>wXM}8*+O=j|6U*9wDgOhCB&_BfFqAaDzs}>jOra7! zkHPM;@oIafG&MLb?9CaU!K{d~C4q{hCE(CHq&$1Xn#T1~NuaTBdzvYwAg0zbwEyQv z+nq;n$V!v>Fp3GB6s1(*uG^XYd?$L=yx~u3fMWbj;EV)BD*r%4_@kF|IM=#_dKSXA zeTRuGJraN-SCzm$+o8cAo=!GI<3N<%c-5r)?1}cT_>ToO^p=M-p&*g5QgF2D=Lx~D zijPPcRIj171;;XYlS;LF@&@_)PHKK9czqg0NN9a2A|w=FQ4x*)NEs13C&6qZ;!3Y? zw>=qT1CW7NGVpA^en+l*x&5uft+~igRsIjIOCdCK(NM~braVy4J7V_|$!I9m+3%8W zpffIo#5=|+<-`tW(sjyEq$ggY%@d$xv>fwpxS>gacVtA{OH&s^X<&Dw&l;=W5f|0< zFtpq0S$txyOYxXar(Vf;KGgR5dIhjFL~LU3zFvTXNP-z=`g=@=*P}EN1Y`xdrmLwr zUj3X^apyk%<0tsvWo9qG0EV&#KU#=*@Egb*NKiR%f4O{D zF0l+YtYF%DMvG(`Sf&dSS9g`@R{9__hXmIKyekl{?AAm1AR5q3msbN_X`sJ?+O7R9 z(ObmD`vXuptP?tuQO8LL0m!-9uu zEtlpR9Q(VW&Nko{VLnC9oEnZYJf2O$CP8zS@2(z*c3ze%i?DhuKT*n1HwBjHI)mo~ z)ew7%hQ1$%HW>@b449lHKI`Kt85cl8_|*w#^rCg6Lthrv|6D&9?!Mtx9pA zMqgmAPT+sl)LY^=nw1cb*eUN>ceFChy8~H9L}~(BaaVNpy~PrV&gh@9=g}o{qeZKq zWpusx+b2qdljd3N$ywVQf%yQDiiHXBggMCB_S5Zjmxi5@jl@BH#<#A#?0XF?6oWM% z948AiUo!6ARqo68zx*QU9jwOWB~pw5r2G-Xy5>6Ln5PzuS*K7+OIj*E4<7qs z>23kFAbjPT(`QFj5-K(}UKO?;+F_Ue6ums3V2lL+Vrg!Mf9(U&ikDNVy@&fa-}7`e<@K%O8!c69doRp0_f5 zq|gXt%z$u(;02y!+rA5Q+3vU>ZKQT;*Xo6=#hEIdXPe)PJ@dm8$uSq{pNB)?6GM|8 z%C2!+zba0pan02VIuK7S-pMl|^(cX?+~?6|Zqh(CZ|n*rp377LrK=7*SpZlUV|+~x zk$;2v=8F#vZNOZg$~h;sQ%mIUB53opXTB@A#cz>pNR+EI{1c#{aWwiBuUELWz$uJf zYf28?ue?d}>uzYMbIM#wU#b;2t16JD_G8nIjBDFA>E;AC3c;<#)y7+xN`2qVn3817 zm5l;VbP%3^Zt=)f@ZC7?V$}t3Kd^}lCHlwGRdkkWcLg%T{JObNHw*0WVpS@Li^{^t zq!h=-B$ey2wu6&GHi)Qvd9pdTFo){eL?OO^38%u{leON z;agNr{Z)%M-d!N7qXvzpzl^^m$^#n0OKhN| z^FWIQsyG}JIGoFPJeNRaX4+Y04OG|T`C%jz)?N*Y)gCTgl`)Sew0Q+udc2n%LMi_oBjF>afqm@((${3R?^0 z-FamG4%1y#ALqOk_tXYtu~>k?6?j0=o+X3I>HQ3)#6X(An6YE0iWkm$xe)=58a@Y8 zRzBGf{TQV}Y(Es4XpXu>fg0^*axKWmCh>Yvjx7f6*;}|7yM>1A;0;j`g;LSYLi_GQ zQ%2SMxNm3f$7in<_JT~weK@wKp?t7S*CW)Wm`k`e1Zagv1c`{*XakH{-bS(!w&7y& zxq>?$P+s1Z0p$|aOS@6|bx;-x30wDP5VE|@GqEnY>{7%UA2p!De%BXFb2 z01-hK{cPF7#7@~I{?|5*dkP~Et^jl@>GHIh?IZ~lHaD;QBJZ1)G{4`QtYRw8;klkh zRhGRdzBLBIZvYQFLY7h7_Cxl1O|w$CiA3P`)HHcUo)X!D_lYRt;I(5M#u~3YeiB3h+LXkp7?P z%e_h)f?lm@j=ZyBMaJs`y?7=HG2yQgf0D@*gvwv}ri++6HkYSOzuT(osfQS-motSAQ;WbxQ)K zuf@N{s&h5`u?mDs&T9gBUx4Zg*?NGPV2QuHpN5fxm5Tn?L@r1(G(yw!O39 z#z6puYR^MFWuj;6g2f-VBqV40+6a6bz$^a?#Rcr>mcyrg>D+% zyNHPUOf{t7&}|rG@?hcQMPZM(o}5wPA_|$++`&60OoWj415Z02Tz0ISXZOdbsg`TT zCAMmJ;9de{n9)-c3%|t3b0uQu8&yk`<>e@d`FggvxdiEV7?N1MmB*N)GWrT07fT73 zXab)sw)lyB%$>2+pc?Gqg;#O~&tCB_zoTLv^?Y~Xb2oJ``XS_sO+8tD4UeR@Sw==l zZu@EXH)Cx%bj_vZSA>_V)AF0_Rx+Xo1D}B+28qe2p^uC4L3%`hXOck6h3Tq&kF{FipeZmTBhhr zb3eI0Wwp^cr?&oMCCCt5qB6P2Fj9s$ByKRh-9CB^^V!pzA{a0dD3Oep_18dXL*+az zSi$Eo)=&CFngVL1nxXLFT@@`~)>lGL?$SYEa#;_vtK*YonuT2kT}?-~szkaJl>8*uxhit2Sw#BTMNpUmT7$xkcnomj}53N5v<2~3KASU%ST_pr2{&tQg$zS&40x6B=^Ez>P;tvvGsCR4#p_~8GT1M@e>7I^Z~cD ze^pR`3j=kadMYKG+3<3`(;UQDK=WRPvF$i$cg;ISWr|D%*ZgVwa$UgLWaX^T zp~|}4LhZh~*{Loft-sG|H`WE7*`#6iFq^0wL= z*$pJNdzYpuYjaAc0hG%Z7(F{iMFM~BiFg`YmaFf?hwktes~}Cg#dB$I^_RYgK$X3~ z@&N90F+rd0+dn{!Yyqe9Y<&m0K`2jRs&UKrL$sU6p(7j-fnMGYQ&%I*{E2&@#4m9o zNbuRN8W?mfr1z!7*&vhDO_7!f(o=x}>fFR^;`z8E7XcX;2&g_3z}A%5b{<1!xn1d| zA-s#Z>G7TXG-g#LY%V|G^U`K?@93Tu1Ks&2k`b|I%t|IYre2weXNy7Yb>@nGjX{jF zg9fE5=?YNGs&N65c<>q{G3I@4)=I2W<}GLVBm>aB-gjRcBw)1@w{^=$%U5d<8BpKw zg}jh*u#M{aaWS`2adC;Mn8#$1?&qF86Yz|g+wOLiWF*F31qvY(;uORMo(0IaC~ME0oRD00kbw8(p0{#aPvadmSA5aoz1GU}*a}mB2~)`hl2HOEga_g^3ajz} z@ewF#hemeXe7kIWFL{13y6GU>fSdc|0zy4vii2yXZ#+7KUtTK>Id8>v|l?Yhgdx{|!)|gdOwm|cW zmQ_h9nWPv4_7x7$Txv-+&#S;&YytHUw&e}6Xg7@~Jm}@y_5%g-eZw_MK-(!dAq*m~ zD^YhMeSJ?Oj7))EePU%r4s>B1$5UZm&voyO0V!-)1l39^n)3t01h#*TJ7u2ae0Khk zscd&#h}!y_m&9hEKp1%;K8%_OI2E+|o4xh!yY431UTp*ijp>60gjf@teRp1f^_p?_bj#K6*w@CM|7m}BKT>Ng^h}AUgq**HE zaDAVhb2KTV)VISd@im|he@pfA?^p;xL37+YG`2l45~Mr8sd#eQPF7Q%o2r=INl8X< zK7Lr@cd3C5LNwzB zy)L)$QuvGIQKLCQV0ER4y}#{*Ujuci^m}OBddhXrB%bYJY*BDY;T9vf_`O(q&F|zz zYE&{2hgr{hQD|8vU$OEEWK_^ya5a3}fOkvp6EdS?PH`4u3xZNU+(f{JrEd&j?=2dC zK@u-KE^nA;Q_8q$3a^1O+fw)IDhUAualw98i(Mdl#d8zaoh-EwNi5Od+q6-fkQ39K zwp3vw+S^Z*zgnOYw~fWO48{u@lwD?d$pZE5V4t8GV!O5A$Ii4{*^eJgEihJ4dI!&v zgNzvjTM1lE#2~HPwBAn|3TxC98@6&Y`-#@Ds#12~CsoVbIp>w>`!a&*0C!ywE$?_q zGaw)z-bT{lhR>jp1+)%$a)NL=PR;HYFgxC#EHGWOIriPZ;%b3Ys7yQ<_>EI?2wY#} zWN_&Q9X*dts4#j!Z4`fhZ)%m<_Y$}r${y|Urev~=v1imalXBWWVc(|Ej6)KCrZgBM ziQEqG#`=XHvX`P31T$5hSbxP{1M0dEEEy3{{vo?dBl{kKB6!8cLhVbXX#f)BzUqR@ zvZ28L2fmMFyge-CWchr)k{G=n)EgXsMUgv@Q7qNIH5qzY2XRpnq-)bbBgn*!iqq~O zga$FTSmDWxPnVKr#O8DrOKJ3l(k}@EKNd*axl@9@PB!?Dm+|gCk0!?& z7bG6U>Qiju-5WUUJZG7c7^dxjKB*cu4y7P`TA)9L>g92g16E+qKgB_<;7`Yqxcq|p z#K+JqcHY*r4XqX04Y!pD=Jijm-TJ= z!8@{hrtixs-h@0IGnl30!3ct4*CJdpst;JrB5=hoNNIfx)6CncN{xFqj4};z&ST1ouBWBacSQMWa>%h4QO($c z)jGd??ff(&S_eGX>?MOg-2FM1wf2Ot056cnYu&MmYkBU=>?>kmdgKCC056@wq)lF; zEA!Ut5H02R)G{t(?VcU#m;rHVvHd$t_786z-HQ4pD_auKjSyss)h!6@_3&wyV7gob zs!^NnaTZ+I7C25lCxQzJrY|*VjZ26mS*&Js@85(aL*!Md5jMu1t)mk`eP+G<=Vo_< zkTF$@-_k(U*z-ES!95sN;EP0$RBD4>k!(~`fH!$M!QG>Q5|1900dH89zj94%S)3Qu zsjWd42_Q~tNDde$$m(uS^4M%XXLC&JjsY{TZfb=Sgh1CtCpj&w2^Th6-LC{@*q;5u zsu~S^`Dee*2V9Gt$d2P8y(Gdf?Y z1Tl&kZ#bGVBjXXc*T6$s44zGyLoz6%(XA9u@|d;Ekxvl^62| zH|gfRVUM;uzw&Gi(Aqx1<`$tdf@0F2-d=sRWYnKucflsWdHPHWeYF01LeY%Ro{Q>+ zw1=^o#psMn#23M@)8)D?RDwq=gk02_1g=ARXs+#SrGz}A#%T3zDdRWTyRJ{j?Ap8< z0&ASu=Z7j!Hr727yMU#VB6Mf!Hj{<6;zTYsLP0`TRMf8U;(gnOy05b|zs zPoDa+_n=ZlG*W)>gQ$d!Xg-3SIzN|3P-LuM{m$2=0vk(^b_J}_{D5?NILUR@B+0Qm z2-ywP1=O2${}noU;}dHId0g@Pm>G~Tdx+-`iuOTx`aZ?mLv7hX_s9E3s%VHxK<~bj z>;#EbXN%>}&rqBOES@dOUCpO48fw8U>>m`sg?-P(*9kf> z2NYC;v3XQ+B+rMoyuR17(cIrE@5j9dTW2UOWF!} z*fj!;h2)2W3(RO8_z;<>sFzA-?J0xeCyzfYbq>^it~4>>ftUaSChkP#^^unWW_mDw z@B%{mVB$B5RS&-NC#`%(jRe8?$oC-g9jLn z4=i%!>5EjR(zGQ-CH_$3Im+Q|7K@orBi7ipxYA;g9q+ zQU>W1v&-%@Z;;~Pd`E)bjPkW85hbJnyq3_|j zu$f`zT7Nmr2L*N)nNE#+Oq8q-%P?S{!9ecd>5ExK&xK}6_z-rn0IiX8HuGk2h%&!d zlF=V3nf*j1Jo0?jEVzdN^{IIE@@-nCmq)#L51JGJQo(qE=e+m|p`31G2j>~G;D-HT zq$D1m^xRV)#$8D~^^m;>FEqoE{tKj{k`6uhPW(os(2=#ww|%3V69NmR-$Xxv6C!*{ z`4oFkkRxRAVQ-*|=slsb#w{@DZrVVDtw4oEXQIK`y_Y0H84<1HMAt?QZ_{i+_tIiP zz>2@%rdo3Y1ZEJiZvs6`sM71ye%D)(&lj{P99-wFCbSmd5WkSfmt!s${WM3KwMi0} znT&zw6lyC8(Qt1D*{f{(1b<<7ubCI0PlF+8en}x_u%I!#Tb1q+KXg<2dx+Lp3(K3W z@m^QP%Iu}}69<%{W)IdEF@TC-?3@;$S-y|6B9z9BUA)W%0ty))2D9~H6rX@(SF?7S zCgSVs{bxu*eeo+kB&l0oVt2V5x`wrBI4B3gM4lM6wGY@-`WtedX&Vf~ob6MrqP%zy zDF*uiYT;e0NdxK+ex&)`{sN9-H5r4`Gi-Y_XwWI5U5G!hIYjUlgBixgGA)A3zSl_YnOQ5s{$t7MuY3g z{#pa4c#~7;KF|LVoqjxk&E5Df^xI&;YEnfVlkzPU z+f3Ayn)-O-?rRPxA{2V^N}jy4X+})Q!@BgeI%4l#i%`(Axr8v7Q~~|fn=;pcZ658F^w)B+?%sQR4Qyg3(+!W~IrV8N%=^G^teGnhtK*qo? zokyrlR0gW+YdjQ4$KP+nZ55WmLz-dl3ddTc%`@@v1tE}?a#a_emX1wP-qAJ;8Py( zi6}dppz@kO;|n3hg`^=MuzrG+pK(yl`2mtXCDm+4US~~BbW6n7xH&Lp>v68?7B8l_2vfbX9@r*7bO( z&>uWhe(7}}AJ*;Of}(&uurxredpS$#j(M-fE9=B-dQXAzF-YKRa)4JlJS7gQ8}4P= z=idGVVAlvyc9;g9m>l0@(*^Rlh2cy8M1?~B zz-!4o=lEmd#2qoY2~y4d*9NuiQRGYP{LOM&>=HNszIXw7Li|7m*6#P1mlL$tDc^?w z0=hm=Kv3qE2E&i}#OSVF$Y!gaz!kUFvp!L$M}WV({GnVz7DsX-aE1Z(&`WZrv9>>fAH9);T^2gc0pGw%9nGs}V7 z0^n)Lk!MEt;mOG&B(?dQi$RdTK!f}82pTzPUUeFg6b;cEzezR0y95I@(bN2lsAt68 zP?b^k!C1Jfzk!g!ArG-XP_NLtk0a=cCwxDh2sG2|U>z9$n>2g2<=QXqVV%iK{OItx z0Duz`?8;V2%E(OC$;?V+m3iMGBBX?@li5Tvl1(zQ37NmwbZt)|nG7*P^s!6pc2oqq{B4GJpLzRzk6N{OC-SGT-76Q8IQ9hS9 zX{-ro%zh*-v%vPb%G<_6kl5eRlP4s}%qbSmTA7i$GazzYGW=yI$s|PxnRsw6EJ2)~ zouZ@1UoE*57>JnFPXohzO4_~;(k^NCHOF_mLc)be_sHYK7)2eV12G3L4WfR6)NPo+ z-K3Nhz9A=H1<@2{tON1khT{~JBp=J2riztA8tI{Ozba~jBEsUPzrabQ@(%pGPmG}- zr+&W)m4aJAhljkJNncDAhEsxo3xa1$Nt-3rfq1)o{<9H(!u#De7lf=Vmmai=C{pie z{Gn{_?>!%zW^kjkYGmJAM4|RSJO1r&L_aBTOWsNH4^$pE(ov9RF8zkTI{m3J5*K(f zQKK8zSXW@e(G`1_ktEhPu#2_qAkvTknls4VfOCnAoNQw>4@FR3_R75vBt%Y*pnnJ= zRfOwDE5XbfFdJdXvgn%OK&@?;0XkTXx9oFX>;5~|_6vE^OGQXj+x-_#MLFspv2P{!pp9QI5tXIsa`sNZ-<#+T9M3Yk+D`e z$$(r$L?Sg?#2X}j<(dzU#@sPJxQwol!m%xl9(=!J?M&&;rTi)8&ys4T`TkdWX$278 zbz+iq&-5IxjVNQBd;xlFw|epnZ_`m7gD@_POzl(a36K5WBSGHN}!Ik4Q)WfNk#MnIE5@Yr7kQ zwTF09E9lGX_$wf^FQ9fl!)V^rS9xxYSVNDj3M}$p@Fqa)yU1I)_vfF`UXo3}A%Dfr z;2+&bn&B+jbHtVSQ`~_@n&TMu33H2ee3cWbBA(L5(?k(@&6gl9Wyf*wYk*?2Aqk|z zTu>lLTvn3Bom9sH&*OhkDU;BRj$Q0Y*Wi^e`N|}aEe^jP_W0vfmWLJ|hOY#558!vu z@@?W);2=&iNHOZUXkDk*-SGFO_60Vdb5Fj|wB{u?Ndg>%PLTDCdyT!&7FLC0jrAe? zDqJbw^O#VWe?Ysh8F3eXmAt>sg15a`;;L-!9&;{xQy^lIQi;7_cKuVC>eedBl-1%6 zhC_>E*TpDj)dL)BH=9ERiTdUVC%_6Jgaqv-z7|sPEy1cx7m&)ii<+i0kGc`p5z@ie zy;21ZHE2;lJ>U8%T`R>(28Rrl7K zwLeWI%=DSVz(r$(A?m_D=MltGOzRZlwIm?Rxh~D9nsB&a^bbCJH}VZ?MV?svFBnGHM-6DaeK=7;A>Z1P3TQ;Eh3|~>(=)65@km!6l=v~3u8|%jA zA3_w(8$S+Z9Ju(lzwB=${s_Fbg&T8@d--IbIMFFkr}F$veXVz^@6dm#h!2N7c<@>D zMbFhmRD{1_Ac*ASlkCSY;5DGXZtol^!9iRS5XK1Y`v_bJWn)5sxLj`aHq{(bg>Cwa z;R90Mb7M+0dv4mSkm2h7Fh$6aI5PtmtU#=bxn}+6WA?@?!sj|Ya5TLlH(!``qOXf4 zZ`%}1HyMH)+=tgzdv@Oxyj1!Jk(ITw%||}{IV5K^8d`R8xaa?JgH|j~HPBV6s+fg2 zM-iW*?TOq%{rM9|NBtf-_U=S_dx-WIa#pxMl$Vu#a8x_}8OL|tg(5;=erds5G@Q=k z!DPIi^f(_9P!(iQ8h-%_VEGe-z2al^tt5`d${lmvw(|AHA3J=XjWG81=E{Ycf;j7L zl#OI5UA$P9CkQy3hP@v$9IyZWEGM>XUn$FNIBm+{YYRU083P1?{~)I4zsBPyw<}4rDHLrn;-+!pZmvE8+OPeM^Kt*L`Z7Q|xQ&?1ycO?Oft; zkKv@RjD&dZ$46GYyxl*xp&GAqW6zV`HDkfASOy&}?r@314a4K9ns~Geld?E_`R|*p z)R^=KKDwKB2j)9}gvFDt+tuDwx~E{%Tnt|$kF{JnyX#$hN^8i_f0Z@g1#Gx{r~a+o zkLc`X-67u8VpGPJFgA4Qp*B_EvA4?ATcky}k1E*FuL$ps`d%S%S zKth8sqye5gFrhA^*w#LQd^%D>bMBv1_!COH#Mw1BDI2)~0Zxpi<$j;2$*8L5KuiYJ zR|fBav%PStR%!!!5}xa)7lRfe2>P52t#dA~?;M3@65tt-0^bV=do;sGmZ_G~@<>2e z=@CBAgoB7l2uWAj*Ct(LJ6Kq|)Oj))hrIIA|HmtW_E48hO3xlkdrm;J;@{NFSo=%( z$lYujbe@f4Z;rf)L~0dK?hH!V1!=Y)y%{YRhX1dTp|uykwpaW3Yp$YDVY=c7b>rCN`1nS$VPH66}g2gQAk#qK0i zPZG+(?X&#+%k6j+oDeOJ*`gc8AJ9Kv8Y2h42=yQ9{01NR9)h!)F&TGa!B-&9KDD(? zp3;3Y!%gVl_mKplym9<6b%8(CSIYQhzPPE|1qyBcb@b@{Nd%%DM)j4Wik$gDzK}eP z0$<0B3BtMUqBn;YDn9AOwmBaGdVb^}F(QDDmedH-2zDn3?0!isX8@z;xla#?r3o~Y zyMN>qd(OtY`WLr{5iY~xc>Aw6=@I3ItHLqF;31A zSR-f#I9@G>8e}}q1H6W4pjE8<+$H|A`K2|Hj zM~r+GBb0q!P`qE3)%9g>KiDwr&(dD%3r|)WoQ&V)+{0xR0EWo=oC*qftnJ9`95 zMvqhD>kjRZxQbw>o2w2_I)q(e|DSD~#D9%5+5N)IL{RmE#ureAH)>>C-UKhxy0!i| zEJ|``h?^KAjt=?FtQ^-W=SP8*rOlhRIJ{P(&eFm9i!f83MIykLI!h_}Rk-B=RWoDMeyOUp2Rj!s5P^~Y-;o4{nFP)1ar?FWgQL=bQ4Xba zIcA^2Ic$n5$2o7yPW)Hv!ltghCTKpBF40L4h_rbH%n&D$l>hv&fA3crb31(9Ru#>} z7y&Wkeg;+D}h{os647f{^Z#l0I0M-;CAzbQ^%jQSTFYuOSb=ku-4VV zw)~Q@msq)+e-O^{&yb9ZF-rXO;M%2_WZz8%sSf=rNOTmN8rFZX(G9IH05KMA{-rQe zYye$9M^g~#R-pqvlnkO6s)lu`&;?Qd5L^|N$%+7s?+!Eg=YQfb*j!tDq_!)xGAwd^ zc2;8pIK6~?_MfqH)aw8CG5!m=FI3AGIfAgP3_dn#yXdN!(!i2fl<%VkL-cZAnEzL- z4ZZRQnQg7;LF^`lF))dNK6|wH`-F>v+^ELYYftIF!zi7eF3*k=DtL{;&O?Dxkg-G7 zo_mm@mh4CLGqTpa?*3vOII}IBq1jLn;v7ceQ3q;8A}VTL-nWJl5|TXIpkqMy*6AoT zFFd*3Ug*h=3&?Dh>(v(v*AA(!_TJO0)37})pr zvf*bgq!Q*1WbC(?bKL=6y+4fsw!A+L6b?(2Ic!n}B2IDD=(ic| z88KpaI*hK= zilW@@&Krk%G^N+`SFAIWUTdV{UuaEN!%329>k!(a%7Z|;rNgcf*0mOMJ>oed^=nNyyA48uKgjr% zgA2irXO$hw$E=+mJF#y}z#u(|52i|~Zp!G`Z!TcL9Yzhs-WsgmCqL14loWQ01r)ws zE`77rB~JE%^adlhSZF8o$!YzI0ciFeJul=s1eBAHcF4OoD{ark+L;r7noveLN)E0; z`@8?KQ6U~Wf(qCEJNMz>?xZ->9->Tp3sLI==?|7twIJDzS`d)Z#nN7n5iXu+$Dwf$jdn4n`Gbr*Zh8gVtg(y~8v z-I$$)Y?`Fr8TlGirhbi0UFDztu7^wRQB-b5x4zMO7l_jTl8yeabEL_;KZgrcDU@AS>5KN{uXvgW?rz9OIj(n9d)KKhNbzZU1? zPL1I+#0LEAFQ<%yay57~$*@pA7Z(b(4lFlBNJBI>5&vOqP8V7yK3};QNON4I&&3>7 z8M#`VYlhm3&9$N+4Phc3AYcHCRtPCx2qi&bT6foI3xp5fNv&d9N6#jc7o$*w;-bbo z&KNo?OJr19yUav$`tbnK!Bb`H**21$MuhRj$)KJN5(Z8&=aWZ<@iAb%_|L8vs)Ai@ zPeDOG?>=T#ykKMX&abuJ65BpK+4f%nnaqmUSU9<>z5J4TuH0D%%{#~jPRyqoc=g{K z^x*YNp)g!j-z350((|`2qQ}zAHui7?J)McY;>QFia2QrtzN`9>-nReF5x{Ci64q9x`C}HT?9cz` z>wt9oq~xKoA6hQ?h`shH5k0kK>9w zHBd*rVA-}QTzqinQQh~&Jzk`n^g#@rn=mYB)^w~eXhOcf~ z@e2Q&M9e!y`bcm2660ZLUR!Gv3r$>NX4b(%SOejZ#)s{C{4+HS^?x<$uDt%mu_c^? zyxSm#XDur)EuLBv%oK2-4h6P8OVjd@ve8vd1GgnMagG@x2q+$!Dooi-rBr!jtbfBz zXaTvgWQUU&Svw=qNFGgfEzjo%Ns8f*Kn~Nk*Ld^uC8CiF$cqX~w zc^I{L;R&HhdwHIH`ObfmW#HaDg@);Df_KgM7gIqg%CF?Cx)a_;Q*I)Tvua`|DSM4G zQ$z)jqaLdC3#&ENNsAK?EojwxYT@h^((F?&y4&g4S`HBWKe$9w2z+3bwMx1&Sn(YdUgW6N6JO+L`mOrsrbmxCZxfwA6ED9z#^gM{K zUUK-pV*A0GO4AHr&wDg>tYzHAvDf72bMBEL3cd9Sm2fnC=X*Yx%8o6s35l0A0E`C= zO|+yjP-O`+*K*%Y|G$F@weI2;-KbCcujlc;v>OHn2fTE=t^BUm=eO8}TmLnRJp6iiB#0}@mf7J1G4kI=)tF6cj zW~Hd`E#c$jU3fd8fN`mhR6>XGauBK-(l%nt}d zP5Q|3xt?haF{lZ zriF?jnVVk+Le2tOI&oH}H$RkL+WgNRXx>BPI}KG8rsQ!dY6k01Zf=XFq58R_rD^uU zwV=+r^2oi0>R`2j=^CSTZX)N-k5;*bk{mzAGFDQHz{c`%2hiFJ+OaLN)KUIc`(yfTJHsSEeZ z##2_vxdObCR_Z$!Bjl1d12o2>nA17rvUfaB2NZ_|loN|JH&xl4Jw^{Z5X~Axp#cLQME~ zZzNO3^43+c|gkKZ!^`K)^&)gzc(l@zK$e7e9~r@#b>D#+k(1GH&2A;#`&; z>w48Tl(_=4J<_oYCxPgRkR|{6Xjao}sPzEKCq|;s74%yuM|wpHm~zQaBaDKtptPV` zTMF4Dz4qIGCvyaOoTGlV(vJw8(B5Flri?S2R1cp>$K!%yVjiT%qFcCN>&z0hkzBc~ zforkbmt0bzQf6IvT+8?A1NX(WC!|ti`PuZh2nu`@2&wGPA554qg`JH7`yJU#H_R6* zDiZnP=_#|5Mn)H|-<$G3oGSo()^lhpQYTUEzyb%c>Vt!N>-1>kLj3m_->Kl~7DaBP z1*-50&lCzAXnAfF&}&@Om4hJDtuqGkkB^uIRd$im@=$^Wy&(dpba8;)AeivynbE>u zOrI4IN`t%};*2XOU9_NTwYxuT!}E+&7O#iwBluHYGe+6>`cF>4HiL&Z$CcnNp!n1L zMU!p~yM7856@f-ic>MGi@l={Bjb%gS-ruQ*Ii>LeRM617PUe8g3AI$+;gt(t6@9_b z+XaHe5+~#sBw14?b8h8QaBqNQOZHZ)5bj#9XNEJaKJoz`t^&fhg$Lzoqq*#fo()tH zN8T0PP#BPzvH&msEpBnanb&wWtnnK(YU?31NdI}f88cLsI*;bqo?Ua9WXsbqW5`pd z_`sS>&=^$Wsb-E|A5Pknhi0~W@>bsYq1|>78&s9BDQ?Fm69SSRrjo8Rvdr*?)>lA~ z1tBdPo*LTtE177&jHVPeT-{C_;=QqX93I7QH1n51ba@`dy(%3kh;9MM^g@%9wK0by zwA~GMujX&fD;+b&d4lmLIQixKJv*Y+nq>@M8FL92y42&M@W(&??tKa?1apX7jYzyn z+&;LJ`i}Ut)fb`PE$CU1bhwfO(WVdKQ=2jVbVe zah8r_(naZqI#atY-4{7&JK0WC~V zNhcMA5oIdi=B`@b`7!x`YkTl%GkPGgM_LJ!u>s}zI4_=GH4zodFACoNS8kzOcriMK zeS%=ZH~$ICn|pdd#mop^?0I1D4J7dcTow{;Wvkba>mI%{(PGHfLU3+qm7QtL@XN7p~ioMk}+sLtiRW-;#JmE=Z+ah0S=!24I)jIv}-lbN8<{>(QVr(r# z72gu`!p9GTUJ?NdbDk5{d$zm)r;!WQ{}W~7?*=`uJibHIeh7ni0L2%6smU#scGtJY z_FMF(Wm2}R0IAOq#Ig0QTD3sUA=I2A8(7%24sjMZ&#fQAjk%ItO z>>BcLonYufxUpaEnb46mLv%1?yO8)%A7y~UZ19(Y;5|ZIcsP7y#w}SI;JMIc41JT^ zPotsT@GD&E>5v@p#7ceM-0py5@6Rr;cQRezL-@HbO)|jvTHdeuXsuhVLXc)qa?T!+y0@jY{~?`WRH7JhXPf3FuF|bYZHR zWI+CAutyL+;20qOB3yqUust}KcQ^iD@CjkaXpR{Ex2E(OE&mzQ9on&lIEKAq8xj=Z zY8GWq&x#mt_4o@u^zepSm8tc$r5DE7fK*2%ny!jc7e&&9Wby$de+5G!$3-!#ia&*o z?nR+CTGqs+PU0)jI4>Fqh zqp%?eF9c+#TZH=!DJ=uID&gd7p`l;Uph}p@MnnM%qb4gV74%JXg~+uBs7~|25!Q-w zVgb43UNLfJk*J{`F)z$E&5b3+J7M}6V4OEHkn{Ul57!*io*z2(OIKBU8~@zDjEqVq z$`0b5t~~^q!=&K-<4X5)#dEi?Vk*e}jIb3SK_$d??bl}2JEy| zw03F^L9rAq7(@YN6K2xG1&1*FubtnJvCruzAw;3GITcvTk04g#>akiyyH*-xXn`Rw z4^u9N*9hX+&AFoBPstecKa*++hbXhhQhEaq?}M1q^Fs|8+DC2`!7$W*CL;6FX3R`Y zggSgZ6n9L@0bZ;iJ@Yq~skw=uD=K_H~~hne!@ZAYLQedy?hjRohB{?G@!1wM@) z+RoJ8%n({$dceUY6}&R?P5SH970U-qCZd#RNHSEP)69T$d@yH=KV^@}oe`e3iIjfU zBp3}2WlhKS-{L=obqSbwkI#l)D5$2syhZpDQqZe%esx1Ky(u+PA}~$@s)ue}RE%i( ziO%+Hs9qBcn7p^8UIF1DVFu--As3dlBGuEM`~jL97>+OGyd2)#!!oEhV1(x|_xf$( znQ8bQZv+0+UT~*@nNURAi7TEJ&J9XHQrjZb%u%fgx85oEV?_6m0(QwqQ0t*-=t1~q zb~b)dfg#M?9>s)=I~=M~wwXqW(}{jLZwodZ&KZ4qi%Nv)&1L&6OMW7OHb|*U9mYQg z0i|yrkfIw((ETxaU#9WR|A^}3Hk3gZyQI;DeEI>UWMsD3zbVxj@dTp(93Z}O6U?Y6 zH4ViL@+8eDeZ;bGMzvDv_Ix+w9n!NQlIT2m<|-wXljLfX!ZTL+3phSbB0)o^TnG8I z)zz^znzr9x&X)5^mf@+P3UGVwjz@>8KTsPXo}Flln=RFp0$}InQC4kn@y$9=-9hHV z9rZ~rZ3Q)Qxl>e4D)6SoE1rZt%IL=Mo1D7_L+%SfP1wd7A>e7)(|;m5AWC+=+wZre z?1tMeN#pT15`d=wllWcnwoUsJ%#XW!v0@kScDpR!n$5=B<(Y?SBrn3%HYaiKW9GDX zoPQ*KXb>e-agkVJ@%+7jk?~q$DiQ@h+KlCv`b^Bz#?CceI z^Y1fow1gUnpuZe6My}KT20t?m)=SuEFc@->nYA4ER`y0mebHLY9-AsQAfpzy=@fZ> zeBIh-ZqpdBc`VSUHhd6JUq-0bu(}o3m6fj9QU|(g?5J}{&Ek6@)u+c%tw~O+3N?&f zdI_Oh$rUyv2qOy0mIA;eZBm^Rw&8G~js$FF!+^K3Q7ncdPIVttyw+Q0h|;v5SqxG< zkMINLnvc51UqCyp$ZW)@oRL zj1?aMvRm>pSCqIH{`**&gx~D_evY;vNG;fJ*12zkf{p9;hJ42-3s)yR-vwK6F$sgCKvD;Y;KvtQD9jQ@08vtg}_ zn@LXk1b#olxLHaBa)5!riY~+GNZak|XT7^IHH1BoK*wvckilBX)6e>e6^%k|VfGfG z2yN*#D2rQoCb0)1iNc8LbExpoPQqPOWvRksXPEvvvRP&Wk%gm>6fmfb6v@_+xWxlQ zH+Pt|9mRURKxZoq{3{yB*cJO|ReviJ=?j>_yww`+$rTM{yB~i$ZpilU^WR+DGeQ7e zuP0}UV69BrOXRGRg;68q&~FQW?u%kiaRuH>gM7Pr8;$^vN1rRa)hasKw$o%`tXFLL z%E95cAe6IA2z$2(u&mQP-6tyR1Q8=Z{y{#oTfPIF|R>0oeK?0V7YIs+T@)R-&htoCiMTU&Gs6ux@wJe4j0ZsrOc<-Grc zro+CGl7m{@#IPN8XhUX#-DJst&4q@>zHYCnsu1~-a87nr9~>0CASK1WnUpJ2)z0#! z8c#?QgUa|cnsjnv-O!itOvz}mSb}{Jx&d8)q&n!T&Y^7f7WV!OQII;$f72G_bw{}N zL>dq3mt;NUCwt0jMky`%RI<+X{HPN%nHtud}Un&j)X4%kObMOHjmCMDPfm3KQ(^OavA@o%|}=mt6@# z4ks!*k$l8v=fb9ubAYTH;y(G1pX$fA!0d%s2TtN5F;njfAOrlPjsS zPW3D@h!zS}*$=DECC-0O0AL2Vn-E=S>Zml7WMHMPlJ-zq zy{)(9?BQDgUF5-*M*AcHP}%el<8$Qm`%DM0SKX%ai>McN7Uhbr+YN9K4eAtnQ2k(s z7k!3Vn+$j)y4q3Znh&+p{a^>M2mUKgm8FH1qF}M0ipe53M?q8CI&%`GN4?~$Jn6!(uAd|>ULe4%@TKu|00b;!fg2COcfWx_>_}>Se-ho$s zo@)5c(vMbvlp=2n{z!icC{TUBHH)s5g%{-Wh(I-g*SSA#U<)WQ9AysSNd5=Z3iqRxmaba$JzR38$)$x-F%j|;# zPX~|lf!BwiLMb|$83Nx2>8MT6aF$x;*S3*h1IT-eVhEZtmU5L`RvMUof>R7Q1T~j* zgyWwdvR?u@0+mnY`;X^P@$b5LK9_4_b9=R@AtcYd;6ydmOicbELm#3rL%LkFDiGSy z>G|$(3X7B`F*fFy=A-dY?fs~)A&8LYu{6?8fLr+WcP z?6nJzsgJoCn@BpVH=Qell%MlX;x(+MzBH@ZOz*pgOV$APc77sU^hUdf81xha zQ0r=M5_%Ac>PM*F`$6Z?YU-=kvn7aoQ}aeCJqgzgOUsm3n&yt61aqyTzLwP_F~^Ia zR4b4k>2sOL0l58?ecpbIYtuh;ME`oX84c->vsoM z4$4fJX8tmINr#jbzCR__^ABO z;Vv-Qx1MxzVn6e6{Q2&^&ZiDANp-lMWH$F}&}&vPyllE`{c!yF1ivKp<>Az5tG~0( z8gEB328-%Fy)~$!P8jR`p=W&^=L;2bK8EowK?uEj zykwxr{HX&(AZlM3c0VCrky#6>1+jSX8Ppwn`zI~C=IyR`F>{HzfB<;;h(_7W9VK{z zS)VP;-kPR&eE7w69+W?Q1XQq+E*OB14hDs}oy#eDE!%eG6hIU|1Uh`w#B@g$^~dCD zQCra+5x+fF{=T=_$P__*6Xxdhi`Qt*xd^Sg8&Onq=1Nc)*dapr)vau9Ei8UOfAA82 zn&z*_#JX>rCJ(e~Mx9f^mPW9=ec5U>`g39j)GmRECG>ZPY7!w6^=wyxvtqDXPS-qX z-o5Sx+)d=GV&?eo-wTc#m0DM1Qfc}SB7vTsp>OU3q+qx7(j_}iIy+^4Pwz&Xdz#5u zRO7}6V|{SJ!&cUXb8TOD?$N-OM4+iYLyX0K$51r;GathomZ6E!gY0$wA=58U%mDhq z#*5h8llX;ak-tRPU&kE$(c`bdD`rm7TYzL8ndDmO`H~6v1D)knjM;S=au1(v_ND{K zg23a~gr{K<*~Zqw9Y=@#A#P*#7EbirpEqpy464~53GF(eQopJb>&fR5MXyD?40ZLM znWuYL;|-ml+9(!j?EgF@tPa(8j$zGliZlfpE=*skKdTceHm;!`B+f6LUzIVn`?R6Q zA{Y{JhVi8l9|9B?Y0vaEfshU zoNyPkFXn7Tijw4_@c_d@<{E) zIkX}z3B=*B0G8M~cf%OFW}N(uwQjAp1t~7ZJ%%Is^!m~*9Gcq-J5O>~t2xFi z{M;fVuv!jy#&7l77ncY_6DTH8z1u)Sp9|rewLJX0@eiqm3RpN;YmQw<$s6W1rEaKR zEnbTJ@RQh8{sonxtiH5he(dr(DyV=B%)I)Zng&N^1Cut(fvKaA`uv?if?DTc|(D0oS| zr;YL3v!xf+6SkvAtRN3ebZ^G44g5aea|j)9wr@y>VEg#gjjbhcv0=Df4w|w9YX!&R znqR1zWumekhds2TDm&Vd{;-p~BK)J3)b=#pml z{A@su69rg9hz9!kMj)8*3%#R#UT&|!ph&%ex16Rg?g9GeMw}V(rz;Ht!)lxb*K&J& zS6g}q7*Wokhq69t82qboT3spG^+%$TIZ(LGikKz|p^LQYX{wF~iv5dG2WX#at_o|m z9O0QfOtG^D3T>rr&rd;FOmg|FR|)}64k7~vTSai1s9ALwb=Bk&W97iguZkoomw#S? zf#VAX&H)#gZZF9RY&=o#jWc3XTvP<9Qf0rfs?k)L(;QQgilUhN&zJg!I_k^$HK1F}z z!w#xI*il1KPaVa?@LrS8>!41FP>i#8B4~#7i~T?oRCW+=qB=F=^=c;JPy8tK!i~TI z8BVMi$l;x75t#~uwW&CT21#rJX*fe-{4re6o-e>@Ah~p*xj(TN`Na~bBA#?+wWY_} zTj0HHri#V=f6rXl39>_73F=SQRlr$VStg}rK(ko+_%*N-K~A3nNpRn;|3L+na*8sl z)Wu3%p?5)@YU*CkW}C}4JU>kei=yh9eA2Hub%*n6dt?9gNj=O1cgcUjfm+wFXMmS| zSgokaYOAaY)x@Rr)27rU{^iaz^+42Ft-=RxSc)40AsTm%ofFq{2=$bgJ+rcTzmjr6 z;!oW@MDd6}M_m|%2$OJTWpSZwx>ot3wOLOXRu*&z-j;^pcs(D&;sKgZoMbuV=Q|mD zU2_E~q(T)$5@E34$vi?C<9?3g_9Kn`qTPQ4;rApFG#znKD@|j<-P6phauoY)ZHyi$ zPCoKE-Nje5!QGKiZJk56KkSo%i%?c%0o7v$!}~sthY^Eb#rP#;Gt34!m{*S*o#Xg? zj$qfEY{au+9I0#LMx|&xc>R0zo_O0`c1YTW4?`4??&rU7M=C_g$DU@)nX=~f&38A6 zQ|M@v##o}#83nl$mn4ooct5q#A~_07X5Fx`4^meTD3Y5`vZ7S8Ywo&hZ$FM znEfmVCm(s|uLy&>d<4QMJ|+7*`nr&qyUgSpRuL%LJG#J?D^3BTl@wPRIXqdJA1g90 z#jJ@ zCo7M!h)g~5W{6%Y7SeQAY+%X{VS29g{%5-VELH&%WP2BHNh1wqx_Ec$Dh~he3(0$y(_6DM zqX}8CUMn6uW9apDa~n+bqRE_~>~QU(Q_B&y2vGhu1># z7^dA4eB$(&SYO-9MD&gL^QTT2*gOQ$fKjVn)_$Sn% zCc8Ug_nTmp7F@ol8W2S#`&oiHT(_N00grcVhSv`7S@;^sX+swO3~ z*>~8=+_!>$uL}+`W!^e~(pdkZE;M7=+r-)#NiGIXsxqhZq0lq{t7^C){QT10kr$5$ zLjweHzmQvB?o4m7Ty-_D3f*G?x$YOdmntfw1T{{g-yG`cvj*nU&}qMjFjsQxi2UPU z;T~c&lM{d6Z52f$Tv{u~=d&c(4E9_sU{CkT5IBTOeh*}Ry6ZsE-t>C}v!ycLMt-}} zBQZ-w5f!F0u0&0C{ZKMeovN$V^B41t&c>!vP#*+>Zmv8JM0Akw{==KGPSm=3$!l-o zOoj@Mb7+J)d1g#mz8=|MOTt`w)r<+T@HvxE$_`vxg|SHLE_g}iTPmfvVV zhsS_9$6`TaU`0Fe;Nf0k){)3D+SKf!oF1>m6_!U=zs<`TKmW|5X7(J#90z%fp4Zhc z&iW8kDBZ{EEZEXQW*$8&kDtBFOOz>yMu^l&cE6y&uJksm_2O~|(5a|?jw}q@0FP4Bcx=2DbE)6*S@TMw61DyO#> z2BXckcS1Ri%K)#At3eu{Kf4-Xz3l+^m~xzs-$?eFbD7C6uAdq{xO~KmFD>VJuJIi7 zWP^>X7hB_`$2o%KlC&y0nT8cRf&c2*6d4fnb1}2v@ zv!um4>L}4!AX>&?PFLrCXDuCd9c(PUbpJ34f1D=$HqvSH>R|z}Rvfdm{YBS?SkwKb zygiBMb~)OtY1!i!POY9Dyid1gH~s^$GW8}ervkJAz8_fcU`);SZ+mlT z@Gq!G6+FAYwKp!GwFph3=9J${JZ$2=0azQi%a{FEIxNh}4O0{#%K+5S!-= z$W*C+2LRocMzo>*<-+ggGw$<4_b&B5df|Ha`MO?ZJl_)z<%p}dGH2Sk4)gND&)y(M z0`~j*V9OBH%yH+5m~pw`4;rA$eNh@oNV95| zD`63e7EU3iz&rk#-jawumgz@DR)_O~lF1u}KtBuL=;L93#>R7wjy4mf)*`Zo-;ePi zb2o*-sm;QN=&@1h*&xVG_W*pkl^e+wCouO0>Cdsp9voPrN{A+?EAy_(+ddO9XU;! z?1aZNqkW$Py)RzI7@-xEIv#;GCFl=O-vs9W8!cN9d{qqae=?Z|rw z8oYapJ{JzcCx`;qHe6|ixG2p-?Sw`x#3V!%z1d-?C5qFQzV&XXs7IYX7pYLYiWH?P zEia0^xCK9qs9lUD8}Q|Ln-w?m%Oul{nnrfN(z5#MrwP5MgFXyKX91?Q>rf9U?dc@^ zX_eCl;lbE!Tu!rRo_K+adGOT3l46oxo2iwjgI=%BRf8nL#3lft zjE=rg_rX!1k-KwfFj{u9{Jt<4U$>p~x)=ooC$P8JcKiuT<%!{fV$&z@endld688@f zH*Nj_XgD_0M}0cM;>8>|b>Q|&(l2ZEGr09`3xX~LJQV7^+d7+P%sF(X-as8&HOqVN z!^{dQ`}9?C!suYZhV~*i154X6Q*G4*Oe1ae7Z~44+BXHNmLW*o!&z9e?xL-;*PRka zc8CVCp<4KmIP?P-h(l9-HZr@t)OEI{@dqVm!2Q9?2e(8dzGo4fa_$JE+IJdJvAj6O zaxi|pQ6Cr+_Yw(9lq%%GB*7i1ovvNeM&)fQFzNky$?`1{b>BEi0NTgI-X#DqpYt=n zznWuqE(a4T+@lfMo&kGT%Qt=qNv|g;Uzhn`=IVn1jN@^?-ZB}hT_CR>&<8pm1q_#% zWX}8z{879nnQ^)bY8gRuL3E?!PUG!(#cKz^=c#oRSBY(lBcnUH(VBU@k}8&yGbzhI-vZ3l0TT_L~vtJ&ceBeztoVsV{ZFe@Ci-;kjhtUGmC^T5F z*LDr(MmrZnHNkQoFCO!kRd zs$2beqShVXcsCkoO9v$)@GtCpuj^?I*tdyUgURB6SdI5C&K1|*M^RYvt7bn?mL{S# zlg;@xlchy}=i|f!nUO;Hd=Ld$)slh_0StmF3rOHb)|aFM7A2DYlb;W@V2EP?nIn*J zcnx;)#;)F{fq^qD2fMoogj`8cdewqLrwLUWh1kI+RuQAYGuLXU%d;9lIa&F7M;4%7Nx4 z8)pb<;*2SqKm_B@QOU;Sv>h(+J1#$N35fyNuJ$m@BcbeG4XJCL| z&d1u_zb>@?W4nIW?v(E00eiA{8+3P{xLNJ^I;gN`yyVKPj!*6JPhjTJh+^MyA+gHau0J7? zI83=?ER{n-+vBWqZ?w_pkPYdEAECLCn}>vtG8|e|UoH94nT$9gYxoYy(4HN+@nHSo zzfd7TJ?Sf#zDFr88tv+R`K8L94sPe;AuLkpnWfYNBWbNHEXOP+<_mTUKSQK-2v|&) z&`vV&SPS=LPy2~_h-+plDjWQq;rRG!LNYc5VdUOxJaa7lI^lwCn{&eG&A(l7v zGk^w6N>#R_w}&N2(ac`#^pCA*`@5jI8NSG;hbm{RzuVRF&K2#on^L7(nSD%Z$&ILB zK_s*K)m7OG3{4HNJeH67H@o^{%J(TQT-u24Brl_Qv#?=LJk`KF7(Hn-#lkDw?29aH zBYy#(enh(q{E;B@g|3Lc+Ud6Y#4t}XJqkv+Ai)iN#n9IHBOD@#S!f?xdjKg;1^^WV zBEt}Am4>P=Fx}ehM7@Oka|M$ey%Y8JjliqGUSQ!JibxvlNLXvUeX_i*$YD0|z372i zVgrXdgmo{-{*e$iq@_3wwzUcVWai8t4BNzR(egvm3*-`LD&3PN44#Xwt(fxT^3cHrt7IO)Ag) zvikioc@(YwX+0Kz@CYMxI_3ryYcIw_XC^_Pa>t8m)2f=u1Q6PG64AfcjrK>(V95QT znkxM(^LY<%Y4ifTse%)^viDjf&-vS63juUp>959V`| z+rTrZQb@&!jO3q4Vw1DVc65%mZ{RNiQ$EZF|}xbpmk?l8tR{_0#-MfZP_SsTe0 zcbyAkxp195V1C!dgq+rt%U6(PHUZD1c9n4*76mi*Fi&oWiHBMC%Qu2+YD@NYVJuw`@!oItC#)=>LZTObBHz?zF5%(=^#OGXzMbb z7{`(L*kVCfWT{QoN+yeJwCd{gXax=XKGpmSd8!3m-u3a9&*9MVKsa=gx7~Rz-UB^L z8*1Wp^qPyvm)|B)gG!s5ccAWI(kV;^`;5Qw#_=#8YupqePP zMsE(UeEU;43fB8R0IH`8KINo3&9GzTcQ;eJ!9L^W=Nb|SscblSNDKmr9o#pekGFVx zEMPK*KkC{(geBl^Q7BP4SLNY6C%5q@5N;P_;!^=97{YMDAZGI|0@?8!caHD3HvR4hdvFmDvH*NL&U^3 z+m8D5qT1x?OZW3Zy-J*D(E(}*vO%|yA-JF>J-w`z1K{cy$d@>3md`fx5jiLv`hwhy z*!CcsWJ7&wpD+7v=VH4{JaMn$@_E*Ym}|uSL)#7Ico1hovyIEDTan#hDxJ7wqy5loZIl{?ndEl)agV!Xb;_uWW$L`UN$bCE; zViehbtG$#5XA^nBEVXE|XT<(bALd)_tpoQrl5Nd<4eQqKmuG{SYMwNGDdC(RHNK77 zu;?>#O-4~Sn?wD-wyr!7%I^C!jW=t_9x5vPURg?I z(q^mdDne8$ijoLn-cU(Wgt8VQ*;=ewCW#0wNcJsRDoY{C@;&!?oi#^8M;`tVkW9B+7p-O3yU`4>C4L3(7s+a8)@GhEktb- zlH4u;D$AS(=Ydsj*b`E`iVbSEqvu!o)fk^eJE@3rXb%m{QRx2_|Nh3unI9s|pJy)n z@W(lO@sG`IPDCp#0Iewao$K#Z^ge-Nfv+Hi%}{I%V=cu zkniE&GzX#V=BB17}k?PUXHmEz^_wBA_Rv9viKYaioZYLA22HlK>Esh4eXxK`?G^z z$t@7xJWY~G^Yi#3)EO=6yYKVlIl8b?yhyb((ux%-E88gZ-LHL*_XQb<+-flLnjs7q z>+@s?^)c&dTYEqKdAzuOlEOSPz*#~#U$948sMAWmOVc1H^X!9#o0Iz+e@l#N30>{bW9X(i~zqH`Wi}cyzK*{QzQ3hSnsij ztBGj(alSBpv6c-|i23|U8FGaM&YgCLT?S*Fxrg6K`Px}}(1?%_02*&V;feC9k~@&A zQz&1)A5a1yE^mO4zc}t5cpFsuFn)iIJ|p_upH^8jIMlmz)djPfFWjP~68{3?Kw2zL0MZBI!{_um zYnyG{e_5Z{3ym$4jWvW>_=M)V{dmEn zh5>mj+~(O1pVI=FWUa*Dap~_5pmB=`pj>W$EZK6#WpKsDM4_Lao9JGFTL{I|W>l*9 za70^!LYJ;rduYZYG`9XOczE65-6&+Ea8chUk$;&-vl%k;`v=ch+ zL;6(~TC-|{dic2O`K5aucmWXtJ3kIPpEWDTfY|6O*QXEKmrU)XO7pw}l{}SINmic> z75R}uL5(dwdkgbfxWZCZI>C1WEe!O%zJ*wFi zr7k2hed<8PMba9Cu6I87NEilgAWgEP{?>xQfeW%!eVonX1>>{Q{V3+P7=D&fj6jE^nzuNL&#Y zq%v>W6dZBWu{A?ce47WkFH)m0ml40@Doh&brut={+P`gXa+J3WG5o}9n47Wb_CsIF z2x_uUs{qJ+@f+`Z`PLAz8?Drkof`XWriNvcn5%Y)%+8)vVKc|dj#w4+Bgl)tzsm66 z)g5cdeoZuipEV?62QUXEE}JAZt8qe2I3}xQ!1GZyGb@IJ`v9Teuw##o-A;Bv2aTQT z<=pvpBs3=`)^N%Kx)ued;vGelc_831(dXnc@!~~IqKEzd;#=S_r23SkK;iWMo>miR ztVNa`l>+K)$A0G#w&{4}r7dfX5?kmXDlw9@Xe^y?gf~=661Xu*Kf%O`3>( z;jVjdX)m9UFHrX%{(j~a&t(Q`F>3WkizLTX?>?_;xcO0o#e`SUDOe5cwIMtkcJldJ zaEt)W$K!SH#dys{`)0wR>Z@LAZzTxT3MGy18~aQycW3J&-Xa1XoRSa>weHV$xXWUW z_U;v*z{M^b&`kQwBa1|RJ&;^QQ?jI5CGsd#&Sp$@K~Q7229sJ_-+eePaf&3ahZq>z zbw7#>K(CGBtX#Xan=@7lEa@+f$=rmO)^cfeW`i9D`|-P=we*=o8b}gGk`Wy5s7-lH zNJ>HR-{SMGri;4MM1(S(EYjUKwD9RhIpD)4JOec^Rny3 z&ycn%vMg>1j)F(z|M1MQ^o}I@UTq<@U%TGfh};eo$;^&ni$WssBy%#{`Ua@mPe+xJ z_vcSSsy;FEcRFMg@}_#}1bN<|4zkz!-%pF%zqNbrQLLIz5CpZS(?cv=S!8VdS&EiKqaI|OsD z+l^et3u~)lBW2p6d!6wu*O!8HoP00$%e*z=?Afk^Z*nl3$ZZep`X(6jIk5Ek)D`u2<h0)i}Aaxl~V*=dAl&RB8T?vadiM%0+pL( zwEcW7+w}Qgx-aV{!U31J_gs28T+T(=LrxI~JixY@_0v^e9%mfuPa5H<>Q8hCFg!lM zk}S!V`i$R;|3j1d&+07~wh|lH!{xTsH#hi;U~l25ojV=CiMIj#B10-dGoi(~yrB+< zXx4Tml1`LzB3^w3_<$ku?tz17pP%b(RA(!j+& z4Su3jp+YR(Q-fq#dT7_=^mrG?o20=DDW4wlNvc0Y(g}dLu?q!BXfIcHGy79sHxa*c1{sYThx9#u*%C=2lp+6$K#t{y%)prhr&R}e_+V>j_;Y&m zVEI=7op^C|4{wRr2(i0O5&LL@HEpXycVU<|r|m~aC>6@9%R?^!nll5V^J6WUV7HHv5&WS^zsiP~T&bLpQ%?FPT*{~SO^2J*%j79n_M2RAd*;j zRVwDaqnwv(;9);JE|!I?yw)%otVc{4;1FDf0Bu>Q;6HqHh)wPEp%HO05qYW&Td9Pm zo~rL;y>2+@ARcwIM#PZ})Gie9_Pzl+9(Aw2qP`15T-JkkQ6;MI`Z{H3-)&I@+;A}L zXyduuI~Lh`4dE&uR|v?16or|SEdf6PPI}vW z>$HXXtr|!Mx_)UcOCY1H*1|*y%p!!ZFFL#TU0;vAlK)pt_Dk9jiK1R-Rtu-RAg`>L z^z?Me{oT1J$z}S&9VHxxqIep%`^+`CjhBIXmihHr9hB~c@=Uwlo4=M93>4u{L)n0`rlw+Fp3{+K?jI3H zEGOHrTX8sdMx$VJWpIWt90>i>jExP@hbVKfcu^hr4OT|xZc^T=<>mN4XN35oA4wG*>U08yS7o?)Fv)?`t#ch)-;yY{& zh{1a@p{yGA!B6^HTk+ zphg9t&x!VdyuE3*Lmez zJkFg@Qfh0_8o7AsW0yjTc|s+cuQB6=Wz5^)7B{>E5GpOUeGOZblrSlysiXRtX9>nA zafZ-`pj=aLl~7H&3}RE`l-wu0Ypl?zO9qUAby|+q2zFHMsmLt&=;)fUN7N$9IZt)p zC1?pv7FRq3RRD(r_{Sq#-@o3yWRysR?N?a$;Cg}9P`Sy3E$>Gtku zQU7MPyZ4{LG&8-RiR=3-{ejy&Mjm}FevR2Hz`qG(!4Ov2(>IwQF$BA{lLz5wYLBND zO7vz+>>FZ>K#qxy#PB)R&YvT%TbPj7llaE61kF3j=U?UmFi{Yjeac z_lyC1=RnjuDyF_ecUpU2>3ouxmnGu?{=IQng8j`TtoG|KKaw0Eo{69)g{HkfL1|az zwcZBQ;xDdpT-R?`nrxt|(G3e+mHN{O7EiaY>Bt@#9iSKjiPw0E`*G zD`4n~=sDf6{BvMOhtmur*zCq!&v{v7JTbvT{gtRfA*N8!=mE;hA)GuiU{hC|{uUtR zxhbK;Xv3Rl7ohz7BJe45tj4V`3PKJ;EoReaO^`T2(0N)rP<{4vClodUF(eZ(9p);p ztz>bF+fxz~ick66hUd?6RPu64ZrWMC_bX;> zL_DDNz1$M^LqjvFw!Lw>egl6tK0OgAis7K8P2T=?vLBst3NLv{)W;RVLCtNEn)&Mp ze~MbcCLAbbq2WF8+HX2KdOF0a25UZvDr&gZAlNZ{d?}u!h1>vy;-FpEP;&%qN*zWXH0WOgNV|KR{S2BG9!v`<2s(j&tV=db+tv2b#ULAqGFj4bXB#wi8UhzrPYP4Cqbb9F#w`j0-Rn zVWeNB!I1Xh%V+@~bJLq0sf9Zk!;x9d0Ad!5$|Wx$hz5`AGXWxQr1`L#r&&4z&@1!l zZ=!OrPAR?`2G{M+Z4S#`EZGXv>;O-Isa*tBFF@orZoasRIMQJK2p-iojxk^61V}fqN)6%~EDloa>*awQP=@L+d{k4P6ziGjHcI!Ie%Bq)6S^c`oBzvV#2k`=F}e%Q6q=G}kXDjJ4pn z1aV#I`~@Ox`Lj*BOS4>OzbBWs5ct}Y@bLa?r%cy^vBaal4plr1Sxhu4s?2OGb^4Pp z?*#4P61kvtri^ddo#_?PtHPzvRM2%bgs_EW?B4%dfns5hwz9x72%gM#{yfFOZ^t{K zgS?17BemD&O6=8_&mOf~OgJ+Q;8D0JecC1RUf^#xn^iY(x*cTx2H2cd0H{T1{yw7B znUN)V@FrPWnsd9GZ0Tr4*2|IKGc|)R0>U1q+Onu&Dg*G=@CIRl%Q(BVl6MVps2q3E zxD~mW|Fd|3r^N-#R zFfKi}Jjj$$B@M;ACjAR(epL7;a5;SZ?zL!xc&|(R>Ub$4XEK!JS&OM!7+|b#Jq0x& zz2jwyF?ZI?N`vB|E@vs_^n%OMpEp?i{t{@IDT_FRXBTBPG%^HjxmCgrvyd4{2jX&^ zN76(6?ZB+7a0S2g0o-$tFIBBvBeX%?JL1QOFqtPlEf`bNv_X3BBYi%M$udgEaRl$Z zCs6CBvFqxXT8Dg=h$|glJc-%j)tP$Q|$NR{L8&MyeFm&x^zq>h7e<56) z;j}6&+i_0qw7N#=L}OG{2%5NqMMnihyn_->g^yqSR9-e_K~!`KLsy^S2-%}sBpvbB znNxS)Rn=%l;VB3>+np6bJAfjXhM{v*sAd; zw`0w9Bl)Uu@I!jxeAgZ5$b&M0$*U74i}!wAGQfUsT#h*xzxu<0BBC+$iPpFm*J7BP zn7EJmv`fuZQHzl6o9`w)1~ngU2-tn&z`gY4TVxE~jKT&D!pl zxBugj+0Uuo0678ho79whgdkx1qMK8!QdyDYwLVK)&HV`|-SMTxf+(_eFt8r&6gix( z^xM~(upH)U+mrB`TEv=Dw1Rq_Y=Av!%yh>dP!Nz%XDC@{7=tN&oHzQ88EuX-% z{8`@a;S%BTdoc1*p8ZRdEIuM|5kzC!EBE_EvB`^U!3JNL0f)&%L{T7gQXNr}%;MJY z*;LB)NF%>#M@;aCqp(w9CC4O{i2X(OMpn!Doq%shR%GEFZcn6lu&r))Zii%7iGH> zlK}V|ys2s?>QK3-Bo9Sr(Hetj_r?dyZ3K!`Gsa(Sw%1_b*$IX40L)?Uyx(@hV+pUA z%mqTik%PoQyUX&HqkVEtXrQ>15v_9orS{>D>NQxJfawBlD0`5;K)NixO;z%LHw{9Rj|+{g+y>{ zxx=8Q85Y^pBg^Xe&}2x+%2rDJg;%9Sq|){o>h#J%Woq=db@%B{ii0Vnw!DF5H!sSm z!zu(=Al9Yc>wg`>I~w4rD6&w8{0^&mjC!2ndhrTBc@liXlGG9A4Q1TBcyQ+Of$EW! zZFxztLL2N7IZsFL`NuRZg#yKZQXC2cL*Kq-oV-3Debr|JW^vK@z(2}i?j!C^2c$>* zKYJiLE?O4pta5wm$VZECr9IRsj}!8~*8ul<`9WSP<_jVH6#_O)ly3@ZrWz6GlMLn~ z1>qAfR9fWACJs+}HW|UmQ&}@?!9KF);hBkm>FS#JNR|$It6oUQLRvF>jYM@h248}B z!U%aK0>*56?(D+aU*=iUjb5;N*f_A$e>5z|^JM15c5b1(cX(70ESJ?>0;tLJgzQcN z3&*-z5gCs*zqR)Ef>xrAF>hXJn4jP9&7uKizfyZiy_^vNK0DE=@PT%8P-+f9ERZ-{yo0POHYm&^f7g~Nl2i-4(?$C;z>WF)5(lp{xS z3OrMvT?xT!zq?w!Bd8Gqp9^CKcgoX`q^#@p$3N(_=11JeD zyjUdl>YCN>LZy5=F3I~oQTUS)Xk}z6Tm`_;?Ine{5O=250kLJ zgN_$m6K|{sTM3I)pZ z7R33oc=Vy6F*i@2qm`T6r{e{x2~N%A@MZ1~NGBZIx}BA0kL9!Q5#Giz@ORX@Irg{z zs3ArKY~>T%!(s{NUi3|Oif8%fKIOX7Zeh-0R`{&^sSZ&yZoQqfS6mU@JXDbzK%iDb zwV=M-L$NgLDa0PaBu_nzp@^uSQn5dPl(B|ewlK^nR~folDh2p2gg$M}GPjd+4d?+=R6 z{F+VbJ&AIvTdA$r>+^IGc4k9S@M=1ND#4B4KQSF5f*%gWJ=FJasF$0+w8b{GgeMuS z2Jz>emd24$Hzo7_fi`C2SxR(>g9#2vk{Z(^xGaiGz(XdJ0`e6ciKn%7ldYPR+C0^& zz55Wnu_42a*Gz|kt1_Z37%wq*$zs~fvEKKcEjM*FPs{FkF8KA79>69iBmBc}Se6t% zmWig9EhR%Adh0FY2W~@LXdk5vv^vEaNs5<~Zbx+<8u^?{aDw|nX4apw_k4!rQ|jdv zgcS-2!)=Q)-xag1CGPI6I%qw5wqqB2xNpnxyDst{y)RMpR5$oLn_VC8R!+#YhTp zL%SeS%FJVIUFX!K!Vmp81g6(o&m7aU5}Dp@dunh^{4cwxnI=47|0sNV<>m6jbhTB1d_?ijXW)N5Ga7`aL$$EN`@3IE6>6l0 zDrzHqDS@hQRZ9}Fa+n=%bImqf5Jdg6ye@7fKuQ_a6u&%m{mpjvc1hiu#ESKP8Gc!v zS*U1SH{|IKT=n^rqx7sdf#j(@lg)~=x&C45`+cOE%b7BXbq}5H7|F>2+S<_F+uQC} zhcSP)0QCU#eynL9bRmWnme5Lw6^=puZ0NyFM+ct-mz;`x_(?f~TdULl`Wk1m6ElT1 z&|Q)cihQuf9G_l8_#e)+8brtCQMrDuimMltQ``z)_hvNQ(4w%^W2X8n+Z@IjnpaX?(Mamz|yF9QXK(siPV${p|OFr<4{xkR>!FCgHV|IB^oHE>_~mc+(@_d!XTrV!}k{Hv9K~ zR(~9G^~uMW4)8D#y4f2&<;J!N5B@RNZ3C;xOU&=wsq``Hm@Gj^_1FZOjWu8Mus6xI z!CBRSG{_lIg!ZyJjqVCqpzQDVfY@sG8($8Dj~vk%sV)3slO)gdD1^qsv>E@|14tOF z?R3zki*-xhz8ro>Ez#ECA&qFe#NDi&cOZ7XOW7=6{}uf=tSDOY?)ps#{%0)%lqy23 zMGDQBF`sdTu$X>p2EX&g*=4<^{3+)5Q4$L?XkH;WXz7d=;k75nV=>T}b+KEaCF((w zulq#hgs&#GD5hkkC}Wr`DE6_U-60=CMz4_TBf``sTXMOfc21^dwY!a&+ui#qx4pDG z?av5o{fR0&9vO#0i0=S}0cUa4&Qa=;IjS$iSf0ymdNb6{DDro`n*6lyXKE=l(<)xp zz4(v%^Tjd-!I(3ItS>P%*^w{W(G1iNY?A1c4CoWX=ON|46xt>Q8cFG8>>RDkmNQbRfC$~WzAlx+ljIWzim_)>Kx%$_x#u(4vlk zBcitGoGw9~F+Q~eW58oYhgq#&_il-`J5c5<>bLKg`L%XA-4enV2RCUR5)&XUvI+)` z(id5A!c)nAIEy>RIBu~Kvo64qTg~G_6Xxr1@#=x6lgCiKI9ej@F_S3-TeqfHAG*1! zHN@`mZr0hn@549k|Da%{jfAv1_CrM(#;;rv=;COH=`@0;In~l>KOTC-+`ZA6B2cn4 z$m2umD(C_d{9*Sm1adu)WOI?^#~&<$Q8wZxJR8^{hig~nIwR|NlOYHsAG&rOK&8d4 zeOX3ov*11HqHRpd3=^aC99acgwB%~5g#+hWvytS%w5Iu!P4BWTE!&m5$?BYUjGus1 zf|t(7nnKeY#f`kAU0nFe7^oxw&eu2?A*2;H2dLxs-rZY1dA0fWWWegFXRX~zD(S)i zm5lzWgbzpMW_1guePjCZ^L3+y=zK|V2pe=5YOl0wjnH%x_l~UxoYJVDm-CtSRA@Cs zHDuMo9quZm5&b8^2kL*=w=b2Keb~HokWK88rY!YjHPA%E4{23)7&g)!&sPWGE-<4&9-5{{4OW zk^v{Xx7qo)fY8v}WrNku2fJf9Km0-In-g-!S6~C`dol9-oXWuxxOKUjpVLJM z=nLgLIZJ5Vw)uVht;Edfy>H#CfHBC$N5g*nL}E+>?Ou;qu^zNr?g|bR~ECr9KH%!vCp}SuHlv)WVSU) zub`2YY>g#;n;c9$Q;Lf65fGl4>^kEm`TEl1Wg3|O(2ZiLrZg99b@|*I* zm5W_GH!6%;#6+%?V%KQ5ciFv4{z<=pJl$I3lnjDxGyYX#L#J#7YeL={s{m0?yQhy5 zLN__v|5QCS?%qHM>otral*b@ku4S!yLT|X@ppBWoqDwM3M5oWhQ_pq}yS~gCzK3kl ztoQcO;L<6Pg>nCd36bRWE-f6f%9;FtCYv]Hlvb=6yY$IsIYv8+m-KTyQ2hz=T%L8=Q20X&4S=Y}Y zQoiO5j|UnqJ73nw3i=sE2%{)t8Vfl9k`4O{w%lAsa0@h<#*)Go?6I%+(4OBAQuO;{ z$R6w7U%2Ro$F0Rga2V|og$e{=d$t^EwXxHkBBt+qGAuIsxvh@bN{Mhgqbp_{0M8Ka zJ%eYR&~cMSJ#eUdjKOH};|oTYLLZZV2eG&CpfSS^o+6dw3SJ&xSP0h*2C=>mOu^lA zQ8{;rzEO>=8#ME`+Br$SH7h^#a##1$jJ6RXu_WoKFd;56`BJpR~uHbyjDh~6? zB~4{s*;sjXPGl_bq%&A2KpaywS+Kr*MkP~8?rE>yZuw9!*{CTdK~$5$53VAIByhZ* zRz#0P1+2kBodF@&^|12|m#x%k#^u72U$qL|q1y@YmA(oieg!8cQ2CsU5(rB()SNOt zxBKJ(H75aQu#(ZBFzPjxUu0fokcs5H*Cm3Wsid!{rS2 z6(B~TA`)%%Hi)UPdr1yj+rCX<3i_((<2Q0W;4b3KRgtsBttT4%&nt5@hJ%3dSNKnCGIVa$ZtNPG%zq!q=FOaNJKA*?-} z!aM0*b0tv`C5wu70R9y;YdAu<$%qVd?UY3H#ToPH<{L3TO&~*%i#d7D&qkUA#=yid zfr6}{x12#r=05XlTm*&g05Yr<5+gjOxCqkxi4oC12V}TE6g&l7gVLUJi$Q--4g(p= zvz6y!JoE+C!+pxsAHd{cj&G096+S#bOJz#M_0@uC5L&CgEMw#Rt6`*nte2nHhQb1# z1C-Nqbi)3Kdk5TL+qiNYeK6u{C~Qp*hC)TCB+YYtvS3S~N5@Az1Sp31v(aChXrl?W z&a(3_2}LHHth(4fXoo5(f?CncPe?@H4agwpc$49;Pk{nsOvYMqC}7yrs(y!lnBhsq zQ;c6RcBOK`#)LW5CJ%v zwrMmj98`|+EA~t3Ei~x4Zn!iUI}TO5XeskAsYDVkdqoIbQm~UVm`Lgnr<7CjIt=Y5urZ0_%9GDK&+k8Pmlq%N}8i0 z^$8+_OD|j;2Q83O=lT}nYt=!y^-eiw=+*hxS}}o?3`T*q%ebM~g0BM2DOhqAWsu-< zA&2{1_>8E~WpZBbK&*gX;;FcY(SCvGMyJjYW_0>^bJT)Ef$b0`8z2EhFTkD~wwsF+ zM~dK0(uE%4m{E%LI@0}l5g>`$Xg0d)&p;q&VKYjcM$ceIU)wfG%>N!24%jgrfMaUv zxX*-8BWP!#THgXcrqYN%?^PQUG=;m@-_P%Y@q9U>xReM&GtPg5N`?S&kp+XuOGU|;+-1$=w4OSXQQ9$oO2gE4Iq`#0`ipcik8G4!CrUS-bh zgyD(tqa}@IbV9XW(}$+UR61u{;6FtrDVsZ0-2b}q2VRQl8)I}|UDKaOSP=&Pdnlpq zAb83Ecq-s@>Jx&es#$W0*cu{QJ=j-|vf~G!D~vD+6=vb*8lO=mKGZp=C}OCY=5i%qRgE*`RrVum|UejPp@AOt)~{JZt`C z0JZBtO?BYOtMKI>m4gT~1S5fSFFZdteUvCo8Or<(9b=&N>D*kfKPX2*lv*_(RQ>y7 z)Vu+7+%#HfPOtO=9Y?T3GWhk@*Hz3P5+lAR4bGpcQ+3L9jn{sO=F^kPahZX)A1V zc6*w<gqTtU-34H~|h4&&LhC9ewm&&;R%@$MQQdIhh1eD!b7EU)P5%2h_+%nIq z6x3Ota7--$g6Mhmg#x}diV0KQe1H46K}6Wu6>(mqF;0Ck`h4+;C#O-a1AwH})^CBm zg=QnjB6%C7Z2>rJPy}@OQI9vfVPh8D+45QECMJa5_sK$Bz z3+B3mapD}bgF}zI{zKY52ob>$XXmEWGsvwkW6_*q3X6TPWC0;0$-;SVBCAx9_fipo5cd!!vD*%Oa z&{S`#5nB>^hyn%)F$FU76cm~a5AmIb2B~t4^>ZH+e;kPG;-FdFBXS^f-$JKR2x>$@ z=g{FDn+W7F_D(2aUPp-2AP7pj>G3Vb$plv4>jm~DH6D2B#<&yQ9R@|4M6jIBy_{}4 z<4QPaX40cXwtwymP>mm;3=@!>9TmQt7xFJwhK%i$FkDGEoV#Hq@ld6>2v#6M{5y|C zm(20`_V*SdsJZbo#)*8^*8eI{Y3Vpw04_q1K6j;9?;IUqV=NfyfdC0GrZ<0TjGD30-}#g~6W40cj~52!II|ITv4XE91AI2qe+2*1 zo6JEgJEgxa;KhC&wIhxMttyQB{?Cd@Bpn#|DH`~;GuESzSaB_XCI+~L5ba?!a7Z2@ zu_I8S;{1N?FNPKWPK(lpPLgEQ3}V6LQ8T%?&pqz_PgAp--OzjvOG z-auVAcP6o^nNl$Dp2vAa#4_Tx4=Tc^OZQI^FmPD`*rxzqIPza9k!loI3Im(=ZJ4Je zK5!`s{88xT4g>R^+p=J`A^e$yYmj*Y4P2W?=%0vepRom`{*;Rbt_EB$fL>D<2m);B z4wSeAAeV8U@qY(SAbo&~&4giKbaTi&odB4_7E*F zfzE*Z2r@DP5jOXInS=NCLqVmz^i9r&xJ0h9h8c9%U%~i@{we+I zNFGUpMNT2S`2;F*e!(|=jA6k!Xu&&QEs#gnUrDQpx7dP>CM=Xl!3U$|GL`=QJKzpg z9_Y&TmnV-ix5Ku$wGjI;?n4NIg_DYd?)HEd;{s}h=<_ZVz}0MYIFP_2nAQG`aAytn zvNAD|g>FPQ_^-k@;w8appYIz>=M*R;5`$R5V@-5 z1(^{BhDAc!JGSBHNKu?hQe`MNzDHcpOD76s8kiE`ezpWyo`jt2LYXbW?}V3zh$t$- z@~*yTrJpjoUylIX_0t-};==hJ(MX|0TF*z^<F>uKxuBf`nQ~;kaXz$#+BVE(_ G-~R!JW97pD literal 0 HcmV?d00001 diff --git a/apps/CineMatch/public/llms.txt b/apps/CineMatch/public/llms.txt new file mode 100644 index 00000000..2a46124b --- /dev/null +++ b/apps/CineMatch/public/llms.txt @@ -0,0 +1,93 @@ +version: 0.1 +profile: ARW-1 + +site: + name: 'CineMatch' + description: 'Discover movies and TV shows through natural language prompts and personalized recommendations' + homepage: 'https://media-discovery.example.com' + contact: 'ai@media-discovery.example.com' + +# Main content areas +content: + - url: / + machine_view: /llms/home.llm.md + purpose: browse + priority: high + description: 'Homepage with trending and personalized content' + + - url: /search + machine_view: /llms/search.llm.md + purpose: search + priority: high + description: 'Natural language search for movies and TV shows' + + - url: /discover + machine_view: /llms/discover.llm.md + purpose: browse + priority: medium + description: 'Browse content by genre, year, and rating' + + - url: /movie/[id] + machine_view: /api/movie/[id]/llm + purpose: details + priority: medium + description: 'Movie details page' + + - url: /tv/[id] + machine_view: /api/tv/[id]/llm + purpose: details + priority: medium + description: 'TV show details page' + +# Available actions for AI agents +actions: + - id: semantic_search + name: 'Semantic Search' + endpoint: /api/search + method: POST + description: 'Search for movies and TV shows using natural language' + example_prompts: + - 'exciting sci-fi movies like Inception' + - 'heartwarming comedy for family movie night' + - 'dark thriller with plot twists' + - 'something to watch when I want to feel inspired' + + - id: get_recommendations + name: 'Get Recommendations' + endpoint: /api/recommendations + method: POST + description: 'Get personalized content recommendations based on preferences' + + - id: discover_content + name: 'Discover Content' + endpoint: /api/discover + method: GET + description: 'Browse trending and popular content' + +# Protocols supported +protocols: + - name: 'Media Discovery REST API' + type: rest + endpoint: /api + docs: /api/docs + +# Usage policies +policies: + training: + allowed: false + note: 'Content metadata from TMDB. Training not permitted.' + + inference: + allowed: true + restrictions: + - attribution_required + - non_commercial + + attribution: + required: true + format: link + template: 'Powered by CineMatch' + + rate_limits: + authenticated: '1000 requests per minute' + unauthenticated: '100 requests per minute' diff --git a/apps/CineMatch/public/llms/home.llm.md b/apps/CineMatch/public/llms/home.llm.md new file mode 100644 index 00000000..e3b13860 --- /dev/null +++ b/apps/CineMatch/public/llms/home.llm.md @@ -0,0 +1,74 @@ +# CineMatch - Home + + + +## Overview + +CineMatch helps you find movies and TV shows through natural language. Just describe what you're in the mood to watch, and we'll find the perfect match. + + + +## What You Can Do + +### Natural Language Search + +Describe what you want to watch in plain English: +- "exciting sci-fi adventure like Interstellar" +- "cozy romantic comedy for a rainy day" +- "dark psychological thriller with unexpected twists" +- "something inspiring about overcoming challenges" + +### Browse by Category + +- **Trending**: What's popular this week +- **Top Rated**: Highest rated movies and shows +- **Discover**: Filter by genre, year, and rating + +### Personalized Recommendations + +Based on your viewing history and preferences, we suggest content you'll love. + + + +## API Access for AI Agents + +### Semantic Search + +```http +POST /api/search +Content-Type: application/json + +{ + "query": "heartwarming animated movies for family", + "explain": true +} +``` + +### Get Recommendations + +```http +POST /api/recommendations +Content-Type: application/json + +{ + "basedOn": { + "contentId": 550, + "mediaType": "movie" + } +} +``` + +### Discover Content + +```http +GET /api/discover?category=trending&type=all +``` + + + +## Content Types + +- **Movies**: Feature films from all genres and eras +- **TV Shows**: Series with full season information + +All content metadata is sourced from The Movie Database (TMDB). diff --git a/apps/CineMatch/public/logo.png b/apps/CineMatch/public/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..eccd5c7bd4e79b3ed933785d6ffb8c72c98626d6 GIT binary patch literal 57065 zcmd2?19K)_)4pTdwl~Jcwr$(CZF}QnV{WpsZES4YcJAcM^Ztsjrlw}9r)sKCpFZ7v zuB%U!qPzqGEG{en06>tE6jcTQK&bw^p&`E|=h|UH-w$FFNo6?zz?%{P2n+=P-o8bF zCjfvO698~#2mo+r0svT!Iqgck-ya~2Wh6uaU;kYNU1cfX5-3+GIWeeHct|8@^g$h& zfNv3qgR{IU$V`z(*7u(PQldhto@*CCuSSYfHKNGRr_XNeY1ffXE(T}}Eu{xhs~b}fRfwlG0C*nhxN=>_(a z@k07W4a1WwRnye8xDq_LRYZNax2_YeV>pku@M&4;WVCu$wM(*}H(d5aeNpO7uD3rg zw;|0r{{EV>HD}FUo&5j(+9ecs^@uq6t*Va*ZcS}BkAz3zgvg{>H9-^q=7ROUOTPb6 zSlt-n#yLjj_gLH=F6)W>fBemm;7d8wQ!%Wia}Us-?dDtk81EcIbXz54#+=|s@z$#Q zJo*7Gi-z~}P$xW(vGhh_esHI}E8nvedH>S()4)$L!5e{j7!E+0ks?E4zU z-w%0BU)xZPfxzoAnq`~Qn5`eKAaX03&+}F6&wyrfmHlVb7PH3YX7L`U$Dhfy*OX)8 z$&E~THZDF!gzoieM?NlV&*^Q0TONP@HZIVb1svT7YR?L5qa4P!swGPCxfr(>p9z_W zDW^%&_2=1Jn03o$bYnuXxX6DiN5uPEBHwd?zxA`=vJ6<9t+-y)^sm;njo#hrV*~El zFQpn^OPVK!ZyXbodi$rssO z+O#m8_{_QQ**%{@Oi0du1Gqr2PvF0`oYT2B%Pmg9X0NFCry(GhILhJiZ9Lmp-u#gk3k3< z1X?so9rPUCT;@7WIZ;(rb@Xz(|M|#!^~)t|b#hCvxw(0GhX36*oqS+Jec`IzwAO8m z(B8(GI>WVOWL3KKRYWh7jLxfU*}1*f8p|$hG98`}1$D-dgnW>xpJ@whON2KFf|x~e zrI!mz0n|wFd&QaeCPkp`NEYfVy~5gpAJA$Zd)2OMpD`LV0L-VY%vs+>EF0U~$M=Vv zmLS#+QslFfpPt6Bj<)B139QTy4bbIYeX3i< zQmFk+rRYqBWh^G#G!0bWE4RySMw1x!4p!=g4iO?IWdcMBr-@iY0!VPc1aI_rmHGk& z0h!?a@L*xlgNahT;zn#A7HTB8IoPZN>KNq@qtyja11`c)^Fi5Qe{Q{NHz&Eieb!^- zWV7me+Q+LdgO0Iu^yz4ep(Sq9LzR&KU)3D2tGKJoqT!W;%IAnY_Z*RH!Y^5K28Ryy zDeF(Uk%B42U=dS%Z;@dgNT+&WDu6UHsy>;z)m;LXn42LefdPgXS`&maaQ_@0QdJNj z+0R4s_EQ;h$RH9L9IQ%^*1A27Z{f%lDNsXy1|s)=9*B6cvY&8FXZ|mb=)F1p$WWt! zOiv1t9+hSm;>;Npoc>j14b6$ zD*3>+^yqN{txoynP>G;f}_w6lww&gHR?H!ExP>7J-bw^2!A$Sj_p8hcVs zxx8c%Xq0@9Z$w}`#vz&)T^A7xNA^pCU<2x%sRA3qJ*7pOEg}m= zkxMgyYQ#uqFY5dXmwpPox0ZKN3ceNIUGjt9(|D0kIlH!o3+!(*VB%Y!P#3RBXDr`j z*1F!v=;@p*dKk@@y%P90woa!v&p&tB{AAA5h2ET@+>ltQHwl}e2@*?1o@baF%qvWL z6p|7|OTN??NzF|O1_^Q|6iO)#i^(Sj9WC4oj+DE0o7u)rM7p@s!sd_J_iNTIYhE=N zO;ybklDvBa94Qh!l>CYjFSxf?h@@JvNm0#ISZn40sW#(1{g#_$$l`nP1(09NQsqge zOE8w*pZcnokMaDrz8bs+ZhicGiOA6QdNW*Z+-9-3ALuG>vS4sv^hmsvqH|?!vYIHN zycHcrTcL|((F{~g3EcOD6~Hh&3_NsnLrKP~e&2wW!$)#coU0mC8ZoMNSIk(D#Lk zB_oAscNs5s3jj(5prSc6fit@nT^MT^pfn(bq*xoWj^f;>d&d>eCj((d@ z9Vglm_IO?vLGvZ!PIWh@v|fQt75j% zy2C`1U@7P=o-BIz&d1R6zav4{uAQ6PVh-e-`$UtE*^*2qR{P0?R`uG1Lt7SOV~Sr) zo6WVIPDgUKYhl=vGpxQeuN&G3P0Z1c1(rQqJrEhbf6kD@XsP5y+~7+$tb_3I=Fx#p zj)a5Yl;Of2#oF2-KZzX&gLAwCjoC!uAq_kGNyVk6MWXh$$;8D-AXH(L)PU{xgq5Hy z@aEycJ5olnu#ccM_>vIe1Gk(>JNWFPE>ez#C>bmOh%z{2Njc8uOhj+$9NGoVOyn$~ z+`!Dj!J9P4sx-!_*R7!WS8+tc8}FRw{}LYFaC{BHUzf5YZIhBP^w(%Qpt1azaOLS| zUB*+Pd|LHG`QH|cJD}cy&rw@;Gr1gU3b}e5I|OQ#ZFQz%!*kH(0Bj;GHfCl0N3GzQ zNaF#{EREbBqQJgl6zbBW;mx4qKOCJ!Z|v&55{BGz^t`^rx<0Tgh+sECX{K>7KpWCq zRzkr@PgMw8_+o}*Do9&+Rg5rCPew_apmfkOLU9;rNPP%U7{nh9$g&^W>L4^CQi8a- z_Oa#tN}>BV#eJ`pMe)m>;ALfi6*P+e%{(iDOT*tG{|$_YG<($hp~IzZ;<-4dw$Y%$ zXMOZ)B55PT+viKz#@?a!R9Gf?Xp*XHvVJO*i$1pAbQMNeR2f7ZG}0#3NYsSe95*MD zO_VXkmS)2@4?rDaJlH=T#0m}@Yeiga8aY+Ze5jnXLM2ShLafdNFNrP=Pzz^de=0`- zpaE<}08jwG9~8Xk<9$Y`Af})r(36VFZluU}0I28Fg#i(opR$|dfRYe02plj9F$z#r zaci!E^D`rGNzzgZXlby)-D}_6lmXn^(vuwb98SBfltx>1Z)*7dq*{Up z1FqzT;0FljtqNWI46*I1x;uCG?I71(g}Jx#dAD$QW@u&%bl7;RT97Ex+00tyVl2na zpDpvQ(Tr+5<-<5i1NHy_d0qpd#k&s1qkdhCamawDc^D=18azR-^V3kfb zbv9ZY$@w69wd71s33w50Qw3U9@sM63icvF-Ikta+l(8^)uFlutq1PAv~M8-1hx@*T-!2F)P<(rZR(@=_=L#}q!GOp)Uz zd>2q0Ijs$fc?g4ihnx&Et5SDetU6G?tcYu6iCRmqBz?R+(Vy5DH=@w|FYcWI)-xfb{nz{9t|oSW8G?D8kuE#8$~M@#ky%h^JwP2p}*#{>>+ z9%={U0Ng7JP(+NS{KFlx8l{*53=Kq+3WYqrBBMNbC#fDH3QhVi$`N@far6KU4 zxlR6&Oa&w^etwMEA3OpjHw7{FRH8=Vy+x0pl`I604gxIK+{^t?B@KZAIWQAmdywXn z!{Uio*RPBIuZp|~e>y=^AV;dLvj}5$5l``=8@tnCqh_a3HV+FFp=u2da3v|kluJa@AisG$ND&+775s_>ump2z_jDFq@v z37~xCH(PYlt$*gYqwPm2Id6G6zPhqLZUJY#6i|bsqP5jN8cxL7qDe=06MwF`=Hlsg ze`Mmc>5G>?;66pgJ^y`kIxT>iwyUZ$+h=r=&#|{rRvo4~v{|3X6dGCE&xTl_ntgMS zc~%vc$4f376Ps9-z{mKGOA71jd?O6JE~I(>+b*$$etR(4wRP*$q;rj;bOcR2IF?rS zDbGz8e(ydTd}~r`NR25=ec)q+bfp<>)yp`p>unP(1CyeK%3=W71#D%5AQZ8gGwnob zRgo|nW;syELa8Ac;~oh>0~p4?-VsD^2r1d0lf@5mDEP)TX#{?b+QmFLOLCbQ%q1(= z;z}*lrh#svVsZx*&>r~~y+X_lguf>X*%nvc&y;Bn7wK!7TbMUC?yhW!hGcXWPdX#? zQC0G);A`#I{E1#IUHk2@47}s`tVR-uo^5Pw82t|?uYISvH?y7Y`sC9Ik3h6|)cDYVQ6sfWkXHOkpoOe{2_>Kgnc6)$@?-#E>R!h>n&bka{Ap@p z|J*CFSg%3RX0l38u}Wdp(^)CuSc_Su*139kBC;)P$}D^JrIW)_mU=o)o-ErsD&14( zkY95jtw3q`AzK{_uGQc}_1n*=LG z-?wcef(oqxRrtH4iRU91I_saTfOU`e7xU>;q{8po4R_g^KJxiJcI+va)5&W)`vMH9 zvCWN>b=7$IRM@%!=%VGowMgFbXPCA`d`xr3wu^mf0NY~4JN!2A5r5)gBlKw;1Zr<> zwcKHik+?9GC`XREei`00E>u8-r0E}aAu@F-QJ+%iTz8=A4qlPz3x5OnZ3-Tw<%)Qa zEWx_)StN}s5N<(kGzH;bZIHKM+?$E49%oQ5)Mp7vdA*~uvCTh$fHl3hUs#)OJzQ=t z<4Yj;<%sy6{{&tSQlgjpU^XYaAEFr5kZSo~4zZqec};S@7MUxb`Am-mI_J(W7M-F7 znHSJB;YU?$xk>@+_r*hyf&(BnOZSko=wh-A&!vkZ&aKPO1b~d|r~0X!c_Kv}9i4r~ zy_n9s3s@7U`os4{=a{=LyY;p8(yQ*;=IzeL){mtH3LlmH%PF??>_|DgUx{H9WTHzt znJdX+MSVe@FeTm!lGO+pG%y4Y)owWYh2?^(pa)qonZ~PxZfAiWEm9QL%Lh44f-CB%7@1=MNcO!&&Jx#azteld+8bKcu$^6YF^A(q@`zclF; z_PQd#aVgN@8(`+hM|2%_PxM~|e(i5)+&_N&6ma@LtIM_>t~MPON1EfLV2j8hoKbk54;k~<-x2REo;~C&DDW(x8rZyuOFks!SDnRA zeM?^n{|+sAgPqgIYGRL&AjIqkat8Mb%DNFVxka>tstye=RYFi=&Tu%vjM>zkhQ=;G@N$UA&c;QxH7 z4|rZsnb~lgJVccJnic?#S$vHo_+3-IE7x}N>3y14&JC$1tI`GEt5GXbk343r#8X$G zkZnIcS8RhxrOoa(W?+?q>F)0v{GA$3>H)b}S!4EbOEiBiPw{B6%adGUVbGGVbajx? zfwOB&?`ZC5vGJy}Th|{;ev;N%lc_PXsi^T<#-49RQB@*}3e6*ZLakD)7h?b8M=6)H zE7BwaJ58fnQ{)mTs>sa^53UOh(4@l1r}U0u2exmTIL|6HMJ&WC_A5}ZrLmV}>Q^AW z)1e&1UsxHTLC2l-v5gg#&UdsYHT%;Sd!dHD|5i~`TfruUUR+5P6&u^}U4%oOAU5~J zK;P;U>02t8q_g#S`;GP3e=Sgj_1VIDpV57jBJlRG)YYAC{XQzO^^UN;^Xxa0Ju%%P zaDe%_qP%Fm9xX(XSRO!R3G9aMk z6#Vb#sg0eDjqk<57@H1$V^vLY28>&>%4)aS_?3;-yQ2NPUt8nz(FS+tf)010nibWf z7EfAZ?#pDU86*ROat3k59Q8f!W8QgmDzqS|NqHNyn#eXL2r_~Q>*xY%y_+|gV5(CX z=p?#I1982O=^h$eYMB^iQpVsH(roOoDD@6Dx*CDaR%|lTY>ISmHuA)MwIVDrmrznY zNT;B0;t!>$buh5O9bBHZu(*G<%c7uQx+eZoPTWzBIV_;|@x-Gs(6KCoaGfv6c24NV zCgHSwshGnp+74Dk-Wth`pI9A9D@eW%d_5m7`EUIczHv@v=c{D`K)9Zi8vk{gk}gI^ z=>U;mM3+j*rsKpC%n;i!Ni_EQP3vt-Ld+>cQ;bKKW~$kc9>3(7T;%KWXHCBAqqCn+ zD-DO*m;N2|bFO*$J?)uBGuiCXj+Lt_NQhDtN0z?v;4}YALN2jK^8%*(b2rLPmTu#m7up_ zj}T^)R^sV3sG|^NLI8NJKOTLzcU9y7rK3Snh|zYnl3AhXz)r)W^_t3)<~3vkc0^@T zR$UmuA<6Ox{7H_Po-JH&QYwAzmms9i^KB{lJntISpbo>gvHh>3Gc=;tojS{?2)dWo zcdM&Hvw3L*98bnSq$>8W+EfN;4Cks{?j}w5NV!Z4TH_r)m??0Wg0Gc6Zg?Eu<{MgC zdht8{l;cj)cJq2A72{n##0{PGearSC$M;uA-zxjcP@J)(79iN99P$Mtu>c4IGq? zNd)lr*`3KG?8VUlM%N-|93w-(3rz_5#Th_~BIC)|NcNlshKyv3uTxJNa=S8I>azjShpu34>3a ztRbK#G|X|~GO(CB7Ls?Cw?%^&DMkdzp*8dgws(( z_H1r}__YvHh4i^(Z+zJG=doY+!@1#;RpgjsXh$b(Dqr)au}4q)3|YjC)Lx^^MOH~j zs1(bc78oN?gPU1-_E7F((8GumxVyRWjUu!o_{>NMtkF!hN-$(QbSyRaxu1V>^Z<7; z);D=9)*{wVY9DM{<_qoVWbQZAtzy#9YGcE)LQ_#ujWIxDBtWq|Lm5CiK^6w3)zQ1k z3TD9&tq@Sa^7{BCov5yQjynM6!bx3Z0KsLDBSue*yz(dPT;B zq>Q;ukr`4npEN*zIfA$h0kk|-owAh%Mi**OgQE#(Yn$P8atT*&4+{xukV;xv8h~|( zAH#590c&Rx^xiqn?)5Q^b*M$-F*HDCeU_{dw#zPv9 zm^zh-aeP&l>5##3LptsTI>P0?)3-d8aI7!?op?6Onx;t2tR9!uFU^q_Z!0w=r+@>C zZwQ_*(GCJVGi-|PbpZ{Eqi_QwjoWeQP0sX8w*RH+Rm6!*4I2jHq)1m>kz*BW1CMM& z12RroD>H)r6T6ka*oZdb7@LckxER?$s1d$_7}HU;R|+N@%5@z_&4QQK-SJ>is!gdv zfIa;LYK0#tw(RmeHvfp>H|{PwF{`Jy?YJ zy=EfSoI12PRtZ5k8duOR&Zf-i3U{%VPWmhywuod9PXV`Du4GqL_A+WvNvesuueiTt zc7i5Q6na=^Weyu~&!6;+&2he{OakyHc*YL#W_dWVtEs60PHX6YY{DsHzO!q6PLwz_ zrI*Wzhfvm43j0aUo>wrs4T>U5E(D?~|AD--DUxmb&DWOH^}XFF%kOj&*s)tDTC^rG zvWpY0_#_y{46ENS9!kAZ7`pgtc_~NH;lQuuDRXoO#cFjqGrN^<!fIca$CiUO@j(I1Ktlz)ZKQk)O=D0HFtvI`!FapfqjaXSp;Hwltd zix_dnW^O~((;l40@@zx!@oPB55U2<*Ux@7G8*7w=P_*iS3DYx$CU-B`og zcK*!B^SZktI3{`;jrs;FSvkFW?9|k_&m`BL7Eq?{KOPoeYu}H6db#Tj)L0qy4g@QOw#Y znz1hMo;E-xn(%3O2?!+d68LCkakJfF4QZ85M=PKGkHCqEFefTF2K_|UZ_dWse&1fd zK+yA!NQdVsHfLHqjjk@5@8%fM?U^?gVOm*k*Mu>*VVJ+ZH#q%Vxb_I=g>G9zWz0W%rLW5gtO0@3>%s{=d(`t){YZ8=FEsHdEc>BKm0ks`vC9lqvUBJuBt)Td^=aOdD=t2k9iW#$z;a>-u)#Hmpz{Y0VG%P}TFp}pVTsTAt|_%;jv@qWhAOsJ(5ED#`U zYGJGl#R#e`HZRDBdYOs7~%z9-yY&Fn=SHu zhxtM*{2y;ehy;G0`OBcb26esO{k|`0jub(sk-otn{7|DlV}2!;tKu(iQ_7Bt{CzJm z5RkSt=3^;?Ze&o>||NKz`RskG#MZ-bhtEfB0;2^X(!G%WcX>wP?{`ozv7>#Th zYZ1&nTm5>~E5JTic^jLLs~QVd+%|oFX&{+Vs;p~;h}X}-W1r)>u&%bo z4CgazRXC)-tjjqBwZ{+% z{v$1NWQBs{3QASWWqh}HJc{l3n3!qe@IRONI@xNr0{kn>^FBLF2=IM89uXUIm|%PC zyoo0?s~Kcnh(KqMoCJ*m6(3lGg&5oTGmaUlM0%}B7H^}&%eSg>RShj>bQk z%4M?v{C6mqgrqp7oc0r+UAAk7uYbw?U<>eEAz*JiXM}I0khu4F+C1P;L?FW!)9(7H zA?K*4Hth%pO-Sz~8h(VJ0xMEUWs~d_G>OCGWV)>8cXvJmV5L*%{UzM(+pIPpLn#Kb zI$a_a@Gk4jU9r@s=KT4;U0$8_KP&uVR_+apUP*K)=wPTKl%=1sZ9107>CffDqpOuf z)J@*Sb+wivn~H11Nk!P%Bp{uCMNP$_uX-nqVjc3LGZ&XpgUFbZLiOKLS_F0?#nsWG z*dmm;3nMQ|EYMfdi5A-Y;HZUcvXIR|2q6zs>m6=0(XZGo0?h7;Rtna*A;@;nWpy&z z>(IcKi}|C!6W1hVVAQ#CLk+)vv?N^4slD`tJ=fOcwr2+(=dMu+c=`H0{;o0*EP7qJ zc#nbl^C5SyR+d`@VFRiL*%z`nP!3uy2%s&Y{%uoWIH>fa9Hxlma+`bk3Ii^7`xZ`SU~I>$t}e^La^V7EOWI zXu>(S*50n?&(1*)zO?o`{vBA9a%v-NBV6>XYcK8Wg*zW6or~>p>a*JqbwEz14$sT5 zw{q206?b&mx2FDoh;&V@4(Xh=IH;z{h|eU@w*4++hFiZB;9r%r#j448wBzH29$9dp-?#`o-vb%D@2CbshEGw3hvO z)9J9iU16y(QVey}3M_?4Avj%e4L~xtil65-Y5>n19B`M(c8?xxmKlg@88j}Mv*7H{ zQnex16=6Tq^9q}y7gr-HOW)X`@qG<=fB)LE_#*PSH2kKvAOU~AX{|gS3+LmzFc2d1 zZGV>$_xNwTBTMOhioWq$VRkFUxyqsf*@!JjEqu{&KD!(OTr^@K zuxGAw=^+{=j0%tPr=tp_c%*RPo3RR$F8(c8Ao!9vYMvx|OBuEmPNY&QYGgROrlqf| zBLiFan>3{zo@|_LB(=~=A31n%NLpar9}Uac$W-daQcXk!ZxT(CV(TRF()&BCB{0WnHKI_%B}Kn>fREN6_N18cI)ARuq%bH8Zi<#gF*?wkM{ zn3mvoG37ve^`1}Y>eJ(5!0b`1LQ&07tcgEEBlemR$gFJXOA+TuL`qG#hb3+3x~gFM{H)WrM57U^flty3cn>4%dw-u-~Kz{>q>^xCEJr|9{*fMF`x(D~NyxJP>^iD)2tnC-`0v zsgJ!B-Fz-~xnI@1axyRJL}n>^?IUYxyZvzzG^=69i1$6lW&er~Aj#@~1Sdv-cVi61 z1>j;-lgsL&0QB)we@~}rW-1$nTK4=P^wnV4o~32Js_FjPGc#qpaDMu)9S#We>i{<$ zb8p!U`;kgzpz8(yyuCepF%`24_Kqh1Olgg1YK_S%abI!#x{*ETO-UzM6sig{OgA?^ z;4O9pE)J7UUw{wYYgDeUN@kY$;;9D#rEg-5`-K<{M&21X)>}CjeR`!=2`SSmBf@cA z>QW>Ctbg`+Hk+V>%Xs4Bo$=Xb&mi(vP-f_&r$5G&Tbv#(Gn5LcWpiGkg(J*HA9pIn z1Sg~r<&BN&Qbb5Lac9wB)7N4%QWNLamRRGd)?+D6jZ6RXXchOCWDIb+DGr zmyl+o?Zp{{D;aHs-W;J4Y81B=K30!mG|MCa4HUPzaXRk220oJYJWhW6wB1Djq<#&S z1?;^h1bm1nygI4Dr|@kD3|{%Q>M07x?|G4D4hD+u=q(z0J(7w&mPxG-yEQgZp#{uZ zibDWt;?W_ORn2TxjU^3VZODH%Ah$O|tlHK|I^XcoOy&Btt-Y0u^gR18X6QO6o7SY4 zOcP#B9{w&#v!C-X$fkO3>DrukYve2&+rnSv$E9*nmrM2*-UHDA(Utm*QMVYz4wC+xe?jZ3lFA!bl`P_`7)HyG70@W{V#8xK7xeC>L0C!D z3u+_9@XNcoZ0w4TgbQKdyrJaTAcCV?VaT!?aactM|I9`IO61UcloJJsV?F(iOB#VP zV+y?^*znK|s25xjLNoBLZO$Qx8{x%Gb8mGjX?6A{UoYeMcpB=q%_l0`AA~TVJjf^>HlR*yj1)5E7x>+CJtxji)? zc6U}RLYA27EKN6!O;dz9w5+(R$Y-GL)uI^h3$v$TU~@x}BF57gC;woM))*|;D-vxO z+>;?!Ey4ta*R;CSJ#SL1WS7|I^iZc>)Ku+Nt|>#tp^UELi(s5VFnB%Oy$`6mU#fez z@c3Q%o<&yn-G5B#H0jVb!{6#1x%HGp!R2hguiwlzUI-CH6UGc_S`^rYlqIwW(cjl5 zyT%AeYd027I_)^e#ES1yqJwF(@WxiTQ#LOVuEV7vHG%y71nM z@5V+nL})|=!&-E-D;c&bwHw*Y7{<#txGniMW$5zTo)g?X!b>`5(fVM`U`u)|9YEd)*97UVb9O(shJ= zML}=9{1XR<6W)n{@STHXf509K5k9cr`!~bn8ffGTi=OsN;YISN1A&t`iAV%`G-jC6 zKBmw!o}1~?O+56y7i4*8IspvESt+RM%(_Y*(=G^SXymAf&~U${B6w3J53XM}lhK|=Ur~=>{%tXYR$T-dOM}x&9Co0m=jiMeJADdcVxE)ce&;cjOexqcr1OszC|Lu zjLnF{vA9X=H4hws#%LD7zJyU%F&dWV3zLuG*u3#$>Lxm+&#-tPj>Im% zTQm0^*pH|X`G_S`A>Sd&;m1K819~`45o?dev}EuxX|a?5{C9>`!Z=Wm`1k$qI}zCn z$2`6=7IaWJI^v3u9-tH^v*iRYwa}W3fP~kXppAOfn2hi+Nw|>TQk;SbphXQLW#nl1 zH{12^67Zhm^{V;SqWjr|=zXXKpUe3(t~czhLc#a*&O_jH^UK_}^_uU9sQ1%BzoMOz z23@=#Or;opM7{%m=Ap-ft8^_C0ul5GxkeKPF_gVPZX7-gj)oJR91)WPz6%{DL`)8p zF*H4+;HChc5koT=)>5?z1|<#>L(w?A0i<3~!bJ0B#RsSFT~iBkq+14|c;1`RV8tV5 zr$N}%G%a!1tlWprW@Js30SpImJdg@66AiV!yeqtb_)$_P^;$H@Y^S1Bnb zZ1S~HGE;Jsg5{b0qu?bglG1BNX#Qrw@QVmxjr|Rgp+hh2RQ`24%!%WWVcy7p2ZSTT z%^_0N!IBsn{*`oTP+h)KxnTG1+PLcA;9%r$^3AeKKelzKws{{B5nKyA4I}`q+xVR? z-K&(J0`lOWn)RTf$VsMd*a|5v>CcH$W>?OHlR_{mvlmiZ>t@Yjy3BB4xP?Jk3O7rg z5u;$HCTR&tg$PnOgVf+yG0E2&np>{zq}D%>X|}&MqR{fcdu)MIKZPl-kMrMN;}(gu zfMzaQdghm3O^XfNk_`DHoQ(uraq}l^#ht>aMfut>wDIAUbyZoGHt2;S+o-${$u-X8 zlfy=NqTmJ^$`r)O;_QvVoBSA=}t-6DG7aX+MJyhn6xE?9OW^`A0s!zoco9qq{zO3Oe;B zL|WwsMZ?USRs%9@A33Lv{XA$e**s$4X7PC+f(IVbU*BZ%L{PSM=jLz^ zMHo=dee;=i`vH7iag1XG?c+BW*oL1wW5@3qhVMkr($XlY7vH)=eg36;{YZ{o$1w?7LV_(*xJjX%fS5C zb_es#ZanXX5C7Zjw6xc@57sbLch_&9Wb&~BlncyS+$l3^FjN;01bQskFb7Is*|#1` zYj1JApduUZQ&=5S6zx{ zZthH#R%?B}*A{*dy^$hOoA8vP!plfLhy|B*K}KoyL^Q_ zf0j7+GW+G#f6~(ThQ_Ffgt&MDMwDb#s;bEyZww((>w5v_V^bc4f4pPkPTgjjYmE`U zuHtqIjOTBzKej*jzFq`H*>HDOdd0b= z|I*fb;lT3mFkBLuQejDZo!m8_Ez6%~6=#?ubTf7pNw zZnnLcTIx<6j5YX(HjQRl=N(5TruK{34+!=)^p@@x1tUuKsg_&)`{ zs{TgwxE{qhngBNhUa7Epo^OdhDDqP!*l_|pAtv6v_qnp)(3|AR&<5xddxMAiTiH(Z zQ-oLhehDst!)RiMgIZZu3HQS;ZSYM2pYmbUDi zI(++PnRL@;f7uDNcV15X1-sUNIGee{cVKycRPZ~46X`@mx?gve|31eh>RjA&GYvf2 zMPl3;{fX;}J&tU^lO?6)^Hbu$yTBOuR`tlV*}W)SVJK6ETV3IIZ3?_VHxOt>~DHZd5m{1 zmrUOo&$T-!w0O7YZ^boqTh^}7h?=@`=rV&!F&iRX@nPP5-o6?8Wxy< zZxN70Zz)Oc_Og@FR+5AwUvQK4>_1ayY1Yb5m0Jzhxb@hTyGuZo(<&bKV=E>TRN}DtUY6``w7hd@PO38Mm30gq3oO2OY+hUvNtOvG?WMnxwfLPOf$6 zJm+!WRS@0nk7R@>!%;?0%lyLY9RSHQs#=&_=Sx5y3j%+tc})zcehzp&!Ronb5pdJM zuJf>-;eCz$FKKS3#4s8J5&=tbpEFm$w%f{9TzcO^`FK1Z9S=Zg2NI=ucB}s=vr4i! z{_?EE@j4zbYPpc+L|87J1(AV)%^QdO(>JEFo0tYeUk2v`GX}Mo*@Co+AMjOi%>T%> zvq7J;fQLii^P!pkt2#Hc&0e_kWl^KMbFOMlCc?|?I_LaKYp*S>_UPVjUR!ePYB%Yr zTG769Dka*dZK5IFR7x8sSjAJOevG?1Ny(n{mpO#7w5h7GQz79r&cocf_?05Uy;7i@ z3410nZe=fjsR}>nGXG>Ltn7J(;3AnVo$TZ+O%Ap5ZPq(It(tQttq8j2DLX=MeXxt< zuOe)n9xhqezYd#*gNufdXCIN9r!I$SF<=7Sje2Uw6P3C|*ez<(^-Y^jI%RX0eHr}k z6wkQR%QnqA?(!o`@v9|R>RWB8gg`jHo&aW=_CbE~_P&&C@njQa_DHM%`WDA34I@^< zefgylcSRn83~69v3~|XqTrX?`_ykPlI2eQrqn5tC$Gt-nVtB3N-AV+}`?JE=K^H+L zc9p?#Jm2R_525PeJ%qFrCy*)WlG&txUO67<mv1H8eC-CJWEUT6j(# zln+Zn=S8?mpyrF41TqdjyWl1y8fbNF+ZvbMt*TTGz4TYfU50V%jB-*l1VbMJgM^BV z8q=4x<0-}8*%6C3L>17XL=&ya{-RY*;5%^zHAGlv7HY&;b5!by*0Wdg)7ohs{`&_S zLSWmZ*b7rdSh{fHDj^7#1Ga@sOI9wMlI(3(;V; za-+nqmP5R`b>Y~w>Y`*wtr}~)@j-5J+aK(ofcrW zB-W&or^Q$Zmmx#yx!VBN|E0%)KGx34%o-MyDx&Mucf?~rG zBXvKLa+WEang;VmFhSf3IC3#(o?yAPjmy2FPJwkTQ6RGE6&&TinzO{AxaDHybkktA#)d3X_l~unRR|wU_ zdaBGfto3M+@IC9k0~?N_-d#_p7nCK6mt{ij>OF=@cf(6~ULdtV-z zinB%K=9Q^bbT`jAs<+a`3R}nAL4W=I+#DFF=v_fpQVoL|C^F$LkXEvV|0j>>4b|}e zRjrM`%j~v&Kb!FRfY&d?cOUEX5OvA;S`XBrc*jCq6G@nwpIhgiLvZe;y|uc^+G3QX z#z2V>f-{7?m(O)-pTf{E77U>c88&A%fd>~n1&=Z>U^bamNBbuBl9I$J|TGMLZ5N}?%8&hVm%JZ>dt>-{9QJG2S`}O8bn%!$t z5So~E5{QEdJ11A(& z<72Gq_a&>}UB*bY2CM-*q@Kna3YVc`5w|Yk*W?ULt<=O-sqnisolmao$UCvnPbu4#JPbT>PANV!GD|m&?ob8khpA@W!Be`r8@R6-)}yo;0pO}a zPA}i&P+7*!e<(^A+2`)HCo3ey)_1gnTU*p(GX#fC@6s?6I0T<+uu-NOB)apsk;OyU|+=X+(q3X6_C0(WFnAK zHSQxRBlWQY2E@G13FdOMLh*OCpcS->` zBUl?2Chp2;g#M+@rDA2UB9|Vy zB(FAB>kqo!QsngL6Hi#E-J806fhBF4BCqe;Zhf8fCYZ*xtr^o;$n`(p{C*2qRXBoJ z21y#7P%d__dhPhyjry7a{#D*?*fx<{EVF*P6-vlGM{%Qd`tD;j{ zP~@8u1OqVYnjr$AGKHomk3FFkHPDSWvGNu1m^e(p)YNVDHLGx{DZ7^MAUK2wM&tW6 zl5RmE!U;_Zv7wg;#3q2ss$dqtm9YY*5Hd)JV97+#Ng!j_s8j%v_ef1s6^6rpAQ%&c z*`%q$TSZ|iUm9QdHdTEt-8PT6H?=&wMT1jYetdr9i<1LaoE)^Oi=`wB)cW&)VrKBNw4fZJQYFOBK*Yhj&=Ako23?I;iTfsz==DMIK>Q1% ztQ)m8MC?j62>&Zb9Yvt#1z8_9Y7nK8n^JnH>Qd9w#Lf4E!^4QcF=_)01#AeUP1AP# zY6yif+Z6w2lt8g`U(W_ilN_WjRP!`wfwM}J8JI}E6c%_ERHUe4gymV(r0N{`Q3b!{ z;I|7d#{(3@EgfAQ*z)Y9!TQxv;$6Ca4yH zLGU!ej#LRIv5i(&ppQ5ps+9tQaqTuaXjs{(c}X18Utggzg2IX)rm`_iWOHD3t6*Fm z+3LdPc>UrCql-f~I@6c&l|IIU0lEIzlp9rxx2mOTWDD!I4{Vp$Mnzw^r;L-?lv8K)b5ezJc z8_cVMt1$M*(88W0?Kgc_;<7{M>FnMoo_ONZpSbrJ6h8ln&kxtu-u1f|pTGFCUG08D z>e6>x7#L+(i8p+_VIhnOOm}Oz>ZIrZ)T*E&k<$~3@Qc-o6%FC)}o+mBvE#eIdA-#+r1VV!dkO$yR%Z|m<~#)!jJ;S znb1+r0W4Q>ppn5IIn+yS>)knbJ7<0R;@aBUuYAq5jMmop*vXS=y2qROVUOUPx$x{( zx966!GAS+;H1w6EhSb6+fh9yxL26ic)D9ZQbIZYN&7Q8Yn3{zy09=zEaTGw~7@4pH zX&2877em~dKEmoJSB?1Qno`=;4h5iy(?**iq@JU2aiq3T;0g(QIP0ONf+Gh{1uAx+ zc7ib#7)W`wkI{uO$}3wkyfpBG7e~H)b{m7!o<>)_=*5Cv-y~Ie>cO&j=E<2O`dZj6 zIj4~;L=smBskk7eb=~*fYV>p?tH)tay#ip;r?Ob|Mk}^#amrnHJeBCJg;0g z8D)#5(!SP}jXmAgp_O*u9&EYJo;mK$cNg39ovM9*tIY0i`6&5+a>z z)<^;#%u{Jx-7ycKsl`n*%j5qv@_Q(%JzBQ0**KQ0qQ# zPpO_tbUtyw1sG!Lo;Cocib87&&k9WlrFAH*FUO|1SW$6xETfGv#+ODkK7F;=x-iz_ z;sC|DA@qVvt1aI$o15k4sOnVZXldkQxqgNX-2=NN=Opu)8~3+1CDn0hUDqZW#IWj1 zrREgX$^`Y(uGUW4)w|UIpi|=dO=IQcl^vg{t&W&>HyZE!Y>dE~i6XLNlg-RHGj+`g zO_j7cC<1D9N>kmKArmw~dRQ}5#TYCtyRUWVFQh5IO#MlL@5+VAR>l#j9n=*MM)W%NOIJpvv!Zy5;oW3gmFSL3BgG~ zhe!h`RrjC;Nm~b&5tya4l!Q!C6X_U8ee*UnR>)*(BOU`L?4&L{R?UKuJ z%07IEYUMw^l})^=@l@w`dqKki=9(Vp{XUj{=t0* z+ntqsJ3q42TD-r7?!m6<9n7@7Kc#%ZYLXjoOd=VwK@KBkA}Z!%+T;l}8v+uvtbH69 z5%jErN~l55c#6ZOgDFoZy)gr>F~&(lc9@XF0f&ogWMb6BHgJ~2`N*S^fD;L!R^uX` zjQeVs>8ueC3XyG?2NxOCP^gM}6))ndG2E!1`|*H^jZ#L>52ZLcs0Qb@tMTb=^k3;y zaoTjY*Iz!m(Vvy*|6tlJIj6n2BuWgDr;mvtV5z`tK;A-p4=v4ryt7n_ z{jO5E9R05U~#QL~&*8#uo?4_~lFP%9)`p&Q>x$<&3*9o*(z$ z0He}pc9-myoYOP-7Wr@e)`sKJrWy~G(4KI!;N@;;G)=U=>kjf;-~OxOU&_~j>bJ7b zJNQ*G?O-)XK%mNk$YPoN3JI-RBzs5wJ-<_8y9Dc=M7t|(v^zO^y%e3Lo>^GT(CQd9 zz1*km%;%hIic}M%Y5^A|a!ss?v4fI>vI!GJDu6^_De4AM7@s9O(k~y?5NrJ*#9v=YH~(TE(atV2{faZnl??qk%&(JxRKDq1`0 zND>GWON>CtL#RT90;QIyxDf7ee}rPAFQW?s8NM=-;%vVtUK#7?^icXIuV&kqJp4ec zjFLf80JjEG&+Lze-MVw)YBZw$W=SKTp=~nI4IgE%<{)mIZpn4GH7(_FGk#O8C*P3x z>TT3pr(LgKBkwZd>FlUN?v_&3@PCfN+&fl;W>OB(R2VA+!1;jD1ln=zP^V^}s1^}I zDD8U{xVjfvTwpj;0FDV^I}?c+2NOp?0e~`x@!=M5Q7)EwdXg`qh#H!H!jRNWj?dRl z2on0@DC#v)0Mo1bbyZaCP^J}J;^3@E$<^kNN9&u~A8eyP81V2bTjl!ijZJx`r16r^FUt+lRRpTqTsN^yC!LMJ$$8^>s$oz(RWDcI4 z2zzl{sb?>qq;%xBg=EwFYO^rovsZQVbe{)j$5nM^K;u`&I=r$?(nq%_ui9dJ+bk9j zt`FpA!Z@uNS7>IpWw-2{4ph}(U9Y@yaIWZ+(Vj0n*jyi^)?M5g+V!4E(d=6C zf;3}z8bRTp9H!F{TZmeCH2@f#FjO79)I6+!x&>G%z|jFel7@ptQ^I@}`GkH^V?;Gw zAcS-A7#v9AfXKS5AB-^=$^tPeYT>Fxs*+1z(6Act@bs96&kbmJu`gRE`+o41kqplc zG2Ze-+m?&|csw4zS{n8TN7`&=Z#27Q=k&-UkGS7CF}zyP_E4yb<@MbZ0L0&45A0HK zJw?swK?t`p?d48w_Yi;}-C9G++%TAf+N8v}VFy4;5Hycuo{GHe-KV7v8?=>(! zE*}X9K6J`c9518*YXTq(>IOkV4fTjB0Du=L>ItyEIRFi#U6G~TCTa>!D-b^=jBEvw z2a$`7s{)9FSO-rPoGI0(GH}+7$6Sm{c7uY-VM*n%6t_{>@x@E!sh2ArpRY`H#%kJ3)wjDxqKTSNtgl06M*@)@Sj_SAmmlw z``V_pTx&NP0y_O&fruECB!wNqWXaeIPtuI2j&x0+={*a$4nvSILwyk24^k}#jbsQ3 zs!&(WP@s~b%Z$|*lY-ZQ9+jCARHizh+5h@E9Ng!s&-|u`t=I**$ zZLi{#bRyjpUYHC7nPiNbutD&Wng6o*(SsxE>c#BpvIM#Z!h!`X_ZWZV2Sp#8@$~aWEgtHY2E~TP!RPpfAKrWqic66>JcdmqcVI&BA5ZJ>PY+GX2c{AlYp>C(E)uF1F4n`2vtGrh3SM*ROJR zC$?Ke?MCmp9!|9zV88CRHOv(=6h-SP3hXmQka}te1BG%tSR)@O^qM*2!)Ib6as|Lk zg-R-vQh_tYm`6Iq=;{cASNb|QIo83sp%mvz**>vF>o2*oydYfm(Hab^PF2pF(9Hg@ z*ljtd?bdj^Ta>32)%co8Ds*k-?zTZ`y7SCpTE@3|O?HXm*FAZ4kVMyaK-`Fz-MFt;-a#FhmeCLijoUBawsswn1&eAKt{T~HKM_p_3@<_ z3Lbr>;PG>ghR+s6r!8*{hJIL?1>?HsyYA;_j%a3oNbRUJ{@0(YxV-Av z9ZV#PTt(WU@552Re%h2Gpc|vD>(}{qTT~6Ge>Um_QRk^vIpm0Y#eT6JvahkDp5njj zLFp3)(Y4=*_^}<$zFKP&g#VXV`2q=q7$6@=i#$CBO8}!nBqHpbl6N5Il%y)TT;Hax zvm*?z4yx@7L%;b#-}hf0V*7I64mK(`y4pQhUOE2vj*o9)p=LI-KXi6m&Itf09iG3k zdEv!DZ>P@GEbo?f&>y3B!l3Y!l*QCWnijDPN&4wy54X;&>%8_SZ6c}%hF}^yM;pGwcFBUSoxINxF>9~Bwo8kGfb(chj8}0qo z;P{irE6g0x%w~2|yKU!$?)fcWR4)}67dg2OP^UjUX^7Ry7;wRq%H?$K*Q8w6x1H6r z>zk2~PBui$8vK?(X0(#w%FKE!OP;HLw*49OiPQg$mZr&+lwHy>nfI8WZA1 znXzf_4QU=JyafHDdPpM0pMjsHNOB8;gJ*#!=S$MflFC8J#dd|_%Fu6KD0y&p$b(B` zKe#f|t&3x9Zx-w~N;l|lcP{t0xfng|)NwZ69`pEerPYswVd=~Df=8#X6j#1HOa?ENQeAXrd}*Y`WrzOAvoGL_ z5}6x&=SN9a=qPX7ahmeGe`Hnn3>FChTsE+!n8bKB-Z}CdM3GumPNf-h2OT))$TG7y zM{KQv*=OF%I7xyUxrlM8BPU)=Vl^3!*`*oTvd}_Z)#`Pm@RcNktXZ(3-R2}q6<2{# zlJEk6s#TI$^7Z?wPC?0FyZOvko@u(BD*$Az4b3}w^S8e1%f;e|Jh;A2I2{OnE2QOY0r&rB|37nQPyl zD{ui>E7R?ASymPYw0U`x!@h>&srUEN`Xz1kTDot0L>GE3t@m+paZ#T?@O*PjE6=W6 zbAc@`p5XQM2dTfmPXN$8-_=WxToM3y^SL)u{rQz=SM<^&muPw$k38~-KKbO63IJ8;qy;XK zl0c+{QxB&_A>uAn;?8*~uQ)Bw4(;~&iru!bFFom4tW<1;)QAE5C=%ekiua{f0*E+K zRTUyus>Cy?T4oNdz+{|_qh<`uMC3rl7yzWCO0299B~=lpAj1qX#OgJu#j%pAst6Hz zC<#%Jv{X@5B?5s-iNf?+B2q_66r{r`GzF3pu_{p`Unx))B4Sk`C3XaFKqRVQPvTVB z62vnAgqI;qq;a5bcwLEkQNQvT}I3*=fQYPhajsSp#RKgRn)+FX;pWwr> z0wCtF&qB;Bq##cauV6zEPYMwhBFAyIIiT<;jCgi6{>1 z4T*bjx&Q}v6L=y7Vi67P;mx>uRq~C8!s8Xp}e2#O>;c_MAj#kH9h zx)0B)q`^Akl4*T)Fd(WT4iIGqNtE=e9cs8f!bMFAR+6A4kEm~u2uBIRU^%b@kc@a z3H&kBXf;LJL{u@bY8rj-={1W4S5uQmr`IwF)ltyJ60O&xNws#(u}gMuyWR#(-UHTv zF*cmET5~X9^D7e04LoLO>gH83H@5-VoG)=hNGZRO`fcu?AVvM8$mZ-BXpr* zy^PY7x~X7V>2%r}wbZH1gmh=1Fx`l@d*6W=4CvH3BY|?b{t_RrO*Zf>aO^O$ib3Yl zZ*>mwIx^gW-LZ2rT&`C|j17n-_ggTPyT0&Dfl z>5EOG<1&~G@~n?5I1d23Zs;JgH{CPnVWLv!G*OkNzRyJ77IqA82m=x7ze6W$JK2s* zRYG^3*Dz?J{`J~p(^}$%rkV0_`#YlG$xT2z&hcdJCi_!|ZqnSG;Z>Tt!D=Oli9jF_ zPiw#n!nF_rRj3MhC;S!GChmKDS6tJHzWVen&2{&|F6YF%9ws}TQ$3`^#37?Rwe5O6 z>h;;}WhU!fKk#>~QG9Um?gxs}u5SoyK0Q-bn;=21`OZmahKT_Nhwv?)3!{;I9Xmxl zC&;XT#h_zI*zBfK-V}$pT|I=Ld7?I}O(AO3iErZm#Tzk>5}!Qb19?`bBA4b{NgAG8GpRYI>b(1|34d%_j;=kg z^;`Xvpv9D9Axt7WL7a0aac^n|BNOK{{T#Bj4|4{rL6T%MFe(&Od7wog<-Hpztvn zOngweX9?FnNqDd)USPzidV5Fonmcw*&ph>1@pT{jrV}NPkgyAt1cClW5h4=l!>{8s4;c#p$V9N9crj zKg-m^Hm>{BsI@@6jzct>dxpTQFpdCGL5@4JJ9bV0bR>f_B@L0Yhnle9b>3VDH?`o} z^hFv=IUw~rBCYB9X_E_L=kGhKdFC3L6oDpB^w{DOsZNa(3n$t`QH2|XOaq0I+GZ@d zk$P&$WWOYyoZ2a9oNp)bW@oOWLJHf9Cz+=9$HZd|#hG{k)HftWbh~jDbxJ0|Db!Ea zCVH71d-y$GTnLJp^~EfhIO2dP*F!LC(&{9xl6v=>X)L?WL5vhc{f^XaI@$_4=hNw~ z#$gJR$k6O?zHwm2)BshI+L=w(zjkB*;3$x3rwa~%!f?Ia;DAhY6!mEdkRriRJ#A+f zmN>Pj_58v~nrWKvQKFsKXmflq%3$7+)^QXa^aOxB3{MT@(h0t`gG#dtXQLh0zg#oR zk*Ct?+Nm&hMs#&RYNjIUI^LCd5622j7?Lraa@M-~@fu|X*w^J;GZ{DUCzx%;U*oh6 z0LFfJsZ2(NXO}5Ok3FTIL`qO)u!JgZjTtD*RO)bhRzGSQ}R9@e!77m0L;5Dl0*DvIE4 zT}Tj2X;anfP&<$2exjI$PymeM&8Rg#6T$QVm(U4s+kSWJxQWN1pS9~P6~DSTx_ zu$y8-e4q%&)C>T{8GTa=5FcW7x)atD@%(d)ot1q2JWYQknCp&DnflCB+ZM^L>vgiP z!FlS$8BRqqgc=KrDdSX-+?<=Zzig%-_FyF$|NivzPx=oJYS|bgE7+*{8O0%hHj0TgDNYf{RbuyA^Dms7? z5@f+iP63ypis3@!B7vm^4iSgvIBGlIAx1Q4HUSY>=H^M(Twv2NI$sNjs}hta!!qMu zhbVOFSg%nTjlUb^rW!L*Rfw31##BUgQnAsxzU~{`t4=v4vBu_xkf|qjtZD@d(`$lMjZB=3>W;`F>;uPZgyXoa zn38L(-c3b%lcZB3>_C&(bSEVQQ8K5Q^b;$()5lPcPZRiS&{S$J{s|y1(Q(!e!-B6# zFT?lp)LQSH>lk@7&2f=Xv z$OP~Vcq0Vd*=&s0v!+Dwp2J0w6#niO&;9N9}6b}Q?eS-mj2$3rjb)0x|Vb}WqH!f|M39dU&8mM2jWIjD(G zTLDNcm;!rVYgw9x<`FJ5suv3N#Xfm5Q}e`h5yYP=a71!VhD))Q@TCy^iVWa?MXVRHM|7F zw%N8)pynt-70<+LlE^e9XI6p2G-f$R=@Ekhy|a`Kc#Y0!yR&h5ORk)~ zkK`@J2Of_}4aT0p#=^h>DsYs*Gr+N$2bqjgQq;pEC)JULC$l5`iYJ7r_HuC&Z48fT zx-J%^TWY{@BCS%N_(=p4!Yys85ERpdrm|FH4B`Vu6Qc|z4h(k)jMyO20&Vi~L=94> zNUVjzq0|a00x}j>lYj@sQBL&*)TD8kL|n}Z=;YXH{H(dSg#+g$a`9^(3=v}_B}zL6 z5&{eZ6(cQjBwAy0CiEu8$_`?0;sgM$iyISsEv%gnvcoDt;USir34rJD-6}CsQyNOIDqJoJjqBAL=222VSMIr%1PgIaxU8AOL&a$1E>sVLIJOofB~V9B%~MO8CgI>fZoK_TDzmH75UW;`YSQ)a zt2#2{h{2d0VYfC|P>3`<6igB~9dx9^lLE~XxlWa8I7MheX`Tc%5-vs}R4nkQ;7k}! z;EjUW!TJR7fKZU_t<#>#V9&`DR^c0-$?m_ijXWs^EC?o2mQ74Syi}l^!G=(H2PqV( zw!-l`1tn+(d6!k5Sv5EMEFm{8T}s1Fs;3LZqYE|(&e1f&c@3~xP(q=J$|J27y+ zM2O%NiBw^dvP2Bd(lycB^uKo{kf`yTokp=pF^Ld&6oKLz1zatVMK#`;B~@@F5Ej71 zsfgGTfwv6H;g_wUBA(7eqvfzXzBT<}mWZ@rg={v9QloB5(+Xq3QBDH75e`Ag8YR zYfU2#6xv0uNiS~IuIbaG-TQHa0S8lQ){O=vkP@sU;R(r+uLBo_^g@*2yB3=mV%w~b zd^#R$;+Pa{s~n^ZYsfQcLk|vthlIwK@KXU*qXbdUp$|&JolZi^M1WHmQ6eRVp#+SC zSc7DFsR7b`i7KL$wSmZND1npN?=j1 z>Pgi>8Ct3kDJW5^R>?3asU>x$R8Npg!mt(4vq`7tlNLEe>H@h{wXP^n#4|`4TKBV1 zJrP>2SuClq8JeVpb@Uzx6(05)9{#9B z=*)GucP&+*POYx%9-38n^{Fp0ifWjyJMBi}pKd;&fnkuueRE+FOC-qqh z>(77jvY!8yu?()-swBXJd@Hm`ml7U@#(*IvHX4Vgcc_*rN$3hy6%%lL7cvQDA`w+m zEt3jFo*8T`8%j9zEw_^l*&v{5UYr17!P7g z6bLFXBy5a{R30%J2LHjEPz|y|>fuGb^H3)x05#-G=R@PH2P`2m1V#}*2kSHROsh&4 z4x9N8f_lf`3GfLLwh>Q>*dAySRVqPD?PRaBF7amrU+Lrl*JznF06u|<10_bnePJ@f zAaS^oj5fY9e&y*+GyL@-msdTcv}DzkfO0~_Oeo8kd3)55lwo2>Y)U3#=Fp=JB4K7C zW}?^-&Lm3Aapc2cHHvbaWG* zh^fn&AswJdX`l&MT7TbdFRF5&9)O@)1Rp~L7($hl7-Uy*HhJY&UeS|(|IFyhZ;p7o zyk^yRt^Ug5V8?-9TJPL&r&_%W*Zgg?J)&Z9g#aL1?`SVg`OtXoL7OB8md&ztu7J7< zl^MfY3lu3BN%Q&JUWeG*=i+LzFc>yED24Jwa~;ZHHV~^QlQGs?SI<44KL5$f*_o$D z7wz`q;$r;bF9877*B@-wqQ9@-{CnT_h=BXA*_8`%J!%P+6Z0n&0D1>{x_xe&0N}x? zZ2~~QZ|QA`dt{Goy-#h;@~$9EfYkEO)HoDY3QlY4A=gam;V`#QRGO-0v#v4vVx1Ob z1VjkdS{P+i;-Lvpwt>re>7M6}|L}X+)qi}MuKt(tc)mKZctRg-R_D?9|E=bg+IFnl zlr+qa<37-*<~7;*-g|1)Dk0AMpab-uBDpOraQ6?on$-r z1`x-SPm2HeUp+TM|4hYWNhswy%oCZYeovDysj1#wKiZjgOgpCQzRG)VY&9*6o1VA2 zoO}zp%MDFQP-zt+rzqtDHqcZsOb5E2Up{l1zWT2=>8ro-^p79!zovD*LwoFpAItK& zKmH91yys8ZBI~-bhc%2ON$LdzOAO0pIts0MI#a87om5ZZ!i7i-(ll0=VkAZ`GPXl0 zm6!p;sIn59yfr+ZU;6hi$SeQ$bN~D2u3Ufbzl6JOU)r_J@B6+d_AFNIZ|df)w`I!6 z48z*MR`WLEKSY3^JOD%0D%1j*{54VM%}gWzs_C&b1Yra6A*3279vf+;r<1McU!qH& zJw5cldi?ko8V2fQ@4s}D6}mg?_Wj@gf#nAl4!nCo@;{wdY0s7(-aCLoHBXgxQKoNr z(06>3y*B3rU~9C#RV0HidsFsiLW`aySNoKXQ-~S>COo2 z)z{_vv*#L46W80-CU3qG4iz>q`KPdla0w<2I#meOn{iUfm2~~`X>U00# z-Z-X5pLinKzux)KesknUmi)fAr^B3d1P~jrOCjRHbt$Y~o9odu;`(1_bpfgZ(5e=! zHZtl3Fcmz7*?a)QstxHJdGvWWJY~=Q@{4-rfB)Q%f9}G)SQ`NJogez(14qjIqldWn zJqx8hV2TQ;LaJLq;EBQ3T=Nj+NQntJRBS(qRm!F?5}$iJi)1?&(KF!Kq9Q@20!b9x zdErj+#@QF?!Y95mxAk+!KY4Fv5`OdtKd|?KVdsb5mMnbl{$cv2)OjMU8Sey71T{8f zAXFdjwLwMv%~b4ev1xXvy=Lb$>TVa~s{cYo<0~o2Qn<-O#RD8;Cq+|c4ds7(+i6sA zD9vxT6g7!VBBg7$HR-y)Q95(;eH5^XQYgv*6UwyIt$ge1MSJ02UZAu8{B!@{r!KzM z^}SO&xH)*|{q48^jpgC;+tV^d>T|FSTrN@zLp*6=xyfPHM8e(cLJ%mIf#)K57^S`o z8x94L04_UH4D6`7l3e)@C;9B({zpIdkAC}JtfJ>*tH4ztM?28BqZ-!$lT!5*rIW5ZVG7nU3qw^CKay8RZS2M*AiQ&rPMImKh13 zja#i5&ot?4+MO;=JEXeO(0G5Hyl>h;)!PY9PavoQh^ZO872UR*qw{?7*Ulv`{0le# z$_d<7(0})A^@mow2Zl$#W3TLa^StXJaRkv4K9=t5u6T}kO0#ZL>oa}KlQpaV9#c9R z$9}3-q)%wT_#*yb)PfAdv0#*zayh&D{PX3@pZUtd3;*d}tP21fTRUbSKH2%kM|y|f zbANwf?_A$U3f|7|u+FgN;)Qt78Et2rSED;_M zDHxR%43kQ(q@znOn9E=IDqa5B69>=Vvxi!*SL}Plt$gs!m_N`N5>mB6pUo@SMe?N~ zRFOq*V;avKl|ED>$geQQ?1;{9*Y5n2(cXLDfcF?*_NLmZwO<-%vFk+D^!aIr^4jb* zU`9gM0C?Anl&*(?h0hQy5~veYs4z|je%+q`t@Co?pP#j7{`2uCkC(5$7kA%QS65s6 z%0qwbC?EXR`El2_TnZ}zjAew`d!EC8H%gCh7BNmoS+R{30dwnqfg&iKf`M`dh3Pz4}Tr+`}PN_g-4cL$9A=a3^|As2qzFW zPznmJMk%E1b#-lu8t`h88l-@&Z%hehpT;Uv5-q zzj7y%ws*rm_ObW(9&!7>^?`BsPb_a4ZWji|6Jnd)j>BffP4D3;AE1V-J9B_Tjj#N}OM2?xe&KI_YVcau^-k=uAO7&%()@ux_mI5hi9^-l zx6hRwYCD5W6^RDLLhC|X5#IpLWW_DYWhB2}8nz(KX2#`!wvIwXcD71p33IiGxFVodueV)(%*jIG>H=cUxnen|? zobUU-_wW0<;mYbaj2C|JP(NRu8(O3l!#co9)c=n`MdE?PPsHkO^Z*aPLtS+bcuuv6 z4#u9!VUuPx4Emis2#vZ*yQu-UYLhe!Xl4mt2f)6T7d2sv-!xjd0q#V*ey{%R!Z9)_! zMXvp>nmQoP$APYq=cN*;RN_%`1?h;sTwOTvZ2$Zx&Ua5g^SPh6H;!p_^}Y8!;Cml_ zi=Y4gL&NN$-jJznLPM7TK}fRc)L7OD&;1+MAi-*G>JY;rFc;?YWL)uEJ{WTvrs zwU)9Eno4ya+s!=fjUtvh4U}E4U%#@}yuPdVpzfgFjSbuiI6uwh5D}E@P~;brHLA zmM~5P7wqQnEB^eyeKFbi4?lH}BBsY4dn~&T>9@Rtm%jJ#Ab)6Xph-(@eWDxb6hXLV z2m&kNc*HQAM$x}%p3^l2t2>eqf9+{quyNCOyHjr`fPvFuRfs8DXr$cv^}E66-M?S& z->+(oW4rcHr?tCxzka>fruVDjG5W15#Tk0x-=5MF|LFMfPi)1|WVyoDtuwE!{HhT1wuCN;sMw1sSD zTc=LAQ$P6%Z~pS}W6pTz1i3XL@ zAdwRyojN))0vMs_!~$2ZPVbsEi9cBZLmaEr5p#kDZW95+M8>~go&C2b(!r;H>Zd+` z&r;o^Ilt+xH2;C4W&YOrktRJ!&@u_sPiPZ9mIOkZyTC;~Gk=pHxY5~v4cPKsiJXiv zS~Gzgb(*N@Vy?6Qf#y_`BX4du>TP>9XLTzrDATgJH~V{2#hN0}Rc1Usix+?9G!K6*U%su*v+I2BjM(fD4chrbw@4f za@`XU(nSx27}>5-5vdr z``qH&7OI@`BD4lo7NN&Y95P{853pBw2F41wAQ=TEg$e!HLHQxlC4?rJ({5@@LW`07J%mG1XHB<*irDv-8?k+F>m z0~9ow455t2YBV@)wWfh>LPPLQhWJi-sXJ$g-=)YYw5I~KR9W2!I~~PGfV;WVZ$HAn zeJ&EFLb)4%pHAr_*CD)#GxsJ@lt4&PnF`}7k=u~pZ@ecaZGD#;0M?Dz4d50_g9YU@_Uv>ZDacYs_=KO zLA=gLRB>p;_lM{e!+#F7zINU2(oEhW1F{C1F-B>n=j_IRda*kH zz}&$z%}d&88YMD9svmecJEot+y{XeY?=(nEkc94cF<=e-VXTY_6`Xg-j0IbU>KHyB zW6NG0ob)gJ>UL}UcfRzAr>eWLhIe8Q&waxqkGQvg|K4=}TeCq9<3eAXD?BXQpjsGN zfAwI{AkV7xV;|F+)f3}Jj~$Q@{l+Rsh#tdvbn0OY!T1!FtKi#$q9=HTE}#A#dH$Dv z{HN|63H8}$-+SO2ar6TZR0qCozx3Lj5Guh(DHh{3Xgq01d%aPx5qKq7qFPM{20=Yj z8rc^GqW-&s1}!y;gCrpFv*EU?lws2rd^N^chVY5tVzRaQ+kEnw6K?aXPd)i#_XLA` z&qv?We)FjP-@V&D@ctwH)`7Mr$YCJLC`mzyfrE>f6JULmdzML~I1#~1tuMZ-mvE{O zW&qra0S7xQbaFyLH~;`$ut`KgRMIyx{h_C-1{a%2Y}4mLr^Mf`wHu{#*SzNj*if+D z=YHq!rY_Lc5k`DcFa_WeB50*85F82`!L=(4vd!WgPX6Z${`4;mkGy=ZumXJB>gv+r z@dMwt;`V=YYuriLN9}V2XD<>52sBM`x+CST@xXe`b`DRhmn%LA5qsn!&qt?P@||E^NPK&pv%=e*EjWS0vQc)z(q%{F%eL|GV~8i-+elH;LHbOem}m)m`<9 z08`fyCJ~^1LL;a%|Ea?BjyZ!<7%S*fyX=43*akg^B}jtGt`fII|cxY50Vr3951RGGuL*Do&c z>3{!9@#X(xg!Ny$S7f<&0BJy$zpt*g_GkOwyEj`|%|>}Qj;seWqnLP$o9m;lz^<@3rDfi0L7v=0v{QTel^v1ndn`3Lo?4jp- z?|cyZzi*|Sd!&O_qGC`=)UFqTB>~l{o3}ya-O*K`K%xw#1Tmh35g!YqA>y>^Kqw(? z{{Of4uFtj|$9>qZd)7XW`@n+)K!6X(f=F6~Y%3)xiTuG8R>^j3$x=me!R4evh5iuP zl`1Fs4^aFIoT!|9U}Tw5^l-$IrAV^nsH75@GE+%8lp-p+CIJ!@00JNZ0=RhG$2ogV zcRtMYJl1Qkz4tmeP-Qpj;+(VhTC-+)&Ghti|GFD*UO&5eLtg)#KcP4N>1#*$@^60b za!djL<)?r2;qSx4|Ha4YeV@3-tEOq1bR?4^1rc#ww#usRgg@ekBg?B?x1Lnn%gEXu-~R1ywcq&1FQ32m#iu^^xl6*NJaKe-`rr?L{N!VQ|JvPq{+uHhjYZK; zR)yY34zh+-65LF+7c-^+v2BwzrpW~$1X%&+$LDy%z446~`K4ce<>-xHID7N#>C52F zlTSX$&p-eC#~*bc`1>FBANY~$>#HY?KY}WU`U94dIUZT9gjUa>J>f_xd1JN}%i$h) z9}5*g;N>n>SAf?}@80}VdF7vdjb8b=m#)9_<;z0I|MaJS{Chv45B+B!^Y{Fnht7^p zj@I>BEA6YmxYMbw*b;x!;=Aa{+c&qjq4?eBYxKK|(s;nBZ%bbjPm zo2Yub0JoF?B1BV8qF5mVh0O>kE0ITGUL?-9>Ba|dJoD7gK6NQt!3!_E@bI7KhyU~Mk%#}B+S!Zp_1}K}?8d)->N7ug zDT3*fPkyqw@!ZRw_{7Qge(EuN^gld)^W=KdHX-nq4VsY=@M4I;n0dgE^JT8^vCN~% zR;V6UJwzztf7C;uXxXD>;Fi1HzMwDv@w4*$ufKBhm1my%A1~*q`>B8MsfWI6ecz`Z zlZXEHL;k)GUOPVpNfW}Sq5 z-nn^$zV+)bte*SQ=YR2Xg!U7E?{7Z%n0xRiz8?=i@#yX24_>`Zbjl|nf9_I@m`^nakW|DznlU`yvu?b;eRTKi1$ybmGy12Wefruf zU;N$AUQV#{PyWqlYyb84`iFn&gXi~r`1;*buwTKGiymSRhJw9BfvX9lGsvGg zniFZtR?uJ}Q(%#u2IC9K^!-Z{SY&bOLx{ob?wtN#dZzx@9!$E)qAY3{%O0X*_| zKXUx&6Zf9qdmXn4r|tyjuqv?vi7{O4LQ#NVmJP=7Zo=y#h3X9ZN~|6d?N-X+*tl-i z?VG1J|LD217k>8T=J{X$-Ov8oo0q|xC!To1ePDh3$w&3UPkl)5|M2~HPeAK{QRBuz zIUKQAVkMH8dyAQ&UPd8;RY8Ig-f*mx5(0r^)j$e4>)txi*T3Oz{p#1wUi+D!|E15r zcp1ET^2sOp#pnL`@$bRC|H-3r{m-AiDSW&pz@6ak`W()M^eYfB3uUo{wF78|=;jpb3Q)xC!1$;@*kF zY>iwT|I>F74PH5^sth2O7cJf_yPu$z6HY{=sx$|mbXhcX{0q6o!eVx6<*EhB`p(U_ z-uQ#t&FvdUa-yI7^ruhG?!QI&CUAT;7almh{%yVXt!w(~)vJ7V|1CN$iV{3{|1G+E z>uzGl*`52+@5iS%^*dKj^!Sad`rxfw=>%qp=3hDch&=Yj8+4C<=#dZWV}IiV^ufnZ z+iT#pgQ$m)hl5K(HXPBiYrLwS+fffTYMT-1?7e`UCP1r34`AD#>p9M!IrHoP8!No^ z$xnW=!GAE&&KH34^9OG{$ge*BssO;-FMpf>OVvM2Pe1ascH4XK!3Xv6#~;_1Uw+x$ zdE?F_AGm$}M<3<~{>lUNzN1q;0jtApc(l^OH5$WCd;sX$yN02?i|V->XlP!Gc&v2| zaUp$7qXh5QxP9x^>o?ze^NUU6Zan$qll+;_d`6#q@<{@K8#ivGW*&e1akal+ef(95 zJks*_P5pZO@yC1D+_-Urj*i~B`tkGo{=M(Md+o12Agc$ipEYp0f>4OPA<>9g+YJZW z!+n`7>Rm@Wql%WpIr-Y~l{{aUL{$#*4cE2AN#hHiEyYTyxlUI;@u>UA-+RBi|Bk?e zUnAheLv-yKz{;Hx-htp6%ZCBxx52?HN!}7Tf|qL$ z5kV`$`sSK|RvvFzj{HaYK6?L09`KL+$bIkJccp1pK&xn2;F=iV)h*3K9ot(r86m4u zW4YLCXKR^7)BuM*d`^vDJ@h?C-~D$U!6Sd|2S5D%Yxz^iIUs9QRZotYrFjHizScV6 zoWUY;MM2N8Hqt1#C9s5eVKBhKgs%$X*sYH}_YhePKLLb3>`4f$U%RUxmG?I*y7G|+ zSJ!{&VSmq~$L$H9w?Sj~jsVAC@6jOG6a|WwVo7d}F>(VFbe5M_1Jr)afcVgL(l)@u zSa4mNlMmy{58rpRy6^0(ckcd^|Mb5h|FxS$s`{bkVNrD?0M^gm^nc~#gMk6heh^Bk zIDyc!4?86yoS+TKT-ZTc2D7NB+M8?H3!Z%mO{+}WYD*9%;ZM4&t1EY|-}hm?_Ja?! zSHJ&#vRWOr4g`mm6s)l@g-Eq=*`_t=ecN&k0`CEv6OpR!QE6ePfp-w*+mtp66D(AA zjj&i)bzmjIk+{=`Pd@OM-@m&5-)%`%JkSV7xc)hWJ=BLqp3p_2M4T5geC(f>!mJ!O z@Ky+6@yFC}K9o{|2WyLl7$+wyH0^1#TAv=f_6Q`5hGNx^wS;cR@p#h(G^4(2JpT5l zY-jeXh&U%AI3ncmuF0zp{z3v+9Goh= zUjwYfAdpas5lyAhi!QVH5CVm0&}PO8tL9jmqpQ-eu7Pt2M-FgML2IXUgS{4dcO&bpsBuv-Nt{>C6 zJLa~5v;-#&m;vwZU`=PxSmm~_BMPiqMd-A^)giVy?M6&%A|&ZJQ+tDY9n6Y#6gvC90k0p z2h`)pJCFv=)DzHhDAef?cIQ@)Qm%I*g0t#3(U$0t0fCvv7ND(=)(0eigax?9#UNEc z)@`V4ObGa+h=30KM2h>YN`%b?4JVg7qk-Z$28iEcK??z`!H(#pIVS*3EVql8;el}u zg;&K9nh@|6%ZQhqr~;2ukbD-VtT6))BnoUFkFcREI16Fr8IV{(hN3>N9?A;GO>_th z1D7pVejTEdd9;aD$>Rql@BL1Tc4>on+Mo^8wj|A6bYqyPlBJT2dWyyqC>*sQy27eG4!Mf}s0h|=umP@)PJ@6dLK?Iv#^5>?Q7sHQF`pU;C?3UfUB7@}7OdB2 zp*)czCFN=pRvXiLDW>p~x1Yh?yLjVul8Vh=)kfZcduO z6Y)Wda9}vnurqtXN(oSh7NH)tkME!nEB!^uU7Z(!rF4#-G?J9O&H888iO(_D6g_Z& zKt$lZhcIJJ3};7O2{CmX-QjcRQ`d1|p1dP>1mCt;uYEXX6T<-kC*%c3vJQ3zG&Ez`YLww{9BNPEaFn%NS&9a4rxK=+n&aPc{IJ4}g zwbwT{>_UqQr(v}1#Z&p*Z8R%E&|Vtvz!Fd^#A~!1N3!(EUD8iA5yDXaGrKlM7NQZ>JH%`&T_9?nIQs{TX^vh6|5Y?9W|hqLFW_%R*C z%HWt8P1FC4>f=G5Losn6b1Z{pF66NDhXqKW^K&p5t#fD)j$;iJj$#QV3JKaIrc4fS z4Fbr)Bb0AfK^EYWGUlgaF{6g0q+o9a*6VdVoU2aVH^s)-fq+HI>EB0w_DDX#llyVm2FWoHy~E{SOct^ z9KL(R%Eq%kUKy}SloME`2^v4ox0MV`%5+E|rnOq^C;%=2K%B$~d_d5k(YTl?l<F zrVt@Q!f@0ST9;KW4zL21oJ6m*d>S7}!%m*QiTyJ(vPjklO(3{vvuQ=(+)-%1^=N>U zj#)Iu`9-#vksjn>uowplWu>?{LL_?&5RPXAw!T_CR}xl&hBzIXn1XqQqxPw!XrzT} zDLEyCLe@@(VdUz$qQPoiX__f-m=!80>~Bi(I0uD#kKhc6iTQj4xKgm6u?quJ2)siS z<%L#V9G=*wa?~U(yGvdy0>I`J5Urdo=)U$SRXdIpDJ*(G%*~I;$?OG^ zvet9-f^cVtb=eb^#-k=F<0rNVQT(k@cx81tJ~e1u#l%y}yPhR5%lnrr7EK}KG?oBI zF;8LkFJQ3ZO!A7AZ>9KpFy%~cCw%Xs=EtdUWUgh#@yJ|0xBQ)|&+@B_Lc%QX8ZCns zZlW>YRWy!K44`RG8{OqQap+Z{%>Nm6P5%5B&^PbD<%|le$5*K+q zYB^+CXiK85WZ!}o%OOtNnDlpL#-5X5qmgq)mV>1h`keOm9q-t9cHzUOc1U?v+nb)b zTs7!rsAp=J$Yd}!o=xLkvVXhY+wE%!xtWtGcsgKkw)~e`0t05k9mWQN#5F zH%@9Dm@}ouvneY@w3&(KeUGBPZz1sd=8vNb1nzBW|-h3$S9p+e7XbDyzHX6hVZ|Cr#)M(^duUj7^UZtgw3 z&vg4E&)74&d>iA@6pe0RGCanq`^Ne(r%&6=qix1G_70bzUD}Za>`lO;P=fx_nR_nZ zgs14K)`d5HFzj6PhZ&1Xy3J=bdBGcOT`o7&w;E;sT5NIh%CTx$&k;> z**%8pua#c3T9|hGHBD1`-dMVhZ5L;qZ6bdjOZHWoJSiuwn!B&L(4#VyOlK;qCKojN#PjBZSS2t={i~Hm824mQh_d<&7zY z&zL4Km$tDF>@O5H^Tpiv+k{Q-vg6K4(l__oZJyst#Zk0>;dUnjLe2=U8XDiW_igk2 zzI2&dQ(w@%2Qp#W22RB1$hsIk~vAbEst3wq+@(1mHjn z-4IpU91)lTZmH^945tYAU`8srQ;s14z+%>ffl^MX+D)~yX*K?Czsi1uMlwpghe0bm zFvgdR)$2k5GTFkfja59ZMgnXu^b5 z58m)jCAF3_Uzm-|a$i|oWlGqm8Ut9k5=R(I_1*ct2@wp$vbq};~etfbnS@U->cAz z0R!_KO=5dnC1VQTx1>FBS1swH*236vY}as zcEYYr#Q0d-LNdQIpSCl|kMVe}ra==*y5&Bk6x-Le9hwcQ`Z~?W9NyG_=6ivPk|Mz) zX}H1EQN*Af~KE9EKorIN*mG{FjjoO(yd@@bSyl37131v*uP``JD%1A1VHPH7x zmc}BQ(hxgY8OPzmW>w5yN~B=E`lr8Jaz0I0lq6WVp(=3@M%PCI?Rk88cd6=){k z>p(l*GD%a{PVub!_td}op7I@A*w8Klyxfq7$1-KSQM&F#Cy{ODEb!bcsUA5 zy;LHmBtAO}2ZC9TC?8E@j*U!sS~w4{K^iJBs1{7cB-QX6XwpHfabRjIIGs*>KZ#9UF9Z%JZC zPc7P04V9ER^10rjgLZ8>lqzqNc{Z79r<=XE$oKHm6}CC4wX=ACt+B+s*p_#Rq^Hm% ze2+*WB(hz_W|X2YY)vx{kcwj7#YTuIrc2S3$2`q(wT-3F+~Y6d`eKd6eC=FmROT%# z7D#Bg!aG?%U>?`f#->Q?K{aOSq?`f<#hfP&**IN%_ZGHPW|bg@I_GxUjTh0J&d;-} za9sNKCBIP47@gQ#Ohz^^7Z>SNd2DB?HKL(X$|XtBkFjsF&>Grh4b)Zx-NtslF&o7u z+U)BXx*#r6s&}apBxg{am|&BhN9}7~)mZmC$pToiZe0QAp0DcmCx<2LA7WHp zpLH5HGenzgVdE-$#|vW5o`^RpZ9LuBsqAK59t<{S zDt2p%rl15pBs}U3;@!aFE&ZJSv3O5A;*PGz!Fkn9lm&D_`&-ds-a3l)g|<1jme&l~ zQ?^A&%)-aa1p94+ADMgqMIdlD^=sb@5o4ajCC0E++~w4qn=-&}y5}-zHqNUIqj?WS zI8axjFyV4-PQInGTiXYp*1JGAr+CiGlo7|kys(H(fy0%+7>zv(Kkc9)l?5gbz0Z6<3S}Hbd zs*k&d$}Fip&BH<2PBw1utjDq+d}SGo;dmc{;a@}@{Ep{nr;FHY_N3hRIrG@cMfJb4oD$s( zmt&)69s9Cd2xH8lP{2Gk2uao5jBn$ywIDmdX4qZu2+#1eGfk|o0`TL6Vc(bWJ9 z8W04`@Q%6dv9fG?8`^aB7|?L(UAgSF>Zr!yR5K*uCDHZ*!&gqmt3(uhB ztqf!8p6f$vRywG}B9&UAh}B%9WbWyrgKa0L@IpduwN9RHQirnX)`iAfA1zz_!s;ZH%)6eU+Q~u1FbiIhXwn>AlJ24x!vqe%VAu+vsywLNT{f><2%(7$*kko%t2_B$m+p1 zX7nMqGxK>}7y3Z#ce%6CL|XwQoV}n@7~o1CMO_9{Oxbsl_0dS1_%Qz55-Huyu+V$p zj?`^4X?E$e{U9700kbx~_;)w9Zj^V)^ipf4`2y*9QYS)vA{aDRk*+c8x~;le(1qm? zpC;Y7tI5z}D}GmU^-S?9?6UZ8F9R{Pi$ zx52~B$>1>do^})L(`ll&)ztcHY&>WDXaq*Inmb_`c8144H? zzHA8&t-7r91lm6C_n~%{qVe{uym#yeI@=v(N5&F;oE^He0qU^n*<;R!xyQZB1Y?%{ z@Bj0)pun_xqMEY?%n?j;`Ix?^aotLxJ7XR$RCC%UmS_kIA|o+gV<*^MP~A%kfT>WH zxdLk_eZ@A&_g%-ct$pUQ7w+6XF5w-W69QEJKI!4y@j3h4v&|x(+lLSe<|o?;rOJ0- zV2cW;G4ILLL;Aq7?FH=^L+4IT7d;tE(-3@MN)y<0{1|eVj|r7+1X}-#pd#*`V0Auk zCi@pP)dW$&c2=Ar{_G>L<~UxuKj#UyIrDzm&0sGeYUlVc87xk_?+gpA$y4|uSFnQM zmC|v*n>J7$i{|7&8W=Pe6OI*7DL|B3|31WMGr~Kf(Z$#Qyx-Tk_Npmw-5d|y*mJsW zX#g-Vu3=-k*GjY@6A?fmC?#Zha1+m*aBLI?>8T*$Z8Bnx@o@0-ecQ2e>I3s<%DPLhdtA3}MB{MWD-5oKm(XmzX)J!k?+H{x8N&r@-@X|an zh!rYpFa%1gkhw=a7{eJS2M1kP)ACt6LpwzBt|cY*iI8gA8Jb(9m`DnE2pl(10=!tZ z%h(^w0~EcEp%2*u$sn5%v3IeqT*`N3LLyiL9C7C*GKfOmFHsK`O$(d=Ks4f+1P%mn z@SYgHNh97Rc!lDSBX-O(FHkaAY8FWGd!gWr5sKI+4cI5P=OJQnEdDJnM1^_oTtrA|6ZxOQ{q5R>g)?IX`TqesEo|mh%wx zJtQE>o;@-rp<&vX3w)UMKRnxkf}^AG43?QY%F5MYL(9JNfVs;&4m@Be0S*LC!qV-m ze=i%p0w7F47tf;sSf3KcLqViq;rN-IOZ%-16+S5c9734)u9Hp$+0sK+0NIAPXTgly z78594*c-3o&T$}Vg;D56&;2GNCRH}a^7qMxKM+Qx1j_M)_$8BXAhgke0PTj;DQa}OM&3_1toU-G{@$!kEd;0*Y!mK7svWE z?`EFt*Ic9TlwGXb&Kyr*@0x*sz30czxr5RlI%aR`?^xg7OW`s@X{g6h^V!?C$?Mm> zZ_afpyIU@o$>-Fp6?}nN{0q9TOZM-7;JU6v7^!*Hb#3o~VFJxr^pEin+ zA82RDTRApH8u@%4ZJw@EegCuIt(+PcP-u!XJiVK+Q)7J5%QuKGMbkwYRqPB;NOqn` zLyVPpY`jbXwNJ>xHk!-Sq}i%pI&@EbFIpF)tGv7WI&^;1XO`%8|DR&j`y=11^_9MUu`NmGEB=P zn`>8uW_-#e$-MIkcbEZF_L!mT%W#H^pivK8&%Hc+U-`3Z3+twN>G5KOKdF6d2iYxO zqEr|d&aygSlS}<9+8?8814)tI@xGDkrUg@UN@!{5-uzzd!FAh13$gFz>|33JT~G^N zBv0tZ{=YY9D7>aT`fakEb~WEAa_h^CtphNWE7;Ea+xM)_LNG-+-%~BktA(D=G>Z+l z>TUPAHetI$Cvhkn=gWTD{ksDG$0pQNb3=jGgGa!DXU*wn@>Bs^>FJx>58eW*l$pAc zia83BcX$Le*sJ#zt^QQ~ou3nUECm#!zsPOgl}_aD_xqBB!EFr#=;i58+ESO{2DPY# z_%>ZvQu56uYEJJ4P1!c)qps_Fx|+^K^tZdiq+r_}XrD=KV8)VIgZ89C=s=x_XWA7Y|H&EQ`z+Ur3K_9 zds~s98t)AQ`KYHiY7GH8uv>qF$8#Jd9vutsB`CoFBa#8Go)D^*m#6<(_&xer$ZCys zJu*~nN_hv&$A{7jV|DKmptHlsYS*Ql^N7$F3d!Z(xyP;t0OtaGsSs4*U*Ja9J5-+k znHlg=b4&){I;YSk;?BY<7io@B^bunf9Ka?5(y@8S^H_tE!X(!`Zm0$UWyt~y19-xv zi2!Wl2=+s^&tdtJ=Go<}5b6+QAk?4>n6YXupp=b43$u(230}Z;3}>#~Tg(yEum^iL z%$({NrdJS!mZ;&>=C50OR@tA_`vg6y?P2zpiH|;RENhlS4xCK@U=wQPf3Ozw$zW#{ z@j`@CT2L2kj2=7p&e4dL*x9<8NcXuWK)7>_**^B|L)Wuqhv*FYE5=*&nc_VXptB)E zDJ=P(kE;mL_&vNc_H0uWY|s6%W;;xhZCiWQF2{z`%@&dQ957p=e&hX1&Hw6nybzg& zyBl%QCrg5tm5{<9u9s?aDxm~J#@unrJCO}^&@h_PqgZ5ozol{#7y`OyOIdKT%%SYf z2~-txSU~Hq7EIb%soEH(cEEWL;l2lF=(8Do7!}B5m6&T3`6hQiQK}hi52}#NW|Ik; zn&$M*bNgMSlrA+nQ|RZ&3Nx1HyYuHm*N!?j!fzdcInr1idPGPQ?~&&mLU$Q4}+$iZiU^c!S<)m zU~S|XIGSx~YPt^v!ReS6i+xC4dL+04RSStLXyW^J68{^^B zvE(As7MITxoeP_sq8cP=sORucq2(YV;<>&i-#hvQs*jCB$m+Rcw`a|bFC6RJP#XzH zwIc;>vp~zE7S~G&!N#vH*XEQ46!W=^FFuAZa}aIduDuX8mAZ)hR)YpmZrdn$45|LS zXCoQeIcMb`>ImUpKA-9Q&Rg?!M949afq>kf04IN!( zZB7O#?6yy(X}I6lO}0eRX**b#{G20g48Go8>)hfPzE7^L0c|pTW~ll7!fls>5{STx z4w%h@e8@dyJSy!!Ax2JWbT!qxJsExl!7~FWlq3KLNm6c_bddrfT?+tMJ|au9rbP;r zGH;Ggb=-n2A$kObps6@ucjA`)40XU#+6>YdpJq9v6lI>xAZR0;fCx$qOC@67mEe}o zu6G9qC?#QRcqbS0XQg^@F_%)9C=7^CpA%xp2c;2)u|~dW#NJdPFTJ^)%KcQI4SAVL zP-U4%DBlC9aze+D27ZUh7ao?*yFqL0sRPHV(tnkImO&pj!b3CZ>;QSn6EKsnM4~9 z$$-|})v&W|t6R)Abgc%V+TVq{IeX9vAvF;+An-MxpbY2KHtU^sFADYgBNIZP3>hfv`;5pX6DV~>FWOd{l zyAN34n3ZXW!}}dyH)t0d5E)&qhhkxXZh?TRK>%~}ckPlvvU^-KZMUy=@u23`pEDh< zr&KpQIIqfoA>Yzw5ik_stz%jdNjw%u!N$8=%@@<0y2sxs50RF;1dXAu%eR=b{taE1 z!G7Br3^&@eHhE1pEWF%44Zh%@G3;)C>I$~te9~TQ*pk#Ax8ceMdl>t9aZZSucQpVh zoGEK)^9uXcf0n9P=1xnoG7h4Q*n(;6dhm z-e=Hu_YQgP%D!F%x_p~^rVQzu#yz(m`wEL~@7|`rn>2-HRvEUh?zVw8$)x=ql_ArA9jvk}e ziiRpCL*A4H`oHwTqyfV!LkIC+OB_w>28Zl5W_ucY#;_qc_qY3f_~HBXm=iob6c9SL_!Yq;v~B3Z_9O`^G1c!WjdA?5+M%Lbr849S9x*&ewrTI; zs2@(%{b|=tx6{4i@5S%5hqPTLO|Ngs`{CnDV#XFo?A}7F-1{b!q<17E&UMLv zjPFt8#c#Hq5_i+}UUbu*P;c>T$n|4dO$Vi(Z5t!U7z}7iROSzos$aQkNF6ep+b?0m1AW9#;6ex?dLW;>hm%4{2R z)@`fAhz%W)FJgC`ZgWf!P4I5<9_};t?eISDMcSr+R>)$L9dMsM)bNe%X;HVyWxTvf zFkrx+Q68N-HiKUv zl_2Q2e9NOnd7LyVUA(=|M*2LIT7$GGH69;7(Da2-ZPT!0i|v-hQLon*-PWsqX=KOr zO*CZl>we#TS7}~!Hq5zf;SDg3%hdD=lgu{Rh%36VG`(rL4xDW(bZ#lerEg^znjBpd z)}}CqqQraMhdma@)cv~{EX;%$%(|tn@kID8rwx8}Tb)}lAe$1OU<=iW6P+GO5bg5Yh*fpA? z1E&UE(ssbNi$K*{yJOU~4^2J0+rKWza?@CrQib0ws{2|@qiPylWD)3z;;TJAZa2+0 zy@xsPY3X;lgbirvd{A8z$B-F2 z$%_#!ch0>-G#27Cr}tCNlWnGM@(z|-WM}^G=Bry6Ar43^+z}>4j*k=u?QfLT7iqZ%vJppHYn{wq2J#U-cl~cjV zIwHOs9iMn$f0vIavN5pnuG%O^rWXw@pk+3<%!8>y2?10&4_h_;Ea_}yV+QJOoyG3^ z3>A#~83snlUPNzRZzqs<_11;3CFyPKK=359<#qFJ=Ur$K&57Mw!^z#lFeD5>nILd* zp20%!E-wgzy)X(Th2jQeR)X;2vqa{!*@h|_0b>-gP3c8Pd=M9YyTb6Oiky4Az@t!N zZvA4dhFbsZA3>$@1*I2eXRlW#E{LDC0;h zk5dsV7$d+10v3Q`y7hz?QU!?*dA97mF~ib_NZwwG?+hUlQTN0NCj=nnRqFCNfIXv@ zS)@|#R*nq_AIssyRUV}wn_0H?SS(_EKk2>bpms?J8fF`JbXU|uENM)0&b%){tpa62 zb!zb;hgf=sZ9oJ2isfJm0xjzKF)AYPO`$f|3R_aZUG*_sfaGid#agJInS^4 z1+Ku5<#(bfN0bT;NbjsQm46G#ynSUPKU4XP`Md5gi=|XS2DG~Fgq8t&+u)=h(6B1O z7CM^7SJ}xZ|CC}Omifjzy&CPm<#(UnHaq3!sSr#XsGF0i{#|;XS-VMiNhb$*2PU%7 z?quzhf~?E0&K$Pvm&5IM#;o1&nLb%oSfaY!(R@`)(!jC2oF^$i-5%XoJhrY&`!Z=8 zkfQw@d**ONRh^~sGO#_}tAy**8)C*B2k7HOf_Iv;{)Mu3C+(k|_kaa7|pvLnr~?~GkCWguFAj4EPd3YL(!-~ff6aLQ4&%M>xVB3Y zraArdfY$FXxv1t&1KKcw#=g(7bir7aY%XJi)XnPUG*qBlmtr|r@|e~%M!UV{PT!~_ zusS>K#v={FF>~K4C1WXLwsHiFX^u1cHMbf|w=X*44Slz@?jC$4gbIwF0N!nl3J9lD zzU-7KTX(t}gEQ0HWK8dRNxHw!ohaK(sH)Es==67kMsY@UQR$+;eJ|h~+}J+Hziueb zP-xB)JN+iF>Kq=9*`Jo`<3(sRWA@X_GEY?FEl}8(syUsXyHIAKc&VGhF?Jqw=NZ*x z=U^lreRfd*q3+|nMDM|)lBdMtKs(er+0Ze$UO2N5E!AJ8fKrTW4y8u5X=-)#%1z@+ zHRJ{a!M4fLdiFP_-g9g`WA~0~Rwl$ZXdIgYzxNs6rm^eDhBA2~Sx|0mEGDW-IN7c3 zg|ZS*AJ8*4m@NYfXC-Ibg$9LG|M^Rfr+4oj#^FH$RgGzL=B911QE~xCf}ud_Z5HpC zP?&?v-=x)Dw&pR1_E{hMzRP#RvbBgo+_^@=WN^_`nGz`H+2NvUa>5x&zSc4i zFf8L|jZX>o1_cUNax#Kfc%5=m$78aTZv6g{E8%A-SUv-Pq*@@BZ;;~kf(%R?5)1&r zIXAeFy!Q#QJv5c<{Zzs&y|X^zKiDX9Z8;(WNrsG+P6TuLI}6sewkn7K!|Qy&W1cfq zy_3;v5g-vF9u0Gh2FL;DWn_Sz7Rs!tB~n{rZND<|VCqPppFg&N*=MfceYx(cG0S?r zo6TvlWOK9)=6??=gNCb#)4679M@ir4xDcHa1`vt}cKenW&fML1YND7I#BB&-RW(6B z_eGQm*5=V=!7S_@_xL+<{pb;Hl+VK&*ciL#d4iW2`xKSn;8J)duWe^sLu+MxeDep` z^$r_J_;hFJ|KeE*3{|{yo`h~&)!)VBvmMAP{{n#e>fT;8imvgaM>7}fhESNHmpdse zyT^}_@!NGier^@xl7?tn1LuY^1|H>>hOx;+#pPq+Z<~bg7>l>Dlx^l&zD7o(_IrGd zUdq8LHin!=*8F-}eE~HX3-T^E&m~;@vx3h%Ax7oq4d6mzC@tb5@nzx}&Rt@~U*{Ut zPE6wz7_MaW&H=I=Z`l-byLa!VYxb!hKQN|U>;m2Ix;CH5F_cJr><&NJ*6y=yeBUOz zD9p|-w#22i#_cte@$WX-%f@VTQ{&yVe!C>d4vET>j@@74h2(R3uTlUV5&+*(%`=E` z8WH+Q{2+MX6|uA;*iY}Fr^3PSgqojWv?mk%r+^PETS;(WixzR z%?}{pkW_QMLd~x?*<#9Zb9&CacONvcdErZCtXjpxh2ROQ8t{I|sTWCx!+^Tg1Bcq% zBnbQC7`rapQ+K5c#W`(*U)q+&c89rI%SF+gU23Y|+X}|M7CIKoxBs}Na6}jJj)%N? z-SKbY*%FYJeYN~uY18w@w3tmNlTAF?mj^9LrKC&2?x%=q!Zrm+PUbolR4)bm~-1mK= z!^g)^r{C3Hn&ssb^Pvr7i8jYH!c7`@hMi;pZ_nZ0u@lbr-X{M=Xgj}At}ZaBiK;?G z0=%G@i{0m0Pe}pZV(S{zzHI)gwU^-|5>L(yfR%LDioc85oE#mg`p_KlIiLbU15%ER z$Zk)lkGX~#Am+Up^H?RsuasJiVX4B~SM{kn1{0@R3u-P_@oB=@3pB=<1G@q(|4NN#iSX^CU9EA>%wH^4PMKbmTCsG%+ijW_ORR9%eOr2u_vpc2xdhBfW{vct#Wk5?jS= zTa-ZJv=&HACdkayUdZf1{-@&kW$r6P920RkC3q+tbK<3=kc-Q8G`>n>78{36pp1vI z_Z&RmQk_bW@;eo7-|9ug`7A;CAb7ASlmTJjj1?^dn9p$x83k&}X(oXur+fcGlXEIO$DWf^j2MCKu}iA&1P(F@I4siK_a+`}>;R z^y}Zu!ve4gfJ;qk1_XJiZ=38pOW2Ug>vsu0&wX?W;F}7J4rq2mecsepvEzH&qx2o;mL9eU*MX=k}cU68Juk=iU3dIj83sf(^Y~55xko>w-hIq#;^zsd=cc$B%X z)G6AwhjDHZ&1to2h@qNNlcWIKp`6Ikqm+KH88L@h_WM|%@jf2HU3R(4plxg~`*@j_ zjLzTWS=#0~JI9m_%%MQ#eC^N6Z7^wb`cgVKCcTZAujR~rKXcc|*t<#p5RP$*+P+3n z4hR8WclQ%7h;yne-`Ga(^%lUyWX(JD=AC>l7P%W1u@@K0opEN7&M}%?fCZldeoF>7 zsS0vX^eZ^^=8v_nr3{ayyEBjN?6qxUxXo=f0pp3w`-*=}wRh4)z7IkQAef@oJ3$40wuS6axO zat2RQ7*?ZJG4J>>xeAL-T!`emw&KGLjT6t-zu%KWM{ zgn>Cb_O7?>=Uf!_oM-PsLp)xB$}E_qfQy=w686e^wjcb=0S@=Afr>OXul7HZ#xTi(<2 z+KrCA)}Tf)SX=1Z`wG@g;~E6uZWK_vnGNR9m@TL)+!^E7OuhSyj7MCOCu4o95a^w+ zlT|sIUe>gGQO!kcPPgTb5Vc;hhKQhP71%f z;iy^tnQx_pJlIW*O60dbv4pEykw5%)7qZ7 znYxh%=HcWK;h)#sJYgAX84~P2`^*5DEfmx+@0v7a8H4y*+7@T$L|#K}^kQOR2;jGU zZ@UI=17UVUIt-w=IpB6m^O_D(srxi6V1Nwb>;7Hezd!X2mtE)gK;J3-Z)*rgxBuM$ zP+R!B#0iF<-9@?^zw+~S*5_M~pQ6)a4;#&$RZJYfgNGOQ7I%tUahF1IEn1x7#oZ|m zixhV#?pADZDYCe``@&*{;w}sPdAMA1m)!e3&Aj|F$z+nrB=h?|H61~Rt7GMjGm=fO zzX!|0+|=g5ko5-@tpco~FrNd@%E$Hy=fYBlZ=&s3jD@>7LEG75VI)wdFFh#oQ^hu0l`h|6Ve<9W$v3 zs+aG&=Y!g*rAxe=90BgVV`_^^6}N-s|4<|DN>rPgpLHeXG%ZpIY>3a(B(ZQk+RLQ?77ov1(Zy@>(?IDG(VawOS*5JE`r~;DR zs&+7IOL8kF0NCbEZp+ecA6WExzb~NX3E!5y8IO6^$i%mt;Da1(LB|?U3b}K7xPx~u zgs@7szo+a|y3&FhdexIlC)G|ZuDAS!K*qyi%Q`m;xPqKH^r=$iI^{jDPaN8$@9&t_ zK0FCLap9Sa>l2^62p^y}3EfTY9j+6%P2BdVv?F9ewvZQt^~_fdQW*uBA^VFb8bHD0 zWfh3$(ol-BzrYPAX}V*SItD(V|JT+S)yci?H-pD{cYRsT~rE2{%9W9$n7^}!y5$RaAl&g2{oC?_?$*BztEQn0WxykDtvi#ee>yJ*1@4D^J9% zC~LQ70EmkmWK&>0j;_#h)mbB=Gmok~Oo9zdjh4i-L_Z^F1+vi(TEE_wnfEsnV$Ab# z+V3=Y5l2zP*~$9%Xv*#Xve@^PqfAP?`|e_@QFJglRo4@b3K=QX_CK=RR?7mD+y9W( zPbFb=r8?&sg67jb4DT~pOEVuzyNh7MjXFC6gnpo`>y12mc-{7T znLp3c#>1*}f}qg@ix)Fl5O0F1fM<6P$a?|5GXk$6QzVoN#NhYd@tWUXJ|J^RjY!BB z;P$6rcjHg57Q-)H#3k5v%d6i@$9QKF*XWo&0Wl%P#$+oc0q2m$7PpA!iv(g(0-@2O;geX)=2=O12wJ zp74^Mk-n6R$CW{Uc;H7lF;Cjjv%)$PcN+cBokDL7wa@W#KH}lyYCtb`MEKN%h%ydw zCbn}S*8x!vfsLfNsRed>x|~A7mAAzmKep=!IH9gDw3~4fJqpQN>~$aVUDNR*Sx9Qk zesFP{n!1HYO>GC=8~KwtI~&?-!sz1$EV9YN9vCes=NKsNErdXTAn6{Z?JF~Tn_L9b z801zqe*4Prj4qji9*3O?H2BQooD;gHSOv$480&DP9D;fjZ#C1PJ3(RLUc<{DCG z!sOnr#oi3Z3cO;9_jEnJL1i38R=jdrBM@03$|?`D2_hE4nA<8(`yo z{DM&IrTQ>A#+sl#OU_gyW3!U-u^>C4pH}YgckjH4(s}MTu?D%R2JMikpGy=2wTx-c zll2|TSYhQ&lh0U=kd{BwL$q@Z02|#e?TXFyW2|zU2$wFHW;21=@Ste_uZC*jZ4s^j z;qPNl3wW6;4B>wbwCfH_*znpN@cKwx-~A_YHbjgd_xzA&V7AB;x@Ymg`a9#-%U^3} zk6tgcGhC2Yf1SgEx5EBH_~Pes%UuaNY_}!6;0%BRT%+?xsuThRicoUIcZzRjj8N2E z;!*P6?-8@=pm{mIMF$N;2N|4I{t?{y`BoOUbAMbS6@Ag?{ZKqa2c92&_^z@6G|yUi~XbUEaI@y|p*Glmmu6 z-E9qkoh>|05?LnrW*5WiS0t$%rMfxDJJ3--uxN-z+apQnx(Q}bojGcvqo)4Jx9n=5 z`eG9e?RtDtB>LDTa8gp(JDFN5QpAvxUSC)nsku=l9_12Dzs(&m&7nxjEmPN(R}^HJsVKi_#r{Y{MCxQE zANHQAY{&Z7s8Zn^^7i8}nUNG4?7H&+xob_`pL}T-YL7MZ2Fa@%h#&TC zRwGE?H%`akE$yX77*5M!yV{Pqkp9 zz!|f*XBp$(7tp=lkN0yp1Hi-j-&Dwv_yb&Y7$DaGy6vo!LEQ-QNAX$9H zz8OHhj)y0KPMML{D0h9Xoy^DjqLP5M9G>tvbfc{#%a{gLjgksLj;Qh5r9nDYp&Y*0 z*H`(lA7{hoP^x7Zqf6%@e za3Qow7rlOF3B ziW8d^vd2N-@I`|XPh66C+RY6(@P5*RdYJg4D;UBykcT}WQ0lt zWJC@s*?9i_Q&$^{Acj&Ti6eosk>kQeLcvj&u~>=U!x#h3*32p~$4r^A5N2R+hg}`M z)@N;*T-|(vdYtus??s=6e1O@t4=l8&!~mIv-v5tCPbePU-qem5|L5XBeZ#CFoIDcM z49|Y0L7hn>U~H!S#hCLoo3&ZX zhHJvLM!nuZ+@}5wFTo^2Vqj`HA5)luRk1Bd77%_ZM9LU&4A#<*d`4?;_52(UVNmW) zORW|R!B?yI)t&d#Z?+#>Yz#Mv=30xn;aRa{T?py~-Dj(V1DqjfIs=}}|-einn;l+A9`%&NIVOy?rP z8|q~}zE0nNW21Pard1-fxbGr&u$5SIQFBpygNGQ|w)Ek$ht?Q@Ao9+KOUjwb*D;;b zPfrVF;OlE2V|7>4z2Q8kH;~G|`$rH31*MoP*2HsV`%?NhASxq5N&g+<_OQ^%N3U5; zMBI1|AeB2SO;*twe+S|F*v!y5fH9|k_~=Fv-YOpLhnF z{N($gRW?67FzNj#92u-Z@`ta)Z4zh!K|hofEr7?_dFx9VL*b)MZg4WO6Y8u61PI(A z-Mmj|WqOL_r6uX#NH7&Vo2*NyC_P=`P8i9M`$CFb(vlZThXa%0b7P&dXCXe^CuR87 z7eQq4P?H83ORRbw1jlk$WZ;4AJU%L&!_qqw`0r+ZQ;9@I%2jsF-~`~d*`JhUP&pSm zW*oM?Yz(}WY@L6DiF?TJxvlXmJT3BxBziPdz%9fpL~2`k~Kro0ax zGNNmAg~puhkoQ#~Eo7HTo&BdzU5f2Rvso4Uea>*BtYa9C1 zvNbVL2;ltI$#{=lvu{#Uux8A^-;X1WtA8C5I<-$(RmfEAZ%Gkb;nr42bWoQH6too> zAuK?5pS(uX!>RD3DcR#ZVZSvJTK;=X8G!(fn3fbD$6hS|9cGt;U=&UYESHXr2bPY$ zgG#pFa@hA}^AYa@BKLkY?g7x1hQ0wJhHfugE2cwf;$~}V6-p44X2bh@N+M*qyG?#a z(nzQ)QLAt>dNZAf+9bWAZ79Pr%8rB(J>dk}&PR-bL(*^vLGMf3mvf^@nWcEG^XxOl zT=+SNYkv2N$y8@nPbuL4e5-bqJ!392T%jY&h3039kCZBK36R(e$YZ1Nh^6Zd1kd!R znz{|}n4X|kzlklQf(FbW@HDN}R;_LzJL3-5mj$s~$V-@*tJ8CG;3LZ`G(IhfnuxUL zK9=%zM&N_*K?&&o7WT>L+H}9@XV(65FzTiq;uX?%0rWc!tIQ6u@{YY>D12xPXU1|^ z5!p{*h(cIw7<0yse?&68say-%SN3#HIc2GWM)eGeighk!gd0 zBXrUL>dfSG=~@_wk8FxyQlHjb*A3nx6tE-Ny9=^btq&xR-FIhRTS`o? z7RQk_Ij@ZesrRjNVm^NYC@CLU1fjHorikP9C~qvQ;M$*NSdPF!>fPkxyO~m4k&o=u zop?L6vWVics&-h^wSE&FQKY)?mllZ5&LysXhd3U&aTo;^wap$35xWkGvZm5!F;gfg z@AQ)ugCtWn#iAYM$PlpF_u`Vo=PjI6EE@7-Bs&EH*7Dbk;WLwhm5Vxw6cFt@u1>QCsrl4d`RtHzwr zQE}jU4l!wBoWeT^`A~dHNYbSigzn(I{+VY&3dn$(Wr^<+6h1TEeM_n(i26}>nVx%` z?ee1bNCT_wHd#!cGDxCIg^D6>Q{wE+p0%#D80`K;I_{Nm1ISc&-B?rgR4wzKAJ@u8 zuUTLC%sn2&pLM_%_9p@_Si#TVKRymHEyyzEJiFOl}p~@f$SAG_RkerYtX)0rb z7($4NCF3YxYwvG`-qVTg<)UHWMAy>aF@arQyr+qA6Dv|x-kmkBs1UCNLlK6-fR8NX z?fDmOi-XH6I3orEX@r8X2~0sPL3r|?-DpD+|6C(baL~9S_jBBAsnJbw5CJy$j$G!w znCIjh_w2xHazqs&vtm?M>MEe-Rtin}Q~)yEg4*;YxjLYlP(MfNoPkgLxS`Xy-!|8B?UaZdeJVR64RbR7iqQMsg0sn{~BA@Y@uxR*cr^o-oUOh#=B&U{S-iK^5gQn_#8cmoSY)W8;JlV z4B_{f9OEZOyn(GyCh6@E6{P?w&# zIaz{_6+N6Tw2=W&5q}~-i)?=-FPz5q5d##l8prlQI>dRu)WuW5fhBfKwm#C{T6npyiu)vQ@F*-oQAoNMttH&&&> zhq?7gttEAr3GK~9nCyK!_rdD!1Bsj(sdu8DdIAavrWbw$FbnL~=TzX%*HHP+%P$K*K=7v5>kir*}O4s6JBgKcHP|xu! zq7L26$E@|E+O73^#I(`_jD=_ZfYrJQSZ*9Ieg-~|@fXf}uc3_{yT(4X=8!g~e#IB{ zMk10;mggM(3pCN(IIyUWH&*z3AzW|;Y!{ivMA9jlr5icJ2W;P)TaS%woY#TLA0am@;J&Z!|&0Md6x4)NHUD&)MfJK!b4 zle&8^mFwG<%(bb{(JfuqSg(U;qVWx70jGJ-gJUuW?4j&Zf+be3)r>DaD5@LJfe)KS zD1qmjMR%{$o!8xrHGln=;+{JzcW#eHAMoUk(*30|hjRKEesOS%Gnl3roWgN;HwzXy zn}zOBCQ8y7|B@t-fBVTS96fprsIuW|i^I@Q>MYhR{v8ydI;BP5-J+hl=J@VXK+Ek z&hA{J;HPoly%Z((6^-#z;@Z^$#^@+#_GTrT=@II=Nb&V4`d4-bqd|?|t1T1EHiIiF zC2-z2_wY%@Nc7t&Yl|ke3{j+@$Sl~Spyl6M&YW^@eR9ib?o_~xk#6jWtZ_VqlfH&> z7~7HMq^6karsr}%<-0zigWg_D2Y6?-p@GHkMHuqDFR-_NCbqN*gSI@J1U~Imf<&%L zrUDKnc}v(0OP%2Xu&uY_d4$vTG<^i~k2mV;gajg;1s)5(33fF8oCV9OLJnX@#JTC3 z5%?dEdbl9rRPg&yFSrn^<-Nah7Bs)km8naRsF!~fYti7&S}QAc^ASCJ^nBAC7o5>0 z&aa(D2iCJGs^QW!-AtZWjE{cYEpWzHKB>UInDMt8rk*25#{)Udq4HpJ#z?IoO!o9u z4!$_^3Y+)&B~&oa1PP5}5n>e|ROs-Pr%K=COBCVqp%l^xRhw7GGno_ND(Z_*IvwqGfYB1=~TPPA`LnDdml{g96A{p^#X#J}v712;0P9Dfny*ES6T#T<$3(rz3 z!3BteV`A2GljfpPo2xCi*O9?qzytcATM6LMl##E-*wzr;RG1B8MyF6md{tS8C$KOx zOR{G8%J7w%%u6$Gpb|IO@C&{KGukyl_7XErngh}yaJka@T`c9#2Jjtp$!jLJlg-Mh zV+ZC25%#?*5m?UwbuLzcVY5Sy;QM*2T>bSLUYTF)*@`~U5yrUFuJv^{1|1OI41xYm z6m1paM3gAkCj#l)AC@;p^KIn*bcN9QL}6+IYBTNB?4&V+jDdCXH!}~(-M(u}T>9Ii=R}%! z_7>k=_$6|j_bhF<519m)G$SGw0^o!0j3PTL`u_^uj*g>iSxLr3q?Z0mQrH5w55DnyhI=i;bSLK!KqwEC7H@GzNS+B@JAww?*b(`sKU}%a|-8Q2U zhu-%KTgz$$s<=uvwy*Xsok>pHqU~5!>^w8HpJ2pX+B%G&SREI~R=Rx8uiV@*^_#X$ zXsZRGy1v$w?Sg_-u0q?*$B!5OpR_GpR1|2h^v(9K9T(4YQ!@0=rkkM&r6+Etmv6Iitu#sJNJA9iogG#r}_~uVpxCH z8uB%nB>?~cy}OLAySb^mh46P*i?;#5&B@Kj#>LIX$*;-9C(J1z%*V;X$tldq$?*k9 z@;?F&PUbe2-v4*Nh)}rXEx`2OE4bS@Sh%^HIynFDjG!?0e=Tx3p>X<^0Vv3*NY_Z3 G0RIEIR~)PW literal 0 HcmV?d00001 diff --git a/apps/CineMatch/public/world-countries.json b/apps/CineMatch/public/world-countries.json new file mode 100644 index 00000000..afdfc399 --- /dev/null +++ b/apps/CineMatch/public/world-countries.json @@ -0,0 +1,182 @@ +{"type":"FeatureCollection","features":[ +{"type":"Feature","id":"AFG","properties":{"name":"Afghanistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[62.230651,35.270664],[62.984662,35.404041],[63.193538,35.857166],[63.982896,36.007957],[64.546479,36.312073],[64.746105,37.111818],[65.588948,37.305217],[65.745631,37.661164],[66.217385,37.39379],[66.518607,37.362784],[67.075782,37.356144],[67.83,37.144994],[68.135562,37.023115],[68.859446,37.344336],[69.196273,37.151144],[69.518785,37.608997],[70.116578,37.588223],[70.270574,37.735165],[70.376304,38.138396],[70.806821,38.486282],[71.348131,38.258905],[71.239404,37.953265],[71.541918,37.905774],[71.448693,37.065645],[71.844638,36.738171],[72.193041,36.948288],[72.63689,37.047558],[73.260056,37.495257],[73.948696,37.421566],[74.980002,37.41999],[75.158028,37.133031],[74.575893,37.020841],[74.067552,36.836176],[72.920025,36.720007],[71.846292,36.509942],[71.262348,36.074388],[71.498768,35.650563],[71.613076,35.153203],[71.115019,34.733126],[71.156773,34.348911],[70.881803,33.988856],[69.930543,34.02012],[70.323594,33.358533],[69.687147,33.105499],[69.262522,32.501944],[69.317764,31.901412],[68.926677,31.620189],[68.556932,31.71331],[67.792689,31.58293],[67.683394,31.303154],[66.938891,31.304911],[66.381458,30.738899],[66.346473,29.887943],[65.046862,29.472181],[64.350419,29.560031],[64.148002,29.340819],[63.550261,29.468331],[62.549857,29.318572],[60.874248,29.829239],[61.781222,30.73585],[61.699314,31.379506],[60.941945,31.548075],[60.863655,32.18292],[60.536078,32.981269],[60.9637,33.528832],[60.52843,33.676446],[60.803193,34.404102],[61.210817,35.650072]]]}}, +{"type":"Feature","id":"AGO","properties":{"name":"Angola"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.326528,-5.87747],[16.57318,-6.622645],[16.860191,-7.222298],[17.089996,-7.545689],[17.47297,-8.068551],[18.134222,-7.987678],[18.464176,-7.847014],[19.016752,-7.988246],[19.166613,-7.738184],[19.417502,-7.155429],[20.037723,-7.116361],[20.091622,-6.94309],[20.601823,-6.939318],[20.514748,-7.299606],[21.728111,-7.290872],[21.746456,-7.920085],[21.949131,-8.305901],[21.801801,-8.908707],[21.875182,-9.523708],[22.208753,-9.894796],[22.155268,-11.084801],[22.402798,-10.993075],[22.837345,-11.017622],[23.456791,-10.867863],[23.912215,-10.926826],[24.017894,-11.237298],[23.904154,-11.722282],[24.079905,-12.191297],[23.930922,-12.565848],[24.016137,-12.911046],[21.933886,-12.898437],[21.887843,-16.08031],[22.562478,-16.898451],[23.215048,-17.523116],[21.377176,-17.930636],[18.956187,-17.789095],[18.263309,-17.309951],[14.209707,-17.353101],[14.058501,-17.423381],[13.462362,-16.971212],[12.814081,-16.941343],[12.215461,-17.111668],[11.734199,-17.301889],[11.640096,-16.673142],[11.778537,-15.793816],[12.123581,-14.878316],[12.175619,-14.449144],[12.500095,-13.5477],[12.738479,-13.137906],[13.312914,-12.48363],[13.633721,-12.038645],[13.738728,-11.297863],[13.686379,-10.731076],[13.387328,-10.373578],[13.120988,-9.766897],[12.87537,-9.166934],[12.929061,-8.959091],[13.236433,-8.562629],[12.93304,-7.596539],[12.728298,-6.927122],[12.227347,-6.294448],[12.322432,-6.100092],[12.735171,-5.965682],[13.024869,-5.984389],[13.375597,-5.864241],[16.326528,-5.87747]]],[[[12.436688,-5.684304],[12.182337,-5.789931],[11.914963,-5.037987],[12.318608,-4.60623],[12.62076,-4.438023],[12.995517,-4.781103],[12.631612,-4.991271],[12.468004,-5.248362],[12.436688,-5.684304]]]]}}, +{"type":"Feature","id":"ALB","properties":{"name":"Albania"},"geometry":{"type":"Polygon","coordinates":[[[20.590247,41.855404],[20.463175,41.515089],[20.605182,41.086226],[21.02004,40.842727],[20.99999,40.580004],[20.674997,40.435],[20.615,40.110007],[20.150016,39.624998],[19.98,39.694993],[19.960002,39.915006],[19.406082,40.250773],[19.319059,40.72723],[19.40355,41.409566],[19.540027,41.719986],[19.371769,41.877548],[19.304486,42.195745],[19.738051,42.688247],[19.801613,42.500093],[20.0707,42.58863],[20.283755,42.32026],[20.52295,42.21787],[20.590247,41.855404]]]}}, +{"type":"Feature","id":"ARE","properties":{"name":"United Arab Emirates"},"geometry":{"type":"Polygon","coordinates":[[[51.579519,24.245497],[51.757441,24.294073],[51.794389,24.019826],[52.577081,24.177439],[53.404007,24.151317],[54.008001,24.121758],[54.693024,24.797892],[55.439025,25.439145],[56.070821,26.055464],[56.261042,25.714606],[56.396847,24.924732],[55.886233,24.920831],[55.804119,24.269604],[55.981214,24.130543],[55.528632,23.933604],[55.525841,23.524869],[55.234489,23.110993],[55.208341,22.70833],[55.006803,22.496948],[52.000733,23.001154],[51.617708,24.014219],[51.579519,24.245497]]]}}, +{"type":"Feature","id":"ARG","properties":{"name":"Argentina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401,-52.63637],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]]}}, +{"type":"Feature","id":"ARM","properties":{"name":"Armenia"},"geometry":{"type":"Polygon","coordinates":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]}}, +{"type":"Feature","id":"ATA","properties":{"name":"Antarctica"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.572095,-80.040179],[-59.865849,-80.549657],[-60.159656,-81.000327],[-62.255393,-80.863178],[-64.488125,-80.921934],[-65.741666,-80.588827],[-65.741666,-80.549657],[-66.290031,-80.255773],[-64.037688,-80.294944],[-61.883246,-80.39287],[-61.138976,-79.981371],[-60.610119,-79.628679],[-59.572095,-80.040179]]],[[[-159.208184,-79.497059],[-161.127601,-79.634209],[-162.439847,-79.281465],[-163.027408,-78.928774],[-163.066604,-78.869966],[-163.712896,-78.595667],[-163.105801,-78.223338],[-161.245113,-78.380176],[-160.246208,-78.693645],[-159.482405,-79.046338],[-159.208184,-79.497059]]],[[[-45.154758,-78.04707],[-43.920828,-78.478103],[-43.48995,-79.08556],[-43.372438,-79.516645],[-43.333267,-80.026123],[-44.880537,-80.339644],[-46.506174,-80.594357],[-48.386421,-80.829485],[-50.482107,-81.025442],[-52.851988,-80.966685],[-54.164259,-80.633528],[-53.987991,-80.222028],[-51.853134,-79.94773],[-50.991326,-79.614623],[-50.364595,-79.183487],[-49.914131,-78.811209],[-49.306959,-78.458569],[-48.660616,-78.047018],[-48.660616,-78.047019],[-48.151396,-78.04707],[-46.662857,-77.831476],[-45.154758,-78.04707]]],[[[-121.211511,-73.50099],[-119.918851,-73.657725],[-118.724143,-73.481353],[-119.292119,-73.834097],[-120.232217,-74.08881],[-121.62283,-74.010468],[-122.621735,-73.657778],[-122.621735,-73.657777],[-122.406245,-73.324619],[-121.211511,-73.50099]]],[[[-125.559566,-73.481353],[-124.031882,-73.873268],[-124.619469,-73.834097],[-125.912181,-73.736118],[-127.28313,-73.461769],[-127.28313,-73.461768],[-126.558472,-73.246226],[-125.559566,-73.481353]]],[[[-98.98155,-71.933334],[-97.884743,-72.070535],[-96.787937,-71.952971],[-96.20035,-72.521205],[-96.983765,-72.442864],[-98.198083,-72.482035],[-99.432013,-72.442864],[-100.783455,-72.50162],[-101.801868,-72.305663],[-102.330725,-71.894164],[-101.703967,-71.717792],[-100.430919,-71.854993],[-98.98155,-71.933334]]],[[[-68.451346,-70.955823],[-68.333834,-71.406493],[-68.510128,-71.798407],[-68.784297,-72.170736],[-69.959471,-72.307885],[-71.075889,-72.503842],[-72.388134,-72.484257],[-71.8985,-72.092343],[-73.073622,-72.229492],[-74.19004,-72.366693],[-74.953895,-72.072757],[-75.012625,-71.661258],[-73.915819,-71.269345],[-73.915819,-71.269344],[-73.230331,-71.15178],[-72.074717,-71.190951],[-71.780962,-70.681473],[-71.72218,-70.309196],[-71.741791,-69.505782],[-71.173815,-69.035475],[-70.253252,-68.87874],[-69.724447,-69.251017],[-69.489422,-69.623346],[-69.058518,-70.074016],[-68.725541,-70.505153],[-68.451346,-70.955823]]],[[[-58.614143,-64.152467],[-59.045073,-64.36801],[-59.789342,-64.211223],[-60.611928,-64.309202],[-61.297416,-64.54433],[-62.0221,-64.799094],[-62.51176,-65.09303],[-62.648858,-65.484942],[-62.590128,-65.857219],[-62.120079,-66.190326],[-62.805567,-66.425505],[-63.74569,-66.503847],[-64.294106,-66.837004],[-64.881693,-67.150474],[-65.508425,-67.58161],[-65.665082,-67.953887],[-65.312545,-68.365335],[-64.783715,-68.678908],[-63.961103,-68.913984],[-63.1973,-69.227556],[-62.785955,-69.619419],[-62.570516,-69.991747],[-62.276736,-70.383661],[-61.806661,-70.716768],[-61.512906,-71.089045],[-61.375809,-72.010074],[-61.081977,-72.382351],[-61.003661,-72.774265],[-60.690269,-73.166179],[-60.827367,-73.695242],[-61.375809,-74.106742],[-61.96337,-74.439848],[-63.295201,-74.576997],[-63.74569,-74.92974],[-64.352836,-75.262847],[-65.860987,-75.635124],[-67.192818,-75.79191],[-68.446282,-76.007452],[-69.797724,-76.222995],[-70.600724,-76.634494],[-72.206776,-76.673665],[-73.969536,-76.634494],[-75.555977,-76.712887],[-77.24037,-76.712887],[-76.926979,-77.104802],[-75.399294,-77.28107],[-74.282876,-77.55542],[-73.656119,-77.908112],[-74.772536,-78.221633],[-76.4961,-78.123654],[-77.925858,-78.378419],[-77.984666,-78.789918],[-78.023785,-79.181833],[-76.848637,-79.514939],[-76.633224,-79.887216],[-75.360097,-80.259545],[-73.244852,-80.416331],[-71.442946,-80.69063],[-70.013163,-81.004151],[-68.191646,-81.317672],[-65.704279,-81.474458],[-63.25603,-81.748757],[-61.552026,-82.042692],[-59.691416,-82.37585],[-58.712121,-82.846106],[-58.222487,-83.218434],[-57.008117,-82.865691],[-55.362894,-82.571755],[-53.619771,-82.258235],[-51.543644,-82.003521],[-49.76135,-81.729171],[-47.273931,-81.709586],[-44.825708,-81.846735],[-42.808363,-82.081915],[-42.16202,-81.65083],[-40.771433,-81.356894],[-38.244818,-81.337309],[-36.26667,-81.121715],[-34.386397,-80.906172],[-32.310296,-80.769023],[-30.097098,-80.592651],[-28.549802,-80.337938],[-29.254901,-79.985195],[-29.685805,-79.632503],[-29.685805,-79.260226],[-31.624808,-79.299397],[-33.681324,-79.456132],[-35.639912,-79.456132],[-35.914107,-79.083855],[-35.77701,-78.339248],[-35.326546,-78.123654],[-33.896763,-77.888526],[-32.212369,-77.65345],[-30.998051,-77.359515],[-29.783732,-77.065579],[-28.882779,-76.673665],[-27.511752,-76.497345],[-26.160336,-76.360144],[-25.474822,-76.281803],[-23.927552,-76.24258],[-22.458598,-76.105431],[-21.224694,-75.909474],[-20.010375,-75.674346],[-18.913543,-75.439218],[-17.522982,-75.125698],[-16.641589,-74.79254],[-15.701491,-74.498604],[-15.40771,-74.106742],[-16.46532,-73.871614],[-16.112784,-73.460114],[-15.446855,-73.146542],[-14.408805,-72.950585],[-13.311973,-72.715457],[-12.293508,-72.401936],[-11.510067,-72.010074],[-11.020433,-71.539767],[-10.295774,-71.265416],[-9.101015,-71.324224],[-8.611381,-71.65733],[-7.416622,-71.696501],[-7.377451,-71.324224],[-6.868232,-70.93231],[-5.790985,-71.030289],[-5.536375,-71.402617],[-4.341667,-71.461373],[-3.048981,-71.285053],[-1.795492,-71.167438],[-0.659489,-71.226246],[-0.228637,-71.637745],[0.868195,-71.304639],[1.886686,-71.128267],[3.022638,-70.991118],[4.139055,-70.853917],[5.157546,-70.618789],[6.273912,-70.462055],[7.13572,-70.246512],[7.742866,-69.893769],[8.48711,-70.148534],[9.525135,-70.011333],[10.249845,-70.48164],[10.817821,-70.834332],[11.953824,-70.638375],[12.404287,-70.246512],[13.422778,-69.972162],[14.734998,-70.030918],[15.126757,-70.403247],[15.949342,-70.030918],[17.026589,-69.913354],[18.201711,-69.874183],[19.259373,-69.893769],[20.375739,-70.011333],[21.452985,-70.07014],[21.923034,-70.403247],[22.569403,-70.697182],[23.666184,-70.520811],[24.841357,-70.48164],[25.977309,-70.48164],[27.093726,-70.462055],[28.09258,-70.324854],[29.150242,-70.20729],[30.031583,-69.93294],[30.971733,-69.75662],[31.990172,-69.658641],[32.754053,-69.384291],[33.302443,-68.835642],[33.870419,-68.502588],[34.908495,-68.659271],[35.300202,-69.012014],[36.16201,-69.247142],[37.200035,-69.168748],[37.905108,-69.52144],[38.649404,-69.776205],[39.667894,-69.541077],[40.020431,-69.109941],[40.921358,-68.933621],[41.959434,-68.600514],[42.938702,-68.463313],[44.113876,-68.267408],[44.897291,-68.051866],[45.719928,-67.816738],[46.503343,-67.601196],[47.44344,-67.718759],[48.344419,-67.366068],[48.990736,-67.091718],[49.930885,-67.111303],[50.753471,-66.876175],[50.949325,-66.523484],[51.791547,-66.249133],[52.614133,-66.053176],[53.613038,-65.89639],[54.53355,-65.818049],[55.414943,-65.876805],[56.355041,-65.974783],[57.158093,-66.249133],[57.255968,-66.680218],[58.137361,-67.013324],[58.744508,-67.287675],[59.939318,-67.405239],[60.605221,-67.679589],[61.427806,-67.953887],[62.387489,-68.012695],[63.19049,-67.816738],[64.052349,-67.405239],[64.992447,-67.620729],[65.971715,-67.738345],[66.911864,-67.855909],[67.891133,-67.934302],[68.890038,-67.934302],[69.712624,-68.972791],[69.673453,-69.227556],[69.555941,-69.678226],[68.596258,-69.93294],[67.81274,-70.305268],[67.949889,-70.697182],[69.066307,-70.677545],[68.929157,-71.069459],[68.419989,-71.441788],[67.949889,-71.853287],[68.71377,-72.166808],[69.869307,-72.264787],[71.024895,-72.088415],[71.573285,-71.696501],[71.906288,-71.324224],[72.454627,-71.010703],[73.08141,-70.716768],[73.33602,-70.364024],[73.864877,-69.874183],[74.491557,-69.776205],[75.62756,-69.737034],[76.626465,-69.619419],[77.644904,-69.462684],[78.134539,-69.07077],[78.428371,-68.698441],[79.113859,-68.326216],[80.093127,-68.071503],[80.93535,-67.875546],[81.483792,-67.542388],[82.051767,-67.366068],[82.776426,-67.209282],[83.775331,-67.30726],[84.676206,-67.209282],[85.655527,-67.091718],[86.752359,-67.150474],[87.477017,-66.876175],[87.986289,-66.209911],[88.358411,-66.484261],[88.828408,-66.954568],[89.67063,-67.150474],[90.630365,-67.228867],[91.5901,-67.111303],[92.608539,-67.189696],[93.548637,-67.209282],[94.17542,-67.111303],[95.017591,-67.170111],[95.781472,-67.385653],[96.682399,-67.248504],[97.759646,-67.248504],[98.68021,-67.111303],[99.718182,-67.248504],[100.384188,-66.915346],[100.893356,-66.58224],[101.578896,-66.30789],[102.832411,-65.563284],[103.478676,-65.700485],[104.242557,-65.974783],[104.90846,-66.327527],[106.181561,-66.934931],[107.160881,-66.954568],[108.081393,-66.954568],[109.15864,-66.837004],[110.235835,-66.699804],[111.058472,-66.425505],[111.74396,-66.13157],[112.860378,-66.092347],[113.604673,-65.876805],[114.388088,-66.072762],[114.897308,-66.386283],[115.602381,-66.699804],[116.699161,-66.660633],[117.384701,-66.915346],[118.57946,-67.170111],[119.832924,-67.268089],[120.871,-67.189696],[121.654415,-66.876175],[122.320369,-66.562654],[123.221296,-66.484261],[124.122274,-66.621462],[125.160247,-66.719389],[126.100396,-66.562654],[127.001427,-66.562654],[127.882768,-66.660633],[128.80328,-66.758611],[129.704259,-66.58224],[130.781454,-66.425505],[131.799945,-66.386283],[132.935896,-66.386283],[133.85646,-66.288304],[134.757387,-66.209963],[135.031582,-65.72007],[135.070753,-65.308571],[135.697485,-65.582869],[135.873805,-66.033591],[136.206705,-66.44509],[136.618049,-66.778197],[137.460271,-66.954568],[138.596223,-66.895761],[139.908442,-66.876175],[140.809421,-66.817367],[142.121692,-66.817367],[143.061842,-66.797782],[144.374061,-66.837004],[145.490427,-66.915346],[146.195552,-67.228867],[145.999699,-67.601196],[146.646067,-67.895131],[147.723263,-68.130259],[148.839629,-68.385024],[150.132314,-68.561292],[151.483705,-68.71813],[152.502247,-68.874813],[153.638199,-68.894502],[154.284567,-68.561292],[155.165857,-68.835642],[155.92979,-69.149215],[156.811132,-69.384291],[158.025528,-69.482269],[159.181013,-69.599833],[159.670699,-69.991747],[160.80665,-70.226875],[161.570479,-70.579618],[162.686897,-70.736353],[163.842434,-70.716768],[164.919681,-70.775524],[166.11444,-70.755938],[167.309095,-70.834332],[168.425616,-70.971481],[169.463589,-71.20666],[170.501665,-71.402617],[171.20679,-71.696501],[171.089227,-72.088415],[170.560422,-72.441159],[170.109958,-72.891829],[169.75737,-73.24452],[169.287321,-73.65602],[167.975101,-73.812806],[167.387489,-74.165498],[166.094803,-74.38104],[165.644391,-74.772954],[164.958851,-75.145283],[164.234193,-75.458804],[163.822797,-75.870303],[163.568239,-76.24258],[163.47026,-76.693302],[163.489897,-77.065579],[164.057873,-77.457442],[164.273363,-77.82977],[164.743464,-78.182514],[166.604126,-78.319611],[166.995781,-78.750748],[165.193876,-78.907483],[163.666217,-79.123025],[161.766385,-79.162248],[160.924162,-79.730482],[160.747894,-80.200737],[160.316964,-80.573066],[159.788211,-80.945395],[161.120016,-81.278501],[161.629287,-81.690001],[162.490992,-82.062278],[163.705336,-82.395435],[165.095949,-82.708956],[166.604126,-83.022477],[168.895665,-83.335998],[169.404782,-83.825891],[172.283934,-84.041433],[172.477049,-84.117914],[173.224083,-84.41371],[175.985672,-84.158997],[178.277212,-84.472518],[180,-84.71338],[-179.942499,-84.721443],[-179.058677,-84.139412],[-177.256772,-84.452933],[-177.140807,-84.417941],[-176.084673,-84.099259],[-175.947235,-84.110449],[-175.829882,-84.117914],[-174.382503,-84.534323],[-173.116559,-84.117914],[-172.889106,-84.061019],[-169.951223,-83.884647],[-168.999989,-84.117914],[-168.530199,-84.23739],[-167.022099,-84.570497],[-164.182144,-84.82521],[-161.929775,-85.138731],[-158.07138,-85.37391],[-155.192253,-85.09956],[-150.942099,-85.295517],[-148.533073,-85.609038],[-145.888918,-85.315102],[-143.107718,-85.040752],[-142.892279,-84.570497],[-146.829068,-84.531274],[-150.060732,-84.296146],[-150.902928,-83.904232],[-153.586201,-83.68869],[-153.409907,-83.23802],[-153.037759,-82.82652],[-152.665637,-82.454192],[-152.861517,-82.042692],[-154.526299,-81.768394],[-155.29018,-81.41565],[-156.83745,-81.102129],[-154.408787,-81.160937],[-152.097662,-81.004151],[-150.648293,-81.337309],[-148.865998,-81.043373],[-147.22075,-80.671045],[-146.417749,-80.337938],[-146.770286,-79.926439],[-148.062947,-79.652089],[-149.531901,-79.358205],[-151.588416,-79.299397],[-153.390322,-79.162248],[-155.329376,-79.064269],[-155.975668,-78.69194],[-157.268302,-78.378419],[-158.051768,-78.025676],[-158.365134,-76.889207],[-157.875474,-76.987238],[-156.974573,-77.300759],[-155.329376,-77.202728],[-153.742832,-77.065579],[-152.920247,-77.496664],[-151.33378,-77.398737],[-150.00195,-77.183143],[-148.748486,-76.908845],[-147.612483,-76.575738],[-146.104409,-76.47776],[-146.143528,-76.105431],[-146.496091,-75.733154],[-146.20231,-75.380411],[-144.909624,-75.204039],[-144.322037,-75.537197],[-142.794353,-75.34124],[-141.638764,-75.086475],[-140.209007,-75.06689],[-138.85759,-74.968911],[-137.5062,-74.733783],[-136.428901,-74.518241],[-135.214583,-74.302699],[-134.431194,-74.361455],[-133.745654,-74.439848],[-132.257168,-74.302699],[-130.925311,-74.479019],[-129.554284,-74.459433],[-128.242038,-74.322284],[-126.890622,-74.420263],[-125.402082,-74.518241],[-124.011496,-74.479019],[-122.562152,-74.498604],[-121.073613,-74.518241],[-119.70256,-74.479019],[-118.684145,-74.185083],[-117.469801,-74.028348],[-116.216312,-74.243891],[-115.021552,-74.067519],[-113.944331,-73.714828],[-113.297988,-74.028348],[-112.945452,-74.38104],[-112.299083,-74.714198],[-111.261059,-74.420263],[-110.066325,-74.79254],[-108.714909,-74.910103],[-107.559346,-75.184454],[-106.149148,-75.125698],[-104.876074,-74.949326],[-103.367949,-74.988497],[-102.016507,-75.125698],[-100.645531,-75.302018],[-100.1167,-74.870933],[-100.763043,-74.537826],[-101.252703,-74.185083],[-102.545337,-74.106742],[-103.113313,-73.734413],[-103.328752,-73.362084],[-103.681289,-72.61753],[-102.917485,-72.754679],[-101.60524,-72.813436],[-100.312528,-72.754679],[-99.13738,-72.911414],[-98.118889,-73.20535],[-97.688037,-73.558041],[-96.336595,-73.616849],[-95.043961,-73.4797],[-93.672907,-73.283743],[-92.439003,-73.166179],[-91.420564,-73.401307],[-90.088733,-73.322914],[-89.226951,-72.558722],[-88.423951,-73.009393],[-87.268337,-73.185764],[-86.014822,-73.087786],[-85.192236,-73.4797],[-83.879991,-73.518871],[-82.665646,-73.636434],[-81.470913,-73.851977],[-80.687447,-73.4797],[-80.295791,-73.126956],[-79.296886,-73.518871],[-77.925858,-73.420892],[-76.907367,-73.636434],[-76.221879,-73.969541],[-74.890049,-73.871614],[-73.852024,-73.65602],[-72.833533,-73.401307],[-71.619215,-73.264157],[-70.209042,-73.146542],[-68.935916,-73.009393],[-67.956622,-72.79385],[-67.369061,-72.480329],[-67.134036,-72.049244],[-67.251548,-71.637745],[-67.56494,-71.245831],[-67.917477,-70.853917],[-68.230843,-70.462055],[-68.485452,-70.109311],[-68.544209,-69.717397],[-68.446282,-69.325535],[-67.976233,-68.953206],[-67.5845,-68.541707],[-67.427843,-68.149844],[-67.62367,-67.718759],[-67.741183,-67.326845],[-67.251548,-66.876175],[-66.703184,-66.58224],[-66.056815,-66.209963],[-65.371327,-65.89639],[-64.568276,-65.602506],[-64.176542,-65.171423],[-63.628152,-64.897073],[-63.001394,-64.642308],[-62.041686,-64.583552],[-61.414928,-64.270031],[-60.709855,-64.074074],[-59.887269,-63.95651],[-59.162585,-63.701745],[-58.594557,-63.388224],[-57.811143,-63.27066],[-57.223582,-63.525425],[-57.59573,-63.858532],[-58.614143,-64.152467]]]]}}, +{"type":"Feature","id":"ATF","properties":{"name":"French Southern and Antarctic Lands"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]}}, +{"type":"Feature","id":"AUS","properties":{"name":"Australia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.397978,-40.792549],[146.364121,-41.137695],[146.908584,-41.000546],[147.689259,-40.808258],[148.289068,-40.875438],[148.359865,-42.062445],[148.017301,-42.407024],[147.914052,-43.211522],[147.564564,-42.937689],[146.870343,-43.634597],[146.663327,-43.580854],[146.048378,-43.549745],[145.43193,-42.693776],[145.29509,-42.03361],[144.718071,-41.162552],[144.743755,-40.703975],[145.397978,-40.792549]]],[[[143.561811,-13.763656],[143.922099,-14.548311],[144.563714,-14.171176],[144.894908,-14.594458],[145.374724,-14.984976],[145.271991,-15.428205],[145.48526,-16.285672],[145.637033,-16.784918],[145.888904,-16.906926],[146.160309,-17.761655],[146.063674,-18.280073],[146.387478,-18.958274],[147.471082,-19.480723],[148.177602,-19.955939],[148.848414,-20.39121],[148.717465,-20.633469],[149.28942,-21.260511],[149.678337,-22.342512],[150.077382,-22.122784],[150.482939,-22.556142],[150.727265,-22.402405],[150.899554,-23.462237],[151.609175,-24.076256],[152.07354,-24.457887],[152.855197,-25.267501],[153.136162,-26.071173],[153.161949,-26.641319],[153.092909,-27.2603],[153.569469,-28.110067],[153.512108,-28.995077],[153.339095,-29.458202],[153.069241,-30.35024],[153.089602,-30.923642],[152.891578,-31.640446],[152.450002,-32.550003],[151.709117,-33.041342],[151.343972,-33.816023],[151.010555,-34.31036],[150.714139,-35.17346],[150.32822,-35.671879],[150.075212,-36.420206],[149.946124,-37.109052],[149.997284,-37.425261],[149.423882,-37.772681],[148.304622,-37.809061],[147.381733,-38.219217],[146.922123,-38.606532],[146.317922,-39.035757],[145.489652,-38.593768],[144.876976,-38.417448],[145.032212,-37.896188],[144.485682,-38.085324],[143.609974,-38.809465],[142.745427,-38.538268],[142.17833,-38.380034],[141.606582,-38.308514],[140.638579,-38.019333],[139.992158,-37.402936],[139.806588,-36.643603],[139.574148,-36.138362],[139.082808,-35.732754],[138.120748,-35.612296],[138.449462,-35.127261],[138.207564,-34.384723],[137.71917,-35.076825],[136.829406,-35.260535],[137.352371,-34.707339],[137.503886,-34.130268],[137.890116,-33.640479],[137.810328,-32.900007],[136.996837,-33.752771],[136.372069,-34.094766],[135.989043,-34.890118],[135.208213,-34.47867],[135.239218,-33.947953],[134.613417,-33.222778],[134.085904,-32.848072],[134.273903,-32.617234],[132.990777,-32.011224],[132.288081,-31.982647],[131.326331,-31.495803],[129.535794,-31.590423],[128.240938,-31.948489],[127.102867,-32.282267],[126.148714,-32.215966],[125.088623,-32.728751],[124.221648,-32.959487],[124.028947,-33.483847],[123.659667,-33.890179],[122.811036,-33.914467],[122.183064,-34.003402],[121.299191,-33.821036],[120.580268,-33.930177],[119.893695,-33.976065],[119.298899,-34.509366],[119.007341,-34.464149],[118.505718,-34.746819],[118.024972,-35.064733],[117.295507,-35.025459],[116.625109,-35.025097],[115.564347,-34.386428],[115.026809,-34.196517],[115.048616,-33.623425],[115.545123,-33.487258],[115.714674,-33.259572],[115.679379,-32.900369],[115.801645,-32.205062],[115.689611,-31.612437],[115.160909,-30.601594],[114.997043,-30.030725],[115.040038,-29.461095],[114.641974,-28.810231],[114.616498,-28.516399],[114.173579,-28.118077],[114.048884,-27.334765],[113.477498,-26.543134],[113.338953,-26.116545],[113.778358,-26.549025],[113.440962,-25.621278],[113.936901,-25.911235],[114.232852,-26.298446],[114.216161,-25.786281],[113.721255,-24.998939],[113.625344,-24.683971],[113.393523,-24.384764],[113.502044,-23.80635],[113.706993,-23.560215],[113.843418,-23.059987],[113.736552,-22.475475],[114.149756,-21.755881],[114.225307,-22.517488],[114.647762,-21.82952],[115.460167,-21.495173],[115.947373,-21.068688],[116.711615,-20.701682],[117.166316,-20.623599],[117.441545,-20.746899],[118.229559,-20.374208],[118.836085,-20.263311],[118.987807,-20.044203],[119.252494,-19.952942],[119.805225,-19.976506],[120.85622,-19.683708],[121.399856,-19.239756],[121.655138,-18.705318],[122.241665,-18.197649],[122.286624,-17.798603],[122.312772,-17.254967],[123.012574,-16.4052],[123.433789,-17.268558],[123.859345,-17.069035],[123.503242,-16.596506],[123.817073,-16.111316],[124.258287,-16.327944],[124.379726,-15.56706],[124.926153,-15.0751],[125.167275,-14.680396],[125.670087,-14.51007],[125.685796,-14.230656],[126.125149,-14.347341],[126.142823,-14.095987],[126.582589,-13.952791],[127.065867,-13.817968],[127.804633,-14.276906],[128.35969,-14.86917],[128.985543,-14.875991],[129.621473,-14.969784],[129.4096,-14.42067],[129.888641,-13.618703],[130.339466,-13.357376],[130.183506,-13.10752],[130.617795,-12.536392],[131.223495,-12.183649],[131.735091,-12.302453],[132.575298,-12.114041],[132.557212,-11.603012],[131.824698,-11.273782],[132.357224,-11.128519],[133.019561,-11.376411],[133.550846,-11.786515],[134.393068,-12.042365],[134.678632,-11.941183],[135.298491,-12.248606],[135.882693,-11.962267],[136.258381,-12.049342],[136.492475,-11.857209],[136.95162,-12.351959],[136.685125,-12.887223],[136.305407,-13.29123],[135.961758,-13.324509],[136.077617,-13.724278],[135.783836,-14.223989],[135.428664,-14.715432],[135.500184,-14.997741],[136.295175,-15.550265],[137.06536,-15.870762],[137.580471,-16.215082],[138.303217,-16.807604],[138.585164,-16.806622],[139.108543,-17.062679],[139.260575,-17.371601],[140.215245,-17.710805],[140.875463,-17.369069],[141.07111,-16.832047],[141.274095,-16.38887],[141.398222,-15.840532],[141.702183,-15.044921],[141.56338,-14.561333],[141.63552,-14.270395],[141.519869,-13.698078],[141.65092,-12.944688],[141.842691,-12.741548],[141.68699,-12.407614],[141.928629,-11.877466],[142.118488,-11.328042],[142.143706,-11.042737],[142.51526,-10.668186],[142.79731,-11.157355],[142.866763,-11.784707],[143.115947,-11.90563],[143.158632,-12.325656],[143.522124,-12.834358],[143.597158,-13.400422],[143.561811,-13.763656]]]]}}, +{"type":"Feature","id":"AUT","properties":{"name":"Austria"},"geometry":{"type":"Polygon","coordinates":[[[16.979667,48.123497],[16.903754,47.714866],[16.340584,47.712902],[16.534268,47.496171],[16.202298,46.852386],[16.011664,46.683611],[15.137092,46.658703],[14.632472,46.431817],[13.806475,46.509306],[12.376485,46.767559],[12.153088,47.115393],[11.164828,46.941579],[11.048556,46.751359],[10.442701,46.893546],[9.932448,46.920728],[9.47997,47.10281],[9.632932,47.347601],[9.594226,47.525058],[9.896068,47.580197],[10.402084,47.302488],[10.544504,47.566399],[11.426414,47.523766],[12.141357,47.703083],[12.62076,47.672388],[12.932627,47.467646],[13.025851,47.637584],[12.884103,48.289146],[13.243357,48.416115],[13.595946,48.877172],[14.338898,48.555305],[14.901447,48.964402],[15.253416,49.039074],[16.029647,48.733899],[16.499283,48.785808],[16.960288,48.596982],[16.879983,48.470013],[16.979667,48.123497]]]}}, +{"type":"Feature","id":"AZE","properties":{"name":"Azerbaijan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]]],[[[47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]]]]}}, +{"type":"Feature","id":"BDI","properties":{"name":"Burundi"},"geometry":{"type":"Polygon","coordinates":[[[29.339998,-4.499983],[29.276384,-3.293907],[29.024926,-2.839258],[29.632176,-2.917858],[29.938359,-2.348487],[30.469696,-2.413858],[30.527677,-2.807632],[30.743013,-3.034285],[30.752263,-3.35933],[30.50556,-3.568567],[30.116333,-4.090138],[29.753512,-4.452389],[29.339998,-4.499983]]]}}, +{"type":"Feature","id":"BEL","properties":{"name":"Belgium"},"geometry":{"type":"Polygon","coordinates":[[[3.314971,51.345781],[4.047071,51.267259],[4.973991,51.475024],[5.606976,51.037298],[6.156658,50.803721],[6.043073,50.128052],[5.782417,50.090328],[5.674052,49.529484],[4.799222,49.985373],[4.286023,49.907497],[3.588184,50.378992],[3.123252,50.780363],[2.658422,50.796848],[2.513573,51.148506],[3.314971,51.345781]]]}}, +{"type":"Feature","id":"BEN","properties":{"name":"Benin"},"geometry":{"type":"Polygon","coordinates":[[[2.691702,6.258817],[1.865241,6.142158],[1.618951,6.832038],[1.664478,9.12859],[1.463043,9.334624],[1.425061,9.825395],[1.077795,10.175607],[0.772336,10.470808],[0.899563,10.997339],[1.24347,11.110511],[1.447178,11.547719],[1.935986,11.64115],[2.154474,11.94015],[2.490164,12.233052],[2.848643,12.235636],[3.61118,11.660167],[3.572216,11.327939],[3.797112,10.734746],[3.60007,10.332186],[3.705438,10.06321],[3.220352,9.444153],[2.912308,9.137608],[2.723793,8.506845],[2.749063,7.870734],[2.691702,6.258817]]]}}, +{"type":"Feature","id":"BFA","properties":{"name":"Burkina Faso"},"geometry":{"type":"Polygon","coordinates":[[[-2.827496,9.642461],[-3.511899,9.900326],[-3.980449,9.862344],[-4.330247,9.610835],[-4.779884,9.821985],[-4.954653,10.152714],[-5.404342,10.370737],[-5.470565,10.95127],[-5.197843,11.375146],[-5.220942,11.713859],[-4.427166,12.542646],[-4.280405,13.228444],[-4.006391,13.472485],[-3.522803,13.337662],[-3.103707,13.541267],[-2.967694,13.79815],[-2.191825,14.246418],[-2.001035,14.559008],[-1.066363,14.973815],[-0.515854,15.116158],[-0.266257,14.924309],[0.374892,14.928908],[0.295646,14.444235],[0.429928,13.988733],[0.993046,13.33575],[1.024103,12.851826],[2.177108,12.625018],[2.154474,11.94015],[1.935986,11.64115],[1.447178,11.547719],[1.24347,11.110511],[0.899563,10.997339],[0.023803,11.018682],[-0.438702,11.098341],[-0.761576,10.93693],[-1.203358,11.009819],[-2.940409,10.96269],[-2.963896,10.395335],[-2.827496,9.642461]]]}}, +{"type":"Feature","id":"BGD","properties":{"name":"Bangladesh"},"geometry":{"type":"Polygon","coordinates":[[[92.672721,22.041239],[92.652257,21.324048],[92.303234,21.475485],[92.368554,20.670883],[92.082886,21.192195],[92.025215,21.70157],[91.834891,22.182936],[91.417087,22.765019],[90.496006,22.805017],[90.586957,22.392794],[90.272971,21.836368],[89.847467,22.039146],[89.70205,21.857116],[89.418863,21.966179],[89.031961,22.055708],[88.876312,22.879146],[88.52977,23.631142],[88.69994,24.233715],[88.084422,24.501657],[88.306373,24.866079],[88.931554,25.238692],[88.209789,25.768066],[88.563049,26.446526],[89.355094,26.014407],[89.832481,25.965082],[89.920693,25.26975],[90.872211,25.132601],[91.799596,25.147432],[92.376202,24.976693],[91.915093,24.130414],[91.46773,24.072639],[91.158963,23.503527],[91.706475,22.985264],[91.869928,23.624346],[92.146035,23.627499],[92.672721,22.041239]]]}}, +{"type":"Feature","id":"BGR","properties":{"name":"Bulgaria"},"geometry":{"type":"Polygon","coordinates":[[[22.65715,44.234923],[22.944832,43.823785],[23.332302,43.897011],[24.100679,43.741051],[25.569272,43.688445],[26.065159,43.943494],[27.2424,44.175986],[27.970107,43.812468],[28.558081,43.707462],[28.039095,43.293172],[27.673898,42.577892],[27.99672,42.007359],[27.135739,42.141485],[26.117042,41.826905],[26.106138,41.328899],[25.197201,41.234486],[24.492645,41.583896],[23.692074,41.309081],[22.952377,41.337994],[22.881374,41.999297],[22.380526,42.32026],[22.545012,42.461362],[22.436595,42.580321],[22.604801,42.898519],[22.986019,43.211161],[22.500157,43.642814],[22.410446,44.008063],[22.65715,44.234923]]]}}, +{"type":"Feature","id":"BHS","properties":{"name":"The Bahamas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]}}, +{"type":"Feature","id":"BIH","properties":{"name":"Bosnia and Herzegovina"},"geometry":{"type":"Polygon","coordinates":[[[19.005486,44.860234],[19.36803,44.863],[19.11761,44.42307],[19.59976,44.03847],[19.454,43.5681],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674922,43.028563],[17.297373,43.446341],[16.916156,43.667722],[16.456443,44.04124],[16.23966,44.351143],[15.750026,44.818712],[15.959367,45.233777],[16.318157,45.004127],[16.534939,45.211608],[17.002146,45.233777],[17.861783,45.06774],[18.553214,45.08159],[19.005486,44.860234]]]}}, +{"type":"Feature","id":"BLR","properties":{"name":"Belarus"},"geometry":{"type":"Polygon","coordinates":[[[23.484128,53.912498],[24.450684,53.905702],[25.536354,54.282423],[25.768433,54.846963],[26.588279,55.167176],[26.494331,55.615107],[27.10246,55.783314],[28.176709,56.16913],[29.229513,55.918344],[29.371572,55.670091],[29.896294,55.789463],[30.873909,55.550976],[30.971836,55.081548],[30.757534,54.811771],[31.384472,54.157056],[31.791424,53.974639],[31.731273,53.794029],[32.405599,53.618045],[32.693643,53.351421],[32.304519,53.132726],[31.497644,53.167427],[31.305201,53.073996],[31.540018,52.742052],[31.785998,52.101678],[30.927549,52.042353],[30.619454,51.822806],[30.555117,51.319503],[30.157364,51.416138],[29.254938,51.368234],[28.992835,51.602044],[28.617613,51.427714],[28.241615,51.572227],[27.454066,51.592303],[26.337959,51.832289],[25.327788,51.910656],[24.553106,51.888461],[24.005078,51.617444],[23.527071,51.578454],[23.508002,52.023647],[23.199494,52.486977],[23.799199,52.691099],[23.804935,53.089731],[23.527536,53.470122],[23.484128,53.912498]]]}}, +{"type":"Feature","id":"BLZ","properties":{"name":"Belize"},"geometry":{"type":"Polygon","coordinates":[[[-89.14308,17.808319],[-89.150909,17.955468],[-89.029857,18.001511],[-88.848344,17.883198],[-88.490123,18.486831],[-88.300031,18.499982],[-88.296336,18.353273],[-88.106813,18.348674],[-88.123479,18.076675],[-88.285355,17.644143],[-88.197867,17.489475],[-88.302641,17.131694],[-88.239518,17.036066],[-88.355428,16.530774],[-88.551825,16.265467],[-88.732434,16.233635],[-88.930613,15.887273],[-89.229122,15.886938],[-89.150806,17.015577],[-89.14308,17.808319]]]}}, +{"type":"Feature","id":"BMU","properties":{"name":"Bermuda"},"geometry":{"type":"Polygon","coordinates":[[[-64.7799734332998,32.3072000581802],[-64.7873319183061,32.3039237143428],[-64.7946942710173,32.3032682700388],[-64.8094297981283,32.3098175728414],[-64.8167896352437,32.3058845718466],[-64.8101968029642,32.3022833180511],[-64.7962291465484,32.2934409732427],[-64.7815086336978,32.2868973114514],[-64.7997025513437,32.2796896417328],[-64.8066707691087,32.2747767569465],[-64.8225587873683,32.2669111289395],[-64.8287548840306,32.2669075473817],[-64.8306732143498,32.2583944840235],[-64.8399924854972,32.254782282336],[-64.8566090462354,32.2547740387514],[-64.8682296789446,32.2616393614322],[-64.8628241459563,32.2724481933959],[-64.8748651338951,32.2757120264753],[-64.8717752856644,32.2819371582026],[-64.8671422127295,32.2930760547989],[-64.8559068764437,32.2960321186471],[-64.8597429072279,32.3015842021933],[-64.8439233486717,32.3140553852543],[-64.8350242329311,32.3242161760006],[-64.8338690593672,32.3294587561557],[-64.8520298651164,32.3110911879954],[-64.8635922932573,32.3048469433363],[-64.8686668994079,32.30910745083],[-64.8721354593415,32.3041908606301],[-64.8779667328485,32.3038632800462],[-64.8780046844321,32.2907757831692],[-64.8849776658292,32.2819261366004],[-64.8783230004629,32.2613001418681],[-64.863194968877,32.2465799485801],[-64.8519819555722,32.2485519134663],[-64.842311980074,32.2492123317296],[-64.8388242605209,32.2475773472534],[-64.8334002575532,32.2462714714698],[-64.8256389530584,32.2472637398594],[-64.8205697556026,32.2531698880328],[-64.8105087275579,32.2561208974156],[-64.7900177727338,32.2659446936992],[-64.7745415970416,32.2718413023427],[-64.7644742436426,32.2855931353214],[-64.7551803442276,32.2908326702531],[-64.7423982971436,32.2996734994024],[-64.7206991797682,32.3137542201258],[-64.7117851247134,32.3176823360806],[-64.6962778813133,32.3275029115532],[-64.6768921127452,32.3324095397555],[-64.6567136927777,32.3451776458469],[-64.6532168823499,32.3494356627941],[-64.6605720384429,32.3589423487763],[-64.65125819471,32.3615600906466],[-64.6462011670816,32.36975169749],[-64.6613227512832,32.3763135008721],[-64.6690666074397,32.388444543924],[-64.6834270548595,32.3854968316788],[-64.6954617672714,32.3763221285869],[-64.70438689565,32.3704254760469],[-64.7117569982798,32.368132600249],[-64.7061764744404,32.3600110593559],[-64.700531552697,32.3590601356818],[-64.6940348033967,32.3640708659835],[-64.6895164826082,32.3633598579866],[-64.6864150099255,32.3547797587266],[-64.6824635995504,32.3540628176846],[-64.6835876652835,32.3626447677968],[-64.6801998697415,32.3631199096979],[-64.6672170444687,32.3597751617473],[-64.6598811264978,32.3497625771755],[-64.6737331235384,32.3390281851635],[-64.6887090648183,32.3342439408053],[-64.706732854446,32.3429010723036],[-64.7149301576112,32.3552188753513],[-64.7185967666669,32.3552239212394],[-64.7214189847314,32.3518830231342],[-64.7270616067222,32.3466461715475],[-64.734962460882,32.3442819830499],[-64.7383521549094,32.3407216514918],[-64.7411729976333,32.3311790864627],[-64.7423019216485,32.323311561213],[-64.7462482354281,32.318538611581],[-64.7566773739613,32.3130509130175],[-64.768738200563,32.3088369816572],[-64.7799734332998,32.3072000581802]]]}}, +{"type":"Feature","id":"BOL","properties":{"name":"Bolivia"},"geometry":{"type":"Polygon","coordinates":[[[-62.846468,-22.034985],[-63.986838,-21.993644],[-64.377021,-22.798091],[-64.964892,-22.075862],[-66.273339,-21.83231],[-67.106674,-22.735925],[-67.82818,-22.872919],[-68.219913,-21.494347],[-68.757167,-20.372658],[-68.442225,-19.405068],[-68.966818,-18.981683],[-69.100247,-18.260125],[-69.590424,-17.580012],[-68.959635,-16.500698],[-69.389764,-15.660129],[-69.160347,-15.323974],[-69.339535,-14.953195],[-68.948887,-14.453639],[-68.929224,-13.602684],[-68.88008,-12.899729],[-68.66508,-12.5613],[-69.529678,-10.951734],[-68.786158,-11.03638],[-68.271254,-11.014521],[-68.048192,-10.712059],[-67.173801,-10.306812],[-66.646908,-9.931331],[-65.338435,-9.761988],[-65.444837,-10.511451],[-65.321899,-10.895872],[-65.402281,-11.56627],[-64.316353,-12.461978],[-63.196499,-12.627033],[-62.80306,-13.000653],[-62.127081,-13.198781],[-61.713204,-13.489202],[-61.084121,-13.479384],[-60.503304,-13.775955],[-60.459198,-14.354007],[-60.264326,-14.645979],[-60.251149,-15.077219],[-60.542966,-15.09391],[-60.15839,-16.258284],[-58.24122,-16.299573],[-58.388058,-16.877109],[-58.280804,-17.27171],[-57.734558,-17.552468],[-57.498371,-18.174188],[-57.676009,-18.96184],[-57.949997,-19.400004],[-57.853802,-19.969995],[-58.166392,-20.176701],[-58.183471,-19.868399],[-59.115042,-19.356906],[-60.043565,-19.342747],[-61.786326,-19.633737],[-62.265961,-20.513735],[-62.291179,-21.051635],[-62.685057,-22.249029],[-62.846468,-22.034985]]]}}, +{"type":"Feature","id":"BRA","properties":{"name":"Brazil"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.2909,-28.852761],[-55.162286,-27.881915],[-54.490725,-27.474757],[-53.648735,-26.923473],[-53.628349,-26.124865],[-54.13005,-25.547639],[-54.625291,-25.739255],[-54.428946,-25.162185],[-54.293476,-24.5708],[-54.29296,-24.021014],[-54.652834,-23.839578],[-55.027902,-24.001274],[-55.400747,-23.956935],[-55.517639,-23.571998],[-55.610683,-22.655619],[-55.797958,-22.35693],[-56.473317,-22.0863],[-56.88151,-22.282154],[-57.937156,-22.090176],[-57.870674,-20.732688],[-58.166392,-20.176701],[-57.853802,-19.969995],[-57.949997,-19.400004],[-57.676009,-18.96184],[-57.498371,-18.174188],[-57.734558,-17.552468],[-58.280804,-17.27171],[-58.388058,-16.877109],[-58.24122,-16.299573],[-60.15839,-16.258284],[-60.542966,-15.09391],[-60.251149,-15.077219],[-60.264326,-14.645979],[-60.459198,-14.354007],[-60.503304,-13.775955],[-61.084121,-13.479384],[-61.713204,-13.489202],[-62.127081,-13.198781],[-62.80306,-13.000653],[-63.196499,-12.627033],[-64.316353,-12.461978],[-65.402281,-11.56627],[-65.321899,-10.895872],[-65.444837,-10.511451],[-65.338435,-9.761988],[-66.646908,-9.931331],[-67.173801,-10.306812],[-68.048192,-10.712059],[-68.271254,-11.014521],[-68.786158,-11.03638],[-69.529678,-10.951734],[-70.093752,-11.123972],[-70.548686,-11.009147],[-70.481894,-9.490118],[-71.302412,-10.079436],[-72.184891,-10.053598],[-72.563033,-9.520194],[-73.226713,-9.462213],[-73.015383,-9.032833],[-73.571059,-8.424447],[-73.987235,-7.52383],[-73.723401,-7.340999],[-73.724487,-6.918595],[-73.120027,-6.629931],[-73.219711,-6.089189],[-72.964507,-5.741251],[-72.891928,-5.274561],[-71.748406,-4.593983],[-70.928843,-4.401591],[-70.794769,-4.251265],[-69.893635,-4.298187],[-69.444102,-1.556287],[-69.420486,-1.122619],[-69.577065,-0.549992],[-70.020656,-0.185156],[-70.015566,0.541414],[-69.452396,0.706159],[-69.252434,0.602651],[-69.218638,0.985677],[-69.804597,1.089081],[-69.816973,1.714805],[-67.868565,1.692455],[-67.53781,2.037163],[-67.259998,1.719999],[-67.065048,1.130112],[-66.876326,1.253361],[-66.325765,0.724452],[-65.548267,0.789254],[-65.354713,1.095282],[-64.611012,1.328731],[-64.199306,1.492855],[-64.083085,1.916369],[-63.368788,2.2009],[-63.422867,2.411068],[-64.269999,2.497006],[-64.408828,3.126786],[-64.368494,3.79721],[-64.816064,4.056445],[-64.628659,4.148481],[-63.888343,4.02053],[-63.093198,3.770571],[-62.804533,4.006965],[-62.08543,4.162124],[-60.966893,4.536468],[-60.601179,4.918098],[-60.733574,5.200277],[-60.213683,5.244486],[-59.980959,5.014061],[-60.111002,4.574967],[-59.767406,4.423503],[-59.53804,3.958803],[-59.815413,3.606499],[-59.974525,2.755233],[-59.718546,2.24963],[-59.646044,1.786894],[-59.030862,1.317698],[-58.540013,1.268088],[-58.429477,1.463942],[-58.11345,1.507195],[-57.660971,1.682585],[-57.335823,1.948538],[-56.782704,1.863711],[-56.539386,1.899523],[-55.995698,1.817667],[-55.9056,2.021996],[-56.073342,2.220795],[-55.973322,2.510364],[-55.569755,2.421506],[-55.097587,2.523748],[-54.524754,2.311849],[-54.088063,2.105557],[-53.778521,2.376703],[-53.554839,2.334897],[-53.418465,2.053389],[-52.939657,2.124858],[-52.556425,2.504705],[-52.249338,3.241094],[-51.657797,4.156232],[-51.317146,4.203491],[-51.069771,3.650398],[-50.508875,1.901564],[-49.974076,1.736483],[-49.947101,1.04619],[-50.699251,0.222984],[-50.388211,-0.078445],[-48.620567,-0.235489],[-48.584497,-1.237805],[-47.824956,-0.581618],[-46.566584,-0.941028],[-44.905703,-1.55174],[-44.417619,-2.13775],[-44.581589,-2.691308],[-43.418791,-2.38311],[-41.472657,-2.912018],[-39.978665,-2.873054],[-38.500383,-3.700652],[-37.223252,-4.820946],[-36.452937,-5.109404],[-35.597796,-5.149504],[-35.235389,-5.464937],[-34.89603,-6.738193],[-34.729993,-7.343221],[-35.128212,-8.996401],[-35.636967,-9.649282],[-37.046519,-11.040721],[-37.683612,-12.171195],[-38.423877,-13.038119],[-38.673887,-13.057652],[-38.953276,-13.79337],[-38.882298,-15.667054],[-39.161092,-17.208407],[-39.267339,-17.867746],[-39.583521,-18.262296],[-39.760823,-19.599113],[-40.774741,-20.904512],[-40.944756,-21.937317],[-41.754164,-22.370676],[-41.988284,-22.97007],[-43.074704,-22.967693],[-44.647812,-23.351959],[-45.352136,-23.796842],[-46.472093,-24.088969],[-47.648972,-24.885199],[-48.495458,-25.877025],[-48.641005,-26.623698],[-48.474736,-27.175912],[-48.66152,-28.186135],[-48.888457,-28.674115],[-49.587329,-29.224469],[-50.696874,-30.984465],[-51.576226,-31.777698],[-52.256081,-32.24537],[-52.7121,-33.196578],[-53.373662,-33.768378],[-53.650544,-33.202004],[-53.209589,-32.727666],[-53.787952,-32.047243],[-54.572452,-31.494511],[-55.60151,-30.853879],[-55.973245,-30.883076],[-56.976026,-30.109686],[-57.625133,-30.216295]]]}}, +{"type":"Feature","id":"BRN","properties":{"name":"Brunei"},"geometry":{"type":"Polygon","coordinates":[[[114.204017,4.525874],[114.599961,4.900011],[115.45071,5.44773],[115.4057,4.955228],[115.347461,4.316636],[114.869557,4.348314],[114.659596,4.007637],[114.204017,4.525874]]]}}, +{"type":"Feature","id":"BTN","properties":{"name":"Bhutan"},"geometry":{"type":"Polygon","coordinates":[[[91.696657,27.771742],[92.103712,27.452614],[92.033484,26.83831],[91.217513,26.808648],[90.373275,26.875724],[89.744528,26.719403],[88.835643,27.098966],[88.814248,27.299316],[89.47581,28.042759],[90.015829,28.296439],[90.730514,28.064954],[91.258854,28.040614],[91.696657,27.771742]]]}}, +{"type":"Feature","id":"BWA","properties":{"name":"Botswana"},"geometry":{"type":"Polygon","coordinates":[[[25.649163,-18.536026],[25.850391,-18.714413],[26.164791,-19.293086],[27.296505,-20.39152],[27.724747,-20.499059],[27.727228,-20.851802],[28.02137,-21.485975],[28.794656,-21.639454],[29.432188,-22.091313],[28.017236,-22.827754],[27.11941,-23.574323],[26.786407,-24.240691],[26.485753,-24.616327],[25.941652,-24.696373],[25.765849,-25.174845],[25.664666,-25.486816],[25.025171,-25.71967],[24.211267,-25.670216],[23.73357,-25.390129],[23.312097,-25.26869],[22.824271,-25.500459],[22.579532,-25.979448],[22.105969,-26.280256],[21.605896,-26.726534],[20.889609,-26.828543],[20.66647,-26.477453],[20.758609,-25.868136],[20.165726,-24.917962],[19.895768,-24.76779],[19.895458,-21.849157],[20.881134,-21.814327],[20.910641,-18.252219],[21.65504,-18.219146],[23.196858,-17.869038],[23.579006,-18.281261],[24.217365,-17.889347],[24.520705,-17.887125],[25.084443,-17.661816],[25.264226,-17.73654],[25.649163,-18.536026]]]}}, +{"type":"Feature","id":"CAF","properties":{"name":"Central African Republic"},"geometry":{"type":"Polygon","coordinates":[[[15.27946,7.421925],[16.106232,7.497088],[16.290562,7.754307],[16.456185,7.734774],[16.705988,7.508328],[17.96493,7.890914],[18.389555,8.281304],[18.911022,8.630895],[18.81201,8.982915],[19.094008,9.074847],[20.059685,9.012706],[21.000868,9.475985],[21.723822,10.567056],[22.231129,10.971889],[22.864165,11.142395],[22.977544,10.714463],[23.554304,10.089255],[23.55725,9.681218],[23.394779,9.265068],[23.459013,8.954286],[23.805813,8.666319],[24.567369,8.229188],[25.114932,7.825104],[25.124131,7.500085],[25.796648,6.979316],[26.213418,6.546603],[26.465909,5.946717],[27.213409,5.550953],[27.374226,5.233944],[27.044065,5.127853],[26.402761,5.150875],[25.650455,5.256088],[25.278798,5.170408],[25.128833,4.927245],[24.805029,4.897247],[24.410531,5.108784],[23.297214,4.609693],[22.84148,4.710126],[22.704124,4.633051],[22.405124,4.02916],[21.659123,4.224342],[20.927591,4.322786],[20.290679,4.691678],[19.467784,5.031528],[18.932312,4.709506],[18.542982,4.201785],[18.453065,3.504386],[17.8099,3.560196],[17.133042,3.728197],[16.537058,3.198255],[16.012852,2.26764],[15.907381,2.557389],[15.862732,3.013537],[15.405396,3.335301],[15.03622,3.851367],[14.950953,4.210389],[14.478372,4.732605],[14.558936,5.030598],[14.459407,5.451761],[14.53656,6.226959],[14.776545,6.408498],[15.27946,7.421925]]]}}, +{"type":"Feature","id":"CAN","properties":{"name":"Canada"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.510002,48.510011],[-124.012891,48.370846],[-125.655013,48.825005],[-125.954994,49.179996],[-126.850004,49.53],[-127.029993,49.814996],[-128.059336,49.994959],[-128.444584,50.539138],[-128.358414,50.770648],[-127.308581,50.552574],[-126.695001,50.400903],[-125.755007,50.295018],[-125.415002,49.950001],[-124.920768,49.475275],[-123.922509,49.062484],[-123.510002,48.510011]]],[[[-56.134036,50.68701],[-56.795882,49.812309],[-56.143105,50.150117],[-55.471492,49.935815],[-55.822401,49.587129],[-54.935143,49.313011],[-54.473775,49.556691],[-53.476549,49.249139],[-53.786014,48.516781],[-53.086134,48.687804],[-52.958648,48.157164],[-52.648099,47.535548],[-53.069158,46.655499],[-53.521456,46.618292],[-54.178936,46.807066],[-53.961869,47.625207],[-54.240482,47.752279],[-55.400773,46.884994],[-55.997481,46.91972],[-55.291219,47.389562],[-56.250799,47.632545],[-57.325229,47.572807],[-59.266015,47.603348],[-59.419494,47.899454],[-58.796586,48.251525],[-59.231625,48.523188],[-58.391805,49.125581],[-57.35869,50.718274],[-56.73865,51.287438],[-55.870977,51.632094],[-55.406974,51.588273],[-55.600218,51.317075],[-56.134036,50.68701]]],[[[-132.710008,54.040009],[-131.74999,54.120004],[-132.04948,52.984621],[-131.179043,52.180433],[-131.57783,52.182371],[-132.180428,52.639707],[-132.549992,53.100015],[-133.054611,53.411469],[-133.239664,53.85108],[-133.180004,54.169975],[-132.710008,54.040009]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.161308,65.657285],[-84.975764,65.217518],[-84.464012,65.371772],[-83.882626,65.109618],[-82.787577,64.766693],[-81.642014,64.455136],[-81.55344,63.979609],[-80.817361,64.057486],[-80.103451,63.725981],[-80.99102,63.411246],[-82.547178,63.651722],[-83.108798,64.101876],[-84.100417,63.569712],[-85.523405,63.052379],[-85.866769,63.637253],[-87.221983,63.541238],[-86.35276,64.035833],[-86.224886,64.822917],[-85.883848,65.738778],[-85.161308,65.657285]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.647681,69.10769],[-96.269521,68.75704],[-97.617401,69.06003],[-98.431801,68.9507],[-99.797401,69.40003],[-98.917401,69.71003],[-98.218261,70.14354],[-97.157401,69.86003],[-96.557401,69.68003],[-96.257401,69.49003],[-95.647681,69.10769]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.018459],[-76.820034,43.628784],[-77.737885,43.629056],[-78.72028,43.625089],[-79.171674,43.466339],[-79.01,43.27],[-78.92,42.965],[-78.939362,42.863611],[-80.247448,42.3662],[-81.277747,42.209026],[-82.439278,41.675105],[-82.690089,41.675105],[-83.02981,41.832796],[-83.142,41.975681],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.137642,43.571088],[-82.337763,44.44],[-82.550925,45.347517],[-83.592851,45.816894],[-83.469551,45.994686],[-83.616131,46.116927],[-83.890765,46.116927],[-84.091851,46.275419],[-84.14212,46.512226],[-84.3367,46.40877],[-84.6049,46.4396],[-84.543749,46.538684],[-84.779238,46.637102],[-84.87608,46.900083],[-85.652363,47.220219],[-86.461991,47.553338],[-87.439793,47.94],[-88.378114,48.302918],[-89.272917,48.019808],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15907,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.002538],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.534149,68.630059],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.251404,72.826385],[-77.314438,72.855545],[-78.39167,72.876656],[-79.486252,72.742203],[-79.775833,72.802902],[-80.876099,73.333183],[-80.833885,73.693184],[-80.353058,73.75972],[-78.064438,73.651932],[-76.34,73.102685]]],[[[-86.562179,73.157447],[-85.774371,72.534126],[-84.850112,73.340278],[-82.31559,73.750951],[-80.600088,72.716544],[-80.748942,72.061907],[-78.770639,72.352173],[-77.824624,72.749617],[-75.605845,72.243678],[-74.228616,71.767144],[-74.099141,71.33084],[-72.242226,71.556925],[-71.200015,70.920013],[-68.786054,70.525024],[-67.91497,70.121948],[-66.969033,69.186087],[-68.805123,68.720198],[-66.449866,68.067163],[-64.862314,67.847539],[-63.424934,66.928473],[-61.851981,66.862121],[-62.163177,66.160251],[-63.918444,64.998669],[-65.14886,65.426033],[-66.721219,66.388041],[-68.015016,66.262726],[-68.141287,65.689789],[-67.089646,65.108455],[-65.73208,64.648406],[-65.320168,64.382737],[-64.669406,63.392927],[-65.013804,62.674185],[-66.275045,62.945099],[-68.783186,63.74567],[-67.369681,62.883966],[-66.328297,62.280075],[-66.165568,61.930897],[-68.877367,62.330149],[-71.023437,62.910708],[-72.235379,63.397836],[-71.886278,63.679989],[-73.378306,64.193963],[-74.834419,64.679076],[-74.818503,64.389093],[-77.70998,64.229542],[-78.555949,64.572906],[-77.897281,65.309192],[-76.018274,65.326969],[-73.959795,65.454765],[-74.293883,65.811771],[-73.944912,66.310578],[-72.651167,67.284576],[-72.92606,67.726926],[-73.311618,68.069437],[-74.843307,68.554627],[-76.869101,68.894736],[-76.228649,69.147769],[-77.28737,69.76954],[-78.168634,69.826488],[-78.957242,70.16688],[-79.492455,69.871808],[-81.305471,69.743185],[-84.944706,69.966634],[-87.060003,70.260001],[-88.681713,70.410741],[-89.51342,70.762038],[-88.467721,71.218186],[-89.888151,71.222552],[-90.20516,72.235074],[-89.436577,73.129464],[-88.408242,73.537889],[-85.826151,73.803816],[-86.562179,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.196296,72.771992],[-94.269047,72.024596],[-95.409856,72.061881],[-96.033745,72.940277],[-96.018268,73.43743],[-95.495793,73.862417],[-94.503658,74.134907],[-92.420012,74.100025],[-90.509793,73.856732],[-92.003965,72.966244],[-93.196296,72.771992]]],[[[-120.46,71.383602],[-123.09219,70.90164],[-123.62,71.34],[-125.928949,71.868688],[-125.5,72.292261],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.383602]]],[[[-93.612756,74.979997],[-94.156909,74.592347],[-95.608681,74.666864],[-96.820932,74.927623],[-96.288587,75.377828],[-94.85082,75.647218],[-93.977747,75.29649],[-93.612756,74.979997]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.684086,77.097878],[-93.573921,76.776296],[-91.605023,76.778518],[-90.741846,76.449597],[-90.969661,76.074013],[-89.822238,75.847774],[-89.187083,75.610166],[-87.838276,75.566189],[-86.379192,75.482421],[-84.789625,75.699204],[-82.753445,75.784315],[-81.128531,75.713983],[-80.057511,75.336849],[-79.833933,74.923127],[-80.457771,74.657304],[-81.948843,74.442459],[-83.228894,74.564028],[-86.097452,74.410032],[-88.15035,74.392307],[-89.764722,74.515555],[-92.422441,74.837758],[-92.768285,75.38682],[-92.889906,75.882655],[-93.893824,76.319244],[-95.962457,76.441381],[-97.121379,76.751078],[-96.745123,77.161389],[-94.684086,77.097878]]],[[[-116.198587,77.645287],[-116.335813,76.876962],[-117.106051,76.530032],[-118.040412,76.481172],[-119.899318,76.053213],[-121.499995,75.900019],[-122.854924,76.116543],[-122.854925,76.116543],[-121.157535,76.864508],[-119.103939,77.51222],[-117.570131,77.498319],[-116.198587,77.645287]]],[[[-93.840003,77.519997],[-94.295608,77.491343],[-96.169654,77.555111],[-96.436304,77.834629],[-94.422577,77.820005],[-93.720656,77.634331],[-93.840003,77.519997]]],[[[-110.186938,77.697015],[-112.051191,77.409229],[-113.534279,77.732207],[-112.724587,78.05105],[-111.264443,78.152956],[-109.854452,77.996325],[-110.186938,77.697015]]],[[[-109.663146,78.601973],[-110.881314,78.40692],[-112.542091,78.407902],[-112.525891,78.550555],[-111.50001,78.849994],[-110.963661,78.804441],[-109.663146,78.601973]]],[[[-95.830295,78.056941],[-97.309843,77.850597],[-98.124289,78.082857],[-98.552868,78.458105],[-98.631984,78.87193],[-97.337231,78.831984],[-96.754399,78.765813],[-95.559278,78.418315],[-95.830295,78.056941]]],[[[-100.060192,78.324754],[-99.670939,77.907545],[-101.30394,78.018985],[-102.949809,78.343229],[-105.176133,78.380332],[-104.210429,78.67742],[-105.41958,78.918336],[-105.492289,79.301594],[-103.529282,79.165349],[-100.825158,78.800462],[-100.060192,78.324754]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.509322],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.106322],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.430162],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.970222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.408696,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.652273],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.172059],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.169781],[-68.5,83.106322]]]]}}, +{"type":"Feature","id":"CHE","properties":{"name":"Switzerland"},"geometry":{"type":"Polygon","coordinates":[[[9.594226,47.525058],[9.632932,47.347601],[9.47997,47.10281],[9.932448,46.920728],[10.442701,46.893546],[10.363378,46.483571],[9.922837,46.314899],[9.182882,46.440215],[8.966306,46.036932],[8.489952,46.005151],[8.31663,46.163642],[7.755992,45.82449],[7.273851,45.776948],[6.843593,45.991147],[6.5001,46.429673],[6.022609,46.27299],[6.037389,46.725779],[6.768714,47.287708],[6.736571,47.541801],[7.192202,47.449766],[7.466759,47.620582],[8.317301,47.61358],[8.522612,47.830828],[9.594226,47.525058]]]}}, +{"type":"Feature","id":"CHL","properties":{"name":"Chile"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.63401,-52.63637],[-68.63335,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29103,-55.30124],[-68.14863,-55.61183],[-68.639991,-55.580018],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95752],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59178,-53.61583],[-70.26748,-52.93123],[-69.34565,-52.5183],[-68.63401,-52.63637]]],[[[-68.219913,-21.494347],[-67.82818,-22.872919],[-67.106674,-22.735925],[-66.985234,-22.986349],[-67.328443,-24.025303],[-68.417653,-24.518555],[-68.386001,-26.185016],[-68.5948,-26.506909],[-68.295542,-26.89934],[-69.001235,-27.521214],[-69.65613,-28.459141],[-70.01355,-29.367923],[-69.919008,-30.336339],[-70.535069,-31.36501],[-70.074399,-33.09121],[-69.814777,-33.273886],[-69.817309,-34.193571],[-70.388049,-35.169688],[-70.364769,-36.005089],[-71.121881,-36.658124],[-71.118625,-37.576827],[-70.814664,-38.552995],[-71.413517,-38.916022],[-71.680761,-39.808164],[-71.915734,-40.832339],[-71.746804,-42.051386],[-72.148898,-42.254888],[-71.915424,-43.408565],[-71.464056,-43.787611],[-71.793623,-44.207172],[-71.329801,-44.407522],[-71.222779,-44.784243],[-71.659316,-44.973689],[-71.552009,-45.560733],[-71.917258,-46.884838],[-72.447355,-47.738533],[-72.331161,-48.244238],[-72.648247,-48.878618],[-73.415436,-49.318436],[-73.328051,-50.378785],[-72.975747,-50.74145],[-72.309974,-50.67701],[-72.329404,-51.425956],[-71.914804,-52.009022],[-69.498362,-52.142761],[-68.571545,-52.299444],[-69.461284,-52.291951],[-69.94278,-52.537931],[-70.845102,-52.899201],[-71.006332,-53.833252],[-71.429795,-53.856455],[-72.557943,-53.53141],[-73.702757,-52.835069],[-73.702757,-52.83507],[-74.946763,-52.262754],[-75.260026,-51.629355],[-74.976632,-51.043396],[-75.479754,-50.378372],[-75.608015,-48.673773],[-75.18277,-47.711919],[-74.126581,-46.939253],[-75.644395,-46.647643],[-74.692154,-45.763976],[-74.351709,-44.103044],[-73.240356,-44.454961],[-72.717804,-42.383356],[-73.3889,-42.117532],[-73.701336,-43.365776],[-74.331943,-43.224958],[-74.017957,-41.794813],[-73.677099,-39.942213],[-73.217593,-39.258689],[-73.505559,-38.282883],[-73.588061,-37.156285],[-73.166717,-37.12378],[-72.553137,-35.50884],[-71.861732,-33.909093],[-71.43845,-32.418899],[-71.668721,-30.920645],[-71.370083,-30.095682],[-71.489894,-28.861442],[-70.905124,-27.64038],[-70.724954,-25.705924],[-70.403966,-23.628997],[-70.091246,-21.393319],[-70.16442,-19.756468],[-70.372572,-18.347975],[-69.858444,-18.092694],[-69.590424,-17.580012],[-69.100247,-18.260125],[-68.966818,-18.981683],[-68.442225,-19.405068],[-68.757167,-20.372658],[-68.219913,-21.494347]]]]}}, +{"type":"Feature","id":"CHN","properties":{"name":"China"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.339188,18.678395],[109.47521,18.197701],[108.655208,18.507682],[108.626217,19.367888],[109.119056,19.821039],[110.211599,20.101254],[110.786551,20.077534],[111.010051,19.69593],[110.570647,19.255879],[110.339188,18.678395]]],[[[127.657407,49.76027],[129.397818,49.4406],[130.582293,48.729687],[130.987282,47.790132],[132.506672,47.78897],[133.373596,48.183442],[135.026311,48.47823],[134.500814,47.57844],[134.112362,47.212467],[133.769644,46.116927],[133.097127,45.144066],[131.883454,45.321162],[131.025212,44.967953],[131.288555,44.11152],[131.144688,42.92999],[130.633866,42.903015],[130.640016,42.395009],[129.994267,42.985387],[129.596669,42.424982],[128.052215,41.994285],[128.208433,41.466772],[127.343783,41.503152],[126.869083,41.816569],[126.182045,41.107336],[125.079942,40.569824],[124.265625,39.928493],[122.86757,39.637788],[122.131388,39.170452],[121.054554,38.897471],[121.585995,39.360854],[121.376757,39.750261],[122.168595,40.422443],[121.640359,40.94639],[120.768629,40.593388],[119.639602,39.898056],[119.023464,39.252333],[118.042749,39.204274],[117.532702,38.737636],[118.059699,38.061476],[118.87815,37.897325],[118.911636,37.448464],[119.702802,37.156389],[120.823457,37.870428],[121.711259,37.481123],[122.357937,37.454484],[122.519995,36.930614],[121.104164,36.651329],[120.637009,36.11144],[119.664562,35.609791],[119.151208,34.909859],[120.227525,34.360332],[120.620369,33.376723],[121.229014,32.460319],[121.908146,31.692174],[121.891919,30.949352],[121.264257,30.676267],[121.503519,30.142915],[122.092114,29.83252],[121.938428,29.018022],[121.684439,28.225513],[121.125661,28.135673],[120.395473,27.053207],[119.585497,25.740781],[118.656871,24.547391],[117.281606,23.624501],[115.890735,22.782873],[114.763827,22.668074],[114.152547,22.22376],[113.80678,22.54834],[113.241078,22.051367],[111.843592,21.550494],[110.785466,21.397144],[110.444039,20.341033],[109.889861,20.282457],[109.627655,21.008227],[109.864488,21.395051],[108.522813,21.715212],[108.05018,21.55238],[107.04342,21.811899],[106.567273,22.218205],[106.725403,22.794268],[105.811247,22.976892],[105.329209,23.352063],[104.476858,22.81915],[103.504515,22.703757],[102.706992,22.708795],[102.170436,22.464753],[101.652018,22.318199],[101.80312,21.174367],[101.270026,21.201652],[101.180005,21.436573],[101.150033,21.849984],[100.416538,21.558839],[99.983489,21.742937],[99.240899,22.118314],[99.531992,22.949039],[98.898749,23.142722],[98.660262,24.063286],[97.60472,23.897405],[97.724609,25.083637],[98.671838,25.918703],[98.712094,26.743536],[98.68269,27.508812],[98.246231,27.747221],[97.911988,28.335945],[97.327114,28.261583],[96.248833,28.411031],[96.586591,28.83098],[96.117679,29.452802],[95.404802,29.031717],[94.56599,29.277438],[93.413348,28.640629],[92.503119,27.896876],[91.696657,27.771742],[91.258854,28.040614],[90.730514,28.064954],[90.015829,28.296439],[89.47581,28.042759],[88.814248,27.299316],[88.730326,28.086865],[88.120441,27.876542],[86.954517,27.974262],[85.82332,28.203576],[85.011638,28.642774],[84.23458,28.839894],[83.898993,29.320226],[83.337115,29.463732],[82.327513,30.115268],[81.525804,30.422717],[81.111256,30.183481],[79.721367,30.882715],[78.738894,31.515906],[78.458446,32.618164],[79.176129,32.48378],[79.208892,32.994395],[78.811086,33.506198],[78.912269,34.321936],[77.837451,35.49401],[76.192848,35.898403],[75.896897,36.666806],[75.158028,37.133031],[74.980002,37.41999],[74.829986,37.990007],[74.864816,38.378846],[74.257514,38.606507],[73.928852,38.505815],[73.675379,39.431237],[73.960013,39.660008],[73.822244,39.893973],[74.776862,40.366425],[75.467828,40.562072],[76.526368,40.427946],[76.904484,41.066486],[78.187197,41.185316],[78.543661,41.582243],[80.11943,42.123941],[80.25999,42.349999],[80.18015,42.920068],[80.866206,43.180362],[79.966106,44.917517],[81.947071,45.317027],[82.458926,45.53965],[83.180484,47.330031],[85.16429,47.000956],[85.720484,47.452969],[85.768233,48.455751],[86.598776,48.549182],[87.35997,49.214981],[87.751264,49.297198],[88.013832,48.599463],[88.854298,48.069082],[90.280826,47.693549],[90.970809,46.888146],[90.585768,45.719716],[90.94554,45.286073],[92.133891,45.115076],[93.480734,44.975472],[94.688929,44.352332],[95.306875,44.241331],[95.762455,43.319449],[96.349396,42.725635],[97.451757,42.74889],[99.515817,42.524691],[100.845866,42.663804],[101.83304,42.514873],[103.312278,41.907468],[104.522282,41.908347],[104.964994,41.59741],[106.129316,42.134328],[107.744773,42.481516],[109.243596,42.519446],[110.412103,42.871234],[111.129682,43.406834],[111.829588,43.743118],[111.667737,44.073176],[111.348377,44.457442],[111.873306,45.102079],[112.436062,45.011646],[113.463907,44.808893],[114.460332,45.339817],[115.985096,45.727235],[116.717868,46.388202],[117.421701,46.672733],[118.874326,46.805412],[119.66327,46.69268],[119.772824,47.048059],[118.866574,47.74706],[118.064143,48.06673],[117.295507,47.697709],[116.308953,47.85341],[115.742837,47.726545],[115.485282,48.135383],[116.191802,49.134598],[116.678801,49.888531],[117.879244,49.510983],[119.288461,50.142883],[119.279366,50.582908],[120.18205,51.643566],[120.738191,51.964115],[120.725789,52.516226],[120.177089,52.753886],[121.003085,53.251401],[122.245748,53.431726],[123.571507,53.458804],[125.068211,53.161045],[125.946349,52.792799],[126.564399,51.784255],[126.939157,51.353894],[127.287456,50.739797],[127.657407,49.76027]]]]}}, +{"type":"Feature","id":"CIV","properties":{"name":"Ivory Coast"},"geometry":{"type":"Polygon","coordinates":[[[-2.856125,4.994476],[-3.311084,4.984296],[-4.00882,5.179813],[-4.649917,5.168264],[-5.834496,4.993701],[-6.528769,4.705088],[-7.518941,4.338288],[-7.712159,4.364566],[-7.635368,5.188159],[-7.539715,5.313345],[-7.570153,5.707352],[-7.993693,6.12619],[-8.311348,6.193033],[-8.60288,6.467564],[-8.385452,6.911801],[-8.485446,7.395208],[-8.439298,7.686043],[-8.280703,7.68718],[-8.221792,8.123329],[-8.299049,8.316444],[-8.203499,8.455453],[-7.8321,8.575704],[-8.079114,9.376224],[-8.309616,9.789532],[-8.229337,10.12902],[-8.029944,10.206535],[-7.89959,10.297382],[-7.622759,10.147236],[-6.850507,10.138994],[-6.666461,10.430811],[-6.493965,10.411303],[-6.205223,10.524061],[-6.050452,10.096361],[-5.816926,10.222555],[-5.404342,10.370737],[-4.954653,10.152714],[-4.779884,9.821985],[-4.330247,9.610835],[-3.980449,9.862344],[-3.511899,9.900326],[-2.827496,9.642461],[-2.56219,8.219628],[-2.983585,7.379705],[-3.24437,6.250472],[-2.810701,5.389051],[-2.856125,4.994476]]]}}, +{"type":"Feature","id":"CMR","properties":{"name":"Cameroon"},"geometry":{"type":"Polygon","coordinates":[[[13.075822,2.267097],[12.951334,2.321616],[12.35938,2.192812],[11.751665,2.326758],[11.276449,2.261051],[9.649158,2.283866],[9.795196,3.073404],[9.404367,3.734527],[8.948116,3.904129],[8.744924,4.352215],[8.488816,4.495617],[8.500288,4.771983],[8.757533,5.479666],[9.233163,6.444491],[9.522706,6.453482],[10.118277,7.03877],[10.497375,7.055358],[11.058788,6.644427],[11.745774,6.981383],[11.839309,7.397042],[12.063946,7.799808],[12.218872,8.305824],[12.753672,8.717763],[12.955468,9.417772],[13.1676,9.640626],[13.308676,10.160362],[13.57295,10.798566],[14.415379,11.572369],[14.468192,11.904752],[14.577178,12.085361],[14.181336,12.483657],[14.213531,12.802035],[14.495787,12.859396],[14.893386,12.219048],[14.960152,11.555574],[14.923565,10.891325],[15.467873,9.982337],[14.909354,9.992129],[14.627201,9.920919],[14.171466,10.021378],[13.954218,9.549495],[14.544467,8.965861],[14.979996,8.796104],[15.120866,8.38215],[15.436092,7.692812],[15.27946,7.421925],[14.776545,6.408498],[14.53656,6.226959],[14.459407,5.451761],[14.558936,5.030598],[14.478372,4.732605],[14.950953,4.210389],[15.03622,3.851367],[15.405396,3.335301],[15.862732,3.013537],[15.907381,2.557389],[16.012852,2.26764],[15.940919,1.727673],[15.146342,1.964015],[14.337813,2.227875],[13.075822,2.267097]]]}}, +{"type":"Feature","id":"COD","properties":{"name":"Democratic Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[30.83386,3.509166],[30.773347,2.339883],[31.174149,2.204465],[30.85267,1.849396],[30.468508,1.583805],[30.086154,1.062313],[29.875779,0.59738],[29.819503,-0.20531],[29.587838,-0.587406],[29.579466,-1.341313],[29.291887,-1.620056],[29.254835,-2.21511],[29.117479,-2.292211],[29.024926,-2.839258],[29.276384,-3.293907],[29.339998,-4.499983],[29.519987,-5.419979],[29.419993,-5.939999],[29.620032,-6.520015],[30.199997,-7.079981],[30.740015,-8.340007],[30.346086,-8.238257],[29.002912,-8.407032],[28.734867,-8.526559],[28.449871,-9.164918],[28.673682,-9.605925],[28.49607,-10.789884],[28.372253,-11.793647],[28.642417,-11.971569],[29.341548,-12.360744],[29.616001,-12.178895],[29.699614,-13.257227],[28.934286,-13.248958],[28.523562,-12.698604],[28.155109,-12.272481],[27.388799,-12.132747],[27.16442,-11.608748],[26.553088,-11.92444],[25.75231,-11.784965],[25.418118,-11.330936],[24.78317,-11.238694],[24.314516,-11.262826],[24.257155,-10.951993],[23.912215,-10.926826],[23.456791,-10.867863],[22.837345,-11.017622],[22.402798,-10.993075],[22.155268,-11.084801],[22.208753,-9.894796],[21.875182,-9.523708],[21.801801,-8.908707],[21.949131,-8.305901],[21.746456,-7.920085],[21.728111,-7.290872],[20.514748,-7.299606],[20.601823,-6.939318],[20.091622,-6.94309],[20.037723,-7.116361],[19.417502,-7.155429],[19.166613,-7.738184],[19.016752,-7.988246],[18.464176,-7.847014],[18.134222,-7.987678],[17.47297,-8.068551],[17.089996,-7.545689],[16.860191,-7.222298],[16.57318,-6.622645],[16.326528,-5.87747],[13.375597,-5.864241],[13.024869,-5.984389],[12.735171,-5.965682],[12.322432,-6.100092],[12.182337,-5.789931],[12.436688,-5.684304],[12.468004,-5.248362],[12.631612,-4.991271],[12.995517,-4.781103],[13.25824,-4.882957],[13.600235,-4.500138],[14.144956,-4.510009],[14.209035,-4.793092],[14.582604,-4.970239],[15.170992,-4.343507],[15.75354,-3.855165],[16.00629,-3.535133],[15.972803,-2.712392],[16.407092,-1.740927],[16.865307,-1.225816],[17.523716,-0.74383],[17.638645,-0.424832],[17.663553,-0.058084],[17.82654,0.288923],[17.774192,0.855659],[17.898835,1.741832],[18.094276,2.365722],[18.393792,2.900443],[18.453065,3.504386],[18.542982,4.201785],[18.932312,4.709506],[19.467784,5.031528],[20.290679,4.691678],[20.927591,4.322786],[21.659123,4.224342],[22.405124,4.02916],[22.704124,4.633051],[22.84148,4.710126],[23.297214,4.609693],[24.410531,5.108784],[24.805029,4.897247],[25.128833,4.927245],[25.278798,5.170408],[25.650455,5.256088],[26.402761,5.150875],[27.044065,5.127853],[27.374226,5.233944],[27.979977,4.408413],[28.428994,4.287155],[28.696678,4.455077],[29.159078,4.389267],[29.715995,4.600805],[29.9535,4.173699],[30.83386,3.509166]]]}}, +{"type":"Feature","id":"COG","properties":{"name":"Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[12.995517,-4.781103],[12.62076,-4.438023],[12.318608,-4.60623],[11.914963,-5.037987],[11.093773,-3.978827],[11.855122,-3.426871],[11.478039,-2.765619],[11.820964,-2.514161],[12.495703,-2.391688],[12.575284,-1.948511],[13.109619,-2.42874],[13.992407,-2.470805],[14.29921,-1.998276],[14.425456,-1.333407],[14.316418,-0.552627],[13.843321,0.038758],[14.276266,1.19693],[14.026669,1.395677],[13.282631,1.314184],[13.003114,1.830896],[13.075822,2.267097],[14.337813,2.227875],[15.146342,1.964015],[15.940919,1.727673],[16.012852,2.26764],[16.537058,3.198255],[17.133042,3.728197],[17.8099,3.560196],[18.453065,3.504386],[18.393792,2.900443],[18.094276,2.365722],[17.898835,1.741832],[17.774192,0.855659],[17.82654,0.288923],[17.663553,-0.058084],[17.638645,-0.424832],[17.523716,-0.74383],[16.865307,-1.225816],[16.407092,-1.740927],[15.972803,-2.712392],[16.00629,-3.535133],[15.75354,-3.855165],[15.170992,-4.343507],[14.582604,-4.970239],[14.209035,-4.793092],[14.144956,-4.510009],[13.600235,-4.500138],[13.25824,-4.882957],[12.995517,-4.781103]]]}}, +{"type":"Feature","id":"COL","properties":{"name":"Colombia"},"geometry":{"type":"Polygon","coordinates":[[[-75.373223,-0.152032],[-75.801466,0.084801],[-76.292314,0.416047],[-76.57638,0.256936],[-77.424984,0.395687],[-77.668613,0.825893],[-77.855061,0.809925],[-78.855259,1.380924],[-78.990935,1.69137],[-78.617831,1.766404],[-78.662118,2.267355],[-78.42761,2.629556],[-77.931543,2.696606],[-77.510431,3.325017],[-77.12769,3.849636],[-77.496272,4.087606],[-77.307601,4.667984],[-77.533221,5.582812],[-77.318815,5.845354],[-77.476661,6.691116],[-77.881571,7.223771],[-77.753414,7.70984],[-77.431108,7.638061],[-77.242566,7.935278],[-77.474723,8.524286],[-77.353361,8.670505],[-76.836674,8.638749],[-76.086384,9.336821],[-75.6746,9.443248],[-75.664704,9.774003],[-75.480426,10.61899],[-74.906895,11.083045],[-74.276753,11.102036],[-74.197223,11.310473],[-73.414764,11.227015],[-72.627835,11.731972],[-72.238195,11.95555],[-71.75409,12.437303],[-71.399822,12.376041],[-71.137461,12.112982],[-71.331584,11.776284],[-71.973922,11.608672],[-72.227575,11.108702],[-72.614658,10.821975],[-72.905286,10.450344],[-73.027604,9.73677],[-73.304952,9.152],[-72.78873,9.085027],[-72.660495,8.625288],[-72.439862,8.405275],[-72.360901,8.002638],[-72.479679,7.632506],[-72.444487,7.423785],[-72.198352,7.340431],[-71.960176,6.991615],[-70.674234,7.087785],[-70.093313,6.960376],[-69.38948,6.099861],[-68.985319,6.206805],[-68.265052,6.153268],[-67.695087,6.267318],[-67.34144,6.095468],[-67.521532,5.55687],[-67.744697,5.221129],[-67.823012,4.503937],[-67.621836,3.839482],[-67.337564,3.542342],[-67.303173,3.318454],[-67.809938,2.820655],[-67.447092,2.600281],[-67.181294,2.250638],[-66.876326,1.253361],[-67.065048,1.130112],[-67.259998,1.719999],[-67.53781,2.037163],[-67.868565,1.692455],[-69.816973,1.714805],[-69.804597,1.089081],[-69.218638,0.985677],[-69.252434,0.602651],[-69.452396,0.706159],[-70.015566,0.541414],[-70.020656,-0.185156],[-69.577065,-0.549992],[-69.420486,-1.122619],[-69.444102,-1.556287],[-69.893635,-4.298187],[-70.394044,-3.766591],[-70.692682,-3.742872],[-70.047709,-2.725156],[-70.813476,-2.256865],[-71.413646,-2.342802],[-71.774761,-2.16979],[-72.325787,-2.434218],[-73.070392,-2.308954],[-73.659504,-1.260491],[-74.122395,-1.002833],[-74.441601,-0.53082],[-75.106625,-0.057205],[-75.373223,-0.152032]]]}}, +{"type":"Feature","id":"CRI","properties":{"name":"Costa Rica"},"geometry":{"type":"Polygon","coordinates":[[[-82.965783,8.225028],[-83.508437,8.446927],[-83.711474,8.656836],[-83.596313,8.830443],[-83.632642,9.051386],[-83.909886,9.290803],[-84.303402,9.487354],[-84.647644,9.615537],[-84.713351,9.908052],[-84.97566,10.086723],[-84.911375,9.795992],[-85.110923,9.55704],[-85.339488,9.834542],[-85.660787,9.933347],[-85.797445,10.134886],[-85.791709,10.439337],[-85.659314,10.754331],[-85.941725,10.895278],[-85.71254,11.088445],[-85.561852,11.217119],[-84.903003,10.952303],[-84.673069,11.082657],[-84.355931,10.999226],[-84.190179,10.79345],[-83.895054,10.726839],[-83.655612,10.938764],[-83.40232,10.395438],[-83.015677,9.992982],[-82.546196,9.566135],[-82.932891,9.476812],[-82.927155,9.07433],[-82.719183,8.925709],[-82.868657,8.807266],[-82.829771,8.626295],[-82.913176,8.423517],[-82.965783,8.225028]]]}}, +{"type":"Feature","id":"CUB","properties":{"name":"Cuba"},"geometry":{"type":"Polygon","coordinates":[[[-82.268151,23.188611],[-81.404457,23.117271],[-80.618769,23.10598],[-79.679524,22.765303],[-79.281486,22.399202],[-78.347434,22.512166],[-77.993296,22.277194],[-77.146422,21.657851],[-76.523825,21.20682],[-76.19462,21.220565],[-75.598222,21.016624],[-75.67106,20.735091],[-74.933896,20.693905],[-74.178025,20.284628],[-74.296648,20.050379],[-74.961595,19.923435],[-75.63468,19.873774],[-76.323656,19.952891],[-77.755481,19.855481],[-77.085108,20.413354],[-77.492655,20.673105],[-78.137292,20.739949],[-78.482827,21.028613],[-78.719867,21.598114],[-79.285,21.559175],[-80.217475,21.827324],[-80.517535,22.037079],[-81.820943,22.192057],[-82.169992,22.387109],[-81.795002,22.636965],[-82.775898,22.68815],[-83.494459,22.168518],[-83.9088,22.154565],[-84.052151,21.910575],[-84.54703,21.801228],[-84.974911,21.896028],[-84.447062,22.20495],[-84.230357,22.565755],[-83.77824,22.788118],[-83.267548,22.983042],[-82.510436,23.078747],[-82.268151,23.188611]]]}}, +{"type":"Feature","id":"-99","properties":{"name":"Northern Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[32.73178,35.140026],[32.802474,35.145504],[32.946961,35.386703],[33.667227,35.373216],[34.576474,35.671596],[33.900804,35.245756],[33.973617,35.058506],[33.86644,35.093595],[33.675392,35.017863],[33.525685,35.038688],[33.475817,35.000345],[33.455922,35.101424],[33.383833,35.162712],[33.190977,35.173125],[32.919572,35.087833],[32.73178,35.140026]]]}}, +{"type":"Feature","id":"CYP","properties":{"name":"Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[33.973617,35.058506],[34.004881,34.978098],[32.979827,34.571869],[32.490296,34.701655],[32.256667,35.103232],[32.73178,35.140026],[32.919572,35.087833],[33.190977,35.173125],[33.383833,35.162712],[33.455922,35.101424],[33.475817,35.000345],[33.525685,35.038688],[33.675392,35.017863],[33.86644,35.093595],[33.973617,35.058506]]]}}, +{"type":"Feature","id":"CZE","properties":{"name":"Czech Republic"},"geometry":{"type":"Polygon","coordinates":[[[16.960288,48.596982],[16.499283,48.785808],[16.029647,48.733899],[15.253416,49.039074],[14.901447,48.964402],[14.338898,48.555305],[13.595946,48.877172],[13.031329,49.307068],[12.521024,49.547415],[12.415191,49.969121],[12.240111,50.266338],[12.966837,50.484076],[13.338132,50.733234],[14.056228,50.926918],[14.307013,51.117268],[14.570718,51.002339],[15.016996,51.106674],[15.490972,50.78473],[16.238627,50.697733],[16.176253,50.422607],[16.719476,50.215747],[16.868769,50.473974],[17.554567,50.362146],[17.649445,50.049038],[18.392914,49.988629],[18.853144,49.49623],[18.554971,49.495015],[18.399994,49.315001],[18.170498,49.271515],[18.104973,49.043983],[17.913512,48.996493],[17.886485,48.903475],[17.545007,48.800019],[17.101985,48.816969],[16.960288,48.596982]]]}}, +{"type":"Feature","id":"DEU","properties":{"name":"Germany"},"geometry":{"type":"Polygon","coordinates":[[[9.921906,54.983104],[9.93958,54.596642],[10.950112,54.363607],[10.939467,54.008693],[11.956252,54.196486],[12.51844,54.470371],[13.647467,54.075511],[14.119686,53.757029],[14.353315,53.248171],[14.074521,52.981263],[14.4376,52.62485],[14.685026,52.089947],[14.607098,51.745188],[15.016996,51.106674],[14.570718,51.002339],[14.307013,51.117268],[14.056228,50.926918],[13.338132,50.733234],[12.966837,50.484076],[12.240111,50.266338],[12.415191,49.969121],[12.521024,49.547415],[13.031329,49.307068],[13.595946,48.877172],[13.243357,48.416115],[12.884103,48.289146],[13.025851,47.637584],[12.932627,47.467646],[12.62076,47.672388],[12.141357,47.703083],[11.426414,47.523766],[10.544504,47.566399],[10.402084,47.302488],[9.896068,47.580197],[9.594226,47.525058],[8.522612,47.830828],[8.317301,47.61358],[7.466759,47.620582],[7.593676,48.333019],[8.099279,49.017784],[6.65823,49.201958],[6.18632,49.463803],[6.242751,49.902226],[6.043073,50.128052],[6.156658,50.803721],[5.988658,51.851616],[6.589397,51.852029],[6.84287,52.22844],[7.092053,53.144043],[6.90514,53.482162],[7.100425,53.693932],[7.936239,53.748296],[8.121706,53.527792],[8.800734,54.020786],[8.572118,54.395646],[8.526229,54.962744],[9.282049,54.830865],[9.921906,54.983104]]]}}, +{"type":"Feature","id":"DJI","properties":{"name":"Djibouti"},"geometry":{"type":"Polygon","coordinates":[[[43.081226,12.699639],[43.317852,12.390148],[43.286381,11.974928],[42.715874,11.735641],[43.145305,11.46204],[42.776852,10.926879],[42.55493,11.10511],[42.31414,11.0342],[41.75557,11.05091],[41.73959,11.35511],[41.66176,11.6312],[42,12.1],[42.35156,12.54223],[42.779642,12.455416],[43.081226,12.699639]]]}}, +{"type":"Feature","id":"DNK","properties":{"name":"Denmark"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.690006,55.609991],[12.089991,54.800015],[11.043543,55.364864],[10.903914,55.779955],[12.370904,56.111407],[12.690006,55.609991]]],[[[10.912182,56.458621],[10.667804,56.081383],[10.369993,56.190007],[9.649985,55.469999],[9.921906,54.983104],[9.282049,54.830865],[8.526229,54.962744],[8.120311,55.517723],[8.089977,56.540012],[8.256582,56.809969],[8.543438,57.110003],[9.424469,57.172066],[9.775559,57.447941],[10.580006,57.730017],[10.546106,57.215733],[10.25,56.890016],[10.369993,56.609982],[10.912182,56.458621]]]]}}, +{"type":"Feature","id":"DOM","properties":{"name":"Dominican Republic"},"geometry":{"type":"Polygon","coordinates":[[[-71.712361,19.714456],[-71.587304,19.884911],[-70.806706,19.880286],[-70.214365,19.622885],[-69.950815,19.648],[-69.76925,19.293267],[-69.222126,19.313214],[-69.254346,19.015196],[-68.809412,18.979074],[-68.317943,18.612198],[-68.689316,18.205142],[-69.164946,18.422648],[-69.623988,18.380713],[-69.952934,18.428307],[-70.133233,18.245915],[-70.517137,18.184291],[-70.669298,18.426886],[-70.99995,18.283329],[-71.40021,17.598564],[-71.657662,17.757573],[-71.708305,18.044997],[-71.687738,18.31666],[-71.945112,18.6169],[-71.701303,18.785417],[-71.624873,19.169838],[-71.712361,19.714456]]]}}, +{"type":"Feature","id":"DZA","properties":{"name":"Algeria"},"geometry":{"type":"Polygon","coordinates":[[[11.999506,23.471668],[8.572893,21.565661],[5.677566,19.601207],[4.267419,19.155265],[3.158133,19.057364],[3.146661,19.693579],[2.683588,19.85623],[2.060991,20.142233],[1.823228,20.610809],[-1.550055,22.792666],[-4.923337,24.974574],[-8.6844,27.395744],[-8.665124,27.589479],[-8.66559,27.656426],[-8.674116,28.841289],[-7.059228,29.579228],[-6.060632,29.7317],[-5.242129,30.000443],[-4.859646,30.501188],[-3.690441,30.896952],[-3.647498,31.637294],[-3.06898,31.724498],[-2.616605,32.094346],[-1.307899,32.262889],[-1.124551,32.651522],[-1.388049,32.864015],[-1.733455,33.919713],[-1.792986,34.527919],[-2.169914,35.168396],[-1.208603,35.714849],[-0.127454,35.888662],[0.503877,36.301273],[1.466919,36.605647],[3.161699,36.783905],[4.815758,36.865037],[5.32012,36.716519],[6.26182,37.110655],[7.330385,37.118381],[7.737078,36.885708],[8.420964,36.946427],[8.217824,36.433177],[8.376368,35.479876],[8.140981,34.655146],[7.524482,34.097376],[7.612642,33.344115],[8.430473,32.748337],[8.439103,32.506285],[9.055603,32.102692],[9.48214,30.307556],[9.805634,29.424638],[9.859998,28.95999],[9.683885,28.144174],[9.756128,27.688259],[9.629056,27.140953],[9.716286,26.512206],[9.319411,26.094325],[9.910693,25.365455],[9.948261,24.936954],[10.303847,24.379313],[10.771364,24.562532],[11.560669,24.097909],[11.999506,23.471668]]]}}, +{"type":"Feature","id":"ECU","properties":{"name":"Ecuador"},"geometry":{"type":"Polygon","coordinates":[[[-80.302561,-3.404856],[-79.770293,-2.657512],[-79.986559,-2.220794],[-80.368784,-2.685159],[-80.967765,-2.246943],[-80.764806,-1.965048],[-80.933659,-1.057455],[-80.58337,-0.906663],[-80.399325,-0.283703],[-80.020898,0.36034],[-80.09061,0.768429],[-79.542762,0.982938],[-78.855259,1.380924],[-77.855061,0.809925],[-77.668613,0.825893],[-77.424984,0.395687],[-76.57638,0.256936],[-76.292314,0.416047],[-75.801466,0.084801],[-75.373223,-0.152032],[-75.233723,-0.911417],[-75.544996,-1.56161],[-76.635394,-2.608678],[-77.837905,-3.003021],[-78.450684,-3.873097],[-78.639897,-4.547784],[-79.205289,-4.959129],[-79.624979,-4.454198],[-80.028908,-4.346091],[-80.442242,-4.425724],[-80.469295,-4.059287],[-80.184015,-3.821162],[-80.302561,-3.404856]]]}}, +{"type":"Feature","id":"EGY","properties":{"name":"Egypt"},"geometry":{"type":"Polygon","coordinates":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.6825],[25,29.238655],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]}}, +{"type":"Feature","id":"ERI","properties":{"name":"Eritrea"},"geometry":{"type":"Polygon","coordinates":[[[42.35156,12.54223],[42.00975,12.86582],[41.59856,13.45209],[41.155194,13.77332],[40.8966,14.11864],[40.026219,14.519579],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607,14.95943],[37.59377,14.2131],[36.42951,14.42211],[36.323189,14.822481],[36.75386,16.291874],[36.85253,16.95655],[37.16747,17.26314],[37.904,17.42754],[38.41009,17.998307],[38.990623,16.840626],[39.26611,15.922723],[39.814294,15.435647],[41.179275,14.49108],[41.734952,13.921037],[42.276831,13.343992],[42.589576,13.000421],[43.081226,12.699639],[42.779642,12.455416],[42.35156,12.54223]]]}}, +{"type":"Feature","id":"ESP","properties":{"name":"Spain"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.984433,42.592775],[-9.392884,43.026625],[-7.97819,43.748338],[-6.754492,43.567909],[-5.411886,43.57424],[-4.347843,43.403449],[-3.517532,43.455901],[-1.901351,43.422802],[-1.502771,43.034014],[0.338047,42.579546],[0.701591,42.795734],[1.826793,42.343385],[2.985999,42.473015],[3.039484,41.89212],[2.091842,41.226089],[0.810525,41.014732],[0.721331,40.678318],[0.106692,40.123934],[-0.278711,39.309978],[0.111291,38.738514],[-0.467124,38.292366],[-0.683389,37.642354],[-1.438382,37.443064],[-2.146453,36.674144],[-3.415781,36.6589],[-4.368901,36.677839],[-4.995219,36.324708],[-5.37716,35.94685],[-5.866432,36.029817],[-6.236694,36.367677],[-6.520191,36.942913],[-7.453726,37.097788],[-7.537105,37.428904],[-7.166508,37.803894],[-7.029281,38.075764],[-7.374092,38.373059],[-7.098037,39.030073],[-7.498632,39.629571],[-7.066592,39.711892],[-7.026413,40.184524],[-6.86402,40.330872],[-6.851127,41.111083],[-6.389088,41.381815],[-6.668606,41.883387],[-7.251309,41.918346],[-7.422513,41.792075],[-8.013175,41.790886],[-8.263857,42.280469],[-8.671946,42.134689],[-9.034818,41.880571]]]}}, +{"type":"Feature","id":"EST","properties":{"name":"Estonia"},"geometry":{"type":"Polygon","coordinates":[[[24.312863,57.793424],[24.428928,58.383413],[24.061198,58.257375],[23.42656,58.612753],[23.339795,59.18724],[24.604214,59.465854],[25.864189,59.61109],[26.949136,59.445803],[27.981114,59.475388],[28.131699,59.300825],[27.420166,58.724581],[27.716686,57.791899],[27.288185,57.474528],[26.463532,57.476389],[25.60281,57.847529],[25.164594,57.970157],[24.312863,57.793424]]]}}, +{"type":"Feature","id":"ETH","properties":{"name":"Ethiopia"},"geometry":{"type":"Polygon","coordinates":[[[37.90607,14.95943],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625,14.51959],[40.8966,14.11864],[41.1552,13.77333],[41.59856,13.45209],[42.00975,12.86582],[42.35156,12.54223],[42,12.1],[41.66176,11.6312],[41.73959,11.35511],[41.75557,11.05091],[42.31414,11.0342],[42.55493,11.10511],[42.776852,10.926879],[42.55876,10.57258],[42.92812,10.02194],[43.29699,9.54048],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[42.12861,4.23413],[41.855083,3.918912],[41.1718,3.91909],[40.76848,4.25702],[39.85494,3.83879],[39.559384,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.43697,3.58851],[38.120915,3.598605],[36.855093,4.447864],[36.159079,4.447864],[35.817448,4.776966],[35.817448,5.338232],[35.298007,5.506],[34.70702,6.59422],[34.25032,6.82607],[34.0751,7.22595],[33.56829,7.71334],[32.95418,7.78497],[33.2948,8.35458],[33.8255,8.37916],[33.97498,8.68456],[33.96162,9.58358],[34.25745,10.63009],[34.73115,10.91017],[34.83163,11.31896],[35.26049,12.08286],[35.86363,12.57828],[36.27022,13.56333],[36.42951,14.42211],[37.59377,14.2131],[37.90607,14.95943]]]}}, +{"type":"Feature","id":"FIN","properties":{"name":"Finland"},"geometry":{"type":"Polygon","coordinates":[[[28.59193,69.064777],[28.445944,68.364613],[29.977426,67.698297],[29.054589,66.944286],[30.21765,65.80598],[29.54443,64.948672],[30.444685,64.204453],[30.035872,63.552814],[31.516092,62.867687],[31.139991,62.357693],[30.211107,61.780028],[28.069998,60.503517],[26.255173,60.423961],[24.496624,60.057316],[22.869695,59.846373],[22.290764,60.391921],[21.322244,60.72017],[21.544866,61.705329],[21.059211,62.607393],[21.536029,63.189735],[22.442744,63.81781],[24.730512,64.902344],[25.398068,65.111427],[25.294043,65.534346],[23.903379,66.006927],[23.56588,66.396051],[23.539473,67.936009],[21.978535,68.616846],[20.645593,69.106247],[21.244936,69.370443],[22.356238,68.841741],[23.66205,68.891247],[24.735679,68.649557],[25.689213,69.092114],[26.179622,69.825299],[27.732292,70.164193],[29.015573,69.766491],[28.59193,69.064777]]]}}, +{"type":"Feature","id":"FJI","properties":{"name":"Fiji"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.364143,-16.801354],[178.725059,-17.012042],[178.596839,-16.63915],[179.096609,-16.433984],[179.413509,-16.379054],[180,-16.067133],[180,-16.555217],[179.364143,-16.801354]]],[[[-179.917369,-16.501783],[-180,-16.555217],[-180,-16.067133],[-179.79332,-16.020882],[-179.917369,-16.501783]]]]}}, +{"type":"Feature","id":"FLK","properties":{"name":"Falkland Islands"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]}}, +{"type":"Feature","id":"FRA","properties":{"name":"France"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.560016,42.152492],[9.229752,41.380007],[8.775723,41.583612],[8.544213,42.256517],[8.746009,42.628122],[9.390001,43.009985],[9.560016,42.152492]]],[[[3.588184,50.378992],[4.286023,49.907497],[4.799222,49.985373],[5.674052,49.529484],[5.897759,49.442667],[6.18632,49.463803],[6.65823,49.201958],[8.099279,49.017784],[7.593676,48.333019],[7.466759,47.620582],[7.192202,47.449766],[6.736571,47.541801],[6.768714,47.287708],[6.037389,46.725779],[6.022609,46.27299],[6.5001,46.429673],[6.843593,45.991147],[6.802355,45.70858],[7.096652,45.333099],[6.749955,45.028518],[7.007562,44.254767],[7.549596,44.127901],[7.435185,43.693845],[6.529245,43.128892],[4.556963,43.399651],[3.100411,43.075201],[2.985999,42.473015],[1.826793,42.343385],[0.701591,42.795734],[0.338047,42.579546],[-1.502771,43.034014],[-1.901351,43.422802],[-1.384225,44.02261],[-1.193798,46.014918],[-2.225724,47.064363],[-2.963276,47.570327],[-4.491555,47.954954],[-4.59235,48.68416],[-3.295814,48.901692],[-1.616511,48.644421],[-1.933494,49.776342],[-0.989469,49.347376],[1.338761,50.127173],[1.639001,50.946606],[2.513573,51.148506],[2.658422,50.796848],[3.123252,50.780363],[3.588184,50.378992]]]]}}, +{"type":"Feature","id":"GAB","properties":{"name":"Gabon"},"geometry":{"type":"Polygon","coordinates":[[[11.093773,-3.978827],[10.066135,-2.969483],[9.405245,-2.144313],[8.797996,-1.111301],[8.830087,-0.779074],[9.04842,-0.459351],[9.291351,0.268666],[9.492889,1.01012],[9.830284,1.067894],[11.285079,1.057662],[11.276449,2.261051],[11.751665,2.326758],[12.35938,2.192812],[12.951334,2.321616],[13.075822,2.267097],[13.003114,1.830896],[13.282631,1.314184],[14.026669,1.395677],[14.276266,1.19693],[13.843321,0.038758],[14.316418,-0.552627],[14.425456,-1.333407],[14.29921,-1.998276],[13.992407,-2.470805],[13.109619,-2.42874],[12.575284,-1.948511],[12.495703,-2.391688],[11.820964,-2.514161],[11.478039,-2.765619],[11.855122,-3.426871],[11.093773,-3.978827]]]}}, +{"type":"Feature","id":"GBR","properties":{"name":"United Kingdom"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661949,54.554603],[-6.197885,53.867565],[-6.95373,54.073702],[-7.572168,54.059956],[-7.366031,54.595841],[-7.572168,55.131622],[-6.733847,55.17286],[-5.661949,54.554603]]],[[[-3.005005,58.635],[-4.073828,57.553025],[-3.055002,57.690019],[-1.959281,57.6848],[-2.219988,56.870017],[-3.119003,55.973793],[-2.085009,55.909998],[-2.005676,55.804903],[-1.114991,54.624986],[-0.430485,54.464376],[0.184981,53.325014],[0.469977,52.929999],[1.681531,52.73952],[1.559988,52.099998],[1.050562,51.806761],[1.449865,51.289428],[0.550334,50.765739],[-0.787517,50.774989],[-2.489998,50.500019],[-2.956274,50.69688],[-3.617448,50.228356],[-4.542508,50.341837],[-5.245023,49.96],[-5.776567,50.159678],[-4.30999,51.210001],[-3.414851,51.426009],[-3.422719,51.426848],[-4.984367,51.593466],[-5.267296,51.9914],[-4.222347,52.301356],[-4.770013,52.840005],[-4.579999,53.495004],[-3.093831,53.404547],[-3.09208,53.404441],[-2.945009,53.985],[-3.614701,54.600937],[-3.630005,54.615013],[-4.844169,54.790971],[-5.082527,55.061601],[-4.719112,55.508473],[-5.047981,55.783986],[-5.586398,55.311146],[-5.644999,56.275015],[-6.149981,56.78501],[-5.786825,57.818848],[-5.009999,58.630013],[-4.211495,58.550845],[-3.005005,58.635]]]]}}, +{"type":"Feature","id":"GEO","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[41.554084,41.535656],[41.703171,41.962943],[41.45347,42.645123],[40.875469,43.013628],[40.321394,43.128634],[39.955009,43.434998],[40.076965,43.553104],[40.922185,43.382159],[42.394395,43.220308],[43.756017,42.740828],[43.9312,42.554974],[44.537623,42.711993],[45.470279,42.502781],[45.77641,42.092444],[46.404951,41.860675],[46.145432,41.722802],[46.637908,41.181673],[46.501637,41.064445],[45.962601,41.123873],[45.217426,41.411452],[44.97248,41.248129],[43.582746,41.092143],[42.619549,41.583173],[41.554084,41.535656]]]}}, +{"type":"Feature","id":"GHA","properties":{"name":"Ghana"},"geometry":{"type":"Polygon","coordinates":[[[1.060122,5.928837],[-0.507638,5.343473],[-1.063625,5.000548],[-1.964707,4.710462],[-2.856125,4.994476],[-2.810701,5.389051],[-3.24437,6.250472],[-2.983585,7.379705],[-2.56219,8.219628],[-2.827496,9.642461],[-2.963896,10.395335],[-2.940409,10.96269],[-1.203358,11.009819],[-0.761576,10.93693],[-0.438702,11.098341],[0.023803,11.018682],[-0.049785,10.706918],[0.36758,10.191213],[0.365901,9.465004],[0.461192,8.677223],[0.712029,8.312465],[0.490957,7.411744],[0.570384,6.914359],[0.836931,6.279979],[1.060122,5.928837]]]}}, +{"type":"Feature","id":"GIN","properties":{"name":"Guinea"},"geometry":{"type":"Polygon","coordinates":[[[-8.439298,7.686043],[-8.722124,7.711674],[-8.926065,7.309037],[-9.208786,7.313921],[-9.403348,7.526905],[-9.33728,7.928534],[-9.755342,8.541055],[-10.016567,8.428504],[-10.230094,8.406206],[-10.505477,8.348896],[-10.494315,8.715541],[-10.65477,8.977178],[-10.622395,9.26791],[-10.839152,9.688246],[-11.117481,10.045873],[-11.917277,10.046984],[-12.150338,9.858572],[-12.425929,9.835834],[-12.596719,9.620188],[-12.711958,9.342712],[-13.24655,8.903049],[-13.685154,9.494744],[-14.074045,9.886167],[-14.330076,10.01572],[-14.579699,10.214467],[-14.693232,10.656301],[-14.839554,10.876572],[-15.130311,11.040412],[-14.685687,11.527824],[-14.382192,11.509272],[-14.121406,11.677117],[-13.9008,11.678719],[-13.743161,11.811269],[-13.828272,12.142644],[-13.718744,12.247186],[-13.700476,12.586183],[-13.217818,12.575874],[-12.499051,12.33209],[-12.278599,12.35444],[-12.203565,12.465648],[-11.658301,12.386583],[-11.513943,12.442988],[-11.456169,12.076834],[-11.297574,12.077971],[-11.036556,12.211245],[-10.87083,12.177887],[-10.593224,11.923975],[-10.165214,11.844084],[-9.890993,12.060479],[-9.567912,12.194243],[-9.327616,12.334286],[-9.127474,12.30806],[-8.905265,12.088358],[-8.786099,11.812561],[-8.376305,11.393646],[-8.581305,11.136246],[-8.620321,10.810891],[-8.407311,10.909257],[-8.282357,10.792597],[-8.335377,10.494812],[-8.029944,10.206535],[-8.229337,10.12902],[-8.309616,9.789532],[-8.079114,9.376224],[-7.8321,8.575704],[-8.203499,8.455453],[-8.299049,8.316444],[-8.221792,8.123329],[-8.280703,7.68718],[-8.439298,7.686043]]]}}, +{"type":"Feature","id":"GMB","properties":{"name":"Gambia"},"geometry":{"type":"Polygon","coordinates":[[[-16.841525,13.151394],[-16.713729,13.594959],[-15.624596,13.623587],[-15.39877,13.860369],[-15.081735,13.876492],[-14.687031,13.630357],[-14.376714,13.62568],[-14.046992,13.794068],[-13.844963,13.505042],[-14.277702,13.280585],[-14.712197,13.298207],[-15.141163,13.509512],[-15.511813,13.27857],[-15.691001,13.270353],[-15.931296,13.130284],[-16.841525,13.151394]]]}}, +{"type":"Feature","id":"GNB","properties":{"name":"Guinea Bissau"},"geometry":{"type":"Polygon","coordinates":[[[-15.130311,11.040412],[-15.66418,11.458474],[-16.085214,11.524594],[-16.314787,11.806515],[-16.308947,11.958702],[-16.613838,12.170911],[-16.677452,12.384852],[-16.147717,12.547762],[-15.816574,12.515567],[-15.548477,12.62817],[-13.700476,12.586183],[-13.718744,12.247186],[-13.828272,12.142644],[-13.743161,11.811269],[-13.9008,11.678719],[-14.121406,11.677117],[-14.382192,11.509272],[-14.685687,11.527824],[-15.130311,11.040412]]]}}, +{"type":"Feature","id":"GNQ","properties":{"name":"Equatorial Guinea"},"geometry":{"type":"Polygon","coordinates":[[[9.492889,1.01012],[9.305613,1.160911],[9.649158,2.283866],[11.276449,2.261051],[11.285079,1.057662],[9.830284,1.067894],[9.492889,1.01012]]]}}, +{"type":"Feature","id":"GRC","properties":{"name":"Greece"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.69998,35.705004],[24.246665,35.368022],[25.025015,35.424996],[25.769208,35.354018],[25.745023,35.179998],[26.290003,35.29999],[26.164998,35.004995],[24.724982,34.919988],[24.735007,35.084991],[23.514978,35.279992],[23.69998,35.705004]]],[[[26.604196,41.562115],[26.294602,40.936261],[26.056942,40.824123],[25.447677,40.852545],[24.925848,40.947062],[23.714811,40.687129],[24.407999,40.124993],[23.899968,39.962006],[23.342999,39.960998],[22.813988,40.476005],[22.626299,40.256561],[22.849748,39.659311],[23.350027,39.190011],[22.973099,38.970903],[23.530016,38.510001],[24.025025,38.219993],[24.040011,37.655015],[23.115003,37.920011],[23.409972,37.409991],[22.774972,37.30501],[23.154225,36.422506],[22.490028,36.41],[21.670026,36.844986],[21.295011,37.644989],[21.120034,38.310323],[20.730032,38.769985],[20.217712,39.340235],[20.150016,39.624998],[20.615,40.110007],[20.674997,40.435],[20.99999,40.580004],[21.02004,40.842727],[21.674161,40.931275],[22.055378,41.149866],[22.597308,41.130487],[22.76177,41.3048],[22.952377,41.337994],[23.692074,41.309081],[24.492645,41.583896],[25.197201,41.234486],[26.106138,41.328899],[26.117042,41.826905],[26.604196,41.562115]]]]}}, +{"type":"Feature","id":"GRL","properties":{"name":"Greenland"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.406537],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]}}, +{"type":"Feature","id":"GTM","properties":{"name":"Guatemala"},"geometry":{"type":"Polygon","coordinates":[[[-90.095555,13.735338],[-90.608624,13.909771],[-91.23241,13.927832],[-91.689747,14.126218],[-92.22775,14.538829],[-92.20323,14.830103],[-92.087216,15.064585],[-92.229249,15.251447],[-91.74796,16.066565],[-90.464473,16.069562],[-90.438867,16.41011],[-90.600847,16.470778],[-90.711822,16.687483],[-91.08167,16.918477],[-91.453921,17.252177],[-91.002269,17.254658],[-91.00152,17.817595],[-90.067934,17.819326],[-89.14308,17.808319],[-89.150806,17.015577],[-89.229122,15.886938],[-88.930613,15.887273],[-88.604586,15.70638],[-88.518364,15.855389],[-88.225023,15.727722],[-88.68068,15.346247],[-89.154811,15.066419],[-89.22522,14.874286],[-89.145535,14.678019],[-89.353326,14.424133],[-89.587343,14.362586],[-89.534219,14.244816],[-89.721934,14.134228],[-90.064678,13.88197],[-90.095555,13.735338]]]}}, +{"type":"Feature","id":"GUF","properties":{"name":"French Guiana"},"geometry":{"type":"Polygon","coordinates":[[[-52.556425,2.504705],[-52.939657,2.124858],[-53.418465,2.053389],[-53.554839,2.334897],[-53.778521,2.376703],[-54.088063,2.105557],[-54.524754,2.311849],[-54.27123,2.738748],[-54.184284,3.194172],[-54.011504,3.62257],[-54.399542,4.212611],[-54.478633,4.896756],[-53.958045,5.756548],[-53.618453,5.646529],[-52.882141,5.409851],[-51.823343,4.565768],[-51.657797,4.156232],[-52.249338,3.241094],[-52.556425,2.504705]]]}}, +{"type":"Feature","id":"GUY","properties":{"name":"Guyana"},"geometry":{"type":"Polygon","coordinates":[[[-59.758285,8.367035],[-59.101684,7.999202],[-58.482962,7.347691],[-58.454876,6.832787],[-58.078103,6.809094],[-57.542219,6.321268],[-57.147436,5.97315],[-57.307246,5.073567],[-57.914289,4.812626],[-57.86021,4.576801],[-58.044694,4.060864],[-57.601569,3.334655],[-57.281433,3.333492],[-57.150098,2.768927],[-56.539386,1.899523],[-56.782704,1.863711],[-57.335823,1.948538],[-57.660971,1.682585],[-58.11345,1.507195],[-58.429477,1.463942],[-58.540013,1.268088],[-59.030862,1.317698],[-59.646044,1.786894],[-59.718546,2.24963],[-59.974525,2.755233],[-59.815413,3.606499],[-59.53804,3.958803],[-59.767406,4.423503],[-60.111002,4.574967],[-59.980959,5.014061],[-60.213683,5.244486],[-60.733574,5.200277],[-61.410303,5.959068],[-61.139415,6.234297],[-61.159336,6.696077],[-60.543999,6.856584],[-60.295668,7.043911],[-60.637973,7.415],[-60.550588,7.779603],[-59.758285,8.367035]]]}}, +{"type":"Feature","id":"HND","properties":{"name":"Honduras"},"geometry":{"type":"Polygon","coordinates":[[[-87.316654,12.984686],[-87.489409,13.297535],[-87.793111,13.38448],[-87.723503,13.78505],[-87.859515,13.893312],[-88.065343,13.964626],[-88.503998,13.845486],[-88.541231,13.980155],[-88.843073,14.140507],[-89.058512,14.340029],[-89.353326,14.424133],[-89.145535,14.678019],[-89.22522,14.874286],[-89.154811,15.066419],[-88.68068,15.346247],[-88.225023,15.727722],[-88.121153,15.688655],[-87.901813,15.864458],[-87.61568,15.878799],[-87.522921,15.797279],[-87.367762,15.84694],[-86.903191,15.756713],[-86.440946,15.782835],[-86.119234,15.893449],[-86.001954,16.005406],[-85.683317,15.953652],[-85.444004,15.885749],[-85.182444,15.909158],[-84.983722,15.995923],[-84.52698,15.857224],[-84.368256,15.835158],[-84.063055,15.648244],[-83.773977,15.424072],[-83.410381,15.270903],[-83.147219,14.995829],[-83.489989,15.016267],[-83.628585,14.880074],[-83.975721,14.749436],[-84.228342,14.748764],[-84.449336,14.621614],[-84.649582,14.666805],[-84.820037,14.819587],[-84.924501,14.790493],[-85.052787,14.551541],[-85.148751,14.560197],[-85.165365,14.35437],[-85.514413,14.079012],[-85.698665,13.960078],[-85.801295,13.836055],[-86.096264,14.038187],[-86.312142,13.771356],[-86.520708,13.778487],[-86.755087,13.754845],[-86.733822,13.263093],[-86.880557,13.254204],[-87.005769,13.025794],[-87.316654,12.984686]]]}}, +{"type":"Feature","id":"HRV","properties":{"name":"Croatia"},"geometry":{"type":"Polygon","coordinates":[[[18.829838,45.908878],[19.072769,45.521511],[19.390476,45.236516],[19.005486,44.860234],[18.553214,45.08159],[17.861783,45.06774],[17.002146,45.233777],[16.534939,45.211608],[16.318157,45.004127],[15.959367,45.233777],[15.750026,44.818712],[16.23966,44.351143],[16.456443,44.04124],[16.916156,43.667722],[17.297373,43.446341],[17.674922,43.028563],[18.56,42.65],[18.450016,42.479991],[17.50997,42.849995],[16.930006,43.209998],[16.015385,43.507215],[15.174454,44.243191],[15.37625,44.317915],[14.920309,44.738484],[14.901602,45.07606],[14.258748,45.233777],[13.952255,44.802124],[13.656976,45.136935],[13.679403,45.484149],[13.71506,45.500324],[14.411968,45.466166],[14.595109,45.634941],[14.935244,45.471695],[15.327675,45.452316],[15.323954,45.731783],[15.67153,45.834154],[15.768733,46.238108],[16.564808,46.503751],[16.882515,46.380632],[17.630066,45.951769],[18.456062,45.759481],[18.829838,45.908878]]]}}, +{"type":"Feature","id":"HTI","properties":{"name":"Haiti"},"geometry":{"type":"Polygon","coordinates":[[[-73.189791,19.915684],[-72.579673,19.871501],[-71.712361,19.714456],[-71.624873,19.169838],[-71.701303,18.785417],[-71.945112,18.6169],[-71.687738,18.31666],[-71.708305,18.044997],[-72.372476,18.214961],[-72.844411,18.145611],[-73.454555,18.217906],[-73.922433,18.030993],[-74.458034,18.34255],[-74.369925,18.664908],[-73.449542,18.526053],[-72.694937,18.445799],[-72.334882,18.668422],[-72.79165,19.101625],[-72.784105,19.483591],[-73.415022,19.639551],[-73.189791,19.915684]]]}}, +{"type":"Feature","id":"HUN","properties":{"name":"Hungary"},"geometry":{"type":"Polygon","coordinates":[[[16.202298,46.852386],[16.534268,47.496171],[16.340584,47.712902],[16.903754,47.714866],[16.979667,48.123497],[17.488473,47.867466],[17.857133,47.758429],[18.696513,47.880954],[18.777025,48.081768],[19.174365,48.111379],[19.661364,48.266615],[19.769471,48.202691],[20.239054,48.327567],[20.473562,48.56285],[20.801294,48.623854],[21.872236,48.319971],[22.085608,48.422264],[22.64082,48.15024],[22.710531,47.882194],[22.099768,47.672439],[21.626515,46.994238],[21.021952,46.316088],[20.220192,46.127469],[19.596045,46.17173],[18.829838,45.908878],[18.456062,45.759481],[17.630066,45.951769],[16.882515,46.380632],[16.564808,46.503751],[16.370505,46.841327],[16.202298,46.852386]]]}}, +{"type":"Feature","id":"IDN","properties":{"name":"Indonesia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.715609,-10.239581],[120.295014,-10.25865],[118.967808,-9.557969],[119.90031,-9.36134],[120.425756,-9.665921],[120.775502,-9.969675],[120.715609,-10.239581]]],[[[124.43595,-10.140001],[123.579982,-10.359987],[123.459989,-10.239995],[123.550009,-9.900016],[123.980009,-9.290027],[124.968682,-8.89279],[125.07002,-9.089987],[125.08852,-9.393173],[124.43595,-10.140001]]],[[[117.900018,-8.095681],[118.260616,-8.362383],[118.87846,-8.280683],[119.126507,-8.705825],[117.970402,-8.906639],[117.277731,-9.040895],[116.740141,-9.032937],[117.083737,-8.457158],[117.632024,-8.449303],[117.900018,-8.095681]]],[[[122.903537,-8.094234],[122.756983,-8.649808],[121.254491,-8.933666],[119.924391,-8.810418],[119.920929,-8.444859],[120.715092,-8.236965],[121.341669,-8.53674],[122.007365,-8.46062],[122.903537,-8.094234]]],[[[108.623479,-6.777674],[110.539227,-6.877358],[110.759576,-6.465186],[112.614811,-6.946036],[112.978768,-7.594213],[114.478935,-7.776528],[115.705527,-8.370807],[114.564511,-8.751817],[113.464734,-8.348947],[112.559672,-8.376181],[111.522061,-8.302129],[110.58615,-8.122605],[109.427667,-7.740664],[108.693655,-7.6416],[108.277763,-7.766657],[106.454102,-7.3549],[106.280624,-6.9249],[105.365486,-6.851416],[106.051646,-5.895919],[107.265009,-5.954985],[108.072091,-6.345762],[108.486846,-6.421985],[108.623479,-6.777674]]],[[[134.724624,-6.214401],[134.210134,-6.895238],[134.112776,-6.142467],[134.290336,-5.783058],[134.499625,-5.445042],[134.727002,-5.737582],[134.724624,-6.214401]]],[[[127.249215,-3.459065],[126.874923,-3.790983],[126.183802,-3.607376],[125.989034,-3.177273],[127.000651,-3.129318],[127.249215,-3.459065]]],[[[130.471344,-3.093764],[130.834836,-3.858472],[129.990547,-3.446301],[129.155249,-3.362637],[128.590684,-3.428679],[127.898891,-3.393436],[128.135879,-2.84365],[129.370998,-2.802154],[130.471344,-3.093764]]],[[[134.143368,-1.151867],[134.422627,-2.769185],[135.457603,-3.367753],[136.293314,-2.307042],[137.440738,-1.703513],[138.329727,-1.702686],[139.184921,-2.051296],[139.926684,-2.409052],[141.00021,-2.600151],[141.017057,-5.859022],[141.033852,-9.117893],[140.143415,-8.297168],[139.127767,-8.096043],[138.881477,-8.380935],[137.614474,-8.411683],[138.039099,-7.597882],[138.668621,-7.320225],[138.407914,-6.232849],[137.92784,-5.393366],[135.98925,-4.546544],[135.164598,-4.462931],[133.66288,-3.538853],[133.367705,-4.024819],[132.983956,-4.112979],[132.756941,-3.746283],[132.753789,-3.311787],[131.989804,-2.820551],[133.066845,-2.460418],[133.780031,-2.479848],[133.696212,-2.214542],[132.232373,-2.212526],[131.836222,-1.617162],[130.94284,-1.432522],[130.519558,-0.93772],[131.867538,-0.695461],[132.380116,-0.369538],[133.985548,-0.78021],[134.143368,-1.151867]]],[[[125.240501,1.419836],[124.437035,0.427881],[123.685505,0.235593],[122.723083,0.431137],[121.056725,0.381217],[120.183083,0.237247],[120.04087,-0.519658],[120.935905,-1.408906],[121.475821,-0.955962],[123.340565,-0.615673],[123.258399,-1.076213],[122.822715,-0.930951],[122.38853,-1.516858],[121.508274,-1.904483],[122.454572,-3.186058],[122.271896,-3.5295],[123.170963,-4.683693],[123.162333,-5.340604],[122.628515,-5.634591],[122.236394,-5.282933],[122.719569,-4.464172],[121.738234,-4.851331],[121.489463,-4.574553],[121.619171,-4.188478],[120.898182,-3.602105],[120.972389,-2.627643],[120.305453,-2.931604],[120.390047,-4.097579],[120.430717,-5.528241],[119.796543,-5.6734],[119.366906,-5.379878],[119.653606,-4.459417],[119.498835,-3.494412],[119.078344,-3.487022],[118.767769,-2.801999],[119.180974,-2.147104],[119.323394,-1.353147],[119.825999,0.154254],[120.035702,0.566477],[120.885779,1.309223],[121.666817,1.013944],[122.927567,0.875192],[124.077522,0.917102],[125.065989,1.643259],[125.240501,1.419836]]],[[[128.688249,1.132386],[128.635952,0.258486],[128.12017,0.356413],[127.968034,-0.252077],[128.379999,-0.780004],[128.100016,-0.899996],[127.696475,-0.266598],[127.39949,1.011722],[127.600512,1.810691],[127.932378,2.174596],[128.004156,1.628531],[128.594559,1.540811],[128.688249,1.132386]]],[[[117.875627,1.827641],[118.996747,0.902219],[117.811858,0.784242],[117.478339,0.102475],[117.521644,-0.803723],[116.560048,-1.487661],[116.533797,-2.483517],[116.148084,-4.012726],[116.000858,-3.657037],[114.864803,-4.106984],[114.468652,-3.495704],[113.755672,-3.43917],[113.256994,-3.118776],[112.068126,-3.478392],[111.703291,-2.994442],[111.04824,-3.049426],[110.223846,-2.934032],[110.070936,-1.592874],[109.571948,-1.314907],[109.091874,-0.459507],[108.952658,0.415375],[109.069136,1.341934],[109.66326,2.006467],[109.830227,1.338136],[110.514061,0.773131],[111.159138,0.976478],[111.797548,0.904441],[112.380252,1.410121],[112.859809,1.49779],[113.80585,1.217549],[114.621355,1.430688],[115.134037,2.821482],[115.519078,3.169238],[115.865517,4.306559],[117.015214,4.306094],[117.882035,4.137551],[117.313232,3.234428],[118.04833,2.28769],[117.875627,1.827641]]],[[[105.817655,-5.852356],[104.710384,-5.873285],[103.868213,-5.037315],[102.584261,-4.220259],[102.156173,-3.614146],[101.399113,-2.799777],[100.902503,-2.050262],[100.141981,-0.650348],[99.26374,0.183142],[98.970011,1.042882],[98.601351,1.823507],[97.699598,2.453184],[97.176942,3.308791],[96.424017,3.86886],[95.380876,4.970782],[95.293026,5.479821],[95.936863,5.439513],[97.484882,5.246321],[98.369169,4.26837],[99.142559,3.59035],[99.693998,3.174329],[100.641434,2.099381],[101.658012,2.083697],[102.498271,1.3987],[103.07684,0.561361],[103.838396,0.104542],[103.437645,-0.711946],[104.010789,-1.059212],[104.369991,-1.084843],[104.53949,-1.782372],[104.887893,-2.340425],[105.622111,-2.428844],[106.108593,-3.061777],[105.857446,-4.305525],[105.817655,-5.852356]]]]}}, +{"type":"Feature","id":"IND","properties":{"name":"India"},"geometry":{"type":"Polygon","coordinates":[[[77.837451,35.49401],[78.912269,34.321936],[78.811086,33.506198],[79.208892,32.994395],[79.176129,32.48378],[78.458446,32.618164],[78.738894,31.515906],[79.721367,30.882715],[81.111256,30.183481],[80.476721,29.729865],[80.088425,28.79447],[81.057203,28.416095],[81.999987,27.925479],[83.304249,27.364506],[84.675018,27.234901],[85.251779,26.726198],[86.024393,26.630985],[87.227472,26.397898],[88.060238,26.414615],[88.174804,26.810405],[88.043133,27.445819],[88.120441,27.876542],[88.730326,28.086865],[88.814248,27.299316],[88.835643,27.098966],[89.744528,26.719403],[90.373275,26.875724],[91.217513,26.808648],[92.033484,26.83831],[92.103712,27.452614],[91.696657,27.771742],[92.503119,27.896876],[93.413348,28.640629],[94.56599,29.277438],[95.404802,29.031717],[96.117679,29.452802],[96.586591,28.83098],[96.248833,28.411031],[97.327114,28.261583],[97.402561,27.882536],[97.051989,27.699059],[97.133999,27.083774],[96.419366,27.264589],[95.124768,26.573572],[95.155153,26.001307],[94.603249,25.162495],[94.552658,24.675238],[94.106742,23.850741],[93.325188,24.078556],[93.286327,23.043658],[93.060294,22.703111],[93.166128,22.27846],[92.672721,22.041239],[92.146035,23.627499],[91.869928,23.624346],[91.706475,22.985264],[91.158963,23.503527],[91.46773,24.072639],[91.915093,24.130414],[92.376202,24.976693],[91.799596,25.147432],[90.872211,25.132601],[89.920693,25.26975],[89.832481,25.965082],[89.355094,26.014407],[88.563049,26.446526],[88.209789,25.768066],[88.931554,25.238692],[88.306373,24.866079],[88.084422,24.501657],[88.69994,24.233715],[88.52977,23.631142],[88.876312,22.879146],[89.031961,22.055708],[88.888766,21.690588],[88.208497,21.703172],[86.975704,21.495562],[87.033169,20.743308],[86.499351,20.151638],[85.060266,19.478579],[83.941006,18.30201],[83.189217,17.671221],[82.192792,17.016636],[82.191242,16.556664],[81.692719,16.310219],[80.791999,15.951972],[80.324896,15.899185],[80.025069,15.136415],[80.233274,13.835771],[80.286294,13.006261],[79.862547,12.056215],[79.857999,10.357275],[79.340512,10.308854],[78.885345,9.546136],[79.18972,9.216544],[78.277941,8.933047],[77.941165,8.252959],[77.539898,7.965535],[76.592979,8.899276],[76.130061,10.29963],[75.746467,11.308251],[75.396101,11.781245],[74.864816,12.741936],[74.616717,13.992583],[74.443859,14.617222],[73.534199,15.990652],[73.119909,17.92857],[72.820909,19.208234],[72.824475,20.419503],[72.630533,21.356009],[71.175273,20.757441],[70.470459,20.877331],[69.16413,22.089298],[69.644928,22.450775],[69.349597,22.84318],[68.176645,23.691965],[68.842599,24.359134],[71.04324,24.356524],[70.844699,25.215102],[70.282873,25.722229],[70.168927,26.491872],[69.514393,26.940966],[70.616496,27.989196],[71.777666,27.91318],[72.823752,28.961592],[73.450638,29.976413],[74.42138,30.979815],[74.405929,31.692639],[75.258642,32.271105],[74.451559,32.7649],[74.104294,33.441473],[73.749948,34.317699],[74.240203,34.748887],[75.757061,34.504923],[76.871722,34.653544],[77.837451,35.49401]]]}}, +{"type":"Feature","id":"IRL","properties":{"name":"Ireland"},"geometry":{"type":"Polygon","coordinates":[[[-6.197885,53.867565],[-6.032985,53.153164],[-6.788857,52.260118],[-8.561617,51.669301],[-9.977086,51.820455],[-9.166283,52.864629],[-9.688525,53.881363],[-8.327987,54.664519],[-7.572168,55.131622],[-7.366031,54.595841],[-7.572168,54.059956],[-6.95373,54.073702],[-6.197885,53.867565]]]}}, +{"type":"Feature","id":"IRN","properties":{"name":"Iran"},"geometry":{"type":"Polygon","coordinates":[[[53.921598,37.198918],[54.800304,37.392421],[55.511578,37.964117],[56.180375,37.935127],[56.619366,38.121394],[57.330434,38.029229],[58.436154,37.522309],[59.234762,37.412988],[60.377638,36.527383],[61.123071,36.491597],[61.210817,35.650072],[60.803193,34.404102],[60.52843,33.676446],[60.9637,33.528832],[60.536078,32.981269],[60.863655,32.18292],[60.941945,31.548075],[61.699314,31.379506],[61.781222,30.73585],[60.874248,29.829239],[61.369309,29.303276],[61.771868,28.699334],[62.72783,28.259645],[62.755426,27.378923],[63.233898,27.217047],[63.316632,26.756532],[61.874187,26.239975],[61.497363,25.078237],[59.616134,25.380157],[58.525761,25.609962],[57.397251,25.739902],[56.970766,26.966106],[56.492139,27.143305],[55.72371,26.964633],[54.71509,26.480658],[53.493097,26.812369],[52.483598,27.580849],[51.520763,27.86569],[50.852948,28.814521],[50.115009,30.147773],[49.57685,29.985715],[48.941333,30.31709],[48.567971,29.926778],[48.014568,30.452457],[48.004698,30.985137],[47.685286,30.984853],[47.849204,31.709176],[47.334661,32.469155],[46.109362,33.017287],[45.416691,33.967798],[45.64846,34.748138],[46.151788,35.093259],[46.07634,35.677383],[45.420618,35.977546],[44.77267,37.17045],[44.225756,37.971584],[44.421403,38.281281],[44.109225,39.428136],[44.79399,39.713003],[44.952688,39.335765],[45.457722,38.874139],[46.143623,38.741201],[46.50572,38.770605],[47.685079,39.508364],[48.060095,39.582235],[48.355529,39.288765],[48.010744,38.794015],[48.634375,38.270378],[48.883249,38.320245],[49.199612,37.582874],[50.147771,37.374567],[50.842354,36.872814],[52.264025,36.700422],[53.82579,36.965031],[53.921598,37.198918]]]}}, +{"type":"Feature","id":"IRQ","properties":{"name":"Iraq"},"geometry":{"type":"Polygon","coordinates":[[[45.420618,35.977546],[46.07634,35.677383],[46.151788,35.093259],[45.64846,34.748138],[45.416691,33.967798],[46.109362,33.017287],[47.334661,32.469155],[47.849204,31.709176],[47.685286,30.984853],[48.004698,30.985137],[48.014568,30.452457],[48.567971,29.926778],[47.974519,29.975819],[47.302622,30.05907],[46.568713,29.099025],[44.709499,29.178891],[41.889981,31.190009],[40.399994,31.889992],[39.195468,32.161009],[38.792341,33.378686],[41.006159,34.419372],[41.383965,35.628317],[41.289707,36.358815],[41.837064,36.605854],[42.349591,37.229873],[42.779126,37.385264],[43.942259,37.256228],[44.293452,37.001514],[44.772699,37.170445],[45.420618,35.977546]]]}}, +{"type":"Feature","id":"ISL","properties":{"name":"Iceland"},"geometry":{"type":"Polygon","coordinates":[[[-14.508695,66.455892],[-14.739637,65.808748],[-13.609732,65.126671],[-14.909834,64.364082],[-17.794438,63.678749],[-18.656246,63.496383],[-19.972755,63.643635],[-22.762972,63.960179],[-21.778484,64.402116],[-23.955044,64.89113],[-22.184403,65.084968],[-22.227423,65.378594],[-24.326184,65.611189],[-23.650515,66.262519],[-22.134922,66.410469],[-20.576284,65.732112],[-19.056842,66.276601],[-17.798624,65.993853],[-16.167819,66.526792],[-14.508695,66.455892]]]}}, +{"type":"Feature","id":"ISR","properties":{"name":"Israel"},"geometry":{"type":"Polygon","coordinates":[[[35.719918,32.709192],[35.545665,32.393992],[35.18393,32.532511],[34.974641,31.866582],[35.225892,31.754341],[34.970507,31.616778],[34.927408,31.353435],[35.397561,31.489086],[35.420918,31.100066],[34.922603,29.501326],[34.265433,31.219361],[34.556372,31.548824],[34.488107,31.605539],[34.752587,32.072926],[34.955417,32.827376],[35.098457,33.080539],[35.126053,33.0909],[35.460709,33.08904],[35.552797,33.264275],[35.821101,33.277426],[35.836397,32.868123],[35.700798,32.716014],[35.719918,32.709192]]]}}, +{"type":"Feature","id":"ITA","properties":{"name":"Italy"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.520376,38.231155],[15.160243,37.444046],[15.309898,37.134219],[15.099988,36.619987],[14.335229,36.996631],[13.826733,37.104531],[12.431004,37.61295],[12.570944,38.126381],[13.741156,38.034966],[14.761249,38.143874],[15.520376,38.231155]]],[[[9.210012,41.209991],[9.809975,40.500009],[9.669519,39.177376],[9.214818,39.240473],[8.806936,38.906618],[8.428302,39.171847],[8.388253,40.378311],[8.159998,40.950007],[8.709991,40.899984],[9.210012,41.209991]]],[[[12.376485,46.767559],[13.806475,46.509306],[13.69811,46.016778],[13.93763,45.591016],[13.141606,45.736692],[12.328581,45.381778],[12.383875,44.885374],[12.261453,44.600482],[12.589237,44.091366],[13.526906,43.587727],[14.029821,42.761008],[15.14257,41.95514],[15.926191,41.961315],[16.169897,41.740295],[15.889346,41.541082],[16.785002,41.179606],[17.519169,40.877143],[18.376687,40.355625],[18.480247,40.168866],[18.293385,39.810774],[17.73838,40.277671],[16.869596,40.442235],[16.448743,39.795401],[17.17149,39.4247],[17.052841,38.902871],[16.635088,38.843572],[16.100961,37.985899],[15.684087,37.908849],[15.687963,38.214593],[15.891981,38.750942],[16.109332,38.964547],[15.718814,39.544072],[15.413613,40.048357],[14.998496,40.172949],[14.703268,40.60455],[14.060672,40.786348],[13.627985,41.188287],[12.888082,41.25309],[12.106683,41.704535],[11.191906,42.355425],[10.511948,42.931463],[10.200029,43.920007],[9.702488,44.036279],[8.888946,44.366336],[8.428561,44.231228],[7.850767,43.767148],[7.435185,43.693845],[7.549596,44.127901],[7.007562,44.254767],[6.749955,45.028518],[7.096652,45.333099],[6.802355,45.70858],[6.843593,45.991147],[7.273851,45.776948],[7.755992,45.82449],[8.31663,46.163642],[8.489952,46.005151],[8.966306,46.036932],[9.182882,46.440215],[9.922837,46.314899],[10.363378,46.483571],[10.442701,46.893546],[11.048556,46.751359],[11.164828,46.941579],[12.153088,47.115393],[12.376485,46.767559]]]]}}, +{"type":"Feature","id":"JAM","properties":{"name":"Jamaica"},"geometry":{"type":"Polygon","coordinates":[[[-77.569601,18.490525],[-76.896619,18.400867],[-76.365359,18.160701],[-76.199659,17.886867],[-76.902561,17.868238],[-77.206341,17.701116],[-77.766023,17.861597],[-78.337719,18.225968],[-78.217727,18.454533],[-77.797365,18.524218],[-77.569601,18.490525]]]}}, +{"type":"Feature","id":"JOR","properties":{"name":"Jordan"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.719918,32.709192],[36.834062,32.312938],[38.792341,33.378686],[39.195468,32.161009],[39.004886,32.010217],[37.002166,31.508413],[37.998849,30.5085],[37.66812,30.338665],[37.503582,30.003776],[36.740528,29.865283],[36.501214,29.505254],[36.068941,29.197495],[34.956037,29.356555],[34.922603,29.501326],[35.420918,31.100066],[35.397561,31.489086],[35.545252,31.782505],[35.545665,32.393992]]]}}, +{"type":"Feature","id":"JPN","properties":{"name":"Japan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.638428,34.149234],[134.766379,33.806335],[134.203416,33.201178],[133.79295,33.521985],[133.280268,33.28957],[133.014858,32.704567],[132.363115,32.989382],[132.371176,33.463642],[132.924373,34.060299],[133.492968,33.944621],[133.904106,34.364931],[134.638428,34.149234]]],[[[140.976388,37.142074],[140.59977,36.343983],[140.774074,35.842877],[140.253279,35.138114],[138.975528,34.6676],[137.217599,34.606286],[135.792983,33.464805],[135.120983,33.849071],[135.079435,34.596545],[133.340316,34.375938],[132.156771,33.904933],[130.986145,33.885761],[132.000036,33.149992],[131.33279,31.450355],[130.686318,31.029579],[130.20242,31.418238],[130.447676,32.319475],[129.814692,32.61031],[129.408463,33.296056],[130.353935,33.604151],[130.878451,34.232743],[131.884229,34.749714],[132.617673,35.433393],[134.608301,35.731618],[135.677538,35.527134],[136.723831,37.304984],[137.390612,36.827391],[138.857602,37.827485],[139.426405,38.215962],[140.05479,39.438807],[139.883379,40.563312],[140.305783,41.195005],[141.368973,41.37856],[141.914263,39.991616],[141.884601,39.180865],[140.959489,38.174001],[140.976388,37.142074]]],[[[143.910162,44.1741],[144.613427,43.960883],[145.320825,44.384733],[145.543137,43.262088],[144.059662,42.988358],[143.18385,41.995215],[141.611491,42.678791],[141.067286,41.584594],[139.955106,41.569556],[139.817544,42.563759],[140.312087,43.333273],[141.380549,43.388825],[141.671952,44.772125],[141.967645,45.551483],[143.14287,44.510358],[143.910162,44.1741]]]]}}, +{"type":"Feature","id":"KAZ","properties":{"name":"Kazakhstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[70.388965,42.081308],[69.070027,41.384244],[68.632483,40.668681],[68.259896,40.662325],[67.985856,41.135991],[66.714047,41.168444],[66.510649,41.987644],[66.023392,41.994646],[66.098012,42.99766],[64.900824,43.728081],[63.185787,43.650075],[62.0133,43.504477],[61.05832,44.405817],[60.239972,44.784037],[58.689989,45.500014],[58.503127,45.586804],[55.928917,44.995858],[55.968191,41.308642],[55.455251,41.259859],[54.755345,42.043971],[54.079418,42.324109],[52.944293,42.116034],[52.50246,41.783316],[52.446339,42.027151],[52.692112,42.443895],[52.501426,42.792298],[51.342427,43.132975],[50.891292,44.031034],[50.339129,44.284016],[50.305643,44.609836],[51.278503,44.514854],[51.316899,45.245998],[52.16739,45.408391],[53.040876,45.259047],[53.220866,46.234646],[53.042737,46.853006],[52.042023,46.804637],[51.191945,47.048705],[50.034083,46.60899],[49.10116,46.39933],[48.593241,46.561034],[48.694734,47.075628],[48.057253,47.743753],[47.315231,47.715847],[46.466446,48.394152],[47.043672,49.152039],[46.751596,49.356006],[47.54948,50.454698],[48.577841,49.87476],[48.702382,50.605128],[50.766648,51.692762],[52.328724,51.718652],[54.532878,51.02624],[55.716941,50.621717],[56.777961,51.043551],[58.363291,51.063653],[59.642282,50.545442],[59.932807,50.842194],[61.337424,50.79907],[61.588003,51.272659],[59.967534,51.96042],[60.927269,52.447548],[60.739993,52.719986],[61.699986,52.979996],[60.978066,53.664993],[61.436591,54.006265],[65.178534,54.354228],[65.666876,54.601267],[68.1691,54.970392],[69.068167,55.38525],[70.865267,55.169734],[71.180131,54.133285],[72.22415,54.376655],[73.508516,54.035617],[73.425679,53.48981],[74.384845,53.546861],[76.8911,54.490524],[76.525179,54.177003],[77.800916,53.404415],[80.03556,50.864751],[80.568447,51.388336],[81.945986,50.812196],[83.383004,51.069183],[83.935115,50.889246],[84.416377,50.3114],[85.11556,50.117303],[85.54127,49.692859],[86.829357,49.826675],[87.35997,49.214981],[86.598776,48.549182],[85.768233,48.455751],[85.720484,47.452969],[85.16429,47.000956],[83.180484,47.330031],[82.458926,45.53965],[81.947071,45.317027],[79.966106,44.917517],[80.866206,43.180362],[80.18015,42.920068],[80.25999,42.349999],[79.643645,42.496683],[79.142177,42.856092],[77.658392,42.960686],[76.000354,42.988022],[75.636965,42.8779],[74.212866,43.298339],[73.645304,43.091272],[73.489758,42.500894],[71.844638,42.845395],[71.186281,42.704293],[70.962315,42.266154]]]}}, +{"type":"Feature","id":"KEN","properties":{"name":"Kenya"},"geometry":{"type":"Polygon","coordinates":[[[40.993,-0.85829],[41.58513,-1.68325],[40.88477,-2.08255],[40.63785,-2.49979],[40.26304,-2.57309],[40.12119,-3.27768],[39.80006,-3.68116],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[33.903711,-0.95],[33.893569,0.109814],[34.18,0.515],[34.6721,1.17694],[35.03599,1.90584],[34.59607,3.05374],[34.47913,3.5556],[34.005,4.249885],[34.620196,4.847123],[35.298007,5.506],[35.817448,5.338232],[35.817448,4.776966],[36.159079,4.447864],[36.855093,4.447864],[38.120915,3.598605],[38.43697,3.58851],[38.67114,3.61607],[38.89251,3.50074],[39.559384,3.42206],[39.85494,3.83879],[40.76848,4.25702],[41.1718,3.91909],[41.855083,3.918912],[40.98105,2.78452],[40.993,-0.85829]]]}}, +{"type":"Feature","id":"KGZ","properties":{"name":"Kyrgyzstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[71.186281,42.704293],[71.844638,42.845395],[73.489758,42.500894],[73.645304,43.091272],[74.212866,43.298339],[75.636965,42.8779],[76.000354,42.988022],[77.658392,42.960686],[79.142177,42.856092],[79.643645,42.496683],[80.25999,42.349999],[80.11943,42.123941],[78.543661,41.582243],[78.187197,41.185316],[76.904484,41.066486],[76.526368,40.427946],[75.467828,40.562072],[74.776862,40.366425],[73.822244,39.893973],[73.960013,39.660008],[73.675379,39.431237],[71.784694,39.279463],[70.549162,39.604198],[69.464887,39.526683],[69.55961,40.103211],[70.648019,39.935754],[71.014198,40.244366],[71.774875,40.145844],[73.055417,40.866033],[71.870115,41.3929],[71.157859,41.143587],[70.420022,41.519998],[71.259248,42.167711],[70.962315,42.266154]]]}}, +{"type":"Feature","id":"KHM","properties":{"name":"Cambodia"},"geometry":{"type":"Polygon","coordinates":[[[103.49728,10.632555],[103.09069,11.153661],[102.584932,12.186595],[102.348099,13.394247],[102.988422,14.225721],[104.281418,14.416743],[105.218777,14.273212],[106.043946,13.881091],[106.496373,14.570584],[107.382727,14.202441],[107.614548,13.535531],[107.491403,12.337206],[105.810524,11.567615],[106.24967,10.961812],[105.199915,10.88931],[104.334335,10.486544],[103.49728,10.632555]]]}}, +{"type":"Feature","id":"KOR","properties":{"name":"South Korea"},"geometry":{"type":"Polygon","coordinates":[[[128.349716,38.612243],[129.21292,37.432392],[129.46045,36.784189],[129.468304,35.632141],[129.091377,35.082484],[128.18585,34.890377],[127.386519,34.475674],[126.485748,34.390046],[126.37392,34.93456],[126.559231,35.684541],[126.117398,36.725485],[126.860143,36.893924],[126.174759,37.749686],[126.237339,37.840378],[126.68372,37.804773],[127.073309,38.256115],[127.780035,38.304536],[128.205746,38.370397],[128.349716,38.612243]]]}}, +{"type":"Feature","id":"CS-KM","properties":{"name":"Kosovo"},"geometry":{"type":"Polygon","coordinates":[[[20.76216,42.05186],[20.71731,41.84711],[20.59023,41.85541],[20.52295,42.21787],[20.28374,42.32025],[20.0707,42.58863],[20.25758,42.81275],[20.49679,42.88469],[20.63508,43.21671],[20.81448,43.27205],[20.95651,43.13094],[21.143395,43.068685],[21.27421,42.90959],[21.43866,42.86255],[21.63302,42.67717],[21.77505,42.6827],[21.66292,42.43922],[21.54332,42.32025],[21.576636,42.245224],[21.3527,42.2068],[20.76216,42.05186]]]}}, +{"type":"Feature","id":"KWT","properties":{"name":"Kuwait"},"geometry":{"type":"Polygon","coordinates":[[[47.974519,29.975819],[48.183189,29.534477],[48.093943,29.306299],[48.416094,28.552004],[47.708851,28.526063],[47.459822,29.002519],[46.568713,29.099025],[47.302622,30.05907],[47.974519,29.975819]]]}}, +{"type":"Feature","id":"LAO","properties":{"name":"Laos"},"geometry":{"type":"Polygon","coordinates":[[[105.218777,14.273212],[105.544338,14.723934],[105.589039,15.570316],[104.779321,16.441865],[104.716947,17.428859],[103.956477,18.240954],[103.200192,18.309632],[102.998706,17.961695],[102.413005,17.932782],[102.113592,18.109102],[101.059548,17.512497],[101.035931,18.408928],[101.282015,19.462585],[100.606294,19.508344],[100.548881,20.109238],[100.115988,20.41785],[100.329101,20.786122],[101.180005,21.436573],[101.270026,21.201652],[101.80312,21.174367],[101.652018,22.318199],[102.170436,22.464753],[102.754896,21.675137],[103.203861,20.766562],[104.435,20.758733],[104.822574,19.886642],[104.183388,19.624668],[103.896532,19.265181],[105.094598,18.666975],[105.925762,17.485315],[106.556008,16.604284],[107.312706,15.908538],[107.564525,15.202173],[107.382727,14.202441],[106.496373,14.570584],[106.043946,13.881091],[105.218777,14.273212]]]}}, +{"type":"Feature","id":"LBN","properties":{"name":"Lebanon"},"geometry":{"type":"Polygon","coordinates":[[[35.821101,33.277426],[35.552797,33.264275],[35.460709,33.08904],[35.126053,33.0909],[35.482207,33.90545],[35.979592,34.610058],[35.998403,34.644914],[36.448194,34.593935],[36.61175,34.201789],[36.06646,33.824912],[35.821101,33.277426]]]}}, +{"type":"Feature","id":"LBR","properties":{"name":"Liberia"},"geometry":{"type":"Polygon","coordinates":[[[-7.712159,4.364566],[-7.974107,4.355755],[-9.004794,4.832419],[-9.91342,5.593561],[-10.765384,6.140711],[-11.438779,6.785917],[-11.199802,7.105846],[-11.146704,7.396706],[-10.695595,7.939464],[-10.230094,8.406206],[-10.016567,8.428504],[-9.755342,8.541055],[-9.33728,7.928534],[-9.403348,7.526905],[-9.208786,7.313921],[-8.926065,7.309037],[-8.722124,7.711674],[-8.439298,7.686043],[-8.485446,7.395208],[-8.385452,6.911801],[-8.60288,6.467564],[-8.311348,6.193033],[-7.993693,6.12619],[-7.570153,5.707352],[-7.539715,5.313345],[-7.635368,5.188159],[-7.712159,4.364566]]]}}, +{"type":"Feature","id":"LBY","properties":{"name":"Libya"},"geometry":{"type":"Polygon","coordinates":[[[14.8513,22.86295],[14.143871,22.491289],[13.581425,23.040506],[11.999506,23.471668],[11.560669,24.097909],[10.771364,24.562532],[10.303847,24.379313],[9.948261,24.936954],[9.910693,25.365455],[9.319411,26.094325],[9.716286,26.512206],[9.629056,27.140953],[9.756128,27.688259],[9.683885,28.144174],[9.859998,28.95999],[9.805634,29.424638],[9.48214,30.307556],[9.970017,30.539325],[10.056575,30.961831],[9.950225,31.37607],[10.636901,31.761421],[10.94479,32.081815],[11.432253,32.368903],[11.488787,33.136996],[12.66331,32.79278],[13.08326,32.87882],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[16.61162,31.18218],[18.02109,30.76357],[19.08641,30.26639],[19.57404,30.52582],[20.05335,30.98576],[19.82033,31.75179],[20.13397,32.2382],[20.85452,32.7068],[21.54298,32.8432],[22.89576,32.63858],[23.2368,32.19149],[23.60913,32.18726],[23.9275,32.01667],[24.92114,31.89936],[25.16482,31.56915],[24.80287,31.08929],[24.95762,30.6616],[24.70007,30.04419],[25,29.238655],[25,25.6825],[25,22],[25,20.00304],[23.85,20],[23.83766,19.58047],[19.84926,21.49509],[15.86085,23.40972],[14.8513,22.86295]]]}}, +{"type":"Feature","id":"LKA","properties":{"name":"Sri Lanka"},"geometry":{"type":"Polygon","coordinates":[[[81.787959,7.523055],[81.637322,6.481775],[81.21802,6.197141],[80.348357,5.96837],[79.872469,6.763463],[79.695167,8.200843],[80.147801,9.824078],[80.838818,9.268427],[81.304319,8.564206],[81.787959,7.523055]]]}}, +{"type":"Feature","id":"LSO","properties":{"name":"Lesotho"},"geometry":{"type":"Polygon","coordinates":[[[28.978263,-28.955597],[29.325166,-29.257387],[29.018415,-29.743766],[28.8484,-30.070051],[28.291069,-30.226217],[28.107205,-30.545732],[27.749397,-30.645106],[26.999262,-29.875954],[27.532511,-29.242711],[28.074338,-28.851469],[28.5417,-28.647502],[28.978263,-28.955597]]]}}, +{"type":"Feature","id":"LTU","properties":{"name":"Lithuania"},"geometry":{"type":"Polygon","coordinates":[[[22.731099,54.327537],[22.651052,54.582741],[22.757764,54.856574],[22.315724,55.015299],[21.268449,55.190482],[21.0558,56.031076],[22.201157,56.337802],[23.878264,56.273671],[24.860684,56.372528],[25.000934,56.164531],[25.533047,56.100297],[26.494331,55.615107],[26.588279,55.167176],[25.768433,54.846963],[25.536354,54.282423],[24.450684,53.905702],[23.484128,53.912498],[23.243987,54.220567],[22.731099,54.327537]]]}}, +{"type":"Feature","id":"LUX","properties":{"name":"Luxembourg"},"geometry":{"type":"Polygon","coordinates":[[[6.043073,50.128052],[6.242751,49.902226],[6.18632,49.463803],[5.897759,49.442667],[5.674052,49.529484],[5.782417,50.090328],[6.043073,50.128052]]]}}, +{"type":"Feature","id":"LVA","properties":{"name":"Latvia"},"geometry":{"type":"Polygon","coordinates":[[[21.0558,56.031076],[21.090424,56.783873],[21.581866,57.411871],[22.524341,57.753374],[23.318453,57.006236],[24.12073,57.025693],[24.312863,57.793424],[25.164594,57.970157],[25.60281,57.847529],[26.463532,57.476389],[27.288185,57.474528],[27.770016,57.244258],[27.855282,56.759326],[28.176709,56.16913],[27.10246,55.783314],[26.494331,55.615107],[25.533047,56.100297],[25.000934,56.164531],[24.860684,56.372528],[23.878264,56.273671],[22.201157,56.337802],[21.0558,56.031076]]]}}, +{"type":"Feature","id":"MAR","properties":{"name":"Morocco"},"geometry":{"type":"Polygon","coordinates":[[[-5.193863,35.755182],[-4.591006,35.330712],[-3.640057,35.399855],[-2.604306,35.179093],[-2.169914,35.168396],[-1.792986,34.527919],[-1.733455,33.919713],[-1.388049,32.864015],[-1.124551,32.651522],[-1.307899,32.262889],[-2.616605,32.094346],[-3.06898,31.724498],[-3.647498,31.637294],[-3.690441,30.896952],[-4.859646,30.501188],[-5.242129,30.000443],[-6.060632,29.7317],[-7.059228,29.579228],[-8.674116,28.841289],[-8.66559,27.656426],[-8.817809,27.656426],[-8.817828,27.656426],[-8.794884,27.120696],[-9.413037,27.088476],[-9.735343,26.860945],[-10.189424,26.860945],[-10.551263,26.990808],[-11.392555,26.883424],[-11.71822,26.104092],[-12.030759,26.030866],[-12.500963,24.770116],[-13.89111,23.691009],[-14.221168,22.310163],[-14.630833,21.86094],[-14.750955,21.5006],[-17.002962,21.420734],[-17.020428,21.42231],[-16.973248,21.885745],[-16.589137,22.158234],[-16.261922,22.67934],[-16.326414,23.017768],[-15.982611,23.723358],[-15.426004,24.359134],[-15.089332,24.520261],[-14.824645,25.103533],[-14.800926,25.636265],[-14.43994,26.254418],[-13.773805,26.618892],[-13.139942,27.640148],[-13.121613,27.654148],[-12.618837,28.038186],[-11.688919,28.148644],[-10.900957,28.832142],[-10.399592,29.098586],[-9.564811,29.933574],[-9.814718,31.177736],[-9.434793,32.038096],[-9.300693,32.564679],[-8.657476,33.240245],[-7.654178,33.697065],[-6.912544,34.110476],[-6.244342,35.145865],[-5.929994,35.759988],[-5.193863,35.755182]]]}}, +{"type":"Feature","id":"MDA","properties":{"name":"Moldova"},"geometry":{"type":"Polygon","coordinates":[[[26.619337,48.220726],[26.857824,48.368211],[27.522537,48.467119],[28.259547,48.155562],[28.670891,48.118149],[29.122698,47.849095],[29.050868,47.510227],[29.415135,47.346645],[29.559674,46.928583],[29.908852,46.674361],[29.83821,46.525326],[30.024659,46.423937],[29.759972,46.349988],[29.170654,46.379262],[29.072107,46.517678],[28.862972,46.437889],[28.933717,46.25883],[28.659987,45.939987],[28.485269,45.596907],[28.233554,45.488283],[28.054443,45.944586],[28.160018,46.371563],[28.12803,46.810476],[27.551166,47.405117],[27.233873,47.826771],[26.924176,48.123264],[26.619337,48.220726]]]}}, +{"type":"Feature","id":"MDG","properties":{"name":"Madagascar"},"geometry":{"type":"Polygon","coordinates":[[[49.543519,-12.469833],[49.808981,-12.895285],[50.056511,-13.555761],[50.217431,-14.758789],[50.476537,-15.226512],[50.377111,-15.706069],[50.200275,-16.000263],[49.860606,-15.414253],[49.672607,-15.710204],[49.863344,-16.451037],[49.774564,-16.875042],[49.498612,-17.106036],[49.435619,-17.953064],[49.041792,-19.118781],[48.548541,-20.496888],[47.930749,-22.391501],[47.547723,-23.781959],[47.095761,-24.94163],[46.282478,-25.178463],[45.409508,-25.601434],[44.833574,-25.346101],[44.03972,-24.988345],[43.763768,-24.460677],[43.697778,-23.574116],[43.345654,-22.776904],[43.254187,-22.057413],[43.433298,-21.336475],[43.893683,-21.163307],[43.89637,-20.830459],[44.374325,-20.072366],[44.464397,-19.435454],[44.232422,-18.961995],[44.042976,-18.331387],[43.963084,-17.409945],[44.312469,-16.850496],[44.446517,-16.216219],[44.944937,-16.179374],[45.502732,-15.974373],[45.872994,-15.793454],[46.312243,-15.780018],[46.882183,-15.210182],[47.70513,-14.594303],[48.005215,-14.091233],[47.869047,-13.663869],[48.293828,-13.784068],[48.84506,-13.089175],[48.863509,-12.487868],[49.194651,-12.040557],[49.543519,-12.469833]]]}}, +{"type":"Feature","id":"MEX","properties":{"name":"Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-97.140008,25.869997],[-97.528072,24.992144],[-97.702946,24.272343],[-97.776042,22.93258],[-97.872367,22.444212],[-97.699044,21.898689],[-97.38896,21.411019],[-97.189333,20.635433],[-96.525576,19.890931],[-96.292127,19.320371],[-95.900885,18.828024],[-94.839063,18.562717],[-94.42573,18.144371],[-93.548651,18.423837],[-92.786114,18.524839],[-92.037348,18.704569],[-91.407903,18.876083],[-90.77187,19.28412],[-90.53359,19.867418],[-90.451476,20.707522],[-90.278618,20.999855],[-89.601321,21.261726],[-88.543866,21.493675],[-87.658417,21.458846],[-87.05189,21.543543],[-86.811982,21.331515],[-86.845908,20.849865],[-87.383291,20.255405],[-87.621054,19.646553],[-87.43675,19.472403],[-87.58656,19.04013],[-87.837191,18.259816],[-88.090664,18.516648],[-88.300031,18.499982],[-88.490123,18.486831],[-88.848344,17.883198],[-89.029857,18.001511],[-89.150909,17.955468],[-89.14308,17.808319],[-90.067934,17.819326],[-91.00152,17.817595],[-91.002269,17.254658],[-91.453921,17.252177],[-91.08167,16.918477],[-90.711822,16.687483],[-90.600847,16.470778],[-90.438867,16.41011],[-90.464473,16.069562],[-91.74796,16.066565],[-92.229249,15.251447],[-92.087216,15.064585],[-92.20323,14.830103],[-92.22775,14.538829],[-93.359464,15.61543],[-93.875169,15.940164],[-94.691656,16.200975],[-95.250227,16.128318],[-96.053382,15.752088],[-96.557434,15.653515],[-97.263592,15.917065],[-98.01303,16.107312],[-98.947676,16.566043],[-99.697397,16.706164],[-100.829499,17.171071],[-101.666089,17.649026],[-101.918528,17.91609],[-102.478132,17.975751],[-103.50099,18.292295],[-103.917527,18.748572],[-104.99201,19.316134],[-105.493038,19.946767],[-105.731396,20.434102],[-105.397773,20.531719],[-105.500661,20.816895],[-105.270752,21.076285],[-105.265817,21.422104],[-105.603161,21.871146],[-105.693414,22.26908],[-106.028716,22.773752],[-106.90998,23.767774],[-107.915449,24.548915],[-108.401905,25.172314],[-109.260199,25.580609],[-109.444089,25.824884],[-109.291644,26.442934],[-109.801458,26.676176],[-110.391732,27.162115],[-110.641019,27.859876],[-111.178919,27.941241],[-111.759607,28.467953],[-112.228235,28.954409],[-112.271824,29.266844],[-112.809594,30.021114],[-113.163811,30.786881],[-113.148669,31.170966],[-113.871881,31.567608],[-114.205737,31.524045],[-114.776451,31.799532],[-114.9367,31.393485],[-114.771232,30.913617],[-114.673899,30.162681],[-114.330974,29.750432],[-113.588875,29.061611],[-113.424053,28.826174],[-113.271969,28.754783],[-113.140039,28.411289],[-112.962298,28.42519],[-112.761587,27.780217],[-112.457911,27.525814],[-112.244952,27.171727],[-111.616489,26.662817],[-111.284675,25.73259],[-110.987819,25.294606],[-110.710007,24.826004],[-110.655049,24.298595],[-110.172856,24.265548],[-109.771847,23.811183],[-109.409104,23.364672],[-109.433392,23.185588],[-109.854219,22.818272],[-110.031392,22.823078],[-110.295071,23.430973],[-110.949501,24.000964],[-111.670568,24.484423],[-112.182036,24.738413],[-112.148989,25.470125],[-112.300711,26.012004],[-112.777297,26.32196],[-113.464671,26.768186],[-113.59673,26.63946],[-113.848937,26.900064],[-114.465747,27.14209],[-115.055142,27.722727],[-114.982253,27.7982],[-114.570366,27.741485],[-114.199329,28.115003],[-114.162018,28.566112],[-114.931842,29.279479],[-115.518654,29.556362],[-115.887365,30.180794],[-116.25835,30.836464],[-116.721526,31.635744],[-117.12776,32.53534],[-115.99135,32.61239],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.34194],[-108.24194,31.34222],[-108.24,31.754854],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.45697,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.38071],[-100.45584,28.69612],[-100.11,28.11],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.140008,25.869997]]]}}, +{"type":"Feature","id":"MKD","properties":{"name":"Macedonia"},"geometry":{"type":"Polygon","coordinates":[[[20.59023,41.85541],[20.71731,41.84711],[20.76216,42.05186],[21.3527,42.2068],[21.576636,42.245224],[21.91708,42.30364],[22.380526,42.32026],[22.881374,41.999297],[22.952377,41.337994],[22.76177,41.3048],[22.597308,41.130487],[22.055378,41.149866],[21.674161,40.931275],[21.02004,40.842727],[20.60518,41.08622],[20.46315,41.51509],[20.59023,41.85541]]]}}, +{"type":"Feature","id":"MLI","properties":{"name":"Mali"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-11.834208,14.799097],[-11.666078,15.388208],[-11.349095,15.411256],[-10.650791,15.132746],[-10.086846,15.330486],[-9.700255,15.264107],[-9.550238,15.486497],[-5.537744,15.50169],[-5.315277,16.201854],[-5.488523,16.325102],[-5.971129,20.640833],[-6.453787,24.956591],[-4.923337,24.974574],[-1.550055,22.792666],[1.823228,20.610809],[2.060991,20.142233],[2.683588,19.85623],[3.146661,19.693579],[3.158133,19.057364],[4.267419,19.155265],[4.27021,16.852227],[3.723422,16.184284],[3.638259,15.56812],[2.749993,15.409525],[1.385528,15.323561],[1.015783,14.968182],[0.374892,14.928908],[-0.266257,14.924309],[-0.515854,15.116158],[-1.066363,14.973815],[-2.001035,14.559008],[-2.191825,14.246418],[-2.967694,13.79815],[-3.103707,13.541267],[-3.522803,13.337662],[-4.006391,13.472485],[-4.280405,13.228444],[-4.427166,12.542646],[-5.220942,11.713859],[-5.197843,11.375146],[-5.470565,10.95127],[-5.404342,10.370737],[-5.816926,10.222555],[-6.050452,10.096361],[-6.205223,10.524061],[-6.493965,10.411303],[-6.666461,10.430811],[-6.850507,10.138994],[-7.622759,10.147236],[-7.89959,10.297382],[-8.029944,10.206535],[-8.335377,10.494812],[-8.282357,10.792597],[-8.407311,10.909257],[-8.620321,10.810891],[-8.581305,11.136246],[-8.376305,11.393646],[-8.786099,11.812561],[-8.905265,12.088358],[-9.127474,12.30806],[-9.327616,12.334286],[-9.567912,12.194243],[-9.890993,12.060479],[-10.165214,11.844084],[-10.593224,11.923975],[-10.87083,12.177887],[-11.036556,12.211245],[-11.297574,12.077971],[-11.456169,12.076834],[-11.513943,12.442988],[-11.467899,12.754519],[-11.553398,13.141214],[-11.927716,13.422075],[-12.124887,13.994727],[-12.17075,14.616834]]]}}, +{"type":"Feature","id":"MLT","properties":{"name":"Malta"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.566171,35.852721],[14.532684,35.820191],[14.436463,35.821664],[14.352334,35.872281],[14.3513,35.978399],[14.448348,35.957444],[14.537025,35.886285],[14.566171,35.852721]]],[[[14.313473,36.027569],[14.253632,36.012143],[14.194204,36.042245],[14.180354,36.060383],[14.263243,36.075809],[14.303758,36.062295],[14.320914,36.03625],[14.313473,36.027569]]]]}}, +{"type":"Feature","id":"MMR","properties":{"name":"Myanmar"},"geometry":{"type":"Polygon","coordinates":[[[99.543309,20.186598],[98.959676,19.752981],[98.253724,19.708203],[97.797783,18.62708],[97.375896,18.445438],[97.859123,17.567946],[98.493761,16.837836],[98.903348,16.177824],[98.537376,15.308497],[98.192074,15.123703],[98.430819,14.622028],[99.097755,13.827503],[99.212012,13.269294],[99.196354,12.804748],[99.587286,11.892763],[99.038121,10.960546],[98.553551,9.93296],[98.457174,10.675266],[98.764546,11.441292],[98.428339,12.032987],[98.509574,13.122378],[98.103604,13.64046],[97.777732,14.837286],[97.597072,16.100568],[97.16454,16.928734],[96.505769,16.427241],[95.369352,15.71439],[94.808405,15.803454],[94.188804,16.037936],[94.533486,17.27724],[94.324817,18.213514],[93.540988,19.366493],[93.663255,19.726962],[93.078278,19.855145],[92.368554,20.670883],[92.303234,21.475485],[92.652257,21.324048],[92.672721,22.041239],[93.166128,22.27846],[93.060294,22.703111],[93.286327,23.043658],[93.325188,24.078556],[94.106742,23.850741],[94.552658,24.675238],[94.603249,25.162495],[95.155153,26.001307],[95.124768,26.573572],[96.419366,27.264589],[97.133999,27.083774],[97.051989,27.699059],[97.402561,27.882536],[97.327114,28.261583],[97.911988,28.335945],[98.246231,27.747221],[98.68269,27.508812],[98.712094,26.743536],[98.671838,25.918703],[97.724609,25.083637],[97.60472,23.897405],[98.660262,24.063286],[98.898749,23.142722],[99.531992,22.949039],[99.240899,22.118314],[99.983489,21.742937],[100.416538,21.558839],[101.150033,21.849984],[101.180005,21.436573],[100.329101,20.786122],[100.115988,20.41785],[99.543309,20.186598]]]}}, +{"type":"Feature","id":"MNE","properties":{"name":"Montenegro"},"geometry":{"type":"Polygon","coordinates":[[[19.801613,42.500093],[19.738051,42.688247],[19.30449,42.19574],[19.37177,41.87755],[19.16246,41.95502],[18.88214,42.28151],[18.45,42.48],[18.56,42.65],[18.70648,43.20011],[19.03165,43.43253],[19.21852,43.52384],[19.48389,43.35229],[19.63,43.21378],[19.95857,43.10604],[20.3398,42.89852],[20.25758,42.81275],[20.0707,42.58863],[19.801613,42.500093]]]}}, +{"type":"Feature","id":"MNG","properties":{"name":"Mongolia"},"geometry":{"type":"Polygon","coordinates":[[[87.751264,49.297198],[88.805567,49.470521],[90.713667,50.331812],[92.234712,50.802171],[93.104219,50.49529],[94.147566,50.480537],[94.815949,50.013433],[95.814028,49.977467],[97.259728,49.726061],[98.231762,50.422401],[97.82574,51.010995],[98.861491,52.047366],[99.981732,51.634006],[100.88948,51.516856],[102.065223,51.259921],[102.255909,50.510561],[103.676545,50.089966],[104.621552,50.275329],[105.886591,50.406019],[106.888804,50.274296],[107.868176,49.793705],[108.475167,49.282548],[109.402449,49.292961],[110.662011,49.130128],[111.581231,49.377968],[112.89774,49.543565],[114.362456,50.248303],[114.96211,50.140247],[115.485695,49.805177],[116.678801,49.888531],[116.191802,49.134598],[115.485282,48.135383],[115.742837,47.726545],[116.308953,47.85341],[117.295507,47.697709],[118.064143,48.06673],[118.866574,47.74706],[119.772824,47.048059],[119.66327,46.69268],[118.874326,46.805412],[117.421701,46.672733],[116.717868,46.388202],[115.985096,45.727235],[114.460332,45.339817],[113.463907,44.808893],[112.436062,45.011646],[111.873306,45.102079],[111.348377,44.457442],[111.667737,44.073176],[111.829588,43.743118],[111.129682,43.406834],[110.412103,42.871234],[109.243596,42.519446],[107.744773,42.481516],[106.129316,42.134328],[104.964994,41.59741],[104.522282,41.908347],[103.312278,41.907468],[101.83304,42.514873],[100.845866,42.663804],[99.515817,42.524691],[97.451757,42.74889],[96.349396,42.725635],[95.762455,43.319449],[95.306875,44.241331],[94.688929,44.352332],[93.480734,44.975472],[92.133891,45.115076],[90.94554,45.286073],[90.585768,45.719716],[90.970809,46.888146],[90.280826,47.693549],[88.854298,48.069082],[88.013832,48.599463],[87.751264,49.297198]]]}}, +{"type":"Feature","id":"MOZ","properties":{"name":"Mozambique"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[35.312398,-11.439146],[36.514082,-11.720938],[36.775151,-11.594537],[37.471284,-11.568751],[37.827645,-11.268769],[38.427557,-11.285202],[39.52103,-10.896854],[40.316589,-10.317096],[40.478387,-10.765441],[40.437253,-11.761711],[40.560811,-12.639177],[40.59962,-14.201975],[40.775475,-14.691764],[40.477251,-15.406294],[40.089264,-16.100774],[39.452559,-16.720891],[38.538351,-17.101023],[37.411133,-17.586368],[36.281279,-18.659688],[35.896497,-18.84226],[35.1984,-19.552811],[34.786383,-19.784012],[34.701893,-20.497043],[35.176127,-21.254361],[35.373428,-21.840837],[35.385848,-22.14],[35.562546,-22.09],[35.533935,-23.070788],[35.371774,-23.535359],[35.60747,-23.706563],[35.458746,-24.12261],[35.040735,-24.478351],[34.215824,-24.816314],[33.01321,-25.357573],[32.574632,-25.727318],[32.660363,-26.148584],[32.915955,-26.215867],[32.83012,-26.742192],[32.071665,-26.73382],[31.985779,-26.29178],[31.837778,-25.843332],[31.752408,-25.484284],[31.930589,-24.369417],[31.670398,-23.658969],[31.191409,-22.25151],[32.244988,-21.116489],[32.508693,-20.395292],[32.659743,-20.30429],[32.772708,-19.715592],[32.611994,-19.419383],[32.654886,-18.67209],[32.849861,-17.979057],[32.847639,-16.713398],[32.328239,-16.392074],[31.852041,-16.319417],[31.636498,-16.07199],[31.173064,-15.860944],[30.338955,-15.880839],[30.274256,-15.507787],[30.179481,-14.796099],[33.214025,-13.97186],[33.7897,-14.451831],[34.064825,-14.35995],[34.459633,-14.61301],[34.517666,-15.013709],[34.307291,-15.478641],[34.381292,-16.18356],[35.03381,-16.8013],[35.339063,-16.10744],[35.771905,-15.896859],[35.686845,-14.611046],[35.267956,-13.887834],[34.907151,-13.565425],[34.559989,-13.579998],[34.280006,-12.280025],[34.559989,-11.52002]]]}}, +{"type":"Feature","id":"MRT","properties":{"name":"Mauritania"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-12.830658,15.303692],[-13.435738,16.039383],[-14.099521,16.304302],[-14.577348,16.598264],[-15.135737,16.587282],[-15.623666,16.369337],[-16.12069,16.455663],[-16.463098,16.135036],[-16.549708,16.673892],[-16.270552,17.166963],[-16.146347,18.108482],[-16.256883,19.096716],[-16.377651,19.593817],[-16.277838,20.092521],[-16.536324,20.567866],[-17.063423,20.999752],[-16.845194,21.333323],[-12.929102,21.327071],[-13.118754,22.77122],[-12.874222,23.284832],[-11.937224,23.374594],[-11.969419,25.933353],[-8.687294,25.881056],[-8.6844,27.395744],[-4.923337,24.974574],[-6.453787,24.956591],[-5.971129,20.640833],[-5.488523,16.325102],[-5.315277,16.201854],[-5.537744,15.50169],[-9.550238,15.486497],[-9.700255,15.264107],[-10.086846,15.330486],[-10.650791,15.132746],[-11.349095,15.411256],[-11.666078,15.388208],[-11.834208,14.799097],[-12.17075,14.616834]]]}}, +{"type":"Feature","id":"MWI","properties":{"name":"Malawi"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[34.280006,-12.280025],[34.559989,-13.579998],[34.907151,-13.565425],[35.267956,-13.887834],[35.686845,-14.611046],[35.771905,-15.896859],[35.339063,-16.10744],[35.03381,-16.8013],[34.381292,-16.18356],[34.307291,-15.478641],[34.517666,-15.013709],[34.459633,-14.61301],[34.064825,-14.35995],[33.7897,-14.451831],[33.214025,-13.97186],[32.688165,-13.712858],[32.991764,-12.783871],[33.306422,-12.435778],[33.114289,-11.607198],[33.31531,-10.79655],[33.485688,-10.525559],[33.231388,-9.676722],[32.759375,-9.230599],[33.739729,-9.417151],[33.940838,-9.693674],[34.280006,-10.16],[34.559989,-11.52002]]]}}, +{"type":"Feature","id":"MYS","properties":{"name":"Malaysia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.075516,6.204867],[101.154219,5.691384],[101.814282,5.810808],[102.141187,6.221636],[102.371147,6.128205],[102.961705,5.524495],[103.381215,4.855001],[103.438575,4.181606],[103.332122,3.726698],[103.429429,3.382869],[103.502448,2.791019],[103.854674,2.515454],[104.247932,1.631141],[104.228811,1.293048],[103.519707,1.226334],[102.573615,1.967115],[101.390638,2.760814],[101.27354,3.270292],[100.695435,3.93914],[100.557408,4.76728],[100.196706,5.312493],[100.30626,6.040562],[100.085757,6.464489],[100.259596,6.642825],[101.075516,6.204867]]],[[[118.618321,4.478202],[117.882035,4.137551],[117.015214,4.306094],[115.865517,4.306559],[115.519078,3.169238],[115.134037,2.821482],[114.621355,1.430688],[113.80585,1.217549],[112.859809,1.49779],[112.380252,1.410121],[111.797548,0.904441],[111.159138,0.976478],[110.514061,0.773131],[109.830227,1.338136],[109.66326,2.006467],[110.396135,1.663775],[111.168853,1.850637],[111.370081,2.697303],[111.796928,2.885897],[112.995615,3.102395],[113.712935,3.893509],[114.204017,4.525874],[114.659596,4.007637],[114.869557,4.348314],[115.347461,4.316636],[115.4057,4.955228],[115.45071,5.44773],[116.220741,6.143191],[116.725103,6.924771],[117.129626,6.928053],[117.643393,6.422166],[117.689075,5.98749],[118.347691,5.708696],[119.181904,5.407836],[119.110694,5.016128],[118.439727,4.966519],[118.618321,4.478202]]]]}}, +{"type":"Feature","id":"NAM","properties":{"name":"Namibia"},"geometry":{"type":"Polygon","coordinates":[[[16.344977,-28.576705],[15.601818,-27.821247],[15.210472,-27.090956],[14.989711,-26.117372],[14.743214,-25.39292],[14.408144,-23.853014],[14.385717,-22.656653],[14.257714,-22.111208],[13.868642,-21.699037],[13.352498,-20.872834],[12.826845,-19.673166],[12.608564,-19.045349],[11.794919,-18.069129],[11.734199,-17.301889],[12.215461,-17.111668],[12.814081,-16.941343],[13.462362,-16.971212],[14.058501,-17.423381],[14.209707,-17.353101],[18.263309,-17.309951],[18.956187,-17.789095],[21.377176,-17.930636],[23.215048,-17.523116],[24.033862,-17.295843],[24.682349,-17.353411],[25.07695,-17.578823],[25.084443,-17.661816],[24.520705,-17.887125],[24.217365,-17.889347],[23.579006,-18.281261],[23.196858,-17.869038],[21.65504,-18.219146],[20.910641,-18.252219],[20.881134,-21.814327],[19.895458,-21.849157],[19.895768,-24.76779],[19.894734,-28.461105],[19.002127,-28.972443],[18.464899,-29.045462],[17.836152,-28.856378],[17.387497,-28.783514],[17.218929,-28.355943],[16.824017,-28.082162],[16.344977,-28.576705]]]}}, +{"type":"Feature","id":"NCL","properties":{"name":"New Caledonia"},"geometry":{"type":"Polygon","coordinates":[[[165.77999,-21.080005],[166.599991,-21.700019],[167.120011,-22.159991],[166.740035,-22.399976],[166.189732,-22.129708],[165.474375,-21.679607],[164.829815,-21.14982],[164.167995,-20.444747],[164.029606,-20.105646],[164.459967,-20.120012],[165.020036,-20.459991],[165.460009,-20.800022],[165.77999,-21.080005]]]}}, +{"type":"Feature","id":"NER","properties":{"name":"Niger"},"geometry":{"type":"Polygon","coordinates":[[[2.154474,11.94015],[2.177108,12.625018],[1.024103,12.851826],[0.993046,13.33575],[0.429928,13.988733],[0.295646,14.444235],[0.374892,14.928908],[1.015783,14.968182],[1.385528,15.323561],[2.749993,15.409525],[3.638259,15.56812],[3.723422,16.184284],[4.27021,16.852227],[4.267419,19.155265],[5.677566,19.601207],[8.572893,21.565661],[11.999506,23.471668],[13.581425,23.040506],[14.143871,22.491289],[14.8513,22.86295],[15.096888,21.308519],[15.471077,21.048457],[15.487148,20.730415],[15.903247,20.387619],[15.685741,19.95718],[15.300441,17.92795],[15.247731,16.627306],[13.972202,15.684366],[13.540394,14.367134],[13.956699,13.996691],[13.954477,13.353449],[14.595781,13.330427],[14.495787,12.859396],[14.213531,12.802035],[14.181336,12.483657],[13.995353,12.461565],[13.318702,13.556356],[13.083987,13.596147],[12.302071,13.037189],[11.527803,13.32898],[10.989593,13.387323],[10.701032,13.246918],[10.114814,13.277252],[9.524928,12.851102],[9.014933,12.826659],[7.804671,13.343527],[7.330747,13.098038],[6.820442,13.115091],[6.445426,13.492768],[5.443058,13.865924],[4.368344,13.747482],[4.107946,13.531216],[3.967283,12.956109],[3.680634,12.552903],[3.61118,11.660167],[2.848643,12.235636],[2.490164,12.233052],[2.154474,11.94015]]]}}, +{"type":"Feature","id":"NGA","properties":{"name":"Nigeria"},"geometry":{"type":"Polygon","coordinates":[[[8.500288,4.771983],[7.462108,4.412108],[7.082596,4.464689],[6.698072,4.240594],[5.898173,4.262453],[5.362805,4.887971],[5.033574,5.611802],[4.325607,6.270651],[3.57418,6.2583],[2.691702,6.258817],[2.749063,7.870734],[2.723793,8.506845],[2.912308,9.137608],[3.220352,9.444153],[3.705438,10.06321],[3.60007,10.332186],[3.797112,10.734746],[3.572216,11.327939],[3.61118,11.660167],[3.680634,12.552903],[3.967283,12.956109],[4.107946,13.531216],[4.368344,13.747482],[5.443058,13.865924],[6.445426,13.492768],[6.820442,13.115091],[7.330747,13.098038],[7.804671,13.343527],[9.014933,12.826659],[9.524928,12.851102],[10.114814,13.277252],[10.701032,13.246918],[10.989593,13.387323],[11.527803,13.32898],[12.302071,13.037189],[13.083987,13.596147],[13.318702,13.556356],[13.995353,12.461565],[14.181336,12.483657],[14.577178,12.085361],[14.468192,11.904752],[14.415379,11.572369],[13.57295,10.798566],[13.308676,10.160362],[13.1676,9.640626],[12.955468,9.417772],[12.753672,8.717763],[12.218872,8.305824],[12.063946,7.799808],[11.839309,7.397042],[11.745774,6.981383],[11.058788,6.644427],[10.497375,7.055358],[10.118277,7.03877],[9.522706,6.453482],[9.233163,6.444491],[8.757533,5.479666],[8.500288,4.771983]]]}}, +{"type":"Feature","id":"NIC","properties":{"name":"Nicaragua"},"geometry":{"type":"Polygon","coordinates":[[[-85.71254,11.088445],[-86.058488,11.403439],[-86.52585,11.806877],[-86.745992,12.143962],[-87.167516,12.458258],[-87.668493,12.90991],[-87.557467,13.064552],[-87.392386,12.914018],[-87.316654,12.984686],[-87.005769,13.025794],[-86.880557,13.254204],[-86.733822,13.263093],[-86.755087,13.754845],[-86.520708,13.778487],[-86.312142,13.771356],[-86.096264,14.038187],[-85.801295,13.836055],[-85.698665,13.960078],[-85.514413,14.079012],[-85.165365,14.35437],[-85.148751,14.560197],[-85.052787,14.551541],[-84.924501,14.790493],[-84.820037,14.819587],[-84.649582,14.666805],[-84.449336,14.621614],[-84.228342,14.748764],[-83.975721,14.749436],[-83.628585,14.880074],[-83.489989,15.016267],[-83.147219,14.995829],[-83.233234,14.899866],[-83.284162,14.676624],[-83.182126,14.310703],[-83.4125,13.970078],[-83.519832,13.567699],[-83.552207,13.127054],[-83.498515,12.869292],[-83.473323,12.419087],[-83.626104,12.32085],[-83.719613,11.893124],[-83.650858,11.629032],[-83.85547,11.373311],[-83.808936,11.103044],[-83.655612,10.938764],[-83.895054,10.726839],[-84.190179,10.79345],[-84.355931,10.999226],[-84.673069,11.082657],[-84.903003,10.952303],[-85.561852,11.217119],[-85.71254,11.088445]]]}}, +{"type":"Feature","id":"NLD","properties":{"name":"Netherlands"},"geometry":{"type":"Polygon","coordinates":[[[6.074183,53.510403],[6.90514,53.482162],[7.092053,53.144043],[6.84287,52.22844],[6.589397,51.852029],[5.988658,51.851616],[6.156658,50.803721],[5.606976,51.037298],[4.973991,51.475024],[4.047071,51.267259],[3.314971,51.345755],[3.830289,51.620545],[4.705997,53.091798],[6.074183,53.510403]]]}}, +{"type":"Feature","id":"NOR","properties":{"name":"Norway"},"geometry":{"type":"MultiPolygon","coordinates":[[[[28.165547,71.185474],[31.293418,70.453788],[30.005435,70.186259],[31.101079,69.55808],[29.399581,69.156916],[28.59193,69.064777],[29.015573,69.766491],[27.732292,70.164193],[26.179622,69.825299],[25.689213,69.092114],[24.735679,68.649557],[23.66205,68.891247],[22.356238,68.841741],[21.244936,69.370443],[20.645593,69.106247],[20.025269,69.065139],[19.87856,68.407194],[17.993868,68.567391],[17.729182,68.010552],[16.768879,68.013937],[16.108712,67.302456],[15.108411,66.193867],[13.55569,64.787028],[13.919905,64.445421],[13.571916,64.049114],[12.579935,64.066219],[11.930569,63.128318],[11.992064,61.800362],[12.631147,61.293572],[12.300366,60.117933],[11.468272,59.432393],[11.027369,58.856149],[10.356557,59.469807],[8.382,58.313288],[7.048748,58.078884],[5.665835,58.588155],[5.308234,59.663232],[4.992078,61.970998],[5.9129,62.614473],[8.553411,63.454008],[10.527709,64.486038],[12.358347,65.879726],[14.761146,67.810642],[16.435927,68.563205],[19.184028,69.817444],[21.378416,70.255169],[23.023742,70.202072],[24.546543,71.030497],[26.37005,70.986262],[28.165547,71.185474]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625,80.40734],[27.407506,80.056406],[25.924651,79.517834],[23.024466,79.400012],[20.075188,79.566823],[19.897266,79.842362],[18.462264,79.85988],[17.368015,80.318896],[20.455992,80.598156],[21.907945,80.357679],[22.919253,80.657144],[25.447625,80.40734]]]]}}, +{"type":"Feature","id":"NPL","properties":{"name":"Nepal"},"geometry":{"type":"Polygon","coordinates":[[[88.120441,27.876542],[88.043133,27.445819],[88.174804,26.810405],[88.060238,26.414615],[87.227472,26.397898],[86.024393,26.630985],[85.251779,26.726198],[84.675018,27.234901],[83.304249,27.364506],[81.999987,27.925479],[81.057203,28.416095],[80.088425,28.79447],[80.476721,29.729865],[81.111256,30.183481],[81.525804,30.422717],[82.327513,30.115268],[83.337115,29.463732],[83.898993,29.320226],[84.23458,28.839894],[85.011638,28.642774],[85.82332,28.203576],[86.954517,27.974262],[88.120441,27.876542]]]}}, +{"type":"Feature","id":"NZL","properties":{"name":"New Zealand"},"geometry":{"type":"MultiPolygon","coordinates":[[[[173.020375,-40.919052],[173.247234,-41.331999],[173.958405,-40.926701],[174.247587,-41.349155],[174.248517,-41.770008],[173.876447,-42.233184],[173.22274,-42.970038],[172.711246,-43.372288],[173.080113,-43.853344],[172.308584,-43.865694],[171.452925,-44.242519],[171.185138,-44.897104],[170.616697,-45.908929],[169.831422,-46.355775],[169.332331,-46.641235],[168.411354,-46.619945],[167.763745,-46.290197],[166.676886,-46.219917],[166.509144,-45.852705],[167.046424,-45.110941],[168.303763,-44.123973],[168.949409,-43.935819],[169.667815,-43.555326],[170.52492,-43.031688],[171.12509,-42.512754],[171.569714,-41.767424],[171.948709,-41.514417],[172.097227,-40.956104],[172.79858,-40.493962],[173.020375,-40.919052]]],[[[174.612009,-36.156397],[175.336616,-37.209098],[175.357596,-36.526194],[175.808887,-36.798942],[175.95849,-37.555382],[176.763195,-37.881253],[177.438813,-37.961248],[178.010354,-37.579825],[178.517094,-37.695373],[178.274731,-38.582813],[177.97046,-39.166343],[177.206993,-39.145776],[176.939981,-39.449736],[177.032946,-39.879943],[176.885824,-40.065978],[176.508017,-40.604808],[176.01244,-41.289624],[175.239567,-41.688308],[175.067898,-41.425895],[174.650973,-41.281821],[175.22763,-40.459236],[174.900157,-39.908933],[173.824047,-39.508854],[173.852262,-39.146602],[174.574802,-38.797683],[174.743474,-38.027808],[174.697017,-37.381129],[174.292028,-36.711092],[174.319004,-36.534824],[173.840997,-36.121981],[173.054171,-35.237125],[172.636005,-34.529107],[173.007042,-34.450662],[173.551298,-35.006183],[174.32939,-35.265496],[174.612009,-36.156397]]]]}}, +{"type":"Feature","id":"OMN","properties":{"name":"Oman"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.861141,21.114035],[58.487986,20.428986],[58.034318,20.481437],[57.826373,20.243002],[57.665762,19.736005],[57.7887,19.06757],[57.694391,18.94471],[57.234264,18.947991],[56.609651,18.574267],[56.512189,18.087113],[56.283521,17.876067],[55.661492,17.884128],[55.269939,17.632309],[55.2749,17.228354],[54.791002,16.950697],[54.239253,17.044981],[53.570508,16.707663],[53.108573,16.651051],[52.782184,17.349742],[52.00001,19.000003],[54.999982,19.999994],[55.666659,22.000001],[55.208341,22.70833],[55.234489,23.110993],[55.525841,23.524869],[55.528632,23.933604],[55.981214,24.130543],[55.804119,24.269604],[55.886233,24.920831],[56.396847,24.924732],[56.84514,24.241673],[57.403453,23.878594],[58.136948,23.747931],[58.729211,23.565668],[59.180502,22.992395],[59.450098,22.660271],[59.80806,22.533612],[59.806148,22.310525],[59.442191,21.714541],[59.282408,21.433886],[58.861141,21.114035]]],[[[56.391421,25.895991],[56.261042,25.714606],[56.070821,26.055464],[56.362017,26.395934],[56.485679,26.309118],[56.391421,25.895991]]]]}}, +{"type":"Feature","id":"PAK","properties":{"name":"Pakistan"},"geometry":{"type":"Polygon","coordinates":[[[75.158028,37.133031],[75.896897,36.666806],[76.192848,35.898403],[77.837451,35.49401],[76.871722,34.653544],[75.757061,34.504923],[74.240203,34.748887],[73.749948,34.317699],[74.104294,33.441473],[74.451559,32.7649],[75.258642,32.271105],[74.405929,31.692639],[74.42138,30.979815],[73.450638,29.976413],[72.823752,28.961592],[71.777666,27.91318],[70.616496,27.989196],[69.514393,26.940966],[70.168927,26.491872],[70.282873,25.722229],[70.844699,25.215102],[71.04324,24.356524],[68.842599,24.359134],[68.176645,23.691965],[67.443667,23.944844],[67.145442,24.663611],[66.372828,25.425141],[64.530408,25.237039],[62.905701,25.218409],[61.497363,25.078237],[61.874187,26.239975],[63.316632,26.756532],[63.233898,27.217047],[62.755426,27.378923],[62.72783,28.259645],[61.771868,28.699334],[61.369309,29.303276],[60.874248,29.829239],[62.549857,29.318572],[63.550261,29.468331],[64.148002,29.340819],[64.350419,29.560031],[65.046862,29.472181],[66.346473,29.887943],[66.381458,30.738899],[66.938891,31.304911],[67.683394,31.303154],[67.792689,31.58293],[68.556932,31.71331],[68.926677,31.620189],[69.317764,31.901412],[69.262522,32.501944],[69.687147,33.105499],[70.323594,33.358533],[69.930543,34.02012],[70.881803,33.988856],[71.156773,34.348911],[71.115019,34.733126],[71.613076,35.153203],[71.498768,35.650563],[71.262348,36.074388],[71.846292,36.509942],[72.920025,36.720007],[74.067552,36.836176],[74.575893,37.020841],[75.158028,37.133031]]]}}, +{"type":"Feature","id":"PAN","properties":{"name":"Panama"},"geometry":{"type":"Polygon","coordinates":[[[-77.881571,7.223771],[-78.214936,7.512255],[-78.429161,8.052041],[-78.182096,8.319182],[-78.435465,8.387705],[-78.622121,8.718124],[-79.120307,8.996092],[-79.557877,8.932375],[-79.760578,8.584515],[-80.164481,8.333316],[-80.382659,8.298409],[-80.480689,8.090308],[-80.00369,7.547524],[-80.276671,7.419754],[-80.421158,7.271572],[-80.886401,7.220541],[-81.059543,7.817921],[-81.189716,7.647906],[-81.519515,7.70661],[-81.721311,8.108963],[-82.131441,8.175393],[-82.390934,8.292362],[-82.820081,8.290864],[-82.850958,8.073823],[-82.965783,8.225028],[-82.913176,8.423517],[-82.829771,8.626295],[-82.868657,8.807266],[-82.719183,8.925709],[-82.927155,9.07433],[-82.932891,9.476812],[-82.546196,9.566135],[-82.187123,9.207449],[-82.207586,8.995575],[-81.808567,8.950617],[-81.714154,9.031955],[-81.439287,8.786234],[-80.947302,8.858504],[-80.521901,9.111072],[-79.9146,9.312765],[-79.573303,9.61161],[-79.021192,9.552931],[-79.05845,9.454565],[-78.500888,9.420459],[-78.055928,9.24773],[-77.729514,8.946844],[-77.353361,8.670505],[-77.474723,8.524286],[-77.242566,7.935278],[-77.431108,7.638061],[-77.753414,7.70984],[-77.881571,7.223771]]]}}, +{"type":"Feature","id":"PER","properties":{"name":"Peru"},"geometry":{"type":"Polygon","coordinates":[[[-69.590424,-17.580012],[-69.858444,-18.092694],[-70.372572,-18.347975],[-71.37525,-17.773799],[-71.462041,-17.363488],[-73.44453,-16.359363],[-75.237883,-15.265683],[-76.009205,-14.649286],[-76.423469,-13.823187],[-76.259242,-13.535039],[-77.106192,-12.222716],[-78.092153,-10.377712],[-79.036953,-8.386568],[-79.44592,-7.930833],[-79.760578,-7.194341],[-80.537482,-6.541668],[-81.249996,-6.136834],[-80.926347,-5.690557],[-81.410943,-4.736765],[-81.09967,-4.036394],[-80.302561,-3.404856],[-80.184015,-3.821162],[-80.469295,-4.059287],[-80.442242,-4.425724],[-80.028908,-4.346091],[-79.624979,-4.454198],[-79.205289,-4.959129],[-78.639897,-4.547784],[-78.450684,-3.873097],[-77.837905,-3.003021],[-76.635394,-2.608678],[-75.544996,-1.56161],[-75.233723,-0.911417],[-75.373223,-0.152032],[-75.106625,-0.057205],[-74.441601,-0.53082],[-74.122395,-1.002833],[-73.659504,-1.260491],[-73.070392,-2.308954],[-72.325787,-2.434218],[-71.774761,-2.16979],[-71.413646,-2.342802],[-70.813476,-2.256865],[-70.047709,-2.725156],[-70.692682,-3.742872],[-70.394044,-3.766591],[-69.893635,-4.298187],[-70.794769,-4.251265],[-70.928843,-4.401591],[-71.748406,-4.593983],[-72.891928,-5.274561],[-72.964507,-5.741251],[-73.219711,-6.089189],[-73.120027,-6.629931],[-73.724487,-6.918595],[-73.723401,-7.340999],[-73.987235,-7.52383],[-73.571059,-8.424447],[-73.015383,-9.032833],[-73.226713,-9.462213],[-72.563033,-9.520194],[-72.184891,-10.053598],[-71.302412,-10.079436],[-70.481894,-9.490118],[-70.548686,-11.009147],[-70.093752,-11.123972],[-69.529678,-10.951734],[-68.66508,-12.5613],[-68.88008,-12.899729],[-68.929224,-13.602684],[-68.948887,-14.453639],[-69.339535,-14.953195],[-69.160347,-15.323974],[-69.389764,-15.660129],[-68.959635,-16.500698],[-69.590424,-17.580012]]]}}, +{"type":"Feature","id":"PHL","properties":{"name":"Philippines"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.376814,8.414706],[126.478513,7.750354],[126.537424,7.189381],[126.196773,6.274294],[125.831421,7.293715],[125.363852,6.786485],[125.683161,6.049657],[125.396512,5.581003],[124.219788,6.161355],[123.93872,6.885136],[124.243662,7.36061],[123.610212,7.833527],[123.296071,7.418876],[122.825506,7.457375],[122.085499,6.899424],[121.919928,7.192119],[122.312359,8.034962],[122.942398,8.316237],[123.487688,8.69301],[123.841154,8.240324],[124.60147,8.514158],[124.764612,8.960409],[125.471391,8.986997],[125.412118,9.760335],[126.222714,9.286074],[126.306637,8.782487],[126.376814,8.414706]]],[[[123.982438,10.278779],[123.623183,9.950091],[123.309921,9.318269],[122.995883,9.022189],[122.380055,9.713361],[122.586089,9.981045],[122.837081,10.261157],[122.947411,10.881868],[123.49885,10.940624],[123.337774,10.267384],[124.077936,11.232726],[123.982438,10.278779]]],[[[118.504581,9.316383],[117.174275,8.3675],[117.664477,9.066889],[118.386914,9.6845],[118.987342,10.376292],[119.511496,11.369668],[119.689677,10.554291],[119.029458,10.003653],[118.504581,9.316383]]],[[[121.883548,11.891755],[122.483821,11.582187],[123.120217,11.58366],[123.100838,11.165934],[122.637714,10.741308],[122.00261,10.441017],[121.967367,10.905691],[122.03837,11.415841],[121.883548,11.891755]]],[[[125.502552,12.162695],[125.783465,11.046122],[125.011884,11.311455],[125.032761,10.975816],[125.277449,10.358722],[124.801819,10.134679],[124.760168,10.837995],[124.459101,10.88993],[124.302522,11.495371],[124.891013,11.415583],[124.87799,11.79419],[124.266762,12.557761],[125.227116,12.535721],[125.502552,12.162695]]],[[[121.527394,13.06959],[121.26219,12.20556],[120.833896,12.704496],[120.323436,13.466413],[121.180128,13.429697],[121.527394,13.06959]]],[[[121.321308,18.504065],[121.937601,18.218552],[122.246006,18.47895],[122.336957,18.224883],[122.174279,17.810283],[122.515654,17.093505],[122.252311,16.262444],[121.662786,15.931018],[121.50507,15.124814],[121.728829,14.328376],[122.258925,14.218202],[122.701276,14.336541],[123.950295,13.782131],[123.855107,13.237771],[124.181289,12.997527],[124.077419,12.536677],[123.298035,13.027526],[122.928652,13.55292],[122.671355,13.185836],[122.03465,13.784482],[121.126385,13.636687],[120.628637,13.857656],[120.679384,14.271016],[120.991819,14.525393],[120.693336,14.756671],[120.564145,14.396279],[120.070429,14.970869],[119.920929,15.406347],[119.883773,16.363704],[120.286488,16.034629],[120.390047,17.599081],[120.715867,18.505227],[121.321308,18.504065]]]]}}, +{"type":"Feature","id":"PNG","properties":{"name":"Papua New Guinea"},"geometry":{"type":"MultiPolygon","coordinates":[[[[155.880026,-6.819997],[155.599991,-6.919991],[155.166994,-6.535931],[154.729192,-5.900828],[154.514114,-5.139118],[154.652504,-5.042431],[154.759991,-5.339984],[155.062918,-5.566792],[155.547746,-6.200655],[156.019965,-6.540014],[155.880026,-6.819997]]],[[[151.982796,-5.478063],[151.459107,-5.56028],[151.30139,-5.840728],[150.754447,-6.083763],[150.241197,-6.317754],[149.709963,-6.316513],[148.890065,-6.02604],[148.318937,-5.747142],[148.401826,-5.437756],[149.298412,-5.583742],[149.845562,-5.505503],[149.99625,-5.026101],[150.139756,-5.001348],[150.236908,-5.53222],[150.807467,-5.455842],[151.089672,-5.113693],[151.647881,-4.757074],[151.537862,-4.167807],[152.136792,-4.14879],[152.338743,-4.312966],[152.318693,-4.867661],[151.982796,-5.478063]]],[[[147.191874,-7.388024],[148.084636,-8.044108],[148.734105,-9.104664],[149.306835,-9.071436],[149.266631,-9.514406],[150.038728,-9.684318],[149.738798,-9.872937],[150.801628,-10.293687],[150.690575,-10.582713],[150.028393,-10.652476],[149.78231,-10.393267],[148.923138,-10.280923],[147.913018,-10.130441],[147.135443,-9.492444],[146.567881,-8.942555],[146.048481,-8.067414],[144.744168,-7.630128],[143.897088,-7.91533],[143.286376,-8.245491],[143.413913,-8.983069],[142.628431,-9.326821],[142.068259,-9.159596],[141.033852,-9.117893],[141.017057,-5.859022],[141.00021,-2.600151],[142.735247,-3.289153],[144.583971,-3.861418],[145.27318,-4.373738],[145.829786,-4.876498],[145.981922,-5.465609],[147.648073,-6.083659],[147.891108,-6.614015],[146.970905,-6.721657],[147.191874,-7.388024]]],[[[153.140038,-4.499983],[152.827292,-4.766427],[152.638673,-4.176127],[152.406026,-3.789743],[151.953237,-3.462062],[151.384279,-3.035422],[150.66205,-2.741486],[150.939965,-2.500002],[151.479984,-2.779985],[151.820015,-2.999972],[152.239989,-3.240009],[152.640017,-3.659983],[153.019994,-3.980015],[153.140038,-4.499983]]]]}}, +{"type":"Feature","id":"POL","properties":{"name":"Poland"},"geometry":{"type":"Polygon","coordinates":[[[15.016996,51.106674],[14.607098,51.745188],[14.685026,52.089947],[14.4376,52.62485],[14.074521,52.981263],[14.353315,53.248171],[14.119686,53.757029],[14.8029,54.050706],[16.363477,54.513159],[17.622832,54.851536],[18.620859,54.682606],[18.696255,54.438719],[19.66064,54.426084],[20.892245,54.312525],[22.731099,54.327537],[23.243987,54.220567],[23.484128,53.912498],[23.527536,53.470122],[23.804935,53.089731],[23.799199,52.691099],[23.199494,52.486977],[23.508002,52.023647],[23.527071,51.578454],[24.029986,50.705407],[23.922757,50.424881],[23.426508,50.308506],[22.51845,49.476774],[22.776419,49.027395],[22.558138,49.085738],[21.607808,49.470107],[20.887955,49.328772],[20.415839,49.431453],[19.825023,49.217125],[19.320713,49.571574],[18.909575,49.435846],[18.853144,49.49623],[18.392914,49.988629],[17.649445,50.049038],[17.554567,50.362146],[16.868769,50.473974],[16.719476,50.215747],[16.176253,50.422607],[16.238627,50.697733],[15.490972,50.78473],[15.016996,51.106674]]]}}, +{"type":"Feature","id":"PRI","properties":{"name":"Puerto Rico"},"geometry":{"type":"Polygon","coordinates":[[[-66.282434,18.514762],[-65.771303,18.426679],[-65.591004,18.228035],[-65.847164,17.975906],[-66.599934,17.981823],[-67.184162,17.946553],[-67.242428,18.37446],[-67.100679,18.520601],[-66.282434,18.514762]]]}}, +{"type":"Feature","id":"PRK","properties":{"name":"North Korea"},"geometry":{"type":"Polygon","coordinates":[[[130.640016,42.395009],[130.780007,42.220007],[130.400031,42.280004],[129.965949,41.941368],[129.667362,41.601104],[129.705189,40.882828],[129.188115,40.661808],[129.0104,40.485436],[128.633368,40.189847],[127.967414,40.025413],[127.533436,39.75685],[127.50212,39.323931],[127.385434,39.213472],[127.783343,39.050898],[128.349716,38.612243],[128.205746,38.370397],[127.780035,38.304536],[127.073309,38.256115],[126.68372,37.804773],[126.237339,37.840378],[126.174759,37.749686],[125.689104,37.94001],[125.568439,37.752089],[125.27533,37.669071],[125.240087,37.857224],[124.981033,37.948821],[124.712161,38.108346],[124.985994,38.548474],[125.221949,38.665857],[125.132859,38.848559],[125.38659,39.387958],[125.321116,39.551385],[124.737482,39.660344],[124.265625,39.928493],[125.079942,40.569824],[126.182045,41.107336],[126.869083,41.816569],[127.343783,41.503152],[128.208433,41.466772],[128.052215,41.994285],[129.596669,42.424982],[129.994267,42.985387],[130.640016,42.395009]]]}}, +{"type":"Feature","id":"PRT","properties":{"name":"Portugal"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.671946,42.134689],[-8.263857,42.280469],[-8.013175,41.790886],[-7.422513,41.792075],[-7.251309,41.918346],[-6.668606,41.883387],[-6.389088,41.381815],[-6.851127,41.111083],[-6.86402,40.330872],[-7.026413,40.184524],[-7.066592,39.711892],[-7.498632,39.629571],[-7.098037,39.030073],[-7.374092,38.373059],[-7.029281,38.075764],[-7.166508,37.803894],[-7.537105,37.428904],[-7.453726,37.097788],[-7.855613,36.838269],[-8.382816,36.97888],[-8.898857,36.868809],[-8.746101,37.651346],[-8.839998,38.266243],[-9.287464,38.358486],[-9.526571,38.737429],[-9.446989,39.392066],[-9.048305,39.755093],[-8.977353,40.159306],[-8.768684,40.760639],[-8.790853,41.184334],[-8.990789,41.543459],[-9.034818,41.880571]]]}}, +{"type":"Feature","id":"PRY","properties":{"name":"Paraguay"},"geometry":{"type":"Polygon","coordinates":[[[-62.685057,-22.249029],[-62.291179,-21.051635],[-62.265961,-20.513735],[-61.786326,-19.633737],[-60.043565,-19.342747],[-59.115042,-19.356906],[-58.183471,-19.868399],[-58.166392,-20.176701],[-57.870674,-20.732688],[-57.937156,-22.090176],[-56.88151,-22.282154],[-56.473317,-22.0863],[-55.797958,-22.35693],[-55.610683,-22.655619],[-55.517639,-23.571998],[-55.400747,-23.956935],[-55.027902,-24.001274],[-54.652834,-23.839578],[-54.29296,-24.021014],[-54.293476,-24.5708],[-54.428946,-25.162185],[-54.625291,-25.739255],[-54.788795,-26.621786],[-55.695846,-27.387837],[-56.486702,-27.548499],[-57.60976,-27.395899],[-58.618174,-27.123719],[-57.63366,-25.603657],[-57.777217,-25.16234],[-58.807128,-24.771459],[-60.028966,-24.032796],[-60.846565,-23.880713],[-62.685057,-22.249029]]]}}, +{"type":"Feature","id":"QAT","properties":{"name":"Qatar"},"geometry":{"type":"Polygon","coordinates":[[[50.810108,24.754743],[50.743911,25.482424],[51.013352,26.006992],[51.286462,26.114582],[51.589079,25.801113],[51.6067,25.21567],[51.389608,24.627386],[51.112415,24.556331],[50.810108,24.754743]]]}}, +{"type":"Feature","id":"ROU","properties":{"name":"Romania"},"geometry":{"type":"Polygon","coordinates":[[[22.710531,47.882194],[23.142236,48.096341],[23.760958,47.985598],[24.402056,47.981878],[24.866317,47.737526],[25.207743,47.891056],[25.945941,47.987149],[26.19745,48.220881],[26.619337,48.220726],[26.924176,48.123264],[27.233873,47.826771],[27.551166,47.405117],[28.12803,46.810476],[28.160018,46.371563],[28.054443,45.944586],[28.233554,45.488283],[28.679779,45.304031],[29.149725,45.464925],[29.603289,45.293308],[29.626543,45.035391],[29.141612,44.82021],[28.837858,44.913874],[28.558081,43.707462],[27.970107,43.812468],[27.2424,44.175986],[26.065159,43.943494],[25.569272,43.688445],[24.100679,43.741051],[23.332302,43.897011],[22.944832,43.823785],[22.65715,44.234923],[22.474008,44.409228],[22.705726,44.578003],[22.459022,44.702517],[22.145088,44.478422],[21.562023,44.768947],[21.483526,45.18117],[20.874313,45.416375],[20.762175,45.734573],[20.220192,46.127469],[21.021952,46.316088],[21.626515,46.994238],[22.099768,47.672439],[22.710531,47.882194]]]}}, +{"type":"Feature","id":"RUS","properties":{"name":"Russia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[143.648007,50.7476],[144.654148,48.976391],[143.173928,49.306551],[142.558668,47.861575],[143.533492,46.836728],[143.505277,46.137908],[142.747701,46.740765],[142.09203,45.966755],[141.906925,46.805929],[142.018443,47.780133],[141.904445,48.859189],[142.1358,49.615163],[142.179983,50.952342],[141.594076,51.935435],[141.682546,53.301966],[142.606934,53.762145],[142.209749,54.225476],[142.654786,54.365881],[142.914616,53.704578],[143.260848,52.74076],[143.235268,51.75666],[143.648007,50.7476]]],[[[22.731099,54.327537],[20.892245,54.312525],[19.66064,54.426084],[19.888481,54.86616],[21.268449,55.190482],[22.315724,55.015299],[22.757764,54.856574],[22.651052,54.582741],[22.731099,54.327537]]],[[[-175.01425,66.58435],[-174.33983,66.33556],[-174.57182,67.06219],[-171.85731,66.91308],[-169.89958,65.97724],[-170.89107,65.54139],[-172.53025,65.43791],[-172.555,64.46079],[-172.95533,64.25269],[-173.89184,64.2826],[-174.65392,64.63125],[-175.98353,64.92288],[-176.20716,65.35667],[-177.22266,65.52024],[-178.35993,65.39052],[-178.90332,65.74044],[-178.68611,66.11211],[-179.88377,65.87456],[-179.43268,65.40411],[-180,64.979709],[-180,68.963636],[-177.55,68.2],[-174.92825,67.20589],[-175.01425,66.58435]]],[[[180,70.832199],[178.903425,70.78114],[178.7253,71.0988],[180,71.515714],[180,70.832199]]],[[[-178.69378,70.89302],[-180,70.832199],[-180,71.515714],[-179.871875,71.55762],[-179.02433,71.55553],[-177.577945,71.26948],[-177.663575,71.13277],[-178.69378,70.89302]]],[[[143.60385,73.21244],[142.08763,73.20544],[140.038155,73.31692],[139.86312,73.36983],[140.81171,73.76506],[142.06207,73.85758],[143.48283,73.47525],[143.60385,73.21244]]],[[[150.73167,75.08406],[149.575925,74.68892],[147.977465,74.778355],[146.11919,75.17298],[146.358485,75.49682],[148.22223,75.345845],[150.73167,75.08406]]],[[[145.086285,75.562625],[144.3,74.82],[140.61381,74.84768],[138.95544,74.61148],[136.97439,75.26167],[137.51176,75.94917],[138.831075,76.13676],[141.471615,76.09289],[145.086285,75.562625]]],[[[57.535693,70.720464],[56.944979,70.632743],[53.677375,70.762658],[53.412017,71.206662],[51.601895,71.474759],[51.455754,72.014881],[52.478275,72.229442],[52.444169,72.774731],[54.427614,73.627548],[53.50829,73.749814],[55.902459,74.627486],[55.631933,75.081412],[57.868644,75.60939],[61.170044,76.251883],[64.498368,76.439055],[66.210977,76.809782],[68.15706,76.939697],[68.852211,76.544811],[68.180573,76.233642],[64.637326,75.737755],[61.583508,75.260885],[58.477082,74.309056],[56.986786,73.333044],[55.419336,72.371268],[55.622838,71.540595],[57.535693,70.720464]]],[[[106.97013,76.97419],[107.24,76.48],[108.1538,76.72335],[111.07726,76.71],[113.33151,76.22224],[114.13417,75.84764],[113.88539,75.32779],[112.77918,75.03186],[110.15125,74.47673],[109.4,74.18],[110.64,74.04],[112.11919,73.78774],[113.01954,73.97693],[113.52958,73.33505],[113.96881,73.59488],[115.56782,73.75285],[118.77633,73.58772],[119.02,73.12],[123.20066,72.97122],[123.25777,73.73503],[125.38,73.56],[126.97644,73.56549],[128.59126,73.03871],[129.05157,72.39872],[128.46,71.98],[129.71599,71.19304],[131.28858,70.78699],[132.2535,71.8363],[133.85766,71.38642],[135.56193,71.65525],[137.49755,71.34763],[138.23409,71.62803],[139.86983,71.48783],[139.14791,72.41619],[140.46817,72.84941],[149.5,72.2],[150.35118,71.60643],[152.9689,70.84222],[157.00688,71.03141],[158.99779,70.86672],[159.83031,70.45324],[159.70866,69.72198],[160.94053,69.43728],[162.27907,69.64204],[164.05248,69.66823],[165.94037,69.47199],[167.83567,69.58269],[169.57763,68.6938],[170.81688,69.01363],[170.0082,69.65276],[170.45345,70.09703],[173.64391,69.81743],[175.72403,69.87725],[178.6,69.4],[180,68.963636],[180,64.979709],[179.99281,64.97433],[178.7072,64.53493],[177.41128,64.60821],[178.313,64.07593],[178.90825,63.25197],[179.37034,62.98262],[179.48636,62.56894],[179.22825,62.3041],[177.3643,62.5219],[174.56929,61.76915],[173.68013,61.65261],[172.15,60.95],[170.6985,60.33618],[170.33085,59.88177],[168.90046,60.57355],[166.29498,59.78855],[165.84,60.16],[164.87674,59.7316],[163.53929,59.86871],[163.21711,59.21101],[162.01733,58.24328],[162.05297,57.83912],[163.19191,57.61503],[163.05794,56.15924],[162.12958,56.12219],[161.70146,55.28568],[162.11749,54.85514],[160.36877,54.34433],[160.02173,53.20257],[158.53094,52.95868],[158.23118,51.94269],[156.78979,51.01105],[156.42,51.7],[155.99182,53.15895],[155.43366,55.38103],[155.91442,56.76792],[156.75815,57.3647],[156.81035,57.83204],[158.36433,58.05575],[160.15064,59.31477],[161.87204,60.343],[163.66969,61.1409],[164.47355,62.55061],[163.25842,62.46627],[162.65791,61.6425],[160.12148,60.54423],[159.30232,61.77396],[156.72068,61.43442],[154.21806,59.75818],[155.04375,59.14495],[152.81185,58.88385],[151.26573,58.78089],[151.33815,59.50396],[149.78371,59.65573],[148.54481,59.16448],[145.48722,59.33637],[142.19782,59.03998],[138.95848,57.08805],[135.12619,54.72959],[136.70171,54.60355],[137.19342,53.97732],[138.1647,53.75501],[138.80463,54.25455],[139.90151,54.18968],[141.34531,53.08957],[141.37923,52.23877],[140.59742,51.23967],[140.51308,50.04553],[140.06193,48.44671],[138.55472,46.99965],[138.21971,46.30795],[136.86232,45.1435],[135.51535,43.989],[134.86939,43.39821],[133.53687,42.81147],[132.90627,42.79849],[132.27807,43.28456],[130.93587,42.55274],[130.78,42.22],[130.64,42.395],[130.633866,42.903015],[131.144688,42.92999],[131.288555,44.11152],[131.02519,44.96796],[131.883454,45.321162],[133.09712,45.14409],[133.769644,46.116927],[134.11235,47.21248],[134.50081,47.57845],[135.026311,48.47823],[133.373596,48.183442],[132.50669,47.78896],[130.98726,47.79013],[130.582293,48.729687],[129.397818,49.4406],[127.6574,49.76027],[127.287456,50.739797],[126.939157,51.353894],[126.564399,51.784255],[125.946349,52.792799],[125.068211,53.161045],[123.57147,53.4588],[122.245748,53.431726],[121.003085,53.251401],[120.177089,52.753886],[120.725789,52.516226],[120.7382,51.96411],[120.18208,51.64355],[119.27939,50.58292],[119.288461,50.142883],[117.879244,49.510983],[116.678801,49.888531],[115.485695,49.805177],[114.96211,50.140247],[114.362456,50.248303],[112.89774,49.543565],[111.581231,49.377968],[110.662011,49.130128],[109.402449,49.292961],[108.475167,49.282548],[107.868176,49.793705],[106.888804,50.274296],[105.886591,50.406019],[104.62158,50.27532],[103.676545,50.089966],[102.25589,50.51056],[102.06521,51.25991],[100.88948,51.516856],[99.981732,51.634006],[98.861491,52.047366],[97.82574,51.010995],[98.231762,50.422401],[97.25976,49.72605],[95.81402,49.97746],[94.815949,50.013433],[94.147566,50.480537],[93.10421,50.49529],[92.234712,50.802171],[90.713667,50.331812],[88.805567,49.470521],[87.751264,49.297198],[87.35997,49.214981],[86.829357,49.826675],[85.54127,49.692859],[85.11556,50.117303],[84.416377,50.3114],[83.935115,50.889246],[83.383004,51.069183],[81.945986,50.812196],[80.568447,51.388336],[80.03556,50.864751],[77.800916,53.404415],[76.525179,54.177003],[76.8911,54.490524],[74.38482,53.54685],[73.425679,53.48981],[73.508516,54.035617],[72.22415,54.376655],[71.180131,54.133285],[70.865267,55.169734],[69.068167,55.38525],[68.1691,54.970392],[65.66687,54.60125],[65.178534,54.354228],[61.4366,54.00625],[60.978066,53.664993],[61.699986,52.979996],[60.739993,52.719986],[60.927269,52.447548],[59.967534,51.96042],[61.588003,51.272659],[61.337424,50.79907],[59.932807,50.842194],[59.642282,50.545442],[58.36332,51.06364],[56.77798,51.04355],[55.71694,50.62171],[54.532878,51.02624],[52.328724,51.718652],[50.766648,51.692762],[48.702382,50.605128],[48.577841,49.87476],[47.54948,50.454698],[46.751596,49.356006],[47.043672,49.152039],[46.466446,48.394152],[47.31524,47.71585],[48.05725,47.74377],[48.694734,47.075628],[48.59325,46.56104],[49.10116,46.39933],[48.64541,45.80629],[47.67591,45.64149],[46.68201,44.6092],[47.59094,43.66016],[47.49252,42.98658],[48.58437,41.80888],[47.987283,41.405819],[47.815666,41.151416],[47.373315,41.219732],[46.686071,41.827137],[46.404951,41.860675],[45.7764,42.09244],[45.470279,42.502781],[44.537623,42.711993],[43.93121,42.55496],[43.75599,42.74083],[42.3944,43.2203],[40.92219,43.38215],[40.076965,43.553104],[39.955009,43.434998],[38.68,44.28],[37.53912,44.65721],[36.67546,45.24469],[37.40317,45.40451],[38.23295,46.24087],[37.67372,46.63657],[39.14767,47.04475],[39.1212,47.26336],[38.223538,47.10219],[38.255112,47.5464],[38.77057,47.82562],[39.738278,47.898937],[39.89562,48.23241],[39.67465,48.78382],[40.080789,49.30743],[40.06904,49.60105],[38.594988,49.926462],[38.010631,49.915662],[37.39346,50.383953],[36.626168,50.225591],[35.356116,50.577197],[35.37791,50.77394],[35.022183,51.207572],[34.224816,51.255993],[34.141978,51.566413],[34.391731,51.768882],[33.7527,52.335075],[32.715761,52.238465],[32.412058,52.288695],[32.15944,52.06125],[31.78597,52.10168],[31.540018,52.742052],[31.305201,53.073996],[31.49764,53.16743],[32.304519,53.132726],[32.693643,53.351421],[32.405599,53.618045],[31.731273,53.794029],[31.791424,53.974639],[31.384472,54.157056],[30.757534,54.811771],[30.971836,55.081548],[30.873909,55.550976],[29.896294,55.789463],[29.371572,55.670091],[29.229513,55.918344],[28.176709,56.16913],[27.855282,56.759326],[27.770016,57.244258],[27.288185,57.474528],[27.716686,57.791899],[27.42015,58.72457],[28.131699,59.300825],[27.98112,59.47537],[29.1177,60.02805],[28.07,60.50352],[30.211107,61.780028],[31.139991,62.357693],[31.516092,62.867687],[30.035872,63.552814],[30.444685,64.204453],[29.54443,64.948672],[30.21765,65.80598],[29.054589,66.944286],[29.977426,67.698297],[28.445944,68.364613],[28.59193,69.064777],[29.39955,69.15692],[31.10108,69.55811],[32.13272,69.90595],[33.77547,69.30142],[36.51396,69.06342],[40.29234,67.9324],[41.05987,67.45713],[41.12595,66.79158],[40.01583,66.26618],[38.38295,65.99953],[33.91871,66.75961],[33.18444,66.63253],[34.81477,65.90015],[34.878574,65.436213],[34.94391,64.41437],[36.23129,64.10945],[37.01273,63.84983],[37.14197,64.33471],[36.539579,64.76446],[37.17604,65.14322],[39.59345,64.52079],[40.4356,64.76446],[39.7626,65.49682],[42.09309,66.47623],[43.01604,66.41858],[43.94975,66.06908],[44.53226,66.75634],[43.69839,67.35245],[44.18795,67.95051],[43.45282,68.57079],[46.25,68.25],[46.82134,67.68997],[45.55517,67.56652],[45.56202,67.01005],[46.34915,66.66767],[47.89416,66.88455],[48.13876,67.52238],[50.22766,67.99867],[53.71743,68.85738],[54.47171,68.80815],[53.48582,68.20131],[54.72628,68.09702],[55.44268,68.43866],[57.31702,68.46628],[58.802,68.88082],[59.94142,68.27844],[61.07784,68.94069],[60.03,69.52],[60.55,69.85],[63.504,69.54739],[64.888115,69.234835],[68.51216,68.09233],[69.18068,68.61563],[68.16444,69.14436],[68.13522,69.35649],[66.93008,69.45461],[67.25976,69.92873],[66.72492,70.70889],[66.69466,71.02897],[68.54006,71.9345],[69.19636,72.84336],[69.94,73.04],[72.58754,72.77629],[72.79603,72.22006],[71.84811,71.40898],[72.47011,71.09019],[72.79188,70.39114],[72.5647,69.02085],[73.66787,68.4079],[73.2387,67.7404],[71.28,66.32],[72.42301,66.17267],[72.82077,66.53267],[73.92099,66.78946],[74.18651,67.28429],[75.052,67.76047],[74.46926,68.32899],[74.93584,68.98918],[73.84236,69.07146],[73.60187,69.62763],[74.3998,70.63175],[73.1011,71.44717],[74.89082,72.12119],[74.65926,72.83227],[75.15801,72.85497],[75.68351,72.30056],[75.28898,71.33556],[76.35911,71.15287],[75.90313,71.87401],[77.57665,72.26717],[79.65202,72.32011],[81.5,71.75],[80.61071,72.58285],[80.51109,73.6482],[82.25,73.85],[84.65526,73.80591],[86.8223,73.93688],[86.00956,74.45967],[87.16682,75.11643],[88.31571,75.14393],[90.26,75.64],[92.90058,75.77333],[93.23421,76.0472],[95.86,76.14],[96.67821,75.91548],[98.92254,76.44689],[100.75967,76.43028],[101.03532,76.86189],[101.99084,77.28754],[104.3516,77.69792],[106.06664,77.37389],[104.705,77.1274],[106.97013,76.97419]]],[[[105.07547,78.30689],[99.43814,77.921],[101.2649,79.23399],[102.08635,79.34641],[102.837815,79.28129],[105.37243,78.71334],[105.07547,78.30689]]],[[[51.136187,80.54728],[49.793685,80.415428],[48.894411,80.339567],[48.754937,80.175468],[47.586119,80.010181],[46.502826,80.247247],[47.072455,80.559424],[44.846958,80.58981],[46.799139,80.771918],[48.318477,80.78401],[48.522806,80.514569],[49.09719,80.753986],[50.039768,80.918885],[51.522933,80.699726],[51.136187,80.54728]]],[[[99.93976,78.88094],[97.75794,78.7562],[94.97259,79.044745],[93.31288,79.4265],[92.5454,80.14379],[91.18107,80.34146],[93.77766,81.0246],[95.940895,81.2504],[97.88385,80.746975],[100.186655,79.780135],[99.93976,78.88094]]]]}}, +{"type":"Feature","id":"RWA","properties":{"name":"Rwanda"},"geometry":{"type":"Polygon","coordinates":[[[30.419105,-1.134659],[30.816135,-1.698914],[30.758309,-2.28725],[30.469696,-2.413858],[29.938359,-2.348487],[29.632176,-2.917858],[29.024926,-2.839258],[29.117479,-2.292211],[29.254835,-2.21511],[29.291887,-1.620056],[29.579466,-1.341313],[29.821519,-1.443322],[30.419105,-1.134659]]]}}, +{"type":"Feature","id":"ESH","properties":{"name":"Western Sahara"},"geometry":{"type":"Polygon","coordinates":[[[-8.794884,27.120696],[-8.817828,27.656426],[-8.66559,27.656426],[-8.665124,27.589479],[-8.6844,27.395744],[-8.687294,25.881056],[-11.969419,25.933353],[-11.937224,23.374594],[-12.874222,23.284832],[-13.118754,22.77122],[-12.929102,21.327071],[-16.845194,21.333323],[-17.063423,20.999752],[-17.020428,21.42231],[-17.002962,21.420734],[-14.750955,21.5006],[-14.630833,21.86094],[-14.221168,22.310163],[-13.89111,23.691009],[-12.500963,24.770116],[-12.030759,26.030866],[-11.71822,26.104092],[-11.392555,26.883424],[-10.551263,26.990808],[-10.189424,26.860945],[-9.735343,26.860945],[-9.413037,27.088476],[-8.794884,27.120696]]]}}, +{"type":"Feature","id":"SAU","properties":{"name":"Saudi Arabia"},"geometry":{"type":"Polygon","coordinates":[[[42.779332,16.347891],[42.649573,16.774635],[42.347989,17.075806],[42.270888,17.474722],[41.754382,17.833046],[41.221391,18.6716],[40.939341,19.486485],[40.247652,20.174635],[39.801685,20.338862],[39.139399,21.291905],[39.023696,21.986875],[39.066329,22.579656],[38.492772,23.688451],[38.02386,24.078686],[37.483635,24.285495],[37.154818,24.858483],[37.209491,25.084542],[36.931627,25.602959],[36.639604,25.826228],[36.249137,26.570136],[35.640182,27.37652],[35.130187,28.063352],[34.632336,28.058546],[34.787779,28.607427],[34.83222,28.957483],[34.956037,29.356555],[36.068941,29.197495],[36.501214,29.505254],[36.740528,29.865283],[37.503582,30.003776],[37.66812,30.338665],[37.998849,30.5085],[37.002166,31.508413],[39.004886,32.010217],[39.195468,32.161009],[40.399994,31.889992],[41.889981,31.190009],[44.709499,29.178891],[46.568713,29.099025],[47.459822,29.002519],[47.708851,28.526063],[48.416094,28.552004],[48.807595,27.689628],[49.299554,27.461218],[49.470914,27.109999],[50.152422,26.689663],[50.212935,26.277027],[50.113303,25.943972],[50.239859,25.60805],[50.527387,25.327808],[50.660557,24.999896],[50.810108,24.754743],[51.112415,24.556331],[51.389608,24.627386],[51.579519,24.245497],[51.617708,24.014219],[52.000733,23.001154],[55.006803,22.496948],[55.208341,22.70833],[55.666659,22.000001],[54.999982,19.999994],[52.00001,19.000003],[49.116672,18.616668],[48.183344,18.166669],[47.466695,17.116682],[47.000005,16.949999],[46.749994,17.283338],[46.366659,17.233315],[45.399999,17.333335],[45.216651,17.433329],[44.062613,17.410359],[43.791519,17.319977],[43.380794,17.579987],[43.115798,17.08844],[43.218375,16.66689],[42.779332,16.347891]]]}}, +{"type":"Feature","id":"SDN","properties":{"name":"Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.824963,9.484061],[33.842131,9.981915],[33.721959,10.325262],[33.206938,10.720112],[33.086766,11.441141],[33.206938,12.179338],[32.743419,12.248008],[32.67475,12.024832],[32.073892,11.97333],[32.314235,11.681484],[32.400072,11.080626],[31.850716,10.531271],[31.352862,9.810241],[30.837841,9.707237],[29.996639,10.290927],[29.618957,10.084919],[29.515953,9.793074],[29.000932,9.604232],[28.966597,9.398224],[27.97089,9.398224],[27.833551,9.604232],[27.112521,9.638567],[26.752006,9.466893],[26.477328,9.55273],[25.962307,10.136421],[25.790633,10.411099],[25.069604,10.27376],[24.794926,9.810241],[24.537415,8.917538],[24.194068,8.728696],[23.88698,8.61973],[23.805813,8.666319],[23.459013,8.954286],[23.394779,9.265068],[23.55725,9.681218],[23.554304,10.089255],[22.977544,10.714463],[22.864165,11.142395],[22.87622,11.38461],[22.50869,11.67936],[22.49762,12.26024],[22.28801,12.64605],[21.93681,12.58818],[22.03759,12.95546],[22.29658,13.37232],[22.18329,13.78648],[22.51202,14.09318],[22.30351,14.32682],[22.56795,14.94429],[23.02459,15.68072],[23.88689,15.61084],[23.83766,19.58047],[23.85,20],[25,20.00304],[25,22],[29.02,22],[32.9,22],[36.86623,22],[37.18872,21.01885],[36.96941,20.83744],[37.1147,19.80796],[37.48179,18.61409],[37.86276,18.36786],[38.41009,17.998307],[37.904,17.42754],[37.16747,17.26314],[36.85253,16.95655],[36.75389,16.29186],[36.32322,14.82249],[36.42951,14.42211],[36.27022,13.56333],[35.86363,12.57828],[35.26049,12.08286],[34.83163,11.31896],[34.73115,10.91017],[34.25745,10.63009],[33.96162,9.58358],[33.963393,9.464285]]]}}, +{"type":"Feature","id":"SSD","properties":{"name":"South Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.97498,8.68456],[33.8255,8.37916],[33.2948,8.35458],[32.95418,7.78497],[33.56829,7.71334],[34.0751,7.22595],[34.25032,6.82607],[34.70702,6.59422],[35.298007,5.506],[34.620196,4.847123],[34.005,4.249885],[33.39,3.79],[32.68642,3.79232],[31.88145,3.55827],[31.24556,3.7819],[30.83385,3.50917],[29.95349,4.1737],[29.715995,4.600805],[29.159078,4.389267],[28.696678,4.455077],[28.428994,4.287155],[27.979977,4.408413],[27.374226,5.233944],[27.213409,5.550953],[26.465909,5.946717],[26.213418,6.546603],[25.796648,6.979316],[25.124131,7.500085],[25.114932,7.825104],[24.567369,8.229188],[23.88698,8.61973],[24.194068,8.728696],[24.537415,8.917538],[24.794926,9.810241],[25.069604,10.27376],[25.790633,10.411099],[25.962307,10.136421],[26.477328,9.55273],[26.752006,9.466893],[27.112521,9.638567],[27.833551,9.604232],[27.97089,9.398224],[28.966597,9.398224],[29.000932,9.604232],[29.515953,9.793074],[29.618957,10.084919],[29.996639,10.290927],[30.837841,9.707237],[31.352862,9.810241],[31.850716,10.531271],[32.400072,11.080626],[32.314235,11.681484],[32.073892,11.97333],[32.67475,12.024832],[32.743419,12.248008],[33.206938,12.179338],[33.086766,11.441141],[33.206938,10.720112],[33.721959,10.325262],[33.842131,9.981915],[33.824963,9.484061],[33.963393,9.464285]]]}}, +{"type":"Feature","id":"SEN","properties":{"name":"Senegal"},"geometry":{"type":"Polygon","coordinates":[[[-16.713729,13.594959],[-17.126107,14.373516],[-17.625043,14.729541],[-17.185173,14.919477],[-16.700706,15.621527],[-16.463098,16.135036],[-16.12069,16.455663],[-15.623666,16.369337],[-15.135737,16.587282],[-14.577348,16.598264],[-14.099521,16.304302],[-13.435738,16.039383],[-12.830658,15.303692],[-12.17075,14.616834],[-12.124887,13.994727],[-11.927716,13.422075],[-11.553398,13.141214],[-11.467899,12.754519],[-11.513943,12.442988],[-11.658301,12.386583],[-12.203565,12.465648],[-12.278599,12.35444],[-12.499051,12.33209],[-13.217818,12.575874],[-13.700476,12.586183],[-15.548477,12.62817],[-15.816574,12.515567],[-16.147717,12.547762],[-16.677452,12.384852],[-16.841525,13.151394],[-15.931296,13.130284],[-15.691001,13.270353],[-15.511813,13.27857],[-15.141163,13.509512],[-14.712197,13.298207],[-14.277702,13.280585],[-13.844963,13.505042],[-14.046992,13.794068],[-14.376714,13.62568],[-14.687031,13.630357],[-15.081735,13.876492],[-15.39877,13.860369],[-15.624596,13.623587],[-16.713729,13.594959]]]}}, +{"type":"Feature","id":"SLB","properties":{"name":"Solomon Islands"},"geometry":{"type":"MultiPolygon","coordinates":[[[[162.119025,-10.482719],[162.398646,-10.826367],[161.700032,-10.820011],[161.319797,-10.204751],[161.917383,-10.446701],[162.119025,-10.482719]]],[[[160.852229,-9.872937],[160.462588,-9.89521],[159.849447,-9.794027],[159.640003,-9.63998],[159.702945,-9.24295],[160.362956,-9.400304],[160.688518,-9.610162],[160.852229,-9.872937]]],[[[161.679982,-9.599982],[161.529397,-9.784312],[160.788253,-8.917543],[160.579997,-8.320009],[160.920028,-8.320009],[161.280006,-9.120011],[161.679982,-9.599982]]],[[[159.875027,-8.33732],[159.917402,-8.53829],[159.133677,-8.114181],[158.586114,-7.754824],[158.21115,-7.421872],[158.359978,-7.320018],[158.820001,-7.560003],[159.640003,-8.020027],[159.875027,-8.33732]]],[[[157.538426,-7.34782],[157.33942,-7.404767],[156.90203,-7.176874],[156.491358,-6.765943],[156.542828,-6.599338],[157.14,-7.021638],[157.538426,-7.34782]]]]}}, +{"type":"Feature","id":"SLE","properties":{"name":"Sierra Leone"},"geometry":{"type":"Polygon","coordinates":[[[-11.438779,6.785917],[-11.708195,6.860098],[-12.428099,7.262942],[-12.949049,7.798646],[-13.124025,8.163946],[-13.24655,8.903049],[-12.711958,9.342712],[-12.596719,9.620188],[-12.425929,9.835834],[-12.150338,9.858572],[-11.917277,10.046984],[-11.117481,10.045873],[-10.839152,9.688246],[-10.622395,9.26791],[-10.65477,8.977178],[-10.494315,8.715541],[-10.505477,8.348896],[-10.230094,8.406206],[-10.695595,7.939464],[-11.146704,7.396706],[-11.199802,7.105846],[-11.438779,6.785917]]]}}, +{"type":"Feature","id":"SLV","properties":{"name":"El Salvador"},"geometry":{"type":"Polygon","coordinates":[[[-87.793111,13.38448],[-87.904112,13.149017],[-88.483302,13.163951],[-88.843228,13.259734],[-89.256743,13.458533],[-89.812394,13.520622],[-90.095555,13.735338],[-90.064678,13.88197],[-89.721934,14.134228],[-89.534219,14.244816],[-89.587343,14.362586],[-89.353326,14.424133],[-89.058512,14.340029],[-88.843073,14.140507],[-88.541231,13.980155],[-88.503998,13.845486],[-88.065343,13.964626],[-87.859515,13.893312],[-87.723503,13.78505],[-87.793111,13.38448]]]}}, +{"type":"Feature","id":"-99","properties":{"name":"Somaliland"},"geometry":{"type":"Polygon","coordinates":[[[48.93813,9.451749],[48.486736,8.837626],[47.78942,8.003],[46.948328,7.996877],[43.67875,9.18358],[43.296975,9.540477],[42.92812,10.02194],[42.55876,10.57258],[42.776852,10.926879],[43.145305,11.46204],[43.47066,11.27771],[43.666668,10.864169],[44.117804,10.445538],[44.614259,10.442205],[45.556941,10.698029],[46.645401,10.816549],[47.525658,11.127228],[48.021596,11.193064],[48.378784,11.375482],[48.948206,11.410622],[48.942005,11.394266],[48.938491,10.982327],[48.938233,9.9735],[48.93813,9.451749]]]}}, +{"type":"Feature","id":"SOM","properties":{"name":"Somalia"},"geometry":{"type":"Polygon","coordinates":[[[49.72862,11.5789],[50.25878,11.67957],[50.73202,12.0219],[51.1112,12.02464],[51.13387,11.74815],[51.04153,11.16651],[51.04531,10.6409],[50.83418,10.27972],[50.55239,9.19874],[50.07092,8.08173],[49.4527,6.80466],[48.59455,5.33911],[47.74079,4.2194],[46.56476,2.85529],[45.56399,2.04576],[44.06815,1.05283],[43.13597,0.2922],[42.04157,-0.91916],[41.81095,-1.44647],[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.855083,3.918912],[42.12861,4.23413],[42.76967,4.25259],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.486736,8.837626],[48.93813,9.451749],[48.938233,9.9735],[48.938491,10.982327],[48.942005,11.394266],[48.948205,11.410617],[49.26776,11.43033],[49.72862,11.5789]]]}}, +{"type":"Feature","id":"SRB","properties":{"name":"Republic of Serbia"},"geometry":{"type":"Polygon","coordinates":[[[20.874313,45.416375],[21.483526,45.18117],[21.562023,44.768947],[22.145088,44.478422],[22.459022,44.702517],[22.705726,44.578003],[22.474008,44.409228],[22.65715,44.234923],[22.410446,44.008063],[22.500157,43.642814],[22.986019,43.211161],[22.604801,42.898519],[22.436595,42.580321],[22.545012,42.461362],[22.380526,42.32026],[21.91708,42.30364],[21.576636,42.245224],[21.54332,42.32025],[21.66292,42.43922],[21.77505,42.6827],[21.63302,42.67717],[21.43866,42.86255],[21.27421,42.90959],[21.143395,43.068685],[20.95651,43.13094],[20.81448,43.27205],[20.63508,43.21671],[20.49679,42.88469],[20.25758,42.81275],[20.3398,42.89852],[19.95857,43.10604],[19.63,43.21378],[19.48389,43.35229],[19.21852,43.52384],[19.454,43.5681],[19.59976,44.03847],[19.11761,44.42307],[19.36803,44.863],[19.00548,44.86023],[19.390476,45.236516],[19.072769,45.521511],[18.82982,45.90888],[19.596045,46.17173],[20.220192,46.127469],[20.762175,45.734573],[20.874313,45.416375]]]}}, +{"type":"Feature","id":"SUR","properties":{"name":"Suriname"},"geometry":{"type":"Polygon","coordinates":[[[-57.147436,5.97315],[-55.949318,5.772878],[-55.84178,5.953125],[-55.03325,6.025291],[-53.958045,5.756548],[-54.478633,4.896756],[-54.399542,4.212611],[-54.006931,3.620038],[-54.181726,3.18978],[-54.269705,2.732392],[-54.524754,2.311849],[-55.097587,2.523748],[-55.569755,2.421506],[-55.973322,2.510364],[-56.073342,2.220795],[-55.9056,2.021996],[-55.995698,1.817667],[-56.539386,1.899523],[-57.150098,2.768927],[-57.281433,3.333492],[-57.601569,3.334655],[-58.044694,4.060864],[-57.86021,4.576801],[-57.914289,4.812626],[-57.307246,5.073567],[-57.147436,5.97315]]]}}, +{"type":"Feature","id":"SVK","properties":{"name":"Slovakia"},"geometry":{"type":"Polygon","coordinates":[[[18.853144,49.49623],[18.909575,49.435846],[19.320713,49.571574],[19.825023,49.217125],[20.415839,49.431453],[20.887955,49.328772],[21.607808,49.470107],[22.558138,49.085738],[22.280842,48.825392],[22.085608,48.422264],[21.872236,48.319971],[20.801294,48.623854],[20.473562,48.56285],[20.239054,48.327567],[19.769471,48.202691],[19.661364,48.266615],[19.174365,48.111379],[18.777025,48.081768],[18.696513,47.880954],[17.857133,47.758429],[17.488473,47.867466],[16.979667,48.123497],[16.879983,48.470013],[16.960288,48.596982],[17.101985,48.816969],[17.545007,48.800019],[17.886485,48.903475],[17.913512,48.996493],[18.104973,49.043983],[18.170498,49.271515],[18.399994,49.315001],[18.554971,49.495015],[18.853144,49.49623]]]}}, +{"type":"Feature","id":"SVN","properties":{"name":"Slovenia"},"geometry":{"type":"Polygon","coordinates":[[[13.806475,46.509306],[14.632472,46.431817],[15.137092,46.658703],[16.011664,46.683611],[16.202298,46.852386],[16.370505,46.841327],[16.564808,46.503751],[15.768733,46.238108],[15.67153,45.834154],[15.323954,45.731783],[15.327675,45.452316],[14.935244,45.471695],[14.595109,45.634941],[14.411968,45.466166],[13.71506,45.500324],[13.93763,45.591016],[13.69811,46.016778],[13.806475,46.509306]]]}}, +{"type":"Feature","id":"SWE","properties":{"name":"Sweden"},"geometry":{"type":"MultiPolygon","coordinates":[[[[22.183173,65.723741],[21.213517,65.026005],[21.369631,64.413588],[19.778876,63.609554],[17.847779,62.7494],[17.119555,61.341166],[17.831346,60.636583],[18.787722,60.081914],[17.869225,58.953766],[16.829185,58.719827],[16.44771,57.041118],[15.879786,56.104302],[14.666681,56.200885],[14.100721,55.407781],[12.942911,55.361737],[12.625101,56.30708],[11.787942,57.441817],[11.027369,58.856149],[11.468272,59.432393],[12.300366,60.117933],[12.631147,61.293572],[11.992064,61.800362],[11.930569,63.128318],[12.579935,64.066219],[13.571916,64.049114],[13.919905,64.445421],[13.55569,64.787028],[15.108411,66.193867],[16.108712,67.302456],[16.768879,68.013937],[17.729182,68.010552],[17.993868,68.567391],[19.87856,68.407194],[20.025269,69.065139],[20.645593,69.106247],[21.978535,68.616846],[23.539473,67.936009],[23.56588,66.396051],[23.903379,66.006927],[22.183173,65.723741]]],[[[17.061767,57.385783],[17.210083,57.326521],[16.430053,56.179196],[16.364135,56.556455],[17.061767,57.385783]]],[[[19.357910,57.958588],[18.803100,57.651279],[18.825073,57.444949],[18.995361,57.441993],[18.951416,57.370976],[18.693237,57.305756],[18.709716,57.204734],[18.462524,57.127295],[18.319702,56.926992],[18.105468,56.891003],[18.187866,57.109402],[18.072509,57.267163],[18.154907,57.394664],[18.094482,57.545312],[18.660278,57.929434],[19.039306,57.941098],[19.105224,57.993543],[19.374389,57.996454],[19.357910,57.958588]]],[[[20.846557,63.823710],[21.066284,63.829768],[20.972900,63.715670],[20.824584,63.579121],[20.695495,63.591340],[20.819091,63.714454],[20.799865,63.780059],[20.846557,63.823710]]]]}}, +{"type":"Feature","id":"SWZ","properties":{"name":"Swaziland"},"geometry":{"type":"Polygon","coordinates":[[[32.071665,-26.73382],[31.86806,-27.177927],[31.282773,-27.285879],[30.685962,-26.743845],[30.676609,-26.398078],[30.949667,-26.022649],[31.04408,-25.731452],[31.333158,-25.660191],[31.837778,-25.843332],[31.985779,-26.29178],[32.071665,-26.73382]]]}}, +{"type":"Feature","id":"SYR","properties":{"name":"Syria"},"geometry":{"type":"Polygon","coordinates":[[[38.792341,33.378686],[36.834062,32.312938],[35.719918,32.709192],[35.700798,32.716014],[35.836397,32.868123],[35.821101,33.277426],[36.06646,33.824912],[36.61175,34.201789],[36.448194,34.593935],[35.998403,34.644914],[35.905023,35.410009],[36.149763,35.821535],[36.41755,36.040617],[36.685389,36.259699],[36.739494,36.81752],[37.066761,36.623036],[38.167727,36.90121],[38.699891,36.712927],[39.52258,36.716054],[40.673259,37.091276],[41.212089,37.074352],[42.349591,37.229873],[41.837064,36.605854],[41.289707,36.358815],[41.383965,35.628317],[41.006159,34.419372],[38.792341,33.378686]]]}}, +{"type":"Feature","id":"TCD","properties":{"name":"Chad"},"geometry":{"type":"Polygon","coordinates":[[[14.495787,12.859396],[14.595781,13.330427],[13.954477,13.353449],[13.956699,13.996691],[13.540394,14.367134],[13.97217,15.68437],[15.247731,16.627306],[15.300441,17.92795],[15.685741,19.95718],[15.903247,20.387619],[15.487148,20.730415],[15.47106,21.04845],[15.096888,21.308519],[14.8513,22.86295],[15.86085,23.40972],[19.84926,21.49509],[23.83766,19.58047],[23.88689,15.61084],[23.02459,15.68072],[22.56795,14.94429],[22.30351,14.32682],[22.51202,14.09318],[22.18329,13.78648],[22.29658,13.37232],[22.03759,12.95546],[21.93681,12.58818],[22.28801,12.64605],[22.49762,12.26024],[22.50869,11.67936],[22.87622,11.38461],[22.864165,11.142395],[22.231129,10.971889],[21.723822,10.567056],[21.000868,9.475985],[20.059685,9.012706],[19.094008,9.074847],[18.81201,8.982915],[18.911022,8.630895],[18.389555,8.281304],[17.96493,7.890914],[16.705988,7.508328],[16.456185,7.734774],[16.290562,7.754307],[16.106232,7.497088],[15.27946,7.421925],[15.436092,7.692812],[15.120866,8.38215],[14.979996,8.796104],[14.544467,8.965861],[13.954218,9.549495],[14.171466,10.021378],[14.627201,9.920919],[14.909354,9.992129],[15.467873,9.982337],[14.923565,10.891325],[14.960152,11.555574],[14.89336,12.21905],[14.495787,12.859396]]]}}, +{"type":"Feature","id":"TGO","properties":{"name":"Togo"},"geometry":{"type":"Polygon","coordinates":[[[1.865241,6.142158],[1.060122,5.928837],[0.836931,6.279979],[0.570384,6.914359],[0.490957,7.411744],[0.712029,8.312465],[0.461192,8.677223],[0.365901,9.465004],[0.36758,10.191213],[-0.049785,10.706918],[0.023803,11.018682],[0.899563,10.997339],[0.772336,10.470808],[1.077795,10.175607],[1.425061,9.825395],[1.463043,9.334624],[1.664478,9.12859],[1.618951,6.832038],[1.865241,6.142158]]]}}, +{"type":"Feature","id":"THA","properties":{"name":"Thailand"},"geometry":{"type":"Polygon","coordinates":[[[102.584932,12.186595],[101.687158,12.64574],[100.83181,12.627085],[100.978467,13.412722],[100.097797,13.406856],[100.018733,12.307001],[99.478921,10.846367],[99.153772,9.963061],[99.222399,9.239255],[99.873832,9.207862],[100.279647,8.295153],[100.459274,7.429573],[101.017328,6.856869],[101.623079,6.740622],[102.141187,6.221636],[101.814282,5.810808],[101.154219,5.691384],[101.075516,6.204867],[100.259596,6.642825],[100.085757,6.464489],[99.690691,6.848213],[99.519642,7.343454],[98.988253,7.907993],[98.503786,8.382305],[98.339662,7.794512],[98.150009,8.350007],[98.25915,8.973923],[98.553551,9.93296],[99.038121,10.960546],[99.587286,11.892763],[99.196354,12.804748],[99.212012,13.269294],[99.097755,13.827503],[98.430819,14.622028],[98.192074,15.123703],[98.537376,15.308497],[98.903348,16.177824],[98.493761,16.837836],[97.859123,17.567946],[97.375896,18.445438],[97.797783,18.62708],[98.253724,19.708203],[98.959676,19.752981],[99.543309,20.186598],[100.115988,20.41785],[100.548881,20.109238],[100.606294,19.508344],[101.282015,19.462585],[101.035931,18.408928],[101.059548,17.512497],[102.113592,18.109102],[102.413005,17.932782],[102.998706,17.961695],[103.200192,18.309632],[103.956477,18.240954],[104.716947,17.428859],[104.779321,16.441865],[105.589039,15.570316],[105.544338,14.723934],[105.218777,14.273212],[104.281418,14.416743],[102.988422,14.225721],[102.348099,13.394247],[102.584932,12.186595]]]}}, +{"type":"Feature","id":"TJK","properties":{"name":"Tajikistan"},"geometry":{"type":"Polygon","coordinates":[[[71.014198,40.244366],[70.648019,39.935754],[69.55961,40.103211],[69.464887,39.526683],[70.549162,39.604198],[71.784694,39.279463],[73.675379,39.431237],[73.928852,38.505815],[74.257514,38.606507],[74.864816,38.378846],[74.829986,37.990007],[74.980002,37.41999],[73.948696,37.421566],[73.260056,37.495257],[72.63689,37.047558],[72.193041,36.948288],[71.844638,36.738171],[71.448693,37.065645],[71.541918,37.905774],[71.239404,37.953265],[71.348131,38.258905],[70.806821,38.486282],[70.376304,38.138396],[70.270574,37.735165],[70.116578,37.588223],[69.518785,37.608997],[69.196273,37.151144],[68.859446,37.344336],[68.135562,37.023115],[67.83,37.144994],[68.392033,38.157025],[68.176025,38.901553],[67.44222,39.140144],[67.701429,39.580478],[68.536416,39.533453],[69.011633,40.086158],[69.329495,40.727824],[70.666622,40.960213],[70.45816,40.496495],[70.601407,40.218527],[71.014198,40.244366]]]}}, +{"type":"Feature","id":"TKM","properties":{"name":"Turkmenistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[61.123071,36.491597],[60.377638,36.527383],[59.234762,37.412988],[58.436154,37.522309],[57.330434,38.029229],[56.619366,38.121394],[56.180375,37.935127],[55.511578,37.964117],[54.800304,37.392421],[53.921598,37.198918],[53.735511,37.906136],[53.880929,38.952093],[53.101028,39.290574],[53.357808,39.975286],[52.693973,40.033629],[52.915251,40.876523],[53.858139,40.631034],[54.736845,40.951015],[54.008311,41.551211],[53.721713,42.123191],[52.91675,41.868117],[52.814689,41.135371],[52.50246,41.783316],[52.944293,42.116034],[54.079418,42.324109],[54.755345,42.043971],[55.455251,41.259859],[55.968191,41.308642],[57.096391,41.32231],[56.932215,41.826026],[57.78653,42.170553],[58.629011,42.751551],[59.976422,42.223082],[60.083341,41.425146],[60.465953,41.220327],[61.547179,41.26637],[61.882714,41.084857],[62.37426,40.053886],[63.518015,39.363257],[64.170223,38.892407],[65.215999,38.402695],[66.54615,37.974685],[66.518607,37.362784],[66.217385,37.39379],[65.745631,37.661164],[65.588948,37.305217],[64.746105,37.111818],[64.546479,36.312073],[63.982896,36.007957],[63.193538,35.857166],[62.984662,35.404041],[62.230651,35.270664],[61.210817,35.650072]]]}}, +{"type":"Feature","id":"TLS","properties":{"name":"East Timor"},"geometry":{"type":"Polygon","coordinates":[[[124.968682,-8.89279],[125.086246,-8.656887],[125.947072,-8.432095],[126.644704,-8.398247],[126.957243,-8.273345],[127.335928,-8.397317],[126.967992,-8.668256],[125.925885,-9.106007],[125.08852,-9.393173],[125.07002,-9.089987],[124.968682,-8.89279]]]}}, +{"type":"Feature","id":"TTO","properties":{"name":"Trinidad and Tobago"},"geometry":{"type":"Polygon","coordinates":[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]}}, +{"type":"Feature","id":"TUN","properties":{"name":"Tunisia"},"geometry":{"type":"Polygon","coordinates":[[[9.48214,30.307556],[9.055603,32.102692],[8.439103,32.506285],[8.430473,32.748337],[7.612642,33.344115],[7.524482,34.097376],[8.140981,34.655146],[8.376368,35.479876],[8.217824,36.433177],[8.420964,36.946427],[9.509994,37.349994],[10.210002,37.230002],[10.18065,36.724038],[11.028867,37.092103],[11.100026,36.899996],[10.600005,36.41],[10.593287,35.947444],[10.939519,35.698984],[10.807847,34.833507],[10.149593,34.330773],[10.339659,33.785742],[10.856836,33.76874],[11.108501,33.293343],[11.488787,33.136996],[11.432253,32.368903],[10.94479,32.081815],[10.636901,31.761421],[9.950225,31.37607],[10.056575,30.961831],[9.970017,30.539325],[9.48214,30.307556]]]}}, +{"type":"Feature","id":"TUR","properties":{"name":"Turkey"},"geometry":{"type":"MultiPolygon","coordinates":[[[[36.913127,41.335358],[38.347665,40.948586],[39.512607,41.102763],[40.373433,41.013673],[41.554084,41.535656],[42.619549,41.583173],[43.582746,41.092143],[43.752658,40.740201],[43.656436,40.253564],[44.400009,40.005],[44.79399,39.713003],[44.109225,39.428136],[44.421403,38.281281],[44.225756,37.971584],[44.772699,37.170445],[44.293452,37.001514],[43.942259,37.256228],[42.779126,37.385264],[42.349591,37.229873],[41.212089,37.074352],[40.673259,37.091276],[39.52258,36.716054],[38.699891,36.712927],[38.167727,36.90121],[37.066761,36.623036],[36.739494,36.81752],[36.685389,36.259699],[36.41755,36.040617],[36.149763,35.821535],[35.782085,36.274995],[36.160822,36.650606],[35.550936,36.565443],[34.714553,36.795532],[34.026895,36.21996],[32.509158,36.107564],[31.699595,36.644275],[30.621625,36.677865],[30.391096,36.262981],[29.699976,36.144357],[28.732903,36.676831],[27.641187,36.658822],[27.048768,37.653361],[26.318218,38.208133],[26.8047,38.98576],[26.170785,39.463612],[27.28002,40.420014],[28.819978,40.460011],[29.240004,41.219991],[31.145934,41.087622],[32.347979,41.736264],[33.513283,42.01896],[35.167704,42.040225],[36.913127,41.335358]]],[[[27.192377,40.690566],[26.358009,40.151994],[26.043351,40.617754],[26.056942,40.824123],[26.294602,40.936261],[26.604196,41.562115],[26.117042,41.826905],[27.135739,42.141485],[27.99672,42.007359],[28.115525,41.622886],[28.988443,41.299934],[28.806438,41.054962],[27.619017,40.999823],[27.192377,40.690566]]]]}}, +{"type":"Feature","id":"TWN","properties":{"name":"Taiwan"},"geometry":{"type":"Polygon","coordinates":[[[121.777818,24.394274],[121.175632,22.790857],[120.74708,21.970571],[120.220083,22.814861],[120.106189,23.556263],[120.69468,24.538451],[121.495044,25.295459],[121.951244,24.997596],[121.777818,24.394274]]]}}, +{"type":"Feature","id":"TZA","properties":{"name":"United Republic of Tanzania"},"geometry":{"type":"Polygon","coordinates":[[[33.903711,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.74054,-5.90895],[38.79977,-6.47566],[39.44,-6.84],[39.47,-7.1],[39.19469,-7.7039],[39.25203,-8.00781],[39.18652,-8.48551],[39.53574,-9.11237],[39.9496,-10.0984],[40.31659,-10.3171],[39.521,-10.89688],[38.427557,-11.285202],[37.82764,-11.26879],[37.47129,-11.56876],[36.775151,-11.594537],[36.514082,-11.720938],[35.312398,-11.439146],[34.559989,-11.52002],[34.28,-10.16],[33.940838,-9.693674],[33.73972,-9.41715],[32.759375,-9.230599],[32.191865,-8.930359],[31.556348,-8.762049],[31.157751,-8.594579],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.419993,-5.939999],[29.519987,-5.419979],[29.339998,-4.499983],[29.753512,-4.452389],[30.11632,-4.09012],[30.50554,-3.56858],[30.75224,-3.35931],[30.74301,-3.03431],[30.52766,-2.80762],[30.46967,-2.41383],[30.758309,-2.28725],[30.816135,-1.698914],[30.419105,-1.134659],[30.76986,-1.01455],[31.86617,-1.02736],[33.903711,-0.95]]]}}, +{"type":"Feature","id":"UGA","properties":{"name":"Uganda"},"geometry":{"type":"Polygon","coordinates":[[[31.86617,-1.02736],[30.76986,-1.01455],[30.419105,-1.134659],[29.821519,-1.443322],[29.579466,-1.341313],[29.587838,-0.587406],[29.8195,-0.2053],[29.875779,0.59738],[30.086154,1.062313],[30.468508,1.583805],[30.85267,1.849396],[31.174149,2.204465],[30.77332,2.33989],[30.83385,3.50917],[31.24556,3.7819],[31.88145,3.55827],[32.68642,3.79232],[33.39,3.79],[34.005,4.249885],[34.47913,3.5556],[34.59607,3.05374],[35.03599,1.90584],[34.6721,1.17694],[34.18,0.515],[33.893569,0.109814],[33.903711,-0.95],[31.86617,-1.02736]]]}}, +{"type":"Feature","id":"UKR","properties":{"name":"Ukraine"},"geometry":{"type":"Polygon","coordinates":[[[31.785998,52.101678],[32.159412,52.061267],[32.412058,52.288695],[32.715761,52.238465],[33.7527,52.335075],[34.391731,51.768882],[34.141978,51.566413],[34.224816,51.255993],[35.022183,51.207572],[35.377924,50.773955],[35.356116,50.577197],[36.626168,50.225591],[37.39346,50.383953],[38.010631,49.915662],[38.594988,49.926462],[40.069058,49.601055],[40.080789,49.30743],[39.674664,48.783818],[39.895632,48.232405],[39.738278,47.898937],[38.770585,47.825608],[38.255112,47.5464],[38.223538,47.10219],[37.425137,47.022221],[36.759855,46.6987],[35.823685,46.645964],[34.962342,46.273197],[35.020788,45.651219],[35.510009,45.409993],[36.529998,45.46999],[36.334713,45.113216],[35.239999,44.939996],[33.882511,44.361479],[33.326421,44.564877],[33.546924,45.034771],[32.454174,45.327466],[32.630804,45.519186],[33.588162,45.851569],[33.298567,46.080598],[31.74414,46.333348],[31.675307,46.706245],[30.748749,46.5831],[30.377609,46.03241],[29.603289,45.293308],[29.149725,45.464925],[28.679779,45.304031],[28.233554,45.488283],[28.485269,45.596907],[28.659987,45.939987],[28.933717,46.25883],[28.862972,46.437889],[29.072107,46.517678],[29.170654,46.379262],[29.759972,46.349988],[30.024659,46.423937],[29.83821,46.525326],[29.908852,46.674361],[29.559674,46.928583],[29.415135,47.346645],[29.050868,47.510227],[29.122698,47.849095],[28.670891,48.118149],[28.259547,48.155562],[27.522537,48.467119],[26.857824,48.368211],[26.619337,48.220726],[26.19745,48.220881],[25.945941,47.987149],[25.207743,47.891056],[24.866317,47.737526],[24.402056,47.981878],[23.760958,47.985598],[23.142236,48.096341],[22.710531,47.882194],[22.64082,48.15024],[22.085608,48.422264],[22.280842,48.825392],[22.558138,49.085738],[22.776419,49.027395],[22.51845,49.476774],[23.426508,50.308506],[23.922757,50.424881],[24.029986,50.705407],[23.527071,51.578454],[24.005078,51.617444],[24.553106,51.888461],[25.327788,51.910656],[26.337959,51.832289],[27.454066,51.592303],[28.241615,51.572227],[28.617613,51.427714],[28.992835,51.602044],[29.254938,51.368234],[30.157364,51.416138],[30.555117,51.319503],[30.619454,51.822806],[30.927549,52.042353],[31.785998,52.101678]]]}}, +{"type":"Feature","id":"URY","properties":{"name":"Uruguay"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.976026,-30.109686],[-55.973245,-30.883076],[-55.60151,-30.853879],[-54.572452,-31.494511],[-53.787952,-32.047243],[-53.209589,-32.727666],[-53.650544,-33.202004],[-53.373662,-33.768378],[-53.806426,-34.396815],[-54.935866,-34.952647],[-55.67409,-34.752659],[-56.215297,-34.859836],[-57.139685,-34.430456],[-57.817861,-34.462547],[-58.427074,-33.909454],[-58.349611,-33.263189],[-58.132648,-33.040567],[-58.14244,-32.044504],[-57.874937,-31.016556],[-57.625133,-30.216295]]]}}, +{"type":"Feature","id":"USA","properties":{"name":"United States of America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-94.64,48.84],[-94.32914,48.67074],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.83,48.27],[-89.6,48.01],[-89.272917,48.019808],[-88.378114,48.302918],[-87.439793,47.94],[-86.461991,47.553338],[-85.652363,47.220219],[-84.87608,46.900083],[-84.779238,46.637102],[-84.543749,46.538684],[-84.6049,46.4396],[-84.3367,46.40877],[-84.14212,46.512226],[-84.091851,46.275419],[-83.890765,46.116927],[-83.616131,46.116927],[-83.469551,45.994686],[-83.592851,45.816894],[-82.550925,45.347517],[-82.337763,44.44],[-82.137642,43.571088],[-82.43,42.98],[-82.9,42.43],[-83.12,42.08],[-83.142,41.975681],[-83.02981,41.832796],[-82.690089,41.675105],[-82.439278,41.675105],[-81.277747,42.209026],[-80.247448,42.3662],[-78.939362,42.863611],[-78.92,42.965],[-79.01,43.27],[-79.171674,43.466339],[-78.72028,43.625089],[-77.737885,43.629056],[-76.820034,43.628784],[-76.5,44.018459],[-76.375,44.09631],[-75.31821,44.81645],[-74.867,45.00048],[-73.34783,45.00738],[-71.50506,45.0082],[-71.405,45.255],[-71.08482,45.30524],[-70.66,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-68.03252,44.3252],[-69.06,43.98],[-70.11617,43.68405],[-70.645476,43.090238],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283],[-69.96503,41.63717],[-70.64,41.475],[-71.12039,41.49445],[-71.86,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.931102],[-72.24126,41.11948],[-71.945,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.24845],[-75.52805,39.4985],[-75.32,38.96],[-75.071835,38.782032],[-75.05673,38.40412],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72205,37.93705],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.717615],[-76.32933,38.08326],[-76.989998,38.239992],[-76.30162,37.917945],[-76.25874,36.9664],[-75.9718,36.89726],[-75.86804,36.55125],[-75.72749,35.55074],[-76.36318,34.80854],[-77.397635,34.51201],[-78.05496,33.92547],[-78.55435,33.86133],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999],[-81.31371,30.03552],[-80.98,29.18],[-80.535585,28.47213],[-80.53,28.04],[-80.056539,26.88],[-80.088015,26.205765],[-80.13156,25.816775],[-80.38103,25.20616],[-80.68,25.08],[-81.17213,25.20126],[-81.33,25.64],[-81.71,25.87],[-82.24,26.73],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.55],[-82.93,29.1],[-83.70959,29.93656],[-84.1,30.09],[-85.10882,29.63615],[-85.28784,29.68612],[-85.7731,30.15261],[-86.4,30.4],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18049,30.31598],[-89.593831,30.159994],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.30714],[-90.15463,29.11743],[-90.880225,29.148535],[-91.626785,29.677],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.48],[-95.60026,28.73863],[-96.59404,28.30748],[-97.14,27.83],[-97.37,27.38],[-97.38,26.69],[-97.33,26.21],[-97.14,25.87],[-97.53,25.84],[-98.24,26.06],[-99.02,26.37],[-99.3,26.84],[-99.52,27.54],[-100.11,28.11],[-100.45584,28.69612],[-100.9576,29.38071],[-101.6624,29.7793],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45697,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383],[-106.1429,31.39995],[-106.50759,31.75452],[-108.24,31.754854],[-108.24194,31.34222],[-109.035,31.34194],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72139,32.72083],[-115.99135,32.61239],[-117.12776,32.53534],[-117.295938,33.046225],[-117.944,33.621236],[-118.410602,33.740909],[-118.519895,34.027782],[-119.081,34.078],[-119.438841,34.348477],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686],[-121.71457,36.16153],[-122.54747,37.55176],[-122.51201,37.78339],[-122.95319,38.11371],[-123.7272,38.95166],[-123.86517,39.76699],[-124.39807,40.3132],[-124.17886,41.14202],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017],[-124.68721,48.184433],[-124.566101,48.379715],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49],[-120,49],[-117.03121,49],[-116.04818,49],[-113,49],[-110.05,49],[-107.05,49],[-104.04826,48.99986],[-100.65,49],[-97.22872,49.0007],[-95.15907,49],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.006314,57.115842],[-154.00509,56.734677],[-154.516403,56.992749],[-154.670993,57.461196],[-153.76278,57.816575],[-153.228729,57.968968],[-152.564791,57.901427],[-152.141147,57.591059],[-153.006314,57.115842]]],[[[-165.579164,59.909987],[-166.19277,59.754441],[-166.848337,59.941406],[-167.455277,60.213069],[-166.467792,60.38417],[-165.67443,60.293607],[-165.579164,59.909987]]],[[[-171.731657,63.782515],[-171.114434,63.592191],[-170.491112,63.694975],[-169.682505,63.431116],[-168.689439,63.297506],[-168.771941,63.188598],[-169.52944,62.976931],[-170.290556,63.194438],[-170.671386,63.375822],[-171.553063,63.317789],[-171.791111,63.405846],[-171.731657,63.782515]]],[[[-155.06779,71.147776],[-154.344165,70.696409],[-153.900006,70.889989],[-152.210006,70.829992],[-152.270002,70.600006],[-150.739992,70.430017],[-149.720003,70.53001],[-147.613362,70.214035],[-145.68999,70.12001],[-144.920011,69.989992],[-143.589446,70.152514],[-142.07251,69.851938],[-140.985988,69.711998],[-140.992499,66.000029],[-140.99777,60.306397],[-140.012998,60.276838],[-139.039,60.000007],[-138.34089,59.56211],[-137.4525,58.905],[-136.47972,59.46389],[-135.47583,59.78778],[-134.945,59.27056],[-134.27111,58.86111],[-133.355549,58.410285],[-132.73042,57.69289],[-131.70781,56.55212],[-130.00778,55.91583],[-129.979994,55.284998],[-130.53611,54.802753],[-131.085818,55.178906],[-131.967211,55.497776],[-132.250011,56.369996],[-133.539181,57.178887],[-134.078063,58.123068],[-135.038211,58.187715],[-136.628062,58.212209],[-137.800006,58.499995],[-139.867787,59.537762],[-140.825274,59.727517],[-142.574444,60.084447],[-143.958881,59.99918],[-145.925557,60.45861],[-147.114374,60.884656],[-148.224306,60.672989],[-148.018066,59.978329],[-148.570823,59.914173],[-149.727858,59.705658],[-150.608243,59.368211],[-151.716393,59.155821],[-151.859433,59.744984],[-151.409719,60.725803],[-150.346941,61.033588],[-150.621111,61.284425],[-151.895839,60.727198],[-152.57833,60.061657],[-154.019172,59.350279],[-153.287511,58.864728],[-154.232492,58.146374],[-155.307491,57.727795],[-156.308335,57.422774],[-156.556097,56.979985],[-158.117217,56.463608],[-158.433321,55.994154],[-159.603327,55.566686],[-160.28972,55.643581],[-161.223048,55.364735],[-162.237766,55.024187],[-163.069447,54.689737],[-164.785569,54.404173],[-164.942226,54.572225],[-163.84834,55.039431],[-162.870001,55.348043],[-161.804175,55.894986],[-160.563605,56.008055],[-160.07056,56.418055],[-158.684443,57.016675],[-158.461097,57.216921],[-157.72277,57.570001],[-157.550274,58.328326],[-157.041675,58.918885],[-158.194731,58.615802],[-158.517218,58.787781],[-159.058606,58.424186],[-159.711667,58.93139],[-159.981289,58.572549],[-160.355271,59.071123],[-161.355003,58.670838],[-161.968894,58.671665],[-162.054987,59.266925],[-161.874171,59.633621],[-162.518059,59.989724],[-163.818341,59.798056],[-164.662218,60.267484],[-165.346388,60.507496],[-165.350832,61.073895],[-166.121379,61.500019],[-165.734452,62.074997],[-164.919179,62.633076],[-164.562508,63.146378],[-163.753332,63.219449],[-163.067224,63.059459],[-162.260555,63.541936],[-161.53445,63.455817],[-160.772507,63.766108],[-160.958335,64.222799],[-161.518068,64.402788],[-160.777778,64.788604],[-161.391926,64.777235],[-162.45305,64.559445],[-162.757786,64.338605],[-163.546394,64.55916],[-164.96083,64.446945],[-166.425288,64.686672],[-166.845004,65.088896],[-168.11056,65.669997],[-166.705271,66.088318],[-164.47471,66.57666],[-163.652512,66.57666],[-163.788602,66.077207],[-161.677774,66.11612],[-162.489715,66.735565],[-163.719717,67.116395],[-164.430991,67.616338],[-165.390287,68.042772],[-166.764441,68.358877],[-166.204707,68.883031],[-164.430811,68.915535],[-163.168614,69.371115],[-162.930566,69.858062],[-161.908897,70.33333],[-160.934797,70.44769],[-159.039176,70.891642],[-158.119723,70.824721],[-156.580825,71.357764],[-155.06779,71.147776]]]]}}, +{"type":"Feature","id":"UZB","properties":{"name":"Uzbekistan"},"geometry":{"type":"Polygon","coordinates":[[[66.518607,37.362784],[66.54615,37.974685],[65.215999,38.402695],[64.170223,38.892407],[63.518015,39.363257],[62.37426,40.053886],[61.882714,41.084857],[61.547179,41.26637],[60.465953,41.220327],[60.083341,41.425146],[59.976422,42.223082],[58.629011,42.751551],[57.78653,42.170553],[56.932215,41.826026],[57.096391,41.32231],[55.968191,41.308642],[55.928917,44.995858],[58.503127,45.586804],[58.689989,45.500014],[60.239972,44.784037],[61.05832,44.405817],[62.0133,43.504477],[63.185787,43.650075],[64.900824,43.728081],[66.098012,42.99766],[66.023392,41.994646],[66.510649,41.987644],[66.714047,41.168444],[67.985856,41.135991],[68.259896,40.662325],[68.632483,40.668681],[69.070027,41.384244],[70.388965,42.081308],[70.962315,42.266154],[71.259248,42.167711],[70.420022,41.519998],[71.157859,41.143587],[71.870115,41.3929],[73.055417,40.866033],[71.774875,40.145844],[71.014198,40.244366],[70.601407,40.218527],[70.45816,40.496495],[70.666622,40.960213],[69.329495,40.727824],[69.011633,40.086158],[68.536416,39.533453],[67.701429,39.580478],[67.44222,39.140144],[68.176025,38.901553],[68.392033,38.157025],[67.83,37.144994],[67.075782,37.356144],[66.518607,37.362784]]]}}, +{"type":"Feature","id":"VEN","properties":{"name":"Venezuela"},"geometry":{"type":"Polygon","coordinates":[[[-71.331584,11.776284],[-71.360006,11.539994],[-71.94705,11.423282],[-71.620868,10.96946],[-71.633064,10.446494],[-72.074174,9.865651],[-71.695644,9.072263],[-71.264559,9.137195],[-71.039999,9.859993],[-71.350084,10.211935],[-71.400623,10.968969],[-70.155299,11.375482],[-70.293843,11.846822],[-69.943245,12.162307],[-69.5843,11.459611],[-68.882999,11.443385],[-68.233271,10.885744],[-68.194127,10.554653],[-67.296249,10.545868],[-66.227864,10.648627],[-65.655238,10.200799],[-64.890452,10.077215],[-64.329479,10.389599],[-64.318007,10.641418],[-63.079322,10.701724],[-61.880946,10.715625],[-62.730119,10.420269],[-62.388512,9.948204],[-61.588767,9.873067],[-60.830597,9.38134],[-60.671252,8.580174],[-60.150096,8.602757],[-59.758285,8.367035],[-60.550588,7.779603],[-60.637973,7.415],[-60.295668,7.043911],[-60.543999,6.856584],[-61.159336,6.696077],[-61.139415,6.234297],[-61.410303,5.959068],[-60.733574,5.200277],[-60.601179,4.918098],[-60.966893,4.536468],[-62.08543,4.162124],[-62.804533,4.006965],[-63.093198,3.770571],[-63.888343,4.02053],[-64.628659,4.148481],[-64.816064,4.056445],[-64.368494,3.79721],[-64.408828,3.126786],[-64.269999,2.497006],[-63.422867,2.411068],[-63.368788,2.2009],[-64.083085,1.916369],[-64.199306,1.492855],[-64.611012,1.328731],[-65.354713,1.095282],[-65.548267,0.789254],[-66.325765,0.724452],[-66.876326,1.253361],[-67.181294,2.250638],[-67.447092,2.600281],[-67.809938,2.820655],[-67.303173,3.318454],[-67.337564,3.542342],[-67.621836,3.839482],[-67.823012,4.503937],[-67.744697,5.221129],[-67.521532,5.55687],[-67.34144,6.095468],[-67.695087,6.267318],[-68.265052,6.153268],[-68.985319,6.206805],[-69.38948,6.099861],[-70.093313,6.960376],[-70.674234,7.087785],[-71.960176,6.991615],[-72.198352,7.340431],[-72.444487,7.423785],[-72.479679,7.632506],[-72.360901,8.002638],[-72.439862,8.405275],[-72.660495,8.625288],[-72.78873,9.085027],[-73.304952,9.152],[-73.027604,9.73677],[-72.905286,10.450344],[-72.614658,10.821975],[-72.227575,11.108702],[-71.973922,11.608672],[-71.331584,11.776284]]]}}, +{"type":"Feature","id":"VNM","properties":{"name":"Vietnam"},"geometry":{"type":"Polygon","coordinates":[[[108.05018,21.55238],[106.715068,20.696851],[105.881682,19.75205],[105.662006,19.058165],[106.426817,18.004121],[107.361954,16.697457],[108.269495,16.079742],[108.877107,15.276691],[109.33527,13.426028],[109.200136,11.666859],[108.36613,11.008321],[107.220929,10.364484],[106.405113,9.53084],[105.158264,8.59976],[104.795185,9.241038],[105.076202,9.918491],[104.334335,10.486544],[105.199915,10.88931],[106.24967,10.961812],[105.810524,11.567615],[107.491403,12.337206],[107.614548,13.535531],[107.382727,14.202441],[107.564525,15.202173],[107.312706,15.908538],[106.556008,16.604284],[105.925762,17.485315],[105.094598,18.666975],[103.896532,19.265181],[104.183388,19.624668],[104.822574,19.886642],[104.435,20.758733],[103.203861,20.766562],[102.754896,21.675137],[102.170436,22.464753],[102.706992,22.708795],[103.504515,22.703757],[104.476858,22.81915],[105.329209,23.352063],[105.811247,22.976892],[106.725403,22.794268],[106.567273,22.218205],[107.04342,21.811899],[108.05018,21.55238]]]}}, +{"type":"Feature","id":"VUT","properties":{"name":"Vanuatu"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.844877,-16.466333],[167.515181,-16.59785],[167.180008,-16.159995],[167.216801,-15.891846],[167.844877,-16.466333]]],[[[167.107712,-14.93392],[167.270028,-15.740021],[167.001207,-15.614602],[166.793158,-15.668811],[166.649859,-15.392704],[166.629137,-14.626497],[167.107712,-14.93392]]]]}}, +{"type":"Feature","id":"PSE","properties":{"name":"West Bank"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.545252,31.782505],[35.397561,31.489086],[34.927408,31.353435],[34.970507,31.616778],[35.225892,31.754341],[34.974641,31.866582],[35.18393,32.532511],[35.545665,32.393992]]]}}, +{"type":"Feature","id":"YEM","properties":{"name":"Yemen"},"geometry":{"type":"Polygon","coordinates":[[[53.108573,16.651051],[52.385206,16.382411],[52.191729,15.938433],[52.168165,15.59742],[51.172515,15.17525],[49.574576,14.708767],[48.679231,14.003202],[48.238947,13.94809],[47.938914,14.007233],[47.354454,13.59222],[46.717076,13.399699],[45.877593,13.347764],[45.62505,13.290946],[45.406459,13.026905],[45.144356,12.953938],[44.989533,12.699587],[44.494576,12.721653],[44.175113,12.58595],[43.482959,12.6368],[43.222871,13.22095],[43.251448,13.767584],[43.087944,14.06263],[42.892245,14.802249],[42.604873,15.213335],[42.805015,15.261963],[42.702438,15.718886],[42.823671,15.911742],[42.779332,16.347891],[43.218375,16.66689],[43.115798,17.08844],[43.380794,17.579987],[43.791519,17.319977],[44.062613,17.410359],[45.216651,17.433329],[45.399999,17.333335],[46.366659,17.233315],[46.749994,17.283338],[47.000005,16.949999],[47.466695,17.116682],[48.183344,18.166669],[49.116672,18.616668],[52.00001,19.000003],[52.782184,17.349742],[53.108573,16.651051]]]}}, +{"type":"Feature","id":"ZAF","properties":{"name":"South Africa"},"geometry":{"type":"Polygon","coordinates":[[[31.521001,-29.257387],[31.325561,-29.401978],[30.901763,-29.909957],[30.622813,-30.423776],[30.055716,-31.140269],[28.925553,-32.172041],[28.219756,-32.771953],[27.464608,-33.226964],[26.419452,-33.61495],[25.909664,-33.66704],[25.780628,-33.944646],[25.172862,-33.796851],[24.677853,-33.987176],[23.594043,-33.794474],[22.988189,-33.916431],[22.574157,-33.864083],[21.542799,-34.258839],[20.689053,-34.417175],[20.071261,-34.795137],[19.616405,-34.819166],[19.193278,-34.462599],[18.855315,-34.444306],[18.424643,-33.997873],[18.377411,-34.136521],[18.244499,-33.867752],[18.25008,-33.281431],[17.92519,-32.611291],[18.24791,-32.429131],[18.221762,-31.661633],[17.566918,-30.725721],[17.064416,-29.878641],[17.062918,-29.875954],[16.344977,-28.576705],[16.824017,-28.082162],[17.218929,-28.355943],[17.387497,-28.783514],[17.836152,-28.856378],[18.464899,-29.045462],[19.002127,-28.972443],[19.894734,-28.461105],[19.895768,-24.76779],[20.165726,-24.917962],[20.758609,-25.868136],[20.66647,-26.477453],[20.889609,-26.828543],[21.605896,-26.726534],[22.105969,-26.280256],[22.579532,-25.979448],[22.824271,-25.500459],[23.312097,-25.26869],[23.73357,-25.390129],[24.211267,-25.670216],[25.025171,-25.71967],[25.664666,-25.486816],[25.765849,-25.174845],[25.941652,-24.696373],[26.485753,-24.616327],[26.786407,-24.240691],[27.11941,-23.574323],[28.017236,-22.827754],[29.432188,-22.091313],[29.839037,-22.102216],[30.322883,-22.271612],[30.659865,-22.151567],[31.191409,-22.25151],[31.670398,-23.658969],[31.930589,-24.369417],[31.752408,-25.484284],[31.837778,-25.843332],[31.333158,-25.660191],[31.04408,-25.731452],[30.949667,-26.022649],[30.676609,-26.398078],[30.685962,-26.743845],[31.282773,-27.285879],[31.86806,-27.177927],[32.071665,-26.73382],[32.83012,-26.742192],[32.580265,-27.470158],[32.462133,-28.301011],[32.203389,-28.752405],[31.521001,-29.257387]],[[28.978263,-28.955597],[28.5417,-28.647502],[28.074338,-28.851469],[27.532511,-29.242711],[26.999262,-29.875954],[27.749397,-30.645106],[28.107205,-30.545732],[28.291069,-30.226217],[28.8484,-30.070051],[29.018415,-29.743766],[29.325166,-29.257387],[28.978263,-28.955597]]]}}, +{"type":"Feature","id":"ZMB","properties":{"name":"Zambia"},"geometry":{"type":"Polygon","coordinates":[[[32.759375,-9.230599],[33.231388,-9.676722],[33.485688,-10.525559],[33.31531,-10.79655],[33.114289,-11.607198],[33.306422,-12.435778],[32.991764,-12.783871],[32.688165,-13.712858],[33.214025,-13.97186],[30.179481,-14.796099],[30.274256,-15.507787],[29.516834,-15.644678],[28.947463,-16.043051],[28.825869,-16.389749],[28.467906,-16.4684],[27.598243,-17.290831],[27.044427,-17.938026],[26.706773,-17.961229],[26.381935,-17.846042],[25.264226,-17.73654],[25.084443,-17.661816],[25.07695,-17.578823],[24.682349,-17.353411],[24.033862,-17.295843],[23.215048,-17.523116],[22.562478,-16.898451],[21.887843,-16.08031],[21.933886,-12.898437],[24.016137,-12.911046],[23.930922,-12.565848],[24.079905,-12.191297],[23.904154,-11.722282],[24.017894,-11.237298],[23.912215,-10.926826],[24.257155,-10.951993],[24.314516,-11.262826],[24.78317,-11.238694],[25.418118,-11.330936],[25.75231,-11.784965],[26.553088,-11.92444],[27.16442,-11.608748],[27.388799,-12.132747],[28.155109,-12.272481],[28.523562,-12.698604],[28.934286,-13.248958],[29.699614,-13.257227],[29.616001,-12.178895],[29.341548,-12.360744],[28.642417,-11.971569],[28.372253,-11.793647],[28.49607,-10.789884],[28.673682,-9.605925],[28.449871,-9.164918],[28.734867,-8.526559],[29.002912,-8.407032],[30.346086,-8.238257],[30.740015,-8.340007],[31.157751,-8.594579],[31.556348,-8.762049],[32.191865,-8.930359],[32.759375,-9.230599]]]}}, +{"type":"Feature","id":"ZWE","properties":{"name":"Zimbabwe"},"geometry":{"type":"Polygon","coordinates":[[[31.191409,-22.25151],[30.659865,-22.151567],[30.322883,-22.271612],[29.839037,-22.102216],[29.432188,-22.091313],[28.794656,-21.639454],[28.02137,-21.485975],[27.727228,-20.851802],[27.724747,-20.499059],[27.296505,-20.39152],[26.164791,-19.293086],[25.850391,-18.714413],[25.649163,-18.536026],[25.264226,-17.73654],[26.381935,-17.846042],[26.706773,-17.961229],[27.044427,-17.938026],[27.598243,-17.290831],[28.467906,-16.4684],[28.825869,-16.389749],[28.947463,-16.043051],[29.516834,-15.644678],[30.274256,-15.507787],[30.338955,-15.880839],[31.173064,-15.860944],[31.636498,-16.07199],[31.852041,-16.319417],[32.328239,-16.392074],[32.847639,-16.713398],[32.849861,-17.979057],[32.654886,-18.67209],[32.611994,-19.419383],[32.772708,-19.715592],[32.659743,-20.30429],[32.508693,-20.395292],[32.244988,-21.116489],[31.191409,-22.25151]]]}} +]} diff --git a/apps/CineMatch/scripts/seed-data.ts b/apps/CineMatch/scripts/seed-data.ts new file mode 100644 index 00000000..d3b4715f --- /dev/null +++ b/apps/CineMatch/scripts/seed-data.ts @@ -0,0 +1,162 @@ + +import { TMDB } from 'tmdb-ts'; +import fs from 'fs/promises'; +import path from 'path'; +import dotenv from 'dotenv'; + +// Load environment variables +dotenv.config(); + +const TMDB_ACCESS_TOKEN = process.env.NEXT_PUBLIC_TMDB_ACCESS_TOKEN; + +if (!TMDB_ACCESS_TOKEN) { + console.error('Error: NEXT_PUBLIC_TMDB_ACCESS_TOKEN is not defined in .env'); + process.exit(1); +} + +const tmdb = new TMDB(TMDB_ACCESS_TOKEN); + +const OUTPUT_FILE = path.join(process.cwd(), 'src/data/db.json'); + +// Configuration +// 200 pages * 20 results = 4000 items per category * 3 = 12,000 items total +const PAGES_TO_FETCH = 200; +const DELAY_MS = 250; // Increased delay to 250ms (4 req/s) to be safe with higher volume + +const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); + +// Helper for raw fetch (since tmdb-ts might miss discover.tv) +async function rawDiscoverTV(params: Record) { + const queryParams = new URLSearchParams(); + Object.entries(params).forEach(([key, value]) => { + queryParams.append(key, String(value)); + }); + + const response = await fetch( + `https://api.themoviedb.org/3/discover/tv?${queryParams.toString()}`, + { + headers: { + Authorization: `Bearer ${TMDB_ACCESS_TOKEN}`, + 'Content-Type': 'application/json', + }, + } + ); + + if (!response.ok) { + throw new Error(`TMDB API Error: ${response.status} ${response.statusText}`); + } + + return response.json(); +} + +async function fetchAllPages(fetcher: (page: number) => Promise, totalPages: number, label: string) { + let allResults: any[] = []; + console.log(`Starting fetch for ${label}...`); + + for (let page = 1; page <= totalPages; page++) { + try { + const response = await fetcher(page); + allResults = [...allResults, ...response.results]; + process.stdout.write(`\rFetched page ${page}/${totalPages} for ${label} (${allResults.length} items)`); + await sleep(DELAY_MS); + } catch (error) { + console.error(`\nError fetching page ${page} for ${label}:`, error); + } + } + console.log(`\nCompleted ${label}. Total: ${allResults.length}`); + return allResults; +} + +async function main() { + console.log('🚀 Starting Database Seed (Target: ~12,000 items)...'); + + // 1. Fetch Genres for mapping + console.log('Fetching Genres...'); + const movieGenres = await tmdb.genres.movies(); + const tvGenres = await tmdb.genres.tvShows(); + + const genreMap: Record = {}; + [...movieGenres.genres, ...tvGenres.genres].forEach(g => { + genreMap[g.id] = g.name; + }); + + // 2. Fetch Movies (Popularity Descending) + const movies = await fetchAllPages( + (page) => tmdb.discover.movie({ + page, + sort_by: 'popularity.desc', + 'vote_count.gte': 10 // Filter out very obscure items + }), + PAGES_TO_FETCH, + 'Movies' + ); + + // 3. Fetch TV Shows (Popularity Descending) + const tvShows = await fetchAllPages( + (page) => rawDiscoverTV({ + page, + sort_by: 'popularity.desc', + 'vote_count.gte': 10 + }), + PAGES_TO_FETCH, + 'TV Shows' + ); + + // 4. Fetch Anime (Animation + Japanese, Popularity Descending) + const anime = await fetchAllPages( + (page) => rawDiscoverTV({ + page, + with_genres: '16', + with_original_language: 'ja', + sort_by: 'popularity.desc', + 'vote_count.gte': 5 // Slightly lower threshold for Anime + }), + PAGES_TO_FETCH, + 'Anime' + ); + + // 5. Transform and Combine + console.log('Transforming data...'); + + const transform = (item: any, type: 'movie' | 'tv') => ({ + id: item.id, + title: item.title || item.name, + originalTitle: item.original_title || item.original_name, + overview: item.overview, + posterPath: item.poster_path, + backdropPath: item.backdrop_path, + mediaType: type, + genreIds: item.genre_ids, + genres: item.genre_ids?.map((id: number) => genreMap[id] || 'Unknown') || [], + releaseDate: item.release_date || item.first_air_date, + releaseYear: (item.release_date || item.first_air_date || '').split('-')[0], + originalLanguage: item.original_language, + voteAverage: item.vote_average, + voteCount: item.vote_count, + popularity: item.popularity + }); + + const db = { + movies: movies.map(m => transform(m, 'movie')), + tv: tvShows.map(t => transform(t, 'tv')), + anime: anime.map(a => transform(a, 'tv')), // Anime are usually TV shows + genres: genreMap, + metadata: { + generatedAt: new Date().toISOString(), + counts: { + movies: movies.length, + tv: tvShows.length, + anime: anime.length, + total: movies.length + tvShows.length + anime.length + } + } + }; + + // 6. Save to file + await fs.writeFile(OUTPUT_FILE, JSON.stringify(db, null, 2)); + console.log(`\n✅ Database saved to ${OUTPUT_FILE}`); + console.log(`Stats: ${db.metadata.counts.movies} Movies, ${db.metadata.counts.tv} TV Shows, ${db.metadata.counts.anime} Anime`); + console.log(`Total Items: ${db.metadata.counts.total}`); +} + +main().catch(console.error); diff --git a/apps/CineMatch/scripts/sync-embeddings.ts b/apps/CineMatch/scripts/sync-embeddings.ts new file mode 100644 index 00000000..1e9d345e --- /dev/null +++ b/apps/CineMatch/scripts/sync-embeddings.ts @@ -0,0 +1,340 @@ +#!/usr/bin/env npx tsx +/** + * Content Embedding Sync Pipeline + * + * This script fetches content from TMDB and generates embeddings for vector search. + * Uses the ruvector npm package for embedded vector database storage. + * Run periodically to keep embeddings up-to-date. + * + * Usage: + * npx tsx scripts/sync-embeddings.ts [options] + * + * Options: + * --full Sync all content (movies + TV shows) + * --movies Sync only movies + * --tv Sync only TV shows + * --trending Sync only trending content + * --limit N Limit to N items per category + */ + +// Load environment variables from .env.local +import { config } from 'dotenv'; +config({ path: '.env.local' }); + +import { TMDB } from 'tmdb-ts'; +import { VectorDB } from 'ruvector'; + +// Configuration +const TMDB_TOKEN = process.env.NEXT_PUBLIC_TMDB_ACCESS_TOKEN; +const OPENAI_API_KEY = process.env.OPENAI_API_KEY; +const STORAGE_PATH = process.env.RUVECTOR_STORAGE_PATH || './data/media-vectors.db'; +const EMBEDDING_DIMENSIONS = 768; + +if (!TMDB_TOKEN) { + console.error('Error: NEXT_PUBLIC_TMDB_ACCESS_TOKEN is required'); + process.exit(1); +} + +const tmdb = new TMDB(TMDB_TOKEN); + +interface ContentItem { + id: number; + title: string; + overview: string; + mediaType: 'movie' | 'tv'; + genreIds: number[]; + voteAverage?: number; + releaseDate?: string; + posterPath?: string | null; +} + +interface EmbeddingResult { + item: ContentItem; + embedding: Float32Array; + text: string; +} + +// Parse command line arguments +function parseArgs(): { mode: string; limit: number } { + const args = process.argv.slice(2); + let mode = 'trending'; + let limit = 100; + + for (let i = 0; i < args.length; i++) { + switch (args[i]) { + case '--full': + mode = 'full'; + break; + case '--movies': + mode = 'movies'; + break; + case '--tv': + mode = 'tv'; + break; + case '--trending': + mode = 'trending'; + break; + case '--limit': + limit = parseInt(args[++i], 10) || 100; + break; + } + } + + return { mode, limit }; +} + +// Fetch content from TMDB +async function fetchContent(mode: string, limit: number): Promise { + const items: ContentItem[] = []; + const pagesNeeded = Math.ceil(limit / 20); + + console.log(`Fetching ${mode} content (limit: ${limit})...`); + + if (mode === 'trending' || mode === 'full') { + for (let page = 1; page <= pagesNeeded && items.length < limit; page++) { + try { + const trending = await tmdb.trending.trending('all', 'week'); + for (const item of trending.results) { + if (items.length >= limit) break; + if (item.media_type === 'movie' || item.media_type === 'tv') { + items.push({ + id: item.id, + title: item.media_type === 'tv' ? (item as any).name : (item as any).title, + overview: item.overview || '', + mediaType: item.media_type, + genreIds: item.genre_ids || [], + voteAverage: item.vote_average, + releaseDate: item.media_type === 'tv' ? (item as any).first_air_date : (item as any).release_date, + posterPath: item.poster_path, + }); + } + } + } catch (error) { + console.error(`Error fetching trending page ${page}:`, error); + } + } + } + + if (mode === 'movies' || mode === 'full') { + for (let page = 1; page <= pagesNeeded && items.length < limit; page++) { + try { + const movies = await tmdb.movies.popular({ page }); + for (const movie of movies.results) { + if (items.length >= limit) break; + if (!items.some(i => i.id === movie.id && i.mediaType === 'movie')) { + items.push({ + id: movie.id, + title: movie.title, + overview: movie.overview || '', + mediaType: 'movie', + genreIds: movie.genre_ids || [], + voteAverage: movie.vote_average, + releaseDate: movie.release_date, + posterPath: movie.poster_path, + }); + } + } + } catch (error) { + console.error(`Error fetching movies page ${page}:`, error); + } + } + } + + if (mode === 'tv' || mode === 'full') { + for (let page = 1; page <= pagesNeeded && items.length < limit; page++) { + try { + const shows = await tmdb.tvShows.popular({ page }); + for (const show of shows.results) { + if (items.length >= limit) break; + if (!items.some(i => i.id === show.id && i.mediaType === 'tv')) { + items.push({ + id: show.id, + title: show.name, + overview: show.overview || '', + mediaType: 'tv', + genreIds: show.genre_ids || [], + voteAverage: show.vote_average, + releaseDate: show.first_air_date, + posterPath: show.poster_path, + }); + } + } + } catch (error) { + console.error(`Error fetching TV shows page ${page}:`, error); + } + } + } + + console.log(`Fetched ${items.length} content items`); + return items.slice(0, limit); +} + +// Generate text for embedding +function generateEmbeddingText(item: ContentItem): string { + const parts = [ + item.title, + item.overview, + `Type: ${item.mediaType}`, + ]; + + return parts.filter(Boolean).join('. '); +} + +// Generate mock embedding for testing (when no OpenAI key) +function generateMockEmbedding(text: string): Float32Array { + const embedding = new Float32Array(EMBEDDING_DIMENSIONS); + for (let i = 0; i < text.length; i++) { + embedding[(text.charCodeAt(i) + i) % EMBEDDING_DIMENSIONS] += 0.01; + } + // Normalize + let mag = 0; + for (let i = 0; i < embedding.length; i++) { + mag += embedding[i] * embedding[i]; + } + mag = Math.sqrt(mag); + if (mag > 0) { + for (let i = 0; i < embedding.length; i++) { + embedding[i] /= mag; + } + } + return embedding; +} + +// Generate embedding using OpenAI API +async function generateEmbedding(text: string): Promise { + if (!OPENAI_API_KEY) { + // Return mock embedding for testing + return generateMockEmbedding(text); + } + + try { + const response = await fetch('https://api.openai.com/v1/embeddings', { + method: 'POST', + headers: { + Authorization: `Bearer ${OPENAI_API_KEY}`, + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + model: 'text-embedding-3-small', + input: text, + dimensions: EMBEDDING_DIMENSIONS, + }), + }); + + if (!response.ok) { + throw new Error(`OpenAI API error: ${response.status}`); + } + + const data = await response.json(); + return new Float32Array(data.data[0].embedding); + } catch (error) { + console.error('Embedding generation error:', error); + return null; + } +} + +// Store embeddings in RuVector +async function storeEmbeddings(db: InstanceType, embeddings: EmbeddingResult[]): Promise { + let stored = 0; + + for (const { item, embedding } of embeddings) { + const id = `${item.mediaType}-${item.id}`; + + try { + await db.insert({ + id, + vector: embedding, + metadata: { + contentId: item.id, + mediaType: item.mediaType, + title: item.title, + overview: item.overview.slice(0, 500), + genreIds: item.genreIds, + voteAverage: item.voteAverage || 0, + releaseDate: item.releaseDate || '', + posterPath: item.posterPath || null, + }, + }); + stored++; + } catch (error) { + console.error(`Error storing ${id}:`, error); + } + } + + return stored; +} + +// Main sync function +async function main() { + const { mode, limit } = parseArgs(); + console.log(`\n=== Content Embedding Sync ===`); + console.log(`Mode: ${mode}`); + console.log(`Limit: ${limit}`); + console.log(`Storage: ${STORAGE_PATH}`); + console.log(`OpenAI: ${OPENAI_API_KEY ? 'Configured' : 'Not configured (using mock embeddings)'}\n`); + + // Initialize vector database + console.log('Initializing RuVector database...'); + const db = new VectorDB({ + dimensions: EMBEDDING_DIMENSIONS, + maxElements: 100000, + storagePath: STORAGE_PATH, + }); + + const existingCount = await db.len(); + console.log(`Existing vectors: ${existingCount}\n`); + + // Step 1: Fetch content + const content = await fetchContent(mode, limit); + if (content.length === 0) { + console.log('No content to process'); + return; + } + + // Step 2: Generate embeddings + console.log('\nGenerating embeddings...'); + const embeddings: EmbeddingResult[] = []; + let processed = 0; + + for (const item of content) { + const text = generateEmbeddingText(item); + const embedding = await generateEmbedding(text); + + if (embedding) { + embeddings.push({ + item, + embedding, + text, + }); + } + + processed++; + if (processed % 10 === 0) { + console.log(` Processed ${processed}/${content.length} items`); + } + + // Rate limiting for OpenAI API + if (OPENAI_API_KEY) { + await new Promise(resolve => setTimeout(resolve, 50)); + } + } + + console.log(`Generated ${embeddings.length} embeddings`); + + // Step 3: Store in RuVector + console.log('\nStoring embeddings in RuVector...'); + const stored = await storeEmbeddings(db, embeddings); + console.log(`Stored ${stored} embeddings`); + + // Get final count + const finalCount = await db.len(); + + // Summary + console.log('\n=== Sync Complete ==='); + console.log(`Content fetched: ${content.length}`); + console.log(`Embeddings generated: ${embeddings.length}`); + console.log(`Embeddings stored: ${stored}`); + console.log(`Total vectors in database: ${finalCount}`); +} + +main().catch(console.error); diff --git a/apps/CineMatch/scripts/test-agent.ts b/apps/CineMatch/scripts/test-agent.ts new file mode 100644 index 00000000..da74a4fc --- /dev/null +++ b/apps/CineMatch/scripts/test-agent.ts @@ -0,0 +1,30 @@ +import { getContentEmbedding } from '../src/lib/vector-db'; +import dotenv from 'dotenv'; + +dotenv.config(); + +async function testAgent() { + console.log('🧪 Testing AI Agent (Embedding Generation)...'); + + const text = "This is a test movie description about a space adventure."; + const start = Date.now(); + + try { + const embedding = await getContentEmbedding(text); + const duration = Date.now() - start; + + if (embedding && embedding.length > 0) { + console.log(`✅ Success! Generated embedding in ${duration}ms`); + console.log(`📊 Vector dimensions: ${embedding.length}`); + console.log(`🔑 API Keys present:`); + console.log(` - OpenAI: ${process.env.OPENAI_API_KEY ? 'Yes' : 'No'}`); + console.log(` - Gemini: ${process.env.GOOGLE_GENERATIVE_AI_API_KEY ? 'Yes' : 'No'}`); + } else { + console.error('❌ Failed to generate embedding (returned null or empty)'); + } + } catch (error) { + console.error('❌ Error during testing:', error); + } +} + +testAgent(); diff --git a/apps/CineMatch/scripts/test-sorting.ts b/apps/CineMatch/scripts/test-sorting.ts new file mode 100644 index 00000000..c732398e --- /dev/null +++ b/apps/CineMatch/scripts/test-sorting.ts @@ -0,0 +1,36 @@ + +import { localDB } from '../src/lib/local-db'; + +async function testSorting() { + console.log('Testing recommendation sorting...'); + + const recommendations = localDB.recommend({ + type: 'movie', + limit: 10 + }); + + console.log(`Got ${recommendations.length} recommendations.`); + + let isSorted = true; + for (let i = 0; i < recommendations.length - 1; i++) { + const current = recommendations[i]; + const next = recommendations[i + 1]; + + console.log(`#${i + 1}: ${current.title} - Vote Count: ${current.voteCount}`); + + if ((current.voteCount || 0) < (next.voteCount || 0)) { + isSorted = false; + console.error(`❌ Sorting violation at index ${i}: ${current.voteCount} < ${next.voteCount}`); + } + } + console.log(`#${recommendations.length}: ${recommendations[recommendations.length - 1].title} - Vote Count: ${recommendations[recommendations.length - 1].voteCount}`); + + if (isSorted) { + console.log('✅ Recommendations are correctly sorted by voteCount (descending).'); + } else { + console.error('❌ Recommendations are NOT sorted correctly.'); + process.exit(1); + } +} + +testSorting(); diff --git a/apps/CineMatch/src/app/api/discover/route.ts b/apps/CineMatch/src/app/api/discover/route.ts new file mode 100644 index 00000000..b0de5ff4 --- /dev/null +++ b/apps/CineMatch/src/app/api/discover/route.ts @@ -0,0 +1,99 @@ +/** + * Content Discovery API + * GET /api/discover + * + * Returns trending and popular content for browsing + */ + +import { NextRequest, NextResponse } from 'next/server'; +import { + getTrending, + getPopularMovies, + getPopularTVShows, + discoverMovies, + discoverTVShows, +} from '@/lib/tmdb'; + +export async function GET(request: NextRequest) { + const searchParams = request.nextUrl.searchParams; + const category = searchParams.get('category') || 'trending'; + const mediaType = searchParams.get('type') as 'movie' | 'tv' | 'all' || 'all'; + const page = parseInt(searchParams.get('page') || '1', 10); + const genres = searchParams.get('genres')?.split(',').map(Number).filter(Boolean); + const yearMin = searchParams.get('yearMin') ? parseInt(searchParams.get('yearMin')!, 10) : undefined; + const yearMax = searchParams.get('yearMax') ? parseInt(searchParams.get('yearMax')!, 10) : undefined; + const ratingMin = searchParams.get('ratingMin') ? parseFloat(searchParams.get('ratingMin')!) : undefined; + + try { + let results; + let totalPages = 1; + + switch (category) { + case 'trending': + results = await getTrending(mediaType, 'week'); + break; + + case 'popular': + if (mediaType === 'movie') { + const movies = await getPopularMovies(page); + results = movies.results; + totalPages = movies.totalPages; + } else if (mediaType === 'tv') { + const shows = await getPopularTVShows(page); + results = shows.results; + totalPages = shows.totalPages; + } else { + const [movies, shows] = await Promise.all([ + getPopularMovies(page), + getPopularTVShows(page), + ]); + results = [...movies.results, ...shows.results] + .sort((a, b) => b.popularity - a.popularity); + totalPages = Math.max(movies.totalPages, shows.totalPages); + } + break; + + case 'discover': + const discoverOptions = { genres, yearMin, yearMax, ratingMin, page }; + if (mediaType === 'movie') { + const movies = await discoverMovies(discoverOptions); + results = movies.results; + totalPages = movies.totalPages; + } else if (mediaType === 'tv') { + const shows = await discoverTVShows(discoverOptions); + results = shows.results; + totalPages = shows.totalPages; + } else { + const [movies, shows] = await Promise.all([ + discoverMovies(discoverOptions), + discoverTVShows(discoverOptions), + ]); + results = [...movies.results, ...shows.results] + .sort((a, b) => b.popularity - a.popularity); + totalPages = Math.max(movies.totalPages, shows.totalPages); + } + break; + + default: + return NextResponse.json( + { success: false, error: 'Invalid category' }, + { status: 400 } + ); + } + + return NextResponse.json({ + success: true, + category, + mediaType, + page, + totalPages, + results, + }); + } catch (error) { + console.error('Discovery error:', error); + return NextResponse.json( + { success: false, error: 'Failed to fetch content' }, + { status: 500 } + ); + } +} diff --git a/apps/CineMatch/src/app/api/feedback/route.ts b/apps/CineMatch/src/app/api/feedback/route.ts new file mode 100644 index 00000000..3b9cda46 --- /dev/null +++ b/apps/CineMatch/src/app/api/feedback/route.ts @@ -0,0 +1,28 @@ +import { NextRequest, NextResponse } from 'next/server'; +import { recordFeedback } from '@/lib/vector-search'; +import type { UserPreferences } from '@/store/match-store'; + +export async function POST(req: NextRequest) { + try { + const body = await req.json(); + const { userId, preferences, totalLikes, genreWeights, item, reward } = body; + + if (!userId || !preferences || !item || reward === undefined) { + return NextResponse.json({ error: 'Missing required parameters' }, { status: 400 }); + } + + await recordFeedback( + userId, + preferences as UserPreferences, + totalLikes || 0, + genreWeights || {}, + item, + reward + ); + + return NextResponse.json({ success: true }); + } catch (error) { + console.error('Feedback API Error:', error); + return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 }); + } +} diff --git a/apps/CineMatch/src/app/api/health/route.ts b/apps/CineMatch/src/app/api/health/route.ts new file mode 100644 index 00000000..712349c9 --- /dev/null +++ b/apps/CineMatch/src/app/api/health/route.ts @@ -0,0 +1,114 @@ +/** + * Health Check API + * GET /api/health + * + * Returns service health status for load balancers and monitoring + */ + +import { NextResponse } from 'next/server'; +import { tmdb } from '@/lib/tmdb'; +import { isVectorDbAvailable, getVectorCount, findSimilarContent } from '@/lib/vector-db'; + +interface HealthStatus { + status: 'healthy' | 'degraded' | 'unhealthy'; + version: string; + timestamp: string; + services: { + name: string; + status: 'up' | 'down' | 'degraded'; + latency_ms?: number; + error?: string; + }[]; + uptime_seconds: number; +} + +const startTime = Date.now(); + +export async function GET() { + const services: HealthStatus['services'] = []; + let overallStatus: HealthStatus['status'] = 'healthy'; + + // Check TMDB API + try { + const start = Date.now(); + if (tmdb) { + await tmdb.trending.trending('movie', 'day'); + services.push({ + name: 'tmdb', + status: 'up', + latency_ms: Date.now() - start, + }); + } else { + services.push({ + name: 'tmdb', + status: 'down', + error: 'Not configured', + }); + overallStatus = 'degraded'; + } + } catch (error) { + services.push({ + name: 'tmdb', + status: 'down', + error: error instanceof Error ? error.message : 'Unknown error', + }); + overallStatus = 'degraded'; + } + + // Check RuVector (embedded vector database) + try { + const start = Date.now(); + const isAvailable = await isVectorDbAvailable(); + + if (isAvailable) { + const vectorCount = await getVectorCount(); + services.push({ + name: 'ruvector', + status: 'up', + latency_ms: Date.now() - start, + }); + } else { + services.push({ + name: 'ruvector', + status: 'down', + error: 'Database not available', + }); + // RuVector being down is acceptable for basic functionality + } + } catch { + services.push({ + name: 'ruvector', + status: 'down', + error: 'Not available', + }); + // RuVector is optional, don't degrade status + } + + // Check OpenAI API (for embeddings) + const hasOpenAI = !!process.env.OPENAI_API_KEY; + services.push({ + name: 'openai', + status: hasOpenAI ? 'up' : 'down', + error: hasOpenAI ? undefined : 'Not configured', + }); + + // Determine overall status + const criticalDown = services.some( + s => s.name === 'tmdb' && s.status === 'down' + ); + if (criticalDown) { + overallStatus = 'unhealthy'; + } + + const healthStatus: HealthStatus = { + status: overallStatus, + version: process.env.npm_package_version || '0.1.0', + timestamp: new Date().toISOString(), + services, + uptime_seconds: Math.floor((Date.now() - startTime) / 1000), + }; + + const statusCode = overallStatus === 'unhealthy' ? 503 : 200; + + return NextResponse.json(healthStatus, { status: statusCode }); +} diff --git a/apps/CineMatch/src/app/api/movies/[id]/route.ts b/apps/CineMatch/src/app/api/movies/[id]/route.ts new file mode 100644 index 00000000..a043113e --- /dev/null +++ b/apps/CineMatch/src/app/api/movies/[id]/route.ts @@ -0,0 +1,39 @@ +/** + * Movie Details API + * GET /api/movies/[id] + * + * Returns full movie details with credits, videos, similar, and recommendations + */ + +import { NextRequest, NextResponse } from 'next/server'; +import { getFullMovieDetails } from '@/lib/tmdb'; + +export async function GET( + request: NextRequest, + { params }: { params: Promise<{ id: string }> } +) { + try { + const { id } = await params; + const movieId = parseInt(id, 10); + + if (isNaN(movieId)) { + return NextResponse.json( + { success: false, error: 'Invalid movie ID' }, + { status: 400 } + ); + } + + const data = await getFullMovieDetails(movieId); + + return NextResponse.json({ + success: true, + ...data, + }); + } catch (error) { + console.error('Movie details error:', error); + return NextResponse.json( + { success: false, error: 'Failed to fetch movie details' }, + { status: 500 } + ); + } +} diff --git a/apps/CineMatch/src/app/api/preferences/route.ts b/apps/CineMatch/src/app/api/preferences/route.ts new file mode 100644 index 00000000..fa287d2c --- /dev/null +++ b/apps/CineMatch/src/app/api/preferences/route.ts @@ -0,0 +1,218 @@ +/** + * User Preferences API + * GET/POST/DELETE /api/preferences + * + * Manages user preferences and feedback + */ + +import { NextRequest, NextResponse } from 'next/server'; +import { z } from 'zod'; +import { + getUserPreferences, + saveUserPreferences, + recordWatch, + recordFeedback, + updateGenrePreferences, + exportUserData, + deleteUserData, +} from '@/lib/preferences'; + +// Request schemas +const RecordWatchSchema = z.object({ + userId: z.string(), + contentId: z.number(), + mediaType: z.enum(['movie', 'tv']), + progress: z.number().min(0).max(1), + rating: z.number().min(1).max(10).optional(), +}); + +const RecordFeedbackSchema = z.object({ + userId: z.string(), + contentId: z.number(), + feedback: z.enum(['like', 'dislike']), + genres: z.array(z.number()).optional(), +}); + +const UpdateGenresSchema = z.object({ + userId: z.string(), + genres: z.array(z.number()), +}); + +/** + * GET - Retrieve user preferences + */ +export async function GET(request: NextRequest) { + const searchParams = request.nextUrl.searchParams; + const userId = searchParams.get('userId'); + + if (!userId) { + return NextResponse.json( + { success: false, error: 'userId is required' }, + { status: 400 } + ); + } + + try { + const prefs = await getUserPreferences(userId); + + return NextResponse.json({ + success: true, + preferences: { + userId: prefs.userId, + favoriteGenres: prefs.favoriteGenres, + likedCount: prefs.likedContent.length, + dislikedCount: prefs.dislikedContent.length, + watchHistoryCount: prefs.watchHistory.length, + updatedAt: prefs.updatedAt, + }, + }); + } catch (error) { + console.error('Error fetching preferences:', error); + return NextResponse.json( + { success: false, error: 'Failed to fetch preferences' }, + { status: 500 } + ); + } +} + +/** + * POST - Record user actions (watch, feedback, genre updates) + */ +export async function POST(request: NextRequest) { + try { + const body = await request.json(); + const action = body.action; + + switch (action) { + case 'watch': { + const data = RecordWatchSchema.parse(body); + await recordWatch( + data.userId, + data.contentId, + data.mediaType, + data.progress, + data.rating + ); + + // Update genre preferences based on watch behavior + if (data.progress >= 0.5) { + const content = { + id: data.contentId, + mediaType: data.mediaType, + genreIds: body.genres || [], + title: '', + overview: '', + posterPath: null, + backdropPath: null, + releaseDate: '', + voteAverage: 0, + voteCount: 0, + popularity: 0, + originalLanguage: 'en', + }; + await updateGenrePreferences( + data.userId, + content, + data.progress >= 0.9 ? 'complete' : 'watch', + data.rating + ); + } + + return NextResponse.json({ success: true, action: 'watch_recorded' }); + } + + case 'feedback': { + const data = RecordFeedbackSchema.parse(body); + await recordFeedback(data.userId, data.contentId, data.feedback); + + // Update genre preferences based on feedback + if (data.genres?.length) { + const content = { + id: data.contentId, + mediaType: 'movie' as const, + genreIds: data.genres, + title: '', + overview: '', + posterPath: null, + backdropPath: null, + releaseDate: '', + voteAverage: 0, + voteCount: 0, + popularity: 0, + originalLanguage: 'en', + }; + await updateGenrePreferences(data.userId, content, data.feedback); + } + + return NextResponse.json({ success: true, action: 'feedback_recorded' }); + } + + case 'update_genres': { + const data = UpdateGenresSchema.parse(body); + const prefs = await getUserPreferences(data.userId); + prefs.favoriteGenres = data.genres; + await saveUserPreferences(prefs); + + return NextResponse.json({ success: true, action: 'genres_updated' }); + } + + default: + return NextResponse.json( + { success: false, error: 'Invalid action' }, + { status: 400 } + ); + } + } catch (error) { + console.error('Error processing preference action:', error); + + if (error instanceof z.ZodError) { + return NextResponse.json( + { success: false, error: 'Invalid request', details: error.errors }, + { status: 400 } + ); + } + + return NextResponse.json( + { success: false, error: 'Failed to process action' }, + { status: 500 } + ); + } +} + +/** + * DELETE - Delete user data (GDPR compliance) + */ +export async function DELETE(request: NextRequest) { + const searchParams = request.nextUrl.searchParams; + const userId = searchParams.get('userId'); + const exportData = searchParams.get('export') === 'true'; + + if (!userId) { + return NextResponse.json( + { success: false, error: 'userId is required' }, + { status: 400 } + ); + } + + try { + let exportedData = null; + + if (exportData) { + exportedData = await exportUserData(userId); + } + + await deleteUserData(userId); + + return NextResponse.json({ + success: true, + message: 'User data deleted', + exportedData, + }); + } catch (error) { + console.error('Error deleting user data:', error); + return NextResponse.json( + { success: false, error: 'Failed to delete user data' }, + { status: 500 } + ); + } +} diff --git a/apps/CineMatch/src/app/api/recommend/route.ts b/apps/CineMatch/src/app/api/recommend/route.ts new file mode 100644 index 00000000..07545e68 --- /dev/null +++ b/apps/CineMatch/src/app/api/recommend/route.ts @@ -0,0 +1,28 @@ +import { NextRequest, NextResponse } from 'next/server'; +import { recommendForUser } from '@/lib/vector-search'; +import { useMatchStore } from '@/store/match-store'; // Note: we can't use hooks in API routes, we expect params in body +import type { UserPreferences } from '@/store/match-store'; + +export async function POST(req: NextRequest) { + try { + const body = await req.json(); + const { userId, preferences, totalLikes, genreWeights, page } = body; + + if (!userId || !preferences) { + return NextResponse.json({ error: 'Missing required parameters' }, { status: 400 }); + } + + const recommendations = await recommendForUser( + userId, + preferences as UserPreferences, + totalLikes || 0, + genreWeights || {}, + page || 1 + ); + + return NextResponse.json({ results: recommendations }); + } catch (error) { + console.error('Recommendation API Error:', error); + return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 }); + } +} diff --git a/apps/CineMatch/src/app/api/recommendations/route.ts b/apps/CineMatch/src/app/api/recommendations/route.ts new file mode 100644 index 00000000..b02a07bc --- /dev/null +++ b/apps/CineMatch/src/app/api/recommendations/route.ts @@ -0,0 +1,216 @@ +/** + * Personalized Recommendations API + * GET /api/recommendations + * POST /api/recommendations + * + * Returns personalized content recommendations based on user preferences + */ + +import { NextRequest, NextResponse } from 'next/server'; +import { z } from 'zod'; +import { getSimilarMovies, getSimilarTVShows, discoverMovies, discoverTVShows, getTrending } from '@/lib/tmdb'; +import { findSimilarContent } from '@/lib/vector-db'; +import type { MediaContent, Recommendation } from '@/types/media'; + +// Request schema for POST +const RecommendationsRequestSchema = z.object({ + userId: z.string().optional(), + basedOn: z.object({ + contentId: z.number(), + mediaType: z.enum(['movie', 'tv']), + }).optional(), + preferences: z.object({ + genres: z.array(z.number()).optional(), + likedContentIds: z.array(z.number()).optional(), + dislikedContentIds: z.array(z.number()).optional(), + preferenceVector: z.array(z.number()).optional(), + }).optional(), + limit: z.number().min(1).max(50).optional(), +}); + +/** + * GET - Simple recommendations based on query params + */ +export async function GET(request: NextRequest) { + const searchParams = request.nextUrl.searchParams; + const contentId = searchParams.get('contentId') ? parseInt(searchParams.get('contentId')!, 10) : undefined; + const mediaType = searchParams.get('mediaType') as 'movie' | 'tv' | undefined; + const limit = parseInt(searchParams.get('limit') || '10', 10); + + try { + let recommendations: Recommendation[] = []; + + if (contentId && mediaType) { + // Content-based recommendations + const similar = mediaType === 'movie' + ? await getSimilarMovies(contentId, 1) + : await getSimilarTVShows(contentId, 1); + + recommendations = similar.slice(0, limit).map((content, index) => ({ + content, + score: 1 - (index * 0.05), // Decreasing score + reasons: [`Similar to content you're viewing`], + basedOn: { + type: 'similar' as const, + references: [contentId.toString()], + }, + })); + } else { + // Default: trending content + const trending = await getTrending('all', 'week'); + recommendations = trending.slice(0, limit).map((content, index) => ({ + content, + score: 1 - (index * 0.02), + reasons: ['Trending this week'], + basedOn: { + type: 'trending' as const, + references: [], + }, + })); + } + + return NextResponse.json({ + success: true, + recommendations, + }); + } catch (error) { + console.error('Recommendations error:', error); + return NextResponse.json( + { success: false, error: 'Failed to get recommendations' }, + { status: 500 } + ); + } +} + +/** + * POST - Advanced personalized recommendations + */ +export async function POST(request: NextRequest) { + try { + const body = await request.json(); + const { basedOn, preferences, limit = 20 } = RecommendationsRequestSchema.parse(body); + + const recommendations: Recommendation[] = []; + const seen = new Set(); + + // Strategy 1: Similar content (if basedOn provided) + if (basedOn) { + try { + // TMDB similar + const tmdbSimilar = basedOn.mediaType === 'movie' + ? await getSimilarMovies(basedOn.contentId) + : await getSimilarTVShows(basedOn.contentId); + + for (const content of tmdbSimilar.slice(0, 8)) { + const key = `${content.mediaType}-${content.id}`; + if (!seen.has(key)) { + seen.add(key); + recommendations.push({ + content, + score: 0.9, + reasons: ['Similar to content you enjoyed'], + basedOn: { type: 'similar', references: [basedOn.contentId.toString()] }, + }); + } + } + + // Vector-based similar + try { + const vectorSimilar = await findSimilarContent(basedOn.contentId, basedOn.mediaType, 10); + for (const { content, score } of vectorSimilar) { + const key = `${content.mediaType}-${content.id}`; + if (!seen.has(key)) { + seen.add(key); + recommendations.push({ + content, + score: score * 0.85, + reasons: ['Semantically similar'], + basedOn: { type: 'similar', references: [basedOn.contentId.toString()] }, + }); + } + } + } catch { + // Vector search not available + } + + } catch (error) { + console.error('Similar content search failed:', error); + } + } + + // Strategy 2: Genre-based discovery (if preferences provided) + if (preferences?.genres?.length) { + try { + const [movieRecs, tvRecs] = await Promise.all([ + discoverMovies({ genres: preferences.genres, ratingMin: 7 }), + discoverTVShows({ genres: preferences.genres, ratingMin: 7 }), + ]); + + for (const content of [...movieRecs.results, ...tvRecs.results].slice(0, 10)) { + const key = `${content.mediaType}-${content.id}`; + if (!seen.has(key)) { + seen.add(key); + recommendations.push({ + content, + score: 0.75, + reasons: ['Matches your favorite genres'], + basedOn: { type: 'genre', references: preferences.genres.map(String) }, + }); + } + } + } catch (error) { + console.error('Genre discovery failed:', error); + } + } + + // Strategy 3: Fill with trending (if not enough recommendations) + if (recommendations.length < limit) { + try { + const trending = await getTrending('all', 'week'); + for (const content of trending) { + const key = `${content.mediaType}-${content.id}`; + if (!seen.has(key) && recommendations.length < limit) { + seen.add(key); + recommendations.push({ + content, + score: 0.5 - (recommendations.length * 0.01), + reasons: ['Trending now'], + basedOn: { type: 'trending', references: [] }, + }); + } + } + } catch (error) { + console.error('Trending fetch failed:', error); + } + } + + // Sort by score and limit + const sortedRecommendations = recommendations + .sort((a, b) => b.score - a.score) + .slice(0, limit); + + return NextResponse.json({ + success: true, + recommendations: sortedRecommendations, + strategies: { + similar: sortedRecommendations.filter(r => r.basedOn?.type === 'similar').length, + genre: sortedRecommendations.filter(r => r.basedOn?.type === 'genre').length, + trending: sortedRecommendations.filter(r => r.basedOn?.type === 'trending').length, + }, + }); + } catch (error) { + console.error('Recommendations error:', error); + + if (error instanceof z.ZodError) { + return NextResponse.json( + { success: false, error: 'Invalid request', details: error.errors }, + { status: 400 } + ); + } + + return NextResponse.json( + { success: false, error: 'Failed to get recommendations' }, + { status: 500 } + ); + } +} diff --git a/apps/CineMatch/src/app/api/search/route.ts b/apps/CineMatch/src/app/api/search/route.ts new file mode 100644 index 00000000..b44036bd --- /dev/null +++ b/apps/CineMatch/src/app/api/search/route.ts @@ -0,0 +1,110 @@ +/** + * Natural Language Search API + * POST /api/search + * + * Accepts natural language queries and returns semantically matched content + */ + +import { NextRequest, NextResponse } from 'next/server'; +import { z } from 'zod'; +import { semanticSearch, parseSearchQuery, explainRecommendation } from '@/lib/natural-language-search'; + +// Request schema +const SearchRequestSchema = z.object({ + query: z.string().min(1).max(500), + filters: z.object({ + mediaType: z.enum(['movie', 'tv', 'all']).optional(), + genres: z.array(z.number()).optional(), + yearRange: z.object({ + min: z.number().optional(), + max: z.number().optional(), + }).optional(), + ratingMin: z.number().min(0).max(10).optional(), + }).optional(), + preferences: z.array(z.number()).optional(), // User's preferred genre IDs + explain: z.boolean().optional(), // Whether to include AI explanations + limit: z.number().min(1).max(50).optional(), +}); + +export async function POST(request: NextRequest) { + try { + const body = await request.json(); + const { query, filters, preferences, explain, limit = 20 } = SearchRequestSchema.parse(body); + + // Perform semantic search + const results = await semanticSearch(query, preferences); + + // Apply limit + const limitedResults = results.slice(0, limit); + + // Add explanations if requested + let finalResults = limitedResults; + if (explain) { + finalResults = await Promise.all( + limitedResults.map(async (result) => ({ + ...result, + explanation: await explainRecommendation( + result.content, + query, + result.matchReasons + ), + })) + ); + } + + // Parse query to return intent (for debugging/UI) + const parsedQuery = await parseSearchQuery(query); + + return NextResponse.json({ + success: true, + query: query, + intent: parsedQuery.intent, + results: finalResults, + totalResults: results.length, + }); + } catch (error) { + console.error('Search error:', error); + + if (error instanceof z.ZodError) { + return NextResponse.json( + { success: false, error: 'Invalid request', details: error.errors }, + { status: 400 } + ); + } + + return NextResponse.json( + { success: false, error: 'Search failed' }, + { status: 500 } + ); + } +} + +// GET endpoint for simple text searches +export async function GET(request: NextRequest) { + const searchParams = request.nextUrl.searchParams; + const query = searchParams.get('q'); + + if (!query) { + return NextResponse.json( + { success: false, error: 'Query parameter "q" is required' }, + { status: 400 } + ); + } + + try { + const results = await semanticSearch(query); + + return NextResponse.json({ + success: true, + query, + results: results.slice(0, 20), + totalResults: results.length, + }); + } catch (error) { + console.error('Search error:', error); + return NextResponse.json( + { success: false, error: 'Search failed' }, + { status: 500 } + ); + } +} diff --git a/apps/CineMatch/src/app/api/tv/[id]/route.ts b/apps/CineMatch/src/app/api/tv/[id]/route.ts new file mode 100644 index 00000000..381813e2 --- /dev/null +++ b/apps/CineMatch/src/app/api/tv/[id]/route.ts @@ -0,0 +1,39 @@ +/** + * TV Show Details API + * GET /api/tv/[id] + * + * Returns full TV show details with credits, videos, similar, and recommendations + */ + +import { NextRequest, NextResponse } from 'next/server'; +import { getFullTVShowDetails } from '@/lib/tmdb'; + +export async function GET( + request: NextRequest, + { params }: { params: Promise<{ id: string }> } +) { + try { + const { id } = await params; + const showId = parseInt(id, 10); + + if (isNaN(showId)) { + return NextResponse.json( + { success: false, error: 'Invalid TV show ID' }, + { status: 400 } + ); + } + + const data = await getFullTVShowDetails(showId); + + return NextResponse.json({ + success: true, + ...data, + }); + } catch (error) { + console.error('TV show details error:', error); + return NextResponse.json( + { success: false, error: 'Failed to fetch TV show details' }, + { status: 500 } + ); + } +} diff --git a/apps/CineMatch/src/app/globals.css b/apps/CineMatch/src/app/globals.css new file mode 100644 index 00000000..ea309e2b --- /dev/null +++ b/apps/CineMatch/src/app/globals.css @@ -0,0 +1,86 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +:root { + --foreground-rgb: 0, 0, 0; + --background-start-rgb: 250, 250, 250; + --background-end-rgb: 255, 255, 255; +} + +@media (prefers-color-scheme: dark) { + :root { + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 10, 10, 15; + --background-end-rgb: 20, 20, 30; + } +} + +body { + color: rgb(var(--foreground-rgb)); + background: linear-gradient( + to bottom, + transparent, + rgb(var(--background-end-rgb)) + ) + rgb(var(--background-start-rgb)); + min-height: 100vh; +} + +/* Custom scrollbar */ +::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +::-webkit-scrollbar-track { + background: transparent; +} + +::-webkit-scrollbar-thumb { + background: rgba(128, 128, 128, 0.4); + border-radius: 4px; +} + +::-webkit-scrollbar-thumb:hover { + background: rgba(128, 128, 128, 0.6); +} + +/* Animations */ +@keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } +} + +@keyframes slideUp { + from { + opacity: 0; + transform: translateY(10px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.animate-fade-in { + animation: fadeIn 0.3s ease-out; +} + +.animate-slide-up { + animation: slideUp 0.4s ease-out; +} + +/* Hide scrollbar but keep functionality */ +.scrollbar-hide { + -ms-overflow-style: none; + scrollbar-width: none; +} + +.scrollbar-hide::-webkit-scrollbar { + display: none; +} diff --git a/apps/CineMatch/src/app/history/page.tsx b/apps/CineMatch/src/app/history/page.tsx new file mode 100644 index 00000000..bec62e36 --- /dev/null +++ b/apps/CineMatch/src/app/history/page.tsx @@ -0,0 +1,73 @@ +'use client'; + +import { useState } from 'react'; +import { useMatchStore } from '@/store/match-store'; +import { ArrowLeft } from 'lucide-react'; +import Link from 'next/link'; +import { motion, AnimatePresence } from 'framer-motion'; +import { DetailsModal } from '@/components/DetailsModal'; +import type { MediaContent } from '@/types/media'; + +export default function HistoryPage() { + const { likedContent } = useMatchStore(); + const [selectedContent, setSelectedContent] = useState(null); + + return ( +
+
+ + + +

Your History

+
+ + {likedContent.length === 0 ? ( +
+

No liked content yet

+

Start swiping to build your history!

+
+ ) : ( +
+ {likedContent.slice().reverse().map((item) => ( + setSelectedContent(item)} + whileHover={{ scale: 1.02 }} + whileTap={{ scale: 0.98 }} + > + {item.posterPath ? ( + {item.title} + ) : ( +
+ {item.title} +
+ )} +
+

{item.title}

+

+ {new Date(item.releaseDate || '').getFullYear() || 'N/A'} +

+
+
+ ))} +
+ )} + + + {selectedContent && ( + setSelectedContent(null)} + /> + )} + +
+ ); +} diff --git a/apps/CineMatch/src/app/layout.tsx b/apps/CineMatch/src/app/layout.tsx new file mode 100644 index 00000000..b1e73044 --- /dev/null +++ b/apps/CineMatch/src/app/layout.tsx @@ -0,0 +1,43 @@ +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; +import { Providers } from './providers'; + +const inter = Inter({ subsets: ['latin'] }); + +export const metadata: Metadata = { + title: 'CineMatch', + description: 'Discover movies and TV shows through natural language prompts and personalized recommendations', + openGraph: { + title: 'CineMatch', + description: 'Find your next favorite movie or show with natural language search', + type: 'website', + }, +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + {/* ARW Discovery */} + + + + + {children} + + + ); +} diff --git a/apps/CineMatch/src/app/page.tsx b/apps/CineMatch/src/app/page.tsx new file mode 100644 index 00000000..b0bf82c1 --- /dev/null +++ b/apps/CineMatch/src/app/page.tsx @@ -0,0 +1,377 @@ +'use client'; + +import { useEffect, useState, useRef } from 'react'; +import { localDB } from '@/lib/local-db'; +import { useMatchStore } from '@/store/match-store'; +import { Onboarding } from '@/components/Onboarding'; +import { SwipeCard } from '@/components/SwipeCard'; +import { DetailsModal } from '@/components/DetailsModal'; +import { CountrySelector } from '@/components/CountrySelector'; +import { AnimatePresence } from 'framer-motion'; +import { getSimilarMovies, getSimilarTVShows, getTrending, discoverMovies, discoverTVShows } from '@/lib/tmdb'; + +import Link from 'next/link'; +import { Info, RotateCcw, History } from 'lucide-react'; + +export default function Home() { + const { + preferences, + recommendations, + currentIndex, + page, + lastLikedContentId, // Added lastLikedContentId + setPreferences, // Added setPreferences + setRecommendations, + appendRecommendations, + likeContent, + dislikeContent, + nextCard, + reset, + incrementPage, // Added incrementPage + } = useMatchStore(); + + const [isLoading, setIsLoading] = useState(false); + const [isFetchingMore, setIsFetchingMore] = useState(false); + const [isMounted, setIsMounted] = useState(false); + const [showDetails, setShowDetails] = useState(false); + + useEffect(() => { + setIsMounted(true); + }, []); + + // Strict Content Filter + const applyStrictFilter = (results: any[], prefs: typeof preferences) => { + if (!prefs.contentType) return results; + + return results.filter(item => { + // 1. Content Type & Language/Genre Exclusions + switch (prefs.contentType) { + case 'anime': + // Must be Animation (16) AND Japanese (ja) + if (!item.genreIds?.includes(16) || item.originalLanguage !== 'ja') return false; + break; + case 'animation': + // Must be Animation (16) AND NOT Japanese/Korean + if (!item.genreIds?.includes(16) || ['ja', 'ko'].includes(item.originalLanguage)) return false; + break; + case 'tv': + // Must be TV AND NOT Animation (16) + if (item.mediaType !== 'tv' || item.genreIds?.includes(16)) return false; + break; + case 'movie': + // Must be Movie AND NOT Animation (16) + if (item.mediaType !== 'movie' || item.genreIds?.includes(16)) return false; + break; + case 'spectacle': + // Must be Comedy (35) or Music (10402) + if (!item.genreIds?.some((id: number) => [35, 10402].includes(id))) return false; + break; + } + + // 2. Era Filtering + // 2. Era Filtering + if (prefs.era === 'new') { + // New = After 2014 (2015+) + // New = After 2014 (2015+) + const yearStr = item.release_date?.split('-')[0] || item.first_air_date?.split('-')[0] || item.releaseDate?.split('-')[0] || item.firstAirDate?.split('-')[0] || item.releaseYear || '0'; + const year = parseInt(yearStr); + if (year < 2015) { + console.log(`[StrictFilter] Dropped ${item.title || item.name} (${year}) - Too Old for New Era`); + return false; + } + } else if (prefs.era === 'classic') { + // Archives = Before 2015 (<= 2014) + // Archives = Before 2015 (<= 2014) + const yearStr = item.release_date?.split('-')[0] || item.first_air_date?.split('-')[0] || item.releaseDate?.split('-')[0] || item.firstAirDate?.split('-')[0] || item.releaseYear || '9999'; + const year = parseInt(yearStr); + if (year >= 2015) { + console.log(`[StrictFilter] Dropped ${item.title || item.name} (${year}) - Too New for Classic Era`); + return false; + } + } + + return true; + }); + }; + + + // Helper to fetch recommendations + // Helper to fetch recommendations + const fetchRecommendations = async (pageNum: number) => { + const { totalLikes, genreWeights } = useMatchStore.getState(); + + // We need a persistent user ID. For now, we'll generate one if not present in localStorage + // In a real app, this would come from auth. + let userId = localStorage.getItem('movie-match-user-id'); + if (!userId) { + userId = crypto.randomUUID(); + localStorage.setItem('movie-match-user-id', userId); + } + + const response = await fetch('/api/recommend', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + userId, + preferences, + totalLikes, + genreWeights, + page: pageNum + }) + }); + + if (!response.ok) { + throw new Error('Failed to fetch recommendations'); + } + + const data = await response.json(); + return data.results; + }; + + // Feedback wrapper + const handleFeedback = async (item: any, reward: number) => { + const { totalLikes, genreWeights } = useMatchStore.getState(); + let userId = localStorage.getItem('movie-match-user-id'); + if (!userId) return; // Should exist by now + + try { + await fetch('/api/feedback', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + userId, + preferences, + totalLikes, + genreWeights, + item, + reward + }) + }); + } catch (e) { + console.error('Failed to record feedback', e); + } + }; + + // Initial fetch after onboarding + useEffect(() => { + const init = async () => { + if (isMounted && preferences.isOnboarded && recommendations.length === 0) { + setIsLoading(true); + try { + const results = await fetchRecommendations(1); + setRecommendations(results); + } catch (error) { + console.error('Failed to fetch recommendations:', error instanceof Error ? error.message : JSON.stringify(error)); + } finally { + setIsLoading(false); + } + } + }; + init(); + }, [isMounted, preferences.isOnboarded, recommendations.length, setRecommendations]); + + const [hasMore, setHasMore] = useState(true); + const isFetchingRef = useRef(false); + + // Infinite Scroll: Fetch more when running low + useEffect(() => { + const checkAndFetchMore = async () => { + const remainingCards = recommendations.length - currentIndex; + + // Only fetch if: + // 1. We have few cards left (< 3) + // 2. We are not already fetching (check ref) + // 3. We have initial recommendations (length > 0) + // 4. We haven't reached the page limit (50) + // 5. We believe there is more content (hasMore) + if (isMounted && remainingCards < 3 && !isFetchingRef.current && recommendations.length > 0 && page < 50 && hasMore) { + isFetchingRef.current = true; + setIsFetchingMore(true); + console.log('Fetching more recommendations... Page:', page + 1); + try { + const newResults = await fetchRecommendations(page + 1); + + // Stop if no new results found + if (newResults.length === 0) { + console.log('No more results found from API.'); + setHasMore(false); + return; + } + + // Filter out duplicates + const existingIds = new Set(recommendations.map(r => r.id)); + const filteredNewResults = newResults.filter((r: any) => !existingIds.has(r.id)); + + if (filteredNewResults.length > 0) { + appendRecommendations(filteredNewResults); + // Note: appendRecommendations already increments the page in the store + } else { + console.log('All fetched results were duplicates. Stopping fetch to prevent loop.'); + setHasMore(false); + } + } catch (error) { + console.error('Failed to fetch more recommendations:', error instanceof Error ? error.message : JSON.stringify(error)); + } finally { + setIsFetchingMore(false); + isFetchingRef.current = false; + } + } + }; + + checkAndFetchMore(); + }, [isMounted, currentIndex, recommendations.length, page, appendRecommendations, hasMore]); + + if (!isMounted) { + return null; // Prevent hydration mismatch + } + + if (!preferences.isOnboarded) { + return ( +
+ +
+ ); + } + + if (isLoading) { + return ( +
+
Finding your match...
+
+ ); + } + + const currentCard = recommendations[currentIndex]; + + if (!currentCard) { + // Check if we've reached the end + if (!hasMore || page >= 50) { + return ( +
+
+

+ You've seen it all! +

+

+ We've run out of recommendations based on your current preferences. +

+ +
+
+ ); + } + + return ( +
+
+

Loading more...

+
+
+
+ ); + } + + + const handleReset = () => { + reset(); + window.location.reload(); // Hard reload to clear any local state/cache issues + }; + + return ( +
+ {/* Header */} +
+ +
+ Logo +

+ CineMatch +

+
+ +
+ + {/* Card Deck */} +
+
+ + { + dislikeContent(currentCard.id); + handleFeedback(currentCard, 0); + }} + onSwipeRight={() => { + likeContent(currentCard); + handleFeedback(currentCard, 1); + }} + onSwipeUp={() => setShowDetails(true)} + /> + +
+
+ + {/* Controls */} +
+ + + + + + + + + +
+ + {/* Details Modal */} + + {showDetails && ( + setShowDetails(false)} + /> + )} + +
+ ); +} diff --git a/apps/CineMatch/src/app/providers.tsx b/apps/CineMatch/src/app/providers.tsx new file mode 100644 index 00000000..9ede6c3a --- /dev/null +++ b/apps/CineMatch/src/app/providers.tsx @@ -0,0 +1,22 @@ +'use client'; + +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; +import { useState, type ReactNode } from 'react'; + +export function Providers({ children }: { children: ReactNode }) { + const [queryClient] = useState( + () => + new QueryClient({ + defaultOptions: { + queries: { + staleTime: 60 * 1000, // 1 minute + refetchOnWindowFocus: false, + }, + }, + }) + ); + + return ( + {children} + ); +} diff --git a/apps/CineMatch/src/components/CountrySelector.tsx b/apps/CineMatch/src/components/CountrySelector.tsx new file mode 100644 index 00000000..7815efc6 --- /dev/null +++ b/apps/CineMatch/src/components/CountrySelector.tsx @@ -0,0 +1,107 @@ +'use client'; + +import React, { useState, useMemo } from 'react'; +import { Map as MapIcon, X } from 'lucide-react'; +import { useMatchStore } from '@/store/match-store'; +import dynamic from 'next/dynamic'; + +// Dynamically import LeafletMap to avoid SSR issues +const LeafletMap = dynamic(() => import('./LeafletMap'), { + ssr: false, + loading: () =>
Loading Map...
+}); + +// Full ISO 3166-1 alpha-2 Country List +const COUNTRIES = [ + { "name": "Afghanistan", "code": "AF" }, { "name": "Åland Islands", "code": "AX" }, { "name": "Albania", "code": "AL" }, { "name": "Algeria", "code": "DZ" }, { "name": "American Samoa", "code": "AS" }, { "name": "Andorra", "code": "AD" }, { "name": "Angola", "code": "AO" }, { "name": "Anguilla", "code": "AI" }, { "name": "Antarctica", "code": "AQ" }, { "name": "Antigua and Barbuda", "code": "AG" }, { "name": "Argentina", "code": "AR" }, { "name": "Armenia", "code": "AM" }, { "name": "Aruba", "code": "AW" }, { "name": "Australia", "code": "AU" }, { "name": "Austria", "code": "AT" }, { "name": "Azerbaijan", "code": "AZ" }, { "name": "Bahamas", "code": "BS" }, { "name": "Bahrain", "code": "BH" }, { "name": "Bangladesh", "code": "BD" }, { "name": "Barbados", "code": "BB" }, { "name": "Belarus", "code": "BY" }, { "name": "Belgium", "code": "BE" }, { "name": "Belize", "code": "BZ" }, { "name": "Benin", "code": "BJ" }, { "name": "Bermuda", "code": "BM" }, { "name": "Bhutan", "code": "BT" }, { "name": "Bolivia", "code": "BO" }, { "name": "Bonaire, Sint Eustatius and Saba", "code": "BQ" }, { "name": "Bosnia and Herzegovina", "code": "BA" }, { "name": "Botswana", "code": "BW" }, { "name": "Bouvet Island", "code": "BV" }, { "name": "Brazil", "code": "BR" }, { "name": "British Indian Ocean Territory", "code": "IO" }, { "name": "Brunei Darussalam", "code": "BN" }, { "name": "Bulgaria", "code": "BG" }, { "name": "Burkina Faso", "code": "BF" }, { "name": "Burundi", "code": "BI" }, { "name": "Cabo Verde", "code": "CV" }, { "name": "Cambodia", "code": "KH" }, { "name": "Cameroon", "code": "CM" }, { "name": "Canada", "code": "CA" }, { "name": "Cayman Islands", "code": "KY" }, { "name": "Central African Republic", "code": "CF" }, { "name": "Chad", "code": "TD" }, { "name": "Chile", "code": "CL" }, { "name": "China", "code": "CN" }, { "name": "Christmas Island", "code": "CX" }, { "name": "Cocos (Keeling) Islands", "code": "CC" }, { "name": "Colombia", "code": "CO" }, { "name": "Comoros", "code": "KM" }, { "name": "Congo", "code": "CG" }, { "name": "Congo, Democratic Republic of the", "code": "CD" }, { "name": "Cook Islands", "code": "CK" }, { "name": "Costa Rica", "code": "CR" }, { "name": "Côte d'Ivoire", "code": "CI" }, { "name": "Croatia", "code": "HR" }, { "name": "Cuba", "code": "CU" }, { "name": "Curaçao", "code": "CW" }, { "name": "Cyprus", "code": "CY" }, { "name": "Czechia", "code": "CZ" }, { "name": "Denmark", "code": "DK" }, { "name": "Djibouti", "code": "DJ" }, { "name": "Dominica", "code": "DM" }, { "name": "Dominican Republic", "code": "DO" }, { "name": "Ecuador", "code": "EC" }, { "name": "Egypt", "code": "EG" }, { "name": "El Salvador", "code": "SV" }, { "name": "Equatorial Guinea", "code": "GQ" }, { "name": "Eritrea", "code": "ER" }, { "name": "Estonia", "code": "EE" }, { "name": "Eswatini", "code": "SZ" }, { "name": "Ethiopia", "code": "ET" }, { "name": "Falkland Islands (Malvinas)", "code": "FK" }, { "name": "Faroe Islands", "code": "FO" }, { "name": "Fiji", "code": "FJ" }, { "name": "Finland", "code": "FI" }, { "name": "France", "code": "FR" }, { "name": "French Guiana", "code": "GF" }, { "name": "French Polynesia", "code": "PF" }, { "name": "French Southern Territories", "code": "TF" }, { "name": "Gabon", "code": "GA" }, { "name": "Gambia", "code": "GM" }, { "name": "Georgia", "code": "GE" }, { "name": "Germany", "code": "DE" }, { "name": "Ghana", "code": "GH" }, { "name": "Gibraltar", "code": "GI" }, { "name": "Greece", "code": "GR" }, { "name": "Greenland", "code": "GL" }, { "name": "Grenada", "code": "GD" }, { "name": "Guadeloupe", "code": "GP" }, { "name": "Guam", "code": "GU" }, { "name": "Guatemala", "code": "GT" }, { "name": "Guernsey", "code": "GG" }, { "name": "Guinea", "code": "GN" }, { "name": "Guinea-Bissau", "code": "GW" }, { "name": "Guyana", "code": "GY" }, { "name": "Haiti", "code": "HT" }, { "name": "Heard Island and McDonald Islands", "code": "HM" }, { "name": "Holy See", "code": "VA" }, { "name": "Honduras", "code": "HN" }, { "name": "Hong Kong", "code": "HK" }, { "name": "Hungary", "code": "HU" }, { "name": "Iceland", "code": "IS" }, { "name": "India", "code": "IN" }, { "name": "Indonesia", "code": "ID" }, { "name": "Iran", "code": "IR" }, { "name": "Iraq", "code": "IQ" }, { "name": "Ireland", "code": "IE" }, { "name": "Isle of Man", "code": "IM" }, { "name": "Israel", "code": "IL" }, { "name": "Italy", "code": "IT" }, { "name": "Jamaica", "code": "JM" }, { "name": "Japan", "code": "JP" }, { "name": "Jersey", "code": "JE" }, { "name": "Jordan", "code": "JO" }, { "name": "Kazakhstan", "code": "KZ" }, { "name": "Kenya", "code": "KE" }, { "name": "Kiribati", "code": "KI" }, { "name": "Korea, Democratic People's Republic of", "code": "KP" }, { "name": "Korea, Republic of", "code": "KR" }, { "name": "Kuwait", "code": "KW" }, { "name": "Kyrgyzstan", "code": "KG" }, { "name": "Lao People's Democratic Republic", "code": "LA" }, { "name": "Latvia", "code": "LV" }, { "name": "Lebanon", "code": "LB" }, { "name": "Lesotho", "code": "LS" }, { "name": "Liberia", "code": "LR" }, { "name": "Libya", "code": "LY" }, { "name": "Liechtenstein", "code": "LI" }, { "name": "Lithuania", "code": "LT" }, { "name": "Luxembourg", "code": "LU" }, { "name": "Macao", "code": "MO" }, { "name": "Madagascar", "code": "MG" }, { "name": "Malawi", "code": "MW" }, { "name": "Malaysia", "code": "MY" }, { "name": "Maldives", "code": "MV" }, { "name": "Mali", "code": "ML" }, { "name": "Malta", "code": "MT" }, { "name": "Marshall Islands", "code": "MH" }, { "name": "Martinique", "code": "MQ" }, { "name": "Mauritania", "code": "MR" }, { "name": "Mauritius", "code": "MU" }, { "name": "Mayotte", "code": "YT" }, { "name": "Mexico", "code": "MX" }, { "name": "Micronesia", "code": "FM" }, { "name": "Moldova", "code": "MD" }, { "name": "Monaco", "code": "MC" }, { "name": "Mongolia", "code": "MN" }, { "name": "Montenegro", "code": "ME" }, { "name": "Montserrat", "code": "MS" }, { "name": "Morocco", "code": "MA" }, { "name": "Mozambique", "code": "MZ" }, { "name": "Myanmar", "code": "MM" }, { "name": "Namibia", "code": "NA" }, { "name": "Nauru", "code": "NR" }, { "name": "Nepal", "code": "NP" }, { "name": "Netherlands", "code": "NL" }, { "name": "New Caledonia", "code": "NC" }, { "name": "New Zealand", "code": "NZ" }, { "name": "Nicaragua", "code": "NI" }, { "name": "Niger", "code": "NE" }, { "name": "Nigeria", "code": "NG" }, { "name": "Niue", "code": "NU" }, { "name": "Norfolk Island", "code": "NF" }, { "name": "North Macedonia", "code": "MK" }, { "name": "Northern Mariana Islands", "code": "MP" }, { "name": "Norway", "code": "NO" }, { "name": "Oman", "code": "OM" }, { "name": "Pakistan", "code": "PK" }, { "name": "Palau", "code": "PW" }, { "name": "Palestine, State of", "code": "PS" }, { "name": "Panama", "code": "PA" }, { "name": "Papua New Guinea", "code": "PG" }, { "name": "Paraguay", "code": "PY" }, { "name": "Peru", "code": "PE" }, { "name": "Philippines", "code": "PH" }, { "name": "Pitcairn", "code": "PN" }, { "name": "Poland", "code": "PL" }, { "name": "Portugal", "code": "PT" }, { "name": "Puerto Rico", "code": "PR" }, { "name": "Qatar", "code": "QA" }, { "name": "Réunion", "code": "RE" }, { "name": "Romania", "code": "RO" }, { "name": "Russian Federation", "code": "RU" }, { "name": "Rwanda", "code": "RW" }, { "name": "Saint Barthélemy", "code": "BL" }, { "name": "Saint Helena", "code": "SH" }, { "name": "Saint Kitts and Nevis", "code": "KN" }, { "name": "Saint Lucia", "code": "LC" }, { "name": "Saint Martin", "code": "MF" }, { "name": "Saint Pierre and Miquelon", "code": "PM" }, { "name": "Saint Vincent and the Grenadines", "code": "VC" }, { "name": "Samoa", "code": "WS" }, { "name": "San Marino", "code": "SM" }, { "name": "Sao Tome and Principe", "code": "ST" }, { "name": "Saudi Arabia", "code": "SA" }, { "name": "Senegal", "code": "SN" }, { "name": "Serbia", "code": "RS" }, { "name": "Seychelles", "code": "SC" }, { "name": "Sierra Leone", "code": "SL" }, { "name": "Singapore", "code": "SG" }, { "name": "Sint Maarten", "code": "SX" }, { "name": "Slovakia", "code": "SK" }, { "name": "Slovenia", "code": "SI" }, { "name": "Solomon Islands", "code": "SB" }, { "name": "Somalia", "code": "SO" }, { "name": "South Africa", "code": "ZA" }, { "name": "South Georgia", "code": "GS" }, { "name": "South Sudan", "code": "SS" }, { "name": "Spain", "code": "ES" }, { "name": "Sri Lanka", "code": "LK" }, { "name": "Sudan", "code": "SD" }, { "name": "Suriname", "code": "SR" }, { "name": "Svalbard and Jan Mayen", "code": "SJ" }, { "name": "Sweden", "code": "SE" }, { "name": "Switzerland", "code": "CH" }, { "name": "Syria", "code": "SY" }, { "name": "Taiwan", "code": "TW" }, { "name": "Tajikistan", "code": "TJ" }, { "name": "Tanzania", "code": "TZ" }, { "name": "Thailand", "code": "TH" }, { "name": "Timor-Leste", "code": "TL" }, { "name": "Togo", "code": "TG" }, { "name": "Tokelau", "code": "TK" }, { "name": "Tonga", "code": "TO" }, { "name": "Trinidad and Tobago", "code": "TT" }, { "name": "Tunisia", "code": "TN" }, { "name": "Turkey", "code": "TR" }, { "name": "Turkmenistan", "code": "TM" }, { "name": "Turks and Caicos Islands", "code": "TC" }, { "name": "Tuvalu", "code": "TV" }, { "name": "Uganda", "code": "UG" }, { "name": "Ukraine", "code": "UA" }, { "name": "United Arab Emirates", "code": "AE" }, { "name": "United Kingdom", "code": "GB" }, { "name": "United States", "code": "US" }, { "name": "Uruguay", "code": "UY" }, { "name": "Uzbekistan", "code": "UZ" }, { "name": "Vanuatu", "code": "VU" }, { "name": "Venezuela", "code": "VE" }, { "name": "Vietnam", "code": "VN" }, { "name": "Virgin Islands (British)", "code": "VG" }, { "name": "Virgin Islands (U.S.)", "code": "VI" }, { "name": "Wallis and Futuna", "code": "WF" }, { "name": "Western Sahara", "code": "EH" }, { "name": "Yemen", "code": "YE" }, { "name": "Zambia", "code": "ZM" }, { "name": "Zimbabwe", "code": "ZW" } +]; + +export function CountrySelector() { + const [isOpen, setIsOpen] = useState(false); + const { preferences, setPreferences } = useMatchStore(); + const currentCountry = preferences.userCountry || 'FR'; + + const handleCountrySelect = (code: string) => { + setPreferences({ userCountry: code }); + }; + + // Calculate selected country for map (might need 3-letter code if we had reverse mapping, + // but for now we just pass the 2-letter code and let the map handle it if it can, + // or we accept that highlighting might be tricky without full reverse map. + // Actually, let's just pass the current 2-letter code. + // The LeafletMap will need to match it against features. + // We'll update LeafletMap to handle this matching logic if needed, + // but for now let's pass the 2-letter code. + + return ( + <> + + + {isOpen && ( +
+
+ + +

+ + Select Your Country +

+ +
+ {/* Map Section */} +
+ +
+ + {/* Controls Section */} +
+
+ +
+ {COUNTRIES.find(c => c.code === currentCountry)?.name || currentCountry} +
+
+ {currentCountry === 'FR' ? 'Default' : 'Custom Selection'} +
+
+ +
+ + +
+
+
+
+
+ )} + + ); +} diff --git a/apps/CineMatch/src/components/DetailsModal.tsx b/apps/CineMatch/src/components/DetailsModal.tsx new file mode 100644 index 00000000..c5a8be43 --- /dev/null +++ b/apps/CineMatch/src/components/DetailsModal.tsx @@ -0,0 +1,139 @@ +'use client'; + +import { useEffect, useState } from 'react'; +import { motion } from 'framer-motion'; +import { X, Star, Calendar, Clock, PlayCircle, ExternalLink } from 'lucide-react'; +import type { MediaContent } from '@/types/media'; +import { getWatchProviders } from '@/lib/tmdb'; + +interface DetailsModalProps { + content: MediaContent; + onClose: () => void; +} + +export function DetailsModal({ content, onClose }: DetailsModalProps) { + const [providers, setProviders] = useState<{ + flatrate: { provider_name: string; logo_path: string }[]; + link: string; + }>({ flatrate: [], link: '' }); + + useEffect(() => { + const fetchProviders = async () => { + try { + const data = await getWatchProviders(content.id, content.mediaType); + setProviders(data); + } catch (error) { + console.error('Failed to fetch providers:', error); + } + }; + fetchProviders(); + }, [content.id, content.mediaType]); + + return ( + + {/* Backdrop */} +
+ + {/* Modal Content */} + + {/* Close Button */} + + + {/* Hero Image */} +
+ {content.title} +
+ +
+

{content.title}

+
+
+ + {content.voteAverage.toFixed(1)} +
+
+ + {new Date(content.releaseDate).getFullYear()} +
+
+ {content.mediaType === 'movie' ? 'Movie' : 'TV Series'} +
+
+
+
+ + {/* Details Body */} +
+ + + ); +} diff --git a/apps/CineMatch/src/components/LeafletMap.tsx b/apps/CineMatch/src/components/LeafletMap.tsx new file mode 100644 index 00000000..387257c7 --- /dev/null +++ b/apps/CineMatch/src/components/LeafletMap.tsx @@ -0,0 +1,119 @@ +'use client'; + +import { useEffect, useState } from 'react'; +import { MapContainer, GeoJSON, useMap } from 'react-leaflet'; +import 'leaflet/dist/leaflet.css'; +import L from 'leaflet'; +import { ISO2_TO_ISO3, ISO3_TO_ISO2 } from '@/lib/country-codes'; + +// Fix for default marker icon in Leaflet with Next.js +// (Though we are using GeoJSON, it's good practice to fix this global issue) +delete (L.Icon.Default.prototype as any)._getIconUrl; +L.Icon.Default.mergeOptions({ + iconRetinaUrl: '', + iconUrl: '', + shadowUrl: '', +}); + +interface LeafletMapProps { + onSelectCountry: (code: string) => void; + selectedCountry: string; +} + +// Helper to fit bounds +function MapController() { + const map = useMap(); + useEffect(() => { + map.invalidateSize(); + }, [map]); + return null; +} + +export default function LeafletMap({ onSelectCountry, selectedCountry }: LeafletMapProps) { + const [geoJsonData, setGeoJsonData] = useState(null); + + useEffect(() => { + fetch('/world-countries.json') + .then((res) => res.json()) + .then((data) => setGeoJsonData(data)); + }, []); + + const style = (feature: any) => { + // Convert selected 2-letter code to 3-letter for matching with GeoJSON ID + const selectedCountry3 = ISO2_TO_ISO3[selectedCountry] || selectedCountry; + const isSelected = feature.id === selectedCountry3; + + return { + fillColor: isSelected ? '#aa55f5' : '#2a2a2a', + weight: 1, + opacity: 1, + color: '#5b298aff', // Gold/Brown outline + dashArray: '', + fillOpacity: isSelected ? 0.9 : 0.7, + }; + }; + + const onEachFeature = (feature: any, layer: L.Layer) => { + // Convert selected 2-letter code to 3-letter for comparison + const selectedCountry3 = ISO2_TO_ISO3[selectedCountry] || selectedCountry; + + layer.on({ + mouseover: (e) => { + const layer = e.target; + // Don't change style if it's the selected country (keep it highlighted) + if (feature.id !== selectedCountry3) { + layer.setStyle({ + fillColor: '#aa55f5', + fillOpacity: 0.5, + }); + } + }, + mouseout: (e) => { + const layer = e.target; + if (feature.id !== selectedCountry3) { + layer.setStyle({ + fillColor: '#2a2a2a', + fillOpacity: 0.7, + }); + } else { + // Ensure selected country stays highlighted + layer.setStyle({ + fillColor: '#aa55f5', + fillOpacity: 0.9, + }); + } + }, + click: () => { + // Convert 3-letter ID from GeoJSON to 2-letter code for the app + const code2 = ISO3_TO_ISO2[feature.id] || feature.id; + onSelectCountry(code2); + }, + }); + }; + + if (!geoJsonData) { + return
Loading Map...
; + } + + return ( + + + + + ); +} diff --git a/apps/CineMatch/src/components/MediaCard.tsx b/apps/CineMatch/src/components/MediaCard.tsx new file mode 100644 index 00000000..720f74cd --- /dev/null +++ b/apps/CineMatch/src/components/MediaCard.tsx @@ -0,0 +1,87 @@ +'use client'; + +import Link from 'next/link'; +import Image from 'next/image'; +import type { MediaContent } from '@/types/media'; +import { getPosterUrl } from '@/lib/tmdb'; + +interface MediaCardProps { + content: MediaContent; + reason?: string; +} + +export function MediaCard({ content, reason }: MediaCardProps) { + const posterUrl = getPosterUrl(content.posterPath); + const href = + content.mediaType === 'movie' + ? `/movie/${content.id}` + : `/tv/${content.id}`; + + return ( + +
+ {posterUrl ? ( + {content.title} + ) : ( +
+ + + +
+ )} + + {/* Rating badge */} + {content.voteAverage > 0 && ( +
+ {content.voteAverage.toFixed(1)} +
+ )} + + {/* Media type badge */} +
+ {content.mediaType} +
+ + {/* Hover overlay */} +
+
+

+ {content.title} +

+ {content.releaseDate && ( +

+ {new Date(content.releaseDate).getFullYear()} +

+ )} +
+
+
+ + {/* Title and reason below card */} +
+

{content.title}

+ {reason && ( +

+ {reason} +

+ )} +
+ + ); +} diff --git a/apps/CineMatch/src/components/Onboarding.tsx b/apps/CineMatch/src/components/Onboarding.tsx new file mode 100644 index 00000000..b5916a28 --- /dev/null +++ b/apps/CineMatch/src/components/Onboarding.tsx @@ -0,0 +1,268 @@ +'use client'; + +import { useState } from 'react'; +import { motion, AnimatePresence } from 'framer-motion'; +import { Search, Users, Clock, Film, Tv, Clapperboard, Video, Zap } from 'lucide-react'; +import { useMatchStore } from '@/store/match-store'; +import { searchMulti } from '@/lib/tmdb'; +import type { MediaContent } from '@/types/media'; + +export function Onboarding() { + const [step, setStep] = useState(0); + const [searchQuery, setSearchQuery] = useState(''); + const [searchResults, setSearchResults] = useState([]); + const { setPreferences, completeOnboarding } = useMatchStore(); + + const handleSearch = async (query: string) => { + setSearchQuery(query); + if (query.length > 2) { + const { results } = await searchMulti(query); + setSearchResults(results.slice(0, 5)); + } else { + setSearchResults([]); + } + }; + + const selectMovie = (movie: MediaContent) => { + setPreferences({ + favoriteMovieId: movie.id, + favoriteMediaType: movie.mediaType + }); + setStep(3); // Go to Intent + }; + + const steps = [ + // Step 0: Age +
+
+

How old are you?

+

We'll filter content based on this.

+
+
+ {[ + { id: 'under_18', label: 'Under 18' }, + { id: '18_30', label: '18 - 30' }, + { id: '30_50', label: '30 - 50' }, + { id: '50_plus', label: '50+' }, + ].map((option) => ( + + ))} +
+
, + + // Step 1: Content Type +
+
+

What do you want to watch?

+
+
+ {[ + { id: 'movie', label: 'Movies', icon: Film }, + { id: 'tv', label: 'TV Shows', icon: Tv }, + { id: 'animation', label: 'Animation', icon: Zap }, + { id: 'anime', label: 'Anime', icon: Zap }, // Using Zap for now, maybe find better icon + { id: 'spectacle', label: 'Spectacle', icon: Clapperboard }, + { id: 'short_film', label: 'Short Film', icon: Video }, + ].map((option) => ( + + ))} +
+
, + + // Step 2: Favorite Movie +
+
+

What's a title you love?

+

We'll use this to understand your taste.

+
+
+
+ + handleSearch(e.target.value)} + placeholder="Search for a movie or show..." + className="w-full bg-white/10 border border-white/10 rounded-xl py-4 pl-12 pr-4 text-white placeholder:text-white/40 focus:outline-none focus:ring-2 focus:ring-primary-500" + /> +
+ {searchResults.length > 0 && ( +
+ {searchResults.map((movie) => ( + + ))} +
+ )} +
+
, + + // Step 3: Intent +
+
+

What's the vibe tonight?

+
+
+ + +
+
, + + // Step 4: Social +
+
+

Who are you watching with?

+
+
+ {[ + { id: 'alone', label: 'Just Me', icon: Users }, + { id: 'partner', label: 'My Partner', icon: Users }, + { id: 'friends', label: 'Friends', icon: Users }, + { id: 'family', label: 'Family', icon: Users }, + ].map((option) => ( + + ))} +
+
, + + // Step 5: Era +
+
+

Old school or New school?

+
+
+ + +
+
+ ]; + + return ( +
+ + + {steps[step]} + + + +
+ {steps.map((_, i) => ( +
+ ))} +
+ + {/* Navigation Buttons */} +
+
+ {step > 0 && ( + + )} +
+ +
+
+ ); +} diff --git a/apps/CineMatch/src/components/RecommendationsSection.tsx b/apps/CineMatch/src/components/RecommendationsSection.tsx new file mode 100644 index 00000000..14827965 --- /dev/null +++ b/apps/CineMatch/src/components/RecommendationsSection.tsx @@ -0,0 +1,54 @@ +'use client'; + +import { useQuery } from '@tanstack/react-query'; +import { MediaCard } from './MediaCard'; +import type { Recommendation } from '@/types/media'; + +async function fetchRecommendations(): Promise { + const response = await fetch('/api/recommendations'); + if (!response.ok) throw new Error('Failed to fetch recommendations'); + const data = await response.json(); + return data.recommendations; +} + +export function RecommendationsSection() { + const { data: recommendations, isLoading, error } = useQuery({ + queryKey: ['recommendations'], + queryFn: fetchRecommendations, + }); + + if (isLoading) { + return ( +
+ {Array.from({ length: 6 }).map((_, i) => ( +
+ ))} +
+ ); + } + + if (error || !recommendations) { + return ( +
+ Failed to load recommendations +
+ ); + } + + return ( +
+
+ {recommendations.slice(0, 12).map((rec) => ( + + ))} +
+
+ ); +} diff --git a/apps/CineMatch/src/components/SearchBar.tsx b/apps/CineMatch/src/components/SearchBar.tsx new file mode 100644 index 00000000..44690d2a --- /dev/null +++ b/apps/CineMatch/src/components/SearchBar.tsx @@ -0,0 +1,76 @@ +'use client'; + +import { useState, useCallback } from 'react'; +import { useRouter, useSearchParams } from 'next/navigation'; + +export function SearchBar() { + const router = useRouter(); + const searchParams = useSearchParams(); + const [query, setQuery] = useState(searchParams.get('q') || ''); + const [isLoading, setIsLoading] = useState(false); + + const handleSubmit = useCallback( + async (e: React.FormEvent) => { + e.preventDefault(); + if (!query.trim()) return; + + setIsLoading(true); + router.push(`/search?q=${encodeURIComponent(query.trim())}`); + }, + [query, router] + ); + + return ( +
+ setQuery(e.target.value)} + placeholder="Describe what you want to watch..." + className="w-full h-14 px-6 pr-14 text-lg bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-xl shadow-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all" + disabled={isLoading} + /> + +
+ ); +} diff --git a/apps/CineMatch/src/components/SwipeCard.tsx b/apps/CineMatch/src/components/SwipeCard.tsx new file mode 100644 index 00000000..37d8c4d2 --- /dev/null +++ b/apps/CineMatch/src/components/SwipeCard.tsx @@ -0,0 +1,120 @@ +'use client'; + +import { motion, useMotionValue, useTransform, useAnimation } from 'framer-motion'; +import { Info, X, Heart, ExternalLink } from 'lucide-react'; +import { useState } from 'react'; +import type { MediaContent } from '@/types/media'; + +interface SwipeCardProps { + content: MediaContent; + onSwipeLeft: () => void; + onSwipeRight: () => void; + onSwipeUp: () => void; +} + +export function SwipeCard({ content, onSwipeLeft, onSwipeRight, onSwipeUp }: SwipeCardProps) { + const x = useMotionValue(0); + const y = useMotionValue(0); + const controls = useAnimation(); + const [showInfo, setShowInfo] = useState(false); + + // Rotation based on x position + const rotate = useTransform(x, [-200, 200], [-25, 25]); + + // Opacity for "Like" and "Nope" overlays + const likeOpacity = useTransform(x, [50, 150], [0, 1]); + const nopeOpacity = useTransform(x, [-50, -150], [0, 1]); + const infoOpacity = useTransform(y, [-50, -150], [0, 1]); + + const handleDragEnd = async (_: any, info: any) => { + const offset = info.offset; + const velocity = info.velocity; + + // Swipe Right (Like) + if (offset.x > 100 || velocity.x > 500) { + await controls.start({ x: 500, opacity: 0 }); + onSwipeRight(); + } + // Swipe Left (Dislike) + else if (offset.x < -100 || velocity.x < -500) { + await controls.start({ x: -500, opacity: 0 }); + onSwipeLeft(); + } + // Swipe Up (Info) + else if (offset.y < -100 || velocity.y < -500) { + onSwipeUp(); + // Reset position after a short delay to allow animation if needed, + // but for now we just snap back so the card is ready when modal closes + controls.start({ x: 0, y: 0 }); + } + // Reset + else { + controls.start({ x: 0, y: 0 }); + } + }; + + return ( + +
+ {/* Poster Image */} + {content.title} + + {/* Gradient Overlay */} +
+ + {/* Content Info */} +
+

{content.title}

+
+ + ★ {content.voteAverage.toFixed(1)} + + {content.releaseDate ? new Date(content.releaseDate).getFullYear() : 'N/A'} + {content.mediaType === 'movie' ? 'Movie' : 'TV Show'} +
+

{content.overview}

+
+ + {/* Swipe Overlays */} + +
+ LIKE +
+
+ + +
+ NOPE +
+
+ + +
+ + Release Info +
+
+
+ + ); +} diff --git a/apps/CineMatch/src/components/TrendingSection.tsx b/apps/CineMatch/src/components/TrendingSection.tsx new file mode 100644 index 00000000..13c8c660 --- /dev/null +++ b/apps/CineMatch/src/components/TrendingSection.tsx @@ -0,0 +1,48 @@ +'use client'; + +import { useQuery } from '@tanstack/react-query'; +import { MediaCard } from './MediaCard'; +import type { MediaContent } from '@/types/media'; + +async function fetchTrending(): Promise { + const response = await fetch('/api/discover?category=trending&type=all'); + if (!response.ok) throw new Error('Failed to fetch trending'); + const data = await response.json(); + return data.results; +} + +export function TrendingSection() { + const { data: content, isLoading, error } = useQuery({ + queryKey: ['trending'], + queryFn: fetchTrending, + }); + + if (isLoading) { + return ( +
+ {Array.from({ length: 12 }).map((_, i) => ( +
+ ))} +
+ ); + } + + if (error || !content) { + return ( +
+ Failed to load trending content +
+ ); + } + + return ( +
+ {content.slice(0, 12).map((item) => ( + + ))} +
+ ); +} diff --git a/apps/CineMatch/src/components/detail/Backdrop.tsx b/apps/CineMatch/src/components/detail/Backdrop.tsx new file mode 100644 index 00000000..5a7c41fe --- /dev/null +++ b/apps/CineMatch/src/components/detail/Backdrop.tsx @@ -0,0 +1,35 @@ +'use client'; + +import Image from 'next/image'; +import { getBackdropUrl } from '@/lib/tmdb'; + +interface BackdropProps { + path: string | null; + title: string; +} + +export function Backdrop({ path, title }: BackdropProps) { + const backdropUrl = getBackdropUrl(path); + + return ( +
+ {backdropUrl ? ( + <> + {`${title} + {/* Gradient overlays */} +
+
+ + ) : ( +
+ )} +
+ ); +} diff --git a/apps/CineMatch/src/components/detail/CastSection.tsx b/apps/CineMatch/src/components/detail/CastSection.tsx new file mode 100644 index 00000000..3227efd6 --- /dev/null +++ b/apps/CineMatch/src/components/detail/CastSection.tsx @@ -0,0 +1,68 @@ +'use client'; + +import Image from 'next/image'; +import type { CastMember } from '@/lib/tmdb'; + +const PROFILE_BASE = 'https://image.tmdb.org/t/p/w185'; + +interface CastSectionProps { + cast: CastMember[]; +} + +export function CastSection({ cast }: CastSectionProps) { + if (!cast.length) return null; + + return ( +
+
+

Cast

+ +
+
+ {cast.map((member) => ( +
+
+ {member.profilePath ? ( + {member.name} + ) : ( +
+ + + +
+ )} +
+

+ {member.name} +

+

+ {member.character} +

+
+ ))} +
+ + {/* Fade edges */} +
+
+
+
+ ); +} diff --git a/apps/CineMatch/src/components/detail/DetailHero.tsx b/apps/CineMatch/src/components/detail/DetailHero.tsx new file mode 100644 index 00000000..b9c05e7f --- /dev/null +++ b/apps/CineMatch/src/components/detail/DetailHero.tsx @@ -0,0 +1,184 @@ +'use client'; + +import Image from 'next/image'; +import Link from 'next/link'; +import { getPosterUrl } from '@/lib/tmdb'; +import type { Movie, TVShow, Genre } from '@/types/media'; +import type { Video } from '@/lib/tmdb'; + +interface DetailHeroProps { + content: Movie | TVShow; + genres: Genre[]; + videos?: Video[]; +} + +export function DetailHero({ content, genres, videos }: DetailHeroProps) { + const posterUrl = getPosterUrl(content.posterPath); + const trailer = videos?.find( + (v) => v.type === 'Trailer' && v.site === 'YouTube' + ); + + const year = content.releaseDate + ? new Date(content.releaseDate).getFullYear() + : null; + + const runtime = + content.mediaType === 'movie' && content.runtime + ? `${Math.floor(content.runtime / 60)}h ${content.runtime % 60}m` + : null; + + const seasons = + content.mediaType === 'tv' && content.numberOfSeasons + ? `${content.numberOfSeasons} Season${content.numberOfSeasons > 1 ? 's' : ''}` + : null; + + return ( +
+
+
+ {/* Poster */} +
+
+ {posterUrl ? ( + {content.title} + ) : ( +
+ + + +
+ )} +
+
+ + {/* Content */} +
+ {/* Title */} +

+ {content.title} +

+ + {/* Tagline */} + {content.mediaType === 'movie' && content.tagline && ( +

+ {content.tagline} +

+ )} + + {/* Meta info */} +
+ {year && {year}} + {(runtime || seasons) && ( + <> + + {runtime || seasons} + + )} + {content.voteAverage > 0 && ( + <> + + + + + + {content.voteAverage.toFixed(1)} + + + )} + {content.status && ( + <> + + + {content.status} + + + )} +
+ + {/* Genres */} + {genres.length > 0 && ( +
+ {genres.map((genre) => ( + + {genre.name} + + ))} +
+ )} + + {/* Overview */} +

+ {content.overview || 'No overview available.'} +

+ + {/* Actions */} +
+ {trailer && ( + + + + + Watch Trailer + + )} + +
+
+
+
+
+ ); +} diff --git a/apps/CineMatch/src/components/detail/RelatedSection.tsx b/apps/CineMatch/src/components/detail/RelatedSection.tsx new file mode 100644 index 00000000..7b9e627d --- /dev/null +++ b/apps/CineMatch/src/components/detail/RelatedSection.tsx @@ -0,0 +1,75 @@ +'use client'; + +import { useState } from 'react'; +import { MediaCard } from '@/components/MediaCard'; +import type { Movie, TVShow } from '@/types/media'; + +interface RelatedSectionProps { + similar: (Movie | TVShow)[]; + recommendations: (Movie | TVShow)[]; +} + +export function RelatedSection({ similar, recommendations }: RelatedSectionProps) { + const [activeTab, setActiveTab] = useState<'recommendations' | 'similar'>( + recommendations.length > 0 ? 'recommendations' : 'similar' + ); + + const hasContent = similar.length > 0 || recommendations.length > 0; + if (!hasContent) return null; + + const displayContent = activeTab === 'recommendations' ? recommendations : similar; + + return ( +
+
+ {/* Tabs */} +
+

More Like This

+ +
+ {recommendations.length > 0 && ( + + )} + {similar.length > 0 && ( + + )} +
+
+ + {/* Content grid */} +
+ {displayContent.map((item) => ( + + ))} +
+ + {displayContent.length === 0 && ( +

+ No {activeTab === 'recommendations' ? 'recommendations' : 'similar content'} found. +

+ )} +
+
+ ); +} diff --git a/apps/CineMatch/src/components/detail/VideoSection.tsx b/apps/CineMatch/src/components/detail/VideoSection.tsx new file mode 100644 index 00000000..4e2816a6 --- /dev/null +++ b/apps/CineMatch/src/components/detail/VideoSection.tsx @@ -0,0 +1,76 @@ +'use client'; + +import type { Video } from '@/lib/tmdb'; + +interface VideoSectionProps { + videos: Video[]; +} + +export function VideoSection({ videos }: VideoSectionProps) { + // Filter to show trailers and teasers from YouTube + const youtubeVideos = videos.filter((v) => v.site === 'YouTube'); + const trailers = youtubeVideos.filter((v) => v.type === 'Trailer'); + const teasers = youtubeVideos.filter((v) => v.type === 'Teaser'); + const other = youtubeVideos.filter( + (v) => v.type !== 'Trailer' && v.type !== 'Teaser' + ); + + const displayVideos = [...trailers, ...teasers, ...other].slice(0, 6); + + if (!displayVideos.length) return null; + + return ( +
+
+ ); +} diff --git a/apps/CineMatch/src/components/detail/index.ts b/apps/CineMatch/src/components/detail/index.ts new file mode 100644 index 00000000..28a31b77 --- /dev/null +++ b/apps/CineMatch/src/components/detail/index.ts @@ -0,0 +1,5 @@ +export { Backdrop } from './Backdrop'; +export { DetailHero } from './DetailHero'; +export { CastSection } from './CastSection'; +export { VideoSection } from './VideoSection'; +export { RelatedSection } from './RelatedSection'; diff --git a/apps/CineMatch/src/data/db.json b/apps/CineMatch/src/data/db.json new file mode 100644 index 00000000..d36b19cb --- /dev/null +++ b/apps/CineMatch/src/data/db.json @@ -0,0 +1,268060 @@ +{ + "movies": [ + { + "id": 1084242, + "title": "Zootopia 2", + "originalTitle": "Zootopia 2", + "overview": "After cracking the biggest case in Zootopia's history, rookie cops Judy Hopps and Nick Wilde find themselves on the twisting trail of a great mystery when Gary De’Snake arrives and turns the animal metropolis upside down. To crack the case, Judy and Nick must go undercover to unexpected new parts of town, where their growing partnership is tested like never before.", + "posterPath": "/oJ7g2CifqpStmoYQyaLQgEU32qO.jpg", + "backdropPath": "/5h2EsPKNDdB3MAtOk9MB9Ycg9Rz.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 12 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Adventure" + ], + "releaseDate": "2025-11-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.719, + "voteCount": 351, + "popularity": 512.6445 + }, + { + "id": 533533, + "title": "TRON: Ares", + "originalTitle": "TRON: Ares", + "overview": "A highly sophisticated Program called Ares is sent from the digital world into the real world on a dangerous mission, marking humankind's first encounter with A.I. beings.", + "posterPath": "/chpWmskl3aKm1aTZqUHRCtviwPy.jpg", + "backdropPath": "/6bzabqH399ioM3nZScwZtzGaHIy.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2025-10-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.504, + "voteCount": 548, + "popularity": 458.1744 + }, + { + "id": 1180831, + "title": "Troll 2", + "originalTitle": "Troll 2", + "overview": "When a dangerous new troll unleashes devastation across their homeland, Nora, Andreas and Major Kris embark on their most perilous mission yet.", + "posterPath": "/p6xAExLNFbHcLfvSuvLPoM8aqZU.jpg", + "backdropPath": "/lZYMXx74pWmbj5Q5jp1QaMvmuuR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 53 + ], + "genres": [ + "Action", + "Fantasy", + "Thriller" + ], + "releaseDate": "2025-11-30", + "releaseYear": "2025", + "originalLanguage": "no", + "voteAverage": 6.942, + "voteCount": 137, + "popularity": 450.8549 + }, + { + "id": 1083637, + "title": "Kantara - A Legend: Chapter 1", + "originalTitle": "ಕಾಂತಾರ: ಅಧ್ಯಾಯ - ೧", + "overview": "During the Kadamba reign, King Vijayendra, the ruler of the fictional feudatory land of Bangra, meets his final fate while venturing into the mystical forest of Kantara. Witnessing this, his son Rajashekara seals the borders of their realm. Later, Prince Kulashekara reopens them through a brutal massacre. The protagonist, Berme, in search of prosperity, crosses the divide and ignites a conflict of faith, power, and destiny between the Kingdom and Nature.", + "posterPath": "/zBvw25afDn93embB8L7FzvTT2xq.jpg", + "backdropPath": "/w57nxiBIODAYHLRs1xmrCY9zEFe.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 14 + ], + "genres": [ + "Action", + "Drama", + "Fantasy" + ], + "releaseDate": "2025-10-01", + "releaseYear": "2025", + "originalLanguage": "kn", + "voteAverage": 7.189, + "voteCount": 37, + "popularity": 318.3417 + }, + { + "id": 1246049, + "title": "Dracula", + "originalTitle": "Dracula", + "overview": "When a 15th-century prince denounces God after the devastating loss of his wife, he inherits an eternal curse: he becomes Dracula. Condemned to wander the centuries, he defies fate and death itself, guided by a single hope — to be reunited with his lost love.", + "posterPath": "/ykyRfv7JDofLxXLAwtLXaSuaFfM.jpg", + "backdropPath": "/otSXrUWOTX7tTigLBMFKOV8n47r.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14, + 10749 + ], + "genres": [ + "Horror", + "Fantasy", + "Romance" + ], + "releaseDate": "2025-07-30", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 7.105, + "voteCount": 520, + "popularity": 248.9951 + }, + { + "id": 949709, + "title": "High Forces", + "originalTitle": "危机航线", + "overview": "\"Anyone? There is ......\" A mysterious message from Gao Haojun comes from ten thousand meters in the air. A five-star A380 ultra-luxury airliner was hijacked on its international maiden voyage, and international security expert Gao Haojun stood up to a group of thugs, his daughter Xiaojun was trapped in the cabin, and Mike, the leader of the hijackers, threatened the lives of more than 800 people in the plane as a bargaining chip, and Xiaojun's mother, Fu Yuan, was also in danger. ...... Will the passengers on board be able to land safely and how should this crisis be resolved?", + "posterPath": "/v8ySgr4CE45SrrIt4PqqYc1diW6.jpg", + "backdropPath": "/8lqfrOBQ2EcY7znD3LxTYcvlh25.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2024-09-29", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 6, + "voteCount": 25, + "popularity": 243.9219 + }, + { + "id": 1448560, + "title": "Wildcat", + "originalTitle": "Wildcat", + "overview": "An ex-black ops team reunite to pull off a desperate heist in order to save the life of their leader’s eight-year-old daughter.", + "posterPath": "/h893ImjM6Fsv5DFhKJdlZFZIJno.jpg", + "backdropPath": "/pAyImoslSnpMgjRwhaS5ZEdl8UI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2025-11-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 27, + "popularity": 240.0653 + }, + { + "id": 1419406, + "title": "The Shadow's Edge", + "originalTitle": "捕风追影", + "overview": "Macau Police brings the tracking expert police officer out of retirement to help catch a dangerous group of professional thieves.", + "posterPath": "/e0RU6KpdnrqFxDKlI3NOqN8nHL6.jpg", + "backdropPath": "/4BtL2vvEufDXDP4u6xQjjQ1Y2aT.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-08-16", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 6.414, + "voteCount": 139, + "popularity": 228.8981 + }, + { + "id": 1033462, + "title": "Bureau 749", + "originalTitle": "749局", + "overview": "A traumatized young man with physical abnormalities is forced to join a mysterious bureau to confront a disaster spreading across the earth caused by an unknown creature. He embarks on an adventure uncovering mysteries about his life.", + "posterPath": "/flykCMw22y6yv8vKnBjmsW3pneo.jpg", + "backdropPath": "/lf8IZ86ajGpgbuyHCZrXUeAMmvy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2024-10-01", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 6, + "voteCount": 50, + "popularity": 201.7229 + }, + { + "id": 1242898, + "title": "Predator: Badlands", + "originalTitle": "Predator: Badlands", + "overview": "Cast out from his clan, a young Predator finds an unlikely ally in a damaged android and embarks on a treacherous journey in search of the ultimate adversary.", + "posterPath": "/ef2QSeBkrYhAdfsWGXmp0lvH0T1.jpg", + "backdropPath": "/ebyxeBh56QNXxSJgTnmz7fXAlwk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2025-11-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.379, + "voteCount": 549, + "popularity": 190.6551 + }, + { + "id": 1309012, + "title": "Altered", + "originalTitle": "Altered", + "overview": "In an alternate present, genetically enhanced humans dominate society. Outcasts Leon and Chloe fight for justice against corrupt politicians exploiting genetic disparity, risking everything to challenge the oppressive system.", + "posterPath": "/6QlAcGRaUrgHcZ4WTBh5lsPnzKx.jpg", + "backdropPath": "/q9bvjUkpKltPE0S9oxci2pmD1Zx.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "2025-09-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.531, + "voteCount": 49, + "popularity": 155.7285 + }, + { + "id": 755898, + "title": "War of the Worlds", + "originalTitle": "War of the Worlds", + "overview": "Will Radford is a top analyst for Homeland Security who tracks potential threats through a mass surveillance program, until one day an attack by an unknown entity leads him to question whether the government is hiding something from him... and from the rest of the world.", + "posterPath": "/yvirUYrva23IudARHn3mMGVxWqM.jpg", + "backdropPath": "/iZLqwEwUViJdSkGVjePGhxYzbDb.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2025-07-29", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.294, + "voteCount": 764, + "popularity": 147.0975 + }, + { + "id": 967941, + "title": "Wicked: For Good", + "originalTitle": "Wicked: For Good", + "overview": "As an angry mob rises against the Wicked Witch, Glinda and Elphaba will need to come together one final time. With their singular friendship now the fulcrum of their futures, they will need to truly see each other, with honesty and empathy, if they are to change themselves, and all of Oz, for good.", + "posterPath": "/si9tolnefLSUKaqQEGz1bWArOaL.jpg", + "backdropPath": "/l8pwO23MCvqYumzozpxynCNfck1.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 10749 + ], + "genres": [ + "Fantasy", + "Adventure", + "Romance" + ], + "releaseDate": "2025-11-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.748, + "voteCount": 367, + "popularity": 142.4678 + }, + { + "id": 23527, + "title": "First Squad: The Moment of Truth", + "originalTitle": "Первый отряд", + "overview": "Set during the opening days of World War II on the Eastern Front. Its main cast are a group of Soviet teenagers with extraordinary abilities; the teenagers have been drafted to form a special unit to fight the invading German army. They are opposed by a Schutzstaffel officer who is attempting to raise from the dead a supernatural army of crusaders from the 12th-century Order of the Sacred Cross.", + "posterPath": "/hBj1aTnGf4564Klv9yIbSuB7Y8w.jpg", + "backdropPath": "/3k1PKmzNEosWFaOR1yC9ZKIYqmm.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 16, + 28, + 878 + ], + "genres": [ + "Fantasy", + "Animation", + "Action", + "Science Fiction" + ], + "releaseDate": "2009-05-13", + "releaseYear": "2009", + "originalLanguage": "ru", + "voteAverage": 6.298, + "voteCount": 126, + "popularity": 138.4047 + }, + { + "id": 1363123, + "title": "The Family Plan 2", + "originalTitle": "The Family Plan 2", + "overview": "Now that Dan's assassin days are behind him, all he wants for Christmas is quality time with his kids. But when he learns his daughter has her own plans, he books a family trip to London—putting them all in the crosshairs of an unexpected enemy.", + "posterPath": "/semFxuYx6HcrkZzslgAkBqfJvZk.jpg", + "backdropPath": "/7nAVXGHHtaNcdsqvDXmY6R9N0fG.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2025-11-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.699, + "voteCount": 296, + "popularity": 137.5241 + }, + { + "id": 1062722, + "title": "Frankenstein", + "originalTitle": "Frankenstein", + "overview": "Dr. Victor Frankenstein, a brilliant but egotistical scientist, brings a creature to life in a monstrous experiment that ultimately leads to the undoing of both the creator and his tragic creation.", + "posterPath": "/g4JtvGlQO7DByTI6frUobqvSL3R.jpg", + "backdropPath": "/hpXBJxLD2SEf8l2CspmSeiHrBKX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 27 + ], + "genres": [ + "Drama", + "Fantasy", + "Horror" + ], + "releaseDate": "2025-10-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.775, + "voteCount": 2057, + "popularity": 131.3434 + }, + { + "id": 1228246, + "title": "Five Nights at Freddy's 2", + "originalTitle": "Five Nights at Freddy's 2", + "overview": "One year since the supernatural nightmare at Freddy Fazbear's Pizza, the stories about what transpired there have been twisted into a campy local legend, inspiring the town's first ever Fazfest. With the truth about what transpired kept from her, Abby sneaks out to reconnect with Freddy, Bonnie, Chica, and Foxy, setting into motion a terrifying series of events that will reveal dark secrets about the true origin of Freddy's, and unleash a long-forgotten horror hidden away for decades.", + "posterPath": "/am6O7221qGtb5ba5uJKw7PfPZkJ.jpg", + "backdropPath": "/54BOXpX2ieTXMDzHymdDMnUIzYG.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-12-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.118, + "voteCount": 34, + "popularity": 128.2784 + }, + { + "id": 1196573, + "title": "She Rides Shotgun", + "originalTitle": "She Rides Shotgun", + "overview": "Newly released from prison and marked for death by unrelenting enemies, Nate must now protect his estranged 11-year-old daughter, Polly, at all costs. With scant resources and no one to trust, Nate and Polly forge a bond under fire as he shows her how to fight and survive—and she teaches him the true meaning of unconditional love.", + "posterPath": "/nvqW8mOm818QDio3GKKmPLK8kXj.jpg", + "backdropPath": "/ytCi1wg6YHpYcFRWCO2jpzN31Kf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2025-07-31", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 128, + "popularity": 125.584 + }, + { + "id": 269149, + "title": "Zootopia", + "originalTitle": "Zootopia", + "overview": "Determined to prove herself, Officer Judy Hopps, the first bunny on Zootopia's police force, jumps at the chance to crack her first case - even if it means partnering with scam-artist fox Nick Wilde to solve the mystery.", + "posterPath": "/hlK0e0wAQ3VLuJcsfIYPvb4JVud.jpg", + "backdropPath": "/9tOkjBEiiGcaClgJFtwocStZvIT.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751, + 35 + ], + "genres": [ + "Animation", + "Adventure", + "Family", + "Comedy" + ], + "releaseDate": "2016-02-11", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.755, + "voteCount": 17193, + "popularity": 125.4079 + }, + { + "id": 1539104, + "title": "JUJUTSU KAISEN: Execution -Shibuya Incident x The Culling Game Begins-", + "originalTitle": "劇場版 呪術廻戦「渋谷事変 特別編集版」×「死滅回游 先行上映」", + "overview": "A veil abruptly descends over the busy Shibuya area amid the bustling Halloween crowds, trapping countless civilians inside. Satoru Gojo, the strongest jujutsu sorcerer, steps into the chaos. But lying in wait are curse users and spirits scheming to seal him away. Yuji Itadori, accompanied by his classmates and other top-tier jujutsu sorcerers, enters the fray in an unprecedented clash of curses — the Shibuya Incident. In the aftermath, ten colonies across Japan are transformed into dens of curses in a plan orchestrated by Noritoshi Kamo. As the deadly Culling Game starts, Special Grade sorcerer Yuta Okkotsu is assigned to carry out Yuji's execution for his perceived crimes. A compilation movie of Shibuya Incident including the first two episodes of the Culling Games arc.", + "posterPath": "/tc7RrVW5FGvyO2tsgW6LIN1esHI.jpg", + "backdropPath": "/eMBYlgFTHfZaTz96eJxlkeMsKo9.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28 + ], + "genres": [ + "Animation", + "Action" + ], + "releaseDate": "2025-11-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 46, + "popularity": 121.0617 + }, + { + "id": 1311031, + "title": "Demon Slayer: Kimetsu no Yaiba Infinity Castle", + "originalTitle": "劇場版「鬼滅の刃」無限城編 第一章 猗窩座再来", + "overview": "The Demon Slayer Corps are drawn into the Infinity Castle, where Tanjiro, Nezuko, and the Hashira face terrifying Upper Rank demons in a desperate fight as the final battle against Muzan Kibutsuji begins.", + "posterPath": "/fWVSwgjpT2D78VUh6X8UBd2rorW.jpg", + "backdropPath": "/1RgPyOhN4DRs225BGTlHJqCudII.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14 + ], + "genres": [ + "Animation", + "Action", + "Fantasy" + ], + "releaseDate": "2025-07-18", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.604, + "voteCount": 586, + "popularity": 106.1311 + }, + { + "id": 1208561, + "title": "Art of Eight Limbs", + "originalTitle": "Art of Eight Limbs", + "overview": "Four canisters of deadly VX nerve gas have fallen into the hands of an international arms dealer in Myanmar. A CIA recruit delivers a high-tech detection device to an agent already on the ground.", + "posterPath": "/tZRypLd2SU3Eeqg5tD5cwkk5CdL.jpg", + "backdropPath": "/cVzAhirOhKh91AB1TFcGn0Rh5c3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2024-08-16", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.357, + "voteCount": 35, + "popularity": 105.6275 + }, + { + "id": 701387, + "title": "Bugonia", + "originalTitle": "Bugonia", + "overview": "Two conspiracy obsessed young men kidnap the high-powered CEO of a major company, convinced that she is an alien intent on destroying planet Earth.", + "posterPath": "/oxgsAQDAAxA92mFGYCZllgWkH9J.jpg", + "backdropPath": "/tN3pTxkQoP96wtaEahYuRVdUWb2.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 80 + ], + "genres": [ + "Science Fiction", + "Crime" + ], + "releaseDate": "2025-10-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.51, + "voteCount": 630, + "popularity": 102.5122 + }, + { + "id": 1116465, + "title": "A Legend", + "originalTitle": "传说", + "overview": "An archeologist noticed that the texture of the relics discovered during the excavation of a glacier closely resembled a jade pendant seen in one of his dreams. He and his team then embark on an expedition into the depths of the glacier.", + "posterPath": "/qbImUt1d3itXcB81BCItPZlfbyr.jpg", + "backdropPath": "/7FDVhmCur4LMOfnXMteiSCtsdOb.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 6.874, + "voteCount": 119, + "popularity": 94.6991 + }, + { + "id": 425274, + "title": "Now You See Me: Now You Don't", + "originalTitle": "Now You See Me: Now You Don't", + "overview": "The original Four Horsemen reunite with a new generation of illusionists to take on powerful diamond heiress Veronika Vanderberg, who leads a criminal empire built on money laundering and trafficking. The new and old magicians must overcome their differences to work together on their most ambitious heist yet.", + "posterPath": "/oD3Eey4e4Z259XLm3eD3WGcoJAh.jpg", + "backdropPath": "/ufqytAlziHq5pljKByGJ8IKhtEZ.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 9648 + ], + "genres": [ + "Thriller", + "Crime", + "Mystery" + ], + "releaseDate": "2025-11-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 324, + "popularity": 92.6361 + }, + { + "id": 1054867, + "title": "One Battle After Another", + "originalTitle": "One Battle After Another", + "overview": "Washed-up revolutionary Bob exists in a state of stoned paranoia, surviving off-grid with his spirited, self-reliant daughter, Willa. When his evil nemesis resurfaces after 16 years and she goes missing, the former radical scrambles to find her, father and daughter both battling the consequences of his past.", + "posterPath": "/m1jFoahEbeQXtx4zArT2FKdbNIj.jpg", + "backdropPath": "/zpEWFNqoN8Qg1SzMMHmaGyOBTdW.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 28 + ], + "genres": [ + "Thriller", + "Crime", + "Action" + ], + "releaseDate": "2025-09-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.492, + "voteCount": 1757, + "popularity": 91.6255 + }, + { + "id": 803796, + "title": "KPop Demon Hunters", + "originalTitle": "KPop Demon Hunters", + "overview": "When K-pop superstars Rumi, Mira and Zoey aren't selling out stadiums, they're using their secret powers to protect their fans from supernatural threats.", + "posterPath": "/zT7Lhw3BhJbMkRqm9Zlx2YGMsY0.jpg", + "backdropPath": "/w3Bi0wygeFQctn6AqFTwhGNXRwL.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 10402, + 35, + 16 + ], + "genres": [ + "Fantasy", + "Music", + "Comedy", + "Animation" + ], + "releaseDate": "2025-06-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.203, + "voteCount": 1990, + "popularity": 85.0099 + }, + { + "id": 1130276, + "title": "Succubus", + "originalTitle": "Succubus", + "overview": "A new father going through a marital separation joins a dating app and matches with a beautiful but mysterious young woman... whose powers of seduction and manipulation entangle him in a mystery more horrifying than he could have ever imagined.", + "posterPath": "/nyGKQrctWNmhSvto8h60AhZ3iLz.jpg", + "backdropPath": "/84h6avqHvW2TgLfERuqYkQwzjp1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.922, + "voteCount": 198, + "popularity": 75.3387 + }, + { + "id": 1261825, + "title": "Oh. What. Fun.", + "originalTitle": "Oh. What. Fun.", + "overview": "Claire Clauster is the glue that holds her chaotic, lovable family together at the holidays. But this year, after planning a special outing for them, they make a crucial mistake and leave her home alone. Fed up and feeling under appreciated, she sets off on an impromptu adventure of her own. As her family scrambles to find her, Claire discovers the unexpected magic of a Christmas gone off-script.", + "posterPath": "/qynCyBKCJUUcj4wo4PE2aQVvote.jpg", + "backdropPath": "/haAekI7zBtffqILr90DkviTe9fk.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-12-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.167, + "voteCount": 39, + "popularity": 73.1159 + }, + { + "id": 1550797, + "title": "Prep & Landing: The Snowball Protocol", + "originalTitle": "Prep & Landing: The Snowball Protocol", + "overview": "Christmas elves Lanny and Wayne panic when their holiday missions go awry, leaving Wayne thinking he’s in BIG trouble with Santa and accidentally revealing other merry mishaps.", + "posterPath": "/olbxBEAGaYCgyi2EEecuwa5tuUl.jpg", + "backdropPath": "/tombkp3ir9tmm5v9QLnHaDZCWa7.jpg", + "mediaType": "movie", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2025-11-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 12, + "popularity": 69.0874 + }, + { + "id": 1218925, + "title": "Chainsaw Man - The Movie: Reze Arc", + "originalTitle": "チェンソーマン レゼ篇", + "overview": "In a brutal war between devils, hunters, and secret enemies, a mysterious girl named Reze has stepped into Denji's world, and he faces his deadliest battle yet, fueled by love in a world where survival knows no rules.", + "posterPath": "/xdzLBZjCVSEsic7m7nJc4jNJZVW.jpg", + "backdropPath": "/gqTz24ZRsCP6AKjARmEivY7m0cK.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 10749, + 14 + ], + "genres": [ + "Animation", + "Action", + "Romance", + "Fantasy" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.855, + "voteCount": 228, + "popularity": 68.164 + }, + { + "id": 1327862, + "title": "Regretting You", + "originalTitle": "Regretting You", + "overview": "Morgan Grant and her daughter Clara explore what's left behind after a devastating accident reveals a shocking betrayal and forces them to confront family secrets, redefine love, and rediscover each other.", + "posterPath": "/z4gVnxTaks3anTycwKjDmvQSuWt.jpg", + "backdropPath": "/m3WlBJJRbFPaut1QS0PbOG8Wezy.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2025-10-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.113, + "voteCount": 128, + "popularity": 68.0137 + }, + { + "id": 1248226, + "title": "Playdate", + "originalTitle": "Playdate", + "overview": "When out-of-work accountant Brian joins stay-at-home dad Jeff for a playdate with their sons, he expects a laid-back afternoon. Instead, they're chased by mercenaries, and Brian—totally unprepared—must survive one absurd obstacle after another.", + "posterPath": "/fGodXWqJkkkbSebPIlxLSygV8GY.jpg", + "backdropPath": "/5lQ4euO30sDin5nCifvi0vURFNd.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 10751 + ], + "genres": [ + "Action", + "Comedy", + "Family" + ], + "releaseDate": "2025-11-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.163, + "voteCount": 352, + "popularity": 67.4133 + }, + { + "id": 1166133, + "title": "Bramayugam", + "originalTitle": "ഭ്രമയുഗം", + "overview": "A folk singer in 17th-century Kerala discovers a mansion. Inside, he encounters an enigmatic cook and a powerful master, setting in motion a chain of events that changes his life.", + "posterPath": "/snQLwRrfQAl5YFKVefZq9Lbscki.jpg", + "backdropPath": "/3Y5pOfxMrG8SqbIcGhYy497eOXc.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2024-02-15", + "releaseYear": "2024", + "originalLanguage": "ml", + "voteAverage": 7.59, + "voteCount": 61, + "popularity": 66.5945 + }, + { + "id": 1433719, + "title": "High Ground", + "originalTitle": "High Ground", + "overview": "When a mysterious prisoner lands in jail, a border town sheriff faces the wrath of a brutal cartel.", + "posterPath": "/cqF7xuZWbBYXWHsp1I1H5PwujPs.jpg", + "backdropPath": "/kyp7PSCKPZKGosthRbjfXPm8gJg.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 28 + ], + "genres": [ + "Thriller", + "Crime", + "Action" + ], + "releaseDate": "2025-03-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 34, + "popularity": 65.1182 + }, + { + "id": 1197137, + "title": "Black Phone 2", + "originalTitle": "Black Phone 2", + "overview": "Four years after escaping The Grabber, Finney Blake is struggling with his life after captivity. When his sister Gwen begins receiving calls in her dreams from the black phone and seeing disturbing visions of three boys being stalked at a winter camp, the siblings become determined to solve the mystery and confront a killer who has grown more powerful in death and more significant to them than either could imagine.", + "posterPath": "/gFddBLQ8wj9M9O82iPzgX5KVNHz.jpg", + "backdropPath": "/6zKjoOOb3OZnZuiHtQZn4Kd69Gq.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-10-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.864, + "voteCount": 654, + "popularity": 64.1096 + }, + { + "id": 203101, + "title": "High School of the Dead: Drifters of the Dead", + "originalTitle": "学園黙示録 HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド", + "overview": "In their efforts to find a safe haven from the zombie apocalypse, the gang find themselves on a deserted island. Now, they take advantage of the momentary respite to enjoy some surf, sand and bathing suits!", + "posterPath": "/qXy2J2oy6JF369gZuUIQkr7MQn0.jpg", + "backdropPath": "/1t7BMQiYCXI9YLvuMiGwJpO93Kz.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 16, + 12, + 27 + ], + "genres": [ + "Comedy", + "Animation", + "Adventure", + "Horror" + ], + "releaseDate": "2011-04-25", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.449, + "voteCount": 474, + "popularity": 60.7682 + }, + { + "id": 7451, + "title": "xXx", + "originalTitle": "xXx", + "overview": "Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government \"recruits\" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.", + "posterPath": "/xeEw3eLeSFmJgXZzmF2Efww0q3s.jpg", + "backdropPath": "/2OHa6ukEq3Hce7Pc2kvu8wkmMFY.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53, + 80, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2002-08-09", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.976, + "voteCount": 4677, + "popularity": 55.5687 + }, + { + "id": 575265, + "title": "Mission: Impossible - The Final Reckoning", + "originalTitle": "Mission: Impossible - The Final Reckoning", + "overview": "Ethan Hunt and team continue their search for the terrifying AI known as the Entity — which has infiltrated intelligence networks all over the globe — with the world's governments and a mysterious ghost from Hunt's past on their trail. Joined by new allies and armed with the means to shut the Entity down for good, Hunt is in a race against time to prevent the world as we know it from changing forever.", + "posterPath": "/z53D72EAOxGRqdr7KXXWp9dJiDe.jpg", + "backdropPath": "/xPNDRM50a58uvv1il2GVZrtWjkZ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-05-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.263, + "voteCount": 2141, + "popularity": 53.2542 + }, + { + "id": 617126, + "title": "The Fantastic 4: First Steps", + "originalTitle": "The Fantastic 4: First Steps", + "overview": "Against the vibrant backdrop of a 1960s-inspired, retro-futuristic world, Marvel's First Family is forced to balance their roles as heroes with the strength of their family bond, while defending Earth from a ravenous space god called Galactus and his enigmatic Herald, Silver Surfer.", + "posterPath": "/pZPJsaFKWheTOerVhLnpP8TPp4B.jpg", + "backdropPath": "/hBvaanw3RfMEs1m1blY7xwRXzul.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2025-07-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.028, + "voteCount": 2561, + "popularity": 52.8613 + }, + { + "id": 1441563, + "title": "My Secret Santa", + "originalTitle": "My Secret Santa", + "overview": "A single mom needs a job. A ski resort needs a Santa. Disguised as a St. Nick lookalike, can Taylor fool a charming hotel heir into ho-ho-hiring her?", + "posterPath": "/tpOAzBasKPsKwsUtPZOx1Mzuqq3.jpg", + "backdropPath": "/yORrxgxIxsvBqFnpCPJ1j6MHX89.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2025-12-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 17, + "popularity": 51.9463 + }, + { + "id": 1128650, + "title": "The Prosecutor", + "originalTitle": "誤判", + "overview": "A poor young man is wrongly charged with drug trafficking after being deceived. An ex-prosecutor investigates the case, uncovers a corrupt lawyer team's scheme, and restores justice despite obstruction from evil forces.", + "posterPath": "/n3ZnFqp988MWfIkT8OHofEJfjlt.jpg", + "backdropPath": "/4frrYwamVG0eXhdMTy3cpNNcCBp.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 80, + 53 + ], + "genres": [ + "Action", + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "2024-12-08", + "releaseYear": "2024", + "originalLanguage": "cn", + "voteAverage": 6.826, + "voteCount": 158, + "popularity": 51.5185 + }, + { + "id": 1468417, + "title": "First Moon", + "originalTitle": "First Moon", + "overview": "A young waitress is abducted by a religious cult, who are hell-bent on curing her from a sexually transmitted werewolf virus - or killing her in the process. Will she escape before the first full moon?", + "posterPath": "/hcjYvv4k9qs0lDG1Q3GIglT30IW.jpg", + "backdropPath": "/7h0qCqkuQzmG5vXN3lGBc06reLd.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-05-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.1, + "voteCount": 50, + "popularity": 48.4749 + }, + { + "id": 648457, + "title": "DEEMO Memorial Keys", + "originalTitle": "DEEMO サクラノオト -あなたの奏でた音が、今も響く-", + "overview": "Deemo is a lonely individual who lives in solitude, playing the piano in a castle. One day, a girl who has lost her memory falls from the sky. Wanting to help her recover her memories and return to her world, Deemo discovers that a tree kept atop the piano will grow whenever the piano is played.", + "posterPath": "/myQiAsoHWmVcoHkpYqb8jI0fhGD.jpg", + "backdropPath": "/1BXH1156pFDfBnlFiWLO6CUzJJd.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 10749, + 9648, + 14 + ], + "genres": [ + "Animation", + "Drama", + "Romance", + "Mystery", + "Fantasy" + ], + "releaseDate": "2022-02-25", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 18, + "popularity": 48.0759 + }, + { + "id": 1026821, + "title": "The Storm", + "originalTitle": "大雨", + "overview": "Poverty-stricken Daguzi encounters a child - Mantou - floating downstream at the river bank, he decides to take him by his side as his son, with compassion and affection.", + "posterPath": "/rIwxNjhl0ndF0V5zrYGdwplAJAU.jpg", + "backdropPath": "/qWRTIqDzxyOC6ndumxOngDMAHxl.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 28, + 12 + ], + "genres": [ + "Animation", + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2024-01-12", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 6, + "voteCount": 14, + "popularity": 47.9421 + }, + { + "id": 402431, + "title": "Wicked", + "originalTitle": "Wicked", + "overview": "In the land of Oz, ostracized and misunderstood green-skinned Elphaba is forced to share a room with the popular aristocrat Glinda at Shiz University, and the two's unlikely friendship is tested as they begin to fulfill their respective destinies as Glinda the Good and the Wicked Witch of the West.", + "posterPath": "/xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg", + "backdropPath": "/uKb22E0nlzr914bA9KyA5CVCOlV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 14 + ], + "genres": [ + "Drama", + "Romance", + "Fantasy" + ], + "releaseDate": "2024-11-20", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.923, + "voteCount": 2651, + "popularity": 47.9074 + }, + { + "id": 1038392, + "title": "The Conjuring: Last Rites", + "originalTitle": "The Conjuring: Last Rites", + "overview": "Paranormal investigators Ed and Lorraine Warren take on one last terrifying case involving mysterious entities they must confront.", + "posterPath": "/byWgphT74ClOVa8EOGzYDkl8DVL.jpg", + "backdropPath": "/tcBX2dtkNozZ0uDLVaxXrE6rqyN.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2025-09-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.976, + "voteCount": 1405, + "popularity": 46.7255 + }, + { + "id": 1084222, + "title": "Operation Blood Hunt", + "originalTitle": "Operation Blood Hunt", + "overview": "Prolific expert of the occult and whiskey, Reverend Conte, accompanies a ragtag group of military rejects to a remote South Pacific Island to investigate the disappearance of Marines units stationed there in 1944, said to be at the hands of the Japanese Imperial Army. Upon speaking with the island’s inhabitants, they soon discover the Marines had actually been massacred by a group of Lycanthropes, known to most as WEREWOLVES.", + "posterPath": "/u36L4VEFTRIw11eK3xw8zjT0blT.jpg", + "backdropPath": "/xp6lAdlYH5DfzxTL6h4W5lTV29G.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 27 + ], + "genres": [ + "Action", + "Adventure", + "Horror" + ], + "releaseDate": "2024-12-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 51, + "popularity": 46.4359 + }, + { + "id": 1223601, + "title": "Sisu: Road to Revenge", + "originalTitle": "Sisu 2", + "overview": "Returning to the house where his family was brutally murdered during the war, 'the man who refuses to die' dismantles it, loads it on a truck, and is determined to rebuild it somewhere safe in their honor. When the Red Army commander who killed his family comes back hellbent on finishing the job, a relentless, eye-popping cross-country chase ensues — a fight to the death.", + "posterPath": "/vUiAm0jbrPgbUDCOhRKsvdT0u5h.jpg", + "backdropPath": "/7SgljBnhPPoHxKoQL5ooIhrEgAS.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752 + ], + "genres": [ + "Action", + "War" + ], + "releaseDate": "2025-10-21", + "releaseYear": "2025", + "originalLanguage": "fi", + "voteAverage": 7.8, + "voteCount": 34, + "popularity": 45.7176 + }, + { + "id": 1426968, + "title": "The Gentleman", + "originalTitle": "Ya no quedan junglas", + "overview": "Aging ex-soldier Theo meets weekly with prostitute Olga to reminisce. After Olga's murder, Theo seeks bloody revenge, attracting attention of alcoholic cop Iborra and hitman Herodes.", + "posterPath": "/iIIZ3qIh7A3B8Y1VVo5laFyusVV.jpg", + "backdropPath": "/zmfaCjc4MNUWgEztT3pOOyMSMBw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-09-26", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.853, + "voteCount": 18, + "popularity": 45.6873 + }, + { + "id": 1244531, + "title": "Beast of War", + "originalTitle": "Beast of War", + "overview": "When their boat sinks while crossing the Timor Sea during World War II, a troop of young Australian soldiers must find a way to survive the harsh seas on a quickly shrinking raft. Hundreds of miles from anywhere, they must confront interpersonal conflicts, enemy attacks, and the advances of one very large, very hungry great white shark.", + "posterPath": "/2xgDjVEOtu5LlbPEngxfbCqWEFg.jpg", + "backdropPath": "/ktsHS7DhwS4M54I3CBkxNV5GlTM.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 10752, + 28 + ], + "genres": [ + "Thriller", + "Horror", + "War", + "Action" + ], + "releaseDate": "2025-09-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.365, + "voteCount": 52, + "popularity": 44.1296 + }, + { + "id": 1218762, + "title": "Jingle Bell Heist", + "originalTitle": "Jingle Bell Heist", + "overview": "Two down-on-their-luck hourly workers team up to rob a posh London department store on Christmas Eve. Will they steal each other's hearts along the way?", + "posterPath": "/rVOQF2Ucekug1B80A9crVx7Jn90.jpg", + "backdropPath": "/y6PLMIoHOP365rNDflD9VgnoALU.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 80, + 35 + ], + "genres": [ + "Romance", + "Crime", + "Comedy" + ], + "releaseDate": "2025-11-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.012, + "voteCount": 86, + "popularity": 42.9892 + }, + { + "id": 1377505, + "title": "Spithood", + "originalTitle": "Spithood", + "overview": "When a dangerous patient escapes confinement in a mental asylum and goes on a rampant killing spree, the night shift staff face their worst nightmare, as they fight for survival.", + "posterPath": "/loH2BJPC7dlCw8e8QNEZCz9kTc2.jpg", + "backdropPath": "/h4YdTMJ6h0Poyo5XHn8vk4wTczT.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-10-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 14, + "popularity": 42.9224 + }, + { + "id": 1242419, + "title": "Roofman", + "originalTitle": "Roofman", + "overview": "A former Army Ranger and struggling father turns to robbing McDonald’s restaurants by cutting holes in their roofs, earning him the nickname 'Roofman'. After escaping prison, he secretly lives inside a Toys “R” Us for six months, surviving undetected while planning his next move. But when he falls for a divorced mom drawn to his undeniable charm, his double life begins to unravel, setting off a compelling and suspenseful game of cat and mouse as his past closes in.", + "posterPath": "/pUpFD3Oq1eN5mdF9MDwCwH874P8.jpg", + "backdropPath": "/2YOnE2qmoyyOUqQsFit12gDSauk.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 18 + ], + "genres": [ + "Crime", + "Comedy", + "Drama" + ], + "releaseDate": "2025-10-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 256, + "popularity": 42.6256 + }, + { + "id": 1320414, + "title": "The Witness", + "originalTitle": "The Witness", + "overview": "In Iran, the retired dance teacher Tarlan witnesses her friend Rana's murder by her husband, who is an important government figure. When the police refuse to investigate, Tarlan must decide whether to bow to political pressure or risk her reputation and livelihood in pursuit of justice.", + "posterPath": "/1tzK329TG6wfzEIx60v3PUlcBDO.jpg", + "backdropPath": "/gclxJhAVzincHlp179yeEbKmSJy.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-04-04", + "releaseYear": "2025", + "originalLanguage": "fa", + "voteAverage": 7.7, + "voteCount": 15, + "popularity": 42.4869 + }, + { + "id": 1010581, + "title": "My Fault", + "originalTitle": "Culpa mía", + "overview": "Noah must leave her city, boyfriend, and friends to move into William Leister's mansion, the flashy and wealthy husband of her mother Rafaela. As a proud and independent 17 year old, Noah resists living in a mansion surrounded by luxury. However, it is there where she meets Nick, her new stepbrother, and the clash of their strong personalities becomes evident from the very beginning.", + "posterPath": "/w46Vw536HwNnEzOa7J24YH9DPRS.jpg", + "backdropPath": "/oz4U9eA6ilYf1tyiVuGmkftdLac.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 53 + ], + "genres": [ + "Drama", + "Romance", + "Thriller" + ], + "releaseDate": "2023-06-08", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 7.766, + "voteCount": 3932, + "popularity": 42.1452 + }, + { + "id": 24428, + "title": "The Avengers", + "originalTitle": "The Avengers", + "overview": "When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!", + "posterPath": "/RYMX2wcKCBAr24UyPD7xwmjaTn.jpg", + "backdropPath": "/9BBTo63ANSmhC4e6r62OJFuK2GL.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "2012-04-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.868, + "voteCount": 34273, + "popularity": 41.2137 + }, + { + "id": 1061474, + "title": "Superman", + "originalTitle": "Superman", + "overview": "Superman, a journalist in Metropolis, embarks on a journey to reconcile his Kryptonian heritage with his human upbringing as Clark Kent.", + "posterPath": "/ldyfo0BKmz5rWtJJKCvwaNS4cJT.jpg", + "backdropPath": "/yRBc6WY3r1Fz5Cjd6DhSvzqunED.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2025-07-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.411, + "voteCount": 3925, + "popularity": 41.0622 + }, + { + "id": 1234821, + "title": "Jurassic World Rebirth", + "originalTitle": "Jurassic World Rebirth", + "overview": "Five years after the events of Jurassic World Dominion, covert operations expert Zora Bennett is contracted to lead a skilled team on a top-secret mission to secure genetic material from the world's three most massive dinosaurs. When Zora's operation intersects with a civilian family whose boating expedition was capsized, they all find themselves stranded on an island where they come face-to-face with a sinister, shocking discovery that's been hidden from the world for decades.", + "posterPath": "/1RICxzeoNCAO5NpcRMIgg1XT6fm.jpg", + "backdropPath": "/fQOV47FHTJdaSuSUNlzP3zXUZWE.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2025-07-01", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.381, + "voteCount": 2559, + "popularity": 40.2258 + }, + { + "id": 1522377, + "title": "Two Worlds One Wish", + "originalTitle": "İki Dünya Bir Dilek", + "overview": "Twenty-one years after a magical meeting at a children's hospital, Bilge and Can suddenly begin hearing each other's voices telepathically. What seems like a miracle soon reveals a hidden secret, as fate-reuniting them after decades-has much more in store.", + "posterPath": "/mZcwX1aN2RdCLwamxdkoINIhVAm.jpg", + "backdropPath": "/kKWZq6M76mJM98U0HdpaxBRnPuD.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2025-11-24", + "releaseYear": "2025", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 18, + "popularity": 40.1752 + }, + { + "id": 507089, + "title": "Five Nights at Freddy's", + "originalTitle": "Five Nights at Freddy's", + "overview": "Recently fired and desperate for work, a troubled young man named Mike agrees to take a position as a night security guard at an abandoned theme restaurant: Freddy Fazbear's Pizzeria. But he soon discovers that nothing at Freddy's is what it seems.", + "posterPath": "/4dKRTUylqwXQ4VJz0BS84fqW2wa.jpg", + "backdropPath": "/7NRGAtu8E4343NSKwhkgmVRDINw.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2023-10-25", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.375, + "voteCount": 4647, + "popularity": 39.9168 + }, + { + "id": 937941, + "title": "Shelby Oaks", + "originalTitle": "Shelby Oaks", + "overview": "A woman's obsessive search for her missing sister leads her into a terrifying mystery at the hands of an unknown evil.", + "posterPath": "/i3omY4P6QUzFQlEeclWY92RuXCH.jpg", + "backdropPath": "/jOuu4mEBOuJVb6CkkmRDpjnrZed.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2025-10-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.75, + "voteCount": 106, + "popularity": 39.8495 + }, + { + "id": 1237082, + "title": "31 Minutes: One Hot Christmas", + "originalTitle": "31 Minutos: Calurosa Navidad", + "overview": "Puppeton, the town of 31 Minutes, faces such an infernally hot Christmas that Santa Claus cancels his visit! Bodoque the rabbit heroically volunteers to rescue the presents from the North Pole, while his friends improvise a disastrous Christmas show. But what they don't expect is Bodoque giving in to some irresistible temptations along the way.", + "posterPath": "/dv9UrOoicRiMGkzr2oj2YwSFY2K.jpg", + "backdropPath": "/3NNoi1GC26017b40g38QBQDZCe5.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 10402 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Music" + ], + "releaseDate": "2025-11-19", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.38, + "voteCount": 25, + "popularity": 38.3593 + }, + { + "id": 1156594, + "title": "Our Fault", + "originalTitle": "Culpa nuestra", + "overview": "Jenna and Lion's wedding brings about the long-awaited reunion between Noah and Nick after their breakup. Nick's inability to forgive Noah stands as an insurmountable barrier. He, heir to his grandfather's businesses, and she, starting her professional life, resist fueling a flame that's still alive. But now that their paths have crossed again, will love be stronger than resentment?", + "posterPath": "/yzqHt4m1SeY9FbPrfZ0C2Hi9x1s.jpg", + "backdropPath": "/srk5NlOnpEsd0hxVFiHfhtQtfDe.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2025-10-15", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.466, + "voteCount": 539, + "popularity": 37.766 + }, + { + "id": 911430, + "title": "F1", + "originalTitle": "F1", + "overview": "Racing legend Sonny Hayes is coaxed out of retirement to lead a struggling Formula 1 team—and mentor a young hotshot driver—while chasing one more chance at glory.", + "posterPath": "/vqBmyAj0Xm9LnS1xe1MSlMAJyHq.jpg", + "backdropPath": "/lkDYN0whyE82mcM20rwtwjbniKF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2025-06-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.806, + "voteCount": 2680, + "popularity": 37.5529 + }, + { + "id": 1296504, + "title": "Stand Your Ground", + "originalTitle": "Stand Your Ground", + "overview": "Former Special Forces operative, Jack Johnson, uses the Stand Your Ground law to seek vengeance for his wife’s murder, igniting a brutal war against a local crime lord’s family and ending in an explosive showdown.", + "posterPath": "/vKB59pPIYvjRxxEXoRoyUfaiBoD.jpg", + "backdropPath": "/wE1TZtB5G1fdiln3PPnnLhExuCz.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2025-05-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 57, + "popularity": 37.1416 + }, + { + "id": 157336, + "title": "Interstellar", + "originalTitle": "Interstellar", + "overview": "The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", + "posterPath": "/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg", + "backdropPath": "/5XNQBqnBwPA9yT0jZ0p3s8bbLh0.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 878 + ], + "genres": [ + "Adventure", + "Drama", + "Science Fiction" + ], + "releaseDate": "2014-11-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.463, + "voteCount": 38337, + "popularity": 36.73 + }, + { + "id": 1161617, + "title": "Code 3", + "originalTitle": "Code 3", + "overview": "A burned-out paramedic tries to survive his last 24 hours on the job while training a new recruit.", + "posterPath": "/gIAYMDb5mIAeCAj76q1sRsKjkzo.jpg", + "backdropPath": "/vZK3f5N8Fv2LcyFYLwt6dz0HE1H.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2025-09-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.683, + "voteCount": 131, + "popularity": 36.2956 + }, + { + "id": 957119, + "title": "Sidelined: The QB and Me", + "originalTitle": "Sidelined: The QB and Me", + "overview": "Dallas, a burdened but headstrong dancer, is determined to get into the best dance school in the country—her late mother’s alma mater. However, that dream is suddenly derailed when the cheeky yet secretly grieving football star, Drayton, crashes into her life with a unique story of his own. Will the two of them be able to grow into their dreams together, or will their dreams be sidelined?", + "posterPath": "/mSL6truNrWP1Bn9ng1rN0SkMI4f.jpg", + "backdropPath": "/cmT2WYpFBRk4UjQ0P984BoF8Eba.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2025-02-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.092, + "voteCount": 109, + "popularity": 35.9429 + }, + { + "id": 1241983, + "title": "Train Dreams", + "originalTitle": "Train Dreams", + "overview": "A logger leads a life of quiet grace as he experiences love and loss during an era of monumental change in early 20th-century America.", + "posterPath": "/l3zS4YnpOi4usyEXGJMtxSqDDyb.jpg", + "backdropPath": "/u5NWHVhZ6HWc1fXnqn82cMar5St.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-11-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.335, + "voteCount": 206, + "popularity": 35.1518 + }, + { + "id": 736526, + "title": "Troll", + "originalTitle": "Troll", + "overview": "When an explosion in the Norwegian mountains awakens an ancient troll, officials appoint a fearless paleontologist to stop it from wreaking deadly havoc.", + "posterPath": "/ulgKdif3ubMACDltr8VZy6fyVjW.jpg", + "backdropPath": "/ml2Nl1JzWV0WlniVuF5YLrYt1ot.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 12 + ], + "genres": [ + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2022-11-30", + "releaseYear": "2022", + "originalLanguage": "no", + "voteAverage": 6.59, + "voteCount": 1873, + "popularity": 35.1091 + }, + { + "id": 11499, + "title": "Frost/Nixon", + "originalTitle": "Frost/Nixon", + "overview": "For three years after being forced from office, Nixon remained silent. But in summer 1977, the steely, cunning former commander-in-chief agreed to sit for one all-inclusive interview to confront the questions of his time in office and the Watergate scandal that ended his presidency. Nixon surprised everyone in selecting Frost as his televised confessor, intending to easily outfox the breezy British showman and secure a place in the hearts and minds of Americans. Likewise, Frost's team harboured doubts about their boss's ability to hold his own. But as the cameras rolled, a charged battle of wits resulted.", + "posterPath": "/z4cQ2mJxwPZUwVh97yX9oNsLLZQ.jpg", + "backdropPath": "/20wSDAS6rUWhkZQ2PxPC9TRsAd1.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2008-10-15", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.274, + "voteCount": 1244, + "popularity": 34.4324 + }, + { + "id": 1511789, + "title": "Captain Hook: The Cursed Tides", + "originalTitle": "Captain Hook: The Cursed Tides", + "overview": "In the aftermath of a devastating defeat by his archnemesis Admiral Smee, Captain Hook finds refuge in the coastal town of Eldritch Landing.", + "posterPath": "/bcP7FtskwsNp1ikpMQJzDPjofP5.jpg", + "backdropPath": "/ygOR390GzOX5Quv0kAAcUNDG7fp.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 27 + ], + "genres": [ + "Adventure", + "Action", + "Horror" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.05, + "voteCount": 40, + "popularity": 34.2738 + }, + { + "id": 1175942, + "title": "The Bad Guys 2", + "originalTitle": "The Bad Guys 2", + "overview": "The now-reformed Bad Guys are trying (very, very hard) to be good, but instead find themselves hijacked into a high-stakes, globe-trotting heist, masterminded by a new team of criminals they never saw coming: The Bad Girls.", + "posterPath": "/c1msaKf1wyuKcmLjjJd6rIBPFcd.jpg", + "backdropPath": "/lB96EMr5A7Og81UhyldJvvy35r.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 80, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Crime", + "Adventure", + "Animation" + ], + "releaseDate": "2025-07-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 545, + "popularity": 34.0666 + }, + { + "id": 812583, + "title": "Wake Up Dead Man: A Knives Out Mystery", + "originalTitle": "Wake Up Dead Man: A Knives Out Mystery", + "overview": "When young priest Jud Duplenticy is sent to assist charismatic firebrand Monsignor Jefferson Wicks, it’s clear that all is not well in the pews. After a sudden and seemingly impossible murder rocks the town, the lack of an obvious suspect prompts local police chief Geraldine Scott to join forces with renowned detective Benoit Blanc to unravel a mystery that defies all logic.", + "posterPath": "/qCOGGi8JBVEZMc3DVby8rUivyXz.jpg", + "backdropPath": "/c1oFbGc89FVZ4KvAe8riNJ8lPX1.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 9648, + 80 + ], + "genres": [ + "Comedy", + "Mystery", + "Crime" + ], + "releaseDate": "2025-11-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 32, + "popularity": 33.9687 + }, + { + "id": 62201, + "title": "Shahenshah", + "originalTitle": "शहँशाह", + "overview": "Inspector Srivastav is framed by a wily and cunning gangster, J.K., and unable to prove his innocence, hangs himself, leaving behind his wife, and son, Vijay. Years later, Vijay has grown up and has joined the police force as an Inspector. Unlike his dad, he is corrupt and does accept bribes to turn a nelson's eye to crime. The City Police are assigned the task of apprehending a customed man called \"Shahenshah\", who operates at night and targets, tries and kills gangsters in a \"Judge and Executioner \"style. No one knows the real identity of Shahenshah, as he is feared by the police department, and respected by the poor and middle-class.", + "posterPath": "/g8noCys7ElC73lcluN4kDeUzhYQ.jpg", + "backdropPath": "/qDyFe7gMnom72qfUEYzWrgwB4ss.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "1988-01-29", + "releaseYear": "1988", + "originalLanguage": "hi", + "voteAverage": 6.146, + "voteCount": 24, + "popularity": 33.8678 + }, + { + "id": 1087192, + "title": "How to Train Your Dragon", + "originalTitle": "How to Train Your Dragon", + "overview": "On the rugged isle of Berk, where Vikings and dragons have been bitter enemies for generations, Hiccup stands apart, defying centuries of tradition when he befriends Toothless, a feared Night Fury dragon. Their unlikely bond reveals the true nature of dragons, challenging the very foundations of Viking society.", + "posterPath": "/q5pXRYTycaeW6dEgsCrd4mYPmxM.jpg", + "backdropPath": "/vHTFrcqJoCi1is3XN0PZe2LSnI2.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 10751, + 28, + 12 + ], + "genres": [ + "Fantasy", + "Family", + "Action", + "Adventure" + ], + "releaseDate": "2025-06-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.991, + "voteCount": 2225, + "popularity": 33.6998 + }, + { + "id": 8871, + "title": "How the Grinch Stole Christmas", + "originalTitle": "How the Grinch Stole Christmas", + "overview": "The Grinch decides to rob Whoville of Christmas - but a dash of kindness from little Cindy Lou Who and her family may be enough to melt his heart...", + "posterPath": "/1WZbbPApEivA421gCOluuzMMKCk.jpg", + "backdropPath": "/sy0vo1cmpKqwPRiMUiJ45jyLsX7.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 14 + ], + "genres": [ + "Family", + "Comedy", + "Fantasy" + ], + "releaseDate": "2000-11-17", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.778, + "voteCount": 7954, + "popularity": 33.4432 + }, + { + "id": 798645, + "title": "The Running Man", + "originalTitle": "The Running Man", + "overview": "Desperate to save his sick daughter, working-class Ben Richards is convinced by The Running Man's charming but ruthless producer to enter the deadly competition game as a last resort. But Ben's defiance, instincts, and grit turn him into an unexpected fan favorite - and a threat to the entire system. As ratings skyrocket, so does the danger, and Ben must outwit not just the Hunters, but a nation addicted to watching him fall.", + "posterPath": "/dKL78O9zxczVgjtNcQ9UkbYLzqX.jpg", + "backdropPath": "/docDyCJrhPoFXAckB1aOiIv9Mz0.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2025-11-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.771, + "voteCount": 246, + "popularity": 33.3663 + }, + { + "id": 1214140, + "title": "Monster Island", + "originalTitle": "Orang Ikan", + "overview": "In the Pacific, 1944, a Japanese soldier and a British prisoner of war are stranded on a deserted island, hunted by a deadly creature. Two mortal enemies must come together to survive the unknown.", + "posterPath": "/x1JOs4xWNr1QYjDAXHxWw1NJ7Sq.jpg", + "backdropPath": "/fxKC10HQliVA3Tn5smOclqzL96N.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14, + 28, + 53 + ], + "genres": [ + "Horror", + "Fantasy", + "Action", + "Thriller" + ], + "releaseDate": "2025-05-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.848, + "voteCount": 79, + "popularity": 33.0907 + }, + { + "id": 1214931, + "title": "Nuremberg", + "originalTitle": "Nuremberg", + "overview": "In postwar Germany, an American psychiatrist must determine whether Nazi prisoners are fit to go on trial for war crimes, and finds himself in a complex battle of intellect and ethics with Hermann Göring, Hitler's right-hand man.", + "posterPath": "/fi7GXCxe0hIQRWwvIkZ1wI3fCHk.jpg", + "backdropPath": "/xsO1Qgru8sETLTcVla8MrqxOVr0.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2025-11-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.329, + "voteCount": 41, + "popularity": 32.9466 + }, + { + "id": 1007734, + "title": "Nobody 2", + "originalTitle": "Nobody 2", + "overview": "Former assassin Hutch Mansell takes his family on a nostalgic vacation to a small-town theme park, only to be pulled back into violence when they clash with a corrupt operator, a crooked sheriff, and a ruthless crime boss.", + "posterPath": "/xGLoqM9peusKQeuwlSw2Qlhx740.jpg", + "backdropPath": "/82C04rTiXYZ7c8XZv91Nu53w82Y.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-08-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.048, + "voteCount": 1024, + "popularity": 30.908 + }, + { + "id": 1299655, + "title": "Blue Moon", + "originalTitle": "Blue Moon", + "overview": "On the evening of March 31, 1943, legendary lyricist Lorenz Hart confronts his shattered self-confidence in Sardi’s bar as his former collaborator Richard Rodgers celebrates the opening night of his ground-breaking hit musical “Oklahoma!”.", + "posterPath": "/AetJmEIrhww0xnfktYgNl6ztDrl.jpg", + "backdropPath": "/gdxYE9xSutccbpIBlyB4F7pl0gA.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.861, + "voteCount": 61, + "popularity": 30.8892 + }, + { + "id": 106, + "title": "Predator", + "originalTitle": "Predator", + "overview": "A team of elite commandos on a secret mission in a Central American jungle come to find themselves hunted by an extraterrestrial warrior.", + "posterPath": "/k3mW4qfJo6SKqe6laRyNGnbB9n5.jpg", + "backdropPath": "/70cezTFUmtijJLqnZw02gQlKVKJ.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "1987-06-12", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 8676, + "popularity": 30.8302 + }, + { + "id": 155, + "title": "The Dark Knight", + "originalTitle": "The Dark Knight", + "overview": "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", + "posterPath": "/qJ2tW6WMUDux911r6m7haRef0WH.jpg", + "backdropPath": "/dqK9Hag1054tghRQSqLSfrkvQnA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 80, + 53 + ], + "genres": [ + "Drama", + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2008-07-16", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.524, + "voteCount": 34782, + "popularity": 30.7333 + }, + { + "id": 793387, + "title": "Holy Night: Demon Hunters", + "originalTitle": "거룩한 밤: 데몬 헌터스", + "overview": "When a devil-worshipping criminal network plunges Seoul into chaos, the police turn to Holy Night—a trio of supernatural demon hunters—to restore order and defeat the rising evil.", + "posterPath": "/v3Mo77Qjp6pctpD4eJaNT6kFRSB.jpg", + "backdropPath": "/5A01YSCPYoCOZOhh9tU7F3Htxkf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 27, + 53 + ], + "genres": [ + "Action", + "Fantasy", + "Horror", + "Thriller" + ], + "releaseDate": "2025-04-30", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 6.768, + "voteCount": 71, + "popularity": 30.4987 + }, + { + "id": 76600, + "title": "Avatar: The Way of Water", + "originalTitle": "Avatar: The Way of Water", + "overview": "Set more than a decade after the events of the first film, learn the story of the Sully family (Jake, Neytiri, and their kids), the trouble that follows them, the lengths they go to keep each other safe, the battles they fight to stay alive, and the tragedies they endure.", + "posterPath": "/t6HIqrRAclMCA60NsSmeqe9RmNV.jpg", + "backdropPath": "/cd8YDn7M0lfaHhZdU6MvCDxPalP.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2022-12-14", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.61, + "voteCount": 13103, + "popularity": 30.0626 + }, + { + "id": 1010756, + "title": "The Strangers: Chapter 2", + "originalTitle": "The Strangers: Chapter 2", + "overview": "When The Strangers learn that one of their victims, Maya, is still alive, they return to finish what they’ve started.", + "posterPath": "/aEk9jLbiKTVssdATbrF879NvyyJ.jpg", + "backdropPath": "/sSaUmM4bnZJ7PW5dlyRi7iONB65.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-09-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.073, + "voteCount": 151, + "popularity": 28.6384 + }, + { + "id": 19995, + "title": "Avatar", + "originalTitle": "Avatar", + "overview": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.", + "posterPath": "/gKY6q7SjCkAU6FqvqWybDYgUKIF.jpg", + "backdropPath": "/7JNzw1tSZZEgsBw6lu0VfO2X2Ef.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy", + "Science Fiction" + ], + "releaseDate": "2009-12-15", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.594, + "voteCount": 32864, + "popularity": 28.0473 + }, + { + "id": 628847, + "title": "Trap House", + "originalTitle": "Trap House", + "overview": "An undercover DEA agent and his partner embark on a game of cat and mouse with an audacious, and surprising group of thieves - their own rebellious teenagers, who have begun robbing from a dangerous cartel, using their parents' tactics and top-secret intel to do it.", + "posterPath": "/ctU9S47MoJDN9CB7SCaitcfyyIu.jpg", + "backdropPath": "/oIJjO1CvEdTMFNkWfHaV0RB584G.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-11-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 15, + "popularity": 28.0287 + }, + { + "id": 1219158, + "title": "Lover", + "originalTitle": "லவ்வர்", + "overview": "An alcoholic designer struggles to save his six-year relationship while facing personal challenges and misunderstandings. As their bond is tested, he begins to confront his past and question whether love alone is enough to hold them together.", + "posterPath": "/5rN7wzvM9oAR35sQVNUt8JuTDFS.jpg", + "backdropPath": "/7OwcPLgNgK3CmNaXQdLqeVStnFC.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2024-02-07", + "releaseYear": "2024", + "originalLanguage": "ta", + "voteAverage": 7.286, + "voteCount": 14, + "popularity": 28.0101 + }, + { + "id": 11252, + "title": "Psycho", + "originalTitle": "Psycho", + "overview": "A young female embezzler arrives at the Bates Motel, which has terrible secrets of its own.", + "posterPath": "/6pQpZu6JjPsbHzjhG545OsjU2TG.jpg", + "backdropPath": "/87M0viCmXovCY4VO3nmGwzLwiSk.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "1998-12-04", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 1014, + "popularity": 27.9036 + }, + { + "id": 1280450, + "title": "Stolen Girl", + "originalTitle": "Stolen Girl", + "overview": "In 1993, Maureen’s six-year-old daughter Amina is snuck out of the country by her ex-husband, Karim. After years of unsuccessful attempts to find her, Maureen intersects with a professional retriever of internationally abducted children who promises to help her find Amina in exchange for her collaboration.", + "posterPath": "/fZlNXEHZsBp7unqw009MeBbMv87.jpg", + "backdropPath": "/qcDDn7WeKBenM4nLlOPXAeJ4hpg.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 12 + ], + "genres": [ + "Thriller", + "Action", + "Adventure" + ], + "releaseDate": "2025-09-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 91, + "popularity": 27.6653 + }, + { + "id": 1025527, + "title": "Abyss", + "originalTitle": "Six jours", + "overview": "11 years ago, inspector Malik couldn’t solve a kidnapping case and a little girl died. Now with only a few days before the crime gets classified, he decides to reopen the case. Malik owes it to the mother and to himself. As he digs into the past, a child is kidnapped again. The pattern is the same one as a decade ago, it’s no coincidence. Malik knows he has a few days to make things right and to bring justice.", + "posterPath": "/foyiQu23zq4WhmffnQkFiNAvqcJ.jpg", + "backdropPath": "/tLf5hjuO4gx62lVojPiHsIzCroh.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2024-12-11", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 5.951, + "voteCount": 82, + "popularity": 27.2117 + }, + { + "id": 346364, + "title": "It", + "originalTitle": "It", + "overview": "In a small town in Maine, seven children known as The Losers Club come face to face with life problems, bullies and a monster that takes the shape of a clown called Pennywise.", + "posterPath": "/9E2y5Q7WlCVNEhP5GiVTjhEhx1o.jpg", + "backdropPath": "/qVGpxnjrGlHaSTCqTQI6viBDSfp.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2017-09-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.238, + "voteCount": 19843, + "popularity": 27.1943 + }, + { + "id": 507244, + "title": "Afterburn", + "originalTitle": "Afterburn", + "overview": "Set against the backdrop of a postapocalyptic Earth whose Eastern Hemisphere was destroyed by a massive solar flare, leaving what life remains mutated from radiation and fallout. The story revolves around a group of treasure hunters who extract such objects as the Mona Lisa, the Rosetta Stone and the Crown Jewels while facing rival hunters, mutants and pirates.", + "posterPath": "/hrze9JXp2QJpc2WjLfSUtRxyYSb.jpg", + "backdropPath": "/kHOfxq7cMTXyLbj0UmdoGhT540O.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 35 + ], + "genres": [ + "Science Fiction", + "Action", + "Comedy" + ], + "releaseDate": "2025-08-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.828, + "voteCount": 132, + "popularity": 27.0657 + }, + { + "id": 950387, + "title": "A Minecraft Movie", + "originalTitle": "A Minecraft Movie", + "overview": "Four misfits find themselves struggling with ordinary problems when they are suddenly pulled through a mysterious portal into the Overworld: a bizarre, cubic wonderland that thrives on imagination. To get back home, they'll have to master this world while embarking on a magical quest with an unexpected, expert crafter, Steve.", + "posterPath": "/yFHHfHcUgGAxziP1C3lLt0q2T4s.jpg", + "backdropPath": "/2Nti3gYAX513wvhp8IiLL6ZDyOm.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 35, + 12, + 28 + ], + "genres": [ + "Family", + "Fantasy", + "Comedy", + "Adventure", + "Action" + ], + "releaseDate": "2025-03-31", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.346, + "voteCount": 2542, + "popularity": 26.9255 + }, + { + "id": 372058, + "title": "Your Name.", + "originalTitle": "君の名は。", + "overview": "High schoolers Mitsuha and Taki are complete strangers living separate lives. But one night, they suddenly switch places. Mitsuha wakes up in Taki’s body, and he in hers. This bizarre occurrence continues to happen randomly, and the two must adjust their lives around each other.", + "posterPath": "/q719jXXEzOoYaps6babgKnONONX.jpg", + "backdropPath": "/8x9iKH8kWA0zdkgNdpAew7OstYe.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10749, + 18 + ], + "genres": [ + "Animation", + "Romance", + "Drama" + ], + "releaseDate": "2016-08-26", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.48, + "voteCount": 12134, + "popularity": 26.8365 + }, + { + "id": 1022787, + "title": "Elio", + "originalTitle": "Elio", + "overview": "Elio, a space fanatic with an active imagination, finds himself on a cosmic misadventure where he must form new bonds with eccentric alien lifeforms, navigate a crisis of intergalactic proportions and somehow discover who he is truly meant to be.", + "posterPath": "/7z8jDiTZZco9moIKpTUImFtTy7o.jpg", + "backdropPath": "/bvATKuxz9Wu53caHUJ7SP38gFQ3.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16, + 878 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation", + "Science Fiction" + ], + "releaseDate": "2025-06-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.979, + "voteCount": 689, + "popularity": 26.7611 + }, + { + "id": 1284120, + "title": "The Ugly Stepsister", + "originalTitle": "Den stygge stesøsteren", + "overview": "In a fairy-tale kingdom where beauty is a brutal business, Elvira battles to compete with her incredibly beautiful stepsister, and she will go to any length to catch the prince’s eye.", + "posterPath": "/rayAREIKtSinuov10GvrZHyXfXH.jpg", + "backdropPath": "/ev9kxdoJ5IYVprt1OvH2SMWJdU1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 14, + 18 + ], + "genres": [ + "Horror", + "Comedy", + "Fantasy", + "Drama" + ], + "releaseDate": "2025-03-07", + "releaseYear": "2025", + "originalLanguage": "no", + "voteAverage": 7.346, + "voteCount": 719, + "popularity": 26.7342 + }, + { + "id": 552524, + "title": "Lilo & Stitch", + "originalTitle": "Lilo & Stitch", + "overview": "The wildly funny and touching story of a lonely Hawaiian girl and the fugitive alien who helps to mend her broken family.", + "posterPath": "/ckQzKpQJO4ZQDCN5evdpKcfm7Ys.jpg", + "backdropPath": "/7Zx3wDG5bBtcfk8lcnCWDOLM4Y4.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 878, + 35, + 12 + ], + "genres": [ + "Family", + "Science Fiction", + "Comedy", + "Adventure" + ], + "releaseDate": "2025-05-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.248, + "voteCount": 1864, + "popularity": 26.6134 + }, + { + "id": 1257009, + "title": "Primitive War", + "originalTitle": "Primitive War", + "overview": "During the Vietnam War, a recon unit ventures to an isolated jungle valley to uncover the fate of a missing platoon. They soon find themselves in a fight for their lives against an unexpected enemy — prehistoric dinosaurs.", + "posterPath": "/7eKt7FpNgSGCKnwyeOnlC7usf2V.jpg", + "backdropPath": "/bWF5ImUscXXYia8owpm8coadR4m.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 10752 + ], + "genres": [ + "Action", + "Horror", + "War" + ], + "releaseDate": "2025-08-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 175, + "popularity": 26.3776 + }, + { + "id": 1022789, + "title": "Inside Out 2", + "originalTitle": "Inside Out 2", + "overview": "Teenager Riley's mind headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions! Joy, Sadness, Anger, Fear and Disgust, who’ve long been running a successful operation by all accounts, aren’t sure how to feel when Anxiety shows up. And it looks like she’s not alone.", + "posterPath": "/vpnVM9B6NMmQpWeZvzLvDESb2QY.jpg", + "backdropPath": "/p5ozvmdgsmbWe0H8Xk7Rc8SCwAB.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2024-06-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.551, + "voteCount": 6283, + "popularity": 26.3244 + }, + { + "id": 278, + "title": "The Shawshank Redemption", + "originalTitle": "The Shawshank Redemption", + "overview": "Imprisoned in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.", + "posterPath": "/9cqNxx0GxF0bflZmeSMuL5tnGzr.jpg", + "backdropPath": "/zfbjgQE1uSd9wiPTX4VzsLi0rGG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1994-09-23", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8.713, + "voteCount": 29311, + "popularity": 26.2518 + }, + { + "id": 1214130, + "title": "Stitch Head", + "originalTitle": "Stitch Head", + "overview": "Stitch Head was the first creature brought to 'almost life' by mad professor Erasmus. In the years since, he’s become nursemaid to the master’s ever-growing menagerie of neglected creatures, tasked with teaching them to suppress their 'inner monster' and hide out in the castle — away from prying eyes and itchy pitchfork fingers, of the village mob in the valley below. But when grubby circus impresario Fulbert Freakfinder arrives offering Stitch Head a starring role in his freak show, our hero is tempted by the promise of love and acceptance.", + "posterPath": "/p0ZOIaQ8oLEGmQVrYcmvIOUuSqs.jpg", + "backdropPath": "/zIFFlcvilrrbUlveEbIsFAtUfGT.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751, + 35 + ], + "genres": [ + "Animation", + "Adventure", + "Family", + "Comedy" + ], + "releaseDate": "2025-10-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 15, + "popularity": 26.1731 + }, + { + "id": 1241982, + "title": "Moana 2", + "originalTitle": "Moana 2", + "overview": "After receiving an unexpected call from her wayfinding ancestors, Moana journeys alongside Maui and a new crew to the far seas of Oceania and into dangerous, long-lost waters for an adventure unlike anything she's ever faced.", + "posterPath": "/aLVkiINlIeCkcZIzb7XHzPYgO6L.jpg", + "backdropPath": "/zo8CIjJ2nfNOevqNajwMRO6Hwka.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16, + 14 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation", + "Fantasy" + ], + "releaseDate": "2024-11-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 2807, + "popularity": 26.08 + }, + { + "id": 541671, + "title": "Ballerina", + "originalTitle": "Ballerina", + "overview": "Taking place during the events of John Wick: Chapter 3 – Parabellum, Eve Macarro begins her training in the assassin traditions of the Ruska Roma.", + "posterPath": "/2VUmvqsHb6cEtdfscEA6fqqVzLg.jpg", + "backdropPath": "/1yktYsxkmUtUFTUnCAUaqG6FEiz.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2025-06-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.318, + "voteCount": 2014, + "popularity": 26.0225 + }, + { + "id": 597, + "title": "Titanic", + "originalTitle": "Titanic", + "overview": "101-year-old Rose DeWitt Bukater tells the story of her life aboard the Titanic, 84 years later. A young Rose boards the ship with her mother and fiancé. Meanwhile, Jack Dawson and Fabrizio De Rossi win third-class tickets aboard the ship. Rose tells the whole story from Titanic's departure through to its death—on its first and last voyage—on April 15, 1912.", + "posterPath": "/9xjZS2rlVxm8SFx8kPC3aIGCOYQ.jpg", + "backdropPath": "/xnHVX37XZEp33hhCbYlQFq7ux1J.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1997-11-18", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.903, + "voteCount": 26514, + "popularity": 26.0188 + }, + { + "id": 639988, + "title": "No Other Choice", + "originalTitle": "어쩔수가없다", + "overview": "After being laid off and humiliated by a ruthless job market, a veteran paper mill manager descends into violence in a desperate bid to reclaim his dignity.", + "posterPath": "/vc2S0dvgpsM0XfSiXZDMVkRCSSU.jpg", + "backdropPath": "/s6aB9kjxNg0mu2361IkCUSpyHJV.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 35 + ], + "genres": [ + "Crime", + "Thriller", + "Comedy" + ], + "releaseDate": "2025-09-24", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.8, + "voteCount": 75, + "popularity": 25.9849 + }, + { + "id": 604079, + "title": "The Long Walk", + "originalTitle": "The Long Walk", + "overview": "In a dystopian, alternate-America ruled by a totalitarian regime, fifty teenage boys take part in a deadly annual walking contest, forced to maintain a minimum pace or be executed, until only one survivor remains.", + "posterPath": "/wobVTa99eW0ht6c1rNNzLkazPtR.jpg", + "backdropPath": "/pcJft6lFWsJxutwpLHVYfmZRPQp.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878, + 27 + ], + "genres": [ + "Thriller", + "Science Fiction", + "Horror" + ], + "releaseDate": "2025-09-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 856, + "popularity": 25.7435 + }, + { + "id": 1035259, + "title": "The Naked Gun", + "originalTitle": "The Naked Gun", + "overview": "Only one man has the particular set of skills... to lead Police Squad and save the world: Lt. Frank Drebin Jr. Following in his father's footsteps, he must solve a murder case to prevent Police Squad from closure.", + "posterPath": "/rmwQ8GsdQ1M3LtemNWLErle2nBU.jpg", + "backdropPath": "/1wi1hcbl6KYqARjdQ4qrBWZdiau.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2025-07-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.504, + "voteCount": 1132, + "popularity": 25.7406 + }, + { + "id": 81467, + "title": "Laura's Toys", + "originalTitle": "Laura's Toys", + "overview": "Archaeologist Walter and his wife Laura are working at a dig on a small island off the coast of Sweden. One day Laura catches Walter having a go at it with his sexy assistant, Anna. Laura calls in her old friend--and former lesbian lover--Hanni to help get her revenge on Walter by having she and Hanni seduce Anna.", + "posterPath": "/rqzupBGrChmHG5Wl6wy5vI0V3Vz.jpg", + "backdropPath": "/dCz15Nt6MnVPBxBQwfGaGZPpEX2.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1975-01-01", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 4.824, + "voteCount": 17, + "popularity": 25.7043 + }, + { + "id": 474350, + "title": "It Chapter Two", + "originalTitle": "It Chapter Two", + "overview": "27 years after overcoming the malevolent supernatural entity Pennywise, the former members of the Losers' Club, who have grown up and moved away from Derry, are brought back together by a devastating phone call.", + "posterPath": "/zfE0R94v1E8cuKAerbskfD3VfUt.jpg", + "backdropPath": "/8moTOzunF7p40oR5XhlDvJckOSW.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2019-09-04", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.838, + "voteCount": 9270, + "popularity": 25.5335 + }, + { + "id": 1429738, + "title": "Tee Yai: Born to Be Bad", + "originalTitle": "ตี๋ใหญ่ ฤกษ์ดาวโจร", + "overview": "In 1980s Bangkok, a wily thief stages a series of daring heists, baffling the authorities and the public — until one cop sets out to take him down.", + "posterPath": "/ig00LBM2rv4fmCJOPATyRWOJnlL.jpg", + "backdropPath": "/xmnqFHhGNYHf5JFy4GSfiIEG0ly.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 18 + ], + "genres": [ + "Crime", + "Action", + "Drama" + ], + "releaseDate": "2025-11-12", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 4.987, + "voteCount": 38, + "popularity": 25.5015 + }, + { + "id": 1421990, + "title": "The Baltimorons", + "originalTitle": "The Baltimorons", + "overview": "A newly sober man's Christmas Eve dental emergency leads to an unexpected romance with his older dentist as they explore Baltimore together.", + "posterPath": "/yZWcrfj3mFf9LGItIFwa7DSkedz.jpg", + "backdropPath": "/coon7luAq01HIUr4qWvujZ04EDX.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-08-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.658, + "voteCount": 19, + "popularity": 25.498 + }, + { + "id": 1134278, + "title": "Pacific Fear", + "originalTitle": "Maraé", + "overview": "A surf vacation turns into a nightmare when a group of surfers go looking for waves on a mysterious island that isn't on any map.", + "posterPath": "/s2XGmV7exdrQ9WUTxqgjC3Ch0UZ.jpg", + "backdropPath": "/mijSBMlvAp4QoCpEShrl62444Cb.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-07-11", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 4.486, + "voteCount": 36, + "popularity": 25.486 + }, + { + "id": 1305717, + "title": "Hunting Grounds", + "originalTitle": "Hunting Grounds", + "overview": "Desperate to find refuge for her children, Chloe Marvino runs away from her Mafia tied husband, and finds shelter in a cabin with a recluse drifter named Jake. But as her husband's henchmen draw closer to her, it turns out that Jake is the biggest enemy of them all.", + "posterPath": "/cgZjpqRQt9sk6XMCwZ3B1NPAaoy.jpg", + "backdropPath": "/1leYKN0DPNffpldGnCWnbXaiWoD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-05-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.667, + "voteCount": 63, + "popularity": 25.4488 + }, + { + "id": 1086260, + "title": "The Astronaut", + "originalTitle": "The Astronaut", + "overview": "After returning from her first space mission, astronaut Sam Walker is placed under NASA’s care at a high security house for rehabilitation and medical testing. However, when disturbing occurrences begin happening around the property, she fears that something extraterrestrial has followed her back to Earth", + "posterPath": "/souvvkJHYhztC1UqZ8lEVUiJa3J.jpg", + "backdropPath": "/3C01kAcKGR6FwsUUSOvJ8N82pqr.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27, + 53 + ], + "genres": [ + "Science Fiction", + "Horror", + "Thriller" + ], + "releaseDate": "2025-09-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 96, + "popularity": 25.2304 + }, + { + "id": 238, + "title": "The Godfather", + "originalTitle": "The Godfather", + "overview": "Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.", + "posterPath": "/3bhkrj58Vtu7enYsRolD1fZdja1.jpg", + "backdropPath": "/tmU7GeKVybMWFButWEGl2M4GeiP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1972-03-14", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 8.685, + "voteCount": 22122, + "popularity": 25.1984 + }, + { + "id": 980477, + "title": "Ne Zha 2", + "originalTitle": "哪吒之魔童闹海", + "overview": "After a catastrophic event leaves their bodies destroyed, Ne Zha and Ao Bing are granted a fragile second chance at life. As tensions rise between the dragon clans and celestial forces, the two must undergo a series of perilous trials that will test their bond, challenge their identities, and decide the fate of both mortals and immortals.", + "posterPath": "/cb5NyNrqiCNNoDkA8FfxHAtypdG.jpg", + "backdropPath": "/8btfz81bOJ2lC7cujYBTw03wzg3.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 12, + 28 + ], + "genres": [ + "Animation", + "Fantasy", + "Adventure", + "Action" + ], + "releaseDate": "2025-01-29", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.029, + "voteCount": 469, + "popularity": 25.1379 + }, + { + "id": 66245, + "title": "Arunachalam", + "originalTitle": "அருணாச்சலம்", + "overview": "Arunachalam, the son of a prominent village elder, discovers the truth about his past.", + "posterPath": "/vplqDhbUk5GMPUosMuQy91NePxv.jpg", + "backdropPath": "/z2WjRzdsP5pChOjFADIXXfd5XpZ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 35 + ], + "genres": [ + "Action", + "Drama", + "Comedy" + ], + "releaseDate": "1997-04-10", + "releaseYear": "1997", + "originalLanguage": "ta", + "voteAverage": 7.3, + "voteCount": 28, + "popularity": 24.8661 + }, + { + "id": 772, + "title": "Home Alone 2: Lost in New York", + "originalTitle": "Home Alone 2: Lost in New York", + "overview": "Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card—despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas Eve.", + "posterPath": "/uuitWHpJwxD1wruFl2nZHIb4UGN.jpg", + "backdropPath": "/dGiPJO75b9GmXqxvusbKlcYrDcg.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 12 + ], + "genres": [ + "Comedy", + "Family", + "Adventure" + ], + "releaseDate": "1992-11-15", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.77, + "voteCount": 10211, + "popularity": 24.2963 + }, + { + "id": 338969, + "title": "The Toxic Avenger Unrated", + "originalTitle": "The Toxic Avenger Unrated", + "overview": "When a downtrodden janitor, Winston Gooze, is exposed to a catastrophic toxic accident, he’s transformed into a new kind of hero: The Toxic Avenger. Now, Toxie must rise from outcast to savior, taking on ruthless corporate overlords and corrupt forces who threaten his son, his friends, and his community.", + "posterPath": "/cCWojb6N9UcTzNVtS4bOM3vQ30x.jpg", + "backdropPath": "/ewxiPfbKklk9FJZ2ECsDyJDQjvX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 878 + ], + "genres": [ + "Action", + "Comedy", + "Science Fiction" + ], + "releaseDate": "2025-08-28", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.113, + "voteCount": 216, + "popularity": 24.1537 + }, + { + "id": 671, + "title": "Harry Potter and the Philosopher's Stone", + "originalTitle": "Harry Potter and the Philosopher's Stone", + "overview": "Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard—with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths—and about the villain who's to blame.", + "posterPath": "/wuMc08IPKEatf9rnMNXvIDxqP4W.jpg", + "backdropPath": "/bfh9Z3Ghz4FOJAfLOAhmc3ccnHU.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2001-11-16", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 28856, + "popularity": 24.1523 + }, + { + "id": 1316147, + "title": "Grand Prix of Europe", + "originalTitle": "Grand Prix of Europe", + "overview": "Edda, a young mouse and the daughter of fairground operator Erwin, dreams of becoming a race car driver. Ahead of the 50th anniversary of the European Grand Prix, Edda gets the opportunity to meet her idol, racing star Ed, and to help her father save his failing business. But to do so, she'll have to get behind the wheel herself.", + "posterPath": "/jGGEqRaHAJ1pKJBj35WVxDyQBNw.jpg", + "backdropPath": "/keToI4XlwYVtImAXjoeoaLJKnfc.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy" + ], + "releaseDate": "2025-07-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 21, + "popularity": 23.5243 + }, + { + "id": 533535, + "title": "Deadpool & Wolverine", + "originalTitle": "Deadpool & Wolverine", + "overview": "A listless Wade Wilson toils away in civilian life with his days as the morally flexible mercenary, Deadpool, behind him. But when his homeworld faces an existential threat, Wade must reluctantly suit-up again with an even more reluctant Wolverine.", + "posterPath": "/8cdWjvZQUExUUTzyp4t6EDMubfO.jpg", + "backdropPath": "/ufpeVEM64uZHPpzzeiDNIAdaeOD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 878 + ], + "genres": [ + "Action", + "Comedy", + "Science Fiction" + ], + "releaseDate": "2024-07-24", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.569, + "voteCount": 7988, + "popularity": 23.5154 + }, + { + "id": 786892, + "title": "Furiosa: A Mad Max Saga", + "originalTitle": "Furiosa: A Mad Max Saga", + "overview": "As the world falls, young Furiosa is snatched from the Green Place of Many Mothers into the hands of a great biker horde led by the warlord Dementus. Sweeping through the wasteland, they encounter the citadel presided over by Immortan Joe. The two tyrants wage war for dominance, and Furiosa must survive many trials as she puts together the means to find her way home.", + "posterPath": "/iADOJ8Zymht2JPMoy3R7xceZprc.jpg", + "backdropPath": "/wNAhuOZ3Zf84jCIlrcI6JhgmY5q.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2024-05-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.462, + "voteCount": 4520, + "popularity": 23.4537 + }, + { + "id": 1107216, + "title": "Pets on a Train", + "originalTitle": "Falcon Express", + "overview": "When a train unexpectedly starts up, taking only pets with it, the animals discover that Hans, a badger with a grudge is behind it all. While the crash seems inevitable, the animals can count on Falcon, a roguish Raccoon who will do anything to save them.", + "posterPath": "/xSibLTRfsUQagQnbOQLjp5oGbcq.jpg", + "backdropPath": "/3Gjo73aMqNWxNdBa7PeEj7AXJ3E.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 12, + 53 + ], + "genres": [ + "Animation", + "Comedy", + "Adventure", + "Thriller" + ], + "releaseDate": "2025-07-02", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.9, + "voteCount": 28, + "popularity": 23.3792 + }, + { + "id": 1009640, + "title": "Valiant One", + "originalTitle": "Valiant One", + "overview": "With tensions between North and South Korea, a US helicopter crashes on the North side. The survivors must work together to protect a civilian tech specialist and find their way out without the help of US military support.", + "posterPath": "/sT8Z14RDCAd6szzxzWFAU4xcMwg.jpg", + "backdropPath": "/wPSZXVqe84X8SINvJGiKYZhkSG1.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 53, + 28 + ], + "genres": [ + "War", + "Thriller", + "Action" + ], + "releaseDate": "2025-01-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.831, + "voteCount": 83, + "popularity": 23.3446 + }, + { + "id": 861451, + "title": "Martin", + "originalTitle": "Martin", + "overview": "Martin revolves around Lt. Brigadier Arjun Saxena, whose journey takes him from Pakistan to India to discover his real identity and fight against black market dealers, who are involved with terrorists to orchestrate massive attacks in the country.", + "posterPath": "/bYe2ZjUhb4Kje0BpWE6kN34u2hv.jpg", + "backdropPath": "/42xAe6kVeTjml9Tww6vRoWa5tay.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2024-10-11", + "releaseYear": "2024", + "originalLanguage": "kn", + "voteAverage": 4.058, + "voteCount": 26, + "popularity": 23.2659 + }, + { + "id": 27205, + "title": "Inception", + "originalTitle": "Inception", + "overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.", + "posterPath": "/xlaY2zyzMfkhk0HSC5VUwzoZPU1.jpg", + "backdropPath": "/s3TBrRGB1iav7gFOCNx3H31MoES.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2010-07-15", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.37, + "voteCount": 38299, + "popularity": 23.0474 + }, + { + "id": 1186350, + "title": "Marco", + "originalTitle": "മാർക്കോ", + "overview": "The adoptive son of the Adattu family, Marco, sets off on a ruthless quest for vengeance after his brother is brutally murdered, finding only betrayal, loss and unimaginable brutality at every step.", + "posterPath": "/il3ao5gcF6fZNqo1o9o7lusmEyU.jpg", + "backdropPath": "/a6RkQIOZ6wThQOEDv6lHsfH53hD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2024-12-20", + "releaseYear": "2024", + "originalLanguage": "ml", + "voteAverage": 6.6, + "voteCount": 88, + "popularity": 22.9025 + }, + { + "id": 482600, + "title": "Japanese Mom", + "originalTitle": "일본 엄마", + "overview": "\"Innocent face, D-cup breasts and perfect intercourse skills! Son, this is not your girlfriend anymore but your mother!\" Ki-ho brings Yuki from Japan to marry her. However, he starts cheating on her with his ex-girlfriend in Korea. Min-cheol comforted Yuki and thought of her as his daughter-in-law, but one day he realizes he is looking at her as a woman. In the end, Yuki and Min-cheol have intercourse without Ki-ho knowing...", + "posterPath": "/mCDzIKBPBLLOaFSO7WXCNgrg8f2.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2017-02-09", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 6.6, + "voteCount": 62, + "popularity": 22.8538 + }, + { + "id": 845781, + "title": "Red One", + "originalTitle": "Red One", + "overview": "After Santa Claus (codename: Red One) is kidnapped, the North Pole's Head of Security must team up with the world's most infamous tracker in a globe-trotting, action-packed mission to save Christmas.", + "posterPath": "/cdqLnri3NEGcmfnqwk2TSIYtddg.jpg", + "backdropPath": "/rOmUuQEZfPXglwFs5ELLLUDKodL.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 14 + ], + "genres": [ + "Action", + "Comedy", + "Fantasy" + ], + "releaseDate": "2024-10-31", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.035, + "voteCount": 2746, + "popularity": 22.6261 + }, + { + "id": 16288, + "title": "Creepshow 2", + "originalTitle": "Creepshow 2", + "overview": "Three macabre tales from the latest issue of a boy's favorite comic book, dealing with a vengeful wooden Native American, a monstrous blob in a lake, and an undying hitchhiker.", + "posterPath": "/bbanIymLuTYmQGis9nlCkFlT1eg.jpg", + "backdropPath": "/w6RisE566EXIekhfLqIUprYtxbU.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "1987-05-01", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.244, + "voteCount": 628, + "popularity": 22.5264 + }, + { + "id": 999075, + "title": "Left-Handed Girl", + "originalTitle": "左撇子女孩", + "overview": "A mother and her two daughters move to Taipei to open a noodle stand at a vibrant night market, but family secrets and tradition test their fresh start.", + "posterPath": "/hfuxIKRCNsecLmoDdO0HJ1YUvv1.jpg", + "backdropPath": "/xqft4oJyMATznCFFLpTlQPiSr8N.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-17", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.565, + "voteCount": 46, + "popularity": 22.3909 + }, + { + "id": 1119878, + "title": "Ice Road: Vengeance", + "originalTitle": "Ice Road: Vengeance", + "overview": "Big rig ice road driver Mike McCann travels to Nepal to scatter his late brother’s ashes on Mt. Everest. While on a packed tour bus traversing the deadly 12,000 ft. terrain of the infamous Road to the Sky, McCann and his mountain guide encounter a group of mercenaries and must fight to save themselves, the busload of innocent travelers, and the local villagers’ homeland.", + "posterPath": "/cQN9rZj06rXMVkk76UF1DfBAico.jpg", + "backdropPath": "/2nwhxEyefcIFKwOrSigiamoIzu2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 18 + ], + "genres": [ + "Action", + "Thriller", + "Drama" + ], + "releaseDate": "2025-06-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.307, + "voteCount": 523, + "popularity": 22.3573 + }, + { + "id": 1124566, + "title": "Sentimental Value", + "originalTitle": "Affeksjonsverdi", + "overview": "Sisters Nora and Agnes reunite with their estranged father, the charismatic Gustav, a once-renowned director who offers stage actress Nora a role in what he hopes will be his comeback film. When Nora turns it down, she soon discovers he has given her part to an eager young Hollywood star.", + "posterPath": "/pz9NCWxxOk3o0W3v1Zkhawrwb4i.jpg", + "backdropPath": "/vRoIogTQDO5yAmTmH5uGrlPfS0N.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-08-20", + "releaseYear": "2025", + "originalLanguage": "no", + "voteAverage": 7.665, + "voteCount": 100, + "popularity": 22.3334 + }, + { + "id": 1029575, + "title": "The Family Plan", + "originalTitle": "The Family Plan", + "overview": "Dan Morgan is many things: a devoted husband, a loving father, a celebrated car salesman. He's also a former assassin. And when his past catches up to his present, he's forced to take his unsuspecting family on a road trip unlike any other.", + "posterPath": "/jLLtx3nTRSLGPAKl4RoIv1FbEBr.jpg", + "backdropPath": "/arNhhBd88bP3Bjoe4HT8MFE1JQA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 10751 + ], + "genres": [ + "Action", + "Comedy", + "Family" + ], + "releaseDate": "2023-12-14", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.25, + "voteCount": 1697, + "popularity": 22.2119 + }, + { + "id": 1265063, + "title": "After the Hunt", + "originalTitle": "After the Hunt", + "overview": "A college professor finds herself at a personal and professional crossroads when a star pupil levels an accusation against one of her colleagues, and a dark secret from her own past threatens to come to light.", + "posterPath": "/ryF8QPGUGlo8gRB4OYKb4J0r3aJ.jpg", + "backdropPath": "/x0J0OMKwnX1eeVRQWeb2D05yd3K.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.847, + "voteCount": 264, + "popularity": 22.0322 + }, + { + "id": 360920, + "title": "The Grinch", + "originalTitle": "The Grinch", + "overview": "The Grinch hatches a scheme to ruin Christmas when the residents of Whoville plan their annual holiday celebration.", + "posterPath": "/smxA8yvZ0LzDPer9BIRd4pyOpx1.jpg", + "backdropPath": "/5lWIYxYEqWi8j3ZloxXntw3ImBo.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Animation" + ], + "releaseDate": "2018-11-08", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.871, + "voteCount": 4281, + "popularity": 21.9438 + }, + { + "id": 1197306, + "title": "A Working Man", + "originalTitle": "A Working Man", + "overview": "Levon Cade left behind a decorated military career in the black ops to live a simple life working construction. But when his boss's daughter, who is like family to him, is taken by human traffickers, his search to bring her home uncovers a world of corruption far greater than he ever could have imagined.", + "posterPath": "/6FRFIogh3zFnVWn7Z6zcYnIbRcX.jpg", + "backdropPath": "/fTrQsdMS2MUw00RnzH0r3JWHhts.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-03-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.707, + "voteCount": 1664, + "popularity": 21.8109 + }, + { + "id": 574475, + "title": "Final Destination Bloodlines", + "originalTitle": "Final Destination Bloodlines", + "overview": "Plagued by a violent recurring nightmare, college student Stefanie heads home to track down the one person who might be able to break the cycle and save her family from the grisly demise that inevitably awaits them all.", + "posterPath": "/6WxhEvFsauuACfv8HyoVX6mZKFj.jpg", + "backdropPath": "/uIpJPDNFoeX0TVml9smPrs9KUVx.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2025-05-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.109, + "voteCount": 2418, + "popularity": 21.7063 + }, + { + "id": 1078605, + "title": "Weapons", + "originalTitle": "Weapons", + "overview": "When all but one child from the same class mysteriously vanish on the same night at exactly the same time, a community is left questioning who or what is behind their disappearance.", + "posterPath": "/cpf7vsRZ0MYRQcnLWteD5jK9ymT.jpg", + "backdropPath": "/yKWZIDo4ixcDUeelk2QGVA1EVmC.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2025-08-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.316, + "voteCount": 2446, + "popularity": 21.6003 + }, + { + "id": 823219, + "title": "Flow", + "originalTitle": "Straume", + "overview": "A solitary cat, displaced by a great flood, finds refuge on a boat with various species and must navigate the challenges of adapting to a transformed world together.", + "posterPath": "/zME0Ul0w48MKkYBnFRn40M5qgLh.jpg", + "backdropPath": "/4XPNNt0zfZKBqxxVWaQALd57UHl.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 14, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Fantasy", + "Family" + ], + "releaseDate": "2024-08-29", + "releaseYear": "2024", + "originalLanguage": "lv", + "voteAverage": 8.125, + "voteCount": 2469, + "popularity": 21.5401 + }, + { + "id": 25405, + "title": "Taking Chance", + "originalTitle": "Taking Chance", + "overview": "Lt. Col. Michael Strobl, a volunteer military escort accompanies the body of Lance Cpl. Chance Phelps to his hometown in Wyoming.", + "posterPath": "/2gPpwshMJHiaIcbL2K234zPGvK1.jpg", + "backdropPath": "/kSKz1rGzYdCp3cXwaJgmDzZfs2C.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752, + 10770 + ], + "genres": [ + "Drama", + "War", + "TV Movie" + ], + "releaseDate": "2009-09-21", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 213, + "popularity": 21.4364 + }, + { + "id": 1259102, + "title": "Eternity", + "originalTitle": "Eternity", + "overview": "In an afterlife where souls have one week to decide where to spend eternity, Joan is faced with the impossible choice between the man she spent her life with and her first love, who died young and has waited decades for her to arrive.", + "posterPath": "/iKaM4OfSf5ABkFZCo4vU4Dth7ZU.jpg", + "backdropPath": "/oN9YR2ND8UPmP1y4nN5StJOD1RG.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 14 + ], + "genres": [ + "Romance", + "Comedy", + "Fantasy" + ], + "releaseDate": "2025-11-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.056, + "voteCount": 18, + "popularity": 21.2835 + }, + { + "id": 120, + "title": "The Lord of the Rings: The Fellowship of the Ring", + "originalTitle": "The Lord of the Rings: The Fellowship of the Ring", + "overview": "Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.", + "posterPath": "/6oom5QYQ2yQTMJIbnvbkBL9cHo6.jpg", + "backdropPath": "/x2RS3uTcsJJ9IfjNPcgDmukoEcQ.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2001-12-18", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 26659, + "popularity": 21.2441 + }, + { + "id": 41515, + "title": "Yogi Bear", + "originalTitle": "Yogi Bear", + "overview": "A documentary filmmaker travels to Jellystone Park to shoot a project and soon crosses paths with Yogi Bear, his sidekick Boo-Boo, and Ranger Smith.", + "posterPath": "/oUga2DgHM8Xpe9yjxz8rVIafwD7.jpg", + "backdropPath": "/olt6xjI8QvrTmm1GTH6VtX6ROCl.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 16, + 12 + ], + "genres": [ + "Comedy", + "Family", + "Animation", + "Adventure" + ], + "releaseDate": "2010-12-17", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 916, + "popularity": 21.0868 + }, + { + "id": 1184918, + "title": "The Wild Robot", + "originalTitle": "The Wild Robot", + "overview": "After a shipwreck, an intelligent robot called Roz is stranded on an uninhabited island. To survive the harsh environment, Roz bonds with the island's animals and cares for an orphaned baby goose.", + "posterPath": "/wTnV3PCVW5O92JMrFvvrRcV39RU.jpg", + "backdropPath": "/1pmXyN3sKeYoUhu5VBZiDU4BX21.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 10751, + 12, + 18 + ], + "genres": [ + "Animation", + "Science Fiction", + "Family", + "Adventure", + "Drama" + ], + "releaseDate": "2024-09-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.318, + "voteCount": 5529, + "popularity": 20.792 + }, + { + "id": 129, + "title": "Spirited Away", + "originalTitle": "千と千尋の神隠し", + "overview": "A young girl, Chihiro, becomes trapped in a strange new world of spirits. When her parents undergo a mysterious transformation, she must call upon the courage she never knew she had to free her family.", + "posterPath": "/39wmItIWsg5sZMyRUHLkWBcuVCM.jpg", + "backdropPath": "/ukfI9QkU1aIhOhKXYWE9n3z1mFR.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "2001-07-20", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.534, + "voteCount": 17682, + "popularity": 20.4829 + }, + { + "id": 438631, + "title": "Dune", + "originalTitle": "Dune", + "overview": "Paul Atreides, a brilliant and gifted young man born into a great destiny beyond his understanding, must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet's exclusive supply of the most precious resource in existence-a commodity capable of unlocking humanity's greatest potential-only those who can conquer their fear will survive.", + "posterPath": "/d5NXSklXo0qyIYkgV94XAgMIckC.jpg", + "backdropPath": "/wYMbnrdRCREjNLwFlG5SLWzBjui.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12 + ], + "genres": [ + "Science Fiction", + "Adventure" + ], + "releaseDate": "2021-09-15", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 14162, + "popularity": 20.4328 + }, + { + "id": 1229910, + "title": "Kryptic", + "originalTitle": "Kryptic", + "overview": "A woman’s search for a missing cryptzoologist leads to her own riveting cosmic quest for identity.", + "posterPath": "/tO4PLOx2Ey9PZunmwEAsGhc4Ah0.jpg", + "backdropPath": "/m9k4N5KKGzSyJRyzvYfF0FUmyv8.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2025-06-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 21, + "popularity": 20.3419 + }, + { + "id": 941109, + "title": "Play Dirty", + "originalTitle": "Play Dirty", + "overview": "Expert thief Parker gets a shot at a major heist, but to pull it off he and his team must outsmart a South American dictator, the New York mob, and the world's richest man.", + "posterPath": "/ovZ0zq0NwRghtWI1oLaM0lWuoEw.jpg", + "backdropPath": "/k6tdiMTO39RQj3dhfspuzprfoe0.jpg", + "mediaType": "movie", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2025-09-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.617, + "voteCount": 484, + "popularity": 20.2589 + }, + { + "id": 1072699, + "title": "Inside Furioza", + "originalTitle": "Druga Furioza", + "overview": "In the wake of murder, new Furioza leader Golden claims the reins of his violent and formidable hooligan gang and takes on a new focus across borders.", + "posterPath": "/dbe1zKVKNBIczdmRcm7jxEphYLz.jpg", + "backdropPath": "/2yo2k8CmgZxfBQYAZ8TnHIYzEme.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-10-14", + "releaseYear": "2025", + "originalLanguage": "pl", + "voteAverage": 6.537, + "voteCount": 67, + "popularity": 20.2409 + }, + { + "id": 1376434, + "title": "Predator: Killer of Killers", + "originalTitle": "Predator: Killer of Killers", + "overview": "While three of the fiercest warriors in human history—a Viking raider, a ninja in feudal Japan, and a WWII pilot—are killers in their own right, they are merely prey for their new opponent: the ultimate killer of killers.", + "posterPath": "/2XDQa6EmFHSA37j1t0w88vpWqj9.jpg", + "backdropPath": "/cBgJJS19kVxedaLWPBbAi7Mh8wM.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878, + 53 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2025-06-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.861, + "voteCount": 977, + "popularity": 20.1584 + }, + { + "id": 1117857, + "title": "In Your Dreams", + "originalTitle": "In Your Dreams", + "overview": "Stevie and her little brother Elliot journey into the wildly absurd landscape of their own dreams to ask the Sandman to grant them the perfect family.", + "posterPath": "/ug0TqgmByPCEYzR9lQWQmyAa7sw.jpg", + "backdropPath": "/pU9cz8mZjzwyPAcJDPXBlK99BoR.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 12, + 14 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Adventure", + "Fantasy" + ], + "releaseDate": "2025-11-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.017, + "voteCount": 117, + "popularity": 20.1421 + }, + { + "id": 1233413, + "title": "Sinners", + "originalTitle": "Sinners", + "overview": "Trying to leave their troubled lives behind, twin brothers return to their hometown to start again, only to discover that an even greater evil is waiting to welcome them back.", + "posterPath": "/qTvFWCGeGXgBRaINLY1zqgTPSpn.jpg", + "backdropPath": "/nAxGnGHOsfzufThz20zgmRwKur3.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 53 + ], + "genres": [ + "Horror", + "Action", + "Thriller" + ], + "releaseDate": "2025-04-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 2964, + "popularity": 20.0352 + }, + { + "id": 1071585, + "title": "M3GAN 2.0", + "originalTitle": "M3GAN 2.0", + "overview": "After the underlying tech for M3GAN is stolen and misused by a powerful defense contractor to create a military-grade weapon known as Amelia, M3GAN's creator Gemma realizes that the only option is to resurrect M3GAN and give her a few upgrades, making her faster, stronger, and more lethal.", + "posterPath": "/4a63rQqIDTrYNdcnTXdPsQyxVLo.jpg", + "backdropPath": "/cT9ZfwoPDk8JbgkessmQgxAWiaM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2025-06-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 1002, + "popularity": 19.9878 + }, + { + "id": 939243, + "title": "Sonic the Hedgehog 3", + "originalTitle": "Sonic the Hedgehog 3", + "overview": "Sonic, Knuckles, and Tails reunite against a powerful new adversary, Shadow, a mysterious villain with powers unlike anything they have faced before. With their abilities outmatched in every way, Team Sonic must seek out an unlikely alliance in hopes of stopping Shadow and protecting the planet.", + "posterPath": "/d8Ryb8AunYAuycVKDp5HpdWPKgC.jpg", + "backdropPath": "/zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 35, + 10751 + ], + "genres": [ + "Action", + "Science Fiction", + "Comedy", + "Family" + ], + "releaseDate": "2024-12-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 3040, + "popularity": 19.7387 + }, + { + "id": 299536, + "title": "Avengers: Infinity War", + "originalTitle": "Avengers: Infinity War", + "overview": "As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle, a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy, his goal is to collect all six Infinity Stones, artifacts of unimaginable power, and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.", + "posterPath": "/7WsyChQLEftFiDOVTGkv3hFpyyt.jpg", + "backdropPath": "/mDfJG3LC3Dqb67AZ52x3Z0jU0uB.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2018-04-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.235, + "voteCount": 31181, + "popularity": 19.7197 + }, + { + "id": 674, + "title": "Harry Potter and the Goblet of Fire", + "originalTitle": "Harry Potter and the Goblet of Fire", + "overview": "When Harry Potter's name emerges from the Goblet of Fire, he becomes a competitor in a grueling battle for glory among three wizarding schools—the Triwizard Tournament. But since Harry never submitted his name for the Tournament, who did? Now Harry must confront a deadly dragon, fierce water demons and an enchanted maze only to find himself in the cruel grasp of He Who Must Not Be Named.", + "posterPath": "/fECBtHlr0RB3foNHDiCBXeg9Bv9.jpg", + "backdropPath": "/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2005-11-16", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 21629, + "popularity": 19.178 + }, + { + "id": 1081208, + "title": "The Dogs", + "originalTitle": "The Dogs", + "overview": "After fleeing his psychotic father, a young teen and his mom seek refuge in a remote farmhouse, only to face a pack of ferocious dogs and the sinister spirits that haunt the property.", + "posterPath": "/kz6oqKyKCjmR8V1JdnF9brp9DSn.jpg", + "backdropPath": "/48LdnfGahm8LuM2cg7LFWEmrTEd.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "2025-06-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.74, + "voteCount": 26, + "popularity": 19.1432 + }, + { + "id": 950396, + "title": "The Gorge", + "originalTitle": "The Gorge", + "overview": "Two highly trained operatives grow close from a distance after being sent to guard opposite sides of a mysterious gorge. When an evil below emerges, they must work together to survive what lies within.", + "posterPath": "/7iMBZzVZtG0oBug4TfqDb9ZxAOa.jpg", + "backdropPath": "/9nhjGaFLKtddDPtPaX5EmKqsWdH.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 878, + 53 + ], + "genres": [ + "Romance", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2025-02-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.668, + "voteCount": 3200, + "popularity": 19.066 + }, + { + "id": 1280282, + "title": "Gabby's Dollhouse: The Movie", + "originalTitle": "Gabby's Dollhouse: The Movie", + "overview": "Gabby heads out on a road trip with her Grandma Gigi to the urban wonderland of Cat Francisco. But when Gabby's dollhouse, her most prized possession, ends up in the hands of an eccentric cat lady named Vera, Gabby sets off on an adventure through the real world to get the Gabby Cats back together and save the dollhouse before it's too late.", + "posterPath": "/t6LLguAmu6iZUN8pWhT7Q0IcaQ5.jpg", + "backdropPath": "/MrcSSzWGsXf2IUJpjPPFLlNbjX.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2025-09-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 44, + "popularity": 19.0562 + }, + { + "id": 1330421, + "title": "Bone Lake", + "originalTitle": "Bone Lake", + "overview": "A couple’s romantic vacation at a secluded lakeside estate is upended when they are forced to share the mansion with a mysterious and attractive couple. In this darkly hilarious and seductive horror story, a dream getaway spirals into a nightmarish maze of sex, lies, and manipulation, bringing terrifying secrets to light and triggering a bloody battle for survival.", + "posterPath": "/sGo5ti82LlydAZrvcsaj31iPuEI.jpg", + "backdropPath": "/168dp7vy3kwOehcMpFaLOfB52NV.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "2025-10-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.039, + "voteCount": 76, + "popularity": 19.0539 + }, + { + "id": 539972, + "title": "Kraven the Hunter", + "originalTitle": "Kraven the Hunter", + "overview": "Kraven Kravinoff's complex relationship with his ruthless gangster father, Nikolai, starts him down a path of vengeance with brutal consequences, motivating him to become not only the greatest hunter in the world, but also one of its most feared.", + "posterPath": "/i47IUSsN126K11JUzqQIOi1Mg1M.jpg", + "backdropPath": "/bGGjyPqtNc8hhGkPo8W8D8t90bW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2024-12-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.468, + "voteCount": 2111, + "popularity": 19.0455 + }, + { + "id": 502356, + "title": "The Super Mario Bros. Movie", + "originalTitle": "The Super Mario Bros. Movie", + "overview": "While working underground to fix a water main, Brooklyn plumbers—and brothers—Mario and Luigi are transported down a mysterious pipe and wander into a magical new world. But when the brothers are separated, Mario embarks on an epic quest to find Luigi.", + "posterPath": "/qNBAXBIQlnOThrVvA6mA2B5ggV6.jpg", + "backdropPath": "/9n2tJBplPbgR2ca05hS5CKXwP2c.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16, + 14 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation", + "Fantasy" + ], + "releaseDate": "2023-04-05", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.603, + "voteCount": 10101, + "popularity": 18.9751 + }, + { + "id": 1142101, + "title": "ClearMind", + "originalTitle": "ClearMind", + "overview": "A grieving woman uses her virtual reality therapy to exact revenge on her former friends.", + "posterPath": "/7GqEmx1pUQE8pLJR7OR0urXfBuu.jpg", + "backdropPath": "/mMm9EvMfBYvHlszI95932Pwy9NL.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 35, + 53 + ], + "genres": [ + "Science Fiction", + "Comedy", + "Thriller" + ], + "releaseDate": "2024-02-03", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.167, + "voteCount": 27, + "popularity": 18.9371 + }, + { + "id": 1267319, + "title": "Mantis", + "originalTitle": "사마귀", + "overview": "Mantis, an ace assassin, returns to the contract killer industry after a hiatus, encountering his trainee friend Jae-yi and a retired legendary killer Dok-go, who now runs the organization.", + "posterPath": "/pzsXKLJsZ26HUV1oCMa7WiFFQbW.jpg", + "backdropPath": "/yOFqBpJ0PEkBdQqalDEaeOiaKbz.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-09-26", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 6.279, + "voteCount": 112, + "popularity": 18.8412 + }, + { + "id": 675, + "title": "Harry Potter and the Order of the Phoenix", + "originalTitle": "Harry Potter and the Order of the Phoenix", + "overview": "Returning for his fifth year at Hogwarts, Harry is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of motivated students to defend themselves against the Dark Arts.", + "posterPath": "/5aOyriWkPec0zUDxmHFP9qMmBaj.jpg", + "backdropPath": "/jLbpgkxA5PSgzmcszT8yCOyPkgf.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2007-07-08", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 20316, + "popularity": 18.7487 + }, + { + "id": 986056, + "title": "Thunderbolts*", + "originalTitle": "Thunderbolts*", + "overview": "After finding themselves ensnared in a death trap, seven disillusioned castoffs must embark on a dangerous mission that will force them to confront the darkest corners of their pasts.", + "posterPath": "/hqcexYHbiTBfDIdDWxrxPtVndBX.jpg", + "backdropPath": "/wSdWEc1G3OUWg8HAzNLqOZ9Gd43.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2025-04-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.312, + "voteCount": 2941, + "popularity": 18.5734 + }, + { + "id": 672, + "title": "Harry Potter and the Chamber of Secrets", + "originalTitle": "Harry Potter and the Chamber of Secrets", + "overview": "Cars fly, trees fight back, and a mysterious house-elf comes to warn Harry Potter at the start of his second year at Hogwarts. Adventure and danger await when bloody writing on a wall announces: The Chamber Of Secrets Has Been Opened. To save Hogwarts will require all of Harry, Ron and Hermione's magical abilities and courage.", + "posterPath": "/sdEOH0992YZ0QSxgXNIGLq1ToUi.jpg", + "backdropPath": "/7tbeoSTWW2cWPecjQo9fcdf0Hzv.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2002-11-13", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.705, + "voteCount": 23019, + "popularity": 18.5437 + }, + { + "id": 14160, + "title": "Up", + "originalTitle": "Up", + "overview": "Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78, life seems to have passed him by, until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.", + "posterPath": "/mFvoEwSfLqbcWwFsDjQebn9bzFe.jpg", + "backdropPath": "/hGGC9gKo7CFE3fW07RA587e5kol.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 12 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Adventure" + ], + "releaseDate": "2009-05-28", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.96, + "voteCount": 21110, + "popularity": 18.5019 + }, + { + "id": 519182, + "title": "Despicable Me 4", + "originalTitle": "Despicable Me 4", + "overview": "Gru and Lucy and their girls—Margo, Edith and Agnes—welcome a new member to the Gru family, Gru Jr., who is intent on tormenting his dad. Gru also faces a new nemesis in Maxime Le Mal and his femme fatale girlfriend Valentina, forcing the family to go on the run.", + "posterPath": "/wWba3TaojhK7NdycRhoQpsG0FaH.jpg", + "backdropPath": "/twsxsfao6ZOVvT8LfudH603MMi6.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 16, + 878 + ], + "genres": [ + "Family", + "Comedy", + "Animation", + "Science Fiction" + ], + "releaseDate": "2024-06-20", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.012, + "voteCount": 2983, + "popularity": 18.4201 + }, + { + "id": 387824, + "title": "Mom's Friend", + "originalTitle": "엄마친구", + "overview": "Seong Soo, a twenty years old boy, decided to move to Seoul after being accepted into Seoul University. However, he was a victim of real estate scam. He then moves into his mother's friend's house. Moreover, it turns out that his mother's friend is a sexy self-employed mother and Seong Soo is attracted to her.", + "posterPath": "/uHTE5QiHfPQLfvqgfYsgISpaqD8.jpg", + "backdropPath": "/4jnDdvXt9GAzePbUBMpGQ3gQtAg.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-08-20", + "releaseYear": "2015", + "originalLanguage": "ko", + "voteAverage": 7, + "voteCount": 24, + "popularity": 18.3476 + }, + { + "id": 601, + "title": "E.T. the Extra-Terrestrial", + "originalTitle": "E.T. the Extra-Terrestrial", + "overview": "An alien is left behind on Earth and saved by the 10-year-old Elliott who decides to keep him hidden in his home. While a task force hunts for the extra-terrestrial, Elliott, his brother, and his little sister Gertie form an emotional bond with their new friend, and try to help him find his way home.", + "posterPath": "/an0nD6uq6byfxXCfk6lQBzdL2J1.jpg", + "backdropPath": "/mXLVA0YL6tcXi6SJSuAh9ONXFj5.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 10751, + 14 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Family", + "Fantasy" + ], + "releaseDate": "1982-06-11", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 11661, + "popularity": 18.293 + }, + { + "id": 1084199, + "title": "Companion", + "originalTitle": "Companion", + "overview": "During a weekend getaway at a secluded lakeside estate, a group of friends finds themselves entangled in a web of secrets, deception, and advanced technology. As tensions rise and loyalties are tested, they uncover unsettling truths about themselves and the world around them.", + "posterPath": "/oCoTgC3UyWGfyQ9thE10ulWR7bn.jpg", + "backdropPath": "/cZnJ3ABPvsWGqwPcu06Eda493F9.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 53 + ], + "genres": [ + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2025-01-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.044, + "voteCount": 1893, + "popularity": 18.2634 + }, + { + "id": 122, + "title": "The Lord of the Rings: The Return of the King", + "originalTitle": "The Lord of the Rings: The Return of the King", + "overview": "As armies mass for a final battle that will decide the fate of the world--and powerful, ancient forces of Light and Dark compete to determine the outcome--one member of the Fellowship of the Ring is revealed as the noble heir to the throne of the Kings of Men. Yet, the sole hope for triumph over evil lies with a brave hobbit, Frodo, who, accompanied by his loyal friend Sam and the hideous, wretched Gollum, ventures deep into the very dark heart of Mordor on his seemingly impossible quest to destroy the Ring of Power.​", + "posterPath": "/rCzpDGLbOoPwLjy3OAm5NUPOTrC.jpg", + "backdropPath": "/2u7zbn8EudG6kLlBzUYqP8RyFU4.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2003-12-17", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 25713, + "popularity": 18.2199 + }, + { + "id": 1425122, + "title": "A Very Jonas Christmas Movie", + "originalTitle": "A Very Jonas Christmas Movie", + "overview": "Kevin, Nick, and Joe Jonas face a series of escalating obstacles as they struggle to make it from London to New York in time to spend Christmas with their families.", + "posterPath": "/kGLgaDrYWmTAdRFzGP5pBquRnhO.jpg", + "backdropPath": "/ajYw16ISz3qsdYTg4zy5rob1iAQ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10402 + ], + "genres": [ + "Comedy", + "Music" + ], + "releaseDate": "2025-11-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.379, + "voteCount": 70, + "popularity": 18.2158 + }, + { + "id": 1571470, + "title": "The Rats: A Witcher Tale", + "originalTitle": "The Rats: A Witcher Tale", + "overview": "To pull off a daring heist, a gang of six misfit outlaws will have to do something they've never done before: trust each other — and a washed-up Witcher.", + "posterPath": "/1T0kO1cgR430AC9I6jurMOezKwg.jpg", + "backdropPath": "/en0NbTEjf3qKokHvwGeaq9DBPIP.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 12 + ], + "genres": [ + "Fantasy", + "Drama", + "Adventure" + ], + "releaseDate": "2025-10-29", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 88, + "popularity": 18.1327 + }, + { + "id": 1196364, + "title": "Thamma", + "originalTitle": "थामा", + "overview": "Two destined lovers battle supernatural forces, family ties, and nature itself to defend their forbidden romance in a mystical world where ancient powers and prophecies threaten to keep them apart.", + "posterPath": "/udkbDwBbysCGEydt0FHnl9dVO2k.jpg", + "backdropPath": "/6UKhOhwNhfC5CBohere70svnKcH.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27 + ], + "genres": [ + "Comedy", + "Horror" + ], + "releaseDate": "2025-10-21", + "releaseYear": "2025", + "originalLanguage": "hi", + "voteAverage": 6.8, + "voteCount": 15, + "popularity": 18.0875 + }, + { + "id": 1241634, + "title": "Saiyaara", + "originalTitle": "सैयारा", + "overview": "Two artistic souls find harmony through music despite their contrasting worlds. As feelings deepen, age and circumstances challenge their undeniable bond.", + "posterPath": "/hQBIsi3ZfBYEayMc3GhcEmJVkss.jpg", + "backdropPath": "/mguy0nefEUY7NKruffpLO3Stj3d.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 10402 + ], + "genres": [ + "Romance", + "Drama", + "Music" + ], + "releaseDate": "2025-07-18", + "releaseYear": "2025", + "originalLanguage": "hi", + "voteAverage": 6.4, + "voteCount": 120, + "popularity": 18.0819 + }, + { + "id": 603, + "title": "The Matrix", + "originalTitle": "The Matrix", + "overview": "Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.", + "posterPath": "/qK76PKQLd6zlMn0u83Ej9YQOqPL.jpg", + "backdropPath": "/tlm8UkiQsitc8rSuIAscQDCnP8d.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878 + ], + "genres": [ + "Action", + "Science Fiction" + ], + "releaseDate": "1999-03-31", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.236, + "voteCount": 27048, + "popularity": 18.0592 + }, + { + "id": 634649, + "title": "Spider-Man: No Way Home", + "originalTitle": "Spider-Man: No Way Home", + "overview": "Peter Parker is unmasked and no longer able to separate his normal life from the high-stakes of being a super-hero. When he asks for help from Doctor Strange the stakes become even more dangerous, forcing him to discover what it truly means to be Spider-Man.", + "posterPath": "/1g0dhYtq4irTY1GPXvft6k4YLjm.jpg", + "backdropPath": "/tyQo080tijexyUHBvWPwQt26bZa.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2021-12-15", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.937, + "voteCount": 21316, + "popularity": 18.0463 + }, + { + "id": 354912, + "title": "Coco", + "originalTitle": "Coco", + "overview": "Despite his family’s baffling generations-old ban on music, Miguel dreams of becoming an accomplished musician like his idol, Ernesto de la Cruz. Desperate to prove his talent, Miguel finds himself in the stunning and colorful Land of the Dead following a mysterious chain of events. Along the way, he meets charming trickster Hector, and together, they set off on an extraordinary journey to unlock the real story behind Miguel's family history.", + "posterPath": "/6Ryitt95xrO8KXuqRGm1fUuNwqF.jpg", + "backdropPath": "/wSJHuSD7ojzoXifWjOAjxV7UpEL.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 10402, + 12 + ], + "genres": [ + "Family", + "Animation", + "Music", + "Adventure" + ], + "releaseDate": "2017-10-27", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 20459, + "popularity": 18.0398 + }, + { + "id": 1422096, + "title": "Good Boy", + "originalTitle": "Good Boy", + "overview": "A loyal dog moves to a rural family home with his owner Todd, only to discover supernatural forces lurking in the shadows. As dark entities threaten his human companion, the brave pup must fight to protect the one he loves most.", + "posterPath": "/pvMHRi09ur2L1drXh2dXFtuMFgl.jpg", + "backdropPath": "/mPtPJzBkwksUoMEKpkZqxBrlKpZ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-10-01", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.815, + "voteCount": 306, + "popularity": 18.0309 + }, + { + "id": 933260, + "title": "The Substance", + "originalTitle": "The Substance", + "overview": "A fading celebrity decides to use a black market drug, a cell-replicating substance that temporarily creates a younger, better version of herself.", + "posterPath": "/lqoMzCcZYEFK729d6qzt349fB4o.jpg", + "backdropPath": "/jocCWIF8YksHuTPhFUSxevz69Qm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 878 + ], + "genres": [ + "Drama", + "Horror", + "Science Fiction" + ], + "releaseDate": "2024-09-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.147, + "voteCount": 5403, + "popularity": 17.9687 + }, + { + "id": 2062, + "title": "Ratatouille", + "originalTitle": "Ratatouille", + "overview": "Remy, a resident of Paris, appreciates good food and has quite a sophisticated palate. He would love to become a chef so he can create and enjoy culinary masterpieces to his heart's delight. The only problem is, Remy is a rat. When he winds up in the sewer beneath one of Paris' finest restaurants, the rodent gourmet finds himself ideally placed to realize his dream.", + "posterPath": "/t3vaWRPSf6WjDSamIkKDs1iQWna.jpg", + "backdropPath": "/xgDj56UWyeWQcxQ44f5A3RTWuSs.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2007-06-28", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.834, + "voteCount": 17952, + "popularity": 17.9356 + }, + { + "id": 12444, + "title": "Harry Potter and the Deathly Hallows: Part 1", + "originalTitle": "Harry Potter and the Deathly Hallows: Part 1", + "overview": "Harry, Ron and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.", + "posterPath": "/iGoXIpQb7Pot00EEdwpwPajheZ5.jpg", + "backdropPath": "/AqLcLsGGTzAjm3pCCq0CZCQrp6m.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2010-11-17", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.739, + "voteCount": 19887, + "popularity": 17.9327 + }, + { + "id": 18190, + "title": "Dream Lover", + "originalTitle": "Dream Lover", + "overview": "Not long after they cross paths at an art gallery, architect Ray Reardon and hypnotically sensual Lena are married with children. But as strange incidents occur, Ray begins to realize he may not really know the woman he married.", + "posterPath": "/epl5pprGt04gAJI8lzbKy83XkbE.jpg", + "backdropPath": "/83hLixhpxMw2WpG72IzFYE28b3v.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 53 + ], + "genres": [ + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "1994-11-11", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.185, + "voteCount": 108, + "popularity": 17.8818 + }, + { + "id": 109445, + "title": "Frozen", + "originalTitle": "Frozen", + "overview": "Young princess Anna of Arendelle dreams about finding true love at her sister Elsa’s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.", + "posterPath": "/itAKcobTYGpYT8Phwjd8c9hleTo.jpg", + "backdropPath": "/u2bZhH3nTf0So0UIC1QxAqBvC07.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 14 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Fantasy" + ], + "releaseDate": "2013-11-20", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 17186, + "popularity": 17.8591 + }, + { + "id": 1125257, + "title": "Freakier Friday", + "originalTitle": "Freakier Friday", + "overview": "Years after Tess and Anna endured an identity crisis, Anna now has a daughter of her own and a soon-to-be stepdaughter. As they navigate the myriad challenges that come when two families merge, Tess and Anna discover lightning might indeed strike twice.", + "posterPath": "/9wV65OmsjLAqBfDnYTkMPutXH8j.jpg", + "backdropPath": "/yQy9Y3p5INwkfTuHSnzYnz4MCV3.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 10751 + ], + "genres": [ + "Comedy", + "Fantasy", + "Family" + ], + "releaseDate": "2025-08-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.864, + "voteCount": 494, + "popularity": 17.8492 + }, + { + "id": 145341, + "title": "Colonel Kwiatkowski", + "originalTitle": "Pułkownik Kwiatkowski", + "overview": "Military doctor Kwiatkowski, serving in a barracks hospital on the Western Territories, is rewarded with a week’s leave after successfully operating on Colonel Kiziora of the UB. He and his friend steal a truck bound for Warsaw, where among the ruins of his former home he meets his prewar neighbor Krysia, instantly falls in love, and, after a brawl with a Russian officer at a dance in the surviving “Polonia” hotel, pretends to be a high-ranking UB colonel to save face.", + "posterPath": "/q6Jb1IdOJ8k7QO9vk3tJkaMGyIF.jpg", + "backdropPath": "/afVowAl99Vqjo3Ji6RyFI17Tk5r.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 36 + ], + "genres": [ + "Comedy", + "History" + ], + "releaseDate": "1996-05-10", + "releaseYear": "1996", + "originalLanguage": "pl", + "voteAverage": 6.7, + "voteCount": 30, + "popularity": 17.7584 + }, + { + "id": 829557, + "title": "365 Days: This Day", + "originalTitle": "365 dni: Ten dzień", + "overview": "Laura and Massimo are back and hotter than ever. But the reunited couple's new beginning is complicated by Massimo’s family ties and a mysterious man who enters Laura’s life to win her heart and trust, at any cost.", + "posterPath": "/7qU0SOVcQ8BTJLodcAlulUAG16C.jpg", + "backdropPath": "/zBG5Mg29NH9xxpWMMG7BIvKwYhL.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2022-04-26", + "releaseYear": "2022", + "originalLanguage": "pl", + "voteAverage": 5.934, + "voteCount": 1787, + "popularity": 17.7532 + }, + { + "id": 1245347, + "title": "Twinless", + "originalTitle": "Twinless", + "overview": "Two young men meet in a twin bereavement support group and form an unlikely bromance.", + "posterPath": "/9vaw9Az5tPLMjNLj426KgKsp0k8.jpg", + "backdropPath": "/fnvTC96lA7pf8ZlMKI2FgBZ86AP.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-09-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 45, + "popularity": 17.7129 + }, + { + "id": 75656, + "title": "Now You See Me", + "originalTitle": "Now You See Me", + "overview": "An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.", + "posterPath": "/tWsNYbrqy1p1w6K9zRk0mSchztT.jpg", + "backdropPath": "/xEY0MV2jSQBz9iOJfCFvLTiPGMA.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2013-05-29", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 16254, + "popularity": 17.6911 + }, + { + "id": 680, + "title": "Pulp Fiction", + "originalTitle": "Pulp Fiction", + "overview": "A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.", + "posterPath": "/vQWk5YBFWF4bZaofAbv0tShwBvQ.jpg", + "backdropPath": "/suaEOtk1N1sgg2MTM7oZd2cfVp3.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 35 + ], + "genres": [ + "Thriller", + "Crime", + "Comedy" + ], + "releaseDate": "1994-09-10", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 29337, + "popularity": 17.6289 + }, + { + "id": 1396965, + "title": "Detective Conan: One-Eyed Flashback", + "originalTitle": "名探偵コナン 隻眼の残像(フラッシュバック)", + "overview": "As police inspector Yamato Kansuke pursues a certain man in the snowy mountains of Nagano, a shadow suddenly appears in his field of vision. While he's distracted, a rifle bullet fired by someone grazes his left eye and causes an avalanche accompanied by a roar. Ten months later, Kansuke, having miraculously survived the avalanche, receives a report that a researcher at the Nobeyama National Astronomical Observatory has been attacked.", + "posterPath": "/1wl6eAHbIDSz61tGwYTOKlSRvZb.jpg", + "backdropPath": "/zjKsqMASzGLh21C2GT1fuaa9mDP.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 9648, + 80 + ], + "genres": [ + "Animation", + "Action", + "Mystery", + "Crime" + ], + "releaseDate": "2025-04-18", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 37, + "popularity": 17.5313 + }, + { + "id": 106646, + "title": "The Wolf of Wall Street", + "originalTitle": "The Wolf of Wall Street", + "overview": "A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.", + "posterPath": "/kW9LmvYHAaS9iA0tHmZVq8hQYoq.jpg", + "backdropPath": "/7Nwnmyzrtd0FkcRyPqmdzTPppQa.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2013-12-25", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.026, + "voteCount": 25216, + "popularity": 17.4692 + }, + { + "id": 361743, + "title": "Top Gun: Maverick", + "originalTitle": "Top Gun: Maverick", + "overview": "After more than thirty years of service as one of the Navy’s top aviators, and dodging the advancement in rank that would ground him, Pete “Maverick” Mitchell finds himself training a detachment of TOP GUN graduates for a specialized mission the likes of which no living pilot has ever seen.", + "posterPath": "/62HCnUTziyWcpDaBO2i1DX17ljH.jpg", + "backdropPath": "/AaV1YIdWKnjAIAOe8UUKBFm327v.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2022-05-21", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.164, + "voteCount": 10376, + "popularity": 17.4589 + }, + { + "id": 1267905, + "title": "The Roses", + "originalTitle": "The Roses", + "overview": "Life seems easy for picture-perfect couple Ivy and Theo: successful careers, a loving marriage, great kids. But beneath the façade of their supposed ideal life, a storm is brewing – as Theo's career nosedives while Ivy's own ambitions take off, a tinderbox of fierce competition and hidden resentment ignites.", + "posterPath": "/98n5HnCJ5LnXKIMNP9SBfVNyxCE.jpg", + "backdropPath": "/h4HSZjOeAoHQ3qPuy6x9Cyr69bS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2025-08-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 375, + "popularity": 17.4321 + }, + { + "id": 822119, + "title": "Captain America: Brave New World", + "originalTitle": "Captain America: Brave New World", + "overview": "After meeting with newly elected U.S. President Thaddeus Ross, Sam finds himself in the middle of an international incident. He must discover the reason behind a nefarious global plot before the true mastermind has the entire world seeing red.", + "posterPath": "/pzIddUEMWhWzfvLI3TwxUG2wGoi.jpg", + "backdropPath": "/8eifdha9GQeZAkexgtD45546XKx.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2025-02-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.003, + "voteCount": 2777, + "popularity": 17.4235 + }, + { + "id": 496243, + "title": "Parasite", + "originalTitle": "기생충", + "overview": "All unemployed, Ki-taek's family takes peculiar interest in the wealthy and glamorous Parks for their livelihood until they get entangled in an unexpected incident.", + "posterPath": "/7IiTTgloJzvGI1TAYymCfbfl3vT.jpg", + "backdropPath": "/hiKmpZMGZsrkA3cdce8a7Dpos1j.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53, + 18 + ], + "genres": [ + "Comedy", + "Thriller", + "Drama" + ], + "releaseDate": "2019-05-30", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 8.496, + "voteCount": 19763, + "popularity": 17.3534 + }, + { + "id": 137, + "title": "Groundhog Day", + "originalTitle": "Groundhog Day", + "overview": "A narcissistic TV weatherman, along with his attractive-but-distant producer, and his mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.", + "posterPath": "/gCgt1WARPZaXnq523ySQEUKinCs.jpg", + "backdropPath": "/ttBydD0SynC0TMkW3AcnmsySkLp.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 14, + 18, + 35 + ], + "genres": [ + "Romance", + "Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "1993-02-11", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.619, + "voteCount": 8524, + "popularity": 17.3059 + }, + { + "id": 411, + "title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", + "originalTitle": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", + "overview": "Siblings Lucy, Edmund, Susan and Peter step through a magical wardrobe and find the land of Narnia. There, they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion, Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever.", + "posterPath": "/iREd0rNCjYdf5Ar0vfaW32yrkm.jpg", + "backdropPath": "/AuV99eQivVWuk2AOSM6hYh9QRPQ.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy" + ], + "releaseDate": "2005-12-07", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 11171, + "popularity": 17.2196 + }, + { + "id": 425, + "title": "Ice Age", + "originalTitle": "Ice Age", + "overview": "Manny the mammoth, Sid the loquacious sloth, and Diego the sabre-toothed tiger go on a comical quest to return a human baby back to his father, across a world on the brink of an ice age.", + "posterPath": "/gLhHHZUzeseRXShoDyC4VqLgsNv.jpg", + "backdropPath": "/8pwIhymsxfAVjrAE7syDjQULn37.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 12 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Adventure" + ], + "releaseDate": "2002-03-14", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 13916, + "popularity": 17.1895 + }, + { + "id": 749170, + "title": "Heads of State", + "originalTitle": "Heads of State", + "overview": "The UK Prime Minister and US President have a public rivalry that risks their countries' alliance. But when they become targets of a powerful enemy, they're forced to rely on each other as they go on a wild, multinational run. Allied with Noel, a brilliant MI6 agent, they must find a way to thwart a conspiracy that threatens the free world.", + "posterPath": "/lVgE5oLzf7ABmzyASEVcjYyHI41.jpg", + "backdropPath": "/vJbEUMeI2AxBUZKjP6ZVeVNNTLh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 35 + ], + "genres": [ + "Action", + "Thriller", + "Comedy" + ], + "releaseDate": "2025-06-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.866, + "voteCount": 860, + "popularity": 17.1852 + }, + { + "id": 1011477, + "title": "Karate Kid: Legends", + "originalTitle": "Karate Kid: Legends", + "overview": "After a family tragedy, kung fu prodigy Li Fong is uprooted from his home in Beijing and forced to move to New York City with his mother. When a new friend needs his help, Li enters a karate competition – but his skills alone aren't enough. Li's kung fu teacher Mr. Han enlists original Karate Kid Daniel LaRusso for help, and Li learns a new way to fight, merging their two styles into one for the ultimate martial arts showdown.", + "posterPath": "/AEgggzRr1vZCLY86MAp93li43z.jpg", + "backdropPath": "/7Q2CmqIVJuDAESPPp76rWIiA0AD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Drama" + ], + "releaseDate": "2025-05-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.097, + "voteCount": 974, + "popularity": 17.1777 + }, + { + "id": 385687, + "title": "Fast X", + "originalTitle": "Fast X", + "overview": "Over many missions and against impossible odds, Dom Toretto and his family have outsmarted, out-nerved and outdriven every foe in their path. Now, they confront the most lethal opponent they've ever faced: A terrifying threat emerging from the shadows of the past who's fueled by blood revenge, and who is determined to shatter this family and destroy everything—and everyone—that Dom loves, forever.", + "posterPath": "/fiVW06jE7z9YnO4trhaMEdclSiC.jpg", + "backdropPath": "/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2023-05-17", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.015, + "voteCount": 6118, + "popularity": 17.1658 + }, + { + "id": 5255, + "title": "The Polar Express", + "originalTitle": "The Polar Express", + "overview": "When a doubting young boy takes an extraordinary train ride to the North Pole, he embarks on a journey of self-discovery that shows him that the wonder of life never fades for those who believe.", + "posterPath": "/eOoCzH0MqeGr2taUZO4SwG416PF.jpg", + "backdropPath": "/y8Mabq84N0d5fm83CWb9Zkltkwr.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751, + 14 + ], + "genres": [ + "Animation", + "Adventure", + "Family", + "Fantasy" + ], + "releaseDate": "2004-11-10", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.723, + "voteCount": 6658, + "popularity": 17.1629 + }, + { + "id": 549319, + "title": "Christmas Everlasting", + "originalTitle": "Christmas Everlasting", + "overview": "Christmas is fast approaching and years of long workdays employed at New York’s top corporate law firm are about to pay off now that Lucy Toomey will be made partner after the New Year. However, when Alice, her older sister with special needs, unexpectedly passes away, Lucy returns back to Nilson’s Bay, Wis., to attend the funeral and handle her estate. While Lucy dreads returning to her childhood home, she also feels real sorrow that she was too busy to take her sister’s last call. Once back in Nilson’s Bay, Lucy meets Peter, her old high school sweetheart and Alice’s former attorney, who informs her of the terms of Alice’s eccentric will that states in order for Lucy to inherit the family home, she must live there for 30 days through the holidays.", + "posterPath": "/w72W4gj27NvMnTsw7aw1cwUFnC1.jpg", + "backdropPath": "/m8OoI9YgG27uxbMyYYqRWRY87VI.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 10770 + ], + "genres": [ + "Romance", + "Drama", + "TV Movie" + ], + "releaseDate": "2018-11-24", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 30, + "popularity": 17.1518 + }, + { + "id": 56379, + "title": "Beach House", + "originalTitle": "Casotto", + "overview": "Summer Sunday at a small beach house at the coast of Rome. Many people and stories: women's basketball team, two sports-obsessed soldiers, two men with their girlfriends and the priest with a big secret, an elderly couple with their pregnant granddaughter, and engagemented couple wanting to have sex for the first time.", + "posterPath": "/APAMSZ2QnChI7PlC1TAEKcvrR9.jpg", + "backdropPath": "/4r9CqZwi5NdDjGvoJLA9DYqodbO.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1977-10-27", + "releaseYear": "1977", + "originalLanguage": "it", + "voteAverage": 6.369, + "voteCount": 71, + "popularity": 17.0822 + }, + { + "id": 673, + "title": "Harry Potter and the Prisoner of Azkaban", + "originalTitle": "Harry Potter and the Prisoner of Azkaban", + "overview": "Year three at Hogwarts means new fun and challenges as Harry learns the delicate art of approaching a Hippogriff, transforming shape-shifting Boggarts into hilarity and even turning back time. But the term also brings danger: soul-sucking Dementors hover over the school, an ally of the accursed He-Who-Cannot-Be-Named lurks within the castle walls, and fearsome wizard Sirius Black escapes Azkaban. And Harry will confront them all.", + "posterPath": "/aWxwnYoe8p2d2fcxOqtvAtJ72Rw.jpg", + "backdropPath": "/fVgBU3KJAWHS55FPdbsZQ3YQG2Z.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2004-05-31", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 22583, + "popularity": 17.0764 + }, + { + "id": 1151031, + "title": "Bring Her Back", + "originalTitle": "Bring Her Back", + "overview": "Following the death of their father, a brother and sister are sent to live with a foster mother, only to learn that she is hiding a terrifying secret.", + "posterPath": "/1Q3GlCXGYWELifxANYZ5OVMRVZl.jpg", + "backdropPath": "/2IIKts2A9vnUdM9tTC76B8tDmuZ.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2025-05-28", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.42, + "voteCount": 1212, + "popularity": 17.0172 + }, + { + "id": 1208348, + "title": "Rental Family", + "originalTitle": "Rental Family", + "overview": "An American actor in Tokyo struggles to find purpose until he lands an unusual gig: working for a Japanese 'rental family' agency, playing stand-in roles for strangers. As he immerses himself in his clients' worlds, he begins to form genuine bonds that blur the lines between performance and reality.", + "posterPath": "/dGRZ55srJoK6TcjPTfHe701UWq0.jpg", + "backdropPath": "/5zMuq6n6L8u9Ks29JAurPICXKqu.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-11-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 19, + "popularity": 17.0017 + }, + { + "id": 20526, + "title": "TRON: Legacy", + "originalTitle": "TRON: Legacy", + "overview": "Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.", + "posterPath": "/vuifSABRpSnxCAOxEnWpNbZSXpp.jpg", + "backdropPath": "/uUa6jgSr5BQpcBhhaz1PV1JhSa4.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2010-12-14", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.529, + "voteCount": 7626, + "popularity": 16.9757 + }, + { + "id": 1382406, + "title": "Striking Rescue", + "originalTitle": "惊天大营救", + "overview": "A veteran Muay Thai expert goes on a take-no-prisoners mission of revenge after his wife and daughter are brutally murdered by mysterious forces.", + "posterPath": "/nML8rOI4GOiiEsXgknuhZeUF8M7.jpg", + "backdropPath": "/yth78N88nwokepnOe5atwPGfTL1.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2024-12-05", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.42, + "voteCount": 143, + "popularity": 16.9726 + }, + { + "id": 1519168, + "title": "The Jester 2", + "originalTitle": "The Jester 2", + "overview": "When teen magician Max crosses paths with the sinister Jester on Halloween night, she must outsmart a supernatural killer whose magic is all too real and whose tricks always end up in blood.", + "posterPath": "/47dsw1jSOV0Be5zmy7CtLhYpqU.jpg", + "backdropPath": "/yZtnGzfZER0QU7ZG4r4RaZAaXJH.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 80 + ], + "genres": [ + "Horror", + "Thriller", + "Crime" + ], + "releaseDate": "2025-09-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.329, + "voteCount": 38, + "popularity": 16.9366 + }, + { + "id": 240, + "title": "The Godfather Part II", + "originalTitle": "The Godfather Part II", + "overview": "In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.", + "posterPath": "/hek3koDUyRQk7FIhPXsa6mT2Zc3.jpg", + "backdropPath": "/kGzFbGhp99zva6oZODW5atUtnqi.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1974-12-20", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 8.57, + "voteCount": 13373, + "popularity": 16.8688 + }, + { + "id": 1357886, + "title": "Django Undisputed", + "originalTitle": "Django Undisputed", + "overview": "Determined to exact his justice, Django faces dangerous challenges and bloody clashes to restore order in a territory dominated by lawlessness and injustice.", + "posterPath": "/porcUhC4jqFt72TaxbjOQo2lTzL.jpg", + "backdropPath": "/nvdLEfAWcfTNn45SpwBnLGBmOR1.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "2024-04-22", + "releaseYear": "2024", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 11, + "popularity": 16.808 + }, + { + "id": 198663, + "title": "The Maze Runner", + "originalTitle": "The Maze Runner", + "overview": "A teenager with no memory of his past finds himself among a group of boys living in a walled enclosure surrounded by a massive, ever-changing maze. As he struggles to adapt to their rules and society, he begins to uncover clues that may lead to escape and the truth behind their confinement.", + "posterPath": "/ode14q7WtDugFDp78fo9lCsmay9.jpg", + "backdropPath": "/eTlcNXGv32zkVI7ZDHhfeaKHXKQ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 9648, + 878, + 53 + ], + "genres": [ + "Action", + "Mystery", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2014-09-10", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.192, + "voteCount": 17713, + "popularity": 16.8062 + }, + { + "id": 936108, + "title": "Smurfs", + "originalTitle": "Smurfs", + "overview": "When Papa Smurf is mysteriously taken by evil wizards, Razamel and Gargamel, Smurfette leads the Smurfs on a mission into the real world to save him. With the help of new friends, the Smurfs must discover what defines their destiny to save the universe.", + "posterPath": "/8o6lkhL32xQJeB52IIG1us5BVey.jpg", + "backdropPath": "/9whEVuKte4Qi0LI4TzPf7glinJW.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "2025-07-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.903, + "voteCount": 221, + "popularity": 16.7935 + }, + { + "id": 1323475, + "title": "Champagne Problems", + "originalTitle": "Champagne Problems", + "overview": "A driven American exec heads to Paris determined to acquire a champagne brand by Christmas — and accidentally falls for the heir to the bubbly empire.", + "posterPath": "/A2TCPPkzmWd5SwjBlxMlB6yQ4yK.jpg", + "backdropPath": "/dJZCY38DSzZdGdVtFsEdJIrKOmG.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2025-11-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.243, + "voteCount": 109, + "popularity": 16.7358 + }, + { + "id": 1401318, + "title": "A Merry Little Ex-Mas", + "originalTitle": "A Merry Little Ex-Mas", + "overview": "All Kate and Everett want for Christmas is an amicable divorce and one last holiday as a family, but new flames and old feelings complicate their plans.", + "posterPath": "/w4ytu75uJ1b0AgPd0wLm7iZMsWJ.jpg", + "backdropPath": "/2GHJGnF2jgnzeqT3XTHjHXgk5Fx.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2025-11-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.275, + "voteCount": 100, + "popularity": 16.7047 + }, + { + "id": 546554, + "title": "Knives Out", + "originalTitle": "Knives Out", + "overview": "When renowned crime novelist Harlan Thrombey is found dead at his estate just after his 85th birthday, the inquisitive and debonair Detective Benoit Blanc is mysteriously enlisted to investigate. From Harlan's dysfunctional family to his devoted staff, Blanc sifts through a web of red herrings and self-serving lies to uncover the truth behind Harlan's untimely death.", + "posterPath": "/pThyQovXQrw2m0s9x82twj48Jq4.jpg", + "backdropPath": "/4HWAQu28e2yaWrtupFPGFkdNU7V.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 9648 + ], + "genres": [ + "Comedy", + "Crime", + "Mystery" + ], + "releaseDate": "2019-11-27", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.844, + "voteCount": 13273, + "popularity": 16.704 + }, + { + "id": 1242501, + "title": "Icefall", + "originalTitle": "Icefall", + "overview": "A young Indigenous game warden arrests an infamous poacher only to discover that the poacher knows the location of a plane carrying millions of dollars that has crashed in a frozen lake. When a group of criminals and dirty cops are alerted to the poacher’s whereabouts, the warden and the poacher team up to fight back and escape across the treacherous lake before the ice melts.", + "posterPath": "/5Byv6nznAb2Izd0gHpODOXnuSbo.jpg", + "backdropPath": "/gQimJqYMKCkwHIo8wwYKhmnCfBr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-10-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.054, + "voteCount": 46, + "popularity": 16.6905 + }, + { + "id": 912649, + "title": "Venom: The Last Dance", + "originalTitle": "Venom: The Last Dance", + "overview": "Eddie and Venom are on the run. Hunted by both of their worlds and with the net closing in, the duo are forced into a devastating decision that will bring the curtains down on Venom and Eddie's last dance.", + "posterPath": "/1RaSkWakWBxxYOWRrqmwo2my5zg.jpg", + "backdropPath": "/3V4kLQg0kSqPLctI5ziYWabAZYF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2024-10-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.68, + "voteCount": 3871, + "popularity": 16.6784 + }, + { + "id": 986097, + "title": "HIM", + "originalTitle": "HIM", + "overview": "After suffering a potentially career-ending brain trauma, Cameron Cade receives a lifeline when his hero, legendary eight-time Championship quarterback and cultural megastar Isaiah White, offers to train Cam at Isaiah's isolated compound that he shares with his celebrity influencer wife. But as Cam's training accelerates, Isaiah's charisma begins to curdle into something darker.", + "posterPath": "/ce6wANgLoSV16Q1H3v0b6yjFOVs.jpg", + "backdropPath": "/jzzpCJWkVZZwAxzzLmtYN0MBWFd.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2025-09-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.846, + "voteCount": 241, + "popularity": 16.6752 + }, + { + "id": 808, + "title": "Shrek", + "originalTitle": "Shrek", + "overview": "It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.", + "posterPath": "/iB64vpL3dIObOtMZgX3RqdVdQDc.jpg", + "backdropPath": "/40Wtp7kMG6mZ4d5T1jfrd8qrvD4.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 14, + 12, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Fantasy", + "Adventure", + "Family" + ], + "releaseDate": "2001-05-18", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.754, + "voteCount": 18152, + "popularity": 16.6235 + }, + { + "id": 1319895, + "title": "Hostile Takeover", + "originalTitle": "Hostile Takeover", + "overview": "Follows Pete, a professional hitman, as he faces a group of assassins after the boss of a crime syndicate suspects disloyalty due to his attendance at Workaholics Anonymous meetings.", + "posterPath": "/vntwlS3CAKfoLTs90GaoK6lymBC.jpg", + "backdropPath": "/nZsKWhwhUL3Eg88SkIaJjuIZzpN.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Thriller" + ], + "releaseDate": "2025-08-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 32, + "popularity": 16.5021 + }, + { + "id": 296099, + "title": "Vacation", + "originalTitle": "Vacation", + "overview": "Hoping to bring his family closer together and to recreate his childhood vacation for his own kids, a grown up Rusty Griswold takes his wife and their two sons on a cross-country road trip to the coolest theme park in America, Walley World. Needless to say, things don't go quite as planned.", + "posterPath": "/fYDALvoCt3DBlSWN6pSAnGQ9ld7.jpg", + "backdropPath": "/6y5ALiAai1JbLRb7ZlydNwEPu5a.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12 + ], + "genres": [ + "Comedy", + "Adventure" + ], + "releaseDate": "2015-07-28", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.306, + "voteCount": 3872, + "popularity": 16.4882 + }, + { + "id": 216015, + "title": "Fifty Shades of Grey", + "originalTitle": "Fifty Shades of Grey", + "overview": "When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper, little does she realize the path her life will take. Christian, as enigmatic as he is rich and powerful, finds himself strangely drawn to Ana, and she to him. Though sexually inexperienced, Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.", + "posterPath": "/63kGofUkt1Mx0SIL4XI4Z5AoSgt.jpg", + "backdropPath": "/7IGKrY1f1KfwMipx9wZC4NRgIdF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 53 + ], + "genres": [ + "Drama", + "Romance", + "Thriller" + ], + "releaseDate": "2015-02-11", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 12174, + "popularity": 16.4503 + }, + { + "id": 22, + "title": "Pirates of the Caribbean: The Curse of the Black Pearl", + "originalTitle": "Pirates of the Caribbean: The Curse of the Black Pearl", + "overview": "After Port Royal is attacked and pillaged by a mysterious pirate crew, capturing the governor's daughter Elizabeth Swann in the process, William Turner asks free-willing pirate Jack Sparrow to help him locate the crew's ship—The Black Pearl—so that he can rescue the woman he loves.", + "posterPath": "/poHwCZeWzJCShH7tOjg8RIoyjcw.jpg", + "backdropPath": "/uRNgkJSkNBFbbn9fPsEjDIy8Sh3.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2003-07-09", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.816, + "voteCount": 21630, + "popularity": 16.4035 + }, + { + "id": 767, + "title": "Harry Potter and the Half-Blood Prince", + "originalTitle": "Harry Potter and the Half-Blood Prince", + "overview": "As Lord Voldemort tightens his grip on both the Muggle and wizarding worlds, Hogwarts is no longer a safe haven. Harry suspects perils may even lie within the castle, but Dumbledore is more intent upon preparing him for the final battle fast approaching. Together they work to find the key to unlock Voldemorts defenses and to this end, Dumbledore recruits his old friend and colleague Horace Slughorn, whom he believes holds crucial information. Even as the decisive showdown looms, romance blossoms for Harry, Ron, Hermione and their classmates. Love is in the air, but danger lies ahead and Hogwarts may never be the same again.", + "posterPath": "/z7uo9zmQdQwU5ZJHFpv2Upl30i1.jpg", + "backdropPath": "/ze6Mx4QE5mQVXRYmG2flncqqle4.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2009-07-15", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.682, + "voteCount": 20286, + "popularity": 16.3546 + }, + { + "id": 762509, + "title": "Mufasa: The Lion King", + "originalTitle": "Mufasa: The Lion King", + "overview": "Mufasa, a cub lost and alone, meets a sympathetic lion named Taka, the heir to a royal bloodline. The chance meeting sets in motion an expansive journey of a group of misfits searching for their destiny.", + "posterPath": "/lurEK87kukWNaHd0zYnsi3yzJrs.jpg", + "backdropPath": "/1w8kutrRucTd3wlYyu5QlUDMiG1.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 16 + ], + "genres": [ + "Adventure", + "Family", + "Animation" + ], + "releaseDate": "2024-12-18", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.345, + "voteCount": 2457, + "popularity": 16.328 + }, + { + "id": 550, + "title": "Fight Club", + "originalTitle": "Fight Club", + "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", + "posterPath": "/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg", + "backdropPath": "/hZkgoQYus5vegHoetLkCJzb17zJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1999-10-15", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.438, + "voteCount": 31054, + "popularity": 16.3002 + }, + { + "id": 562, + "title": "Die Hard", + "originalTitle": "Die Hard", + "overview": "NYPD cop John McClane's plan to reconcile with his estranged wife is thrown for a serious loop when, minutes after he arrives at her offices Christmas Party, the entire building is overtaken by a group of terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.", + "posterPath": "/aJCpHDC6RoGz7d1Fzayl019xnxX.jpg", + "backdropPath": "/oIwfoUFfWfESn0Y8u8jv9lc8li1.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1988-07-15", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 11808, + "popularity": 16.2839 + }, + { + "id": 550988, + "title": "Free Guy", + "originalTitle": "Free Guy", + "overview": "A bank teller discovers he is actually a background player in an open-world video game, and decides to become the hero of his own story. Now, in a world where there are no limits, he is determined to be the guy who saves his world his way before it's too late.", + "posterPath": "/6PFJrMvoQwBxQITLYHj09VeJ37q.jpg", + "backdropPath": "/7py8kUCYaOdFn1TfVS87BDBySOz.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12, + 878 + ], + "genres": [ + "Comedy", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2021-08-11", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 9411, + "popularity": 16.2219 + }, + { + "id": 13, + "title": "Forrest Gump", + "originalTitle": "Forrest Gump", + "overview": "A man with a low IQ has accomplished great things in his life and been present during significant historic events—in each case, far exceeding what anyone imagined he could do. But despite all he has achieved, his one true love eludes him.", + "posterPath": "/saHP97rTPS5eLmrLQEcANmKrsFl.jpg", + "backdropPath": "/67HggiWaP9ZLv5sPYmyRV37yAJM.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1994-06-23", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8.463, + "voteCount": 28901, + "popularity": 16.185 + }, + { + "id": 862, + "title": "Toy Story", + "originalTitle": "Toy Story", + "overview": "Led by Woody, Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart, Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner, the duo eventually learns to put aside their differences.", + "posterPath": "/uXDfjJbdP4ijW5hWSBrPrlKpxab.jpg", + "backdropPath": "/3Rfvhy1Nl6sSGJwyjb0QiZzZYlB.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 16, + 12 + ], + "genres": [ + "Family", + "Comedy", + "Animation", + "Adventure" + ], + "releaseDate": "1995-11-22", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.971, + "voteCount": 19329, + "popularity": 16.1091 + }, + { + "id": 585, + "title": "Monsters, Inc.", + "originalTitle": "Monsters, Inc.", + "overview": "Lovable Sulley and his wisecracking sidekick Mike Wazowski are the top scare team at Monsters, Inc., the scream-processing factory in Monstropolis. When a little girl named Boo wanders into their world, it's the monsters who are scared silly, and it's up to Sulley and Mike to keep her out of sight and get her back home.", + "posterPath": "/wFSpyMsp7H0ttERbxY7Trlv8xry.jpg", + "backdropPath": "/sDTnMOJ3H5wI38OxObmCtK7wfd5.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2001-11-01", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.847, + "voteCount": 19263, + "popularity": 16.0164 + }, + { + "id": 28178, + "title": "Hachi: A Dog's Tale", + "originalTitle": "Hachi: A Dog's Tale", + "overview": "A drama based on the true story of a college professor's bond with the abandoned dog he takes into his home.", + "posterPath": "/lsy3aEsEfYIHdLRk4dontZ4s85h.jpg", + "backdropPath": "/9Eo6FPq6A4aMeOe4tTmNKwUZRvM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2009-06-08", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8.01, + "voteCount": 6979, + "popularity": 15.9658 + }, + { + "id": 858485, + "title": "Kantara", + "originalTitle": "ಕಾಂತಾರ", + "overview": "Shiva, a tribal vagabond lives with his mother in hamlet, stays away from the traditional Daivaradhane and Bhoota Kola legacy due to an unforgettable childhood incident. He is happy loafing around with his friends and doing petty jobs for his landlord. When Forest officer Murali enters the scene, it gives a fresh dimension to the man-vs-nature fight. Can Shiva save the forest from Murali? Or is Murali just a dummy bait cast by bigger fish?", + "posterPath": "/jIsKmkxMzdCZ0Ux1GVSnu8m6Na6.jpg", + "backdropPath": "/kXElm7wt2kAXEVwJqW4cFhP43nW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2022-09-30", + "releaseYear": "2022", + "originalLanguage": "kn", + "voteAverage": 7.161, + "voteCount": 125, + "popularity": 15.954 + }, + { + "id": 760329, + "title": "The Smashing Machine", + "originalTitle": "The Smashing Machine", + "overview": "In the late 1990s, up-and-coming mixed martial artist Mark Kerr aspires to become the greatest fighter in the world. However, he must also battle his opioid dependence and a volatile relationship with his girlfriend Dawn.", + "posterPath": "/mPuBDGrVIBGOymBxR6rO3iIvBSe.jpg", + "backdropPath": "/vfbryKoLrisx8Xh37OaTjTyrFY0.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2025-10-01", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.536, + "voteCount": 279, + "popularity": 15.9506 + }, + { + "id": 823464, + "title": "Godzilla x Kong: The New Empire", + "originalTitle": "Godzilla x Kong: The New Empire", + "overview": "Following their explosive showdown, Godzilla and Kong must reunite against a colossal undiscovered threat hidden within our world, challenging their very existence – and our own.", + "posterPath": "/z1p34vh7dEOnLDmyCrlUVLuoDzd.jpg", + "backdropPath": "/veIyxxi5Gs8gvztLEW1Ysb8rrzs.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2024-03-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.075, + "voteCount": 4410, + "popularity": 15.8317 + }, + { + "id": 1156593, + "title": "Your Fault", + "originalTitle": "Culpa tuya", + "overview": "The love between Noah and Nick seems unwavering despite their parents' attempts to separate them. But his job and her entry into college open up their lives to new relationships that will shake the foundations of both their relationship and the Leister family itself.", + "posterPath": "/1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg", + "backdropPath": "/k24eZq5I3jyz4htPkZCRpnUmBzE.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2024-12-26", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.135, + "voteCount": 1460, + "popularity": 15.7965 + }, + { + "id": 615453, + "title": "Ne Zha", + "originalTitle": "哪吒之魔童降世", + "overview": "A young boy is born as the reincarnation of a demonic power, into a society that hates and fears him. Destined by prophecy to bring destruction to the world, Nezha must choose between good and evil to see if he can change his fate.", + "posterPath": "/phM9bb6s9c60LA8qwsdk7U1N2cS.jpg", + "backdropPath": "/k1pJslKr4aDayw9kWwWnlC3MIP3.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 12 + ], + "genres": [ + "Animation", + "Fantasy", + "Adventure" + ], + "releaseDate": "2019-07-26", + "releaseYear": "2019", + "originalLanguage": "zh", + "voteAverage": 7.89, + "voteCount": 732, + "popularity": 15.7473 + }, + { + "id": 12445, + "title": "Harry Potter and the Deathly Hallows: Part 2", + "originalTitle": "Harry Potter and the Deathly Hallows: Part 2", + "overview": "Harry, Ron and Hermione continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.", + "posterPath": "/c54HpQmuwXjHq2C9wmoACjxoom3.jpg", + "backdropPath": "/cbcpDn6XJaIGoOil1bKuskU8ds4.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2011-07-12", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.083, + "voteCount": 21456, + "popularity": 15.7066 + }, + { + "id": 105, + "title": "Back to the Future", + "originalTitle": "Back to the Future", + "overview": "Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.", + "posterPath": "/vN5B5WgYscRGcQpVhHl6p9DDTP0.jpg", + "backdropPath": "/pZCLGHynFPOv8dve6u9waxknLth.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 878 + ], + "genres": [ + "Adventure", + "Comedy", + "Science Fiction" + ], + "releaseDate": "1985-07-03", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 21111, + "popularity": 15.6448 + }, + { + "id": 1234591, + "title": "My Favourite Cake", + "originalTitle": "کیک محبوب من", + "overview": "Mahin lives alone in Tehran since her husband’s death and her daughter’s departure for Europe, until an afternoon tea with friends leads her to break her solitary routine and revitalize her love life.", + "posterPath": "/gs6XHzRPZWBMUbFkZUwMDgNz0li.jpg", + "backdropPath": "/3p1bD9QYA41lb5MBijhYee70Fxz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "2024-07-11", + "releaseYear": "2024", + "originalLanguage": "fa", + "voteAverage": 7.31, + "voteCount": 124, + "popularity": 15.6181 + }, + { + "id": 1126166, + "title": "Flight Risk", + "originalTitle": "Flight Risk", + "overview": "A U.S. Marshal escorts a government witness to trial after he's accused of getting involved with a mob boss, only to discover that the pilot who is transporting them is also a hitman sent to assassinate the informant. After they subdue him, they're forced to fly together after discovering that there are others attempting to eliminate them.", + "posterPath": "/q0bCG4NX32iIEsRFZqRtuvzNCyZ.jpg", + "backdropPath": "/hwlyY7LJdEFbCPaGNXiskKKmJ5X.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-01-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.985, + "voteCount": 1039, + "popularity": 15.5741 + }, + { + "id": 569094, + "title": "Spider-Man: Across the Spider-Verse", + "originalTitle": "Spider-Man: Across the Spider-Verse", + "overview": "After reuniting with Gwen Stacy, Brooklyn’s full-time, friendly neighborhood Spider-Man is catapulted across the Multiverse, where he encounters the Spider Society, a team of Spider-People charged with protecting the Multiverse’s very existence. But when the heroes clash on how to handle a new threat, Miles finds himself pitted against the other Spiders and must set out on his own to save those he loves most.", + "posterPath": "/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg", + "backdropPath": "/9xfDWXAUbFXQK585JvByT5pEAhe.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 12, + 878 + ], + "genres": [ + "Animation", + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2023-05-31", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.34, + "voteCount": 8059, + "popularity": 15.487 + }, + { + "id": 652, + "title": "Troy", + "originalTitle": "Troy", + "overview": "In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnon to help him get her back. Agamemnon sees this as an opportunity for power. They set off with 1,000 ships holding 50,000 Greeks to Troy.", + "posterPath": "/a07wLy4ONfpsjnBqMwhlWTJTcm.jpg", + "backdropPath": "/d3z8MH9OvTOOSxy5QwAG0cS6GKU.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 28, + 36 + ], + "genres": [ + "War", + "Action", + "History" + ], + "releaseDate": "2004-05-13", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.164, + "voteCount": 10716, + "popularity": 15.4533 + }, + { + "id": 14836, + "title": "Coraline", + "originalTitle": "Coraline", + "overview": "Wandering her rambling old house in her boring new town, 11-year-old Coraline discovers a hidden door to a strangely idealized version of her life. In order to stay in the fantasy, she must make a frighteningly real sacrifice.", + "posterPath": "/4jeFXQYytChdZYE9JYO7Un87IlW.jpg", + "backdropPath": "/hofnlIyF6bePkgQOpcuRWLvzf15.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "2009-02-05", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 8667, + "popularity": 15.4526 + }, + { + "id": 1064213, + "title": "Anora", + "originalTitle": "Anora", + "overview": "A young sex worker from Brooklyn gets her chance at a Cinderella story when she meets and impulsively marries the son of an oligarch. Once the news reaches Russia, her fairytale is threatened as his parents set out to get the marriage annulled.", + "posterPath": "/cgXk2tNYhJZLXdBDO5DidAVzQ82.jpg", + "backdropPath": "/qvyOfwTC3qdbzkqdXWSSEMHtjBZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "2024-10-14", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 2761, + "popularity": 15.3915 + }, + { + "id": 605928, + "title": "The Power of the Present", + "originalTitle": "The Power of the Present", + "overview": "Exploring the history of the 'Power Rangers' franchise, casting, special effects and music.", + "posterPath": "/935rKaSrvVvjjmdL0a1fnyVSg1W.jpg", + "backdropPath": "/9UTtkDubZJ7KolXtpMds9guAk0z.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2017-06-27", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 14, + "popularity": 15.3384 + }, + { + "id": 872585, + "title": "Oppenheimer", + "originalTitle": "Oppenheimer", + "overview": "The story of J. Robert Oppenheimer's role in the development of the atomic bomb during World War II.", + "posterPath": "/8Gxv8gSFCU0XGDykEGv7zR1n2ua.jpg", + "backdropPath": "/ycnO0cjsAROSGJKuMODgRtWsHQw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2023-07-19", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.045, + "voteCount": 11015, + "popularity": 15.2753 + }, + { + "id": 291805, + "title": "Now You See Me 2", + "originalTitle": "Now You See Me 2", + "overview": "One year after outwitting the FBI and winning the public’s adulation with their mind-bending spectacles, the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.", + "posterPath": "/A81kDB6a1K86YLlcOtZB27jriJh.jpg", + "backdropPath": "/oFQilRMEq6yQbtMPxIYWpXeQ5ZN.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2016-06-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 11210, + "popularity": 15.2466 + }, + { + "id": 346698, + "title": "Barbie", + "originalTitle": "Barbie", + "overview": "Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land. However, when they get a chance to go to the real world, they soon discover the joys and perils of living among humans.", + "posterPath": "/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", + "backdropPath": "/ctMserH8g2SeOAnCw5gFjdQF8mo.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12 + ], + "genres": [ + "Comedy", + "Adventure" + ], + "releaseDate": "2023-07-19", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.944, + "voteCount": 10504, + "popularity": 15.1641 + }, + { + "id": 1269021, + "title": "Wake", + "originalTitle": "Wake", + "overview": "A struggling actress tracks down the star of a movie she hopes will be remade, only to uncover dark secrets.", + "posterPath": "/nMcBXvnLqoTKXZnyEeYFOIBlwLX.jpg", + "backdropPath": "/ryOtVdaYyz1HduChYyWPy9dJDB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-05-23", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 26, + "popularity": 15.1176 + }, + { + "id": 1086910, + "title": "The Lost Princess", + "originalTitle": "The Lost Princess", + "overview": "After an Ayahuasca vision transports him to a haunted castle, Alec meets Hanna who tales him the story of her mother's forced marriage and how the forbidden passion with her father was in danger when the princess pregnancy became obvious", + "posterPath": "/31S2ISsDtbnxb0kuXZl1SxSMD0K.jpg", + "backdropPath": "/ax2qCKU6tUhdkStiCnrDdXKA5xC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12 + ], + "genres": [ + "Action", + "Adventure" + ], + "releaseDate": "2025-10-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.225, + "voteCount": 40, + "popularity": 14.9426 + }, + { + "id": 760104, + "title": "X", + "originalTitle": "X", + "overview": "In 1979, a group of young filmmakers set out to make an adult film in rural Texas, but when their reclusive, elderly hosts catch them in the act, the cast find themselves fighting for their lives.", + "posterPath": "/lopZSVtXzhFY603E9OqF7O1YKsh.jpg", + "backdropPath": "/70Rm9ItxKuEKN8iu6rNjfwAYUCJ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2022-03-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.736, + "voteCount": 3738, + "popularity": 14.9206 + }, + { + "id": 1328803, + "title": "Prisoner of War", + "originalTitle": "Prisoner of War", + "overview": "British RAF Wing Commander James Wright is captured by the Japanese during WWII and forced to fight in brutal hand-to-hand combat. The Japanese soldiers get more than they bargained for when Wright’s years of martial arts training in Hong Kong prove him to be a formidable opponent.", + "posterPath": "/1XET89sjRm9mUuHXhGIlKTNd5uD.jpg", + "backdropPath": "/yGByIyqgJerCw7AAphTrTAlrdkJ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752, + 53, + 36 + ], + "genres": [ + "Action", + "War", + "Thriller", + "History" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 123, + "popularity": 14.9124 + }, + { + "id": 8681, + "title": "Taken", + "originalTitle": "Taken", + "overview": "Bryan Mills, a former government operative, is trying to reconnect with his teenage daughter Kim. After reluctantly agreeing with his ex-wife to let Kim go to Paris on vacation with a friend, his worst nightmare comes true. While on the phone with his daughter shortly after she arrives in Paris, she and her friend are abducted by a gang of human traffickers. Working against the clock, Bryan relies on his extensive training and skills to track down the ruthless gang that abducted her and launch a one-man war to rescue his daughter.", + "posterPath": "/ognkaUSNgJe1a2pjB4UNdzEo5jT.jpg", + "backdropPath": "/3DlffV1tXQ0HmYiwUZ1RhTyJxBk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2008-02-18", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.399, + "voteCount": 11756, + "popularity": 14.9007 + }, + { + "id": 1232449, + "title": "Young Hearts", + "originalTitle": "Young Hearts", + "overview": "14-year-old Elias increasingly feels like an outsider in his village. When he meets his new neighbour of the same age, Alexander, Elias is confronted with his burgeoning sexuality.", + "posterPath": "/iGCtYxfuvXfy0BD5m6p7vKuPOxS.jpg", + "backdropPath": "/A7KwHKB5faRRRRveVQC5TPI35kV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2024-10-26", + "releaseYear": "2024", + "originalLanguage": "nl", + "voteAverage": 8.503, + "voteCount": 179, + "popularity": 14.86 + }, + { + "id": 1285965, + "title": "Dangerous Animals", + "originalTitle": "Dangerous Animals", + "overview": "A savvy and free-spirited surfer is abducted by a shark-obsessed serial killer. Held captive on his boat, she must figure out how to escape before he carries out a ritualistic feeding to the sharks below.", + "posterPath": "/9tk3Si960hg4E49eMt81dS7Qe9Z.jpg", + "backdropPath": "/6bfas8v3FzZ3qpzR2RWpw4z9DT7.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-06-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.435, + "voteCount": 364, + "popularity": 14.6654 + }, + { + "id": 1290159, + "title": "A House of Dynamite", + "originalTitle": "A House of Dynamite", + "overview": "When a single, unattributed missile is launched at the United States, a race begins to determine who is responsible and how to respond.", + "posterPath": "/AiJ8L90ftPAwVf3SDx7Fj9IMZoy.jpg", + "backdropPath": "/5SVRVwBfHCIkffiq0MmbdvnHWSz.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2025-10-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.373, + "voteCount": 865, + "popularity": 14.6374 + }, + { + "id": 1100988, + "title": "28 Years Later", + "originalTitle": "28 Years Later", + "overview": "Twenty-eight years since the rage virus escaped a biological weapons laboratory, now, still in a ruthlessly enforced quarantine, some have found ways to exist amidst the infected. One such group lives on a small island connected to the mainland by a single, heavily-defended causeway. When one member departs on a mission into the dark heart of the mainland, he discovers secrets, wonders, and horrors that have mutated not only the infected but other survivors as well.", + "posterPath": "/mIg1qCkVxnAlM2TK3RUF0tdEXlE.jpg", + "backdropPath": "/wxxSyWPPgssnkO6FbCAVyntLLSr.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 878 + ], + "genres": [ + "Horror", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2025-06-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.669, + "voteCount": 1742, + "popularity": 14.6354 + }, + { + "id": 578, + "title": "Jaws", + "originalTitle": "Jaws", + "overview": "When the seaside community of Amity finds itself under attack by a dangerous great white shark, the town's chief of police, a young marine biologist, and a grizzled shark hunter embark on a desperate quest to kill the beast before it strikes again.", + "posterPath": "/lxM6kqilAdpdhqUl2biYp5frUxE.jpg", + "backdropPath": "/i1yf91svRHX45l9BXL8rVFzLoPH.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 12 + ], + "genres": [ + "Horror", + "Thriller", + "Adventure" + ], + "releaseDate": "1975-06-20", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 7.681, + "voteCount": 11159, + "popularity": 14.628 + }, + { + "id": 458083, + "title": "Covet: Island of Desire", + "originalTitle": "탐하다: 욕망의 섬", + "overview": "People who are on a fishing boat in a secluded countryside wake up to a deep desire in their heart. Money, sex, power ... In the uninhabited desert of endless desire, it turns out that somebody is found as a body and another person is on the island. Can they escape safely from the island of desire?", + "posterPath": "/zNebLQ3O2BNNI1qCDqTRCzxJTrS.jpg", + "backdropPath": "/bcVvmv9txmENrTFv79m9KdI538n.jpg", + "mediaType": "movie", + "genreIds": [ + 10749 + ], + "genres": [ + "Romance" + ], + "releaseDate": "2017-05-04", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 5.5, + "voteCount": 14, + "popularity": 14.5945 + }, + { + "id": 1252309, + "title": "Ask Me What You Want", + "originalTitle": "Pídeme lo que quieras", + "overview": "After his father's death, Eric Zimmerman travels to Spain to oversee his company's branches. In Madrid, he falls for Judith and engage in an intense, erotic relationship full of exploration. However, Eric fears his secret may end their affair.", + "posterPath": "/k82T5L1utX1G2LhNWeza9nGUKPk.jpg", + "backdropPath": "/8Rseq6hAhAItnTrbECEFt35VoSJ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2024-11-29", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.183, + "voteCount": 252, + "popularity": 14.5748 + }, + { + "id": 1033148, + "title": "Die My Love", + "originalTitle": "Die My Love", + "overview": "Grace, a writer and young mother, is slowly slipping into madness. Locked away in an old house in Montana, her increasingly agitated and erratic behaviour leaves her companion, Jackson, worried and helpless.", + "posterPath": "/iQKbyMTdj8NodLyvUG1nwfA2owL.jpg", + "backdropPath": "/ltIxMsVJD9iiD5V4SBp4kv3KhVb.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2025-10-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.919, + "voteCount": 80, + "popularity": 14.5684 + }, + { + "id": 1304434, + "title": "Nobody", + "originalTitle": "浪浪山小妖怪", + "overview": "The Little Pig Yao decides to leave Langlang Mountain to join the pilgrimage. On the journey west, what trials will the little monsters face? In the end, will they achieve their dreams and live as they truly desire?", + "posterPath": "/t3Rs1BeIDXhwjOt10iyjiFe7BpL.jpg", + "backdropPath": "/zivCs8QHipco13PVKI3ZVfBcRPx.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 14, + 35 + ], + "genres": [ + "Animation", + "Adventure", + "Fantasy", + "Comedy" + ], + "releaseDate": "2025-08-02", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.529, + "voteCount": 35, + "popularity": 14.549 + }, + { + "id": 218, + "title": "The Terminator", + "originalTitle": "The Terminator", + "overview": "In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \"Terminator\" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?", + "posterPath": "/hzXSE66v6KthZ8nPoLZmsi2G05j.jpg", + "backdropPath": "/ffdqHMWkh1h9MABwIfbfRJhgFW6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1984-10-26", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.674, + "voteCount": 14020, + "popularity": 14.5432 + }, + { + "id": 579974, + "title": "RRR", + "originalTitle": "రౌద్రం రణం రుధిరం", + "overview": "A fictional history of two legendary revolutionaries' journey away from home before they began fighting for their country in the 1920s.", + "posterPath": "/u0XUBNQWlOvrh0Gd97ARGpIkL0.jpg", + "backdropPath": "/i0Y0wP8H6SRgjr6QmuwbtQbS24D.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Drama" + ], + "releaseDate": "2022-03-24", + "releaseYear": "2022", + "originalLanguage": "te", + "voteAverage": 7.7, + "voteCount": 1481, + "popularity": 14.5323 + }, + { + "id": 1561969, + "title": "Baramulla", + "originalTitle": "बारामूला", + "overview": "A cop's inquiry into child kidnappings unravels chilling secrets as supernatural events endanger his family and the peaceful town of Baramulla.", + "posterPath": "/xm5ER19nTk7iuWFaiNRUYe3Zlz.jpg", + "backdropPath": "/ajIRfvb5MkpH8spMJ5OCyg2enVS.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2025-11-06", + "releaseYear": "2025", + "originalLanguage": "hi", + "voteAverage": 5.56, + "voteCount": 25, + "popularity": 14.4852 + }, + { + "id": 121, + "title": "The Lord of the Rings: The Two Towers", + "originalTitle": "The Lord of the Rings: The Two Towers", + "overview": "Frodo Baggins and the other members of the Fellowship continue on their sacred quest to destroy the One Ring--but on separate paths. Their destinies lie at two towers--Orthanc Tower in Isengard, where the corrupt wizard Saruman awaits, and Sauron's fortress at Barad-dur, deep within the dark lands of Mordor. Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.", + "posterPath": "/5VTN0pR8gcqV3EPUHHfMGnJYN9L.jpg", + "backdropPath": "/kWYfW2Re0rUDE6IHhy4CRuKWeFr.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2002-12-18", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 23146, + "popularity": 14.459 + }, + { + "id": 603692, + "title": "John Wick: Chapter 4", + "originalTitle": "John Wick: Chapter 4", + "overview": "With the price on his head ever increasing, John Wick uncovers a path to defeating The High Table. But before he can earn his freedom, Wick must face off against a new enemy with powerful alliances across the globe and forces that turn old friends into foes.", + "posterPath": "/vZloFAK7NmvMGKE7VkF5UHaz0I.jpg", + "backdropPath": "/7I6VUdPj6tQECNHdviJkUHD2u89.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2023-03-22", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 7502, + "popularity": 14.4314 + }, + { + "id": 251783, + "title": "Pleasure or Pain", + "originalTitle": "Pleasure or Pain", + "overview": "A young designer falls under a man's erotic spell and is drawn into a world of sexual abandon from which she may never return.", + "posterPath": "/hPsB2NZozctyxl9juWPZzdIpHxa.jpg", + "backdropPath": "/5ZD01vOriq44gVvPm7sEyfwKD0f.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2013-09-05", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 88, + "popularity": 14.3999 + }, + { + "id": 807, + "title": "Se7en", + "originalTitle": "Se7en", + "overview": "Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"seven deadly sins\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Somerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.", + "posterPath": "/191nKfP0ehp3uIvWqgPbFmI4lv9.jpg", + "backdropPath": "/hkKTtlHjiVUW5XRfkQfl3FmJUfX.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 53 + ], + "genres": [ + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "1995-09-22", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 8.377, + "voteCount": 22331, + "popularity": 14.3711 + }, + { + "id": 68718, + "title": "Django Unchained", + "originalTitle": "Django Unchained", + "overview": "With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.", + "posterPath": "/7oWY8VDWW7thTzWh3OKYRkWUlD5.jpg", + "backdropPath": "/by7k8LWzRO4zVhwL1TunlwFdbx9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "2012-12-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.185, + "voteCount": 27294, + "popularity": 14.3291 + }, + { + "id": 986206, + "title": "Night Carnage", + "originalTitle": "Night Carnage", + "overview": "A blogger who is also a werewolf meets a dashing playboy with a dark secret of his own. Starring Logan Andrews and Christian Howard.", + "posterPath": "/w0wjPQKhlqisSbylf1sWZiNyc2h.jpg", + "backdropPath": "/5xgxXZ9C8KZDg0xWbk6rX0XcO9T.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 10749 + ], + "genres": [ + "Action", + "Horror", + "Romance" + ], + "releaseDate": "2025-07-29", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 60, + "popularity": 14.3082 + }, + { + "id": 10719, + "title": "Elf", + "originalTitle": "Elf", + "overview": "When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic.", + "posterPath": "/oOleziEempUPu96jkGs0Pj6tKxj.jpg", + "backdropPath": "/lKkKaGnKdahSGPMOngMIGM1fNJN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 14 + ], + "genres": [ + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2003-11-07", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.658, + "voteCount": 4321, + "popularity": 14.2831 + }, + { + "id": 1011985, + "title": "Kung Fu Panda 4", + "originalTitle": "Kung Fu Panda 4", + "overview": "Po is gearing up to become the spiritual leader of his Valley of Peace, but also needs someone to take his place as Dragon Warrior. As such, he will train a new kung fu practitioner for the spot and will encounter a villain called the Chameleon who conjures villains from the past.", + "posterPath": "/kDp1vUBnMpe8ak4rjgl3cLELqjU.jpg", + "backdropPath": "/3ffPx9jqg0yj9y1KWeagT7D20CB.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 28, + 35, + 12, + 14 + ], + "genres": [ + "Animation", + "Family", + "Action", + "Comedy", + "Adventure", + "Fantasy" + ], + "releaseDate": "2024-03-02", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.029, + "voteCount": 3289, + "popularity": 14.2172 + }, + { + "id": 18424, + "title": "Cloud 9", + "originalTitle": "Cloud 9", + "overview": "Has-been sports promoter Billy Cole gets a second shot at fame and fortune when he puts together a women's volleyball team, comprised of exotic dancers...", + "posterPath": "/wAOpdKNVnCtO0rtHEI8HvEYX8rI.jpg", + "backdropPath": "/8FIBQymoFRc9IHT4OgyAUyDmwun.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 53 + ], + "genres": [ + "Comedy", + "Romance", + "Thriller" + ], + "releaseDate": "2006-01-01", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.089, + "voteCount": 28, + "popularity": 14.2079 + }, + { + "id": 508, + "title": "Love Actually", + "originalTitle": "Love Actually", + "overview": "Eight very different couples deal with their love lives in various loosely interrelated tales all set during a frantic month before Christmas in London.", + "posterPath": "/7QPeVsr9rcFU9Gl90yg0gTOTpVv.jpg", + "backdropPath": "/xUWf5xX0AnZgAnYXAMk03zTbsef.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2003-09-07", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 7115, + "popularity": 14.1929 + }, + { + "id": 49051, + "title": "The Hobbit: An Unexpected Journey", + "originalTitle": "The Hobbit: An Unexpected Journey", + "overview": "Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.", + "posterPath": "/yHA9Fc37VmpUA5UncTxxo3rTGVA.jpg", + "backdropPath": "/e9XpCB9XoTSvek6O7PNvJMhSlIK.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2012-12-12", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.364, + "voteCount": 19135, + "popularity": 14.1892 + }, + { + "id": 535809, + "title": "A Shoe Addict's Christmas", + "originalTitle": "A Shoe Addict's Christmas", + "overview": "As Christmas approaches, a department store worker whose life lacks fulfillment meets her guardian angel, who offers her a chance to change her circumstances by magically transporting her to Christmases past whenever she tries on a new pair of shoes.", + "posterPath": "/xAMSWUBSG8rhXuU9JmQItWNmn4U.jpg", + "backdropPath": "/rToVdkhRishbanfsw0QbTMAyA3T.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 10770, + 14 + ], + "genres": [ + "Romance", + "Drama", + "TV Movie", + "Fantasy" + ], + "releaseDate": "2018-11-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.253, + "voteCount": 75, + "popularity": 14.1714 + }, + { + "id": 98, + "title": "Gladiator", + "originalTitle": "Gladiator", + "overview": "After the death of Emperor Marcus Aurelius, his devious son takes power and demotes Maximus, one of Rome's most capable generals who Marcus preferred. Eventually, Maximus is forced to become a gladiator and battle to the death against other men for the amusement of paying audiences.", + "posterPath": "/ty8TGRuvJLPUmAR1H1nRIsgwvim.jpg", + "backdropPath": "/jhk6D8pim3yaByu1801kMoxXFaX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 12 + ], + "genres": [ + "Action", + "Drama", + "Adventure" + ], + "releaseDate": "2000-05-04", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 8.221, + "voteCount": 20256, + "popularity": 14.1155 + }, + { + "id": 13494, + "title": "Red Sonja", + "originalTitle": "Red Sonja", + "overview": "A young girl rises from the ashes of tragedy to become the most feared warrior woman of all time: the She-Devil with a Sword.", + "posterPath": "/aE3yh4y0h96CZZpLo0UDFMWZAA9.jpg", + "backdropPath": "/xSD0q1FiuZkvHuy7uscOLbmd1hR.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 14 + ], + "genres": [ + "Adventure", + "Action", + "Fantasy" + ], + "releaseDate": "2025-07-31", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 138, + "popularity": 14.0952 + }, + { + "id": 497, + "title": "The Green Mile", + "originalTitle": "The Green Mile", + "overview": "A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cell block's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.", + "posterPath": "/o0lO84GI7qrG6XFvtsPOSV7CTNa.jpg", + "backdropPath": "/b6HWTOxn1xevvyHU2K9ICvaRU6g.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 80 + ], + "genres": [ + "Fantasy", + "Drama", + "Crime" + ], + "releaseDate": "1999-12-10", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.503, + "voteCount": 18585, + "popularity": 14.0846 + }, + { + "id": 1242011, + "title": "Together", + "originalTitle": "Together", + "overview": "With a move to the countryside already testing the limits of a couple's relationship, a supernatural encounter begins an extreme transformation of their love, their lives, and their flesh.", + "posterPath": "/m52XidzKx94bKlToZfEXUnL3pdy.jpg", + "backdropPath": "/fBlzTwgtbDYkDKlhnPu69jHfVGy.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 10749 + ], + "genres": [ + "Horror", + "Romance" + ], + "releaseDate": "2025-07-28", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.119, + "voteCount": 729, + "popularity": 14.0837 + }, + { + "id": 19782, + "title": "Mama Jack", + "originalTitle": "Mama Jack", + "overview": "Set in Cape Town, South Africa Mama Jack is the story of Jack Theron, an ordinary person working on a film set. However, his movie producer boss hates him and wants to remove him from the production of the film. In a bid to get rid of Jack, the producer spikes his drink with a drug at a glamorous function, and before long Jack has got himself on the wrong side of the law. While on the run, Jack turns to his friend, a make-up artist, who turns him into \"Mama Bolo\". Mama Bolo soon finds “herself” employed by the producer’s fiancée, Angela. A series of deceptions and misunderstandings pile up and comic mayhem ensues with Jack Theron becoming another character, Doctor Donald, a tramp from Scotland.", + "posterPath": "/ftMuRRl8tLlnzKRnVI3SeHyuCGh.jpg", + "backdropPath": "/gtcWmJHkhd9kfFCr5hDWQrZ50eb.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-01-01", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 14, + "popularity": 14.0617 + }, + { + "id": 1235746, + "title": "Dead of Winter", + "originalTitle": "Dead of Winter", + "overview": "A widowed fisherwoman, travelling alone through snowbound northern Minnesota, interrupts the kidnapping of a teenage girl. Hours from the nearest town and with no phone service, she realizes that she is the young girl's only hope.", + "posterPath": "/5DcrN62sGAiRJxt8rXSRlSRLwIE.jpg", + "backdropPath": "/ajdB8AoHKrYlOR4yMDMZYLFyfdj.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2025-09-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.443, + "voteCount": 96, + "popularity": 14.002 + }, + { + "id": 637, + "title": "Life Is Beautiful", + "originalTitle": "La vita è bella", + "overview": "A touching story of an Italian book seller of Jewish ancestry who lives in his own little fairy tale. His creative and happy life would come to an abrupt halt when his entire family is deported to a concentration camp during World War II. While locked up he tries to convince his son that the whole thing is just a game.", + "posterPath": "/mfnkSeeVOBVheuyn2lo4tfmOPQb.jpg", + "backdropPath": "/6aNKD81RHR1DqUUa8kOZ1TBY1Lp.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1997-12-20", + "releaseYear": "1997", + "originalLanguage": "it", + "voteAverage": 8.44, + "voteCount": 13655, + "popularity": 13.9834 + }, + { + "id": 766507, + "title": "Prey", + "originalTitle": "Prey", + "overview": "When danger threatens her camp, the fierce and highly skilled Comanche warrior Naru sets out to protect her people. But the prey she stalks turns out to be a highly evolved alien predator with a technically advanced arsenal.", + "posterPath": "/2FKjLRt7oK1bRRIrxgWmthbBdFh.jpg", + "backdropPath": "/sNhzcUw5cg4JwICjnHZ5XhTKNrU.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 878 + ], + "genres": [ + "Thriller", + "Action", + "Science Fiction" + ], + "releaseDate": "2022-08-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 7373, + "popularity": 13.9318 + }, + { + "id": 1160360, + "title": "If I Had Legs I'd Kick You", + "originalTitle": "If I Had Legs I'd Kick You", + "overview": "With her life crashing down around her, Linda attempts to navigate her child's mysterious illness, her absent husband, a missing person, and an increasingly hostile relationship with her therapist.", + "posterPath": "/gkIFK1HzqfgQg4v4ifeNKogHtPG.jpg", + "backdropPath": "/hHN4iGAu0sCYvR0oaFmemKXDnVV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2025-10-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.776, + "voteCount": 59, + "popularity": 13.9134 + }, + { + "id": 90187, + "title": "La Orca", + "originalTitle": "La orca", + "overview": "A teenage girl is kidnapped by 3 guys and taken to an abandoned house in the country, where she is made to write her own ransom letter. She soon discovers that one of her captors is infatuated with her and she will use those feelings to stay alive.", + "posterPath": "/7Dlor3aJBaigcYdKjhRQpPcCnjI.jpg", + "backdropPath": "/lQbPBHrbKh2m6cIReF8zJaIN3Ha.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1976-06-01", + "releaseYear": "1976", + "originalLanguage": "it", + "voteAverage": 5.2, + "voteCount": 26, + "popularity": 13.8914 + }, + { + "id": 372921, + "title": "Mutual Relations", + "originalTitle": "공즉시색", + "overview": "Ho-kyeong, Joo-yeong and Yeon-hee are students of an American university who are all pretty and sexy. They either know too much or know too little so they decide to find men who can satisfy them. A lean man who was a former nude model, a younger man who has perfect techniques and a man who thinks very highly of women; these guys start the project!", + "posterPath": "/k8dsPTp1Ga67c0Ie00qyR3vcPG3.jpg", + "backdropPath": "/flBvN0JFdf7jTMtr0RAHAToUQz9.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2015-12-01", + "releaseYear": "2015", + "originalLanguage": "ko", + "voteAverage": 6.5, + "voteCount": 19, + "popularity": 13.8794 + }, + { + "id": 769, + "title": "GoodFellas", + "originalTitle": "GoodFellas", + "overview": "The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.", + "posterPath": "/aKuFiU82s5ISJpGZp7YkIr3kCUd.jpg", + "backdropPath": "/gILte6Zd7m1YneIr6MVhh30S9pr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1990-09-12", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 8.453, + "voteCount": 13812, + "popularity": 13.828 + }, + { + "id": 58, + "title": "Pirates of the Caribbean: Dead Man's Chest", + "originalTitle": "Pirates of the Caribbean: Dead Man's Chest", + "overview": "Captain Jack Sparrow races to recover the heart of Davy Jones to avoid enslaving his soul to Jones' service, as other friends and foes seek the heart for their own agenda as well.", + "posterPath": "/lAhcKRt0ggTFkeFL95jrGQYaRXs.jpg", + "backdropPath": "/vr6n6ZFUZvedvIlhfYcbCWcaKyW.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2006-07-06", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.373, + "voteCount": 16724, + "popularity": 13.8006 + }, + { + "id": 152601, + "title": "Her", + "originalTitle": "Her", + "overview": "In the not so distant future, Theodore, a lonely writer, purchases a newly developed operating system designed to meet the user's every need. To Theodore's surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.", + "posterPath": "/eCOtqtfvn7mxGl6nfmq4b1exJRc.jpg", + "backdropPath": "/sPPsR9f4K0movWVQ99u4uMqFzEL.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 878, + 18 + ], + "genres": [ + "Romance", + "Science Fiction", + "Drama" + ], + "releaseDate": "2013-12-18", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.846, + "voteCount": 14884, + "popularity": 13.7729 + }, + { + "id": 615457, + "title": "Nobody", + "originalTitle": "Nobody", + "overview": "Hutch Mansell, a suburban dad, overlooked husband, nothing neighbor — a \"nobody.\" When two thieves break into his home one night, Hutch's unknown long-simmering rage is ignited and propels him on a brutal path that will uncover dark secrets he fought to leave behind.", + "posterPath": "/oBgWY00bEFeZ9N25wWVyuQddbAo.jpg", + "backdropPath": "/61MrK5U4w4MVL1vfwoG12zYPJ8B.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2021-03-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 7904, + "popularity": 13.7581 + }, + { + "id": 1109086, + "title": "War 2", + "originalTitle": "वॉर 2", + "overview": "Years ago Agent Kabir went rogue, became India’s greatest villain ever. As he descends further into the deepest shadows... India sends its deadliest, most lethal agent after him, Agent Vikram A Special Units Officer who is more than Kabir’s equal and a relentless Terminator driven by his own demons, determined to put a bullet into Kabir’s skull.", + "posterPath": "/2Yc8Kl2ldPpDzLrG2M5Ddv62FXB.jpg", + "backdropPath": "/pKIRUTnwY3YYU9urSdsuobdcliP.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2025-08-13", + "releaseYear": "2025", + "originalLanguage": "hi", + "voteAverage": 5.545, + "voteCount": 44, + "popularity": 13.7216 + }, + { + "id": 564, + "title": "The Mummy", + "originalTitle": "The Mummy", + "overview": "Dashing legionnaire Rick O'Connell stumbles upon the hidden ruins of Hamunaptra while in the midst of a battle to claim the area in 1920s Egypt. It has been over three thousand years since former High Priest Imhotep suffered a fate worse than death as a punishment for a forbidden love—along with a curse that guarantees eternal doom upon the world if he is ever awoken.", + "posterPath": "/yhIsVvcUm7QxzLfT6HW2wLf5ajY.jpg", + "backdropPath": "/8zLS8p1tRyWFLRFfmgQq0j5WE6z.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 14 + ], + "genres": [ + "Adventure", + "Action", + "Fantasy" + ], + "releaseDate": "1999-04-16", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.953, + "voteCount": 9607, + "popularity": 13.6813 + }, + { + "id": 666154, + "title": "Kayara", + "originalTitle": "Kayara", + "overview": "A courageous and athletic teenager, Kayara dreams that she is destined to be the first female to break into the league of Chasquis - the official messengers of the Incan empire. As she learns what it takes to be a Chasqui along with its challenges, she tackles every mission she gets and discovers the ancient stories of her land and her people.", + "posterPath": "/tpZdjnoJ6Z3NsSxI6HjAIggrcEv.jpg", + "backdropPath": "/hJXsJkQC8F3bgUTfsD402uj2Ewf.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Family" + ], + "releaseDate": "2025-01-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 106, + "popularity": 13.6697 + }, + { + "id": 840326, + "title": "Sisu", + "originalTitle": "Sisu", + "overview": "When an ex-soldier who discovers gold in the Lapland wilderness tries to take the loot into the city, German soldiers led by a brutal SS officer battle him.", + "posterPath": "/ygO9lowFMXWymATCrhoQXd6gCEh.jpg", + "backdropPath": "/pBdQ4iorzRV2G38mdS6rzrmUfMA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752 + ], + "genres": [ + "Action", + "War" + ], + "releaseDate": "2022-09-09", + "releaseYear": "2022", + "originalLanguage": "fi", + "voteAverage": 7.403, + "voteCount": 2524, + "popularity": 13.6015 + }, + { + "id": 1245993, + "title": "Caught Stealing", + "originalTitle": "Caught Stealing", + "overview": "Burned-out ex-baseball player Hank Thompson unexpectedly finds himself embroiled in a dangerous struggle for survival amidst the criminal underbelly of late 1990s New York City, forced to navigate a treacherous underworld he never imagined.", + "posterPath": "/cvda8s5J8YaHjTyEyXQpvD6f3iV.jpg", + "backdropPath": "/41043LV7mfluH8iXEUPVseCDAv5.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 35 + ], + "genres": [ + "Crime", + "Thriller", + "Comedy" + ], + "releaseDate": "2025-08-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.914, + "voteCount": 566, + "popularity": 13.5866 + }, + { + "id": 285, + "title": "Pirates of the Caribbean: At World's End", + "originalTitle": "Pirates of the Caribbean: At World's End", + "overview": "Will Turner and Elizabeth Swann join forces with the revived Captain Barbossa to free Jack Sparrow from Davy Jones' locker. The group must navigate dangerous waters, confront many foes and, ultimately, choose sides in a battle wherein piracy itself hangs in the balance.", + "posterPath": "/jGWpG4YhpQwVmjyHEGkxEkeRf0S.jpg", + "backdropPath": "/xWXTfnmQZhdYyqEPCCKL1IQKUxj.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2007-05-19", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.266, + "voteCount": 15054, + "popularity": 13.5712 + }, + { + "id": 38757, + "title": "Tangled", + "originalTitle": "Tangled", + "overview": "Feisty teenager Rapunzel, who has long and magical hair, wants to go and see sky lanterns on her eighteenth birthday, but she's bound to a tower by her overprotective mother. She strikes a deal with Flynn Rider, a charming wanted thief, and the duo set off on an action-packed escapade.", + "posterPath": "/ym7Kst6a4uodryxqbGOxmewF235.jpg", + "backdropPath": "/cWczNud8Y8i8ab0Z4bxos4myWYO.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12 + ], + "genres": [ + "Animation", + "Family", + "Adventure" + ], + "releaseDate": "2010-11-24", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 12022, + "popularity": 13.5484 + }, + { + "id": 1114967, + "title": "Good Fortune", + "originalTitle": "Good Fortune", + "overview": "A well-meaning but rather inept angel named Gabriel meddles in the lives of a struggling gig worker and a wealthy capitalist.", + "posterPath": "/r83HIGA0mUiy7I9qVr17pF7SCDP.jpg", + "backdropPath": "/q2V1q2Xxwqg3uXQKufpdCtrnAdn.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2025-10-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.095, + "voteCount": 290, + "popularity": 13.5404 + }, + { + "id": 5825, + "title": "National Lampoon's Christmas Vacation", + "originalTitle": "National Lampoon's Christmas Vacation", + "overview": "It's Christmastime, and the Griswolds are preparing for a family seasonal celebration. But things never run smoothly for Clark, his wife Ellen, and their two kids. Clark's continual bad luck is worsened by his obnoxious family guests, but he manages to keep going, knowing that his Christmas bonus is due soon.", + "posterPath": "/oat42hUw8XzKYUmfy0YLAxYd484.jpg", + "backdropPath": "/1KYDPOC6ENDWCkW3TGCdca104hi.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1989-11-30", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.236, + "voteCount": 2557, + "popularity": 13.4785 + }, + { + "id": 10138, + "title": "Iron Man 2", + "originalTitle": "Iron Man 2", + "overview": "With the world now aware of his dual life as the armored superhero Iron Man, billionaire inventor Tony Stark faces pressure from the government, the press and the public to share his technology with the military. Unwilling to let go of his invention, Stark, with Pepper Potts and James 'Rhodey' Rhodes at his side, must forge new alliances – and confront powerful enemies.", + "posterPath": "/6WBeq4fCfn7AN0o21W9qNcRF2l9.jpg", + "backdropPath": "/7lmBufEG7P7Y1HClYK3gCxYrkgS.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2010-04-28", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.848, + "voteCount": 21860, + "popularity": 13.4618 + }, + { + "id": 238675, + "title": "Love Is in the Green Wind", + "originalTitle": "恋は緑の風の中", + "overview": "A youthful film depicting the sexual awakening of a boy who has just entered adolescence and his heartbreaking romance during the summer holidays with a young sprightly girl.", + "posterPath": "/4AOJPwmtgXubEkM7JmTsUfB1C8N.jpg", + "backdropPath": "/q4GVfF2Z4wtr9LQ9RFXfJEQZ0Tf.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1974-11-23", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 22, + "popularity": 13.4548 + }, + { + "id": 748783, + "title": "The Garfield Movie", + "originalTitle": "The Garfield Movie", + "overview": "Garfield, the world-famous, Monday-hating, lasagna-loving indoor cat, is about to have a wild outdoor adventure! After an unexpected reunion with his long-lost father – scruffy street cat Vic – Garfield and his canine friend Odie are forced from their perfectly pampered life into joining Vic in a hilarious, high-stakes heist.", + "posterPath": "/xYduFGuch9OwbCOEUiamml18ZoB.jpg", + "backdropPath": "/P82NAcEsLIYgQtrtn36tYsj41m.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2024-04-30", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 1354, + "popularity": 13.4374 + }, + { + "id": 150689, + "title": "Cinderella", + "originalTitle": "Cinderella", + "overview": "When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger in the woods.", + "posterPath": "/j91LJmcWo16CArFOoapsz84bwxb.jpg", + "backdropPath": "/uKp9bl7yfwOROeGD7BZPPmiKTSm.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 14, + 10751, + 18 + ], + "genres": [ + "Romance", + "Fantasy", + "Family", + "Drama" + ], + "releaseDate": "2015-03-06", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 7255, + "popularity": 13.4051 + }, + { + "id": 1210732, + "title": "How to Make a Killing", + "originalTitle": "Un ours dans le Jura", + "overview": "Michel and Cathy, wed for longer than they can remember, lead a quiet but monotonous life in the mountains. When a bear bursts out in front of Michel’s car, accidentally killing two drug dealers and revealing a €2 million loot in the process, their life takes an unpredictable turn, especially when they decide to cover up the incident and keep the money! But their plan leads them to stumble upon an unexplained trail of dead bodies. More used to being honest than crooked, Michel and Cathy’s clumsy cover-up efforts soon put an interfering inspector hot on their trail.", + "posterPath": "/oovadj4TsgCuAGfd5LhDP19ZCYD.jpg", + "backdropPath": "/s7xmwFJQj99lICSGQkr8sQ7G9IA.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53, + 80 + ], + "genres": [ + "Comedy", + "Thriller", + "Crime" + ], + "releaseDate": "2025-01-01", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.452, + "voteCount": 219, + "popularity": 13.3768 + }, + { + "id": 1155281, + "title": "Creation of the Gods II: Demon Force", + "originalTitle": "封神第二部:战火西岐", + "overview": "Taishi Wen Zhong led the army of Shang Dynasty including Deng Chanyu and four generals of the Mo Family to Xiqi. With the help of Kunlun immortals such as Jiang Ziya, Ji Fa led the army and civilians of Xiqi to defend their homeland.", + "posterPath": "/dfUCs5HNtGu4fofh83uiE2Qcy3v.jpg", + "backdropPath": "/yujcZMkNKtNXPvRGyTA3e3VCrbx.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 10752 + ], + "genres": [ + "Action", + "Fantasy", + "War" + ], + "releaseDate": "2025-01-29", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 6.397, + "voteCount": 116, + "popularity": 13.3655 + }, + { + "id": 49013, + "title": "Cars 2", + "originalTitle": "Cars 2", + "overview": "Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.", + "posterPath": "/okIz1HyxeVOMzYwwHUjH2pHi74I.jpg", + "backdropPath": "/4BS8tgBNWg2jPiDlBwM2iJe1xB7.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 35 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Comedy" + ], + "releaseDate": "2011-06-11", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.165, + "voteCount": 8230, + "popularity": 13.3588 + }, + { + "id": 756999, + "title": "The Black Phone", + "originalTitle": "The Black Phone", + "overview": "Finney Blake, a shy but clever 13-year-old boy, is abducted by a sadistic killer and trapped in a soundproof basement where screaming is of little use. When a disconnected phone on the wall begins to ring, Finney discovers that he can hear the voices of the killer’s previous victims. And they are dead set on making sure that what happened to them doesn’t happen to Finney.", + "posterPath": "/p9ZUzCyy9wRTDuuQexkQ78R2BgF.jpg", + "backdropPath": "/AfvIjhDu9p64jKcmohS4hsPG95Q.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2022-06-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 5530, + "popularity": 13.2924 + }, + { + "id": 39254, + "title": "Real Steel", + "originalTitle": "Real Steel", + "overview": "Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After his robot is trashed, he reluctantly teams up with his estranged son to rebuild and train an unlikely contender.", + "posterPath": "/4GIeI5K5YdDUkR3mNQBoScpSFEf.jpg", + "backdropPath": "/pjlxrd646cBYznHoPBWTzz6FujX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 18 + ], + "genres": [ + "Action", + "Science Fiction", + "Drama" + ], + "releaseDate": "2011-09-28", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.063, + "voteCount": 8830, + "popularity": 13.2914 + }, + { + "id": 945961, + "title": "Alien: Romulus", + "originalTitle": "Alien: Romulus", + "overview": "While scavenging the deep ends of a derelict space station, a group of young space colonizers come face to face with the most terrifying life form in the universe.", + "posterPath": "/2uSWRTtCG336nuBiG8jOTEUKSy8.jpg", + "backdropPath": "/9SSEUrSqhljBMzRe4aBTh17rUaC.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "2024-08-13", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 4131, + "popularity": 13.2619 + }, + { + "id": 1241470, + "title": "Osiris", + "originalTitle": "Osiris", + "overview": "Special Forces commandos on a mission are abducted mid-operation by a mysterious spacecraft. Upon waking aboard, they find themselves prey to a relentless alien race in a fight for survival.", + "posterPath": "/3YtZHtXPNG5AleisgEatEfZOT2w.jpg", + "backdropPath": "/ySHUoK4utUOiSfCinw81H1TsV0E.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 27 + ], + "genres": [ + "Science Fiction", + "Action", + "Horror" + ], + "releaseDate": "2025-07-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.303, + "voteCount": 145, + "popularity": 13.2564 + }, + { + "id": 152760, + "title": "The Monuments Men", + "originalTitle": "The Monuments Men", + "overview": "Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the world’s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?", + "posterPath": "/wiWAg4mKV2S4vImPxsPRIdj2R2B.jpg", + "backdropPath": "/uLBJtONQwHoGc61vbIfoC6a9gUp.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18, + 36, + 28 + ], + "genres": [ + "War", + "Drama", + "History", + "Action" + ], + "releaseDate": "2014-01-24", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.065, + "voteCount": 3712, + "popularity": 13.2466 + }, + { + "id": 122917, + "title": "The Hobbit: The Battle of the Five Armies", + "originalTitle": "The Hobbit: The Battle of the Five Armies", + "overview": "Following Smaug's attack on Laketown, Bilbo and the dwarves try to defend Erebor's mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor, fueled by the rise of the dark lord Sauron. Dwarves, elves and men must unite, and the hope for Middle-Earth falls into Bilbo's hands.", + "posterPath": "/xT98tLqatZPQApyRmlPL12LtiWp.jpg", + "backdropPath": "/3UbaCMmqOd7mca4Y5DOzY2ZVTyX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2014-12-10", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 14921, + "popularity": 13.241 + }, + { + "id": 63319, + "title": "Belle épine", + "originalTitle": "Belle épine", + "overview": "After the death of her mother, 17-year-old Prudence finds herself living alone in her Paris apartment. Then she meets Maryline, a rebel of her own age, who introduces her to the thrills of motorcycle racing on the biker circuit at Rungis. Prudence’s newfound lease of freedom becomes complicated when she falls for a boy Franck who wastes no time in taking advantage of her naivety...", + "posterPath": "/22MXstSxbiKCjAqHHmNkxvZEYIp.jpg", + "backdropPath": "/28RCF4E94E9U7W4nBzpUWnoS2HJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-11-10", + "releaseYear": "2010", + "originalLanguage": "fr", + "voteAverage": 5.446, + "voteCount": 56, + "popularity": 13.2141 + }, + { + "id": 583903, + "title": "Our Friend", + "originalTitle": "Our Friend", + "overview": "After learning that his terminally ill wife has six months to live, a man welcomes the support of his best friend who moves into their home to help out.", + "posterPath": "/vg9C5LttsKBqoLuqeQvOXaeBGiD.jpg", + "backdropPath": "/Aw07IupDF1ubyVNrcWwDPbnCQRP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2019-09-04", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.142, + "voteCount": 330, + "popularity": 13.1915 + }, + { + "id": 937278, + "title": "A Man Called Otto", + "originalTitle": "A Man Called Otto", + "overview": "When a lively young family moves in next door, grumpy widower Otto Anderson meets his match in a quick-witted, pregnant woman named Marisol, leading to an unlikely friendship that turns his world upside down.", + "posterPath": "/130H1gap9lFfiTF9iDrqNIkFvC9.jpg", + "backdropPath": "/9ZznETDyfPWVugRiv0jfGrkRftw.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-12-28", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 3333, + "popularity": 13.1882 + }, + { + "id": 718838, + "title": "Mothering Sunday", + "originalTitle": "Mothering Sunday", + "overview": "On a warm spring day in 1924, house maid and foundling Jane Fairchild finds herself alone on Mother's Day. Her employers, Mr. and Mrs. Niven, are out and she has the rare chance to spend quality time with her secret lover. Paul is the boy from the manor house nearby, Jane's long-term love despite the fact that he's engaged to be married to another woman, a childhood friend and daughter of his parents' friends. But events that neither can foresee will change the course of Jane's life forever.", + "posterPath": "/unZ7vPgxMTxWrpPGIkAVSqgdryv.jpg", + "backdropPath": "/ltVm9tMK32x56ezpHgJp0U5YQdY.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2021-11-12", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 118, + "popularity": 13.1542 + }, + { + "id": 4935, + "title": "Howl's Moving Castle", + "originalTitle": "ハウルの動く城", + "overview": "Sophie, a young milliner, is turned into an elderly woman by a witch who enters her shop and curses her. She encounters a wizard named Howl and gets caught up in his resistance to fighting for the king.", + "posterPath": "/13kOl2v0nD2OLbVSHnHk8GUFEhO.jpg", + "backdropPath": "/nv5wwZou159v5OC61i4ElR7OqyY.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 16, + 12 + ], + "genres": [ + "Fantasy", + "Animation", + "Adventure" + ], + "releaseDate": "2004-09-09", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.392, + "voteCount": 10639, + "popularity": 13.1425 + }, + { + "id": 976573, + "title": "Elemental", + "originalTitle": "Elemental", + "overview": "In a city where fire, water, land and air residents live together, a fiery young woman and a go-with-the-flow guy will discover something elemental: how much they have in common.", + "posterPath": "/4Y1WNkd88JXmGfhtWR7dmDAo1T2.jpg", + "backdropPath": "/4fLZUr1e65hKPPVw0R3PmKFKxj1.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 35, + 10749, + 16 + ], + "genres": [ + "Family", + "Fantasy", + "Comedy", + "Romance", + "Animation" + ], + "releaseDate": "2023-06-14", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.594, + "voteCount": 5044, + "popularity": 13.1059 + }, + { + "id": 1352755, + "title": "Maintenance Required", + "originalTitle": "Maintenance Required", + "overview": "Charlie, the fiercely independent owner of an all-female mechanic shop, is forced to reevaluate her future when a flashy corporate competitor moves in across the street. Seeking comfort, she turns to an anonymous online confidant - unaware she's confiding in Beau, the very rival threatening her business. As sparks fly both online and off, the truth threatens to blow everything apart.", + "posterPath": "/lM7Q1y0pmHPWZCPmGkAWGKdgu6W.jpg", + "backdropPath": "/uxRCrEMJlfCILQhkcDuDpadkQC9.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.895, + "voteCount": 133, + "popularity": 13.0927 + }, + { + "id": 412092, + "title": "Mom's Friend 2", + "originalTitle": "엄마친구 2", + "overview": "An art student named Gwang-ho gets dumped by his girlfriend because she was only his source of comfort, and that he's a Mama's boy and a premature ejaculator. He tries to avoid seeing her by going to a different academy and that's when his mother introduces him to her friend Soo-yeon, a sophisticated and intelligent looking woman. Gwang-ho falls for her. Gwang-ho's mother suddenly leaves for Australia because his father is sick and Gwang-ho gets to stay in Soo-yeon's house for a few days. Looking at her, he thinks of all the things he would like to do with her and Soo-yeon's niece Ha-kyeong stimulates him to do something about his feelings.", + "posterPath": "/mLlke4cd9R65FYqtMVUZ3h3Z2z9.jpg", + "backdropPath": "/dhaHfxS7AVNG53xdHOfJO5hRQbW.jpg", + "mediaType": "movie", + "genreIds": [ + 10749 + ], + "genres": [ + "Romance" + ], + "releaseDate": "2016-09-01", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 6.1, + "voteCount": 15, + "popularity": 13.0621 + }, + { + "id": 1252428, + "title": "Anaconda", + "originalTitle": "狂蟒之灾", + "overview": "A struggling circus crew gets deceived by its former partner, as it embarks on a tour in Thailand. During the journey through a Southeast Asian rainforest, they encounter attacks by a giant python. They meet a mysterious man named Jeff who offers to help, but they soon realize he's a poacher. As they search for Jeff's boat, they face life-and-death struggles with the python and Jeff himself.", + "posterPath": "/pPfsEXzfk2URkQ1OxhUShAXdxMr.jpg", + "backdropPath": "/gSVk4r8Q4R8aeGY0hhEG3bE0QzL.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 27, + 53 + ], + "genres": [ + "Adventure", + "Horror", + "Thriller" + ], + "releaseDate": "2024-03-01", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.2, + "voteCount": 113, + "popularity": 13.0353 + }, + { + "id": 103, + "title": "Taxi Driver", + "originalTitle": "Taxi Driver", + "overview": "Suffering from insomnia, disturbed loner Travis Bickle takes a job as a New York City cabbie, haunting the streets nightly, growing increasingly detached from reality as he dreams of cleaning up the filthy city.", + "posterPath": "/ekstpH614fwDX8DUln1a2Opz0N8.jpg", + "backdropPath": "/5MVSXJieOhbyZudCnV1H4YJpfPV.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1976-02-09", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 8.132, + "voteCount": 13005, + "popularity": 13.0305 + }, + { + "id": 272, + "title": "Batman Begins", + "originalTitle": "Batman Begins", + "overview": "Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld - The Batman.", + "posterPath": "/sPX89Td70IDDjVr85jdSBb4rWGr.jpg", + "backdropPath": "/ew5FcYiRhTYNJAkxoVPMNlCOdVn.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 28 + ], + "genres": [ + "Drama", + "Crime", + "Action" + ], + "releaseDate": "2005-06-10", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.719, + "voteCount": 22002, + "popularity": 13.0023 + }, + { + "id": 1241752, + "title": "Rita", + "originalTitle": "Rita", + "overview": "Rita, who finds herself alone when husband Ariel works abroad. They both find solace and sexual satisfaction in other people. When Ariel comes back, they both act like nothing happened. But will this keep their marriage from falling apart?", + "posterPath": "/pXENxAzOBrTSDJGxDcUnlNTNmWr.jpg", + "backdropPath": "/5AsIFZ2AJC7JcGpq40aRPuRuaRc.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-03-22", + "releaseYear": "2024", + "originalLanguage": "tl", + "voteAverage": 6.05, + "voteCount": 20, + "popularity": 12.9964 + }, + { + "id": 9502, + "title": "Kung Fu Panda", + "originalTitle": "Kung Fu Panda", + "overview": "When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the \"chosen one\" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.", + "posterPath": "/wWt4JYXTg5Wr3xBW2phBrMKgp3x.jpg", + "backdropPath": "/qdthf9WrRDSaIkGVQGhhJ9pz1hn.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 28, + 12 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Action", + "Adventure" + ], + "releaseDate": "2008-06-04", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 12219, + "popularity": 12.9927 + }, + { + "id": 111, + "title": "Scarface", + "originalTitle": "Scarface", + "overview": "After getting a green card in exchange for assassinating a Cuban government official, Tony Montana stakes a claim on the drug trade in Miami. Viciously murdering anyone who stands in his way, Tony eventually becomes the biggest drug lord in the state, controlling nearly all the cocaine that comes through Miami. But increased pressure from the police, wars with Colombian drug cartels and his own drug-fueled paranoia serve to fuel the flames of his eventual downfall.", + "posterPath": "/iQ5ztdjvteGeboxtmRdXEChJOHh.jpg", + "backdropPath": "/sctvs9cUwJD15qlTlrsh2BXsK75.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "1983-12-09", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 8.158, + "voteCount": 12586, + "popularity": 12.9647 + }, + { + "id": 348, + "title": "Alien", + "originalTitle": "Alien", + "overview": "During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.", + "posterPath": "/vfrQk5IPloGg1v9Rzbh2Eg3VGyM.jpg", + "backdropPath": "/cEobq5QrnOJjO6giDs8q4RxmMKh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1979-05-25", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 8.167, + "voteCount": 15783, + "popularity": 12.9443 + }, + { + "id": 59940, + "title": "Zebra Lounge", + "originalTitle": "Zebra Lounge", + "overview": "Alan and Wendy Barnet have been married just long enough for the excitement to have gone out of their relationship, and they're looking for a way to put some spice back in their lives. After placing a personal ad looking for another couple interested in swapping mates, the Barnets are led to the Zebra Lounge, where they meet Jack and Louise Bauer, a pair of seasoned erotic adventurers. While the Barnets find the swinging scene exciting at first, they soon decide it may be doing more harm than good to their marriage. But easing the Bauers out of their lives proves to be neither simple nor safe.", + "posterPath": "/hyej1bAJkY39O1tVIYdjLM6nfl6.jpg", + "backdropPath": "/oJqXClbe4ttTGohmbgO8n8UVVeV.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2001-10-04", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 4.262, + "voteCount": 42, + "popularity": 12.9377 + }, + { + "id": 12, + "title": "Finding Nemo", + "originalTitle": "Finding Nemo", + "overview": "Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.", + "posterPath": "/eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg", + "backdropPath": "/eCynaAOgYYiw5yN5lBwz3IxqvaW.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751 + ], + "genres": [ + "Animation", + "Family" + ], + "releaseDate": "2003-05-30", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.817, + "voteCount": 20073, + "popularity": 12.9318 + }, + { + "id": 635302, + "title": "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train", + "originalTitle": "劇場版「鬼滅の刃」無限列車編", + "overview": "Tanjiro Kamado, joined with Inosuke Hashibira, a boy raised by boars who wears a boar's head, and Zenitsu Agatsuma, a scared boy who reveals his true power when he sleeps, boards the Infinity Train on a new mission with the Fire Hashira, Kyojuro Rengoku, to defeat a demon who has been tormenting the people and killing the demon slayers who oppose it!", + "posterPath": "/h8Rb9gBr48ODIwYUttZNYeMWeUU.jpg", + "backdropPath": "/xPpXYnCWfjkt3zzE0dpCNME1pXF.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14 + ], + "genres": [ + "Animation", + "Action", + "Fantasy" + ], + "releaseDate": "2020-10-16", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 4323, + "popularity": 12.9146 + }, + { + "id": 1158915, + "title": "Dìdi (弟弟)", + "originalTitle": "Dìdi (弟弟)", + "overview": "In 2008, during the last month of summer before high school begins, an impressionable 13-year-old Taiwanese American boy learns what his family can't teach him: how to skate, how to flirt, and how to love your mom.", + "posterPath": "/3UCTNaZgxW6BbeHMMTe6uL07MpV.jpg", + "backdropPath": "/2Bii9A3IibMrzmYOahsbC5hUMUm.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-07-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.178, + "voteCount": 174, + "popularity": 12.9114 + }, + { + "id": 1076555, + "title": "The Stolen Painting", + "originalTitle": "Le Tableau volé", + "overview": "André Masson, specialist in modern art, receives a letter according to which a painting by Egon Schiele had been discovered in Mulhouse. He finds that the work has been missing since 1939. This discovery puts his career in danger.", + "posterPath": "/5adCdPAWnvkEOeeawowpjBnG7vP.jpg", + "backdropPath": "/AttxmqrrxdCOoNeJD3Nhh5FUBPv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-05-01", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 107, + "popularity": 12.889 + }, + { + "id": 693134, + "title": "Dune: Part Two", + "originalTitle": "Dune: Part Two", + "overview": "Follow the mythic journey of Paul Atreides as he unites with Chani and the Fremen while on a path of revenge against the conspirators who destroyed his family. Facing a choice between the love of his life and the fate of the known universe, Paul endeavors to prevent a terrible future only he can foresee.", + "posterPath": "/1pdfLvkbY9ohJlCjQH2CZjjYVvJ.jpg", + "backdropPath": "/xOMo8BRK7PfcJv9JCnx7s5hj0PX.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12 + ], + "genres": [ + "Science Fiction", + "Adventure" + ], + "releaseDate": "2024-02-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 7245, + "popularity": 12.8855 + }, + { + "id": 573435, + "title": "Bad Boys: Ride or Die", + "originalTitle": "Bad Boys: Ride or Die", + "overview": "After their late former Captain is framed, Lowrey and Burnett try to clear his name, only to end up on the run themselves.", + "posterPath": "/oGythE98MYleE6mZlGs5oBGkux1.jpg", + "backdropPath": "/3q01ACG0MWm0DekhvkPFCXyPZSu.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 53, + 12 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Thriller", + "Adventure" + ], + "releaseDate": "2024-06-05", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.347, + "voteCount": 3129, + "popularity": 12.8659 + }, + { + "id": 640, + "title": "Catch Me If You Can", + "originalTitle": "Catch Me If You Can", + "overview": "A true story about Frank Abagnale Jr. who, before his 19th birthday, successfully conned millions of dollars worth of checks as a Pan Am pilot, doctor, and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture, he revels in the pursuit.", + "posterPath": "/sdYgEkKCDPWNU6KnoL4qd8xZ4w7.jpg", + "backdropPath": "/eS3xZQ1C8lt6mm4K5lTmjbYn2HE.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2002-12-16", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.979, + "voteCount": 16526, + "popularity": 12.8471 + }, + { + "id": 299534, + "title": "Avengers: Endgame", + "originalTitle": "Avengers: Endgame", + "overview": "After the devastating events of Avengers: Infinity War, the universe is in ruins due to the efforts of the Mad Titan, Thanos. With the help of remaining allies, the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all, no matter what consequences may be in store.", + "posterPath": "/bR8ISy1O9XQxqiy0fQFw2BX72RQ.jpg", + "backdropPath": "/9wXPKruA6bWYk2co5ix6fH59Qr8.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 878, + 28 + ], + "genres": [ + "Adventure", + "Science Fiction", + "Action" + ], + "releaseDate": "2019-04-24", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.237, + "voteCount": 26968, + "popularity": 12.8451 + }, + { + "id": 244786, + "title": "Whiplash", + "originalTitle": "Whiplash", + "overview": "Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.", + "posterPath": "/7fn624j5lj3xTme2SgiLCeuedmO.jpg", + "backdropPath": "/1kuYEvLkX2nTkbfzN6X0w0xQFQU.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "2014-10-10", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.375, + "voteCount": 16096, + "popularity": 12.833 + }, + { + "id": 1159311, + "title": "My Hero Academia: You're Next", + "originalTitle": "僕のヒーローアカデミア THE MOVIE ユアネクスト", + "overview": "In a society devastated by the effects of an all-out war between heroes and villains, a mysterious giant fortress suddenly appears, engulfing towns and people one after another. Then, a man reminiscent of All Might, the 'symbol of peace', stands in front of Izuku and his friends...", + "posterPath": "/tTrI6PwqzxkgO3dvQ7BEKXM7SYR.jpg", + "backdropPath": "/tUbwMOYP4cuGL1sQ0edz5943rBY.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 12, + 878 + ], + "genres": [ + "Animation", + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2024-08-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 180, + "popularity": 12.8058 + }, + { + "id": 575264, + "title": "Mission: Impossible - Dead Reckoning Part One", + "originalTitle": "Mission: Impossible - Dead Reckoning Part One", + "overview": "Ethan Hunt and his IMF team embark on their most dangerous mission yet: To track down a terrifying new weapon that threatens all of humanity before it falls into the wrong hands. With control of the future and the world's fate at stake and dark forces from Ethan's past closing in, a deadly race around the globe begins. Confronted by a mysterious, all-powerful enemy, Ethan must consider that nothing can matter more than his mission—not even the lives of those he cares about most.", + "posterPath": "/NNxYkU70HPurnNCSiCjYAmacwm.jpg", + "backdropPath": "/x1ZKRyvB7QAXfYVgf5mUJzjPqfH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2023-07-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.518, + "voteCount": 4746, + "popularity": 12.7313 + }, + { + "id": 1163258, + "title": "12th Fail", + "originalTitle": "12th Fail", + "overview": "Based on the true story of IPS officer Manoj Kumar Sharma, 12th Fail sheds limelight on fearlessly embracing the idea of restarting the academic journey despite the setbacks and challenges and reclaiming one's destiny at a place where millions of students attempt the world's toughest competitive exam: UPSC.", + "posterPath": "/eebUPRI4Z5e1Z7Hev4JZAwMIFkX.jpg", + "backdropPath": "/6RV2o8PBCEyw9ylOWViV1CtULIF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-08-11", + "releaseYear": "2023", + "originalLanguage": "hi", + "voteAverage": 7.964, + "voteCount": 194, + "popularity": 12.6794 + }, + { + "id": 436969, + "title": "The Suicide Squad", + "originalTitle": "The Suicide Squad", + "overview": "Supervillains Harley Quinn, Bloodsport, Peacemaker and a collection of nutty cons at Belle Reve prison join the super-secret, super-shady Task Force X as they are dropped off at the remote, enemy-infused island of Corto Maltese.", + "posterPath": "/q61qEyssk2ku3okWICKArlAdhBn.jpg", + "backdropPath": "/jlGmlFOcfo8n5tURmhC7YVd4Iyy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 12 + ], + "genres": [ + "Action", + "Comedy", + "Adventure" + ], + "releaseDate": "2021-07-28", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 9248, + "popularity": 12.6171 + }, + { + "id": 1294203, + "title": "My Fault: London", + "originalTitle": "My Fault: London", + "overview": "18-year-old Noah moves from America to London, with her mother who's recently fallen in love with William, a wealthy British businessman. Noah meets William’s son, bad-boy Nick, and soon discovers there is an attraction between them neither can avoid. As Noah spends the summer adjusting to her new life, her devastating past will catch up with her while falling in love for the first time.", + "posterPath": "/ttN5D6GKOwKWHmCzDGctAvaNMAi.jpg", + "backdropPath": "/uJK0jjJ8QDOQw5lcNBwu059ht4D.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2025-02-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.431, + "voteCount": 492, + "popularity": 12.608 + }, + { + "id": 12153, + "title": "White Chicks", + "originalTitle": "White Chicks", + "overview": "Two FBI agent brothers, Marcus and Kevin Copeland, accidentally foil a drug bust. To avoid being fired they accept a mission escorting a pair of socialites to the Hamptons--but when the girls are disfigured in a car accident, they refuse to go. Left without options, Marcus and Kevin decide to pose as the sisters, transforming themselves from black men into rich white women.", + "posterPath": "/aHTUpo45qy9QYIOnVITGGqLoVcA.jpg", + "backdropPath": "/85k0kaoRgGmF6ACq0M61AFxhjLN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2004-06-23", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.937, + "voteCount": 4328, + "popularity": 12.5375 + }, + { + "id": 447365, + "title": "Guardians of the Galaxy Vol. 3", + "originalTitle": "Guardians of the Galaxy Vol. 3", + "overview": "Peter Quill, still reeling from the loss of Gamora, must rally his team around him to defend the universe along with protecting one of their own. A mission that, if not completed successfully, could quite possibly lead to the end of the Guardians as we know them.", + "posterPath": "/r2J02Z2OpNTctfOSN1Ydgii51I3.jpg", + "backdropPath": "/5YZbUmjbMa3ClvSW1Wj3D6XGolb.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2023-05-03", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.932, + "voteCount": 7808, + "popularity": 12.5054 + }, + { + "id": 1369679, + "title": "Get Fast", + "originalTitle": "Get Fast", + "overview": "When The Thief’s partner is kidnapped after stealing millions in cash from a merciless drug lord named Nushi, he reluctantly teams up with an angst-ridden orphan to rescue him. Nushi enlists her most trusted hitman, The Cowboy, a lovable charmer who’s quick with his guns, to track down the Thief. Guns, cars, and explosions will give the newfound partners a head start, but how long will they be able to keep it up?", + "posterPath": "/tDpTR7xhHu9cz1X4JAIRFwXyf6U.jpg", + "backdropPath": "/JMlVj6X2F1PuDz9OyHShThzpa2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2024-12-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.697, + "voteCount": 33, + "popularity": 12.4944 + }, + { + "id": 8587, + "title": "The Lion King", + "originalTitle": "The Lion King", + "overview": "Young lion prince Simba, eager to one day become king of the Pride Lands, grows up under the watchful eye of his father Mufasa; all the while his villainous uncle Scar conspires to take the throne for himself. Amid betrayal and tragedy, Simba must confront his past and find his rightful place in the Circle of Life.", + "posterPath": "/sKCr78MXSLixwmZ8DyJLrpMsd15.jpg", + "backdropPath": "/q00H8EqULYSK74lgevMkhmGGLHn.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 18, + 12 + ], + "genres": [ + "Family", + "Animation", + "Drama", + "Adventure" + ], + "releaseDate": "1994-06-15", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8.256, + "voteCount": 19177, + "popularity": 12.4897 + }, + { + "id": 205596, + "title": "The Imitation Game", + "originalTitle": "The Imitation Game", + "overview": "Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.", + "posterPath": "/zSqJ1qFq8NXFfi7JeIYMlzyR0dx.jpg", + "backdropPath": "/gLQoJ9P79g501oEEtrN8zMlCPpx.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 53, + 10752 + ], + "genres": [ + "History", + "Drama", + "Thriller", + "War" + ], + "releaseDate": "2014-11-14", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.99, + "voteCount": 17666, + "popularity": 12.4884 + }, + { + "id": 9806, + "title": "The Incredibles", + "originalTitle": "The Incredibles", + "overview": "Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.", + "posterPath": "/2LqaLgk4Z226KkgPJuiOQ58wvrm.jpg", + "backdropPath": "/se5Hxz7PArQZOG3Nx2bpfOhLhtV.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 16, + 10751 + ], + "genres": [ + "Action", + "Adventure", + "Animation", + "Family" + ], + "releaseDate": "2004-11-05", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.72, + "voteCount": 18439, + "popularity": 12.4809 + }, + { + "id": 73861, + "title": "A Serbian Film", + "originalTitle": "Srpski film", + "overview": "Retired porn star Milos leads a normal family life trying to make ends meet. Presented with the opportunity of a lifetime to financially support his family for the rest of their lives, Milos must participate in one last mysterious film. From then on, Milos is drawn into a maelstrom of unbelievable cruelty and mayhem.", + "posterPath": "/cToUzXZ9AcUylfIt8vnXhiy6Y9m.jpg", + "backdropPath": "/o0x4LOW8qzVNyqwWGMuFa3kE7Hs.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 27, + 53 + ], + "genres": [ + "Crime", + "Horror", + "Thriller" + ], + "releaseDate": "2010-01-06", + "releaseYear": "2010", + "originalLanguage": "sr", + "voteAverage": 5.4, + "voteCount": 2136, + "popularity": 12.4796 + }, + { + "id": 1317149, + "title": "I Swear", + "originalTitle": "I Swear", + "overview": "Diagnosed with Tourette Syndrome at 15, John Davidson navigates his way against the odds through troubled teenage years and into adulthood, finding inspiration in the kindness of others to discover his true purpose in life.", + "posterPath": "/vUwyhNWBKkSwK8ELvEeBRwV724h.jpg", + "backdropPath": "/fe6kkxaxn0mCU2gl1vfU44IYWsy.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2025-09-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 20, + "popularity": 12.4507 + }, + { + "id": 1456349, + "title": "It Was Just an Accident", + "originalTitle": "یک تصادف ساده", + "overview": "Vahid, an Azerbaijani auto mechanic, was once imprisoned by Iranian authorities. During his sentence, he was interrogated blindfolded. One day, a man named Eqbal enters his workshop. His prosthetic leg creaks, and Vahid thinks he recognizes one of his former torturers.", + "posterPath": "/eNYGj2DG3n8OrVPTfYunpPW9uas.jpg", + "backdropPath": "/xbD4brQDBMPhh3Xv459m4XmVJG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80 + ], + "genres": [ + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2025-09-27", + "releaseYear": "2025", + "originalLanguage": "fa", + "voteAverage": 7.1, + "voteCount": 155, + "popularity": 12.4469 + }, + { + "id": 21778, + "title": "RRRrrrr!!!", + "originalTitle": "RRRrrrr!!!", + "overview": "In 35,000 BC, the tribe of the Dirty Hairs is at war against the tribe of the Clean Hairs for eight hundred years, trying to get their shampoo. The chief of the Dirty Hairs sends his daughter Guy disguised to the enemy tribe to get some shampoo for his tribe. When the healer of the Clean Hairs tribe surprisingly kills two cavemen of his tribe, their imbecile chief assigns Pierre with curled hair and Pierre blonde to investigate the murder and find the criminal.", + "posterPath": "/qsGU6myn85MfqpNAxzJtxJ3VgrM.jpg", + "backdropPath": "/rZPpxJhROE2Q6umzH6nxDUi1x9M.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2004-01-28", + "releaseYear": "2004", + "originalLanguage": "fr", + "voteAverage": 6.303, + "voteCount": 1222, + "popularity": 12.4431 + }, + { + "id": 1865, + "title": "Pirates of the Caribbean: On Stranger Tides", + "originalTitle": "Pirates of the Caribbean: On Stranger Tides", + "overview": "Captain Jack Sparrow crosses paths with a woman from his past, and he's not sure if it's love — or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard, Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.", + "posterPath": "/keGfSvCmYj7CvdRx36OdVrAEibE.jpg", + "backdropPath": "/uzIGtyS6bbnJzGsPL93WCF1FWm8.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 14 + ], + "genres": [ + "Adventure", + "Action", + "Fantasy" + ], + "releaseDate": "2011-05-15", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 14601, + "popularity": 12.4332 + }, + { + "id": 46853, + "title": "Playing with Love", + "originalTitle": "Maladolescenza", + "overview": "Laura and Fabrizio have been meeting every summer in the forest by her parent's summer home. Fabrizio is a solitary boy with only his dog for company; Laura a sweet but unconfident child. This summer new aspects enter into their story as both are growing up. Laura is falling in love with Fabrizio, while he displays a new sexual awareness of her masked by his malice. Things develop further when they meet Sylvia who, unlike the innocent Laura, is confident and assertive. Fabrizio develops a fascination with her, eventually bribing Laura to fetch her to the forest to join them in play.", + "posterPath": "/nu5uj47KSF73VPEiIRYdPLJ96j7.jpg", + "backdropPath": "/2AI3pSt5sbAEav6isVDIeCuiZql.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1977-05-17", + "releaseYear": "1977", + "originalLanguage": "it", + "voteAverage": 5.131, + "voteCount": 84, + "popularity": 12.4162 + }, + { + "id": 46195, + "title": "Rio", + "originalTitle": "Rio", + "overview": "Captured by smugglers when he was just a hatchling, a macaw named Blu never learned to fly and lives a happily domesticated life in Minnesota with his human friend, Linda. Blu is thought to be the last of his kind, but when word comes that Jewel, a lone female, lives in Rio de Janeiro, Blu and Linda go to meet her. Animal smugglers kidnap Blu and Jewel, but the pair soon escape and begin a perilous adventure back to freedom -- and Linda.", + "posterPath": "/4nJxhUknKV8Gqdhov8pU1YWDYfb.jpg", + "backdropPath": "/3vxlXdwBKztOJdgiZ2Qwasl9FY4.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 6982, + "popularity": 12.4108 + }, + { + "id": 315635, + "title": "Spider-Man: Homecoming", + "originalTitle": "Spider-Man: Homecoming", + "overview": "Following the events of Captain America: Civil War, Peter Parker, with the help of his mentor Tony Stark, tries to balance his life as an ordinary high school student in Queens, New York City, with fighting crime as his superhero alter ego Spider-Man as a new threat, the Vulture, emerges.", + "posterPath": "/c24sv2weTHPsmDa7jEMN0m2P3RT.jpg", + "backdropPath": "/fn4n6uOYcB6Uh89nbNPoU2w80RV.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2017-07-05", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.329, + "voteCount": 22637, + "popularity": 12.4045 + }, + { + "id": 177572, + "title": "Big Hero 6", + "originalTitle": "Big Hero 6", + "overview": "A special bond develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.", + "posterPath": "/2mxS4wUimwlLmI1xp6QW6NSU361.jpg", + "backdropPath": "/4s2d3xdyqotiVNHTlTlJjrr3q0H.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 16, + 28, + 35 + ], + "genres": [ + "Adventure", + "Family", + "Animation", + "Action", + "Comedy" + ], + "releaseDate": "2014-10-24", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.727, + "voteCount": 16196, + "popularity": 12.3969 + }, + { + "id": 10193, + "title": "Toy Story 3", + "originalTitle": "Toy Story 3", + "overview": "Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.", + "posterPath": "/AbbXspMOwdvwWZgVN0nabZq03Ec.jpg", + "backdropPath": "/wE5JGzujfvDPMIfFjJyrhXFjZLc.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2010-06-16", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.804, + "voteCount": 15309, + "popularity": 12.3932 + }, + { + "id": 9479, + "title": "The Nightmare Before Christmas", + "originalTitle": "The Nightmare Before Christmas", + "overview": "Tired of scaring humans every October 31 with the same old bag of tricks, Jack Skellington, the spindly king of Halloween Town, kidnaps Santa Claus and plans to deliver shrunken heads and other ghoulish gifts to children on Christmas morning. But as Christmas approaches, Jack's rag-doll girlfriend, Sally, tries to foil his misguided plans.", + "posterPath": "/oQffRNjK8e19rF7xVYEN8ew0j7b.jpg", + "backdropPath": "/16lk65YfrDFIr6evkWRjSeOOSws.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 16, + 10751 + ], + "genres": [ + "Fantasy", + "Animation", + "Family" + ], + "releaseDate": "1993-10-09", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.835, + "voteCount": 10026, + "popularity": 12.3909 + }, + { + "id": 508422, + "title": "Penguin Highway", + "originalTitle": "ペンギン・ハイウェイ", + "overview": "A fourth-grader investigates the mysterious reason behind the sudden appearance of penguins in his village, which is somehow related to a power from a young woman working at a dental clinic.", + "posterPath": "/wMJJk4kkXfqwP5W7wYHWvDXhTlw.jpg", + "backdropPath": "/ujNMvDCrKVlVkDMzfaoBCaZJVuE.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 14 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Fantasy" + ], + "releaseDate": "2018-08-17", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 242, + "popularity": 12.3418 + }, + { + "id": 788, + "title": "Mrs. Doubtfire", + "originalTitle": "Mrs. Doubtfire", + "overview": "Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as a British nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.", + "posterPath": "/shHrSmXS5140o6sQzgzXxn3KqSm.jpg", + "backdropPath": "/sTgavNm82pTaZR9U2NQZ1J2FrJz.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1993-11-24", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.192, + "voteCount": 6400, + "popularity": 12.3405 + }, + { + "id": 97, + "title": "Tron", + "originalTitle": "Tron", + "overview": "When brilliant video game maker Flynn hacks the mainframe of his ex-employer, he is beamed inside an astonishing digital world...And becomes part of the very game he is designing. In his mission through cyberspace, Flynn matches wits with a maniacal Master Control Program and teams up with Tron, a security measure created to bring balance to the digital environment.", + "posterPath": "/zwSFEczP7AzqugAHHIX3zHniT0t.jpg", + "backdropPath": "/vUmeBHiGp5r2ydd8aEvbNLamTVD.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "1982-07-09", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.65, + "voteCount": 2569, + "popularity": 12.3325 + }, + { + "id": 131631, + "title": "The Hunger Games: Mockingjay - Part 1", + "originalTitle": "The Hunger Games: Mockingjay - Part 1", + "overview": "After surviving the Quarter Quell, Katniss finds herself in the hidden stronghold of District 13, where the rebellion against the Capitol is gaining momentum. Struggling with the weight of becoming the symbol of resistance, she must navigate fragile alliances while trying to protect those she loves. As propaganda battles rage and Panem moves closer to full-scale war, Katniss is forced to confront the true cost of revolution.", + "posterPath": "/4FAA18ZIja70d1Tu5hr5cj2q1sB.jpg", + "backdropPath": "/lV1P1Q5gLDXVG1ZYCxZHStkcQC3.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 53 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Thriller" + ], + "releaseDate": "2014-11-19", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.816, + "voteCount": 16400, + "popularity": 12.3157 + }, + { + "id": 16869, + "title": "Inglourious Basterds", + "originalTitle": "Inglourious Basterds", + "overview": "In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as \"The Basterds\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.", + "posterPath": "/7sfbEnaARXDDhKm0CZ7D7uc2sbo.jpg", + "backdropPath": "/hwNtEmmugU5Yd7hpfprNWI0DGIn.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10752 + ], + "genres": [ + "Drama", + "Thriller", + "War" + ], + "releaseDate": "2009-08-02", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8.215, + "voteCount": 23452, + "popularity": 12.3053 + }, + { + "id": 346910, + "title": "The Predator", + "originalTitle": "The Predator", + "overview": "When a young boy accidentally triggers the universe's most lethal hunters' return to Earth, only a ragtag crew of ex-soldiers and a disgruntled scientist can prevent the end of the human race.", + "posterPath": "/a3eWGF6YPF7No5Rbtjc8QpDvz7l.jpg", + "backdropPath": "/zGHdS1eLaU5wdYCJ6vY9QfQGCTo.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "2018-09-05", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.633, + "voteCount": 4955, + "popularity": 12.2871 + }, + { + "id": 18785, + "title": "The Hangover", + "originalTitle": "The Hangover", + "overview": "When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug – who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.", + "posterPath": "/A0uS9rHR56FeBtpjVki16M5xxSW.jpg", + "backdropPath": "/iuRVt8tFiXDPGgzavhuSa3QHRxD.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-06-02", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.328, + "voteCount": 17633, + "popularity": 12.2842 + }, + { + "id": 1198426, + "title": "Captain Avispa", + "originalTitle": "Capitán Avispa", + "overview": "In Avispatropolis, the fearless Captain Avispa emerges as an exemplary protector of the city, whose courage and convictions always prevail over the forces of evil. His unbreakable power is nourished by absolute sincerity, as he would lose his strength if he dared to weave deceit. Only in pursuit of noble causes does he allow himself to deviate from the truth. As is common in stories of this kind, Captain Wasp is surrounded by a constellation of close friends and arch-enemies, whose stories have their origins in the artist's songs.", + "posterPath": "/zmthz3CuFljmBQcfuaz4hBNwbQ0.jpg", + "backdropPath": "/9uSytfP3mvIwEdLUOSf0DlrEq9J.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751 + ], + "genres": [ + "Animation", + "Family" + ], + "releaseDate": "2024-04-04", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.1, + "voteCount": 40, + "popularity": 12.258 + }, + { + "id": 10191, + "title": "How to Train Your Dragon", + "originalTitle": "How to Train Your Dragon", + "overview": "As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it, and instead befriends the beast – which he names Toothless – much to the chagrin of his warrior father.", + "posterPath": "/ygGmAO60t8GyqUo9xYeYxSZAR3b.jpg", + "backdropPath": "/59vDC1BuEQvti24OMr0ZvtAK6R1.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 16, + 10751 + ], + "genres": [ + "Fantasy", + "Adventure", + "Animation", + "Family" + ], + "releaseDate": "2010-03-18", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.854, + "voteCount": 13907, + "popularity": 12.2021 + }, + { + "id": 1101401, + "title": "Sugar Baby", + "originalTitle": "Sugar Baby", + "overview": "An enterprising Sugar Baby is offered $30,000 to move in with her Sugar Daddy for the week, but soon discovers the sinister secrets trapped within his home.", + "posterPath": "/z7NyxmdJ1ypn3Y6BVizjGODuBdO.jpg", + "backdropPath": "/kYqEsUtilXXcb7FDfGIUaDq7j5F.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 35 + ], + "genres": [ + "Thriller", + "Comedy" + ], + "releaseDate": "2024-10-15", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 19, + "popularity": 12.1906 + }, + { + "id": 1127110, + "title": "Diablo", + "originalTitle": "Diablo", + "overview": "Ex-con Kris Chaney seizes the daughter of a Colombian gangster to fulfill a noble promise to the young girl's mother. When her father enlists both the criminal underworld and a psychotic killer to exact his revenge, Kris relies on everything he's ever learned to stay alive and keep his word.", + "posterPath": "/uFQduVyYIinJy3eLjozgfl6Xtcn.jpg", + "backdropPath": "/fPWJn5pqBr8n4h0YxW3QuasdvoI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2025-06-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.276, + "voteCount": 154, + "popularity": 12.1763 + }, + { + "id": 520318, + "title": "Fatima", + "originalTitle": "Fatima", + "overview": "In 1917, outside the parish of Fátima, Portugal, a 10-year-old girl and her two younger cousins witness multiple visitations of the Virgin Mary, who tells them that only prayer and suffering will bring an end to World War I. As secularist government officials and Church leaders try to force the children to recant their story, word of the sighting spreads across the country, inspiring religious pilgrims to flock to the site in hopes of witnessing a miracle..", + "posterPath": "/lfA46pZbk4kxIaQvHyBPq0KH84Q.jpg", + "backdropPath": "/jrsB8tChsAFTQilhsS8fxNTuear.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-08-13", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.208, + "voteCount": 192, + "popularity": 12.1761 + }, + { + "id": 335984, + "title": "Blade Runner 2049", + "originalTitle": "Blade Runner 2049", + "overview": "Thirty years after the events of the first film, a new blade runner, LAPD Officer K, unearths a long-buried secret that has the potential to plunge what's left of society into chaos. K's discovery leads him on a quest to find Rick Deckard, a former LAPD blade runner who has been missing for 30 years.", + "posterPath": "/gajva2L0rPYkEWjzgFlBXCAVBE5.jpg", + "backdropPath": "/mVr0UiqyltcfqxbAUcLl9zWL8ah.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18 + ], + "genres": [ + "Science Fiction", + "Drama" + ], + "releaseDate": "2017-10-04", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.586, + "voteCount": 14568, + "popularity": 12.1657 + }, + { + "id": 1357633, + "title": "Solo Leveling -ReAwakening-", + "originalTitle": "俺だけレベルアップな件 -ReAwakening-", + "overview": "Over a decade after 'gates' connecting worlds appeared, awakening 'hunters' with superpowers, weakest hunter Sung Jinwoo encounters a double dungeon and accepts a mysterious quest, becoming the only one able to level up, changing his fate. A catch-up recap of the first season coupled with an exclusive sneak peek of the first two episodes of the highly anticipated second season in one momentous theatrical fan experience.", + "posterPath": "/dblIFen0bNZAq8icJXHwrjfymDW.jpg", + "backdropPath": "/hlfu6g0h0D65SjkVhQBU20zePTl.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14, + 16 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy", + "Animation" + ], + "releaseDate": "2024-11-26", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.027, + "voteCount": 244, + "popularity": 12.1614 + }, + { + "id": 1726, + "title": "Iron Man", + "originalTitle": "Iron Man", + "overview": "After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.", + "posterPath": "/78lPtwv72eTNqFW9COBYI0dWDJa.jpg", + "backdropPath": "/cKvDv2LpwVEqbdXWoQl4XgGN6le.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2008-04-30", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.654, + "voteCount": 27492, + "popularity": 12.1585 + }, + { + "id": 292610, + "title": "Ladies' Doctor", + "originalTitle": "Il ginecologo della mutua", + "overview": "Dr. Lo Bianco, debt load, flees abroad and the headquarters avviatissimo study gynecological colleague Giovannaldi. These are adept at gaining the trust of high society and, thanks to the relationship established with the wife of a wealthy manufacturer (enough to get her pregnant), she becomes finance, own the cuckolded husband, a luxury clinic. And there will be a prize for Lobianco.", + "posterPath": "/8KwEjKVFoz6B9oRXgeSastYUUUz.jpg", + "backdropPath": "/gaWHmTnjqfYcNNnVcwHxwptGPgW.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1977-09-13", + "releaseYear": "1977", + "originalLanguage": "it", + "voteAverage": 4.294, + "voteCount": 17, + "popularity": 12.1455 + }, + { + "id": 8966, + "title": "Twilight", + "originalTitle": "Twilight", + "overview": "When Bella Swan moves to a small town in the Pacific Northwest, she falls in love with Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't stay away from him, a fatal move that endangers her own life.", + "posterPath": "/3Gkb6jm6962ADUPaCBqzz9CTbn9.jpg", + "backdropPath": "/weAYfu6FfrNxEDJ3xH1XpgQcqUv.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 10749 + ], + "genres": [ + "Fantasy", + "Drama", + "Romance" + ], + "releaseDate": "2008-11-20", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.284, + "voteCount": 14083, + "popularity": 12.1427 + }, + { + "id": 315162, + "title": "Puss in Boots: The Last Wish", + "originalTitle": "Puss in Boots: The Last Wish", + "overview": "Puss in Boots discovers that his passion for adventure has taken its toll: He has burned through eight of his nine lives, leaving him with only one life left. Puss sets out on an epic journey to find the mythical Last Wish and restore his nine lives.", + "posterPath": "/kuf6dutpsT0vSVehic3EZIqkOBt.jpg", + "backdropPath": "/jr8tSoJGj33XLgFBy6lmZhpGQNu.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 14, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "2022-12-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 8505, + "popularity": 12.119 + }, + { + "id": 297762, + "title": "Wonder Woman", + "originalTitle": "Wonder Woman", + "overview": "An Amazon princess comes to the world of Man in the grips of the First World War to confront the forces of evil and bring an end to human conflict.", + "posterPath": "/v4ncgZjG2Zu8ZW5al1vIZTsSjqX.jpg", + "backdropPath": "/AaABt75ZzfMGrscUR2seabz4PEX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2017-05-30", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 20551, + "popularity": 12.1125 + }, + { + "id": 37165, + "title": "The Truman Show", + "originalTitle": "The Truman Show", + "overview": "An insurance salesman begins to suspect that his whole life is actually some sort of reality TV show.", + "posterPath": "/vuza0WqY239yBXOadKlGwJsZJFE.jpg", + "backdropPath": "/rmiG2uwcNoGFmBKMoa1pIcf514L.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1998-06-04", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 8.149, + "voteCount": 19514, + "popularity": 12.1094 + }, + { + "id": 953, + "title": "Madagascar", + "originalTitle": "Madagascar", + "overview": "Four animal friends get a taste of the wild life when they break out of captivity at the Central Park Zoo and wash ashore on the island of Madagascar.", + "posterPath": "/zMpJY5CJKUufG9OTw0In4eAFqPX.jpg", + "backdropPath": "/tPaurpIUskVji5vwV0dhy9pq4Vs.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 12, + 35 + ], + "genres": [ + "Family", + "Animation", + "Adventure", + "Comedy" + ], + "releaseDate": "2005-05-25", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 11371, + "popularity": 12.1093 + }, + { + "id": 447273, + "title": "Snow White", + "originalTitle": "Snow White", + "overview": "Following the benevolent King's disappearance, the Evil Queen dominated the once fair land with a cruel streak. Princess Snow White flees the castle when the Queen, in her jealousy over Snow White's inner beauty, tries to kill her. Deep into the dark woods, she stumbles upon seven magical dwarves and a young bandit named Jonathan. Together, they strive to survive the Queen's relentless pursuit and aspire to take back the kingdom.", + "posterPath": "/xWWg47tTfparvjK0WJNX4xL8lW2.jpg", + "backdropPath": "/tyfO9jHgkhypUFizRVYD0bytPjP.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14 + ], + "genres": [ + "Family", + "Fantasy" + ], + "releaseDate": "2025-03-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.295, + "voteCount": 1455, + "popularity": 12.0991 + }, + { + "id": 696506, + "title": "Mickey 17", + "originalTitle": "Mickey 17", + "overview": "Unlikely hero Mickey Barnes finds himself in the extraordinary circumstance of working for an employer who demands the ultimate commitment to the job… to die, for a living.", + "posterPath": "/edKpE9B5qN3e559OuMCLZdW1iBZ.jpg", + "backdropPath": "/hGLywNhy1Fo1rNFHsNZsXGS69B8.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 35, + 12 + ], + "genres": [ + "Science Fiction", + "Comedy", + "Adventure" + ], + "releaseDate": "2025-02-28", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.842, + "voteCount": 2931, + "popularity": 12.0928 + }, + { + "id": 1100782, + "title": "Smile 2", + "originalTitle": "Smile 2", + "overview": "About to embark on a new world tour, global pop sensation Skye Riley begins experiencing increasingly terrifying and inexplicable events. Overwhelmed by the escalating horrors and the pressures of fame, Skye is forced to face her dark past to regain control of her life before it spirals out of control.", + "posterPath": "/ht8Uv9QPv9y7K0RvUyJIaXOZTfd.jpg", + "backdropPath": "/iR79ciqhtaZ9BE7YFA1HpCHQgX4.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2024-10-16", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.597, + "voteCount": 1909, + "popularity": 12.0738 + }, + { + "id": 414906, + "title": "The Batman", + "originalTitle": "The Batman", + "overview": "In his second year of fighting crime, Batman uncovers corruption in Gotham City that connects to his own family while facing a serial killer known as the Riddler.", + "posterPath": "/74xTEgt7R36Fpooo50r9T25onhq.jpg", + "backdropPath": "/rvtdN5XkWAfGX6xDuPL6yYS2seK.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 53 + ], + "genres": [ + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "2022-03-01", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 11401, + "popularity": 12.0399 + }, + { + "id": 1455575, + "title": "Behind the Curtain: Stranger Things: The First Shadow", + "originalTitle": "Behind the Curtain: Stranger Things: The First Shadow", + "overview": "Go behind the scenes with the cast and crew of “Stranger Things: The First Shadow”, the award-winning live stage show that expands the Hawkins universe.", + "posterPath": "/7jQIbTMx2BlZrYGyOS94YUNcGjV.jpg", + "backdropPath": "/igfo3Wt9QvXEGMPvkh8bRSel9r2.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2025-04-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 10, + "popularity": 12.0394 + }, + { + "id": 12536, + "title": "Home Alone 4", + "originalTitle": "Home Alone 4", + "overview": "Kevin McCallister's parents have split up. Now living with his mom, he decides to spend Christmas with his dad at the mansion of his father's rich girlfriend, Natalie. Meanwhile robber Marv Merchants, one of the villains from the first two movies, partners up with a new criminal named Vera to hit Natalie's mansion.", + "posterPath": "/qRktvMOO2QaCL7gvNyvZDoxPOZj.jpg", + "backdropPath": "/171wf8HVXZAIScPf9zJyrXpxgRB.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 10770 + ], + "genres": [ + "Comedy", + "Family", + "TV Movie" + ], + "releaseDate": "2002-11-03", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 1326, + "popularity": 12.0297 + }, + { + "id": 870360, + "title": "The Day the Earth Blew Up: A Looney Tunes Movie", + "originalTitle": "The Day the Earth Blew Up: A Looney Tunes Movie", + "overview": "Porky and Daffy, the classic animated odd couple, turn into unlikely heroes when their antics at the local bubble gum factory uncover a secret alien mind control plot. Against all odds, the two are determined to save their town (and the world!)...that is if they don't drive each other crazy in the process.", + "posterPath": "/s2lB1kaYCdGSnZX5meQCiOR6HfX.jpg", + "backdropPath": "/5U3VLeWr2H4Nd3G7IkHItFimsIz.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16, + 878 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation", + "Science Fiction" + ], + "releaseDate": "2024-08-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.694, + "voteCount": 179, + "popularity": 12.0235 + }, + { + "id": 348893, + "title": "Boyka: Undisputed IV", + "originalTitle": "Boyka: Undisputed IV", + "overview": "In the fourth installment of the fighting franchise, Boyka is shooting for the big leagues when an accidental death in the ring makes him question everything he stands for. When he finds out the wife of the man he accidentally killed is in trouble, Boyka offers to fight in a series of impossible battles to free her from a life of servitude.", + "posterPath": "/7QGdIJWWTkPhVjpQ0zA6z69khod.jpg", + "backdropPath": "/msgutegakwajb9vjC3Xgh4t7e0M.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2016-08-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 1410, + "popularity": 11.9783 + }, + { + "id": 429617, + "title": "Spider-Man: Far From Home", + "originalTitle": "Spider-Man: Far From Home", + "overview": "Peter Parker and his friends go on a summer trip to Europe. However, they will hardly be able to rest - Peter will have to agree to help Nick Fury uncover the mystery of creatures that cause natural disasters and destruction throughout the continent.", + "posterPath": "/4q2NNj4S5dG2RLF9CpXsej7yXl.jpg", + "backdropPath": "/vamhMTvh9m9zFHDoR0v1nRtf6T4.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2019-06-28", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.399, + "voteCount": 16478, + "popularity": 11.964 + }, + { + "id": 1244039, + "title": "Butchers Book Two: Raghorn", + "originalTitle": "Butchers Book Two: Raghorn", + "overview": "Book one followed a family of sadistic butchers, living in the backcountry, who see anyone that crosses their path as dead meat. In “Butchers Book Two: Raghorn,” the story continues when an accident leaves the captors in the hands of brutal cannibals who plan to hack them up for meat.", + "posterPath": "/uSLYBuDTHpTAJI9vcm2brMu4J9H.jpg", + "backdropPath": "/8BfXvZio7fB1FFWqB2Oz6tbi3ZX.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-02-29", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 4.684, + "voteCount": 19, + "popularity": 11.9335 + }, + { + "id": 605722, + "title": "Long Distance", + "originalTitle": "Long Distance", + "overview": "After crash-landing on an alien planet, an asteroid miner must contend with the challenges of his new surroundings, while making his way across the harsh terrain to the only other survivor – a woman who is trapped in her escape pod.", + "posterPath": "/m5NKltgQqqyoWJNuK18IqEGRG7J.jpg", + "backdropPath": "/1QV5TIM7pVm0wcWthKIAj7cXjbJ.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 35, + 28 + ], + "genres": [ + "Science Fiction", + "Comedy", + "Action" + ], + "releaseDate": "2024-07-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.526, + "voteCount": 215, + "popularity": 11.9332 + }, + { + "id": 73723, + "title": "The Lorax", + "originalTitle": "The Lorax", + "overview": "A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax, the grumpy yet charming creature who fights to protect his world.", + "posterPath": "/tePFnZFw5JvjwjQjaKkqDPNMLPU.jpg", + "backdropPath": "/71FjlP0qZPc1iymcHf8u5vXfH50.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751 + ], + "genres": [ + "Animation", + "Family" + ], + "releaseDate": "2012-03-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 3761, + "popularity": 11.8908 + }, + { + "id": 64690, + "title": "Drive", + "originalTitle": "Drive", + "overview": "Driver is a skilled Hollywood stuntman who moonlights as a getaway driver for criminals. Though he projects an icy exterior, lately he's been warming up to a pretty neighbor named Irene and her young son, Benicio. When Irene's husband gets out of jail, he enlists Driver's help in a million-dollar heist. The job goes horribly wrong, and Driver must risk his life to protect Irene and Benicio from the vengeful masterminds behind the robbery.", + "posterPath": "/602vevIURmpDfzbnv5Ubi6wIkQm.jpg", + "backdropPath": "/oeEiUwvqHxWT0XqD3YlViaiJOVD.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80 + ], + "genres": [ + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2011-09-15", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.583, + "voteCount": 13211, + "popularity": 11.8357 + }, + { + "id": 653346, + "title": "Kingdom of the Planet of the Apes", + "originalTitle": "Kingdom of the Planet of the Apes", + "overview": "Several generations following Caesar's reign, apes – now the dominant species – live harmoniously while humans have been reduced to living in the shadows. As a new tyrannical ape leader builds his empire, one young ape undertakes a harrowing journey that will cause him to question all he's known about the past and to make choices that will define a future for apes and humans alike.", + "posterPath": "/gKkl37BQuKTanygYQG1pyYgLVgf.jpg", + "backdropPath": "/iHYh4cdO8ylA3W0dUxTDVdyJ5G9.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2024-05-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.056, + "voteCount": 3980, + "popularity": 11.8273 + }, + { + "id": 228150, + "title": "Fury", + "originalTitle": "Fury", + "overview": "April, 1945. As the Allies make their final push in the European Theatre, a battle-hardened army sergeant named Wardaddy commands a Sherman tank and her five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, and with a rookie soldier thrust into their platoon, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.", + "posterPath": "/pfte7wdMobMF4CVHuOxyu6oqeeA.jpg", + "backdropPath": "/95ckrV6wQgbffurAVmETQ5YKASL.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18, + 28 + ], + "genres": [ + "War", + "Drama", + "Action" + ], + "releaseDate": "2014-10-15", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.54, + "voteCount": 12584, + "popularity": 11.8166 + }, + { + "id": 630, + "title": "The Wizard of Oz", + "originalTitle": "The Wizard of Oz", + "overview": "Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.", + "posterPath": "/5iZCwQfRI3bay1PiH24jlw9ec92.jpg", + "backdropPath": "/g1OvTd1eF346vmx8qsJnjaiooZ6.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 10751 + ], + "genres": [ + "Adventure", + "Fantasy", + "Family" + ], + "releaseDate": "1939-08-15", + "releaseYear": "1939", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 5909, + "popularity": 11.7858 + }, + { + "id": 11, + "title": "Star Wars", + "originalTitle": "Star Wars", + "overview": "Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.", + "posterPath": "/6FfCtAuVAW8XJjZ7eWeLibRLWTw.jpg", + "backdropPath": "/2w4xG178RpB4MDAIfTkqAuSJzec.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "1977-05-25", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 21690, + "popularity": 11.7779 + }, + { + "id": 17979, + "title": "A Christmas Carol", + "originalTitle": "A Christmas Carol", + "overview": "Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.", + "posterPath": "/goHDZUnqZJ7FN4h48Qh6MzJNExl.jpg", + "backdropPath": "/bFntIQxWBwtzYAFc68xF1GKAfiv.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 18 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Drama" + ], + "releaseDate": "2009-11-04", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 4773, + "popularity": 11.7733 + }, + { + "id": 68721, + "title": "Iron Man 3", + "originalTitle": "Iron Man 3", + "overview": "When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.", + "posterPath": "/qhPtAc1TKbMPqNvcdXSOn9Bn7hZ.jpg", + "backdropPath": "/4TSqtluelcWByj8YZdqwzQVjI0O.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2013-04-18", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.93, + "voteCount": 22950, + "popularity": 11.7205 + }, + { + "id": 280, + "title": "Terminator 2: Judgment Day", + "originalTitle": "Terminator 2: Judgment Day", + "overview": "Ten years after the events of the original, a reprogrammed T-800 is sent back in time to protect young John Connor from the shape-shifting T-1000. Together with his mother Sarah, he fights to stop Skynet from triggering a nuclear apocalypse.", + "posterPath": "/jFTVD4XoWQTcg7wdyJKa8PEds5q.jpg", + "backdropPath": "/umaoScaCsfl9g2dyrXrvMPp59Q7.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1991-07-03", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 8.135, + "voteCount": 13728, + "popularity": 11.714 + }, + { + "id": 37799, + "title": "The Social Network", + "originalTitle": "The Social Network", + "overview": "In 2003, Harvard undergrad and computer programmer Mark Zuckerberg begins work on a new concept that eventually turns into the global social network known as Facebook. Six years later, Mark is one of the youngest billionaires ever, but his unprecedented success leads to both personal and legal complications when he ends up on the receiving end of two lawsuits, one involving his former friend.", + "posterPath": "/n0ybibhJtQ5icDqTp8eRytcIHJx.jpg", + "backdropPath": "/65D7t8wgZFpjOTvIp1HQvHFY0fC.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-10-01", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.371, + "voteCount": 12757, + "popularity": 11.7133 + }, + { + "id": 270946, + "title": "Penguins of Madagascar", + "originalTitle": "Penguins of Madagascar", + "overview": "Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.", + "posterPath": "/dXbpNrPDZDMEbujFoOxmMNQVMHa.jpg", + "backdropPath": "/2QMgoiDlTmrO9FngZft8GgZ2SbX.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 12, + 35 + ], + "genres": [ + "Family", + "Animation", + "Adventure", + "Comedy" + ], + "releaseDate": "2014-11-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 4342, + "popularity": 11.6845 + }, + { + "id": 1138194, + "title": "Heretic", + "originalTitle": "Heretic", + "overview": "Two young missionaries are forced to prove their faith when they knock on the wrong door and are greeted by a diabolical Mr. Reed, becoming ensnared in his deadly game of cat-and-mouse.", + "posterPath": "/fr96XzlzsONrQrGfdLMiwtQjott.jpg", + "backdropPath": "/ag66gJCiZ06q1GSJuQlhGLi3Udx.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-10-31", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.973, + "voteCount": 2310, + "popularity": 11.6809 + }, + { + "id": 447277, + "title": "The Little Mermaid", + "originalTitle": "The Little Mermaid", + "overview": "The youngest of King Triton’s daughters, and the most defiant, Ariel longs to find out more about the world beyond the sea, and while visiting the surface, falls for the dashing Prince Eric. With mermaids forbidden to interact with humans, Ariel makes a deal with the evil sea witch, Ursula, which gives her a chance to experience life on land, but ultimately places her life – and her father’s crown – in jeopardy.", + "posterPath": "/ym1dxyOk4jFcSl4Q2zmRrA5BEEN.jpg", + "backdropPath": "/lAs4Y5a8Pi86xDwuv8cx2prOVI2.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14, + 10749 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy", + "Romance" + ], + "releaseDate": "2023-05-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.29, + "voteCount": 3190, + "popularity": 11.67 + }, + { + "id": 557, + "title": "Spider-Man", + "originalTitle": "Spider-Man", + "overview": "After being bitten by a genetically altered spider at Oscorp, nerdy but endearing high school student Peter Parker is endowed with amazing powers to become the superhero known as Spider-Man.", + "posterPath": "/gh4cZbhZxyTbgxQPxD0dOudNPTn.jpg", + "backdropPath": "/qJzloL8O9YHhiWBrhlPfKAtZu2I.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878 + ], + "genres": [ + "Action", + "Science Fiction" + ], + "releaseDate": "2002-05-01", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.317, + "voteCount": 20058, + "popularity": 11.6454 + }, + { + "id": 1136867, + "title": "Materialists", + "originalTitle": "Materialists", + "overview": "A young, ambitious New York City matchmaker finds herself torn between the perfect match and her imperfect ex.", + "posterPath": "/zh4kaa2dGhVjojHulCWt3AR4b2l.jpg", + "backdropPath": "/lqwwGkwJHtz9QgKtz4zeY19YgDg.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2025-06-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 893, + "popularity": 11.6361 + }, + { + "id": 11688, + "title": "The Emperor's New Groove", + "originalTitle": "The Emperor's New Groove", + "overview": "When self-centered Emperor Kuzco is turned into a llama by his scheming advisor, he is forced to rely on good-hearted peasant Pacha to get back home.", + "posterPath": "/wwbgkXQBEKtnyIJapk6gUgWkVw8.jpg", + "backdropPath": "/mZj8EUr6F1x2PWZjKPxaeYd5WRw.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 35, + 10751, + 14 + ], + "genres": [ + "Adventure", + "Animation", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2000-12-15", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 7088, + "popularity": 11.6303 + }, + { + "id": 41201, + "title": "The Illusionist", + "originalTitle": "L'Illusionniste", + "overview": "A French illusionist travels to Scotland to work. He meets a young woman in a small village. Their ensuing adventure in Edinburgh changes both their lives forever.", + "posterPath": "/Ac2tNYW9sRaOhmtMJQuhf2mvo00.jpg", + "backdropPath": "/9Ocq5X0MNHsTpSONcaRvNDWPiz6.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2010-06-16", + "releaseYear": "2010", + "originalLanguage": "fr", + "voteAverage": 7.3, + "voteCount": 649, + "popularity": 11.6235 + }, + { + "id": 169, + "title": "Predator 2", + "originalTitle": "Predator 2", + "overview": "A police chief in the war-torn streets of Los Angeles discovers that an extraterrestrial creature is hunting down residents - and that he is the next target.", + "posterPath": "/83X4VwY9sdSJykskmsplIVG0a4h.jpg", + "backdropPath": "/7PoWlbQg7ZxgwofFRrkytvpLvJD.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "1990-11-21", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.292, + "voteCount": 3612, + "popularity": 11.6018 + }, + { + "id": 1064307, + "title": "Spermageddon", + "originalTitle": "Spermageddon", + "overview": "Two narrative threads: one is an emerging love story between awkward teens Jens and Lisa, who are having sex for the first time; the other, an eventful quest of Simon the Semen and his friends to reach the golden goal, the Egg.", + "posterPath": "/n7SFxle8CVzMXzfV8GNCXqdg78m.jpg", + "backdropPath": "/5OEcsHKZy9TLFz9qXLp5NJN9K8e.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 14, + 35 + ], + "genres": [ + "Animation", + "Adventure", + "Fantasy", + "Comedy" + ], + "releaseDate": "2025-02-21", + "releaseYear": "2025", + "originalLanguage": "no", + "voteAverage": 6.4, + "voteCount": 101, + "popularity": 11.5962 + }, + { + "id": 250546, + "title": "Annabelle", + "originalTitle": "Annabelle", + "overview": "A couple begins to experience terrifying supernatural occurrences involving a vintage doll shortly after their home is invaded by satanic cultists.", + "posterPath": "/yLsuU2P2SpDYFwtZQ7dtfVAf6TE.jpg", + "backdropPath": "/eLPXcqgJPCEOf2cMwyTEXejRhrC.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2014-10-01", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.788, + "voteCount": 6410, + "popularity": 11.5953 + }, + { + "id": 396535, + "title": "Train to Busan", + "originalTitle": "부산행", + "overview": "When a zombie virus pushes Korea into a state of emergency, those trapped on an express train to Busan must fight for their own survival.", + "posterPath": "/vNVFt6dtcqnI7hqa6LFBUibuFiw.jpg", + "backdropPath": "/fVpFOcQyHJM2di9upgSIwWD5wac.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 28, + 12 + ], + "genres": [ + "Horror", + "Thriller", + "Action", + "Adventure" + ], + "releaseDate": "2016-07-20", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 7.748, + "voteCount": 8055, + "popularity": 11.5859 + }, + { + "id": 156022, + "title": "The Equalizer", + "originalTitle": "The Equalizer", + "overview": "McCall believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when he meets Teri, a young girl under the control of ultra-violent Russian gangsters, he can’t stand idly by – he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.", + "posterPath": "/9u4yW7yPA0BQ2pv9XwiNzItwvp8.jpg", + "backdropPath": "/wNAfVj1ObGNye5fQM4tJXJGtU0.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 80 + ], + "genres": [ + "Thriller", + "Action", + "Crime" + ], + "releaseDate": "2014-09-24", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.282, + "voteCount": 9597, + "popularity": 11.585 + }, + { + "id": 1306525, + "title": "The Elixir", + "originalTitle": "Abadi Nan Jaya", + "overview": "An elixir unleashes the undead in a village. A family at odds with one another must unite and fight to survive as their hometown collapses.", + "posterPath": "/A6aJLPhtmin9ZTWC2h7dnrMHU4z.jpg", + "backdropPath": "/cNmGq1bfUDhrZEHvJ77zwiWfoNA.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-10-22", + "releaseYear": "2025", + "originalLanguage": "id", + "voteAverage": 6.014, + "voteCount": 143, + "popularity": 11.5799 + }, + { + "id": 272878, + "title": "Max", + "originalTitle": "Max", + "overview": "A dog that helped soldiers in Afghanistan returns to the U.S. and is adopted by his handler's family after suffering a traumatic experience.", + "posterPath": "/d3ACos3t4YwXML8keTA0wKN8e36.jpg", + "backdropPath": "/phB8F1XeMhBEk6CbKMYgm6SIphi.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10751 + ], + "genres": [ + "Adventure", + "Drama", + "Family" + ], + "releaseDate": "2015-06-25", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 861, + "popularity": 11.552 + }, + { + "id": 1202863, + "title": "From Darkness", + "originalTitle": "Ur mörkret", + "overview": "Park ranger Angelica seeks the help of her dog handler ex-boyfriend, Viktor, to search for a missing woman in a dangerous nature reserve in Sweden. The search is complicated by a disturbing myth about the Cave Banshee, a vengeful spirit from the Nordic folklore that once lured miners to their deaths in the reserve's treacherous caves. As they delve deeper into the forest, Viktor starts to question his own sanity and whether the rumored Banshee is more than just a myth. To make matters worse, Angelica and Viktor share a painful history with the haunted place. Viktor must now confront his troubled past and work together with Angelica to survive the night and unravel the mystery behind the woman's disappearance.", + "posterPath": "/hLAXyfDXf5CI0HRvz0jrqy88mxg.jpg", + "backdropPath": "/8VZt1Uo07F3CMhzpl8BjIzVOdBh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2024-03-22", + "releaseYear": "2024", + "originalLanguage": "sv", + "voteAverage": 6.393, + "voteCount": 14, + "popularity": 11.5356 + }, + { + "id": 559, + "title": "Spider-Man 3", + "originalTitle": "Spider-Man 3", + "overview": "The seemingly invincible Spider-Man goes up against an all-new crop of villains—including the shape-shifting Sandman. While Spider-Man’s superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and also gets caught up in a love triangle.", + "posterPath": "/qFmwhVUoUSXjkKRmca5yGDEXBIj.jpg", + "backdropPath": "/w1oD1MzHjnBJc5snKupIQaSBLIh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2007-05-01", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.447, + "voteCount": 14789, + "popularity": 11.5253 + }, + { + "id": 271110, + "title": "Captain America: Civil War", + "originalTitle": "Captain America: Civil War", + "overview": "Following the events of Age of Ultron, the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers, causing two factions to side with Iron Man or Captain America, which causes an epic battle between former allies.", + "posterPath": "/rAGiXaUfPzY7CDEyNKUofk3Kw2e.jpg", + "backdropPath": "/kvRT3GwcnqGHzPjXIVrVPhUix7Z.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2016-04-27", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.448, + "voteCount": 23541, + "popularity": 11.5248 + }, + { + "id": 997113, + "title": "Hedda", + "originalTitle": "Hedda", + "overview": "Hedda Gabler finds herself torn between the lingering ache of a past love and the quiet suffocation of her present life. Over the course of one charged night, long-repressed desires and hidden tensions erupt—pulling her and everyone around her into a spiral of manipulation, passion, and betrayal.", + "posterPath": "/ecflk7AZf0ij205yDswjlvdxlCO.jpg", + "backdropPath": "/cKZcDKawR79igCgDMSXlpkn8hLR.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10749 + ], + "genres": [ + "Drama", + "Thriller", + "Romance" + ], + "releaseDate": "2025-10-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 61, + "popularity": 11.5224 + }, + { + "id": 1151334, + "title": "Eenie Meanie", + "originalTitle": "Eenie Meanie", + "overview": "A former teenage getaway driver gets dragged back into her unsavory past when a former employer offers her a chance to save the life of her chronically unreliable ex-boyfriend.", + "posterPath": "/12Va3oO3oYUdOd75zM57Nx1976a.jpg", + "backdropPath": "/8jeDyvFQKgss36FbGAmGQVzPXlH.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 35 + ], + "genres": [ + "Thriller", + "Action", + "Comedy" + ], + "releaseDate": "2025-08-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.361, + "voteCount": 251, + "popularity": 11.4961 + }, + { + "id": 150540, + "title": "Inside Out", + "originalTitle": "Inside Out", + "overview": "When 11-year-old Riley moves to a new city, her Emotions team up to help her through the transition. Joy, Fear, Anger, Disgust and Sadness work together, but when Joy and Sadness get lost, they must journey through unfamiliar places to get back home.", + "posterPath": "/2H1TmgdfNtsKlU9jKdeNyYL5y8T.jpg", + "backdropPath": "/jJKZaTBNenlFclQyjrnvzkRmvWE.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 18, + 35 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2015-06-17", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.91, + "voteCount": 22953, + "popularity": 11.4925 + }, + { + "id": 49026, + "title": "The Dark Knight Rises", + "originalTitle": "The Dark Knight Rises", + "overview": "Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.", + "posterPath": "/hr0L2aueqlP2BYUblTTjmtn0hw4.jpg", + "backdropPath": "/c3OHQncTAnKFhdOTX7D3LTW6son.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2012-07-17", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.789, + "voteCount": 23744, + "popularity": 11.4875 + }, + { + "id": 1124619, + "title": "Bride Hard", + "originalTitle": "Bride Hard", + "overview": "Sam is a secret agent whose toughest mission to date is pleasing her bride-to-be best friend at a lavish destination wedding. When a team of mercenaries crashes the party and takes the guests hostage, Sam is thrown into a fight unlike any before — one where she can’t risk blowing her cover or ruining the big day. As she takes on the bad guys in a high-stakes battle disguised as a fairy-tale affair, she realizes the real threat might be closer than she thinks.", + "posterPath": "/pVli4kL16OFYPWvn5yTnZusX4l0.jpg", + "backdropPath": "/2DcD4Hh80SW7YVpwckkiEFRZX06.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2025-06-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.564, + "voteCount": 141, + "popularity": 11.4845 + }, + { + "id": 296096, + "title": "Me Before You", + "originalTitle": "Me Before You", + "overview": "A small town girl is caught between dead-end jobs. A high-profile, successful man becomes wheelchair bound following an accident. The man decides his life is not worth living until the girl is hired for six months to be his new caretaker. Worlds apart and trapped together by circumstance, the two get off to a rocky start. But the girl becomes determined to prove to the man that life is worth living and as they embark on a series of adventures together, each finds their world changing in ways neither of them could begin to imagine.", + "posterPath": "/Ia3dzj5LnCj1ZBdlVeJrbKJQxG.jpg", + "backdropPath": "/3WK7p9EdZmmvB1IbB2Vw9Rf4lXH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2016-06-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.926, + "voteCount": 12900, + "popularity": 11.4575 + }, + { + "id": 1205515, + "title": "Sorry, Baby", + "originalTitle": "Sorry, Baby", + "overview": "Agnes feels stuck. Unlike her best friend, Lydie, who’s moved to New York and is now expecting a baby, Agnes still lives in the New England house they once shared as graduate students, now working as a professor at her alma mater. A ‘bad thing’ happened to Agnes a few years ago and, since then, despite her best efforts, life hasn’t gotten back on track.", + "posterPath": "/n8wZEQen5hDNRGzm4fY4sxWe5xe.jpg", + "backdropPath": "/9fmqG3uyDZ8n1I3elp5URVgQMbz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-06-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 145, + "popularity": 11.4423 + }, + { + "id": 809, + "title": "Shrek 2", + "originalTitle": "Shrek 2", + "overview": "Shrek, Fiona, and Donkey set off to Far, Far Away to meet Fiona's mother and father, the Queen and King. But not everyone is happily ever after. Shrek and the King find it difficult to get along, and there's tension in the marriage. The Fairy Godmother discovers that Fiona has married Shrek instead of her son Prince Charming and plots to destroy their marriage.", + "posterPath": "/2yYP0PQjG8zVqturh1BAqu2Tixl.jpg", + "backdropPath": "/8ohobj5lAIbl5XWw11FywS3IRrS.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 14, + 12, + 10749 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Fantasy", + "Adventure", + "Romance" + ], + "releaseDate": "2004-05-19", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.305, + "voteCount": 13037, + "popularity": 11.4271 + }, + { + "id": 1497036, + "title": "Dr. Seuss's The Sneetches", + "originalTitle": "Dr. Seuss's The Sneetches", + "overview": "An unexpected friendship forms between two young Sneetches on an island surrounded by beaches in this sweet musical special set in the world of Seuss.", + "posterPath": "/5jqpfOY6q8ltnCFEfUPY3c0bpR5.jpg", + "backdropPath": "/9Apjnxx4BQ2opZr022r5Me5J8zi.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751 + ], + "genres": [ + "Animation", + "Family" + ], + "releaseDate": "2025-11-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 10, + "popularity": 11.402 + }, + { + "id": 27374, + "title": "Lake Mungo", + "originalTitle": "Lake Mungo", + "overview": "After 16-year-old Alice Palmer drowns at a local dam, her family experiences a series of strange, inexplicable events centered in and around their home. Unsettled, the Palmers seek the help of a psychic and parapsychologist, who discovers that Alice led a secret, double life. At Lake Mungo, Alice's secret past emerges.", + "posterPath": "/g0zCELYfBfSv8TOGC13buABVN53.jpg", + "backdropPath": "/5eaS62YjA5Z7WPcf4quyZa5VpeO.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2009-07-30", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 633, + "popularity": 11.3965 + }, + { + "id": 1169210, + "title": "The Mannequin", + "originalTitle": "The Mannequin", + "overview": "A stylist assistant investigates her sister's death in a historic LA building, only to face a vengeful ghost of a serial killer who dismembered victims decades ago. She must escape before she's next.", + "posterPath": "/oFTpB1gzS02LtrsenTWxOKbsMpM.jpg", + "backdropPath": "/z6Pi72HrGhc50GDhDdREUTEh2xm.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 80, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Crime", + "Mystery" + ], + "releaseDate": "2025-08-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.895, + "voteCount": 19, + "popularity": 11.391 + }, + { + "id": 80880, + "title": "Aarya", + "originalTitle": "ఆర్య", + "overview": "Aarya is a happy-go-lucky young man who goes to college. When he falls in love with Geetha at first sight, he proposes to her - in front of her boyfriend Ajay, who recently also proposed to her. She bluntly refuses, but ...", + "posterPath": "/1RU7eOgierTfTiNNQUmd1h5iKFU.jpg", + "backdropPath": "/peYtrlq7SgZdp3wp5CFHL8y7J56.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 10749 + ], + "genres": [ + "Drama", + "Action", + "Romance" + ], + "releaseDate": "2004-05-07", + "releaseYear": "2004", + "originalLanguage": "te", + "voteAverage": 6.5, + "voteCount": 42, + "popularity": 11.3884 + }, + { + "id": 475557, + "title": "Joker", + "originalTitle": "Joker", + "overview": "During the 1980s, a failed stand-up comedian is driven insane and turns to a life of crime and chaos in Gotham City while becoming an infamous psychopathic crime figure.", + "posterPath": "/udDclJoHjfjb8Ekgsd4FDteOkCU.jpg", + "backdropPath": "/hO7KbdvGOtDdeg0W4Y5nKEHeDDh.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 18 + ], + "genres": [ + "Crime", + "Thriller", + "Drama" + ], + "releaseDate": "2019-10-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 27023, + "popularity": 11.361 + }, + { + "id": 46146, + "title": "Troll Hunter", + "originalTitle": "Trolljegeren", + "overview": "A group of students investigates a series of mysterious bear killings, but learns that there are much more dangerous things going on. They start to follow a mysterious hunter, learning that he is actually a troll hunter.", + "posterPath": "/v2W5NEz0p9jPFzbbYt0dP86gsOX.jpg", + "backdropPath": "/8dI1r7qh7sT79ZkkvhTKFwAIuV1.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27 + ], + "genres": [ + "Fantasy", + "Horror" + ], + "releaseDate": "2010-10-29", + "releaseYear": "2010", + "originalLanguage": "no", + "voteAverage": 6.697, + "voteCount": 1674, + "popularity": 11.3461 + }, + { + "id": 11324, + "title": "Shutter Island", + "originalTitle": "Shutter Island", + "overview": "World War II soldier-turned-U.S. Marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by troubling visions and a mysterious doctor.", + "posterPath": "/nrmXQ0zcZUL8jFLrakWc90IR8z9.jpg", + "backdropPath": "/rbZvGN1A1QyZuoKzhCw8QPmf2q0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 9648 + ], + "genres": [ + "Drama", + "Thriller", + "Mystery" + ], + "releaseDate": "2010-02-14", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 25104, + "popularity": 11.3373 + }, + { + "id": 408866, + "title": "RE:BORN", + "originalTitle": "RE:BORN", + "overview": "A former special forces operative struggling to contain the destructive impulses of his past goes on a rampage against a squad of ruthless assassins.", + "posterPath": "/y14VzRr1er9DNiJffToo763esMe.jpg", + "backdropPath": "/lXPV1eael4RXaVBnlBG0faihldJ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2016-09-24", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.117, + "voteCount": 240, + "popularity": 11.3284 + }, + { + "id": 392572, + "title": "Rustom", + "originalTitle": "रुस्तम", + "overview": "A naval officer is devastated to learn about his wife's extramarital affair with a rich businessman while he was away. He pays him a visit and shoots him to death, following which he surrenders himself but claims to be \"not guilty\" in the court, much to the surprise of the businessman's sister and the officers dealing with his case.", + "posterPath": "/xwf74VcrHu1etzOsRVx7nckPPLR.jpg", + "backdropPath": "/a7sHhxRbIt2TXS2HS2R1FFIXog6.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 80 + ], + "genres": [ + "Thriller", + "Drama", + "Crime" + ], + "releaseDate": "2016-08-12", + "releaseYear": "2016", + "originalLanguage": "hi", + "voteAverage": 6.7, + "voteCount": 129, + "popularity": 11.3277 + }, + { + "id": 1081012, + "title": "Aftermath", + "originalTitle": "Aftermath", + "overview": "A returning war veteran, stricken with PTSD, gets trapped with his teenage sister on Boston's Tobin Memorial Bridge when a heavily armed group of ex-military revolutionaries take everyone hostage.", + "posterPath": "/v9knhuvYKwMUAta6fltNOuun3zF.jpg", + "backdropPath": "/aWILNXgq07riueQknYXMvum11jo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2024-09-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.273, + "voteCount": 163, + "popularity": 11.3253 + }, + { + "id": 1185528, + "title": "Legends of the Condor Heroes: The Gallants", + "originalTitle": "射雕英雄传:侠之大者", + "overview": "Under Genghis Khan, the Mongolian army pushes west to destroy the Jin Dynasty, setting its sights on the Song Dynasty next. Amid internal conflicts among martial arts schools, Guo Jing unites the Central Plains' warriors to defend Xiangyang, embodying courage and loyalty in the fight for the nation.", + "posterPath": "/fUCFEGFlMIFet9ja72JDAeG1he8.jpg", + "backdropPath": "/1DTIRhw4cpLJlHlrPPbKzq6amHc.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 36 + ], + "genres": [ + "Action", + "Drama", + "History" + ], + "releaseDate": "2025-01-29", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 6.888, + "voteCount": 76, + "popularity": 11.3144 + }, + { + "id": 192558, + "title": "Aashiqui 2", + "originalTitle": "आशिकी २", + "overview": "A young woman meets a failing musician who launches her singing career, but their relationship is doomed when people assume he's with her for her fame and fortune.", + "posterPath": "/lMblq8xcQIRRIVdaMg1XC283gU0.jpg", + "backdropPath": "/cpMszrx8BFVfmq3ZBrL6RVQvO2V.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2013-04-26", + "releaseYear": "2013", + "originalLanguage": "hi", + "voteAverage": 6.799, + "voteCount": 179, + "popularity": 11.3143 + }, + { + "id": 307081, + "title": "Southpaw", + "originalTitle": "Southpaw", + "overview": "Billy \"The Great\" Hope, the reigning junior middleweight boxing champion, has an impressive career, a loving wife and daughter, and a lavish lifestyle. However, when tragedy strikes, Billy hits rock bottom, losing his family, his house and his manager. He soon finds an unlikely savior in Tick Willis, a former fighter who trains the city's toughest amateur boxers. With his future on the line, Hope fights to reclaim the trust of those he loves the most.", + "posterPath": "/kSQ49Fi3NVTqGGXILmxV2T2pdkG.jpg", + "backdropPath": "/zT9iYKMtmU82Jo44WbiuMOW7jRi.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2015-03-24", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 5664, + "popularity": 11.312 + }, + { + "id": 999890, + "title": "Sweethearts", + "originalTitle": "Sweethearts", + "overview": "Two college freshmen who decided to stick with their high school sweethearts have to pull a 'Turkey Dump' and break up with them over 'Drunksgiving' the one chaotic night before Thanksgiving in their hometown that puts their codependent friendship to the test.", + "posterPath": "/890UDXYal6i8A9NbMV5TAxZpOzH.jpg", + "backdropPath": "/us8T8e2bSkyORss8xanwCDZCZxG.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-10-31", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.759, + "voteCount": 85, + "popularity": 11.3048 + }, + { + "id": 927254, + "title": "The Twits", + "originalTitle": "The Twits", + "overview": "When the meanest, nastiest villains pull a trick to take over their town, two brave children team up with a family of magical animals to bring them down.", + "posterPath": "/yc58ddSkwnn3Qe8jFFmv4qcgQOX.jpg", + "backdropPath": "/i4o2aPGlnsxfPmDPF5lmlgjScyv.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2025-10-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.986, + "voteCount": 69, + "popularity": 11.2931 + }, + { + "id": 453395, + "title": "Doctor Strange in the Multiverse of Madness", + "originalTitle": "Doctor Strange in the Multiverse of Madness", + "overview": "Doctor Strange, with the help of mystical allies both old and new, traverses the mind-bending and dangerous alternate realities of the Multiverse to confront a mysterious new adversary.", + "posterPath": "/ddJcSKbcp4rKZTmuyWaMhuwcfMz.jpg", + "backdropPath": "/gUNRlH66yNDH3NQblYMIwgZXJ2u.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 12 + ], + "genres": [ + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2022-05-04", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.236, + "voteCount": 9899, + "popularity": 11.2801 + }, + { + "id": 438695, + "title": "Sing 2", + "originalTitle": "Sing 2", + "overview": "Buster and his new cast now have their sights set on debuting a new show at the Crystal Tower Theater in glamorous Redshore City. But with no connections, he and his singers must sneak into the Crystal Entertainment offices, run by the ruthless wolf mogul Jimmy Crystal, where the gang pitches the ridiculous idea of casting the lion rock legend Clay Calloway in their show. Buster must embark on a quest to find the now-isolated Clay and persuade him to return to the stage.", + "posterPath": "/aWeKITRFbbwY8txG5uCj4rMCfSP.jpg", + "backdropPath": "/ztiFxuG0gC6wQ8y7JZFYbCQyN4Y.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 10402, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Music", + "Animation" + ], + "releaseDate": "2021-12-01", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.838, + "voteCount": 4660, + "popularity": 11.2274 + }, + { + "id": 987400, + "title": "Aztec Batman: Clash of Empires", + "originalTitle": "Batman Azteca: Choque de imperios", + "overview": "In the time of the Aztec empire, tragedy strikes Yohualli Coatl when his father is murdered by Spanish conquistadors. To warn King Moctezuma and his high priest, Yoka, of imminent danger, Yohualli escapes to Tenochtitlán. There, he trains in the temple of the bat god Tzinacan with his mentor, developing equipment and weaponry to confront the Spanish invasion and avenge his father’s death. Along the way, he encounters key figures like the fierce Jaguar Woman and the conquistador Hernán Cortés.", + "posterPath": "/s0Mlo5w4INp3bUdsJo3RaSSMXWz.jpg", + "backdropPath": "/9KSboWOt09J72aMY4x8SS1IaOHK.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 12, + 14 + ], + "genres": [ + "Animation", + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2025-09-18", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.76, + "voteCount": 121, + "popularity": 11.1825 + }, + { + "id": 11036, + "title": "The Notebook", + "originalTitle": "The Notebook", + "overview": "An epic love story centered around an older man who reads aloud to a woman with Alzheimer's. From a faded notebook, the old man's words bring to life the story about a couple who is separated by World War II, and is then passionately reunited, seven years later, after they have taken different paths.", + "posterPath": "/rNzQyW4f8B8cQeg7Dgj3n6eT5k9.jpg", + "backdropPath": "/zdXnJqBaGFVtLoPNuMeKfEYUViZ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2004-06-25", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.892, + "voteCount": 12186, + "popularity": 11.1825 + }, + { + "id": 1326106, + "title": "Kaiju No. 8: Mission Recon", + "originalTitle": "アニメ『怪獣8号』第1期総集編/同時上映「保科の休日」", + "overview": "In a Kaiju-filled Japan, Kafka Hibino works in monster disposal. After reuniting with his childhood friend Mina Ashiro, a rising star in the anti-Kaiju Defense Force, he decides to pursue his abandoned dream of joining the Force, when he suddenly transforms into the powerful \"Kaiju No. 8.\" An action-packed recap of the first season of Kaiju No. 8 and a new original episode, Hoshina's Day Off.", + "posterPath": "/2mU8qUbYKlHBdmDDbCmKLuqXd1m.jpg", + "backdropPath": "/iZ0ZSnhmHB3k1KDkDzEz65f5iia.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction" + ], + "releaseDate": "2025-03-28", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 74, + "popularity": 11.1567 + }, + { + "id": 210577, + "title": "Gone Girl", + "originalTitle": "Gone Girl", + "overview": "With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.", + "posterPath": "/ts996lKsxvjkO2yiYG0ht4qAicO.jpg", + "backdropPath": "/iWak7wT0j6ycCc8lKr4NBz9c7n5.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 18 + ], + "genres": [ + "Mystery", + "Thriller", + "Drama" + ], + "releaseDate": "2014-10-01", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.889, + "voteCount": 19454, + "popularity": 11.1522 + }, + { + "id": 105825, + "title": "Erotic Ghost Story III", + "originalTitle": "聊齋三集之燈草和尚", + "overview": "A wanderer meets a monk with magical powers and becomes entranced by a mural of exquisite dancing women. He enters the painting, unaware of the conspiracy behind it, and must rescue the women who are trapped within.", + "posterPath": "/2b1Y6NbZenY45DgC5CwncoLkpo.jpg", + "backdropPath": "/gGBF7gDBsbddvSdps6fvNKQoqDh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 14 + ], + "genres": [ + "Horror", + "Drama", + "Fantasy" + ], + "releaseDate": "1992-03-05", + "releaseYear": "1992", + "originalLanguage": "cn", + "voteAverage": 5.5, + "voteCount": 27, + "popularity": 11.1487 + }, + { + "id": 1264573, + "title": "Lurker", + "originalTitle": "Lurker", + "overview": "When a twenty-something retail clerk meets a rising popstar, he takes the opportunity to edge his way into the in-crowd. But as the line between friend and fan blurs beyond recognition, access and proximity become a matter of life and death.", + "posterPath": "/remyTlj6bJqoSStgjn3EwyOcki7.jpg", + "backdropPath": "/u4JsyMpp6mtAYbg0t3GIaCgPrRy.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2025-08-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.571, + "voteCount": 21, + "popularity": 11.1478 + }, + { + "id": 1289888, + "title": "French Lover", + "originalTitle": "French Lover", + "overview": "When a jaded actor meets a down-on-her-luck waitress in Paris, their unexpected love story begins — but will it survive the glare of the spotlight?", + "posterPath": "/bLqPpqNoKbNbXysIeft1tLIl6KB.jpg", + "backdropPath": "/p4OIGFfVo3vbROMD1evVF0u14Rf.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2025-09-25", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 5.994, + "voteCount": 181, + "popularity": 11.1461 + }, + { + "id": 442285, + "title": "The Beguines", + "originalTitle": "Le Rempart des Béguines", + "overview": "Hélène, a fragile and romantic teenager, discovers that her father, a rich business man, has a mistress. Curious, she decides to go and meet this woman who is described as strange. At the first chance she has she goes to her house in the Ramparts of Béguines... from then on she goes back often, discovering a new world of artists and nightowls where she also experiences love in the arms of Tamara.", + "posterPath": "/ppKLGOs4usWfakdZxi3UZfhX3QQ.jpg", + "backdropPath": "/8XgOSbyHwefSskwS96KKSd1tBQr.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1972-09-19", + "releaseYear": "1972", + "originalLanguage": "fr", + "voteAverage": 5.05, + "voteCount": 10, + "popularity": 11.1441 + }, + { + "id": 269148, + "title": "Samba", + "originalTitle": "Samba", + "overview": "Samba migrated to France 10 years ago from Senegal, and has since been plugging away at various lowly jobs. Alice is a senior executive who has recently undergone a burnout. Both struggle to get out of their dead-end lives. Samba's willing to do whatever it takes to get working papers, while Alice tries to get her life back on track until fate draws them together.", + "posterPath": "/4U0OwAZCxaFWzteynhbtBwRxEBM.jpg", + "backdropPath": "/rRzGhzcN6Q8iBvmxKo4qfLTgkMH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2014-10-15", + "releaseYear": "2014", + "originalLanguage": "fr", + "voteAverage": 6.352, + "voteCount": 968, + "popularity": 11.1436 + }, + { + "id": 398818, + "title": "Call Me by Your Name", + "originalTitle": "Call Me by Your Name", + "overview": "In the summer of 1983, a 17-year-old Elio spends his days in his family's villa in Italy. One day Oliver, a graduate student, arrives to assist Elio's father, a professor of Greco-Roman culture. Soon, Elio and Oliver discover a summer that will alter their lives forever.", + "posterPath": "/mZ4gBdfkhP9tvLH1DO4m4HYtiyi.jpg", + "backdropPath": "/zvOJawrnmgK0sL293mOXOdLvTXQ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2017-07-28", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.101, + "voteCount": 12501, + "popularity": 11.1073 + }, + { + "id": 352275, + "title": "Lost Boy", + "originalTitle": "Lost Boy", + "overview": "When Laura Harris's kidnapped son returns after eleven devastating years, what she thinks will be a dream come true turns out to be a family nightmare.", + "posterPath": "/gM3UEc20NQW4wflMsT1kApsK7hw.jpg", + "backdropPath": "/g3zo4girDFxGFoeNG3KYZQIxoII.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 10770, + 9648 + ], + "genres": [ + "Thriller", + "Drama", + "TV Movie", + "Mystery" + ], + "releaseDate": "2015-07-25", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 31, + "popularity": 11.1073 + }, + { + "id": 1043905, + "title": "Dirty Angels", + "originalTitle": "Dirty Angels", + "overview": "During the United States' 2021 withdrawal from Afghanistan, a group of female soldiers posing as medical relief are sent back in to rescue a group of kidnapped teenagers caught between ISIS and the Taliban.", + "posterPath": "/1y3TG8N8zwwMxqh0qzdyDs3IyCq.jpg", + "backdropPath": "/yBMGM7x8lPXUlmTNfCLZvHbpJmk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53, + 10752 + ], + "genres": [ + "Action", + "Drama", + "Thriller", + "War" + ], + "releaseDate": "2024-12-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.184, + "voteCount": 343, + "popularity": 11.1024 + }, + { + "id": 1140535, + "title": "Presence", + "originalTitle": "Presence", + "overview": "A couple and their children move into a seemingly normal suburban home. When strange events occur, they begin to believe there is something else in the house with them. The presence is about to disrupt their lives in unimaginable ways.", + "posterPath": "/xZIGHoHj0DF0zdibwa66cRWHdHO.jpg", + "backdropPath": "/eT1L3IVcHUL58wLn48E5dxlea3Z.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2025-01-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 613, + "popularity": 11.094 + }, + { + "id": 1002158, + "title": "Vultures", + "originalTitle": "Rapaces", + "overview": "A father and daughter : Samuel, a journalist, and Ava, his intern, cover the murder of a girl attacked with acid for their magazine. Struck by the brutality of this murder, as well as by his daughter’s interest in the case, Samuel decides to conduct an independent investigation, without the knowledge of his editorial staff, and discovers disturbing similarities with the murder of another woman...", + "posterPath": "/wXkKQ6OZFsistB2cn8KDOaCuTfY.jpg", + "backdropPath": "/fuXmjoFicUudkABRQu5b2vQPQSt.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "2025-07-02", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.529, + "voteCount": 51, + "popularity": 11.0862 + }, + { + "id": 1034541, + "title": "Terrifier 3", + "originalTitle": "Terrifier 3", + "overview": "Five years after surviving Art the Clown's Halloween massacre, Sienna and Jonathan are still struggling to rebuild their shattered lives. As the holiday season approaches, they try to embrace the Christmas spirit and leave the horrors of the past behind. But just when they think they're safe, Art returns, determined to turn their holiday cheer into a new nightmare. The festive season quickly unravels as Art unleashes his twisted brand of terror, proving that no holiday is safe.", + "posterPath": "/ju10W5gl3PPK3b7TjEmVOZap51I.jpg", + "backdropPath": "/18TSJF1WLA4CkymvVUcKDBwUJ9F.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-10-09", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.816, + "voteCount": 1820, + "popularity": 11.0717 + }, + { + "id": 587792, + "title": "Palm Springs", + "originalTitle": "Palm Springs", + "overview": "When carefree Nyles and reluctant maid of honor Sarah have a chance encounter at a Palm Springs wedding, things get complicated when they find themselves unable to escape the venue, themselves, or each other.", + "posterPath": "/gnAfqiV7yO3Jq9IntTmwkcaICqc.jpg", + "backdropPath": "/d7JUXVvjvVCXWs1mlpyO5ESdWdT.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 878 + ], + "genres": [ + "Comedy", + "Romance", + "Science Fiction" + ], + "releaseDate": "2020-07-10", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.334, + "voteCount": 3472, + "popularity": 11.0697 + }, + { + "id": 297802, + "title": "Aquaman", + "originalTitle": "Aquaman", + "overview": "Half-human, half-Atlantean Arthur Curry is taken on the journey of his lifetime to discover if he is worth of being a king.", + "posterPath": "/ufl63EFcc5XpByEV2Ecdw6WJZAI.jpg", + "backdropPath": "/9QusGjxcYvfPD1THg6oW3RLeNn7.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2018-12-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.872, + "voteCount": 14595, + "popularity": 11.0685 + }, + { + "id": 162, + "title": "Edward Scissorhands", + "originalTitle": "Edward Scissorhands", + "overview": "A small suburban town receives a visit from a castaway unfinished science experiment named Edward.", + "posterPath": "/e0FqKFvGPdQNWG8tF9cZBtev9Em.jpg", + "backdropPath": "/uNLIMPxknsV4n3IAEDpS1iqF5dm.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 10749 + ], + "genres": [ + "Fantasy", + "Drama", + "Romance" + ], + "releaseDate": "1990-12-07", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.719, + "voteCount": 13439, + "popularity": 11.0513 + }, + { + "id": 481871, + "title": "Mother's Job", + "originalTitle": "엄마의 직업", + "overview": "A young man falls in love with his friend's mother. Hyun-woo, who returned to the military, starts a part-time job at a bar in a difficult situation, where he meets Yoo-sun, a woman who captures the hearts of customers with her skillful ways. Then one day, Hyun-woo, who was alone with her, finds himself in a shock with his friends Min-seok and Yoo-sun. When Hyun-woo confesses the truth after a hard time, Yoo-sun asks her to keep her relationship secret. Hyun-woo, who failed to reject Min-seok's proposal to live in his own home, begins a breathtaking cohabitation with Yoo-sun.", + "posterPath": "/oIoJrYsyg34fe66BWndCit1ekUD.jpg", + "backdropPath": "/gLwJ5SsmTqqUVn3lahlBacYSrGH.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-07-27", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 5.8, + "voteCount": 15, + "popularity": 11.0064 + }, + { + "id": 866398, + "title": "The Beekeeper", + "originalTitle": "The Beekeeper", + "overview": "One man's campaign for vengeance takes on national stakes after he is revealed to be a former operative of a powerful and clandestine organization known as Beekeepers.", + "posterPath": "/A7EByudX0eOzlkQ2FIbogzyazm2.jpg", + "backdropPath": "/4MCKNAc6AbWjEsM2h9Xc29owo4z.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2024-01-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.275, + "voteCount": 3893, + "popularity": 11.002 + }, + { + "id": 12155, + "title": "Alice in Wonderland", + "originalTitle": "Alice in Wonderland", + "overview": "Alice, now 19 years old, returns to the whimsical world she first entered as a child and embarks on a journey to discover her true destiny.", + "posterPath": "/o0kre9wRCZz3jjSjaru7QU0UtFz.jpg", + "backdropPath": "/ocOWbTzHcJVTw9Tz173KPeskDOP.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 12 + ], + "genres": [ + "Family", + "Fantasy", + "Adventure" + ], + "releaseDate": "2010-03-03", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.637, + "voteCount": 14478, + "popularity": 10.9929 + }, + { + "id": 424, + "title": "Schindler's List", + "originalTitle": "Schindler's List", + "overview": "The true story of how businessman Oskar Schindler saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory during World War II.", + "posterPath": "/sF1U4EUQS8YHUYjNl3pMGNIQyr0.jpg", + "backdropPath": "/zb6fM1CX41D9rF9hdgclu0peUmy.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752 + ], + "genres": [ + "Drama", + "History", + "War" + ], + "releaseDate": "1993-12-15", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8.566, + "voteCount": 16887, + "popularity": 10.9865 + }, + { + "id": 138843, + "title": "The Conjuring", + "originalTitle": "The Conjuring", + "overview": "Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.", + "posterPath": "/wVYREutTvI2tmxr6ujrHT704wGF.jpg", + "backdropPath": "/aQCCpAIdWAp6wyFgjMry4okwrZo.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2013-07-18", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 12360, + "popularity": 10.9859 + }, + { + "id": 9279, + "title": "Jingle All the Way", + "originalTitle": "Jingle All the Way", + "overview": "Howard Langston, a salesman for a mattress company, is constantly kept busy at his job, disappointing his son. After he misses his son's karate exposition, Howard vows to make it up to him by buying an action figure of his son's favorite television hero for Christmas. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man. Now, Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.", + "posterPath": "/6QLkeLXPIxiihuX5enHHNEuCCzy.jpg", + "backdropPath": "/rnn6sGMGPpM8VfVmCMFxsjKvz7q.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12 + ], + "genres": [ + "Family", + "Comedy", + "Adventure" + ], + "releaseDate": "1996-11-21", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.058, + "voteCount": 2823, + "popularity": 10.9675 + }, + { + "id": 965979, + "title": "Dada", + "originalTitle": "டாடா", + "overview": "Manikandan and Sindhu, final year college students, become parents accidentally. Situations separate them, forcing Manikandan to raise his child, Adhithya, as a single parent. What follows is a beautiful tale of a father and son and their journey against all odds.", + "posterPath": "/x7C2u4oXoMFQBaSJqqcyU3qpwKy.jpg", + "backdropPath": "/8SLW8lr2mQaHNJtw2PwGwUCcw3h.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "2023-02-10", + "releaseYear": "2023", + "originalLanguage": "ta", + "voteAverage": 7.438, + "voteCount": 16, + "popularity": 10.966 + }, + { + "id": 108074, + "title": "Dagger Eyes", + "originalTitle": "Mystère", + "overview": "Assassins are after a prostitute who has come into possession of a cigarette lighter that, unbeknownst to her, contains the negatives that show a politician's assassination. A delightfully playful giallo starring the beautiful Carole Bouquet as Mystère, a high class call girl who becomes the target for a couple of assassins.", + "posterPath": "/6HUCx7NuaoKI4kVlQhbNo3JWN0g.jpg", + "backdropPath": "/yWBq6w3wZ12fBiMwscFmtFpi0m8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80 + ], + "genres": [ + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "1983-11-28", + "releaseYear": "1983", + "originalLanguage": "it", + "voteAverage": 5.132, + "voteCount": 19, + "popularity": 10.9657 + }, + { + "id": 1181540, + "title": "Guns Up", + "originalTitle": "Guns Up", + "overview": "When a job goes horribly wrong, an ex-cop and family man who moonlights as a mob henchman has one night to get his family out of the city.", + "posterPath": "/3RokBWEkQqJRZEVP3DPwGm5MYh6.jpg", + "backdropPath": "/1KwliRKTw61fRGmbG4Sf8eWOHP.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2025-05-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 127, + "popularity": 10.962 + }, + { + "id": 144069, + "title": "The Corruption", + "originalTitle": "La bonne", + "overview": "Anna, a beautiful lawyer's wife, feels abandoned by her husband and grows closer to their maid, Angela. The maid convinces Anna to try increasingly daring erotic games.", + "posterPath": "/s9pXocmKhkvLazafoL0oUGIn3Me.jpg", + "backdropPath": "/p2bq3g5YfkWIKCjV5i289brZsJR.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1986-04-17", + "releaseYear": "1986", + "originalLanguage": "it", + "voteAverage": 5.167, + "voteCount": 39, + "popularity": 10.9379 + }, + { + "id": 979, + "title": "Irreversible", + "originalTitle": "Irréversible", + "overview": "A woman’s lover and her ex-boyfriend take justice into their own hands after she becomes the victim of a rapist. Because some acts can’t be undone. Because man is an animal. Because the desire for vengeance is a natural impulse. Because most crimes remain unpunished.", + "posterPath": "/rxeDxo8FvZpLu6iplNpxdtAVnfu.jpg", + "backdropPath": "/xV1EfNSEg6id6juJPr1vM6p9x5X.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80 + ], + "genres": [ + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2002-05-22", + "releaseYear": "2002", + "originalLanguage": "fr", + "voteAverage": 7.181, + "voteCount": 3141, + "popularity": 10.9147 + }, + { + "id": 1471345, + "title": "Homo Argentum", + "originalTitle": "Homo Argentum", + "overview": "The film consists of 16 shorts that explore, with humor and social criticism, the characteristics of the Argentine identity.", + "posterPath": "/21WlZtv1GZgiD2qAVHOkg63LRmU.jpg", + "backdropPath": "/2fwoBrUYMK0PZVaFqesx2CoRF6H.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-08-14", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 10.8987 + }, + { + "id": 667538, + "title": "Transformers: Rise of the Beasts", + "originalTitle": "Transformers: Rise of the Beasts", + "overview": "When a new threat capable of destroying the entire planet emerges, Optimus Prime and the Autobots must team up with a powerful faction known as the Maximals. With the fate of humanity hanging in the balance, humans Noah and Elena will do whatever it takes to help the Transformers as they engage in the ultimate battle to save Earth.", + "posterPath": "/gPbM0MK8CP8A174rmUwGsADNYKD.jpg", + "backdropPath": "/2vFuG6bWGyQUzYS9d69E5l85nIz.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2023-06-06", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 5088, + "popularity": 10.8871 + }, + { + "id": 648878, + "title": "Eddington", + "originalTitle": "Eddington", + "overview": "In May of 2020, a standoff between a small-town sheriff and mayor sparks a powder keg as neighbor is pitted against neighbor in Eddington, New Mexico.", + "posterPath": "/4GIqZUgPZ146BhibsPHMHef2nXX.jpg", + "backdropPath": "/5PJkK2iVXRO1ydrtgwuJdevmnOe.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 35, + 80 + ], + "genres": [ + "Western", + "Comedy", + "Crime" + ], + "releaseDate": "2025-07-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.477, + "voteCount": 509, + "popularity": 10.8867 + }, + { + "id": 694, + "title": "The Shining", + "originalTitle": "The Shining", + "overview": "Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.", + "posterPath": "/uAR0AWqhQL1hQa69UDEbb2rE5Wx.jpg", + "backdropPath": "/AdKA2F1SzYPhSZdEbjH1Zh75UVQ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "1980-05-23", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 8.207, + "voteCount": 18369, + "popularity": 10.8674 + }, + { + "id": 854, + "title": "The Mask", + "originalTitle": "The Mask", + "overview": "Stanley, a meek bank employee, turns into an eccentric and maniacal green-skinned superhero who can bend reality, after wearing a wooden mask that was created by Loki, the Norse god of mischief.", + "posterPath": "/jPC2eYub74zwf2tPGVtzSlBW6Oy.jpg", + "backdropPath": "/80uHK2xWwjlOxmfJ1wQB09omAht.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 80, + 14 + ], + "genres": [ + "Romance", + "Comedy", + "Crime", + "Fantasy" + ], + "releaseDate": "1994-07-29", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.974, + "voteCount": 10857, + "popularity": 10.8325 + }, + { + "id": 1364608, + "title": "Anemone", + "originalTitle": "Anemone", + "overview": "Middle-aged Jem sets out from his suburban home on a journey into the woods, where he reconnects with his estranged hermit brother Ray. Bonded by a mysterious, complicated past, the men share a fraught, if occasionally tender relationship—one that was forever altered by shattering events decades earlier.", + "posterPath": "/kXFHVJqZkWtkSRlLpv2clN8KP6E.jpg", + "backdropPath": "/4nExMuYsypZasoX8ri3t0lYLfAF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.127, + "voteCount": 63, + "popularity": 10.8038 + }, + { + "id": 321612, + "title": "Beauty and the Beast", + "originalTitle": "Beauty and the Beast", + "overview": "A live-action adaptation of Disney's version of the classic tale of a cursed prince and a beautiful young woman who helps him break the spell.", + "posterPath": "/hKegSKIDep2ewJWPUQD7u0KqFIp.jpg", + "backdropPath": "/uU1Mt4JWhDvl4vKb3AfxNsorkoM.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 10749 + ], + "genres": [ + "Family", + "Fantasy", + "Romance" + ], + "releaseDate": "2017-03-16", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.969, + "voteCount": 15833, + "popularity": 10.799 + }, + { + "id": 927, + "title": "Gremlins", + "originalTitle": "Gremlins", + "overview": "After receiving an exotic small animal as a Christmas gift, a young man inadvertently breaks three important rules concerning his new pet, which unleashes a horde of malevolently mischievous creatures on a small town.", + "posterPath": "/6m0F7fsXjQvUbCZrPWcJNrjvIui.jpg", + "backdropPath": "/5UX6M0aEphiW6Xmy5rpYX75glbo.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 35 + ], + "genres": [ + "Fantasy", + "Horror", + "Comedy" + ], + "releaseDate": "1984-06-08", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 6727, + "popularity": 10.7957 + }, + { + "id": 1249289, + "title": "Alarum", + "originalTitle": "Alarum", + "overview": "Two married spies caught in the crosshairs of an international intelligence network will stop at nothing to obtain a critical asset. Joe and Lara are agents living off the grid whose quiet retreat at a winter resort is blown to shreds when members of the old guard suspect the two may have joined an elite team of rogue spies, known as Alarum.", + "posterPath": "/ckyYZf5cGTSOwF8LWIRqeThyh18.jpg", + "backdropPath": "/qSOMdbZ6AOdHR999HWwVAh6ALFI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-01-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.688, + "voteCount": 373, + "popularity": 10.7741 + }, + { + "id": 1299209, + "title": "The Son of a Thousand Men", + "originalTitle": "O Filho de Mil Homens", + "overview": "In a small village, a lonely fisherman yearning for a son is drawn to an ethereal light that links him to others and their long-buried secrets.", + "posterPath": "/ze9sz0S1eto58QRiaA2FcIEjnIi.jpg", + "backdropPath": "/hRrOKs3bdxNvS78oFn99hQfVd5Y.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-30", + "releaseYear": "2025", + "originalLanguage": "pt", + "voteAverage": 7.167, + "voteCount": 25, + "popularity": 10.7707 + }, + { + "id": 324786, + "title": "Hacksaw Ridge", + "originalTitle": "Hacksaw Ridge", + "overview": "WWII American Army Medic Desmond T. Doss, who served during the Battle of Okinawa, refuses to kill people and becomes the first Conscientious Objector in American history to receive the Congressional Medal of Honor.", + "posterPath": "/wuz8TjCIWR2EVVMuEfBnQ1vuGS3.jpg", + "backdropPath": "/vDKRMZGFTKP9nQolzeSB1rB1w6p.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752 + ], + "genres": [ + "Drama", + "History", + "War" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.192, + "voteCount": 14437, + "popularity": 10.7675 + }, + { + "id": 1064028, + "title": "Subservience", + "originalTitle": "Subservience", + "overview": "With his wife out sick, a struggling father brings home a lifelike AI, only to have his self-aware new help want everything her new family has to offer... Like the affection of her owner and she'll kill to get it.", + "posterPath": "/gBenxR01Uy0Ev9RTIw6dVBPoyQU.jpg", + "backdropPath": "/co7oxvpWxgd6FZU24DnljDDHYQA.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27, + 53 + ], + "genres": [ + "Science Fiction", + "Horror", + "Thriller" + ], + "releaseDate": "2024-08-15", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.632, + "voteCount": 897, + "popularity": 10.7597 + }, + { + "id": 863, + "title": "Toy Story 2", + "originalTitle": "Toy Story 2", + "overview": "Andy heads off to Cowboy Camp, leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen, owner of Al's Toy Barn kidnaps Woody. Andy's toys mount a daring rescue mission, Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.", + "posterPath": "/4rbcp3ng8n1MKHjpeqW0L7Fnpzz.jpg", + "backdropPath": "/tPK1kSevALeVGPfDFv1pwyHnoJ9.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1999-10-30", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 14491, + "popularity": 10.7595 + }, + { + "id": 4951, + "title": "10 Things I Hate About You", + "originalTitle": "10 Things I Hate About You", + "overview": "On the first day at his new school, Cameron instantly falls for Bianca, the gorgeous girl of his dreams. The only problem is that Bianca is forbidden to date until her ill-tempered, completely un-dateable older sister Kat goes out, too. In an attempt to solve his problem, Cameron singles out the only guy who could possibly be a match for Kat: a mysterious bad boy with a nasty reputation of his own.", + "posterPath": "/ujERk3aKABXU3NDXOAxEQYTHe9A.jpg", + "backdropPath": "/yvPbncYhMu9FfTjDhq0N5lgnVkO.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "1999-03-30", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.59, + "voteCount": 8630, + "popularity": 10.7579 + }, + { + "id": 269955, + "title": "Obsessed", + "originalTitle": "인간중독", + "overview": "A secret, passionate affair happens in the summer of 1969 between Colonel Jin Pyeong, trapped in a loveless marriage with Soo Jin, and Jong Ga Heun, the Chinese-Korean wife of Captain Kyung Woo Jin.", + "posterPath": "/fetCtoAvZShCk1nqAWZFuKZschR.jpg", + "backdropPath": "/iGBbWXmAIgpiWg9Mx2D2gLzbg4n.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-05-14", + "releaseYear": "2014", + "originalLanguage": "ko", + "voteAverage": 6.682, + "voteCount": 77, + "popularity": 10.7426 + }, + { + "id": 10020, + "title": "Beauty and the Beast", + "originalTitle": "Beauty and the Beast", + "overview": "Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.", + "posterPath": "/hUJ0UvQ5tgE2Z9WpfuduVSdiCiU.jpg", + "backdropPath": "/fW4ZCoEZRBqLAJGFQ2g5AdAfPQR.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 10751, + 16, + 14 + ], + "genres": [ + "Romance", + "Family", + "Animation", + "Fantasy" + ], + "releaseDate": "1991-10-22", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 10388, + "popularity": 10.7253 + }, + { + "id": 558449, + "title": "Gladiator II", + "originalTitle": "Gladiator II", + "overview": "Years after witnessing the death of the revered hero Maximus at the hands of his uncle, Lucius is forced to enter the Colosseum after his home is conquered by the tyrannical Emperors who now lead Rome with an iron fist. With rage in his heart and the future of the Empire at stake, Lucius must look to his past to find strength and honor to return the glory of Rome to its people.", + "posterPath": "/2cxhvwyEwRlysAmRH4iodkvo0z5.jpg", + "backdropPath": "/euYIwmwkmz95mnXvufEmbL6ovhZ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Drama" + ], + "releaseDate": "2024-11-13", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.65, + "voteCount": 4024, + "popularity": 10.7211 + }, + { + "id": 857, + "title": "Saving Private Ryan", + "originalTitle": "Saving Private Ryan", + "overview": "As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.", + "posterPath": "/uqx37cS8cpHg8U35f9U5IBlrCV3.jpg", + "backdropPath": "/rW2xRFlJRbTnBJlQTSjQmjevIwb.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18, + 36 + ], + "genres": [ + "War", + "Drama", + "History" + ], + "releaseDate": "1998-07-24", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 8.221, + "voteCount": 16675, + "popularity": 10.7196 + }, + { + "id": 1097549, + "title": "Babygirl", + "originalTitle": "Babygirl", + "overview": "A high-powered CEO puts her career and family on the line when she begins a torrid affair with her much younger intern.", + "posterPath": "/ilwO6elz3mLV9CToT7C8pjVeKX0.jpg", + "backdropPath": "/s7vWRjcfRVMW8tBIxhC3UhKxRoo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2024-12-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.723, + "voteCount": 1013, + "popularity": 10.717 + }, + { + "id": 24, + "title": "Kill Bill: Vol. 1", + "originalTitle": "Kill Bill: Vol. 1", + "overview": "An assassin is shot by her ruthless employer, Bill, and other members of their assassination circle – but she lives to plot her vengeance.", + "posterPath": "/v7TaX8kXMXs5yFFGR41guUDNcnB.jpg", + "backdropPath": "/iffzIhuLAO38Po6sh1s6ZEVwlNL.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2003-10-10", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.97, + "voteCount": 18325, + "popularity": 10.7033 + }, + { + "id": 9470, + "title": "Kung Fu Hustle", + "originalTitle": "功夫", + "overview": "It's the 1940s, and the notorious Axe Gang terrorizes Shanghai. Small-time criminals Sing and Bone hope to join, but they only manage to make lots of very dangerous enemies. Fortunately for them, kung fu masters and hidden strength can be found in unlikely places. Now they just have to take on the entire Axe Gang.", + "posterPath": "/exbyTbrvRUDKN2mcNEuVor4VFQW.jpg", + "backdropPath": "/9XhZhoSnFJ3AjpfzdIiZVHLQIS4.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 14 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Fantasy" + ], + "releaseDate": "2004-02-10", + "releaseYear": "2004", + "originalLanguage": "cn", + "voteAverage": 7.477, + "voteCount": 3024, + "popularity": 10.6977 + }, + { + "id": 810, + "title": "Shrek the Third", + "originalTitle": "Shrek the Third", + "overview": "The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However, Shrek wants to return to his cozy swamp and live in peace and quiet, so when he finds out there is another heir to the throne, they set off to bring him back to rule the kingdom.", + "posterPath": "/n4SexGGQzI26E269tfpa80MZaGV.jpg", + "backdropPath": "/wvXxKpFGXvQJRB0nvvfURhRD3C0.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 16, + 35, + 10751 + ], + "genres": [ + "Fantasy", + "Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2007-05-17", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 9491, + "popularity": 10.6882 + }, + { + "id": 1241436, + "title": "Warfare", + "originalTitle": "Warfare", + "overview": "A platoon of Navy SEALs embarks on a dangerous mission in Ramadi, Iraq, with the chaos and brotherhood of war retold through their memories of the event.", + "posterPath": "/srj9rYrjefyWqkLc6l2xjTGeBGO.jpg", + "backdropPath": "/cJvUJEEQ86LSjl4gFLkYpdCJC96.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 28 + ], + "genres": [ + "War", + "Action" + ], + "releaseDate": "2025-04-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.12, + "voteCount": 1139, + "popularity": 10.6868 + }, + { + "id": 333339, + "title": "Ready Player One", + "originalTitle": "Ready Player One", + "overview": "When the creator of a popular video game system dies, a virtual contest is created to compete for his fortune.", + "posterPath": "/pU1ULUq8D3iRxl1fdX2lZIzdHuI.jpg", + "backdropPath": "/5a7lMDn3nAj2ByO0X1fg6BhUphR.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2018-03-28", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.585, + "voteCount": 16396, + "popularity": 10.6851 + }, + { + "id": 324857, + "title": "Spider-Man: Into the Spider-Verse", + "originalTitle": "Spider-Man: Into the Spider-Verse", + "overview": "Struggling to find his place in the world while juggling school and family, Brooklyn teenager Miles Morales is unexpectedly bitten by a radioactive spider and develops unfathomable powers just like the one and only Spider-Man. While wrestling with the implications of his new abilities, Miles discovers a super collider created by the madman Wilson \"Kingpin\" Fisk, causing others from across the Spider-Verse to be inadvertently transported to his dimension.", + "posterPath": "/iiZZdoQBEYBv6id8su7ImL0oCbD.jpg", + "backdropPath": "/8mnXR9rey5uQ08rZAvzojKWbDQS.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 12, + 878 + ], + "genres": [ + "Animation", + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2018-12-06", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.395, + "voteCount": 16633, + "popularity": 10.6563 + }, + { + "id": 1422166, + "title": "The Age of Disclosure", + "originalTitle": "The Age of Disclosure", + "overview": "Director Dan Farah got 34 senior members of the U.S. Government, military, and intelligence community to come on camera. He says they reveal an 80 year cover-up of the existence of non-human intelligent life and a secret war amongst major nations to reverse engineer technology of non-human origin. The film explores the profound impact the situation has on the future of humanity, while providing a look behind-the-scenes with those at the forefront of the bi-partisan disclosure effort.", + "posterPath": "/rVTGlKuJUeqgmznxhlpKDKClili.jpg", + "backdropPath": "/6CdrnONBaZsmoEMTn0A4S2Nj4t5.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2025-11-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 18, + "popularity": 10.6528 + }, + { + "id": 615665, + "title": "Holidate", + "originalTitle": "Holidate", + "overview": "Fed up with being single on holidays, two strangers agree to be each other's platonic plus-ones all year long, only to catch real feelings along the way.", + "posterPath": "/oXCLSlCRWWHsSSwLJSVIC0DDWsE.jpg", + "backdropPath": "/8veOfB9RbSzFki0Rq3IQIGsFfhC.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2020-10-27", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.986, + "voteCount": 2287, + "popularity": 10.6506 + }, + { + "id": 420707, + "title": "Cage Dive", + "originalTitle": "Cage Dive", + "overview": "Three friends from California are filming an audition tape for an extreme reality game show. They document their journey to Australia where they will be doing their most dangerous activity: Shark Cage Diving. A catastrophic turn of events leaves them in baited water full of Great White Sharks, turning their recording into a blood chilling diary of survival...And death.", + "posterPath": "/3uUO9eDxHeDREIX77BaQiI88ajp.jpg", + "backdropPath": "/gUebSn2HgWchRx2sUwYAXpbxCfV.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2017-08-11", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 339, + "popularity": 10.6376 + }, + { + "id": 260514, + "title": "Cars 3", + "originalTitle": "Cars 3", + "overview": "Blindsided by a new generation of blazing-fast racers, the legendary Lightning McQueen is suddenly pushed out of the sport he loves. To get back in the game, he will need the help of an eager young race technician with her own plan to win, inspiration from the late Fabulous Hudson Hornet, and a few unexpected turns. Proving that #95 isn't through yet will test the heart of a champion on Piston Cup Racing’s biggest stage!", + "posterPath": "/fyy1nDC8wm553FCiBDojkJmKLCs.jpg", + "backdropPath": "/86TlYSntBzD4pxLNM6U3GoOfGdD.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2017-06-15", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 6200, + "popularity": 10.6364 + }, + { + "id": 1328913, + "title": "Padre no hay más que uno 5: Nido repleto", + "originalTitle": "Padre no hay más que uno 5: Nido repleto", + "overview": "Some parents experience the anguish of the \"empty nest\" when their children leave home. Javier, on the other hand, suffers the trauma of the \"full nest\": no one wants to leave home.", + "posterPath": "/7H27uvaPZfq794qVcLFrSEgHseZ.jpg", + "backdropPath": "/jE9PtFwRbTr3WrlGd81SGDSJNSQ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2025-06-26", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.5, + "voteCount": 30, + "popularity": 10.6263 + }, + { + "id": 3933, + "title": "Corpse Bride", + "originalTitle": "Corpse Bride", + "overview": "In a 19th-century European village, a young man about to be married is whisked away to the underworld and wed to a mysterious corpse bride, while his real bride waits bereft in the land of the living.", + "posterPath": "/isb2Qow76GpqYmsSyfdMfsYAjts.jpg", + "backdropPath": "/v23fWgJUEt8EMmvn19btIacxP8E.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 14, + 16 + ], + "genres": [ + "Romance", + "Fantasy", + "Animation" + ], + "releaseDate": "2005-09-12", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.585, + "voteCount": 9896, + "popularity": 10.6254 + }, + { + "id": 1549292, + "title": "LEGO Frozen: Operation Puffins", + "originalTitle": "LEGO Frozen: Operation Puffins", + "overview": "After the events of Frozen, Anna and Elsa want to start fresh in Arendelle, and make the castle feel a bit more comfortable. While they struggle to break free of the bounds of tradition, the Duke of Weselton has other plans for their beloved home alongside a flock of menacing puffins.", + "posterPath": "/4gcpeI5drcUI81KbZjRLm4EAJII.jpg", + "backdropPath": "/gbAcTyVtPfzCBs58xs6NYKHiPCp.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "2025-10-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 16, + "popularity": 10.6043 + }, + { + "id": 1075794, + "title": "Leo", + "originalTitle": "Leo", + "overview": "Jaded 74-year-old lizard Leo has been stuck in the same Florida classroom for decades with his terrarium-mate turtle. When he learns he only has one year left to live, he plans to escape to experience life on the outside but instead gets caught up in the problems of his anxious students — including an impossibly mean substitute teacher.", + "posterPath": "/gSOVog7ydsaF1YpgAqBqnKYFGY.jpg", + "backdropPath": "/auXrHU6O17n9Tz11SHReoorjrU6.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2023-11-17", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.392, + "voteCount": 1285, + "popularity": 10.5968 + }, + { + "id": 1135303, + "title": "The Senior", + "originalTitle": "The Senior", + "overview": "At 59, Mike Flynt may be too old to be on a college football field, but not too old to feel the weight of unfinished business. After nearly four decades, he returns to his alma mater to take the hit that changed everything. Bruised, doubted, and nearly broken, he pushes for one more game, not for glory, but for the teammates he lost, the family he fractured, and the ending he still believes is possible.", + "posterPath": "/sv3kE86knrukjpGTtLLfg246JFx.jpg", + "backdropPath": "/hfrWfc7wLeex6vPuhaDR4lweZx2.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.219, + "voteCount": 16, + "popularity": 10.5949 + }, + { + "id": 1154215, + "title": "Elyas", + "originalTitle": "Elyas", + "overview": "Elyas, a former Special Forces soldier who has become paranoid since a mission in Afghanistan, is recruited to ensure the safety of Amina and her daughter Nour, 13 years old, both of whom came from the Middle East for the holidays. As he takes office, Elyas senses something is up.", + "posterPath": "/mXEv9qa9W03bWR8fqxrHwrqxRXf.jpg", + "backdropPath": "/b4vPyaCEP53fVDBj0HqFukICiyk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2024-07-03", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 137, + "popularity": 10.5938 + }, + { + "id": 254, + "title": "King Kong", + "originalTitle": "King Kong", + "overview": "In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with the leading lady.", + "posterPath": "/6a2HY6UmD7XiDD3NokgaBAXEsD2.jpg", + "backdropPath": "/mRM2NB0i3wv4HqxXvwIjEVi4Qqq.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 28 + ], + "genres": [ + "Adventure", + "Drama", + "Action" + ], + "releaseDate": "2005-12-12", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 8267, + "popularity": 10.5836 + }, + { + "id": 763215, + "title": "Damsel", + "originalTitle": "Damsel", + "overview": "A young woman's marriage to a charming prince turns into a fierce fight for survival when she's offered up as a sacrifice to a fire-breathing dragon.", + "posterPath": "/AgHbB9DCE9aE57zkHjSmseszh6e.jpg", + "backdropPath": "/deLWkOLZmBNkm8p16igfapQyqeq.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 12 + ], + "genres": [ + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2024-03-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.997, + "voteCount": 2603, + "popularity": 10.5788 + }, + { + "id": 40618, + "title": "Bedtime Story", + "originalTitle": "Bedtime Story", + "overview": "Benson is a Casanova who tricks women into having sex with him before leaving them. He is content with this game until he meets Jamison, a real operator who poses as an exiled prince and not only gets women to share his bed but also to give him money to help him fund his supposed counter-revolution.", + "posterPath": "/4oN375vg2eJSHZzf9kztiwnu3jP.jpg", + "backdropPath": "/AnyLcUKmEQX1qJpPKuTvzVoKv4c.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1964-06-10", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 6.226, + "voteCount": 53, + "popularity": 10.5738 + }, + { + "id": 87852, + "title": "Microwave Massacre", + "originalTitle": "Microwave Massacre", + "overview": "Construction worker Donald is having a hard time getting anything good to eat since his wife has decided to only cook gourmet foods. That and her constant harping causes him to snap, so he whacks her. Somewhere in the confusion he comes up with a new use for the microwave oven, and begins to eat much better. Soon he's experimenting with different recipes. And different meats.", + "posterPath": "/saPYOf3E92zNy6eM0aA738JN75X.jpg", + "backdropPath": "/gt8M1FhIQqnXVMoirRRSWfqQs87.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27 + ], + "genres": [ + "Comedy", + "Horror" + ], + "releaseDate": "1983-08-31", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 91, + "popularity": 10.5709 + }, + { + "id": 532639, + "title": "Pinocchio", + "originalTitle": "Pinocchio", + "overview": "A wooden puppet embarks on a thrilling adventure to become a real boy.", + "posterPath": "/zaZhjKrJeWczQ3AotKoQObppEbH.jpg", + "backdropPath": "/nnUQqlVZeEGuCRx8SaoCU4XVHJN.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 10751 + ], + "genres": [ + "Fantasy", + "Adventure", + "Family" + ], + "releaseDate": "2022-09-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.303, + "voteCount": 1688, + "popularity": 10.5441 + }, + { + "id": 645710, + "title": "The Voyeurs", + "originalTitle": "The Voyeurs", + "overview": "When Pippa and Thomas move into their dream apartment, they notice that their windows look directly into the apartment opposite – inviting them to witness the volatile relationship of the attractive couple across the street. But what starts as a simple curiosity turns into full-blown obsession with increasingly dangerous consequences.", + "posterPath": "/8Y4XOIWhpOvSOEn8XrxbkH9yAXO.jpg", + "backdropPath": "/5KGrBXvE0cYDwqfEaymvNBVspkJ.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2021-08-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.527, + "voteCount": 1086, + "popularity": 10.5351 + }, + { + "id": 13179, + "title": "Tinker Bell", + "originalTitle": "Tinker Bell", + "overview": "Journey into the secret world of Pixie Hollow and hear Tinker Bell speak for the very first time as the astonishing story of Disney's most famous fairy is finally revealed in the all-new motion picture \"Tinker Bell.\"", + "posterPath": "/3Ma0r1n8kfH7UaQMS7bJ9KsYUjT.jpg", + "backdropPath": "/maeox8nZYIxAAE4SdyLA0VOXe1x.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 14 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Fantasy" + ], + "releaseDate": "2008-09-11", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.912, + "voteCount": 1524, + "popularity": 10.5081 + }, + { + "id": 489, + "title": "Good Will Hunting", + "originalTitle": "Good Will Hunting", + "overview": "Headstrong yet aimless, Will Hunting has a genius-level IQ but chooses to work as a janitor at MIT. When he secretly solves highly difficult graduate-level math problems, his talents are discovered by Professor Gerald Lambeau, who decides to help the misguided youth reach his potential. When Will is arrested for attacking a police officer, Professor Lambeau makes a deal to get leniency for him if he gets court-ordered therapy. Eventually, therapist Dr. Sean Maguire helps Will confront the demons that are holding him back.", + "posterPath": "/z2FnLKpFi1HPO7BEJxdkv6hpJSU.jpg", + "backdropPath": "/bpV8wn48s82au37QyUJ51S7X2Vf.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1997-12-05", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8.157, + "voteCount": 13290, + "popularity": 10.5047 + }, + { + "id": 34851, + "title": "Predators", + "originalTitle": "Predators", + "overview": "A group of cold-blooded killers find themselves trapped on an alien planet to be hunted by extraterrestrial Predators.", + "posterPath": "/sx5EuckP7SBQrlMlxg0PLt282WS.jpg", + "backdropPath": "/yVSgw4UyXWg0Edl7KMehdhhgIwL.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "2010-07-07", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.296, + "voteCount": 4424, + "popularity": 10.4899 + }, + { + "id": 70196, + "title": "The Veteran", + "originalTitle": "The Veteran", + "overview": "Soldier Robert Miller returns home from Afghanistan unable to fit back into society. Living on a violent council estate and finding work in undercover surveillance, he becomes obsessed with taking down a group of local gangsters who are intrinsically tied to a suspected terrorist cell. Taking the situation into his own hands, Robert embarks on a brutal quest for justice, with devastating consequences.", + "posterPath": "/i1gSsXTWtCmNQArmIeUpAysHEmi.jpg", + "backdropPath": "/bZldcoIeFwg8A0x3VGsMjVPtv69.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2011-04-29", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.791, + "voteCount": 129, + "popularity": 10.4823 + }, + { + "id": 64641, + "title": "Monika", + "originalTitle": "La ragazzina", + "overview": "Monika is young, beautiful and a virgin. She is only 16 years old, and, beside getting the attention of all her classmates, she also attracts older men. She has a relationship with a boy, Leo, but she doesn't know that he uses to pimp the girls he seduces to rich businessmen. One of Leo's client befriends Monika and becomes so obsessed that he pays Leo to get her. But Monika turns her attention to her art professor, unknowing that he too has his secrets.", + "posterPath": "/y8Byo8Mwd1a9JwISWLYR0zVxA5.jpg", + "backdropPath": "/tbbyUOh6Jd45hDun3kLyZkCttkI.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "1974-02-28", + "releaseYear": "1974", + "originalLanguage": "it", + "voteAverage": 4.5, + "voteCount": 19, + "popularity": 10.4646 + }, + { + "id": 76341, + "title": "Mad Max: Fury Road", + "originalTitle": "Mad Max: Fury Road", + "overview": "An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order.", + "posterPath": "/hA2ple9q4qnwxp3hKVNhroipsir.jpg", + "backdropPath": "/uT895WNwm0aIJRtGizcQhrejWUo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2015-05-13", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.628, + "voteCount": 23539, + "popularity": 10.459 + }, + { + "id": 838209, + "title": "Exhuma", + "originalTitle": "파묘", + "overview": "After tracing the origin of a disturbing supernatural affliction to a wealthy family's ancestral gravesite, a team of paranormal experts relocates the remains—and soon discovers what happens to those who dare to mess with the wrong grave.", + "posterPath": "/6dasJ58GGFcC62H9KuukAryltUp.jpg", + "backdropPath": "/6EO11KoiMMG29ISaQrm2G5DCe1X.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 27, + 53 + ], + "genres": [ + "Mystery", + "Horror", + "Thriller" + ], + "releaseDate": "2024-02-22", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.538, + "voteCount": 594, + "popularity": 10.4517 + }, + { + "id": 507086, + "title": "Jurassic World Dominion", + "originalTitle": "Jurassic World Dominion", + "overview": "Four years after Isla Nublar was destroyed, dinosaurs now live—and hunt—alongside humans all over the world. This fragile balance will reshape the future and determine, once and for all, whether human beings are to remain the apex predators on a planet they now share with history's most fearsome creatures.", + "posterPath": "/jbAvCACjLf1ZG0unB2tdmx5HAf1.jpg", + "backdropPath": "/9eAn20y26wtB3aet7w9lHjuSgZ3.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2022-06-01", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.631, + "voteCount": 6748, + "popularity": 10.441 + }, + { + "id": 101, + "title": "Léon: The Professional", + "originalTitle": "Léon", + "overview": "Léon, the top hit man in New York, has earned a rep as an effective \"cleaner\". But when his next-door neighbors are wiped out by a loose-cannon DEA agent, he becomes the unwilling custodian of 12-year-old Mathilda. Before long, Mathilda's thoughts turn to revenge, and she considers following in Léon's footsteps.", + "posterPath": "/bxB2q91nKYp8JNzqE7t7TWBVupB.jpg", + "backdropPath": "/2hS80sTgsSmK0T61bd5J9YBc52k.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 28 + ], + "genres": [ + "Crime", + "Drama", + "Action" + ], + "releaseDate": "1994-09-14", + "releaseYear": "1994", + "originalLanguage": "fr", + "voteAverage": 8.299, + "voteCount": 15590, + "popularity": 10.4345 + }, + { + "id": 387848, + "title": "Buddy's Mom", + "originalTitle": "친구엄마", + "overview": "20-year-old Kyeong-soo is a man who's full of assumptions. He learned about sex from Internet porn, but nothing about the real thing. He's only had crushes and has never even kissed before. He got embarrassed when he confessed his feelings to Ji-yeon, his crush. He comforted himself from the shame with Japanese girls in his room with his right hand. One day, he has a fight with his father and remembers his friend Baek-hyeon had invited him over to Gangwon-do. There he falls in love with his friends' mother.", + "posterPath": "/5JDVEZN0v3e9xMzZbZ92fC7HaQi.jpg", + "backdropPath": "/78frwN1N9PeHQB0iXxlxbnAFL1L.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2015-11-12", + "releaseYear": "2015", + "originalLanguage": "ko", + "voteAverage": 5.7, + "voteCount": 14, + "popularity": 10.4199 + }, + { + "id": 472744, + "title": "The Gateway", + "originalTitle": "The Gateway", + "overview": "A particle physicist grieving over the loss of her husband in a car crash uses a revolutionary machine to bring him back, with dire consequences for her family.", + "posterPath": "/3Gp2lj5jnP08Sie6j0gNL3zfiSE.jpg", + "backdropPath": "/gP8zfI4SEyzg5UQiFQNxikpoUm1.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2018-05-03", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.528, + "voteCount": 53, + "popularity": 10.4086 + }, + { + "id": 1087891, + "title": "The Amateur", + "originalTitle": "The Amateur", + "overview": "After his life is turned upside down when his wife is killed in a London terrorist attack, a brilliant but introverted CIA decoder takes matters into his own hands when his supervisors refuse to take action.", + "posterPath": "/SNEoUInCa5fAgwuEBMIMBGvkkh.jpg", + "backdropPath": "/aD7FXrm2GErTmzrIFBntPyhAqS9.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2025-04-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.976, + "voteCount": 1368, + "popularity": 10.389 + }, + { + "id": 820525, + "title": "After Everything", + "originalTitle": "After Everything", + "overview": "Besieged by writer’s block and the crushing breakup with Tessa, Hardin travels to Portugal in search of a woman he wronged in the past – and to find himself. Hoping to win back Tessa, he realizes he needs to change his ways before he can make the ultimate commitment.", + "posterPath": "/uQxjZGU6rxSPSMeAJPJQlmfV3ys.jpg", + "backdropPath": "/j76bFSkkQxh66AqehhoqRljgeld.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2023-09-13", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.893, + "voteCount": 963, + "popularity": 10.3876 + }, + { + "id": 429, + "title": "The Good, the Bad and the Ugly", + "originalTitle": "Il buono, il brutto, il cattivo", + "overview": "While the Civil War rages on between the Union and the Confederacy, three men – a quiet loner, a ruthless hitman, and a Mexican bandit – comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.", + "posterPath": "/bX2xnavhMYjWDoZp1VM6VnU1xwe.jpg", + "backdropPath": "/Adrip2Jqzw56KeuV2nAxucKMNXA.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1966-12-22", + "releaseYear": "1966", + "originalLanguage": "it", + "voteAverage": 8.464, + "voteCount": 9270, + "popularity": 10.3766 + }, + { + "id": 508943, + "title": "Luca", + "originalTitle": "Luca", + "overview": "Luca and his best friend Alberto experience an unforgettable summer on the Italian Riviera. But all the fun is threatened by a deeply-held secret: they are sea monsters from another world just below the water’s surface.", + "posterPath": "/9x4i9uKGXt8IiiIF5Ey0DIoY738.jpg", + "backdropPath": "/620hnMVLu6RSZW6a5rwO8gqpt0t.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 14, + 12, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Fantasy", + "Adventure", + "Family" + ], + "releaseDate": "2021-06-17", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.791, + "voteCount": 8741, + "popularity": 10.371 + }, + { + "id": 568124, + "title": "Encanto", + "originalTitle": "Encanto", + "overview": "The tale of an extraordinary family, the Madrigals, who live hidden in the mountains of Colombia, in a magical house, in a vibrant town, in a wondrous, charmed place called an Encanto. The magic of the Encanto has blessed every child in the family—every child except one, Mirabel. But when she discovers that the magic surrounding the Encanto is in danger, Mirabel decides that she, the only ordinary Madrigal, might just be her exceptional family's last hope.", + "posterPath": "/4j0PNHkMr5ax3IA8tjtxcmPU3QT.jpg", + "backdropPath": "/3G1Q5xF40HkUBJXxt2DQgQzKTp5.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2021-10-13", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.579, + "voteCount": 9938, + "popularity": 10.3663 + }, + { + "id": 1064758, + "title": "Planet B", + "originalTitle": "Planète B", + "overview": "France, 2039. One night, a group of activists who are being pursued by the State vanish without a trace. Julia Bombarth is one of them. When she awakens, she finds herself trapped in an entirely unfamiliar world: PLANET B.", + "posterPath": "/zCi5WZbYeFkM1KsOcbSv2qd37Bf.jpg", + "backdropPath": "/ncdoorCh3P5yyaqOq0iv6nL1EYO.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2024-12-25", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 5, + "voteCount": 45, + "popularity": 10.359 + }, + { + "id": 602063, + "title": "Rurouni Kenshin: The Final", + "originalTitle": "るろうに剣心 最終章 The Final", + "overview": "In 1879, Kenshin and his allies face their strongest enemy yet: his former brother-in-law Enishi Yukishiro and his minions, who've vowed their revenge.", + "posterPath": "/7bbEASVf9XWtfxWiuWUMY3uyhTb.jpg", + "backdropPath": "/smkjSDuCRlOcOAASYTRCZG0MgUc.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 36, + 18 + ], + "genres": [ + "Action", + "Adventure", + "History", + "Drama" + ], + "releaseDate": "2021-04-23", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 522, + "popularity": 10.3577 + }, + { + "id": 293660, + "title": "Deadpool", + "originalTitle": "Deadpool", + "overview": "The origin story of former Special Forces operative turned mercenary Wade Wilson, who, after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.", + "posterPath": "/3E53WEZJqP6aM84D8CckXx4pIHw.jpg", + "backdropPath": "/rFj9IKlL75B2pXhZA60jkNWvxeW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35 + ], + "genres": [ + "Action", + "Adventure", + "Comedy" + ], + "releaseDate": "2016-02-09", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.622, + "voteCount": 32106, + "popularity": 10.3566 + }, + { + "id": 1362315, + "title": "The Hand That Rocks the Cradle", + "originalTitle": "The Hand That Rocks the Cradle", + "overview": "Suburban couple Caitlin and Miguel hire seemingly sweet Polly to take care of their newborn baby. But Polly's true motives have little to do with singing lullabies...", + "posterPath": "/uXqqFkLcMPORg3TsQbK4upozZXB.jpg", + "backdropPath": "/lK1zWi7EpBIFaGJBf0Y7jjemZe2.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-10-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.717, + "voteCount": 99, + "popularity": 10.3392 + }, + { + "id": 36557, + "title": "Casino Royale", + "originalTitle": "Casino Royale", + "overview": "Le Chiffre, a banker to the world's terrorists, is scheduled to participate in a high-stakes poker game in Montenegro, where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond—on his maiden mission as a 00 Agent—to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter, Bond enters the most important poker game in his already dangerous career.", + "posterPath": "/lMrxYKKhd4lqRzwUHAy5gcx9PSO.jpg", + "backdropPath": "/mXFmGlMCgTIOyHaGmQG1Hb6Rv2m.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 53 + ], + "genres": [ + "Adventure", + "Action", + "Thriller" + ], + "releaseDate": "2006-11-14", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.567, + "voteCount": 11288, + "popularity": 10.3382 + }, + { + "id": 949, + "title": "Heat", + "originalTitle": "Heat", + "overview": "Obsessive master thief Neil McCauley leads a top-notch crew on various daring heists throughout Los Angeles while determined detective Vincent Hanna pursues him without rest. Each man recognizes and respects the ability and the dedication of the other even though they are aware their cat-and-mouse game may end in violence.", + "posterPath": "/umSVjVdbVwtx5ryCA2QXL44Durm.jpg", + "backdropPath": "/uI22JkEMediWyiRqhllNqeeGtW0.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 28 + ], + "genres": [ + "Crime", + "Drama", + "Action" + ], + "releaseDate": "1995-12-15", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 7936, + "popularity": 10.3197 + }, + { + "id": 56168, + "title": "The Oscar", + "originalTitle": "The Oscar", + "overview": "An amoral lowlife accidentally stumbles into an acting career that sets him on a trajectory to Hollywood stardom. But everyone on whom he steps on the way to the top remembers when he is nominated for an Oscar and he runs a dirty campaign in an attempt to win.", + "posterPath": "/jLh7UvVYc5pa0MLJbFRItLN4QTO.jpg", + "backdropPath": "/3mMw1M8DIdJNirXv4P1RnuXw3a1.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1966-03-04", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 15, + "popularity": 10.3071 + }, + { + "id": 8909, + "title": "Wanted", + "originalTitle": "Wanted", + "overview": "Doormat Wesley Gibson is an office worker whose life is going nowhere. He meets an attractive woman named Fox and discovers that his recently murdered father - whom Wesley never knew - belonged to the Fraternity, a secret society of assassins which takes its orders from Fate itself. Fox and Sloan, the Fraternity's leader, teach Wesley, through intense training, to tap into dormant powers and hone his innate killing skills. Though he enjoys his newfound abilities, he begins to suspect that there is more to the Fraternity than meets the eye.", + "posterPath": "/cbDMsV4VJAL2xJ2JXdWWjmUXZkT.jpg", + "backdropPath": "/vjwuT8EzWY96W6nrJKZNI2WJU87.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2008-06-19", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 7378, + "popularity": 10.292 + }, + { + "id": 1452176, + "title": "Abraham's Boys: A Dracula Story", + "originalTitle": "Abraham's Boys: A Dracula Story", + "overview": "Max and Rudy Van Helsing have spent their lives under the strict and overprotective rule of their father, Abraham. Unaware of his dark past, they struggle to understand his paranoia and increasingly erratic behavior. But when they begin to uncover the violent truths behind their father’s history with Dracula, their world unravels, forcing them to confront the terrifying legacy they were never meant to inherit.", + "posterPath": "/owUZI7rRIN85TnXJY8gD9LdMiGU.jpg", + "backdropPath": "/b0yK9BHyTNHGS6fBFLXBFtLC9AW.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.411, + "voteCount": 28, + "popularity": 10.2918 + }, + { + "id": 582913, + "title": "The Room", + "originalTitle": "The Room", + "overview": "Kate and Matt discover that a part of their house can grant wishes. In the wake of two miscarriages, what they want most is a child.", + "posterPath": "/bWyQwZziHh1DK9F59eqahZD8Upc.jpg", + "backdropPath": "/snbRXbkzEpc35mFDlwUg41cN8aw.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 9648, + 878 + ], + "genres": [ + "Horror", + "Drama", + "Mystery", + "Science Fiction" + ], + "releaseDate": "2019-09-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.415, + "voteCount": 987, + "popularity": 10.2663 + }, + { + "id": 1426776, + "title": "STRAW", + "originalTitle": "STRAW", + "overview": "What will be her last straw? A devastatingly bad day pushes a hardworking single mother to the breaking point — and into a shocking act of desperation.", + "posterPath": "/t3cmnXYtxJb9vVL1ThvT2CWSe1n.jpg", + "backdropPath": "/fnbWrDx8w8Reau4F1tFqoGuGmDZ.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 80 + ], + "genres": [ + "Thriller", + "Drama", + "Crime" + ], + "releaseDate": "2025-06-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.803, + "voteCount": 873, + "popularity": 10.2649 + }, + { + "id": 519465, + "title": "Queen of Hearts", + "originalTitle": "Dronningen", + "overview": "Anne, a brilliant and dedicated advocacy lawyer specialising in society’s most vulnerable, children and young adults, lives what appears to be the picture-perfect life with her doctor-husband, Peter, and their twin daughters. When her estranged teenage stepson, Gustav, moves in with them, Anne’s escalating desire leads her down a dangerous rabbit hole which, once exposed, unleashes a sequence of events destined to destroy her world.", + "posterPath": "/dfFVDIgovEfQZn53VRKLV2JQnRJ.jpg", + "backdropPath": "/e5lxpaVyazQX723A3svR17WxckP.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-03-27", + "releaseYear": "2019", + "originalLanguage": "da", + "voteAverage": 6.878, + "voteCount": 345, + "popularity": 10.2638 + }, + { + "id": 335983, + "title": "Venom", + "originalTitle": "Venom", + "overview": "Investigative journalist Eddie Brock attempts a comeback following a scandal, but accidentally becomes the host of Venom, a violent, super powerful alien symbiote. Soon, he must rely on his newfound powers to protect the world from a shadowy organization looking for a symbiote of their own.", + "posterPath": "/2uNW4WbgBXL25BAbXGLnLqX71Sw.jpg", + "backdropPath": "/hNsYUryiwxcdeTMkaBcPF3iEg0p.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "2018-09-28", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.827, + "voteCount": 16861, + "popularity": 10.257 + }, + { + "id": 9016, + "title": "Treasure Planet", + "originalTitle": "Treasure Planet", + "overview": "When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic \"loot of a thousand worlds,\" a cyborg cook named John Silver teaches him to battle supernovas and space storms on their journey to find treasure.", + "posterPath": "/zMKatZ0c0NCoKzfizaCzVUcbKMf.jpg", + "backdropPath": "/30XLt1HzwOsdciWVaYVxlJq3cjH.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 16, + 10751, + 14 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "2002-11-26", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 4456, + "popularity": 10.2569 + }, + { + "id": 10995, + "title": "The Lover", + "originalTitle": "L'Amant", + "overview": "A poor French teenage girl engages in an illicit affair with a wealthy Chinese heir in 1920s Saigon. For the first time in her young life she has control, and she wields it deftly over her besotted lover throughout a series of clandestine meetings and torrid encounters.", + "posterPath": "/lgBGy8QaIFD9jQJWgi837czobEp.jpg", + "backdropPath": "/zHIOC4LMMGJaaw2nLfy6uLv0dMp.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1992-01-22", + "releaseYear": "1992", + "originalLanguage": "fr", + "voteAverage": 7, + "voteCount": 731, + "popularity": 10.2324 + }, + { + "id": 512195, + "title": "Red Notice", + "originalTitle": "Red Notice", + "overview": "An Interpol-issued Red Notice is a global alert to hunt and capture the world's most wanted. But when a daring heist brings together the FBI's top profiler and two rival criminals, there's no telling what will happen.", + "posterPath": "/lAXONuqg41NwUMuzMiFvicDET9Y.jpg", + "backdropPath": "/p34WRcgkN2QIHcds5FtFiSpV3PC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2021-11-04", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.752, + "voteCount": 6188, + "popularity": 10.2257 + }, + { + "id": 49521, + "title": "Man of Steel", + "originalTitle": "Man of Steel", + "overview": "A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.", + "posterPath": "/dksTL9NXc3GqPBRHYHcy1aIwjS.jpg", + "backdropPath": "/69EFgWWPFWbRNHmQgYdSnyJ94Ge.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2013-06-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 15790, + "popularity": 10.2174 + }, + { + "id": 1389, + "title": "Out of Sight", + "originalTitle": "Out of Sight", + "overview": "Meet Jack Foley, a smooth criminal who bends the law and is determined to make one last heist. Karen Sisco is a federal marshal who chooses all the right moves … and all the wrong guys. Now they're willing to risk it all to find out if there's more between them than just the law.", + "posterPath": "/v49q7AMR3pB4M762woWB1NYMCLF.jpg", + "backdropPath": "/fsUaDSKP9Vl1tewpUUnKsBOiOfR.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 80 + ], + "genres": [ + "Romance", + "Comedy", + "Crime" + ], + "releaseDate": "1998-06-26", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.676, + "voteCount": 1346, + "popularity": 10.2137 + }, + { + "id": 1307078, + "title": "My Oxford Year", + "originalTitle": "My Oxford Year", + "overview": "An ambitious American fulfilling her dream of studying at Oxford falls for a charming Brit hiding a secret that may upend her perfectly planned life.", + "posterPath": "/jrhXbIOFingzdLjkccjg9vZnqIp.jpg", + "backdropPath": "/A466i5iATrpbVjX30clP1Zyfp31.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 18 + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ], + "releaseDate": "2025-07-31", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.033, + "voteCount": 485, + "popularity": 10.203 + }, + { + "id": 10681, + "title": "WALL·E", + "originalTitle": "WALL·E", + "overview": "What if mankind had to leave Earth and somebody forgot to turn the last robot off? After hundreds of years doing what he was built for, WALL•E discovers a new purpose in life when he meets a sleek search robot named EVE. EVE comes to realize that WALL•E has inadvertently stumbled upon the key to the planet's future, and races back to space to report to the humans. Meanwhile, WALL•E chases EVE across the galaxy and sets into motion one of the most imaginative adventures ever brought to the big screen.", + "posterPath": "/hbhFnRzzg6ZDmm8YAmxBnQpQIPh.jpg", + "backdropPath": "/ai2FicMUxLCurVkjtYdSvVDWRmS.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 878 + ], + "genres": [ + "Animation", + "Family", + "Science Fiction" + ], + "releaseDate": "2008-06-22", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.104, + "voteCount": 19688, + "popularity": 10.2027 + }, + { + "id": 114, + "title": "Pretty Woman", + "originalTitle": "Pretty Woman", + "overview": "While on a business trip in Los Angeles, Edward Lewis, a millionaire entrepreneur who makes a living buying and breaking up companies, picks up a prostitute, Vivian, while asking for directions; after, Edward hires Vivian to stay with him for the weekend to accompany him to a few social events, and the two get closer only to discover there are significant hurdles to overcome as they try to bridge the gap between their very different worlds.", + "posterPath": "/hVHUfT801LQATGd26VPzhorIYza.jpg", + "backdropPath": "/sGEqHTylawwS6hwKultk1mKUjdB.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "1990-03-23", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.461, + "voteCount": 8704, + "popularity": 10.1973 + }, + { + "id": 660719, + "title": "Our Men", + "originalTitle": "Mon légionnaire", + "overview": "They come from all over the world but they have one thing in common : The Foreign Legion, their new family. Our Men tells these stories : stories of women who struggle to keep their love fire burning; stories of men who leave for battle; stories of loving couples on hostile ground.", + "posterPath": "/9haRIN4J2yfApPPtfrYQ0uk0AIO.jpg", + "backdropPath": "/sIF7qP7YF5oRc0J6PvNxsauqCT7.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-10-06", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 5, + "voteCount": 33, + "popularity": 10.1972 + }, + { + "id": 810693, + "title": "Jujutsu Kaisen 0", + "originalTitle": "劇場版 呪術廻戦 0", + "overview": "Yuta Okkotsu is a nervous high school student who is suffering from a serious problem—his childhood friend Rika has turned into a curse and won't leave him alone. Since Rika is no ordinary curse, his plight is noticed by Satoru Gojo, a teacher at Jujutsu High, a school where fledgling exorcists learn how to combat curses. Gojo convinces Yuta to enroll, but can he learn enough in time to confront the curse that haunts him?", + "posterPath": "/23oJaeBh0FDk2mQ2P240PU9Xxfh.jpg", + "backdropPath": "/rcEDPOOOUTLFxLLQJggfLffbofe.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14 + ], + "genres": [ + "Animation", + "Action", + "Fantasy" + ], + "releaseDate": "2021-12-24", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.123, + "voteCount": 1584, + "popularity": 10.1925 + }, + { + "id": 57158, + "title": "The Hobbit: The Desolation of Smaug", + "originalTitle": "The Hobbit: The Desolation of Smaug", + "overview": "The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.", + "posterPath": "/xQYiXsheRCDBA39DOrmaw1aSpbk.jpg", + "backdropPath": "/hwPnxzIgQFfXl5zP0Yh8bViCMzf.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 28 + ], + "genres": [ + "Fantasy", + "Adventure", + "Action" + ], + "releaseDate": "2013-12-11", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.574, + "voteCount": 13771, + "popularity": 10.1906 + }, + { + "id": 4638, + "title": "Hot Fuzz", + "originalTitle": "Hot Fuzz", + "overview": "Former London constable Nicholas Angel finds it difficult to adapt to his new assignment in the sleepy British village of Sandford. Not only does he miss the excitement of the big city, but he also has a well-meaning oaf for a partner. However, when a series of grisly accidents rocks Sandford, Angel smells something rotten in the idyllic village.", + "posterPath": "/4Br5qhGrfIxlJmlnR2qfCRYioqq.jpg", + "backdropPath": "/9rMSCFH9zhv1vILpEZQlUJs9iUm.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 35 + ], + "genres": [ + "Crime", + "Action", + "Comedy" + ], + "releaseDate": "2007-02-14", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.562, + "voteCount": 8019, + "popularity": 10.1841 + }, + { + "id": 16548, + "title": "Ellie Parker", + "originalTitle": "Ellie Parker", + "overview": "Ellie Parker, an aspiring actress from Australia, lives a hectic Hollywood lifestyle, perpetually trying to land the role that will elevate her career. Living with her lothario musician boyfriend, Justin, Ellie is far from happy, finding support primarily from her friend Sam. But when Ellie meets Chris after a minor traffic accident, she sees new potential for both romance and her life in general.", + "posterPath": "/vEmoWFzLb6YC90SpfOOCFypmc9d.jpg", + "backdropPath": "/gSwDopY51isbvUEeQrsum5LLPPe.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2005-01-21", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 70, + "popularity": 10.1801 + }, + { + "id": 817959, + "title": "Lovely Boy", + "originalTitle": "Lovely Boy", + "overview": "Nic, also called \"Lovely Boy\", is the rising star of the roman suburbs. Tattoos and pure talent, he creates the XXG with his friend Borneo, a music duo that is headed straight to the top. Nic is then sucked into a spiral of self-destruction, which will lead him to a breaking point: he will soon have to deal with himself.", + "posterPath": "/h3pNP2dtWZr9nAsA8brXSIQDMlo.jpg", + "backdropPath": "/z3TD5ClBCdcVVsxdsvphSY5GTYQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "2021-09-10", + "releaseYear": "2021", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 46, + "popularity": 10.1777 + }, + { + "id": 593643, + "title": "The Menu", + "originalTitle": "The Menu", + "overview": "A young couple travels to a remote island to eat at an exclusive restaurant where the chef has prepared a lavish menu, with some shocking surprises.", + "posterPath": "/fPtUgMcLIboqlTlPrq0bQpKK8eq.jpg", + "backdropPath": "/mSyQoValhBsJdq3JNGXJww2Q5yL.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27, + 53 + ], + "genres": [ + "Comedy", + "Horror", + "Thriller" + ], + "releaseDate": "2022-11-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.171, + "voteCount": 5739, + "popularity": 10.1771 + }, + { + "id": 2330, + "title": "Taxi", + "originalTitle": "Taxi", + "overview": "In Marseilles a skilled pizza delivery boy Daniel who drives a scooter finally has his dreams come true. He gets a taxi license. Caught by the police for a huge speed infraction, he will help Emilien, a loser inspector who can't drive, on the track of German bank robbers, so he doesn't lose his license and his dream job.", + "posterPath": "/egBxj3ude84theXc3cLbBHrWOkQ.jpg", + "backdropPath": "/nmGgqRzbb0OHJloknzlorUzUVQo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 12 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Adventure" + ], + "releaseDate": "1998-04-08", + "releaseYear": "1998", + "originalLanguage": "fr", + "voteAverage": 6.71, + "voteCount": 2613, + "popularity": 10.1742 + }, + { + "id": 209112, + "title": "Batman v Superman: Dawn of Justice", + "originalTitle": "Batman v Superman: Dawn of Justice", + "overview": "Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.", + "posterPath": "/5UsK3grJvtQrtzEgqNlDljJW96w.jpg", + "backdropPath": "/5fX1oSGuYdKgwWmUTAN5MNSQGzr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2016-03-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 18611, + "popularity": 10.1719 + }, + { + "id": 791568, + "title": "Settlers", + "originalTitle": "Settlers", + "overview": "Remmy and her parents, refugees from Earth, have found peace on the Martian outskirts until strangers appear in the hills beyond their farm. Told as a triptych, the film follows Remmy as she struggles to survive in an uneasy landscape.", + "posterPath": "/tBUYDwiJVDcnjPneOitVetJk2Rt.jpg", + "backdropPath": "/uMClfgmBx89A3Exd83bpyhQHGcL.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 18 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Drama" + ], + "releaseDate": "2021-07-23", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 159, + "popularity": 10.1668 + }, + { + "id": 1124620, + "title": "The Monkey", + "originalTitle": "The Monkey", + "overview": "When twin brothers find a mysterious wind-up monkey, a series of outrageous deaths tear their family apart. Twenty-five years later, the monkey begins a new killing spree forcing the estranged brothers to confront the cursed toy.", + "posterPath": "/yYa8Onk9ow7ukcnfp2QWVvjWYel.jpg", + "backdropPath": "/pp5VyGrGnpHxuQEtb1JOpGDcRO3.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2025-02-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.995, + "voteCount": 1114, + "popularity": 10.1621 + }, + { + "id": 1017163, + "title": "The Roundup: Punishment", + "originalTitle": "범죄도시 4", + "overview": "'Monster Cop' Ma Seok-do investigates an illegal online gambling business led by a former STS Baek and an IT genius CEO Chang. Ma proposes an unexpected alliance to Jang and begins hunting down the criminals.", + "posterPath": "/yk38mNoJpsswmk9o7i7eLhO4mc.jpg", + "backdropPath": "/mO9oOVXM8tTlC11VFM4FBBNnL3f.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53, + 35 + ], + "genres": [ + "Action", + "Crime", + "Thriller", + "Comedy" + ], + "releaseDate": "2024-04-24", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.09, + "voteCount": 205, + "popularity": 10.1525 + }, + { + "id": 23827, + "title": "Paranormal Activity", + "originalTitle": "Paranormal Activity", + "overview": "After a young, middle-class couple moves into what seems like a typical suburban house, they become increasingly disturbed by a presence that may or may not be demonic but is certainly the most active in the middle of the night.", + "posterPath": "/tmclkEpjeo4Zu564gf3KrwIOuKw.jpg", + "backdropPath": "/wfCdJ0MD1hYJzlaHulolNw5pYtR.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2007-09-14", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.036, + "voteCount": 5275, + "popularity": 10.1458 + }, + { + "id": 1246369, + "title": "Samurai Fury", + "originalTitle": "室町無頼", + "overview": "Set in war-torn 15th century Kyoto, on the eve of the Onin War, the movie centers on a band of outlaws led by Hyoe, a scoundrel whose lethal sword skills place him at the tip of the spear in a deadly uprising against the corrupt Shogunate and its army, led by former friend-turned-archrival Doken.", + "posterPath": "/apthwI5WmRT3cpiMg9sppEJ0PsN.jpg", + "backdropPath": "/iHHWF01W2vNpjI8UzWh2F7tJEZp.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2025-01-17", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 19, + "popularity": 10.1455 + }, + { + "id": 1417, + "title": "Pan's Labyrinth", + "originalTitle": "El laberinto del fauno", + "overview": "In post–civil war Spain, 10-year-old Ofelia moves with her pregnant mother to live under the control of her cruel stepfather. Drawn into a mysterious labyrinth, she meets a faun who reveals that she may be a lost princess from an underground kingdom. To return to her true father, she must complete a series of surreal and perilous tasks that blur the line between reality and fantasy.", + "posterPath": "/z7xXihu5wHuSMWymq5VAulPVuvg.jpg", + "backdropPath": "/6G6nqSW9S7EHA9HrYl0Z8uo2H7f.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 10752 + ], + "genres": [ + "Fantasy", + "Drama", + "War" + ], + "releaseDate": "2006-10-11", + "releaseYear": "2006", + "originalLanguage": "es", + "voteAverage": 7.758, + "voteCount": 11130, + "popularity": 10.1429 + }, + { + "id": 81188, + "title": "Rise of the Guardians", + "originalTitle": "Rise of the Guardians", + "overview": "When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.", + "posterPath": "/sW4qOa9yF0Ikg7lppncQ0n5UhKX.jpg", + "backdropPath": "/sDPk862OKB0Ckkvebo4M2k5AKly.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 28, + 12 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2012-11-21", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 6965, + "popularity": 10.1316 + }, + { + "id": 842924, + "title": "The Life of Chuck", + "originalTitle": "The Life of Chuck", + "overview": "In this extraordinary story of an ordinary man, Charles 'Chuck' Krantz experiences the wonder of love, the heartbreak of loss, and the multitudes contained in all of us.", + "posterPath": "/oumprkO9bThExP8NwxBIBnvBu2v.jpg", + "backdropPath": "/6e2yeFZgtD7RKpUYEOjj5v7oAUz.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18 + ], + "genres": [ + "Fantasy", + "Drama" + ], + "releaseDate": "2025-06-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.342, + "voteCount": 577, + "popularity": 10.1307 + }, + { + "id": 1111873, + "title": "Abigail", + "originalTitle": "Abigail", + "overview": "A group of criminals kidnap a teenage ballet dancer, the daughter of a notorious gang leader, in order to obtain a ransom of $50 million, but over time, they discover that she is not just an ordinary girl. After the kidnappers begin to diminish, one by one, they discover, to their increasing horror, that they are locked inside with no normal little girl.", + "posterPath": "/5gKKSoD3iezjoL7YqZONjmyAiRA.jpg", + "backdropPath": "/2TPoqmatGDfBOiRxqNoL11ncCJe.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 80 + ], + "genres": [ + "Horror", + "Thriller", + "Crime" + ], + "releaseDate": "2024-04-16", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.715, + "voteCount": 1804, + "popularity": 10.1298 + }, + { + "id": 12208, + "title": "Casino Royale", + "originalTitle": "Casino Royale", + "overview": "Sir James Bond is called back out of retirement to stop SMERSH. In order to trick SMERSH, James thinks up the ultimate plan - that every agent will be named 'James Bond'. One of the Bonds, whose real name is Evelyn Tremble is sent to take on Le Chiffre in a game of baccarat, but all the Bonds get more than they can handle.", + "posterPath": "/9wdw5H018bgIM8bK2HuDvh8BwOh.jpg", + "backdropPath": "/3C8FqRRV9dbODt2qMBSjl3YxiLD.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 35 + ], + "genres": [ + "Adventure", + "Action", + "Comedy" + ], + "releaseDate": "1967-04-13", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 5.252, + "voteCount": 784, + "popularity": 10.1239 + }, + { + "id": 11220, + "title": "Fallen Angels", + "originalTitle": "墮落天使", + "overview": "An assassin goes through obstacles as he attempts to escape his violent lifestyle despite the opposition of his partner, who is secretly attracted to him.", + "posterPath": "/yyM9BPdwttK5LKZSLvHae7QPKo1.jpg", + "backdropPath": "/v4FepSc09TsRy2fQtUg6vvzrTq0.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10749, + 80 + ], + "genres": [ + "Action", + "Romance", + "Crime" + ], + "releaseDate": "1995-09-06", + "releaseYear": "1995", + "originalLanguage": "cn", + "voteAverage": 7.659, + "voteCount": 1208, + "popularity": 10.1229 + }, + { + "id": 1084736, + "title": "The Count of Monte Cristo", + "originalTitle": "Le Comte de Monte-Cristo", + "overview": "Edmond Dantès becomes the target of a sinister plot and is arrested on his wedding day for a crime he did not commit. After 14 years in the island prison of Château d’If, he manages a daring escape. Now rich beyond his dreams, he assumes the identity of the Count of Monte-Cristo and exacts his revenge on the three men who betrayed him.", + "posterPath": "/sAT1P3FGhtJ68anUyJScnMu8t1l.jpg", + "backdropPath": "/bxT8jFcWNuWK5LmVo1oGhAm4dnZ.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 18 + ], + "genres": [ + "Adventure", + "Action", + "Drama" + ], + "releaseDate": "2024-06-28", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 8, + "voteCount": 1836, + "popularity": 10.122 + }, + { + "id": 929590, + "title": "Civil War", + "originalTitle": "Civil War", + "overview": "In the near future, a group of war journalists attempt to survive while reporting the truth as the United States stands on the brink of civil war.", + "posterPath": "/sh7Rg8Er3tFcN9BpKIPOMvALgZd.jpg", + "backdropPath": "/en3GU5uGkKaYmSyetHV4csHHiH3.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 28, + 18 + ], + "genres": [ + "War", + "Action", + "Drama" + ], + "releaseDate": "2024-04-10", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.852, + "voteCount": 3948, + "popularity": 10.1209 + }, + { + "id": 21382, + "title": "The Snake", + "originalTitle": "Le serpent", + "overview": "A ruthless gang led by private detective Joseph Plender is extorting rich people and famous fashion photographer Vincent Mandel seems the next victim. He is married to Hélène, daughter of one of the richest people in Europe, but not quite happily. In fact the marriage is on the brink of a divorce and a judge is deciding who will take the two children. Can Hélène take them to Germany or will they stay with Vincent? Vincent has a lot on his mind and he improvises when model Sofia Kippiani comes to his studio, but his makeup crew doesn't show up. Before he knows it, he is accused of a rape. Things go worse and worse for Vincent, he sees his entire life slipping away and, most importantly, he might lose his children. But why does his former schoolmate Joseph Plender seek contact with Vincent and even solve a nasty problem for him? Does Plender want something more than money?", + "posterPath": "/5nG8gVE1GmMdltOL4gHKlCWDXNc.jpg", + "backdropPath": "/lLzq1cBN3Q86xLLdlwGSPMMC8yq.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2006-10-21", + "releaseYear": "2006", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 91, + "popularity": 10.1137 + }, + { + "id": 9753, + "title": "Three", + "originalTitle": "Three", + "overview": "After a yachting accident, a millionaire and his wife are shipwrecked on a desert island along with their former deckhand, Manuel.", + "posterPath": "/v45dAZ1vI4NUqcYcLUmGVXHGYFj.jpg", + "backdropPath": "/j2CyAwoBsumow7KvlQdLwGZmJv3.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 53 + ], + "genres": [ + "Adventure", + "Drama", + "Thriller" + ], + "releaseDate": "2005-11-16", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.561, + "voteCount": 270, + "popularity": 10.1101 + }, + { + "id": 1734, + "title": "The Mummy Returns", + "originalTitle": "The Mummy Returns", + "overview": "Rick and Evelyn O’Connell, along with their 8-year-old son Alex, discover the key to the legendary Scorpion King’s might: the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn’t above kidnapping its new bearer, Alex, to gain control of Anubis’s otherworldly army.", + "posterPath": "/kdJsW7hcy1lrj7tdMPycTAQPAiR.jpg", + "backdropPath": "/7s7WkAFPBsMTprYMbqbgKoppQsR.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 14 + ], + "genres": [ + "Adventure", + "Action", + "Fantasy" + ], + "releaseDate": "2001-05-04", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.387, + "voteCount": 7407, + "popularity": 10.104 + }, + { + "id": 34862, + "title": "Solar Attack", + "originalTitle": "Solar Strike", + "overview": "When the sun's increasing expulsions of plasma threaten to ignite methane in our atmosphere, international tensions rise while scientists race for a solution to avoid natural disaster.", + "posterPath": "/dL5hDlxU8BLf1oVdnl9Llb2uoI.jpg", + "backdropPath": "/r6Sh5HNF1nJkhzYBYT88RUQ7GVR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53, + 10770 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller", + "TV Movie" + ], + "releaseDate": "2006-05-25", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 44, + "popularity": 10.1035 + }, + { + "id": 926393, + "title": "The Equalizer 3", + "originalTitle": "The Equalizer 3", + "overview": "Robert McCall finds himself at home in Southern Italy but he discovers his friends are under the control of local crime bosses. As events turn deadly, McCall knows what he has to do: become his friends' protector by taking on the mafia.", + "posterPath": "/b0Ej6fnXAP8fK75hlyi2jKqdhHz.jpg", + "backdropPath": "/tC78Pck2YCsUAtEdZwuHYUFYtOj.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2023-08-30", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.295, + "voteCount": 3484, + "popularity": 10.0871 + }, + { + "id": 9072, + "title": "Little Man", + "originalTitle": "Little Man", + "overview": "After leaving the prison, the dwarf criminal Calvin Sims joins to his moron brother Percy to steal an expensive huge diamond in a jewelry for the mobster Walken. They are chased by the police, and Calvin hides the stone in the purse of the executive Vanessa Edwards, whose husband Darryl Edwards wants to have a baby. Percy convinces Calvin to dress like a baby and be left in front of the Edwards's house to get inside the house and retrieve the diamond. Darryl and Vanessa keep Calvin for the weekend and decide to adopt him, while Walken threatens Darryl to get the stone back.", + "posterPath": "/9KzPw1VN0pMBnq1KIqBaLI8LAB7.jpg", + "backdropPath": "/cpd1CcHwgjQMkACDC9R5LtQcGXK.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2006-08-31", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.926, + "voteCount": 1838, + "popularity": 10.0836 + }, + { + "id": 1495, + "title": "Kingdom of Heaven", + "originalTitle": "Kingdom of Heaven", + "overview": "After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades.", + "posterPath": "/rNaBe4TwbMef71sgscqabpGKsxh.jpg", + "backdropPath": "/kP8rK9dGS1pr0HrnmXfIi2heWjo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 12, + 36, + 10752 + ], + "genres": [ + "Drama", + "Action", + "Adventure", + "History", + "War" + ], + "releaseDate": "2005-05-03", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.004, + "voteCount": 4682, + "popularity": 10.0793 + }, + { + "id": 460059, + "title": "Burn Out", + "originalTitle": "Burn Out", + "overview": "Tony, a promising young motorcycle racer, is forced to do perilous drug runs to save the mother of his child from a dangerous mobster.", + "posterPath": "/3LeFOvzjZuIC7cQiXDeSIy1ym7a.jpg", + "backdropPath": "/JYyQPEd22hldQLIaNLZI5oFvmM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2018-01-03", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 6.717, + "voteCount": 445, + "popularity": 10.0717 + }, + { + "id": 1149167, + "title": "High Rollers", + "originalTitle": "High Rollers", + "overview": "A master thief must pull off a dangerous casino heist when his nemesis kidnaps his lover. Caught between rival criminals and FBI pursuit, he risks all to save her and score big.", + "posterPath": "/hHowAaChDjwueySmwVbsjHmpWa.jpg", + "backdropPath": "/me3SisKfnxwBP69aOVKAVMw9vDM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-03-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.407, + "voteCount": 75, + "popularity": 10.0709 + }, + { + "id": 713704, + "title": "Evil Dead Rise", + "originalTitle": "Evil Dead Rise", + "overview": "A reunion between two estranged sisters gets cut short by the rise of flesh-possessing demons, thrusting them into a primal battle for survival as they face the most nightmarish version of family imaginable.", + "posterPath": "/5ik4ATKmNtmJU6AYD0bLm56BCVM.jpg", + "backdropPath": "/7bWxAsNPv9CXHOhZbJVlj2KxgfP.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2023-04-12", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.919, + "voteCount": 3449, + "popularity": 10.0612 + }, + { + "id": 868759, + "title": "Ghosted", + "originalTitle": "Ghosted", + "overview": "Salt-of-the-earth Cole falls head over heels for enigmatic Sadie—but then makes the shocking discovery that she's a secret agent. Before they can decide on a second date, Cole and Sadie are swept away on an international adventure to save the world.", + "posterPath": "/liLN69YgoovHVgmlHJ876PKi5Yi.jpg", + "backdropPath": "/pp3QUzMXfP7q0ocmE1b15FH6PQ6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 10749 + ], + "genres": [ + "Action", + "Comedy", + "Romance" + ], + "releaseDate": "2023-04-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 2054, + "popularity": 10.0341 + }, + { + "id": 72105, + "title": "Ted", + "originalTitle": "Ted", + "overview": "John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.", + "posterPath": "/tZPTcdGTpxq4yJx1YxqBl0gthNz.jpg", + "backdropPath": "/hkAVgWvAMmM8tj9CDEvGqMdNQBE.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2012-06-29", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.448, + "voteCount": 12851, + "popularity": 10.0335 + }, + { + "id": 4348, + "title": "Pride & Prejudice", + "originalTitle": "Pride & Prejudice", + "overview": "A story of love and life among the landed English gentry during the Georgian era. Mr. Bennet is a gentleman living in Hertfordshire with his overbearing wife and five daughters, but if he dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependent on the daughters making good marriages.", + "posterPath": "/v5gShop7147X33ytbcC2u05KDuc.jpg", + "backdropPath": "/x4OYcZVHggyZHOrvkCo2HH9kLkF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2005-09-16", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.058, + "voteCount": 8491, + "popularity": 10.0335 + }, + { + "id": 380, + "title": "Rain Man", + "originalTitle": "Rain Man", + "overview": "When car dealer Charlie Babbitt learns that his estranged father has died, he returns home to Cincinnati, where he discovers that he has a savant older brother named Raymond and that his father's $3 million fortune is being left to the mental institution in which Raymond lives. Motivated by his father's money, Charlie checks Raymond out of the facility in order to return with him to Los Angeles. The brothers' cross-country trip ends up changing both their lives.", + "posterPath": "/iTNHwO896WKkaoPtpMMS74d8VNi.jpg", + "backdropPath": "/mrfbeWcjgSaZ9NEb0xJMR9xzSeB.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1988-12-12", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.752, + "voteCount": 6780, + "popularity": 10.0263 + }, + { + "id": 1028248, + "title": "As Good as Dead", + "originalTitle": "As Good as Dead", + "overview": "An ex-cop in self-imposed witness protection in Mexico becomes a target when a fight video of his apprentice goes viral.", + "posterPath": "/qqQPxxRQqfLrq0ubfDQCwhJHZ91.jpg", + "backdropPath": "/or8y8JFF0vR3N9ap0Vdhf9tfTxQ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2022-12-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.177, + "voteCount": 82, + "popularity": 10.0189 + }, + { + "id": 1585, + "title": "It's a Wonderful Life", + "originalTitle": "It's a Wonderful Life", + "overview": "A holiday favourite for generations... George Bailey has spent his entire life giving to the people of Bedford Falls. All that prevents rich skinflint Mr. Potter from taking over the entire town is George's modest building and loan company. But on Christmas Eve the business's $8,000 is lost and George's troubles begin.", + "posterPath": "/mV3VcmMJN6Zwahj42dy9WwPUyRI.jpg", + "backdropPath": "/3q35nBLCIdEbxYfsr7D5ocYQXKz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751, + 14 + ], + "genres": [ + "Drama", + "Family", + "Fantasy" + ], + "releaseDate": "1946-12-20", + "releaseYear": "1946", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 4658, + "popularity": 10.0118 + }, + { + "id": 614933, + "title": "Atlas", + "originalTitle": "Atlas", + "overview": "A brilliant counterterrorism analyst with a deep distrust of AI discovers it might be her only hope when a mission to capture a renegade robot goes awry.", + "posterPath": "/bcM2Tl5HlsvPBnL8DKP9Ie6vU4r.jpg", + "backdropPath": "/3TNSoa0UHGEzEz5ndXGjJVKo8RJ.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "2024-05-23", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.702, + "voteCount": 1465, + "popularity": 9.9987 + }, + { + "id": 757725, + "title": "Shadow Force", + "originalTitle": "Shadow Force", + "overview": "Kyrah and Isaac were once the leaders of a multinational special forces group called Shadow Force. They broke the rules by falling in love, and in order to protect their son, they go underground. With a large bounty on their heads, and the vengeful Shadow Force hot on their trail, one family's fight becomes all-out war.", + "posterPath": "/9LCpHFXZgkqp2AWiYq0mGbfZauk.jpg", + "backdropPath": "/lBsbWXGn9maPKGhN3fozTU3BH0r.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-05-01", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.356, + "voteCount": 216, + "popularity": 9.9939 + }, + { + "id": 866038, + "title": "Apache Junction", + "originalTitle": "Apache Junction", + "overview": "Apache Junction is an outpost of lawlessness, a haven for thieves and cold-blooded killers. After big-city reporter Annabelle Angel arrives to write an article on the town, she becomes a target when notorious gunslinger Jericho Ford comes to her aid. Now Annabelle must entrust her future to a man with a deadly past, as Jericho heads toward a tense showdown.", + "posterPath": "/sYkElIUzn9NkVFufpc2oSQlfVsS.jpg", + "backdropPath": "/7ilCXSp96klDNuTPj94QNmvqNOT.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 28, + 80 + ], + "genres": [ + "Western", + "Action", + "Crime" + ], + "releaseDate": "2021-09-24", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 176, + "popularity": 9.9919 + }, + { + "id": 9902, + "title": "Wrong Turn", + "originalTitle": "Wrong Turn", + "overview": "Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.", + "posterPath": "/7lyxwOg7SdGff79yKCQmJ3AKWSf.jpg", + "backdropPath": "/ea0AQV7dE2fj7MNJUQispY2sgA8.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2003-05-30", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.372, + "voteCount": 2883, + "popularity": 9.9881 + }, + { + "id": 949423, + "title": "Pearl", + "originalTitle": "Pearl", + "overview": "Trapped on her family’s isolated farm, Pearl must tend to her ailing father under the bitter and overbearing watch of her devout mother. Lusting for a glamorous life like she’s seen in the movies, Pearl’s ambitions, temptations, and repressions collide.", + "posterPath": "/z5uIG81pXyHKg7cUFIu84Wjn4NS.jpg", + "backdropPath": "/8rmx3Wh6fQdSL2nzTmdFn9thcK8.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2022-09-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 2393, + "popularity": 9.9776 + }, + { + "id": 102382, + "title": "The Amazing Spider-Man 2", + "originalTitle": "The Amazing Spider-Man 2", + "overview": "For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen’s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.", + "posterPath": "/dGjoPttcbKR5VWg1jQuNFB247KL.jpg", + "backdropPath": "/k0hlAzTryCYX1O1LyC6P8tAa8s0.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2014-04-16", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.525, + "voteCount": 13845, + "popularity": 9.963 + }, + { + "id": 1930, + "title": "The Amazing Spider-Man", + "originalTitle": "The Amazing Spider-Man", + "overview": "Peter Parker is an outcast high schooler abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance – leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.", + "posterPath": "/jexoNYnPd6vVrmygwF6QZmWPFdu.jpg", + "backdropPath": "/HVcza6tJtWFrLriuh3Ano4Vt46.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2012-06-23", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.724, + "voteCount": 18070, + "popularity": 9.9626 + }, + { + "id": 606856, + "title": "Togo", + "originalTitle": "Togo", + "overview": "The untold true story set in the winter of 1925 that takes you across the treacherous terrain of the Alaskan tundra for an exhilarating and uplifting adventure that will test the strength, courage and determination of one man, Leonhard Seppala, and his lead sled dog, Togo.", + "posterPath": "/wX0QD36a80hxulcizz7tyahYOF8.jpg", + "backdropPath": "/2Jr2OBzoLLOYqQWnyN4eicZv0sL.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751 + ], + "genres": [ + "Adventure", + "Family" + ], + "releaseDate": "2019-12-20", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.14, + "voteCount": 2154, + "popularity": 9.945 + }, + { + "id": 242, + "title": "The Godfather Part III", + "originalTitle": "The Godfather Part III", + "overview": "In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.", + "posterPath": "/lm3pQ2QoQ16pextRsmnUbG2onES.jpg", + "backdropPath": "/zNnjHLDtV8Ti3aworltaeaLMov4.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1990-12-25", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.417, + "voteCount": 6605, + "popularity": 9.9442 + }, + { + "id": 975533, + "title": "The Archies", + "originalTitle": "द आर्चीज़", + "overview": "Set in 1960s India, Archie and the gang navigate romance, friendship and the future of Riverdale as developers threaten to destroy a beloved park.", + "posterPath": "/hmhWb4NTj02FyDxwBm4x9x2JxwJ.jpg", + "backdropPath": "/miKixKo4wgf05yW02eqmK7tlZLt.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10402, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Music", + "Romance" + ], + "releaseDate": "2023-12-07", + "releaseYear": "2023", + "originalLanguage": "hi", + "voteAverage": 5.733, + "voteCount": 60, + "popularity": 9.9302 + }, + { + "id": 2616, + "title": "Uncle Buck", + "originalTitle": "Uncle Buck", + "overview": "Buck Russell, a lovable but slovenly bachelor, suddenly becomes the temporary caretaker of his nephew and nieces after a family emergency. His freewheeling attitude soon causes tension with his older niece Tia, loyal girlfriend Chanice and just about everyone else who crosses his path.", + "posterPath": "/euWPWqpujKQg2KnfBUVkBSZ6kf4.jpg", + "backdropPath": "/mpEc2EPp6aJt3omHxw5IMZTDjt3.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1989-08-16", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.797, + "voteCount": 1279, + "popularity": 9.9264 + }, + { + "id": 9982, + "title": "Chicken Little", + "originalTitle": "Chicken Little", + "overview": "When the sky really is falling and sanity has flown the coop, who will rise to save the day? Together with his hysterical band of misfit friends, Chicken Little must hatch a plan to save the planet from alien invasion and prove that the world's biggest hero is a little chicken.", + "posterPath": "/vkhMtzwmAEglnilVNsL3IE6kU0B.jpg", + "backdropPath": "/neaUbI8fDtfnitw81ovBN0av8xE.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2005-11-04", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 4057, + "popularity": 9.9067 + }, + { + "id": 1083433, + "title": "I Know What You Did Last Summer", + "originalTitle": "I Know What You Did Last Summer", + "overview": "When five friends inadvertently cause a deadly car accident, they cover up their involvement and make a pact to keep it a secret rather than face the consequences. A year later, their past comes back to haunt them and they're forced to confront a horrifying truth: someone knows what they did last summer…and is hell-bent on revenge.", + "posterPath": "/6BfZLQYj97NO1yD5JkSAf5vWzGj.jpg", + "backdropPath": "/gVPjIcYo1gTaACF43OMsralrcUS.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2025-07-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.81, + "voteCount": 551, + "popularity": 9.9053 + }, + { + "id": 318279, + "title": "Meru", + "originalTitle": "Meru", + "overview": "Meru is the electrifying story of three elite American climbers—Conrad Anker, Jimmy Chin, and Renan Ozturk—bent on achieving the impossible.", + "posterPath": "/oQsMMSTJnWneD9YwYbUbsJzbQ7f.jpg", + "backdropPath": "/pjMm3ChyDqsfq2STH4MlMVjZmJz.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 99 + ], + "genres": [ + "Adventure", + "Documentary" + ], + "releaseDate": "2015-01-25", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.413, + "voteCount": 254, + "popularity": 9.9046 + }, + { + "id": 10195, + "title": "Thor", + "originalTitle": "Thor", + "overview": "Against his father Odin's will, The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.", + "posterPath": "/prSfAi1xGrhLQNxVSUFh61xQ4Qy.jpg", + "backdropPath": "/cDJ61O1STtbWNBwefuqVrRe3d7l.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2011-04-21", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.769, + "voteCount": 21887, + "popularity": 9.8962 + }, + { + "id": 70670, + "title": "Headhunters", + "originalTitle": "Hodejegerne", + "overview": "An accomplished headhunter risks everything to obtain a valuable painting owned by a former mercenary.", + "posterPath": "/k5DQqsb9T8djkTAOdwNCBBBHrtK.jpg", + "backdropPath": "/cuodmX7wuVDciUH8LdSFEqoTzIy.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 28 + ], + "genres": [ + "Thriller", + "Crime", + "Action" + ], + "releaseDate": "2011-08-26", + "releaseYear": "2011", + "originalLanguage": "no", + "voteAverage": 7.241, + "voteCount": 1307, + "popularity": 9.8958 + }, + { + "id": 49292, + "title": "Animal Instincts", + "originalTitle": "Animal Instincts", + "overview": "A cop and his sexually frustrated wife are struggling to keep their failing marriage intact, when by chance she finds that he is at heart a voyeuristic peeping tom. To satisfy him and herself, his wife has numerous affairs, which her husband watches on closed-circuit televison. However, the pair soon learn that when you play with fire, you'll always get burned.", + "posterPath": "/6YuYMZSUXI8ZgysXIdW6mHZ7qlj.jpg", + "backdropPath": "/a9UurzcCapuRpr4OYyx11WlwkTc.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1992-10-21", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 47, + "popularity": 9.8705 + }, + { + "id": 197, + "title": "Braveheart", + "originalTitle": "Braveheart", + "overview": "Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.", + "posterPath": "/or1gBugydmjToAEq7OZY0owwFk.jpg", + "backdropPath": "/8lBcqakI3F19NWkXdqE0M8W76b9.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 36, + 10752 + ], + "genres": [ + "Action", + "Drama", + "History", + "War" + ], + "releaseDate": "1995-05-24", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 10722, + "popularity": 9.8527 + }, + { + "id": 153104, + "title": "Wicked Minds", + "originalTitle": "Wicked Minds", + "overview": "Holden returns home from college and is surprised to find his overpowering competitive father married to a much younger woman Lana. Holden quickly falls for the beauty and charisma of his step mother. A passionate affair begins between son and stepmother.", + "posterPath": "/A6A15cDR8mpdOxW4y7UzFanzbM0.jpg", + "backdropPath": "/oYiPf8oR2ZrjvGIVzGTw1BZihDP.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 18, + 10749, + 53, + 10770 + ], + "genres": [ + "Mystery", + "Drama", + "Romance", + "Thriller", + "TV Movie" + ], + "releaseDate": "2003-03-01", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 49, + "popularity": 9.8513 + }, + { + "id": 313369, + "title": "La La Land", + "originalTitle": "La La Land", + "overview": "Mia, an aspiring actress, serves lattes to movie stars in between auditions and Sebastian, a jazz musician, scrapes by playing cocktail party gigs in dingy bars, but as success mounts they are faced with decisions that begin to fray the fragile fabric of their love affair, and the dreams they worked so hard to maintain in each other threaten to rip them apart.", + "posterPath": "/uDO8zWDhfWwoFdKS4fzkUJt0Rf0.jpg", + "backdropPath": "/nlPCdZlHtRNcF6C9hzUH4ebmV1w.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2016-12-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.898, + "voteCount": 17654, + "popularity": 9.8419 + }, + { + "id": 851644, + "title": "20th Century Girl", + "originalTitle": "20세기 소녀", + "overview": "In 1999, a teen girl keeps close tabs on a boy in school on behalf of her deeply smitten best friend – then she gets swept up in a love story of her own.", + "posterPath": "/od22ftNnyag0TTxcnJhlsu3aLoU.jpg", + "backdropPath": "/37y53Jt8K6MvN6s4zJVFa61luO2.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2022-10-06", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.1, + "voteCount": 776, + "popularity": 9.829 + }, + { + "id": 19404, + "title": "Dilwale Dulhania Le Jayenge", + "originalTitle": "दिलवाले दुल्हनिया ले जायेंगे", + "overview": "Raj is a rich, carefree, happy-go-lucky second generation NRI. Simran is the daughter of Chaudhary Baldev Singh, who in spite of being an NRI is very strict about adherence to Indian values. Simran has left for India to be married to her childhood fiancé. Raj leaves for India with a mission at his hands, to claim his lady love under the noses of her whole family. Thus begins a saga.", + "posterPath": "/2CAL2433ZeIihfX1Hb2139CX0pW.jpg", + "backdropPath": "/zQDFHYNVVVp9OAYSixYAG1SyX1l.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1995-10-20", + "releaseYear": "1995", + "originalLanguage": "hi", + "voteAverage": 8.513, + "voteCount": 4521, + "popularity": 9.8248 + }, + { + "id": 549509, + "title": "The Brutalist", + "originalTitle": "The Brutalist", + "overview": "When an innovative modern architect flees post-war Europe, he is given the opportunity to rebuild his legacy. Set during the dawn of the modern United States (in Pennsylvania), his wife joins him, and their lives are forever changed by a demanding, wealthy patron.", + "posterPath": "/vP7Yd6couiAaw9jgMd5cjMRj3hQ.jpg", + "backdropPath": "/hmZnqijPaaACjenDkrbWcCmcADI.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2024-12-20", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 1422, + "popularity": 9.8222 + }, + { + "id": 99861, + "title": "Avengers: Age of Ultron", + "originalTitle": "Avengers: Age of Ultron", + "overview": "When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.", + "posterPath": "/4ssDuvEDkSArWEdyBl2X5EHvYKU.jpg", + "backdropPath": "/kIBK5SKwgqIIuRKhhWrJn3XkbPq.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2015-04-22", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.271, + "voteCount": 23878, + "popularity": 9.8205 + }, + { + "id": 624860, + "title": "The Matrix Resurrections", + "originalTitle": "The Matrix Resurrections", + "overview": "Plagued by strange memories, Neo's life takes an unexpected turn when he finds himself back inside the Matrix.", + "posterPath": "/8c4a8kE7PizaGQQnditMmI1xbRp.jpg", + "backdropPath": "/eNI7PtK6DEYgZmHWP9gQNuff8pv.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "2021-12-16", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.36, + "voteCount": 6190, + "popularity": 9.8185 + }, + { + "id": 1290879, + "title": "The Woman in Cabin 10", + "originalTitle": "The Woman in Cabin 10", + "overview": "On a lavish yacht for an assignment, a journalist sees a passenger go overboard. But when no one believes her, she risks her life to uncover the truth.", + "posterPath": "/4kpdyePOlcELQQJcxXPF5GB1Adw.jpg", + "backdropPath": "/9IHZeCusOd7RUaQpUrQJlKqjsUZ.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 80 + ], + "genres": [ + "Mystery", + "Thriller", + "Crime" + ], + "releaseDate": "2025-10-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.203, + "voteCount": 704, + "popularity": 9.8159 + }, + { + "id": 774370, + "title": "Dog Man", + "originalTitle": "Dog Man", + "overview": "When a faithful police dog and his human police officer owner are injured together on the job, a harebrained but life-saving surgery fuses the two of them together and Dog Man is born. Dog Man is sworn to protect and serve—and fetch, sit and roll over. As Dog Man embraces his new identity and strives to impress his Chief, he must stop the pretty evil plots of feline supervillain Petey the Cat.", + "posterPath": "/89wNiexZdvLQ41OQWIsQy4O6jAQ.jpg", + "backdropPath": "/iXU87IdtNsYt7n6OigPJBDdbFf1.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16, + 28 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation", + "Action" + ], + "releaseDate": "2025-01-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 309, + "popularity": 9.8148 + }, + { + "id": 1223799, + "title": "The Corpse Washer", + "originalTitle": "Pemandi Jenazah", + "overview": "Lela, a mortician, finds something odd about the body of her mother who died suddenly. Trapped in sacred tension and a tense horror journey, Lela discovers another oddity in the body of the corpse she was bathing.", + "posterPath": "/1ZTrQWpuhxMr32uC1fQBRnkVYlf.jpg", + "backdropPath": "/p96S6KlDD71BMhNGLqf7zvEVlCL.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 53 + ], + "genres": [ + "Horror", + "Drama", + "Thriller" + ], + "releaseDate": "2024-02-22", + "releaseYear": "2024", + "originalLanguage": "id", + "voteAverage": 6.6, + "voteCount": 19, + "popularity": 9.8144 + }, + { + "id": 70345, + "title": "Sssssss", + "originalTitle": "Sssssss", + "overview": "David, a college student, is looking for a job. He is hired by Dr. Stoner as a lab assistant for his research and experiments on snakes. David also begins to fall for Stoner's young daughter, Kristina. However, the good doctor has secretly brewed up a serum that can transform any man into a King Cobra snake-and he plans to use it on David.", + "posterPath": "/fIKiHta0LrDpb2f80u7ybPFesoy.jpg", + "backdropPath": "/2D9eBSe9e8p3mBRytxihWlo2Z54.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1973-07-06", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 108, + "popularity": 9.8128 + }, + { + "id": 545611, + "title": "Everything Everywhere All at Once", + "originalTitle": "Everything Everywhere All at Once", + "overview": "An aging Chinese immigrant is swept up in an insane adventure, where she alone can save what's important to her by connecting with the lives she could have led in other universes.", + "posterPath": "/u68AjlvlutfEIcpmbYpKcdi09ut.jpg", + "backdropPath": "/ss0Os3uWJfQAENILHZUdX8Tt1OC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2022-03-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.728, + "voteCount": 7470, + "popularity": 9.8126 + }, + { + "id": 406759, + "title": "Moonfall", + "originalTitle": "Moonfall", + "overview": "A mysterious force knocks the moon from its orbit around Earth and sends it hurtling on a collision course with life as we know it.", + "posterPath": "/bjTU4fmmGjAOOiOlE6WYDagoSsP.jpg", + "backdropPath": "/8QpzqK3nPGxpqpKqhe6QasTGBWQ.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2022-02-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.265, + "voteCount": 3403, + "popularity": 9.8102 + }, + { + "id": 9714, + "title": "Home Alone 3", + "originalTitle": "Home Alone 3", + "overview": "9-year-old Alex Pruitt is home alone with the chicken pox. Turns out, due to a mix-up among nefarious spies, Alex was given a toy car concealing a top-secret microchip. Now Alex must fend off the spies as they try to break into his house to get it back.", + "posterPath": "/6uOadrCfle0n2LOOxHbgWEdnrm2.jpg", + "backdropPath": "/qJfgA6bUM7iAkcADrapIj8i6LOY.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1997-12-12", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 5.277, + "voteCount": 3168, + "popularity": 9.8056 + }, + { + "id": 2405, + "title": "Joseph", + "originalTitle": "Joseph", + "overview": "Joseph, favored son of Jacob and great-grandson of Abraham, is sold into slavery by his jealous brothers. Rising to become prime minister of Egypt. Joseph governed the country during a seven year famine, during which his brothers visit Egypt seeking grain, only to encounter their brother, presumed long dead.", + "posterPath": "/lBscKQzEJY1XF2ReZT2vIGrMQ1k.jpg", + "backdropPath": "/2cn22NVt8khIUnubnB5oAUAoImF.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10770 + ], + "genres": [ + "Adventure", + "Drama", + "TV Movie" + ], + "releaseDate": "1995-04-10", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 218, + "popularity": 9.7931 + }, + { + "id": 38, + "title": "Eternal Sunshine of the Spotless Mind", + "originalTitle": "Eternal Sunshine of the Spotless Mind", + "overview": "Joel Barish, heartbroken that his girlfriend underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realises that he still loves her, and may be too late to correct his mistake.", + "posterPath": "/5MwkWH9tYHv3mV9OdYTMR5qreIz.jpg", + "backdropPath": "/744ybMaYRry1IQKoDakMc4GEU4L.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 10749 + ], + "genres": [ + "Science Fiction", + "Drama", + "Romance" + ], + "releaseDate": "2004-03-19", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 15839, + "popularity": 9.7803 + }, + { + "id": 154699, + "title": "Da Thadiya", + "originalTitle": "ടാ തടിയാ", + "overview": "Luke faces many embarrassments as he is obese. Will he be able to prove his talent in front of the people who teased him for obesity?", + "posterPath": "/rNSw4mSklA7dVi2vVCzEQveqirn.jpg", + "backdropPath": "/yXXkuxWf91zR7UwCMb7bJlxj1Pn.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2012-12-21", + "releaseYear": "2012", + "originalLanguage": "ml", + "voteAverage": 6.3, + "voteCount": 15, + "popularity": 9.7798 + }, + { + "id": 12247, + "title": "Shotgun Stories", + "originalTitle": "Shotgun Stories", + "overview": "Shotgun Stories tracks a feud that erupts between two sets of half brothers following the death of their father. Set against the cotton fields and back roads of Southeast Arkansas, these brothers discover the lengths to which each will go to protect their family.", + "posterPath": "/aeIlHt28Z8KmHcKEgl4oLHpwZ8M.jpg", + "backdropPath": "/u5hVdYR4l7Mv8ruYEGVL1mbIoKC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2007-10-01", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 201, + "popularity": 9.7551 + }, + { + "id": 207, + "title": "Dead Poets Society", + "originalTitle": "Dead Poets Society", + "overview": "At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.", + "posterPath": "/erzbMlcNHOdx24AXOcn2ZKA7R1q.jpg", + "backdropPath": "/rSzDfniDjqh2TIP9uH7rwi2iRy3.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1989-06-02", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 8.301, + "voteCount": 12069, + "popularity": 9.7546 + }, + { + "id": 350, + "title": "The Devil Wears Prada", + "originalTitle": "The Devil Wears Prada", + "overview": "Andy moves to New York to work in the fashion industry. Her boss is extremely demanding, cruel and won't let her succeed if she doesn't fit into the high class elegant look of their magazine.", + "posterPath": "/8912AsVuS7Sj915apArUFbv6F9L.jpg", + "backdropPath": "/3tWw50B1xXlCnJ9A7NX4nNzZF4j.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2006-06-29", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 12619, + "popularity": 9.7504 + }, + { + "id": 726208, + "title": "Don't Listen", + "originalTitle": "Voces", + "overview": "After a tragic turn of events at the new home he's fixing up, Daniel hears a ghostly plea for help, spurring him to seek out a famous paranormal expert.", + "posterPath": "/lXvBgevABC9n5R6Gg76R3pN1h2M.jpg", + "backdropPath": "/h00iFXMpGuls2GEnXIGFzQUeaFr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 53 + ], + "genres": [ + "Drama", + "Horror", + "Thriller" + ], + "releaseDate": "2020-07-24", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 6.485, + "voteCount": 782, + "popularity": 9.7461 + }, + { + "id": 27, + "title": "9 Songs", + "originalTitle": "9 Songs", + "overview": "Matt, a young glaciologist, soars across the vast, silent, icebound immensities of the South Pole as he recalls his love affair with Lisa. They meet at a mobbed rock concert in a vast music hall - London's Brixton Academy. They are in bed at night's end. Together, over a period of several months, they pursue a mutual sexual passion whose inevitable stages unfold in counterpoint to nine live-concert songs.", + "posterPath": "/91O7z0vo7MiNWd5xD2BoivwbQsb.jpg", + "backdropPath": "/qU7tNIMpRqkizIObXfkJY3haTqh.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 10749 + ], + "genres": [ + "Drama", + "Music", + "Romance" + ], + "releaseDate": "2004-07-16", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.556, + "voteCount": 553, + "popularity": 9.7459 + }, + { + "id": 454527, + "title": "Benedetta", + "originalTitle": "Benedetta", + "overview": "A 17th-century nun becomes entangled in a forbidden lesbian affair with a novice. But it is Benedetta's shocking religious visions that threaten to shake the Church to its core.", + "posterPath": "/yofVXmLYQbr8pdOeyDRrf9N8rF4.jpg", + "backdropPath": "/b2L7jOgo5cHiRIvljD2GCqZiYO2.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 10749 + ], + "genres": [ + "History", + "Drama", + "Romance" + ], + "releaseDate": "2021-07-09", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 6.6, + "voteCount": 1103, + "popularity": 9.7439 + }, + { + "id": 1410082, + "title": "Sniper: The Last Stand", + "originalTitle": "Sniper: The Last Stand", + "overview": "To stop an arms dealer from unleashing a deadly superweapon, Ace sniper Brandon Beckett and Agent Zero are deployed to Costa Verde to lead a group of elite soldiers against an unrelenting militia. Taking an untested sniper under his wing, Beckett faces his newest challenge: giving orders instead of receiving them. With both time and ammo running low in a race to save humanity, the team must overcome all odds just to survive.", + "posterPath": "/TVvIyCsFCmLk9MRLbAZi4X8f32.jpg", + "backdropPath": "/ybSA7fUbYHw8VeRiSJ7tgKJnYWZ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-01-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.774, + "voteCount": 168, + "popularity": 9.7435 + }, + { + "id": 1290182, + "title": "You Are the Apple of My Eye", + "originalTitle": "그 시절, 우리가 좋아했던 소녀", + "overview": "A group of close friends who attend a private school all have a debilitating crush on the sunny star pupil, Sun-ah. The only member of the group who claims not to is Jin-woo, but he ends up loving her as well.", + "posterPath": "/bBnyDM1gWBLd91K245iVKH19t42.jpg", + "backdropPath": "/rVhoq70ZDDVfeoEPS312PcR5yLE.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "2025-02-21", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.5, + "voteCount": 48, + "popularity": 9.7327 + }, + { + "id": 762975, + "title": "Purple Hearts", + "originalTitle": "Purple Hearts", + "overview": "An aspiring musician agrees to a marriage of convenience with a soon-to-deploy Marine, but a tragedy soon turns their fake relationship all too real.", + "posterPath": "/4JyNWkryifWbWXJyxcWh3pVya6N.jpg", + "backdropPath": "/jdZM1Gs6DtRGvosgqaXRrIkvYX7.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2022-07-29", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 2775, + "popularity": 9.7274 + }, + { + "id": 412117, + "title": "The Secret Life of Pets 2", + "originalTitle": "The Secret Life of Pets 2", + "overview": "Max the terrier must cope with some major life changes when his owner gets married and has a baby. When the family takes a trip to the countryside, nervous Max has numerous run-ins with canine-intolerant cows, hostile foxes and a scary turkey. Luckily for Max, he soon catches a break when he meets Rooster, a gruff farm dog who tries to cure the lovable pooch of his neuroses.", + "posterPath": "/s9xg4V5EDKiphgIksVJ9gewBM11.jpg", + "backdropPath": "/zDIievPXqjfjLogXFqnnopU0OkK.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2019-05-24", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.948, + "voteCount": 3236, + "popularity": 9.7254 + }, + { + "id": 522402, + "title": "Finch", + "originalTitle": "Finch", + "overview": "On a post-apocalyptic Earth, a robot, built to protect the life of his dying creator's beloved dog, learns about life, love, friendship, and what it means to be human.", + "posterPath": "/eEJtzD1F05xDipFEDY98CTH5yZn.jpg", + "backdropPath": "/uoc358GH6Yl7TufbUKHkETPu64B.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 12 + ], + "genres": [ + "Science Fiction", + "Drama", + "Adventure" + ], + "releaseDate": "2021-11-04", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.821, + "voteCount": 3784, + "popularity": 9.7229 + }, + { + "id": 616037, + "title": "Thor: Love and Thunder", + "originalTitle": "Thor: Love and Thunder", + "overview": "After his retirement is interrupted by Gorr the God Butcher, a galactic killer who seeks the extinction of the gods, Thor Odinson enlists the help of King Valkyrie, Korg, and ex-girlfriend Jane Foster, who now wields Mjolnir as the Mighty Thor. Together they embark upon a harrowing cosmic adventure to uncover the mystery of the God Butcher’s vengeance and stop him before it’s too late.", + "posterPath": "/pIkRyD18kl4FhoCNQuWxWu5cBLM.jpg", + "backdropPath": "/jsoz1HlxczSuTx0mDl2h0lxy36l.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 35 + ], + "genres": [ + "Fantasy", + "Action", + "Comedy" + ], + "releaseDate": "2022-07-06", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.39, + "voteCount": 8220, + "popularity": 9.7211 + }, + { + "id": 718930, + "title": "Bullet Train", + "originalTitle": "Bullet Train", + "overview": "Unlucky assassin Ladybug is determined to do his job peacefully after one too many gigs gone off the rails. Fate, however, may have other plans, as Ladybug's latest mission puts him on a collision course with lethal adversaries from around the globe—all with connected, yet conflicting, objectives—on the world's fastest train.", + "posterPath": "/j8szC8OgrejDQjjMKSVXyaAjw3V.jpg", + "backdropPath": "/y2Ca1neKke2mGPMaHzlCNDVZqsK.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Thriller" + ], + "releaseDate": "2022-08-03", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.422, + "voteCount": 7070, + "popularity": 9.7099 + }, + { + "id": 408567, + "title": "Deadly Pickup", + "originalTitle": "Deadly Pickup", + "overview": "Breezy isn't your ordinary hitch-hiker: she's sexy, fun... and a cold-blooded killer. As deadly as a viper, Breezy murders her victims with a poisonous ring. As she preys on highway pickups, Breezy moves from town to town, finally settling briefly as a boarder in the house of a young couple who have no idea what kind of sexual wolf they've just let in the door.", + "posterPath": "/kq0B2DAXRhauo3MACv8MKlliakW.jpg", + "backdropPath": "/kGZDYsaRGu01nBOXgO1moa3mLL4.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2016-07-26", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.396, + "voteCount": 24, + "popularity": 9.6948 + }, + { + "id": 4031, + "title": "Going Places", + "originalTitle": "Les Valseuses", + "overview": "Two whimsical, aimless thugs harass and assault women, steal, murder, and alternately charm, fight, or sprint their way out of trouble. They take whatever the bourgeoisie holds dear, whether it’s cars, peace of mind, or daughters. Marie-Ange, a jaded, passive hairdresser, joins them as lover, cook, and mother confessor. She’s on her own search for seemingly unattainable sexual pleasure.", + "posterPath": "/1evmnMMSgUXORoECRwiMiqjwmN.jpg", + "backdropPath": "/v6WUPGU0tBOIO0jAkHsDNZVw1S.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1974-03-20", + "releaseYear": "1974", + "originalLanguage": "fr", + "voteAverage": 6.701, + "voteCount": 477, + "popularity": 9.6906 + }, + { + "id": 10198, + "title": "The Princess and the Frog", + "originalTitle": "The Princess and the Frog", + "overview": "A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to face the same problem after she kisses him.", + "posterPath": "/v6nAUs62OJ4DXmnnmPFeVmMz8H9.jpg", + "backdropPath": "/y5tad0a4yRbxYgOHGllEIEeCCKt.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10749, + 14, + 10751 + ], + "genres": [ + "Animation", + "Romance", + "Fantasy", + "Family" + ], + "releaseDate": "2009-12-08", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.214, + "voteCount": 5935, + "popularity": 9.6799 + }, + { + "id": 1126336, + "title": "Anniversary", + "originalTitle": "Anniversary", + "overview": "When Ellen and Paul’s son introduces his new girlfriend one lovely afternoon at their 25th anniversary party, no one suspects that it is the beginning of the end for this happy family. The new girlfriend is Liz, Ellen’s former student, who left the university, some years before, after Ellen called her out in class for her radical ideology.", + "posterPath": "/sSdpXGBNt3mQzjZZVK6eV5NcPdc.jpg", + "backdropPath": "/mNUciC3vHhoskveYsO3hiFypqMz.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2025-10-29", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 43, + "popularity": 9.6779 + }, + { + "id": 109418, + "title": "Grown Ups 2", + "originalTitle": "Grown Ups 2", + "overview": "Lenny has relocated his family back to the small town where he and his friends grew up. This time around, the grown ups are the ones learning lessons from their kids on a day notoriously full of surprises—the last day of school.", + "posterPath": "/hT6ijOtjtYrnyDhN7VA2QWyGFAm.jpg", + "backdropPath": "/7JhsJxNmdW0y4IyNrHy10cECrAz.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-07-11", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 4533, + "popularity": 9.6736 + }, + { + "id": 8316, + "title": "The Countess", + "originalTitle": "The Countess", + "overview": "Kingdom of Hungary, 17th century. As she gets older, powerful Countess Erzsébet Báthory (1560-1614), blinded by the passion that she feels for a younger man, succumbs to the mad delusion that blood will keep her young and beautiful forever.", + "posterPath": "/nnksbKPiwDZS5x9O64OU94hJ15g.jpg", + "backdropPath": "/w1kShva9ltxozY2UePgBjXjedvI.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 53, + 9648, + 27 + ], + "genres": [ + "Drama", + "History", + "Thriller", + "Mystery", + "Horror" + ], + "releaseDate": "2009-03-13", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.906, + "voteCount": 177, + "popularity": 9.6714 + }, + { + "id": 6479, + "title": "I Am Legend", + "originalTitle": "I Am Legend", + "overview": "Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.", + "posterPath": "/iPDkaSdKk2jRLTM65UOEoKtsIZ8.jpg", + "backdropPath": "/ePgD1cwmklyrFBjl6z96IuixuSY.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 53 + ], + "genres": [ + "Drama", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2007-12-12", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.211, + "voteCount": 16407, + "popularity": 9.6666 + }, + { + "id": 60747, + "title": "Red Dawn", + "originalTitle": "Red Dawn", + "overview": "A city in Washington state awakens to the surreal sight of foreign paratroopers dropping from the sky—shockingly, the U.S. has been invaded and their hometown is the initial target. Quickly and without warning, the citizens find themselves prisoners and their town under enemy occupation. Determined to fight back, a group of young patriots seek refuge in the surrounding woods, training and reorganizing themselves into a guerrilla group of fighters.", + "posterPath": "/aHdxKDX36NOEYE2NyAyP7ThuAcm.jpg", + "backdropPath": "/jFh87Hj9Yp8QQPYmcNBAZNaa4Y.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2012-03-15", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 1690, + "popularity": 9.6641 + }, + { + "id": 1251717, + "title": "Vicious", + "originalTitle": "Vicious", + "overview": "When Polly receives a mysterious box, it comes with one rule: place inside something she needs, something she hates, and something she loves. If she doesn’t obey, it will consume everything—and everyone—she’s ever known.", + "posterPath": "/shKGDGrwqmc9x2aTJcQszoXinq0.jpg", + "backdropPath": "/da1mXvCrQrFcw6BxovCavBFbIvz.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.995, + "voteCount": 184, + "popularity": 9.6604 + }, + { + "id": 940551, + "title": "Migration", + "originalTitle": "Migration", + "overview": "After a migrating duck family alights on their pond with thrilling tales of far-flung places, the Mallard family embarks on a family road trip, from New England, to New York City, to tropical Jamaica.", + "posterPath": "/dpXxBDi0ut5svjh5fbAqLoaJSq8.jpg", + "backdropPath": "/gklkxY0veMajdCiGe6ggsh07VG2.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2023-12-06", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.38, + "voteCount": 2133, + "popularity": 9.6537 + }, + { + "id": 818397, + "title": "Memory", + "originalTitle": "Memory", + "overview": "Alex, an assassin-for-hire, finds that he's become a target after he refuses to complete a job for a dangerous criminal organization. With the crime syndicate and FBI in hot pursuit, Alex has the skills to stay ahead, except for one thing: he is struggling with severe memory loss, affecting his every move. Alex must question his every action and whom he can ultimately trust.", + "posterPath": "/4Q1n3TwieoULnuaztu9aFjqHDTI.jpg", + "backdropPath": "/9zXPnbVpaDfTniLBuc5vgXGfzAP.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2022-04-28", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 1597, + "popularity": 9.6424 + }, + { + "id": 426063, + "title": "Nosferatu", + "originalTitle": "Nosferatu", + "overview": "A gothic tale of obsession between a haunted young woman and the terrifying vampire infatuated with her, causing untold horror in its wake.", + "posterPath": "/5qGIxdEO841C0tdY8vOdLoRVrr0.jpg", + "backdropPath": "/fYnEbgoNCxW9kL0IgOgtJb9JTBU.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14 + ], + "genres": [ + "Horror", + "Fantasy" + ], + "releaseDate": "2024-12-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.692, + "voteCount": 3268, + "popularity": 9.6344 + }, + { + "id": 18240, + "title": "The Proposal", + "originalTitle": "The Proposal", + "overview": "When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.", + "posterPath": "/aEqtJDj8MvSDQwzggvcOfFTZMw.jpg", + "backdropPath": "/ojgXOhVi9Yk8irDpRfDkIzdD1LK.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2009-06-02", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.152, + "voteCount": 7226, + "popularity": 9.632 + }, + { + "id": 337167, + "title": "Fifty Shades Freed", + "originalTitle": "Fifty Shades Freed", + "overview": "Believing they have left behind shadowy figures from their past, newlyweds Christian and Ana fully embrace an inextricable connection and shared life of luxury. But just as she steps into her role as Mrs. Grey and he relaxes into an unfamiliar stability, new threats could jeopardize their happy ending before it even begins.", + "posterPath": "/jjPJ4s3DWZZvI4vw8Xfi4Vqa1Q8.jpg", + "backdropPath": "/9ywA15OAiwjSTvg3cBs9B7kOCBF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2018-01-17", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.682, + "voteCount": 8241, + "popularity": 9.6295 + }, + { + "id": 312221, + "title": "Creed", + "originalTitle": "Creed", + "overview": "The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.", + "posterPath": "/1BfTsk5VWuw8FCocAhCyqnRbEzq.jpg", + "backdropPath": "/kODNw6GJNdgldUMEhKPlCw8wQCr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28 + ], + "genres": [ + "Drama", + "Action" + ], + "releaseDate": "2015-11-25", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.408, + "voteCount": 7748, + "popularity": 9.6249 + }, + { + "id": 630004, + "title": "The Vault", + "originalTitle": "Way Down", + "overview": "Madrid, Spain, 2010. While the whole city follows the national team's successful participation in the World Cup, a group of daring thieves look for a way into one of the most secure and guarded places on the planet.", + "posterPath": "/kWhXubAiIcHW0xn5GThflqaKZqh.jpg", + "backdropPath": "/s1ohP4iE2Lg2TVBJILOkbTsGGgu.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53 + ], + "genres": [ + "Drama", + "Action", + "Thriller" + ], + "releaseDate": "2021-03-04", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 1029, + "popularity": 9.621 + }, + { + "id": 7345, + "title": "There Will Be Blood", + "originalTitle": "There Will Be Blood", + "overview": "Ruthless silver miner, turned oil prospector, Daniel Plainview, moves to oil-rich California. Using his son to project a trustworthy, family-man image, Plainview cons local landowners into selling him their valuable properties for a pittance. However, local preacher Eli Sunday suspects Plainview's motives and intentions, starting a slow-burning feud that threatens both their lives.", + "posterPath": "/fa0RDkAlCec0STeMNAhPaF89q6U.jpg", + "backdropPath": "/9UAKA6ceZi6TgQwTAAMt7DWwYPI.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-12-26", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 8.076, + "voteCount": 7098, + "popularity": 9.6144 + }, + { + "id": 62029, + "title": "Bingo Bongo", + "originalTitle": "Bingo Bongo", + "overview": "The ape-man, found somewhere in the jungles of Congo, transferred to Milan and named Bingo Bongo. The only one who believes in the human qualities of him is Laura, a woman anthropologist , so their affection for each other even grows to love.", + "posterPath": "/5ve4VuCwi7Xas5s50ynEB7uFjM2.jpg", + "backdropPath": "/mFDQ8f2lPHorGwtuE0fjnUIbKLF.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1982-12-23", + "releaseYear": "1982", + "originalLanguage": "it", + "voteAverage": 5.701, + "voteCount": 164, + "popularity": 9.613 + }, + { + "id": 1278950, + "title": "The Ritual", + "originalTitle": "The Ritual", + "overview": "Two priests, one in crisis with his faith and the other confronting a turbulent past, must overcome their differences to perform a risky exorcism.", + "posterPath": "/uubL8yvtEBjz3V7DFQHjCuSQO8w.jpg", + "backdropPath": "/yAqL0makiGke5yYiVWpmBDSKIVP.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 53 + ], + "genres": [ + "Horror", + "Drama", + "Thriller" + ], + "releaseDate": "2025-04-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.916, + "voteCount": 243, + "popularity": 9.6024 + }, + { + "id": 558655, + "title": "Flesh & Blood", + "originalTitle": "Flesh & Blood", + "overview": "Kimberly, a teenager suffering from agoraphobia, has not left the house since her mother's unsolved murder. On the eve of Thanksgiving, she begins to suspect that the safe harbor of home and her doting father may be a dangerous mirage.", + "posterPath": "/vvgWkpGsuCSzNZuqenQZUl9EtXe.jpg", + "backdropPath": "/tE2imkf1yQ2lDKqyu8l3RbGH6Mo.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2018-11-02", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.875, + "voteCount": 144, + "popularity": 9.6022 + }, + { + "id": 843527, + "title": "The Idea of You", + "originalTitle": "The Idea of You", + "overview": "40-year-old single mom Solène begins an unexpected romance with 24-year-old Hayes Campbell, the lead singer of August Moon, the hottest boy band on the planet. As they begin a whirlwind romance, it isn't long before Hayes' superstar status poses unavoidable challenges to their relationship, and Solène soon discovers that life in the glare of his spotlight might be more than she bargained for.", + "posterPath": "/Y5P4Q3q8nrruZ9aD3wXeJS2Plg.jpg", + "backdropPath": "/sI6uCeF8mUlZx22mFfHSi9W3XQ9.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "2024-05-02", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.336, + "voteCount": 1818, + "popularity": 9.5937 + }, + { + "id": 205584, + "title": "Gods of Egypt", + "originalTitle": "Gods of Egypt", + "overview": "A common thief joins a mythical god on a quest through Egypt.", + "posterPath": "/hzH7fwaTyQNITLo40Hu3R7cVMqv.jpg", + "backdropPath": "/pl2zr5efo9Dz1fi2gpsslGwEQm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2016-02-25", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.69, + "voteCount": 4238, + "popularity": 9.5801 + }, + { + "id": 138735, + "title": "Little Thirteen", + "originalTitle": "Little Thirteen", + "overview": "The everyday lives of teenagers, coming from various social backgrounds. For them, sexuality has become a substitute for love, resulting from emotional neglect.", + "posterPath": "/8soOp2XFbOyeFybl6pghZjXJXw0.jpg", + "backdropPath": "/cspozBIhoSTxHNhUg4X3ZT4WSFM.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-07-04", + "releaseYear": "2012", + "originalLanguage": "de", + "voteAverage": 5.366, + "voteCount": 41, + "popularity": 9.5798 + }, + { + "id": 1407861, + "title": "The Bayou", + "originalTitle": "The Bayou", + "overview": "Vacation turns disaster when Houston grad Kyle and her friends survive a plane crash in the desolate Louisiana everglades, only to discover there's something way more dangerous lurking in the shallows.", + "posterPath": "/sf6j1SbgDf7VTjL1MRq5MAQSOyE.jpg", + "backdropPath": "/y12HU18e5FHNeqkSZdvMBEOY6BU.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 28 + ], + "genres": [ + "Thriller", + "Horror", + "Action" + ], + "releaseDate": "2025-01-31", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.578, + "voteCount": 161, + "popularity": 9.572 + }, + { + "id": 463325, + "title": "Genesis", + "originalTitle": "Genesis", + "overview": "After an apocalyptic event, the remnants of humanity create an artificial intelligence to save them.", + "posterPath": "/tOgWvHRZGH9SdEG33ScuMSPtuK3.jpg", + "backdropPath": "/i0FsMiFDBGNFknSWG8np4NMVkdJ.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2018-04-21", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 3.774, + "voteCount": 31, + "popularity": 9.5689 + }, + { + "id": 547539, + "title": "Sweetheart", + "originalTitle": "Mon bébé", + "overview": "A working woman, mother a three children, realizes that, when her youngest one is about to go to Canada to continue her education, she will end up out of her most precious goal, being a mother.", + "posterPath": "/exRz2DwZSXoJh18dmo836aWwpXy.jpg", + "backdropPath": "/xbned4lakrSIpEPK3oBYftSgZvK.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-03-13", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.5, + "voteCount": 257, + "popularity": 9.5521 + }, + { + "id": 498249, + "title": "Bad Seeds", + "originalTitle": "Mauvaises herbes", + "overview": "Wael, a former street child, makes a living from small scams with his adoptive mother and partner-in-crime Monique. When this unconventional duo swindles the wrong guy, Victor, an old acquaintance of Monique now in charge of a support organization for troubled teens, they have no choice but to become his interim secretary and educator in order to redeem themselves.", + "posterPath": "/sJJWdXTi7ybxLd3mSILD7XxwYzh.jpg", + "backdropPath": "/sWPxNdAgKfTIeZ3H17EheDAsci6.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-11-21", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 7.6, + "voteCount": 616, + "popularity": 9.5508 + }, + { + "id": 1581, + "title": "The Holiday", + "originalTitle": "The Holiday", + "overview": "Two women, one American and one British, swap homes at Christmastime following bad breakups. Each woman finds romance with a local man but realizes that the imminent return home may end the relationship.", + "posterPath": "/6fbqG49Q7IWBWdyJ7asNTcNbnG6.jpg", + "backdropPath": "/pvVpR8lPRAPbeVU6hqJwD4r9roo.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2006-12-05", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.09, + "voteCount": 5412, + "popularity": 9.5433 + }, + { + "id": 1051891, + "title": "Thelma", + "originalTitle": "Thelma", + "overview": "When 93-year-old Thelma Post gets duped by a phone scammer pretending to be her grandson, she sets out on a treacherous quest across the city to reclaim what was taken from her.", + "posterPath": "/rUcuageYgv9SsJoWuc0seRWG6JC.jpg", + "backdropPath": "/wkPPRIducGfsbaUPsWfw0MCQdX7.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 12 + ], + "genres": [ + "Action", + "Comedy", + "Adventure" + ], + "releaseDate": "2024-06-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.928, + "voteCount": 347, + "popularity": 9.5232 + }, + { + "id": 98566, + "title": "Teenage Mutant Ninja Turtles", + "originalTitle": "Teenage Mutant Ninja Turtles", + "overview": "When a kingpin threatens New York City, a group of mutated turtle warriors must emerge from the shadows to protect their home.", + "posterPath": "/azL2ThbJMIkts3ZMt3j1YgBUeDB.jpg", + "backdropPath": "/eezsbzYPbYKjjh6E1XHDBNlLynh.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12, + 35 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure", + "Comedy" + ], + "releaseDate": "2014-08-07", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.925, + "voteCount": 7031, + "popularity": 9.5213 + }, + { + "id": 30301, + "title": "Black Angel", + "originalTitle": "Senso '45", + "overview": "Trapped in an unhappy marriage, the wife of a high ranking Fascist official starts a dangerous, self-destructive relationship with a duplicitous S.S. Officer.", + "posterPath": "/Cb8n2cAwssBCApYjwYbz67S6P0.jpg", + "backdropPath": "/lqQ1u5YzqK3cULeL33UgMqdXHw2.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 53 + ], + "genres": [ + "Drama", + "Romance", + "Thriller" + ], + "releaseDate": "2002-04-12", + "releaseYear": "2002", + "originalLanguage": "it", + "voteAverage": 5.284, + "voteCount": 81, + "popularity": 9.5172 + }, + { + "id": 1312946, + "title": "The Map That Leads to You", + "originalTitle": "The Map That Leads to You", + "overview": "Heather is a young woman traveling Europe with friends before starting her perfectly planned life. A chance meeting with Jack sparks an unexpected romance that leads to deep emotional discovery. As secrets and life choices test their bond, her path changes forever.", + "posterPath": "/uwvKQIjJpC37IEsEj4ZAn1ITyRy.jpg", + "backdropPath": "/5QKddKk1qEe8CwWYpklmKq68uyo.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2025-08-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.57, + "voteCount": 266, + "popularity": 9.5153 + }, + { + "id": 91314, + "title": "Transformers: Age of Extinction", + "originalTitle": "Transformers: Age of Extinction", + "overview": "As humanity picks up the pieces after the battle of Chicago, a shadowy group reveals itself in an attempt to control the direction of history…while an ancient, powerful new menace sets Earth in its crosshairs. With help from Cade Yeager, Optimus Prime and the Autobots rise to meet their most fearsome challenge yet.", + "posterPath": "/jyzrfx2WaeY60kYZpPYepSjGz4S.jpg", + "backdropPath": "/wxr4Z6E83h14CogsZOzDm1vuDX3.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "2014-06-25", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.954, + "voteCount": 8525, + "popularity": 9.5119 + }, + { + "id": 339877, + "title": "Loving Vincent", + "originalTitle": "Loving Vincent", + "overview": "A young man arrives at the last hometown of painter Vincent van Gogh to deliver the troubled artist's final letter and ends up investigating his final days there.", + "posterPath": "/56sq57kDm7XgyXBYrgJLumo0Jac.jpg", + "backdropPath": "/xW54kLO7ZB683CwMbGSN3ELSS1K.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 9648, + 36 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "History" + ], + "releaseDate": "2017-06-22", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 2544, + "popularity": 9.5089 + }, + { + "id": 10625, + "title": "Mean Girls", + "originalTitle": "Mean Girls", + "overview": "Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.", + "posterPath": "/2ZkuQXvVhh45uSvkBej4S7Ix1NJ.jpg", + "backdropPath": "/nP3y0TkR6XniFs9J53qQkg4Bnnk.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2004-04-30", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.223, + "voteCount": 9225, + "popularity": 9.5036 + }, + { + "id": 356987, + "title": "Abandoned", + "originalTitle": "Abandoned", + "overview": "In 1989 the trimaran Rose Noelle set sail from Picton, New Zealand, bound for Tonga with four crew. After a freak wave capsized the yacht, they drifted for 119 days before landing on Great Barrier Island.", + "posterPath": "/9iUsETntqb2hCZnM5wwlH0IWZ8Y.jpg", + "backdropPath": "/aRSk4nWAlSuabUTqtMO5tPpgYoD.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 12 + ], + "genres": [ + "Drama", + "Thriller", + "Adventure" + ], + "releaseDate": "2016-03-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 130, + "popularity": 9.4947 + }, + { + "id": 76, + "title": "Before Sunrise", + "originalTitle": "Before Sunrise", + "overview": "An unexpected meeting on a train leads two travelers to spend an evening wandering through Vienna. As the night unfolds, they share stories and conversations about life and love, exploring new ideas while a quiet intimacy grows between them, knowing it may be their only night together.", + "posterPath": "/kf1Jb1c2JAOqjuzA3H4oDM263uB.jpg", + "backdropPath": "/qA2TyqPldTtoTVY3LKrNIG5g6bH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1995-01-27", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.971, + "voteCount": 4487, + "popularity": 9.4872 + }, + { + "id": 324544, + "title": "In the Lost Lands", + "originalTitle": "In the Lost Lands", + "overview": "A queen sends the powerful and feared sorceress Gray Alys to the ghostly wilderness of the Lost Lands in search of a magical power, where she and her guide, the drifter Boyce, must outwit and outfight both man and demon.", + "posterPath": "/dDlfjR7gllmr8HTeN6rfrYhTdwX.jpg", + "backdropPath": "/jb7yM17VZvDqUJVS4JR77EOfgEM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 37 + ], + "genres": [ + "Action", + "Fantasy", + "Western" + ], + "releaseDate": "2025-02-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 646, + "popularity": 9.4833 + }, + { + "id": 1331349, + "title": "Two Pianos", + "originalTitle": "Deux pianos", + "overview": "Returning to France after a long exile, pianist Mathias Vogler reunites with his mentor, Elena, to prepare a concert. In a park, an encounter with a child who looks just like him will lead him to Claude, the woman he once loved.", + "posterPath": "/RPjYNRK8X2Z6noLibGbORpUykv.jpg", + "backdropPath": "/efCY1f32MgzYvD9MmjqxRrXnDNh.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10402 + ], + "genres": [ + "Drama", + "Romance", + "Music" + ], + "releaseDate": "2025-10-15", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 5.2, + "voteCount": 18, + "popularity": 9.483 + }, + { + "id": 863851, + "title": "Mírame", + "originalTitle": "Mírame", + "overview": "Lalo is a teenager tormented by the recent death of his dad, and being forced to move to an old house with his grandmother Elena. After taking his dad's old wristwatch, the ghost of a young girl begins to haunt him. Now, Lalo's life is in danger as he tries to unfold the mysterious ghost who keeps frightening him, hoping to stop her from dragging him for good.", + "posterPath": "/tjyYRg7LuEO11dwJfBzhX2w1Z4v.jpg", + "backdropPath": "/iMujahWfsIB7eO8J1oatK6NGpAQ.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2021-08-20", + "releaseYear": "2021", + "originalLanguage": "es", + "voteAverage": 6.8, + "voteCount": 66, + "popularity": 9.4827 + }, + { + "id": 505642, + "title": "Black Panther: Wakanda Forever", + "originalTitle": "Black Panther: Wakanda Forever", + "overview": "Queen Ramonda, Shuri, M’Baku, Okoye and the Dora Milaje fight to protect their nation from intervening world powers in the wake of King T’Challa’s death. As the Wakandans strive to embrace their next chapter, the heroes must band together with the help of War Dog Nakia and Everett Ross and forge a new path for the kingdom of Wakanda.", + "posterPath": "/sv1xJUazXeYqALzczSZ3O6nkH75.jpg", + "backdropPath": "/xDMIl84Qo5Tsu62c9DGWhmPI67A.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2022-11-09", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 7121, + "popularity": 9.4825 + }, + { + "id": 146955, + "title": "Border Run", + "originalTitle": "Border Run", + "overview": "A female American reporter searches for her missing brother against the backdrop of violence and human smuggling across the US/Mexican border.", + "posterPath": "/anA1Musyha2EmgiW9m4FXOFMX3d.jpg", + "backdropPath": "/s5inFkaGhp5ceo0uTxTjAvFehlE.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2012-10-12", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.724, + "voteCount": 76, + "popularity": 9.4771 + }, + { + "id": 82702, + "title": "How to Train Your Dragon 2", + "originalTitle": "How to Train Your Dragon 2", + "overview": "Five years have passed since Hiccup and Toothless united the dragons and Vikings of Berk. Now, they spend their time charting unmapped territories. During one of their adventures, the pair discover a secret cave that houses hundreds of wild dragons -- and a mysterious dragon rider. Now, Hiccup and Toothless find themselves at the center of a battle to protect Berk from a power-hungry warrior.", + "posterPath": "/d13Uj86LdbDLrfDoHR5aDOFYyJC.jpg", + "backdropPath": "/5MnP0h7RcUCeX7gpxMYoMScmfq7.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 12, + 16, + 35, + 10751 + ], + "genres": [ + "Fantasy", + "Action", + "Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2014-06-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 10126, + "popularity": 9.4767 + }, + { + "id": 1241921, + "title": "A Big Bold Beautiful Journey", + "originalTitle": "A Big Bold Beautiful Journey", + "overview": "Sarah and David are single strangers who meet at a mutual friend’s wedding and soon, through a surprising twist of fate, find themselves on a funny, fantastical, sweeping adventure together where they get to re-live important moments from their respective pasts, illuminating how they got to where they are in the present... and possibly getting a chance to alter their futures.", + "posterPath": "/uMAkmQlKthQpTMiyPAKOYK3JnMs.jpg", + "backdropPath": "/2ha0wAOqrUcLScStWQcgeOOXapQ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 14, + 18 + ], + "genres": [ + "Romance", + "Fantasy", + "Drama" + ], + "releaseDate": "2025-09-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 224, + "popularity": 9.474 + }, + { + "id": 11836, + "title": "The SpongeBob SquarePants Movie", + "originalTitle": "The SpongeBob SquarePants Movie", + "overview": "There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.", + "posterPath": "/1rvzKV1d18EbDVaEd4VDzK3cgnY.jpg", + "backdropPath": "/yTgqGrzDtJPAYpWN2QrL5TTtWrr.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2004-11-19", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 3074, + "popularity": 9.4709 + }, + { + "id": 2756, + "title": "The Abyss", + "originalTitle": "The Abyss", + "overview": "A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean's surface where he confronts a mysterious force that has the power to change the world or destroy it.", + "posterPath": "/2dCit3XAtv9KWCJvRKdPkJ0FAkH.jpg", + "backdropPath": "/mW6XzxelLY8T2oW2NjciG9LpZT5.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 53, + 878 + ], + "genres": [ + "Adventure", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1989-08-09", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 3261, + "popularity": 9.4648 + }, + { + "id": 191714, + "title": "The Lunchbox", + "originalTitle": "The Lunchbox", + "overview": "A mistaken delivery in Mumbai's famously efficient lunchbox delivery system (Mumbai's Dabbawallahs) connects a young housewife to a stranger in the dusk of his life. They build a fantasy world together through notes in the lunchbox. Gradually, this fantasy threatens to overwhelm their reality.", + "posterPath": "/jSOiz1h97i3qwjZJXY8SeLvjPsl.jpg", + "backdropPath": "/lgrgEf43kYFm9mh6pj8ArcaxUbd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2013-09-20", + "releaseYear": "2013", + "originalLanguage": "hi", + "voteAverage": 7.358, + "voteCount": 768, + "popularity": 9.4626 + }, + { + "id": 77, + "title": "Memento", + "originalTitle": "Memento", + "overview": "Leonard Shelby is tracking down the man who raped and murdered his wife. The difficulty of locating his wife's killer, however, is compounded by the fact that he suffers from a rare, untreatable form of short-term memory loss. Although he can recall details of life before his accident, Leonard cannot remember what happened fifteen minutes ago, where he's going, or why.", + "posterPath": "/fKTPH2WvH8nHTXeBYBVhawtRqtR.jpg", + "backdropPath": "/8pwCb7amg8Tvr9FZZJGt7J4OwLV.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53 + ], + "genres": [ + "Mystery", + "Thriller" + ], + "releaseDate": "2000-10-11", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 8.178, + "voteCount": 15700, + "popularity": 9.4625 + }, + { + "id": 422972, + "title": "Kill Ratio", + "originalTitle": "Kill Ratio", + "overview": "An attack on the new President of a fledgling Eastern European democracy pits an American covert operative against the country’s ruthless military leader determined to seize control of the government.", + "posterPath": "/5q6PKPQtKEneE8nwM7LipGbNf0e.jpg", + "backdropPath": "/rAkavl0a6tMz9hXzWOhnJULKp9G.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2016-12-09", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 4.172, + "voteCount": 32, + "popularity": 9.4622 + }, + { + "id": 929170, + "title": "Honor Society", + "originalTitle": "Honor Society", + "overview": "Honor is an ambitious high school senior whose sole focus is getting into Harvard, assuming she can first score the coveted recommendation from her guidance counselor, Mr. Calvin. Willing to do whatever it takes, Honor concocts a Machiavellian-like plan to take down her top three student competitors, until things take a turn when she unexpectedly falls for her biggest competition, Michael.", + "posterPath": "/61CZ4JxyaI462sFfLPhtyzRg4vv.jpg", + "backdropPath": "/7RE3dqDcafLRPj3W2q7EJ3ybIm7.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2022-07-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 413, + "popularity": 9.4595 + }, + { + "id": 1195631, + "title": "William Tell", + "originalTitle": "William Tell", + "overview": "The narrative unfolds in the 14th Century, when the European nations vie for supremacy within the Holy Roman Empire. The ambitious Austrian Empire, desiring more land, invades neighbouring Switzerland, a serene and pastoral nation. Protagonist William Tell, a formerly peaceful hunter, finds himself forced to take action as his family and homeland come under threat from the oppressive Austrian King and his ruthless warlords.", + "posterPath": "/8SdaetXSTPyQVDb5pTEPRLBSx15.jpg", + "backdropPath": "/bP6BqIljp4a3BqhxN7YPckcpKI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18, + 36 + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "History" + ], + "releaseDate": "2025-01-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.245, + "voteCount": 190, + "popularity": 9.4588 + }, + { + "id": 870028, + "title": "The Accountant²", + "originalTitle": "The Accountant²", + "overview": "When an old acquaintance is murdered, Wolff is compelled to solve the case. Realizing more extreme measures are necessary, Wolff recruits his estranged and highly lethal brother, Brax, to help. In partnership with Marybeth Medina, they uncover a deadly conspiracy, becoming targets of a ruthless network of killers who will stop at nothing to keep their secrets buried.", + "posterPath": "/lUvfTcOZiK0sdcX0WNLPbMyKjGm.jpg", + "backdropPath": "/yBDvgpyynDsbMyK21FoQu1c2wYR.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 80, + 53 + ], + "genres": [ + "Mystery", + "Crime", + "Thriller" + ], + "releaseDate": "2025-04-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.126, + "voteCount": 1486, + "popularity": 9.4556 + }, + { + "id": 118, + "title": "Charlie and the Chocolate Factory", + "originalTitle": "Charlie and the Chocolate Factory", + "overview": "A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.", + "posterPath": "/iKP6wg3c6COUe8gYutoGG7qcPnO.jpg", + "backdropPath": "/atoIgfAk2Ig2HFJLD0VUnjiPWEz.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 10751, + 14 + ], + "genres": [ + "Adventure", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2005-07-13", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 15772, + "popularity": 9.4529 + }, + { + "id": 931349, + "title": "Ash", + "originalTitle": "Ash", + "overview": "On the mysterious planet of Ash, Riya awakens to find her crew slaughtered. When a man named Brion arrives to rescue her, an ordeal of psychological and physical terror ensues while Riya and Brion must decide if they can trust one another to survive.", + "posterPath": "/nRa8B3tQCUK6pVwjasIyQehbvpF.jpg", + "backdropPath": "/9KSGUPHZpqhqkRXE2eebu701ONU.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "2025-03-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.201, + "voteCount": 381, + "popularity": 9.4495 + }, + { + "id": 1339658, + "title": "Oh, Hi!", + "originalTitle": "Oh, Hi!", + "overview": "Iris and Isaac's first romantic weekend getaway as a couple goes awry. Convinced she's met her perfect guy and that he's just confused, Iris goes to increasingly ridiculous and irrational lengths to prove to Isaac that they are meant to be together.", + "posterPath": "/8nBOFo78pKgzLipgGZhC8VA33wp.jpg", + "backdropPath": "/1YeNl4OexgoTqCbwXEYg4ujZmYt.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 53 + ], + "genres": [ + "Romance", + "Comedy", + "Thriller" + ], + "releaseDate": "2025-07-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 81, + "popularity": 9.442 + }, + { + "id": 9631, + "title": "The Negotiator", + "originalTitle": "The Negotiator", + "overview": "The police try to arrest expert hostage negotiator Danny Roman, who insists he's being framed for his partner's murder in what he believes is an elaborate conspiracy. Thinking there's evidence in the Internal Affairs offices that might clear him, he takes everyone in the office hostage and demands that another well-known negotiator be brought in to handle the situation and secretly investigate the conspiracy.", + "posterPath": "/dUMHEymATOGbs2K3E4dmNSVBgFQ.jpg", + "backdropPath": "/y4TbQOC9DCzZop9HwKuX73rKbYO.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1998-07-29", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.103, + "voteCount": 2273, + "popularity": 9.4391 + }, + { + "id": 401732, + "title": "Delirium", + "originalTitle": "Delirium", + "overview": "A group of young men dare a classmate to reach the porch of a legendary old house, said to be haunted by the thirteen victims of a family massacre. In hopes of making a viral video they arm him with a video camera to prove he was there or to capture him fleeing in terror before even reaching the house, as others have. When he doesn't return, the guys must go in to get him. Inside they discover the truth about the house, the fate of their friend and their own fate as well.", + "posterPath": "/dm5fao26h6BcxbIxBFMF9XKvUre.jpg", + "backdropPath": "/nLDznZbtOaQULLwYiEvr1oejL7E.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2018-01-19", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.735, + "voteCount": 49, + "popularity": 9.4289 + }, + { + "id": 1621, + "title": "Trading Places", + "originalTitle": "Trading Places", + "overview": "A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.", + "posterPath": "/8mBuLCOcpWnmYtZc4aqtvDXslv6.jpg", + "backdropPath": "/2pViauhiZLhAUb1lsY6wRir69SF.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1983-06-07", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.224, + "voteCount": 3495, + "popularity": 9.4175 + }, + { + "id": 2280, + "title": "Big", + "originalTitle": "Big", + "overview": "When a young boy makes a wish at a carnival machine to be big—he wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman.", + "posterPath": "/eWhCDJiwxvx3YXkAFRiHjimnF0j.jpg", + "backdropPath": "/dGbBnTYxdHf1qyUgHsuFpxn1K4E.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 35, + 10749, + 10751 + ], + "genres": [ + "Fantasy", + "Drama", + "Comedy", + "Romance", + "Family" + ], + "releaseDate": "1988-06-03", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.179, + "voteCount": 3842, + "popularity": 9.4114 + }, + { + "id": 435615, + "title": "Possessor", + "originalTitle": "Possessor", + "overview": "Tasya Vos, an elite corporate assassin, uses brain-implant technology to take control of other people’s bodies to terminate high profile targets. As she sinks deeper into her latest assignment, Vos becomes trapped inside a mind that threatens to obliterate her.", + "posterPath": "/xC9GZeJZ3NagdkGg9nLQx0aPG6J.jpg", + "backdropPath": "/owTL741kAuvJDKYnXKJCgTRGRud.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 878 + ], + "genres": [ + "Horror", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 985, + "popularity": 9.3779 + }, + { + "id": 417870, + "title": "Girls Trip", + "originalTitle": "Girls Trip", + "overview": "Four girlfriends take a trip to New Orleans for an annual festival and, along the way, rediscover their wild sides and strengthen the bonds of sisterhood.", + "posterPath": "/mdsHCFt2PeZacEr38y2p5RRf6Hl.jpg", + "backdropPath": "/nWKOp57cAzdgGXZ2BN5AElVfujN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 12 + ], + "genres": [ + "Comedy", + "Romance", + "Adventure" + ], + "releaseDate": "2017-07-21", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 1542, + "popularity": 9.3717 + }, + { + "id": 38055, + "title": "Megamind", + "originalTitle": "Megamind", + "overview": "After Megamind, a highly intelligent alien supervillain, defeats his long-time nemesis Metro Man, Megamind creates a new hero to fight, but must act to save the city when his \"creation\" becomes an even worse villain than he was.", + "posterPath": "/uZ9ytt3sPTx62XTfN56ILSuYWRe.jpg", + "backdropPath": "/irpJXGiVr539uuspcQcNdkhS2lq.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 35, + 10751, + 878 + ], + "genres": [ + "Animation", + "Action", + "Comedy", + "Family", + "Science Fiction" + ], + "releaseDate": "2010-10-28", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 7232, + "popularity": 9.3706 + }, + { + "id": 631843, + "title": "Old", + "originalTitle": "Old", + "overview": "A group of families on a tropical holiday discover that the secluded beach where they are staying is somehow causing them to age rapidly – reducing their entire lives into a single day.", + "posterPath": "/vclShucpUmPhdAOmKgf3B3Z4POD.jpg", + "backdropPath": "/32yqxyLlWcO81UCx51Jfq9aeJdA.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648, + 27 + ], + "genres": [ + "Thriller", + "Mystery", + "Horror" + ], + "releaseDate": "2021-07-21", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 4724, + "popularity": 9.3693 + }, + { + "id": 44741, + "title": "Malicious", + "originalTitle": "Malizia", + "overview": "A widower and two of his sons become infatuated by their beautiful housekeeper, and all three set out to seduce her using their own unique methods.", + "posterPath": "/s1ioOR6IZ6pRN59wEIYCPcY6vW8.jpg", + "backdropPath": "/uP0iKp8gFl5AUCxfCtYIhrjJY5K.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1973-03-29", + "releaseYear": "1973", + "originalLanguage": "it", + "voteAverage": 7.279, + "voteCount": 342, + "popularity": 9.3654 + }, + { + "id": 110143, + "title": "Craving Desire", + "originalTitle": "Graffiante desiderio", + "overview": "Luigi, who is engaged to a rich bourgeois, Cinzia, meets his lovely cousin, Sonia, at the cremation of their grandmother. Six months later, Sonia moves in and enters his life, and gradually succeeds in seducing him. Sonia upsets his life. Now, Cinzia is jealous but he can not resist the seductress.", + "posterPath": "/b79ozXY3NkPauD33xcdxm3s7yoA.jpg", + "backdropPath": "/zI1PxY361Yeys7qBvjoVjTcQOq.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1993-06-09", + "releaseYear": "1993", + "originalLanguage": "it", + "voteAverage": 4.721, + "voteCount": 34, + "popularity": 9.358 + }, + { + "id": 6537, + "title": "The Orphanage", + "originalTitle": "El orfanato", + "overview": "A woman brings her family back to her childhood home, which used to be an orphanage, intent on reopening it. Before long, her son starts to communicate with a new invisible friend.", + "posterPath": "/vIpi1KtHLXUOfSVC2m6MqpjSPgL.jpg", + "backdropPath": "/g6pNnKmvTkNlEvn0ScwstYvhFE.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 53 + ], + "genres": [ + "Horror", + "Drama", + "Thriller" + ], + "releaseDate": "2007-05-20", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 7.229, + "voteCount": 3021, + "popularity": 9.3553 + }, + { + "id": 38365, + "title": "Grown Ups", + "originalTitle": "Grown Ups", + "overview": "After their high school basketball coach passes away, five good friends and former teammates reunite for a Fourth of July holiday weekend.", + "posterPath": "/cQGM5k1NtU85n4TUlrOrwijSCcm.jpg", + "backdropPath": "/kARonxQpuSZdFraTKlCThWOBCtu.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2010-06-24", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 6464, + "popularity": 9.3427 + }, + { + "id": 537915, + "title": "After", + "originalTitle": "After", + "overview": "Tessa Young is a dedicated student, dutiful daughter and loyal girlfriend to her high school sweetheart. Entering her first semester of college, Tessa's guarded world opens up when she meets Hardin Scott, a mysterious and brooding rebel who makes her question all she thought she knew about herself -- and what she wants out of life.", + "posterPath": "/u3B2YKUjWABcxXZ6Nm9h10hLUbh.jpg", + "backdropPath": "/997ToEZvF2Obp9zNZbY5ELVnmrW.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2019-04-11", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 8440, + "popularity": 9.3341 + }, + { + "id": 483906, + "title": "Polar", + "originalTitle": "Polar", + "overview": "When a retiring assassin realizes that he is the target of a hit, he winds up back in the game going head to head with a gang of younger, ruthless killers.", + "posterPath": "/qOBEpKVLl8Q9CZScbOcRRVISezV.jpg", + "backdropPath": "/lSCKo6QGJ88Gn3espNnvL87CinA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "2019-01-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 2381, + "popularity": 9.3282 + }, + { + "id": 1241894, + "title": "Woodwalkers", + "originalTitle": "Woodwalkers", + "overview": "Humans who can shapeshift into animals struggle to integrate with others without giving away their special abilities. As a group, they strive to inform and institute change in the world perspective of deforestation and the importance of natural habitats. However, when that can’t happen, they are forced to take matters into their own hands.", + "posterPath": "/bC1r04ohuxv5feaGDzQ0lXz7Bbl.jpg", + "backdropPath": "/d53MM15mO9EEiHzNlfvJK0otaaM.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14 + ], + "genres": [ + "Family", + "Fantasy" + ], + "releaseDate": "2024-10-17", + "releaseYear": "2024", + "originalLanguage": "de", + "voteAverage": 6.3, + "voteCount": 59, + "popularity": 9.3264 + }, + { + "id": 615173, + "title": "The Witch: Part 2. The Other One", + "originalTitle": "마녀(魔女) Part2. The Other One", + "overview": "A girl wakes up in a huge secret laboratory, then accidentally meets another girl who is trying to protect her house from a gang. The mystery girl overthrows the gang with her unexpected powers, and laboratory staff set out to find her.", + "posterPath": "/9YTuscJXmr9Iua62amCgGSU8PDW.jpg", + "backdropPath": "/iryef4LKiPQkvhNJS1EtLlay3br.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 9648, + 53, + 878 + ], + "genres": [ + "Action", + "Mystery", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2022-06-15", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 7.355, + "voteCount": 406, + "popularity": 9.3244 + }, + { + "id": 1153714, + "title": "Death of a Unicorn", + "originalTitle": "Death of a Unicorn", + "overview": "A father and daughter accidentally hit and kill a unicorn while en route to a weekend retreat, where his billionaire boss seeks to exploit the creature’s miraculous curative properties.", + "posterPath": "/xWlF2i51zUq7BUq4iJte1g9NyIM.jpg", + "backdropPath": "/4rLaMBcCJ1pMq72vCulBMPsbAyh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14, + 35 + ], + "genres": [ + "Horror", + "Fantasy", + "Comedy" + ], + "releaseDate": "2025-03-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 627, + "popularity": 9.3235 + }, + { + "id": 1255788, + "title": "The Gardener", + "originalTitle": "Le Jardinier", + "overview": "Every year the Prime Minister has a list of all kinds of troublemakers eliminated in the name of the famous Reason of State. Serge Shuster, Special Adviser to the President of the Republic, finds himself on this list, better known as the Matignon List. Condemned to certain death and at the heart of an implacable plot and a state secret that also put his family in danger, Serge, his wife and children have only one hope left - their gardener, Léo, who hates it when « slugs » invade his garden... Especially those that want to kill innocent families.", + "posterPath": "/5T9WR7vIOnHm6xhVt5zBuPbBgt1.jpg", + "backdropPath": "/HGmX2QmO1a67a1awAfHFEnDCiF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2025-01-30", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.163, + "voteCount": 172, + "popularity": 9.3222 + }, + { + "id": 458594, + "title": "Peppermint", + "originalTitle": "Peppermint", + "overview": "A grieving mother transforms herself into a vigilante following the murders of her husband and daughter, eluding the authorities to deliver her own personal brand of justice.", + "posterPath": "/jrzxS0vcbzIIay1sdYm0rgI2QfJ.jpg", + "backdropPath": "/14HPHJnNUVAdbYKnG46WnBh4OD6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2018-09-06", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 2162, + "popularity": 9.3189 + }, + { + "id": 553, + "title": "Dogville", + "originalTitle": "Dogville", + "overview": "A woman on the run from the mob is reluctantly accepted in a small Colorado community in exchange for labor, but when a search visits the town, she learns that their support has a price.", + "posterPath": "/lraVawavIXh5geMlVjpzCw9TGwR.jpg", + "backdropPath": "/r3xsFBD1VTUusk393bBc7SsDUJe.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2003-05-21", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 2582, + "popularity": 9.312 + }, + { + "id": 122192, + "title": "The Lookout", + "originalTitle": "Le Guetteur", + "overview": "When police is about to apprehend a famous gang of bank robbers, an elite sniper opens fire from a roof, thus facilitating the flee of his accomplices. However, one of them is seriously injured, which compromises the plans of the thieves.", + "posterPath": "/jLy3x4zEHrMeWtKzBcpsx4WLdH3.jpg", + "backdropPath": "/dsVgmBCPaTs4ugO0ctH6g2jaCWC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 9648 + ], + "genres": [ + "Action", + "Crime", + "Mystery" + ], + "releaseDate": "2012-09-05", + "releaseYear": "2012", + "originalLanguage": "fr", + "voteAverage": 5.552, + "voteCount": 124, + "popularity": 9.3116 + }, + { + "id": 1051486, + "title": "Stockholm Bloodbath", + "originalTitle": "Stockholm Bloodbath", + "overview": "In 1520, the notorious and power-hungry Danish King Christian II is determined to seize the Swedish crown from Sten Sture, no matter what it takes. Meanwhile, sisters Freja and Anne make a solemn promise to seek revenge on the men who brutally murdered their family. Everything comes to a head in the heart of Stockholm, where the sisters are drawn into a ruthless political struggle between Sweden and Denmark that culminates in a mass execution, presided over by the mad King \"Christian the Tyrant,\" known as the Stockholm Bloodbath.", + "posterPath": "/tzXOB8nxO70SfSbOhrYcY94x6MI.jpg", + "backdropPath": "/6nCy4OrV7gxhDc3lBSUxkNALPej.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 36, + 18, + 12, + 10752 + ], + "genres": [ + "Action", + "History", + "Drama", + "Adventure", + "War" + ], + "releaseDate": "2024-01-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.179, + "voteCount": 39, + "popularity": 9.3044 + }, + { + "id": 792307, + "title": "Poor Things", + "originalTitle": "Poor Things", + "overview": "Brought back to life by an unorthodox scientist, a young woman runs off with a lawyer on a whirlwind adventure across the continents. Free from the prejudices of her times, she grows steadfast in her purpose to stand for equality and liberation.", + "posterPath": "/kCGlIMHnOm8JPXq3rXM6c5wMxcT.jpg", + "backdropPath": "/zh6IdheEYinU4TPtorWsjx6qPQE.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 10749, + 35 + ], + "genres": [ + "Science Fiction", + "Romance", + "Comedy" + ], + "releaseDate": "2023-12-07", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.656, + "voteCount": 5110, + "popularity": 9.3 + }, + { + "id": 670, + "title": "Oldboy", + "originalTitle": "올드보이", + "overview": "With no clue how he came to be imprisoned, drugged and tortured for 15 years, a desperate man seeks revenge on his captors.", + "posterPath": "/pWDtjs568ZfOTMbURQBYuT4Qxka.jpg", + "backdropPath": "/sdwjQEM869JFwMytTmvr6ggvaUl.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 9648, + 28 + ], + "genres": [ + "Drama", + "Thriller", + "Mystery", + "Action" + ], + "releaseDate": "2003-11-21", + "releaseYear": "2003", + "originalLanguage": "ko", + "voteAverage": 8.246, + "voteCount": 9377, + "popularity": 9.298 + }, + { + "id": 566525, + "title": "Shang-Chi and the Legend of the Ten Rings", + "originalTitle": "Shang-Chi and the Legend of the Ten Rings", + "overview": "Shang-Chi must confront the past he thought he left behind when he is drawn into the web of the mysterious Ten Rings organization.", + "posterPath": "/d08HqqeBQSwN8i8MEvpsZ8Cb438.jpg", + "backdropPath": "/fJbWgOb9pSQXihM9m10bRvl2dJ8.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2021-09-01", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 10049, + "popularity": 9.2968 + }, + { + "id": 451500, + "title": "Christmas & Co.", + "originalTitle": "Santa & Cie", + "overview": "Christmas is on its way and with it disaster. The 92,000 responsible for manufacturing children's toys all become sick at the same time! It's a tough moment for Santa, better known as Father Christmas. He's left no choice: he must make an emergency trip to Earth with his reindeer to search for a remedy. When he arrives, he must find some allies to save the magic of Christmas.", + "posterPath": "/sRsrP5iowmCGV2IvVWMga1EmHZA.jpg", + "backdropPath": "/uc369Ws3HHY4NXCgs2hwb5pjrGN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 10751 + ], + "genres": [ + "Comedy", + "Fantasy", + "Family" + ], + "releaseDate": "2017-12-06", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.28, + "voteCount": 659, + "popularity": 9.2902 + }, + { + "id": 504056, + "title": "Big Brother", + "originalTitle": "大師兄", + "overview": "A soldier-turned-high school teacher uses unusual methods to reach to a class of poor students, while dealing with a greedy entrepreneur and his gang of fighters as well as the government.", + "posterPath": "/z6Y6uQn2fORr7o43EggQrTsp08o.jpg", + "backdropPath": "/5MyjGUa2piiEyNH4UcLp3YV9cwo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 35 + ], + "genres": [ + "Action", + "Drama", + "Comedy" + ], + "releaseDate": "2018-08-16", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 7.342, + "voteCount": 203, + "popularity": 9.2898 + }, + { + "id": 257344, + "title": "Pixels", + "originalTitle": "Pixels", + "overview": "Video game experts are recruited by the military to fight 1980s-era video game characters who've attacked New York.", + "posterPath": "/d26S5EfVXLNxRXqyFy1yyl3qRq3.jpg", + "backdropPath": "/41Y3h2FVfoU4baFdTZwRrlD4MDM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 878, + 14 + ], + "genres": [ + "Action", + "Comedy", + "Science Fiction", + "Fantasy" + ], + "releaseDate": "2015-07-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 7837, + "popularity": 9.2848 + }, + { + "id": 835017, + "title": "Varisu", + "originalTitle": "வாரிசு", + "overview": "Vijay, The prodigal son of business tycoon Rajendran agrees to take over the reins of the business, much to the chagrin of his brothers. But can Vijay prove himself to be a worthy varisu and also reunite his now-broken family?", + "posterPath": "/iMUIsV6u0pPqfv1j8tGxbJw40sw.jpg", + "backdropPath": "/fjd6RKx4Zh8UKQfjpSSkM53eJw6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12 + ], + "genres": [ + "Action", + "Adventure" + ], + "releaseDate": "2023-01-11", + "releaseYear": "2023", + "originalLanguage": "ta", + "voteAverage": 5.2, + "voteCount": 55, + "popularity": 9.2817 + }, + { + "id": 1832, + "title": "Dogma", + "originalTitle": "Dogma", + "overview": "An abortion clinic worker with a special heritage is called upon to save the existence of humanity from being negated by two renegade angels trying to exploit a loophole and reenter Heaven.", + "posterPath": "/xI5beD8Td79E2uZNAxgd1gWWOEd.jpg", + "backdropPath": "/wXzdoMyLYvz7AoXPGx5STZ1XZDd.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 12 + ], + "genres": [ + "Fantasy", + "Comedy", + "Adventure" + ], + "releaseDate": "1999-10-04", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.92, + "voteCount": 2693, + "popularity": 9.281 + }, + { + "id": 10510, + "title": "Miracle on 34th Street", + "originalTitle": "Miracle on 34th Street", + "overview": "Six-year-old Susan Walker has doubts about childhood's most enduring miracle—Santa Claus. Her mother told her the secret about Santa a long time ago, but, after meeting a special department store Santa who's convinced he's the real thing, Susan is given the most precious gift of all—something to believe in.", + "posterPath": "/iUTPKkljdEjPlcPPYgbUz7APnHu.jpg", + "backdropPath": "/oU0lGpUukjNOgZeuIqueNM3QiBE.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 10751 + ], + "genres": [ + "Fantasy", + "Drama", + "Family" + ], + "releaseDate": "1994-11-18", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.743, + "voteCount": 1097, + "popularity": 9.2771 + }, + { + "id": 42604, + "title": "Goodbye, Columbus", + "originalTitle": "Goodbye, Columbus", + "overview": "A Jewish man and a Jewish woman meet, and while attracted to each other, find that their worlds are very different. She is the archetypal Jewish American Princess — very emotionally involved with her parents' world and the world they have created for her, while he is much less dependent on his family. They begin an affair which brings more differences to the surface.", + "posterPath": "/yEfA6HiXipVZdHvxiagV6MxuDNS.jpg", + "backdropPath": "/aiiWgt80uOVvW72eXOYAurZ79RR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1969-05-21", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 5.35, + "voteCount": 30, + "popularity": 9.2754 + }, + { + "id": 920, + "title": "Cars", + "originalTitle": "Cars", + "overview": "Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters.", + "posterPath": "/2Touk3m5gzsqr1VsvxypdyHY5ci.jpg", + "backdropPath": "/sd4xN5xi8tKRPrJOWwNiZEile7f.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2006-06-08", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.016, + "voteCount": 14709, + "popularity": 9.2715 + }, + { + "id": 1338799, + "title": "JUJUTSU KAISEN: Hidden Inventory / Premature Death - The Movie", + "originalTitle": "劇場版総集編 呪術廻戦 懐玉・玉折", + "overview": "Pursued by a religious cult and other curse users, former friends Satoru Gojo and Suguru Geto are the only sorcerers capable of carrying the difficult task of protecting Riko Amanai, a student who has been designated to be sacrificed as the Star Plasma Vessel, until she can fulfill her duty.", + "posterPath": "/kZkyr1sRzarENrxjtltPvmHRrTk.jpg", + "backdropPath": "/w8j0HVX7xasNVGAva2T3W4ncoN4.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14 + ], + "genres": [ + "Animation", + "Action", + "Fantasy" + ], + "releaseDate": "2025-05-30", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.32, + "voteCount": 24, + "popularity": 9.2507 + }, + { + "id": 1158616, + "title": "Guess Who's Calling!", + "originalTitle": "Le Répondeur", + "overview": "Baptiste, a talented imitator, is unable to make a living from his art. One day, he is approached by Pierre Chozène, a famous but discreet novelist, constantly disturbed by incessant calls from his publisher, his daughter, his ex-wife... Pierre, who needs peace and quiet to write his most ambitious text, then suggests that Baptiste become his 'answering machine' by pretending to be him on the phone... Little by little, Baptiste doesn't just imitate the writer: he develops his character!", + "posterPath": "/bQDjUA3Yol0Rwux2BCAyt4YYfyg.jpg", + "backdropPath": "/rNoIF5gIpY6pz03lIF5kJK87J9p.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-06-04", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.479, + "voteCount": 47, + "popularity": 9.2492 + }, + { + "id": 9637, + "title": "Scooby-Doo", + "originalTitle": "Scooby-Doo", + "overview": "When the Mystery Inc. gang is invited to Spooky Island, a popular amusement park, they soon discover that the attractions aren't the only things that are spooky. Strange things are happening, and it's up to Scooby, Shaggy, Fred, Daphne, and Velma to uncover the truth behind the mysterious happenings.", + "posterPath": "/mTAiBJGg8mqEfnYHHbi37ZoRSZm.jpg", + "backdropPath": "/1RAxtBxslR4OZCZC1vxIRUxjR7a.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 12, + 35 + ], + "genres": [ + "Mystery", + "Adventure", + "Comedy" + ], + "releaseDate": "2002-06-14", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.095, + "voteCount": 4645, + "popularity": 9.2491 + }, + { + "id": 520901, + "title": "Doom: Annihilation", + "originalTitle": "Doom: Annihilation", + "overview": "A group of UAC Marines responds to a distress call from a top-secret scientific base on Phobos, a Martian moon, only to discover it's been overrun by demons.", + "posterPath": "/b7pEmwnayMZCVlnSq33izWcOlPI.jpg", + "backdropPath": "/iODdFR98xOeOzj95ptMKnCkhniN.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 27 + ], + "genres": [ + "Action", + "Science Fiction", + "Horror" + ], + "releaseDate": "2019-09-30", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.941, + "voteCount": 450, + "popularity": 9.246 + }, + { + "id": 1300116, + "title": "Fall for Me", + "originalTitle": "Fall for Me", + "overview": "Lilli is suspicious of her sister's new fiance, but when an attractive stranger enters her life, she's suddenly distracted by the thralls of desire.", + "posterPath": "/mduZ3YRKele4rHhrse7b7B3d44b.jpg", + "backdropPath": "/xd7YqovQSLBY7dbptsz2bPgL0ym.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 53 + ], + "genres": [ + "Romance", + "Thriller" + ], + "releaseDate": "2025-08-20", + "releaseYear": "2025", + "originalLanguage": "de", + "voteAverage": 6.152, + "voteCount": 161, + "popularity": 9.2433 + }, + { + "id": 290098, + "title": "The Handmaiden", + "originalTitle": "아가씨", + "overview": "1930s Korea, in the period of Japanese occupation, a new girl, Sookee, is hired as a handmaiden to a Japanese heiress, Hideko, who lives a secluded life on a large countryside estate with her domineering Uncle Kouzuki. But the maid has a secret. She is a pickpocket recruited by a swindler posing as a Japanese Count to help him seduce the Lady to steal her fortune.", + "posterPath": "/dLlH4aNHdnmf62umnInL8xPlPzw.jpg", + "backdropPath": "/jnFmHDHmPZrQ7vyHmxXHcoxp25j.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 10749 + ], + "genres": [ + "Thriller", + "Drama", + "Romance" + ], + "releaseDate": "2016-06-01", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 4102, + "popularity": 9.2407 + }, + { + "id": 138697, + "title": "Don Jon", + "originalTitle": "Don Jon", + "overview": "A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.", + "posterPath": "/uh8bwvgGXeUKzdL4oSul9zxyTcd.jpg", + "backdropPath": "/4QBI1pdjr2hH1fgC8NqwZZnWNso.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 18 + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ], + "releaseDate": "2013-09-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.014, + "voteCount": 4468, + "popularity": 9.2404 + }, + { + "id": 782, + "title": "Gattaca", + "originalTitle": "Gattaca", + "overview": "Vincent is an all-too-human man who dares to defy a system obsessed with genetic perfection. He is an \"In-Valid\" who assumes the identity of a member of the genetic elite to pursue his goal of traveling into space with the Gattaca Aerospace Corporation.", + "posterPath": "/eSKr5Fl1MEC7zpAXaLWBWSBjgJq.jpg", + "backdropPath": "/hPsCR1ny6GnctJkWqeJwihTDD7T.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878, + 9648, + 10749 + ], + "genres": [ + "Thriller", + "Science Fiction", + "Mystery", + "Romance" + ], + "releaseDate": "1997-09-07", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.562, + "voteCount": 6685, + "popularity": 9.2376 + }, + { + "id": 9387, + "title": "Conan the Barbarian", + "originalTitle": "Conan the Barbarian", + "overview": "A horde of rampaging warriors massacre the parents of young Conan and enslave the young child for years on The Wheel of Pain. As the sole survivor of the childhood massacre, Conan is released from slavery and taught the ancient arts of fighting. Transforming himself into a killing machine, Conan travels into the wilderness to seek vengeance on Thulsa Doom, the man responsible for killing his family. In the wilderness, Conan takes up with the thieves Valeria and Subotai. The group comes upon King Osric, who wants the trio of warriors to help rescue his daughter who has joined Doom in the hills.", + "posterPath": "/qw2A587Ee61IwcSOLNFRhuOACZZ.jpg", + "backdropPath": "/6cYPpzjHcxcSaXEQc8s3sMbcfZS.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "1982-03-16", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.808, + "voteCount": 2670, + "popularity": 9.2332 + }, + { + "id": 22373, + "title": "Saturn in Opposition", + "originalTitle": "Saturno contro", + "overview": "This film focuses on contemporary 30- and 40-somethings trying to make sense of their lives in an age in which the old certainties have disappeared. Lorenzo and Davide make their lives together within a circle that includes Antonio and Angelica, married with children; Nerval and her policeman husband.", + "posterPath": "/qpzR06PrVDaJGBaSngEMUhVhhw.jpg", + "backdropPath": "/xLjv2ah3MeLrkm6EoViJR9ZGznj.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-02-23", + "releaseYear": "2007", + "originalLanguage": "it", + "voteAverage": 6.9, + "voteCount": 395, + "popularity": 9.2327 + }, + { + "id": 253626, + "title": "Good Kill", + "originalTitle": "Good Kill", + "overview": "In the shadowy world of drone warfare, combat unfolds like a video game–only with real lives at stake. After six tours of duty, Air Force pilot Tom Egan now fights the Taliban from an air-conditioned bunker in the Nevada desert. But as he yearns to get back in the cockpit of a real plane and becomes increasingly troubled by the collateral damage he causes each time he pushes a button, Egan’s nerves—and his relationship with his wife—begin to unravel.", + "posterPath": "/oO9nK1bqssxRdNHFSFGiucffiA8.jpg", + "backdropPath": "/7ghhzg8fFDVPJoB8ImahndG0wwL.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10752 + ], + "genres": [ + "Drama", + "Thriller", + "War" + ], + "releaseDate": "2015-04-09", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.965, + "voteCount": 583, + "popularity": 9.2265 + }, + { + "id": 1379587, + "title": "Utopia", + "originalTitle": "Utopia", + "overview": "A soldier searching for his missing wife breaks into a high-tech facility, believing she's been caught in a human trafficking ring. But beyond its walls, he finds a surreal, futuristic fantasy park where reality and illusion blur. As he navigates this seductive and dangerous world, a shocking truth pulls him deeper into a deadly game where nothing is as it seems.", + "posterPath": "/yef0tY1Nw3BX8PJTfBLieqHj5Hw.jpg", + "backdropPath": "/79tWkw0oc4Az96bzw5jGsMI05DS.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 28, + 878 + ], + "genres": [ + "Mystery", + "Thriller", + "Action", + "Science Fiction" + ], + "releaseDate": "2024-12-09", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.427, + "voteCount": 55, + "popularity": 9.2224 + }, + { + "id": 298618, + "title": "The Flash", + "originalTitle": "The Flash", + "overview": "When his attempt to save his family inadvertently alters the future, Barry Allen becomes trapped in a reality in which General Zod has returned and there are no Super Heroes to turn to. In order to save the world that he is in and return to the future that he knows, Barry's only hope is to race for his life. But will making the ultimate sacrifice be enough to reset the universe?", + "posterPath": "/rktDFPbfHfUbArZ6OOOKsXcv0Bm.jpg", + "backdropPath": "/yF1eOkaYvwiORauRCPWznV9xVvi.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2023-06-13", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.621, + "voteCount": 4776, + "popularity": 9.2164 + }, + { + "id": 1479945, + "title": "Wicked: One Wonderful Night", + "originalTitle": "Wicked: One Wonderful Night", + "overview": "Cynthia Erivo and Ariana Grande lead a one-time-only, two-hour special featuring electrifying performances alongside their Wicked: For Good co-stars for a night of reimagined musical arrangements, cast interviews, behind-the-scenes moments, exclusive surprises, and a sneak peek at Wicked: For Good.", + "posterPath": "/vI8gfZVhPnYo0gjK6vSP7p3idpV.jpg", + "backdropPath": "/wf7CNDldqDKKJKLij3xzwwSRsEH.jpg", + "mediaType": "movie", + "genreIds": [ + 10402 + ], + "genres": [ + "Music" + ], + "releaseDate": "2025-11-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.324, + "voteCount": 17, + "popularity": 9.2154 + }, + { + "id": 1105407, + "title": "Damaged", + "originalTitle": "Damaged", + "overview": "A Chicago detective travels to Scotland after an emerging serial killer’s crimes match those that he investigated five years earlier, one of which was the crime scene of his murdered girlfriend.", + "posterPath": "/tMO0YLXgJZBnIAjoTSz26zE33YN.jpg", + "backdropPath": "/hPU12uDcsVyaz368yjxa4BjDHXB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53, + 80 + ], + "genres": [ + "Action", + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2024-04-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.658, + "voteCount": 310, + "popularity": 9.2057 + }, + { + "id": 930564, + "title": "Saltburn", + "originalTitle": "Saltburn", + "overview": "Struggling to find his place at Oxford University, student Oliver Quick finds himself drawn into the world of the charming and aristocratic Felix Catton, who invites him to Saltburn, his eccentric family's sprawling estate, for a summer never to be forgotten.", + "posterPath": "/zGTfMwG112BC66mpaveVxoWPOaB.jpg", + "backdropPath": "/bAtFhmRHp0f6aHqj1UGTZoPcmQo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 53 + ], + "genres": [ + "Drama", + "Comedy", + "Thriller" + ], + "releaseDate": "2023-11-16", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 2713, + "popularity": 9.2041 + }, + { + "id": 527435, + "title": "The Christmas Chronicles", + "originalTitle": "The Christmas Chronicles", + "overview": "Siblings Kate and Teddy try to prove Santa Claus is real, but when they accidentally cause his sleigh to crash, they have to save Christmas.", + "posterPath": "/5Il2EMSF2KecrUKZPuen6BZmaCP.jpg", + "backdropPath": "/brENMyyhk13WLzKHBK20rBKx0u7.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12, + 10751, + 14 + ], + "genres": [ + "Comedy", + "Adventure", + "Family", + "Fantasy" + ], + "releaseDate": "2018-11-22", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 2295, + "popularity": 9.1991 + }, + { + "id": 50546, + "title": "Just Go with It", + "originalTitle": "Just Go with It", + "overview": "While romancing Palmer, a much younger schoolteacher, plastic surgeon Danny Maccabee enlists his loyal assistant Katherine to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, Katherine's kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives.", + "posterPath": "/3rz7bfGsPGcI6cfY002n9VrUgao.jpg", + "backdropPath": "/aitUECW88Rve2mprcvwVchToE8A.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2011-02-10", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.705, + "voteCount": 5964, + "popularity": 9.1891 + }, + { + "id": 38199, + "title": "Unthinkable", + "originalTitle": "Unthinkable", + "overview": "The government gets wind of a plot to destroy America involving a trio of nuclear weapons for which the whereabouts are unknown. It's up to a seasoned interrogator and an FBI agent to find out exactly where the nukes are.", + "posterPath": "/6yQqguytl10FhImngDHV90Aqewa.jpg", + "backdropPath": "/p80dRTtTQE5U7FeDoJXanxFX2xO.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2010-05-26", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.802, + "voteCount": 1361, + "popularity": 9.1882 + }, + { + "id": 11619, + "title": "Flushed Away", + "originalTitle": "Flushed Away", + "overview": "London high-society mouse, Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs, Spike and Whitey.", + "posterPath": "/kgoZI4xh38RrEYEPVib6a12UPLn.jpg", + "backdropPath": "/7xQk3HdCvkNmk3gblDGn9fVnbsT.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 35, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2006-10-22", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 3983, + "popularity": 9.1882 + }, + { + "id": 1330443, + "title": "Strange Harvest", + "originalTitle": "Strange Harvest", + "overview": "Detectives are thrust into a chilling hunt for “Mr. Shiny”—a sadistic serial killer from the past whose return marks the beginning of a new wave of grotesque, otherworldly crimes tied to a dark cosmic force.", + "posterPath": "/fYe0FNJNy0EIb8q4JUMLbbSmCth.jpg", + "backdropPath": "/bSWw3XXqnT0m1kZzmEdozsfUvMQ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 80, + 9648 + ], + "genres": [ + "Horror", + "Crime", + "Mystery" + ], + "releaseDate": "2025-08-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 23, + "popularity": 9.1822 + }, + { + "id": 1607, + "title": "A Bronx Tale", + "originalTitle": "A Bronx Tale", + "overview": "Set in the Bronx during the tumultuous 1960s, an adolescent boy is torn between his honest, working-class father and a violent yet charismatic crime boss. Complicating matters is the youngster's growing attraction - forbidden in his neighborhood - for a beautiful black girl.", + "posterPath": "/sDbO6LmLYtyqAoFTPpRcMgPSCEO.jpg", + "backdropPath": "/krYelh3x8VdSeAqOSd81NTek1aw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1993-10-01", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.875, + "voteCount": 2703, + "popularity": 9.1803 + }, + { + "id": 61979, + "title": "Three Steps Above Heaven", + "originalTitle": "Tres metros sobre el cielo", + "overview": "Story of two young people who belong to different worlds. It is the chronicle of a love improbable, almost impossible but inevitable dragging in a frantic journey they discover the first great love. Babi is a girl from upper-middle class that is educated in goodness and innocence . Hache is a rebellious boy, impulsive, unconscious, has a appetite for risk and danger embodied in endless fights and illegal motorbike races, the limit of common sense", + "posterPath": "/nNoMfNPnvEzGADXDkP6eJAP81KB.jpg", + "backdropPath": "/2Mq10FWFbxoYgsZysWlw7T9wSNe.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2010-12-03", + "releaseYear": "2010", + "originalLanguage": "es", + "voteAverage": 7.724, + "voteCount": 3160, + "popularity": 9.1774 + }, + { + "id": 572802, + "title": "Aquaman and the Lost Kingdom", + "originalTitle": "Aquaman and the Lost Kingdom", + "overview": "Black Manta seeks revenge on Aquaman for his father's death. Wielding the Black Trident's power, he becomes a formidable foe. To defend Atlantis, Arthur (Aquaman) forges an alliance with his imprisoned brother. They must protect the kingdom.", + "posterPath": "/7lTnXOy0iNtBAdRP3TZvaKJ77F6.jpg", + "backdropPath": "/7S0bXv3BqCuPfImKRf5kkmBVYZR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2023-12-20", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.565, + "voteCount": 3287, + "popularity": 9.162 + }, + { + "id": 1115009, + "title": "Unsung Hero", + "originalTitle": "Unsung Hero", + "overview": "When David Smallbone's successful music company collapses, he moves his family from Australia to the United States in search of a brighter future. With nothing more than their six children, their suitcases, and their love of music, David and his pregnant wife Helen set out to rebuild their lives from the ground up. Based on a remarkable true story, a mum's faith stands against all odds; and inspires her husband and children to hold onto theirs.", + "posterPath": "/mtkAdP8l8Hx9bIF2JChLdpy3VQL.jpg", + "backdropPath": "/73X7Yj9JmAKynrkPyo4iOaDXlz9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 10751 + ], + "genres": [ + "Drama", + "Music", + "Family" + ], + "releaseDate": "2024-04-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.007, + "voteCount": 73, + "popularity": 9.1575 + }, + { + "id": 1028556, + "title": "Haul Out the Holly", + "originalTitle": "Haul Out the Holly", + "overview": "Emily arrives home, hoping to visit her parents, only to discover that they are leaving on a trip of their own. As she stays at their house for the holidays, their HOA is determined to get Emily to participate in the neighborhood’s many Christmas festivities.", + "posterPath": "/naX9S52wyTpUJPR80FIWhgxzufb.jpg", + "backdropPath": "/29qiSnPp8LN1vUomrMN3MMVwlUH.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 35, + 18, + 10749 + ], + "genres": [ + "TV Movie", + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2022-11-26", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.958, + "voteCount": 84, + "popularity": 9.1503 + }, + { + "id": 9769, + "title": "Lolita", + "originalTitle": "Lolita", + "overview": "Humbert Humbert is a middle-aged British novelist who is both appalled by and attracted to the vulgarity of American culture. When he comes to stay at the boarding house run by Charlotte Haze, he soon becomes obsessed with Lolita, the woman's teenaged daughter.", + "posterPath": "/9INcC14WZjCMKGE360VXmklCLdZ.jpg", + "backdropPath": "/bWftGh0aLMzb8wetgziLq3fHpTJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1997-09-27", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.119, + "voteCount": 1899, + "popularity": 9.1407 + }, + { + "id": 40343, + "title": "The House by the Lake", + "originalTitle": "Death Weekend", + "overview": "Harry is a rich dentist who often brings women up to his rural lakehouse. One weekend, he invites Diane, a former fashion model. On their way to the house, Diane runs a gang of thugs off the road. Humiliated, the thugs track down the couple for revenge.", + "posterPath": "/64WSTKOOknDQCd6slTwBqbN6UUD.jpg", + "backdropPath": "/xpbtcFg51CkVdOnO71Zcs5md3OY.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "1976-09-17", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 43, + "popularity": 9.1398 + }, + { + "id": 616331, + "title": "Adolescents", + "originalTitle": "Adolescentes", + "overview": "Emma and Anaïs are best friends and yet everything in their life seems to set them apart, their social backgrounds but also their personalities. From the age of thirteen to eighteen, Adolescentes follows the two teenagers during these years where radical transformations and first times punctuate daily life. Through their personal stories, the film offers a rare portrait of France and its recent history.", + "posterPath": "/t5yk0uV2gZcAZVWWzHsurTXbY5X.jpg", + "backdropPath": "/rB8OXmNpLpWUHD9YmKUMQGI5vcF.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2020-09-09", + "releaseYear": "2020", + "originalLanguage": "fr", + "voteAverage": 7.4, + "voteCount": 91, + "popularity": 9.1366 + }, + { + "id": 21380, + "title": "Night of the Zombies", + "originalTitle": "Virus", + "overview": "A rat causes a chemical leak at a Papua New Guinea research facility, leading a group of eco-terrorists to demand the closure of all facilities. When a team of Interpol commandos are enlisted to eliminate the terrorists, they find themselves embroiled in a zombie outbreak.", + "posterPath": "/wzpwd2GrLLJot4O1KVvvVK5rtLy.jpg", + "backdropPath": "/zqEpGruPgXFJcF0iIqLncqJQxfK.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1980-11-17", + "releaseYear": "1980", + "originalLanguage": "it", + "voteAverage": 5.3, + "voteCount": 148, + "popularity": 9.1359 + }, + { + "id": 458220, + "title": "Palmer", + "originalTitle": "Palmer", + "overview": "After 12 years in prison, former high school football star Eddie Palmer returns home to put his life back together—and forms an unlikely bond with Sam, an outcast boy from a troubled home. But Eddie's past threatens to ruin his new life and family.", + "posterPath": "/xSDdRAjxKAGi8fUBLOqSrBhJmF0.jpg", + "backdropPath": "/mlBmnjDJfsAhvqRVc2aFOjsfh8M.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-01-28", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.139, + "voteCount": 1830, + "popularity": 9.131 + }, + { + "id": 855, + "title": "Black Hawk Down", + "originalTitle": "Black Hawk Down", + "overview": "When U.S. Rangers and an elite Delta Force team attempt to kidnap two underlings of a Somali warlord, their Black Hawk helicopters are shot down, and the Americans suffer heavy casualties, facing intense fighting from the militia on the ground.", + "posterPath": "/7fU5dSqKRL4XHeEUz62rCKBfYok.jpg", + "backdropPath": "/o6f1sJ0ZYg6TA2tMgoHdupB68QB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752, + 36 + ], + "genres": [ + "Action", + "War", + "History" + ], + "releaseDate": "2001-12-28", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 6116, + "popularity": 9.1278 + }, + { + "id": 63577, + "title": "Sugar", + "originalTitle": "Le Sucre", + "overview": "Civil servant Adrien Courtois comes to Paris in order to make his money bear fruits.", + "posterPath": "/ksq39dVnwHAZQPyrFwxSdgPuQHd.jpg", + "backdropPath": "/loLZbGLVVsV5Uzg2oKZ7EOYGsil.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1978-10-15", + "releaseYear": "1978", + "originalLanguage": "fr", + "voteAverage": 6.7, + "voteCount": 38, + "popularity": 9.1241 + }, + { + "id": 484641, + "title": "Anna", + "originalTitle": "Anna", + "overview": "Beneath Anna Poliatova's striking beauty lies a secret that will unleash her indelible strength and skill to become one of the world's most feared government assassins.", + "posterPath": "/2U0oAVAE0lDRhNmJPPYhDW9kQ8t.jpg", + "backdropPath": "/xavGKawUyXPWAa6JTUkFzaRXMPF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2019-06-19", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.707, + "voteCount": 2868, + "popularity": 9.1149 + }, + { + "id": 720321, + "title": "Breathe", + "originalTitle": "Breathe", + "overview": "Air-supply is scarce in the near future, forcing a mother and daughter to fight for survival when two strangers arrive desperate for an oxygenated haven.", + "posterPath": "/wTW2t8ocWDlHns8I7vQxuqkyK58.jpg", + "backdropPath": "/v2oPRCnWADeQhEAAUKD7DfMdScP.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 9648, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Mystery", + "Thriller" + ], + "releaseDate": "2024-04-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.702, + "voteCount": 260, + "popularity": 9.1124 + }, + { + "id": 147632, + "title": "Hostage", + "originalTitle": "Hostage", + "overview": "Set in 1980's Australia, this is the true story of a woman whose husband eventually reveals to her that he is an active member of the Nazi party. A real nightmare begins for her.", + "posterPath": "/1A6vdPa8bB6n4OFbZEyIEgJSSbO.jpg", + "backdropPath": "/wTyIObRo7nCVyyVFOO8xeiIX1mP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1983-05-03", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 4.1, + "voteCount": 12, + "popularity": 9.1043 + }, + { + "id": 204082, + "title": "Homefront", + "originalTitle": "Homefront", + "overview": "Phil Broker is a former DEA agent who has gone through a crisis after his action against a biker gang went horribly wrong and it cost the life of his boss' son. He is recently widowed and is left with a 9-years-old daughter, Maddy. He decides to quit the turbulent and demanding life of thrill for Maddy's sake and retires to a small town. His daughter fights off a boy who was bullying her at school and this sets in motion a round of events that end in his direct confrontation with the local Meth drug lord. His past history with the biker gang also enters the arena, making matters more complex. But he has a mission in his mind to protect his daughter and he is ready to pay any cost that it demands.", + "posterPath": "/6pF8D9bDIAmuHgCqGKEfuNWRQam.jpg", + "backdropPath": "/kT8orKwz2bmRdHBLnG44yucYtFy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2013-11-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.942, + "voteCount": 3693, + "popularity": 9.0977 + }, + { + "id": 36670, + "title": "Never Say Never Again", + "originalTitle": "Never Say Never Again", + "overview": "James Bond returns as the secret agent 007 to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo's girlfriend, the willowy Domino, who falls for Bond and seeks revenge.", + "posterPath": "/zhoAL4o1STGgLbLxJ9r1ijfyHC9.jpg", + "backdropPath": "/45uCcAUB8Ljz3uKb1y1JHtT5aCT.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 53 + ], + "genres": [ + "Adventure", + "Action", + "Thriller" + ], + "releaseDate": "1983-10-07", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.053, + "voteCount": 1537, + "popularity": 9.0943 + }, + { + "id": 710717, + "title": "Good Boy", + "originalTitle": "Good Boy", + "overview": "When Maggie gets an emotional support dog to help quell some of her anxiety, she finds him to be even more effective than she imagined... because unbeknownst to her, he kills anyone who adds stress to her life.", + "posterPath": "/6rDcczFVBVb1q6Mck7HaoWo2J5n.jpg", + "backdropPath": "/dsKDGGEmaD1OlTcHzqSRXlhESVH.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27, + 53 + ], + "genres": [ + "Comedy", + "Horror", + "Thriller" + ], + "releaseDate": "2020-06-12", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 67, + "popularity": 9.0893 + }, + { + "id": 897160, + "title": "Brave Citizen", + "originalTitle": "용감한 시민", + "overview": "An expelled boxing champion, who now is a high-school teacher, witnesses intolerable violence and throws her first punch to build justice against it, while putting on a mask.", + "posterPath": "/ixQoOExnnvIxYvnqGgfhaWqXeXc.jpg", + "backdropPath": "/5d1sQtAKsbVjdUuzXWoh2vKtyy7.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 35 + ], + "genres": [ + "Action", + "Drama", + "Comedy" + ], + "releaseDate": "2023-10-25", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.403, + "voteCount": 93, + "popularity": 9.0792 + }, + { + "id": 136799, + "title": "Trolls", + "originalTitle": "Trolls", + "overview": "After the monstrous Bergens invade Troll Village, Princess Poppy, the happiest Troll ever born, and overly-cautious, curmudgeonly outcast Branch set off on a journey to rescue her friends. Their mission is full of adventure and mishaps, as this mismatched duo try to tolerate each other long enough to get the job done.", + "posterPath": "/9VlK2j0THZWzhQPq0W3Oc0IIdBB.jpg", + "backdropPath": "/gXyYOWAkk4FdQU3adK8WFj8nN9J.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 14, + 12, + 35, + 10402 + ], + "genres": [ + "Family", + "Animation", + "Fantasy", + "Adventure", + "Comedy", + "Music" + ], + "releaseDate": "2016-10-13", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 3729, + "popularity": 9.0769 + }, + { + "id": 249260, + "title": "Avalanche Sharks", + "originalTitle": "Avalanche Sharks", + "overview": "A snow avalanche awakens humungous, prehistoric sharks that proceed to chomp on bikini clad co-eds.", + "posterPath": "/c8XL1mLik4IdRsEpcPUdcm8RxR9.jpg", + "backdropPath": "/rZowlIsA2lZDnoS24UQs2bkYTkN.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 878, + 12, + 35 + ], + "genres": [ + "Horror", + "Action", + "Science Fiction", + "Adventure", + "Comedy" + ], + "releaseDate": "2012-01-12", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 3.4, + "voteCount": 108, + "popularity": 9.0757 + }, + { + "id": 10663, + "title": "The Waterboy", + "originalTitle": "The Waterboy", + "overview": "Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.", + "posterPath": "/miT42qWYC4D0n2mXNzJ9VfhheWW.jpg", + "backdropPath": "/bWfmsPRKJ9Skkh7pUOdoThR9zqO.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1998-11-06", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 1936, + "popularity": 9.0679 + }, + { + "id": 930094, + "title": "Red, White & Royal Blue", + "originalTitle": "Red, White & Royal Blue", + "overview": "After an altercation between Alex, the president's son, and Britain's Prince Henry at a royal event becomes tabloid fodder, their long-running feud now threatens to drive a wedge in U.S./British relations. When the rivals are forced into a staged truce, their icy relationship begins to thaw and the friction between them sparks something deeper than they ever expected.", + "posterPath": "/ta3ReqbdEcLJM3mcHMzbYFZI8v7.jpg", + "backdropPath": "/7QDWTqSGqI2Q5dOBtvT64MOhmwJ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2023-07-27", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 1458, + "popularity": 9.0621 + }, + { + "id": 20441, + "title": "Messengers 2: The Scarecrow", + "originalTitle": "Messengers 2: The Scarecrow", + "overview": "The family man farmer John Rollins is stressed with his financial situation: the crows and the lack of irrigation are destroying his crop of corn; the bank is near closure of his mortgage; he does not have credit to fix the water pump or to buy seeds; and his marriage is in crisis and his wife Mary is giving too much attention to her friend Tommy. When John accidentally discovers a hidden compartment in the barn, he finds a creepy scarecrow but his son Michael makes him promise to destroy it. However, his neighbor Jude Weatherby visits him, gives a six-pack of beer to the abstemious John and convinces him to put the scarecrow in the cornfield. Out of the blue, the life of John changes: the crows die; the pump works again irrigating the land; and the banker responsible for the closure has an accident and dies. However, he feels that his land is possessed by something evil that is threatening his beloved family.", + "posterPath": "/xav4wnkLQiVAUTVxNPMKrXTBdkf.jpg", + "backdropPath": "/tD8Bjf1kl4HIPBQ5dzW02iNIaYI.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2009-07-21", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.395, + "voteCount": 171, + "popularity": 9.0602 + }, + { + "id": 616, + "title": "The Last Samurai", + "originalTitle": "The Last Samurai", + "overview": "Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare, which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.", + "posterPath": "/a8jmJPs5eZBARmnuEEvZwbjwyz4.jpg", + "backdropPath": "/piXBj3FKEGNb6XCfAM7w5s4BI7O.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 10752 + ], + "genres": [ + "Drama", + "Action", + "War" + ], + "releaseDate": "2003-12-05", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.597, + "voteCount": 7268, + "popularity": 9.056 + }, + { + "id": 675353, + "title": "Sonic the Hedgehog 2", + "originalTitle": "Sonic the Hedgehog 2", + "overview": "After settling in Green Hills, Sonic is eager to prove he has what it takes to be a true hero. His test comes when Dr. Robotnik returns, this time with a new partner, Knuckles, in search for an emerald that has the power to destroy civilizations. Sonic teams up with his own sidekick, Tails, and together they embark on a globe-trotting journey to find the emerald before it falls into the wrong hands.", + "posterPath": "/6DrHO1jr3qVrViUO6s6kFiAGM7.jpg", + "backdropPath": "/xuLA0pii2IMJW2puT7EvJtgpg0H.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 10751, + 35 + ], + "genres": [ + "Action", + "Adventure", + "Family", + "Comedy" + ], + "releaseDate": "2022-03-30", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 5701, + "popularity": 9.0557 + }, + { + "id": 15618, + "title": "Robot Jox", + "originalTitle": "Robot Jox", + "overview": "50 years after a nuclear war, the two superpowers handle territorial disputes in a different way. Each fields a giant robot to fight one-on-one battles in official matches, each piloted by a man inside, known as robot jockeys or jox. The contest for possession of Alaska will be fought by two of the best. The conscientious Achilles fights for the Americans. Opposing him is a Russian, Alexander.", + "posterPath": "/6Hz2ObMoXPWDa1E3vWRUuRxwLfC.jpg", + "backdropPath": "/sJKimzusAR7mhpgxpYLoUFfGIlF.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "1990-11-21", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 5.504, + "voteCount": 139, + "popularity": 9.0501 + }, + { + "id": 37135, + "title": "Tarzan", + "originalTitle": "Tarzan", + "overview": "Tarzan was a small orphan who was raised by an ape named Kala since he was a child. He believed that this was his family, but on an expedition Jane Porter is rescued by Tarzan. He then finds out that he's human. Now Tarzan must make the decision as to which family he should belong to...", + "posterPath": "/bTvHlcqiOjGa3lFtbrTLTM3zasY.jpg", + "backdropPath": "/86z1Yrwj7yN1xehSa0gIwHnR7xl.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 12, + 16, + 18 + ], + "genres": [ + "Family", + "Adventure", + "Animation", + "Drama" + ], + "releaseDate": "1999-06-17", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 7107, + "popularity": 9.0461 + }, + { + "id": 9807, + "title": "Aladdin", + "originalTitle": "Superfantagenio", + "overview": "A teenager in modern-day Miami finds a magic lantern and out pops a genie, who's been asleep for 200 years and in his gratitude grants the boy several wishes.", + "posterPath": "/zlnzJd4v8XyW4usXGoKkzRH1n2M.jpg", + "backdropPath": "/bPMAfe7ba6Mwp3dEJyWLWKfmTxb.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Fantasy" + ], + "releaseDate": "1986-12-23", + "releaseYear": "1986", + "originalLanguage": "it", + "voteAverage": 5.6, + "voteCount": 221, + "popularity": 9.0458 + }, + { + "id": 502416, + "title": "Ma", + "originalTitle": "Ma", + "overview": "Sue Ann is a loner who keeps to herself in her quiet Ohio town. One day, she is asked by Maggie, a new teenager in town, to buy some booze for her and her friends, and Sue Ann sees the chance to make some unsuspecting, if younger, friends of her own.", + "posterPath": "/6n7ASmQ1wY2cxTubFFGlcvPpyk7.jpg", + "backdropPath": "/7yNJyHSPRFrYnG6v9FG1hcNRwaB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2019-05-29", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.82, + "voteCount": 2365, + "popularity": 9.0447 + }, + { + "id": 195757, + "title": "The Ultimate Life", + "originalTitle": "The Ultimate Life", + "overview": "Despite his best intentions, billionaire Jason Stevens can’t find enough time to keep his beloved Alexia a priority. But when he discovers his late grandfather’s journal, he is transported back to Red Stevens’ incredible world. With everything he loves hanging in the balance, Jason Stevens hopes the past will prepare him well for the future.", + "posterPath": "/lRjea5SWCiKzDIpgNDzyvyOSTp.jpg", + "backdropPath": "/kc7EqzuZVtwxCgmqjj1Lv5ISTsS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2013-09-06", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 86, + "popularity": 9.034 + }, + { + "id": 4584, + "title": "Sense and Sensibility", + "originalTitle": "Sense and Sensibility", + "overview": "The Dashwood sisters, sensible Elinor and passionate Marianne, whose chances at marriage seem doomed by their family's sudden loss of fortune. When Henry Dashwood dies unexpectedly, his estate must pass on by law to his son from his first marriage, John and wife Fanny. But these circumstances leave Mr. Dashwood's current wife, and daughters Elinor, Marianne and Margaret, without a home and with barely enough money to live on. As Elinor and Marianne struggle to find romantic fulfillment in a society obsessed with financial and social status, they must learn to mix sense with sensibility in their dealings with both money and men.", + "posterPath": "/cBK2yL3HqhFvIVd7lLtazWlRZPR.jpg", + "backdropPath": "/mZfkW31Y9a8DvISpO9nj5Tc7neo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1995-12-13", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 1782, + "popularity": 9.0311 + }, + { + "id": 466272, + "title": "Once Upon a Time... in Hollywood", + "originalTitle": "Once Upon a Time... in Hollywood", + "overview": "Los Angeles, 1969. TV star Rick Dalton, a struggling actor specializing in westerns, and stuntman Cliff Booth, his best friend, try to survive in a constantly changing movie industry. Dalton is the neighbor of the young and promising actress and model Sharon Tate, who has just married the prestigious Polish director Roman Polanski…", + "posterPath": "/8j58iEBw9pOXFD2L0nt0ZXeHviB.jpg", + "backdropPath": "/aQLygZOIKai6aaiBAeeKpIWO5nc.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 53 + ], + "genres": [ + "Comedy", + "Drama", + "Thriller" + ], + "releaseDate": "2019-07-24", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 14319, + "popularity": 9.0297 + }, + { + "id": 1366, + "title": "Rocky", + "originalTitle": "Rocky", + "overview": "Rocky Balboa is a Philadelphia club fighter who seems to be going nowhere. But when a stroke of fate puts him in the ring with a world heavyweight champion, Rocky knows that it's his one shot at the big time — a once-in-a-lifetime opportunity to go the distance and come out a winner!", + "posterPath": "/hEjK9A9BkNXejFW4tfacVAEHtkn.jpg", + "backdropPath": "/bacOuUnRBoAO1NjMfsAGX2EKRrS.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1976-11-20", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 8323, + "popularity": 9.0268 + }, + { + "id": 1064486, + "title": "Memoir of a Snail", + "originalTitle": "Memoir of a Snail", + "overview": "Forcibly separated from her twin brother when they are orphaned, a melancholic misfit learns how to find confidence within herself amid the clutter of misfortunes and everyday life.", + "posterPath": "/woaN8CbloH0akyX0E72ayxlJAB4.jpg", + "backdropPath": "/jl2YIADk391yc6Qjy9JhgCRkHJk.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2024-10-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.065, + "voteCount": 696, + "popularity": 9.0226 + }, + { + "id": 1579, + "title": "Apocalypto", + "originalTitle": "Apocalypto", + "overview": "Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.", + "posterPath": "/cRY25Q32kDNPFDkFkxAs6bgCq3L.jpg", + "backdropPath": "/nnmbJvYyDS1VkMOCbxSpdBi3WbJ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 36 + ], + "genres": [ + "Action", + "Drama", + "History" + ], + "releaseDate": "2006-12-07", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.592, + "voteCount": 5957, + "popularity": 9.0199 + }, + { + "id": 72756, + "title": "Meridian", + "originalTitle": "Meridian", + "overview": "After her father’s death, Catherine returns to her family’s gothic castle in Italy and gets caught in the web of a mysterious love triangle.", + "posterPath": "/gqDr49U4BqoN8ID0bl7tqcTkmej.jpg", + "backdropPath": "/nvcFxujM6bo4mBkuyOyJCiIKYs0.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 10749 + ], + "genres": [ + "Horror", + "Mystery", + "Romance" + ], + "releaseDate": "1990-11-10", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 46, + "popularity": 9.0178 + }, + { + "id": 257117, + "title": "Blood Punch", + "originalTitle": "Blood Punch", + "overview": "Milton, a college dropout, was only supposed to cook meth for one day. Broken out of rehab by a brash young woman and her trigger-happy (\"ex\") boyfriend and driven to a remote cabin the woods, Milton finds himself drawn into a dangerous love triangle gone haywire. The couple's deadpan half-truths spin around Milton like a song on repeat. They seem to read him like an open book, until a mysterious message opens his eyes to his cursed existence. With unlimited ammunition, any hunting tool they could desire, and an ever-growing body count, for what did Milton really sign up?", + "posterPath": "/qQZkm86UV5qiRPbcWQOPN6iF6HN.jpg", + "backdropPath": "/69kwyBRuR2S3uEttJpb6ALc0MkH.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2014-02-21", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 133, + "popularity": 9.017 + }, + { + "id": 18300, + "title": "Jet Lag", + "originalTitle": "Décalage Horaire", + "overview": "At Charles de Gaulle Airport in Paris, a beautician on her way to a new job in Mexico accidentally meets a cook who is on his way back from America. Labor strikes, bad weather, and pure luck cause the two of them to share a room overnight at the airport Hilton hotel. Will their initial mutual indifference and downright hostility turn into a one night stand or perhaps something more?", + "posterPath": "/us5es90wJgcXcWbFbmQG1yp6pEk.jpg", + "backdropPath": "/93MS7SP7mLrNpGbBA7bhJf91fMm.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2002-10-30", + "releaseYear": "2002", + "originalLanguage": "fr", + "voteAverage": 5.5, + "voteCount": 138, + "popularity": 9.0167 + }, + { + "id": 389, + "title": "12 Angry Men", + "originalTitle": "12 Angry Men", + "overview": "The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.", + "posterPath": "/ow3wq89wM8qd5X7hWKxiRfsFf9C.jpg", + "backdropPath": "/w4bTBXcqXc2TUyS5Fc4h67uWbPn.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1957-04-10", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 8.548, + "voteCount": 9559, + "popularity": 9.0105 + }, + { + "id": 1014590, + "title": "Upgraded", + "originalTitle": "Upgraded", + "overview": "Ana is an ambitious intern dreaming of a career in the art world while trying to impress her demanding boss Claire. When she's upgraded to first class on a work trip, she meets handsome Will, and Ana pretends to be her boss– a white lie that sets off a glamorous chain of events, romance and opportunity, until her fib threatens to surface.", + "posterPath": "/uhOXS17gRpTwA85WsZLlYFK3rz0.jpg", + "backdropPath": "/77Fqz6PFCSnWySDOmEL6ZPcaYIl.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2024-02-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.188, + "voteCount": 952, + "popularity": 9.0094 + }, + { + "id": 259904, + "title": "Sacred", + "originalTitle": "Keramat", + "overview": "A group of young filmmakers from Jakarta arrived in Bantul, Yogyakarta to prepare for a shoot. Things are normal until the second day when they start to experience unexplained phenomenon.", + "posterPath": "/g0aWd2Nsbe7fdrsj9TjzitCF24a.jpg", + "backdropPath": "/irzvkYWDCehUCRgNp8LIZc4iX8R.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2009-09-03", + "releaseYear": "2009", + "originalLanguage": "id", + "voteAverage": 6.5, + "voteCount": 17, + "popularity": 9.0026 + }, + { + "id": 2019, + "title": "Hard Target", + "originalTitle": "Hard Target", + "overview": "When a woman's father goes missing, she enlists a local to aid in her search. The pair soon discover that her father has died at the hands of a wealthy sportsman who hunts homeless men as a form of recreation.", + "posterPath": "/mXCM7pmUFUGp7QzSmare3RITe6n.jpg", + "backdropPath": "/4IRHnS9Ljvb4tGI2SGaSiQikcaE.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "1993-04-27", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.49, + "voteCount": 1288, + "popularity": 8.9987 + }, + { + "id": 56040, + "title": "Gorbaciof", + "originalTitle": "Gorbaciof", + "overview": "Marino Pacileo has a soft spot for gambling. When he discovers that Lila's father, the young Chinese girl that he is in love with cannot pay a debt, the gambler steals money from the jail he is in to help the love of his life.", + "posterPath": "/wZkT8oNsRdfxQfiSDszGoM1VddW.jpg", + "backdropPath": "/nfJ5nrKjSEc3kQia4oo5QiXEBkA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 80 + ], + "genres": [ + "Drama", + "Romance", + "Crime" + ], + "releaseDate": "2010-10-15", + "releaseYear": "2010", + "originalLanguage": "it", + "voteAverage": 6.05, + "voteCount": 60, + "popularity": 8.987 + }, + { + "id": 10591, + "title": "The Girl Next Door", + "originalTitle": "The Girl Next Door", + "overview": "Exceptionally ambitious high schooler Matthew has aspirations for a career in politics when he falls in love with his gorgeous 19-year-old neighbor, Danielle. But Matthew's bright future is jeopardized when he finds Danielle was once a porn star. As Danielle's past catches up with her, Matthew's love for her forces him to re-evaluate his goals.", + "posterPath": "/6uJw7DiPTCDC7VKjMH3FQuA72sc.jpg", + "backdropPath": "/qvcOovScPoRalRxDy50rYSYFree.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2004-04-09", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.736, + "voteCount": 3837, + "popularity": 8.9861 + }, + { + "id": 123229, + "title": "Porn in the Hood", + "originalTitle": "Les Kaïra", + "overview": "3 childhood friends who have never left their hometown in the suburb try to get into porn as a way of earning easy money.", + "posterPath": "/cUW7NUzXJbvsZyM0LAAo5ftgov6.jpg", + "backdropPath": "/rhrVO6S2HkhPSZg1bmEMiboOHJ8.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-07-11", + "releaseYear": "2012", + "originalLanguage": "fr", + "voteAverage": 5.043, + "voteCount": 360, + "popularity": 8.9844 + }, + { + "id": 1246, + "title": "Rocky Balboa", + "originalTitle": "Rocky Balboa", + "overview": "When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder Mason Dixon retaliates by challenging the Italian Stallion to a 10-round exhibition bout. To the surprise of his son and friends, Rocky agrees to come out of retirement and face an opponent who's faster, stronger and thirty years his junior. Rocky takes on Dixon in what will become the greatest fight in boxing history!", + "posterPath": "/byBlJvZwCqgtIwrZNv0pyE974jC.jpg", + "backdropPath": "/g1QkFTSkqA0Pq1p63jTsPIEA7zy.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-12-20", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.877, + "voteCount": 3682, + "popularity": 8.9784 + }, + { + "id": 14161, + "title": "2012", + "originalTitle": "2012", + "overview": "Dr. Adrian Helmsley, part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms, learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population, the entire race is doomed. Meanwhile, writer Jackson Curtis stumbles on the same information. While the world's leaders race to build \"arks\" to escape the impending cataclysm, Curtis struggles to find a way to save his family. Meanwhile, volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.", + "posterPath": "/c2PkTPT5D9zB8SIm5wNlDAANEqM.jpg", + "backdropPath": "/4P71rDf6roxVskbvdcbNayVMpXd.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2009-10-10", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.864, + "voteCount": 12408, + "popularity": 8.9668 + }, + { + "id": 1252382, + "title": "Tyler Perry's Finding Joy", + "originalTitle": "Tyler Perry's Finding Joy", + "overview": "Joy, a successful designer, seeks a proposal at Christmas. In Wyoming's mountains, she finds what she truly needs when the man she loves sees her as just a friend.", + "posterPath": "/sUMdbrjHhMFDY327B31ctpF9MuY.jpg", + "backdropPath": "/ss8aaeGyPRmOs9l9o9lL7FvcmbQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-11-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.518, + "voteCount": 28, + "popularity": 8.9645 + }, + { + "id": 10843, + "title": "After Hours", + "originalTitle": "After Hours", + "overview": "Desperate to escape his mind-numbing routine, uptown Manhattan office worker Paul Hackett ventures downtown for a hookup with a mystery woman.", + "posterPath": "/eamOBurHBu0MIxohTIVcfxmZ6Z7.jpg", + "backdropPath": "/7Pj9AZ4CpnxkDXYMxzae4WmJUsJ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53, + 18 + ], + "genres": [ + "Comedy", + "Thriller", + "Drama" + ], + "releaseDate": "1985-09-13", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.495, + "voteCount": 1641, + "popularity": 8.9637 + }, + { + "id": 1116490, + "title": "Cash Out", + "originalTitle": "Cash Out", + "overview": "Criminal mastermind Mason is about to execute the score of a lifetime when his lover and key member of his crew, Decker, takes the team down and reveals she’s an undercover Interpol agent. Heartbroken, Mason escapes and retires from the life of crime until his younger brother Shawn is out of his league taking on a big bank heist all on his own. Mason has no choice left but to come to the rescue, while Interpol brings Decker in hoping to unnerve him. Before the SWAT teams storm the bank, Mason must use every tool in his arsenal to not only escape with the prize, but also the love of his life.", + "posterPath": "/v3youHDLigrtIis1NqTjlY8Sk38.jpg", + "backdropPath": "/6VoxDupaW2VXfLtJyeOoGCgXSjD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2024-04-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.239, + "voteCount": 222, + "popularity": 8.9634 + }, + { + "id": 276518, + "title": "The Boarder", + "originalTitle": "La spiaggia", + "overview": "A prostitute goes on vacation to a beach resort with her young daughter (who's being schooled by nuns). Everything is cheerful and pleasant at the seashore; the customers at the hotel think she's a poor widow - she always wears black - and treat her like a lady. But when one of her former clients arrives, her carefree days on the beach are numbered.", + "posterPath": "/oSnJAp4wxFI8xOHreyCIHv6RimQ.jpg", + "backdropPath": "/cdu3Xx3OYbe458MXhr9qv3Wglsa.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1954-02-25", + "releaseYear": "1954", + "originalLanguage": "it", + "voteAverage": 6.077, + "voteCount": 13, + "popularity": 8.9577 + }, + { + "id": 10674, + "title": "Mulan", + "originalTitle": "Mulan", + "overview": "To save her father from certain death in the army, a young woman secretly enlists in his place and becomes one of China's greatest heroines in the process.", + "posterPath": "/bj3iSjLlkwHtJrPmvHXa8P7edI9.jpg", + "backdropPath": "/mUYV0ZdsDEliGaQahcQH1F3grsP.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12 + ], + "genres": [ + "Animation", + "Family", + "Adventure" + ], + "releaseDate": "1998-06-18", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.903, + "voteCount": 10171, + "popularity": 8.956 + }, + { + "id": 629542, + "title": "The Bad Guys", + "originalTitle": "The Bad Guys", + "overview": "When the Bad Guys, a crew of criminal animals, are finally caught after years of heists and being the world’s most-wanted villains, Mr. Wolf brokers a deal to save them all from prison.", + "posterPath": "/6fcFmdVLCCbf1gFt8HlC6BRj8pt.jpg", + "backdropPath": "/3AhT4YuBcU4A3KKXzzXZO6fUiKj.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 80, + 12, + 16, + 28 + ], + "genres": [ + "Family", + "Comedy", + "Crime", + "Adventure", + "Animation", + "Action" + ], + "releaseDate": "2022-03-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 2392, + "popularity": 8.9544 + }, + { + "id": 496328, + "title": "Sanju", + "originalTitle": "संजू", + "overview": "Sanju explores some of the most crucial chapters from movie star Sanjay Dutt’s dramatic and controversial real life. It gives a lowdown on his tryst with drugs and his trials and tribulations in the Arms Acts case and the 1993 Mumbai blasts.", + "posterPath": "/q1wkN4VQuBTj1AeyTLLz2w6awMA.jpg", + "backdropPath": "/pJgSJSMrwg1MOJnYNeQKsJvc39r.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-06-29", + "releaseYear": "2018", + "originalLanguage": "hi", + "voteAverage": 7.237, + "voteCount": 207, + "popularity": 8.9449 + }, + { + "id": 330457, + "title": "Frozen II", + "originalTitle": "Frozen II", + "overview": "Elsa, Anna, Kristoff and Olaf head far into the forest to learn the truth about an ancient mystery of their kingdom.", + "posterPath": "/mINJaa34MtknCYl5AjtNJzWj8cD.jpg", + "backdropPath": "/AoSZyb37ljMAxw0RdeQEBHKtgcc.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 12, + 35, + 14 + ], + "genres": [ + "Family", + "Animation", + "Adventure", + "Comedy", + "Fantasy" + ], + "releaseDate": "2019-11-20", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.241, + "voteCount": 10073, + "popularity": 8.9392 + }, + { + "id": 1371727, + "title": "Sing: Thriller", + "originalTitle": "Sing: Thriller", + "overview": "Buster Moon dreams up a star-studded spectacle set to Michael Jackson's \"Thriller\" in this animated short featuring characters from the hit \"Sing\" films.", + "posterPath": "/i77OInTKcrnRlAozFOaB6D5mk15.jpg", + "backdropPath": "/9Rhs8yzMTtAcOUvJXqUg7kzljb7.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 10402 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Music" + ], + "releaseDate": "2024-10-15", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.195, + "voteCount": 192, + "popularity": 8.9381 + }, + { + "id": 454626, + "title": "Sonic the Hedgehog", + "originalTitle": "Sonic the Hedgehog", + "overview": "Powered with incredible speed, Sonic The Hedgehog embraces his new home on Earth. That is, until Sonic sparks the attention of super-uncool evil genius Dr. Robotnik. Now it’s super-villain vs. super-sonic in an all-out race across the globe to stop Robotnik from using Sonic’s unique power for world domination.", + "posterPath": "/aQvJ5WPzZgYVDrxLX4R6cLJCEaQ.jpg", + "backdropPath": "/stmYfCUGd8Iy6kAMBr6AmWqx8Bq.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 35, + 10751 + ], + "genres": [ + "Action", + "Science Fiction", + "Comedy", + "Family" + ], + "releaseDate": "2020-02-12", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 10152, + "popularity": 8.9367 + }, + { + "id": 31767, + "title": "The Devils", + "originalTitle": "The Devils", + "overview": "Father Urbain Grandier’s unorthodox views of sex and religion make him a polarizing figure in 17th-century France. His outspokenness has amassed a passionate following of nuns and a respected reputation for protecting the city of Loudon from corruption. Grandier’s influence is then undermined following a sexually repressed nun’s accusation of witchcraft.", + "posterPath": "/y1k7eiOFc6fzm8XeTa1kNGx6JIs.jpg", + "backdropPath": "/8ApwSMdd9QehKjvW3fOmKVrnZXv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 27 + ], + "genres": [ + "Drama", + "History", + "Horror" + ], + "releaseDate": "1971-07-16", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 405, + "popularity": 8.9363 + }, + { + "id": 1151272, + "title": "Sirāt", + "originalTitle": "Sirāt", + "overview": "A man and his son arrive at a rave lost in the mountains of Morocco. They are looking for Marina, their daughter and sister, who disappeared months ago at another rave. Driven by fate, they decide to follow a group of ravers in search of one last party, in hopes Marina will be there.", + "posterPath": "/bzBtsLi17rK4G6kDvOXfUZfAhca.jpg", + "backdropPath": "/kOUV5WbisWMg56d8eB45ZHEVxYq.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2025-06-06", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.8, + "voteCount": 246, + "popularity": 8.9356 + }, + { + "id": 20352, + "title": "Despicable Me", + "originalTitle": "Despicable Me", + "overview": "Villainous Gru lives up to his reputation as a despicable, deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.", + "posterPath": "/9lOloREsAhBu0pEtU0BgeR1rHyo.jpg", + "backdropPath": "/2XSeKDmIa2KxaiJy4J9e8FrIZhk.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 16, + 878 + ], + "genres": [ + "Family", + "Comedy", + "Animation", + "Science Fiction" + ], + "releaseDate": "2010-07-08", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.254, + "voteCount": 15696, + "popularity": 8.9352 + }, + { + "id": 31549, + "title": "Blood River", + "originalTitle": "Blood River", + "overview": "A psychological thriller following a successful young married couple on their way to visit family. After a blowout on a desolate stretch of highway in Nevada, they head to the next town only to discover it long abandoned. Here they meet a mysterious stranger who seems to know decidedly more than he is sharing.", + "posterPath": "/5SJ7zfWaPRBSJXP1e4pfKafL9xK.jpg", + "backdropPath": "/2o2HsGA2bcmUfh2IYstV9vO5iAa.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2009-04-29", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 33, + "popularity": 8.9342 + }, + { + "id": 36686, + "title": "The Tomb", + "originalTitle": "The Tomb", + "overview": "Successful writer and scholar Jonathan Merrick falls under the spell of the irresistible, bewitchingly beautiful Ligeia. She's fighting a fatal illness and she will stop at nothing to defeat death, her one true enemy.", + "posterPath": "/jlUzImT4x2Gkm46dUpw47AhuYFR.jpg", + "backdropPath": "/qQArpaoclJyynR5DCVoFCChQ7OC.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2009-11-05", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 4.183, + "voteCount": 52, + "popularity": 8.9271 + }, + { + "id": 345, + "title": "Eyes Wide Shut", + "originalTitle": "Eyes Wide Shut", + "overview": "After Dr. Bill Harford's wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings -- and quickly discovers that he is in over his head.", + "posterPath": "/knEIz1eNGl5MQDbrEAVWA7iRqF9.jpg", + "backdropPath": "/aC6wW62V6b0csr5iUnbOjYAqfhg.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 9648 + ], + "genres": [ + "Drama", + "Thriller", + "Mystery" + ], + "releaseDate": "1999-07-16", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.485, + "voteCount": 6688, + "popularity": 8.9212 + }, + { + "id": 713364, + "title": "Clown in a Cornfield", + "originalTitle": "Clown in a Cornfield", + "overview": "Quinn and her father have just moved to the quiet town of Kettle Springs hoping for a fresh start. Instead, she discovers a fractured community that has fallen on hard times after the treasured Baypen Corn Syrup Factory burned down. As the locals bicker amongst themselves and tensions boil over, a sinister, grinning figure emerges from the cornfields to cleanse the town of its burdens, one bloody victim at a time.", + "posterPath": "/6ep6gw90TJ8bYvJC6hEDo8SxjoJ.jpg", + "backdropPath": "/gIwG9UWJLsiSBfaG5GJWGj9ghXD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2025-05-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 416, + "popularity": 8.9188 + }, + { + "id": 772973, + "title": "The Inhabitant", + "originalTitle": "The Inhabitant", + "overview": "Like any other teenage girl, Tara is just surviving high school — yet her father and mother seem strangely distant. Amidst a nearby spree of gruesome ax murders, Tara has sightings of terrifying entities, forcing her to question her own sanity and shocking ancestry.", + "posterPath": "/p1hH2FXEUHuY5kzm9bEBxEmdD8D.jpg", + "backdropPath": "/u3tYPd0s6uvLvgEqWVUQSM8pe47.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 9648 + ], + "genres": [ + "Thriller", + "Horror", + "Mystery" + ], + "releaseDate": "2022-10-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 116, + "popularity": 8.9161 + }, + { + "id": 10192, + "title": "Shrek Forever After", + "originalTitle": "Shrek Forever After", + "overview": "A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away—where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met—he sets out to restore his world and reclaim his true love.", + "posterPath": "/6HrfPZtKcGmX2tUWW3cnciZTaSD.jpg", + "backdropPath": "/uzzTystB8lL0mRDII5Sfs5HxgkI.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12, + 14, + 16, + 10751 + ], + "genres": [ + "Comedy", + "Adventure", + "Fantasy", + "Animation", + "Family" + ], + "releaseDate": "2010-05-20", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.392, + "voteCount": 7731, + "popularity": 8.9132 + }, + { + "id": 424634, + "title": "Wild Mouse", + "originalTitle": "Wilde Maus", + "overview": "Kings should be treated courteously! At least, that's what famous music critic Georg thinks. But he finds himself counting pennies when his chief editor suddenly fires him from the Viennese newspaper for which he has been writing for decades. While keeping his dismissal a secret from his psychotherapist wife Johanna, whose mind is occupied solely by getting pregnant, Georg begins to plot his revenge.", + "posterPath": "/lWI8TMdCzx9ztuvWkbAWozk07xM.jpg", + "backdropPath": "/hISb9I8xZN1zHuEPAZggix9KBnj.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2017-02-17", + "releaseYear": "2017", + "originalLanguage": "de", + "voteAverage": 6.47, + "voteCount": 83, + "popularity": 8.908 + }, + { + "id": 128204, + "title": "Satellite Boy", + "originalTitle": "Satellite Boy", + "overview": "When his grandfather's drive-in cinema and home in the outback town of Wyndham is threatened with demolition, a twelve-year-old Aboriginal boy must journey through Australia's bush country — equipped only with ancient survival skills — to stop the city developers.", + "posterPath": "/6HuaxxE6OUqtkxF1Ef5C2I9mjyP.jpg", + "backdropPath": "/eU617xJEASNw5Wn88VdicDBcs2J.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10751 + ], + "genres": [ + "Adventure", + "Drama", + "Family" + ], + "releaseDate": "2012-09-08", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 11, + "popularity": 8.9034 + }, + { + "id": 454699, + "title": "Monster Family", + "originalTitle": "Monster Family", + "overview": "The Wishbone family are far from happy. In an attempt to reconnect as a family, they plan a fun night out. However, the plan backfires when they are cursed and all turned into Monsters.", + "posterPath": "/gjDbd43e7o2Ssn7P1l50Bv0rtIl.jpg", + "backdropPath": "/jFSwrtsYJ0QesgPrvShQNOTn8aV.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 35 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Comedy" + ], + "releaseDate": "2017-08-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.012, + "voteCount": 361, + "popularity": 8.9024 + }, + { + "id": 258057, + "title": "The Challenges", + "originalTitle": "Los desafíos", + "overview": "Los desafíos presents three separate stories that are linked by an American presence in Spain in the 1960s, with Dean Selmier playing the role of the American male in all three.", + "posterPath": "/ttGVuPPHxW6iJgDEjbsNwPLhmvg.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1969-09-19", + "releaseYear": "1969", + "originalLanguage": "es", + "voteAverage": 5.2, + "voteCount": 11, + "popularity": 8.9019 + }, + { + "id": 11536, + "title": "The Misfits", + "originalTitle": "The Misfits", + "overview": "While filing for a divorce, beautiful ex-stripper Roslyn Taber ends up meeting aging cowboy-turned-gambler Gay Langland and former World War II aviator Guido Racanelli. The two men instantly become infatuated with Roslyn and, on a whim, the three decide to move into Guido's half-finished desert home together. When grizzled ex-rodeo rider Perce Howland arrives, the unlikely foursome strike up a business capturing wild horses.", + "posterPath": "/rkIkyPhT5oetT463HxpdIuct30l.jpg", + "backdropPath": "/uCH6NY9qstOLbBTGv0rWxB1oJJH.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 18, + 10749 + ], + "genres": [ + "Western", + "Drama", + "Romance" + ], + "releaseDate": "1961-02-01", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 6.948, + "voteCount": 410, + "popularity": 8.8949 + }, + { + "id": 896536, + "title": "The Legend of Ochi", + "originalTitle": "The Legend of Ochi", + "overview": "In a remote village on the island of Carpathia, a shy farm girl named Yuri is raised to fear an elusive animal species known as ochi. But when Yuri discovers a wounded baby ochi has been left behind, she escapes on a quest to bring him home.", + "posterPath": "/qYyEelO4JfOwE0Ui5KsrCE0O8UA.jpg", + "backdropPath": "/yMatVGaUxw3Vi3Z0RsLetvcSYko.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 12 + ], + "genres": [ + "Family", + "Fantasy", + "Adventure" + ], + "releaseDate": "2025-04-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.199, + "voteCount": 231, + "popularity": 8.8946 + }, + { + "id": 18334, + "title": "Guinea Pig: Devil's Experiment", + "originalTitle": "ギニーピッグ 悪魔の実験", + "overview": "Masked thugs torture an innocent woman in increasingly brutal ways.", + "posterPath": "/gyloAdASwFB0Ksm9Ky9xHLYsgZk.jpg", + "backdropPath": "/rtD11mLsqwMAoBj3y9Kaze5Cfjs.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1985-09-04", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 152, + "popularity": 8.8919 + }, + { + "id": 260513, + "title": "Incredibles 2", + "originalTitle": "Incredibles 2", + "overview": "Elastigirl springs into action to save the day, while Mr. Incredible faces his greatest challenge yet – taking care of the problems of his three children.", + "posterPath": "/9lFKBtaVIhP7E2Pk0IY1CwTKTMZ.jpg", + "backdropPath": "/mabuNsGJgRuCTuGqjFkWe1xdu19.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 16, + 10751 + ], + "genres": [ + "Action", + "Adventure", + "Animation", + "Family" + ], + "releaseDate": "2018-06-14", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.455, + "voteCount": 13371, + "popularity": 8.8909 + }, + { + "id": 19236, + "title": "Santa Sangre", + "originalTitle": "Santa Sangre", + "overview": "A former circus artist escapes from a mental hospital to rejoin his armless, cult leader mother, and is forced to enact brutal murders in her name.", + "posterPath": "/6VTra0NR4ygRnq3bD922I4rU0Mq.jpg", + "backdropPath": "/6LJUfxWh7Ru42pClv2wwPZKEja0.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 27 + ], + "genres": [ + "Thriller", + "Drama", + "Horror" + ], + "releaseDate": "1989-11-24", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.134, + "voteCount": 480, + "popularity": 8.8782 + }, + { + "id": 781732, + "title": "Animal", + "originalTitle": "Animal", + "overview": "The hardened son of a powerful industrialist returns home after years abroad and vows to take bloody revenge on those threatening his father's life.", + "posterPath": "/hr9rjR3J0xBBKmlJ4n3gHId9ccx.jpg", + "backdropPath": "/lprsAHkwMxk2iC6VZxNmV0H7g1t.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "2023-12-01", + "releaseYear": "2023", + "originalLanguage": "hi", + "voteAverage": 6.123, + "voteCount": 159, + "popularity": 8.8779 + }, + { + "id": 672322, + "title": "Rurouni Kenshin: The Beginning", + "originalTitle": "るろうに剣心 最終章 The Beginning", + "overview": "Before he was a protector, Kenshin was a fearsome assassin known as Battosai. But when he meets gentle Tomoe Yukishiro, a beautiful young woman who carries a huge burden in her heart, his life will change forever.", + "posterPath": "/rODS466qSdrwMlGdbUwPENhDN2c.jpg", + "backdropPath": "/iGmfHHa3CSqKrH3yeS9CQVLAVUl.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18, + 10749 + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "Romance" + ], + "releaseDate": "2021-06-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.67, + "voteCount": 509, + "popularity": 8.875 + }, + { + "id": 483351, + "title": "The Unicorn", + "originalTitle": "The Unicorn", + "overview": "An engaged couple is forced to visit Palm Springs for a weekend to celebrate her parents’ 25th wedding vow renewal and discover the apparent secret to their happy marriage — threesomes. Determined to properly celebrate their own “re-engagement,” they set out on a wild night in search of a threesome of their own but the experience takes an intense turn, exposing deeper relationship problems and threatening their future together.", + "posterPath": "/61EeWnW1fcq2N056C2JGgMhC4lZ.jpg", + "backdropPath": "/rMVOJRc7tkefISzQH6dQiWhFJaH.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-02-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 42, + "popularity": 8.8746 + }, + { + "id": 1336189, + "title": "Delivery Run", + "originalTitle": "Delivery Run", + "overview": "A food delivery driver gets caught in a deadly chase in the icy Minnesota wilderness, pursued by a crazed snowplow driver for unknown reasons, facing life-threatening situations and forced to outsmart his relentless pursuer alone.", + "posterPath": "/eCA5maHDlZtXNTtiLXenwnEw7tc.jpg", + "backdropPath": "/hvut2slhhgJ31UNa9Df7jFfAS0x.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-09-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.912, + "voteCount": 17, + "popularity": 8.8726 + }, + { + "id": 474716, + "title": "Cingöz Recai", + "originalTitle": "Cingöz Recai", + "overview": "An ex-thief returns for the revange of his father's murder makes an intelligent plan to reach the killer, a godfather named as Ghost. During his robbery operations, he plays with the police chief who is trying to stop him. In his final robbery, he finds something different than what he expects, something bigger.", + "posterPath": "/nCLIYFDgmgohaEsBuGYx7G2XU8k.jpg", + "backdropPath": "/UhZ3uu9J0pnogkWsrHq7PeK7OE.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 80 + ], + "genres": [ + "Action", + "Adventure", + "Crime" + ], + "releaseDate": "2017-10-13", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 4.2, + "voteCount": 53, + "popularity": 8.8683 + }, + { + "id": 9552, + "title": "The Exorcist", + "originalTitle": "The Exorcist", + "overview": "When a mysterious entity possesses a young girl, her mother seeks the help of two Catholic priests to save her life.", + "posterPath": "/5x0CeVHJI8tcDx8tUUwYHQSNILq.jpg", + "backdropPath": "/xcjJ5khg2yzOa282mza39Lbrm7j.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1973-12-26", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 7.739, + "voteCount": 8364, + "popularity": 8.8639 + }, + { + "id": 509, + "title": "Notting Hill", + "originalTitle": "Notting Hill", + "overview": "London bookstore owner William Thacker's quiet life turns upside down when a chance encounter with famous actress Anna Scott sparks an unlikely romance challenged by their vastly different worlds.", + "posterPath": "/hHRIf2XHeQMbyRb3HUx19SF5Ujw.jpg", + "backdropPath": "/h2oRH3xY2DJx06EwdXq76tInFTH.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "1999-05-21", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.266, + "voteCount": 6488, + "popularity": 8.8639 + }, + { + "id": 606234, + "title": "Archive", + "originalTitle": "Archive", + "overview": "2038: George Almore is working on a true human-equivalent AI, and his latest prototype is almost ready. This sensitive phase is also the riskiest as he has a goal that must be hidden at all costs—being reunited with his dead wife.", + "posterPath": "/hmz9ySdCqW9FiHpM9JdSCkjQzFA.jpg", + "backdropPath": "/u9YEh2xVAPVTKoaMNlB5tH6pXkm.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 14, + 53 + ], + "genres": [ + "Science Fiction", + "Drama", + "Fantasy", + "Thriller" + ], + "releaseDate": "2020-08-13", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.315, + "voteCount": 753, + "popularity": 8.8617 + }, + { + "id": 62, + "title": "2001: A Space Odyssey", + "originalTitle": "2001: A Space Odyssey", + "overview": "Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.", + "posterPath": "/ve72VxNqjGM69Uky4WTo2bK6rfq.jpg", + "backdropPath": "/kXluiwt2DIIqoiEGR5AMA0QobCt.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 9648, + 12 + ], + "genres": [ + "Science Fiction", + "Mystery", + "Adventure" + ], + "releaseDate": "1968-04-02", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 8.062, + "voteCount": 12179, + "popularity": 8.8585 + }, + { + "id": 1210794, + "title": "Trouble", + "originalTitle": "Strul", + "overview": "Wrongfully convicted of murder, a clumsy electronics salesman faces police corruption and criminal conspiracies in an attempt to prove his innocence.", + "posterPath": "/ildbg7ho14EHbt1fZWAkgqIyPqy.jpg", + "backdropPath": "/AowNXLFNKWDRYBKHLsgTK0T7Bxf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2024-10-02", + "releaseYear": "2024", + "originalLanguage": "sv", + "voteAverage": 6.664, + "voteCount": 196, + "popularity": 8.8573 + }, + { + "id": 1169455, + "title": "The After", + "originalTitle": "The After", + "overview": "After losing a family member to a violent crime, a shattered rideshare driver picks up a passenger that forces him to confront his grief.", + "posterPath": "/35AwGdQZVGePtkUa1lD2OlRv4UL.jpg", + "backdropPath": "/dUz8n64kOSCpUZYELEfucDisijl.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-02-16", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.645, + "voteCount": 83, + "popularity": 8.8566 + }, + { + "id": 637649, + "title": "Wrath of Man", + "originalTitle": "Wrath of Man", + "overview": "A cold and mysterious new security guard for a Los Angeles cash truck company surprises his co-workers when he unleashes precision skills during a heist. The crew is left wondering who he is and where he came from. Soon, the marksman's ultimate motive becomes clear as he takes dramatic and irrevocable steps to settle a score.", + "posterPath": "/M7SUK85sKjaStg4TKhlAVyGlz3.jpg", + "backdropPath": "/70AV2Xx5FQYj20labp0EGdbjI6E.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18 + ], + "genres": [ + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2021-04-22", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 5827, + "popularity": 8.8521 + }, + { + "id": 1367575, + "title": "A Line of Fire", + "originalTitle": "A Line of Fire", + "overview": "After working as a secret agent in the FBI for ten years, Jack 'Cash' Conry left it all behind after his wife passed in order to dedicate himself to his two daughters. Despite a fulfilling life at home, Cash misses the chance to make an impact and has been considering a return to the force. The decision is made for him when his old partner’s niece Jamie calls him for help, launching Cash right back into a world of danger, corruption and intrigue.", + "posterPath": "/jSG2mg1998DUAam6X9EA6SeJmqD.jpg", + "backdropPath": "/z8tNyAAnGk2d1XmO1L4i34UmP19.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.074, + "voteCount": 54, + "popularity": 8.8496 + }, + { + "id": 39412, + "title": "Emmanuelle 3", + "originalTitle": "Goodbye Emmanuelle", + "overview": "Emmanuelle and her architect husband continue their amoral lifestyle in the Seychelles. But when a casual dilliance between her and a film director starts to turn serious her husband shows very traditional signs of jealousy.", + "posterPath": "/6TMvJX8PHS6672JI9R5YuCllGB6.jpg", + "backdropPath": "/sKhgptv9H7muJF7dBDfdMot7yQE.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1977-10-14", + "releaseYear": "1977", + "originalLanguage": "fr", + "voteAverage": 4.563, + "voteCount": 79, + "popularity": 8.8495 + }, + { + "id": 103740, + "title": "Beyond the Hills", + "originalTitle": "După dealuri", + "overview": "Alina returns to Romania from Germany, hoping to bring Voichita—the only person in the world she loves and was loved by—back with her. But Voichita has found God, and God is the hardest lover of all to best.", + "posterPath": "/zV2v5jFXlN2We3GS2IkGQ6e2Bmm.jpg", + "backdropPath": "/kC7YmW69fEdM0cazeVIVdmj7644.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2012-10-25", + "releaseYear": "2012", + "originalLanguage": "ro", + "voteAverage": 7.1, + "voteCount": 199, + "popularity": 8.8411 + }, + { + "id": 692, + "title": "Pink Flamingos", + "originalTitle": "Pink Flamingos", + "overview": "Notorious Baltimore criminal and underground figure Divine goes up against Connie & Raymond Marble, a sleazy married couple who make a passionate attempt to humiliate her and seize her tabloid-given title as \"The Filthiest Person Alive\".", + "posterPath": "/10N8SvTQwUqyWgocPam1P18Jgr.jpg", + "backdropPath": "/uh1zf6Q0UcHaqWQXZXu1qOOSCRg.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "1972-03-17", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.16, + "voteCount": 535, + "popularity": 8.8374 + }, + { + "id": 30636, + "title": "Luna", + "originalTitle": "La Luna", + "overview": "While touring in Italy, a recently-widowed American opera singer has an incestuous relationship with her 15-year-old son to help him overcome his heroin addiction.", + "posterPath": "/4mO1Asyzl3gmuvFWYtfzI73LhXQ.jpg", + "backdropPath": "/i6ET2elKjwMeZs6SphgcTpQOYY6.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1979-08-29", + "releaseYear": "1979", + "originalLanguage": "it", + "voteAverage": 6.3, + "voteCount": 111, + "popularity": 8.8298 + }, + { + "id": 249397, + "title": "Nymphomaniac: Vol. II", + "originalTitle": "Nymphomaniac: Vol. II", + "overview": "The continuation of Joe's sexually dictated life delves into the darker aspects of her adult life and what led to her being in Seligman's care.", + "posterPath": "/iLUNqgNKuWn667kXCKztSxYbT3k.jpg", + "backdropPath": "/au7iqEO8bi7CGQO8CheIqOxGdZS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2013-12-25", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 3049, + "popularity": 8.8292 + }, + { + "id": 480434, + "title": "Dreamland", + "originalTitle": "Dreamland", + "overview": "Amid the dust storms and economic depression of Dust Bowl Era Oklahoma, Eugene Evans finds his family farm on the brink of foreclosure. Discovering fugitive bank robber Allison Wells hiding in his small town, he is torn between claiming the bounty on her head and his growing attraction to the seductive criminal.", + "posterPath": "/v8ax79K6TZEnMqSS5ePrNCnrK8R.jpg", + "backdropPath": "/1BLx3PDYijbiSPbyozIZESel5Uu.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2019-11-27", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 259, + "popularity": 8.8281 + }, + { + "id": 227483, + "title": "Blue Movie", + "originalTitle": "Blue Movie", + "overview": "25-year-old Michael has been released from prison after a five-year sentence. He moves into a big apartment block, filled with young women who gladly have sex with him.", + "posterPath": "/7hG1B2pmumMGZhU3WhGp4fnmnVj.jpg", + "backdropPath": "/70ExFnFoSBd3KpQ8wXInAcfOsBM.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1971-07-16", + "releaseYear": "1971", + "originalLanguage": "nl", + "voteAverage": 4.458, + "voteCount": 12, + "popularity": 8.828 + }, + { + "id": 40423, + "title": "Black Orpheus", + "originalTitle": "Orfeu Negro", + "overview": "Young lovers Orfeu and Eurydice run through the favelas of Rio during Carnaval, on the lam from a hitman dressed like Death and Orfeu's vengeful fiancée Mira and passing between moments of fantasy and stark reality. This impressionistic retelling of the Greek legend of Orpheus and Eurydice introduced bossa nova to the world with its soundtrack by young Brazilian composers Luiz Bonfá and Antonio Carlos Jobim.", + "posterPath": "/fJWzdNRnfjcJuaZiKqaSURFV6Lg.jpg", + "backdropPath": "/mXHZJu6wmmNIhbidSMp24PQ3WNw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1959-06-12", + "releaseYear": "1959", + "originalLanguage": "pt", + "voteAverage": 7, + "voteCount": 222, + "popularity": 8.8267 + }, + { + "id": 893723, + "title": "PAW Patrol: The Mighty Movie", + "originalTitle": "PAW Patrol: The Mighty Movie", + "overview": "A magical meteor crash lands in Adventure City and gives the PAW Patrol pups superpowers, transforming them into The Mighty Pups.", + "posterPath": "/aTvePCU7exLepwg5hWySjwxojQK.jpg", + "backdropPath": "/zgQQF04u3OgNBJqClRNby1FPz9s.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2023-09-21", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.026, + "voteCount": 525, + "popularity": 8.8261 + }, + { + "id": 451048, + "title": "Jungle Cruise", + "originalTitle": "Jungle Cruise", + "overview": "Dr. Lily Houghton enlists the aid of wisecracking skipper Frank Wolff to take her down the Amazon in his dilapidated boat. Together, they search for an ancient tree that holds the power to heal – a discovery that will change the future of medicine.", + "posterPath": "/3UPz63cGsAQlYQnkOHfAbUhl1O3.jpg", + "backdropPath": "/7WJjFviFBffEJvkAms4uWwbcVUk.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12 + ], + "genres": [ + "Fantasy", + "Adventure" + ], + "releaseDate": "2021-07-28", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 5980, + "popularity": 8.8195 + }, + { + "id": 10802, + "title": "Showgirls", + "originalTitle": "Showgirls", + "overview": "Fresh to Las Vegas with no connections, Nomi Malone takes a job as an exotic dancer. Her talents are quickly noticed by Cristal, a headlining dancer who senses an opportunity to bolster her own act. But Nomi won’t play second fiddle and soon begins her venomous path to the top, ruthlessly backstabbing anyone who gets in her way.", + "posterPath": "/o4HT3Ap5c99W4FYpdXUtTvxGgPc.jpg", + "backdropPath": "/exQrOQ8MSGy9rxj1Hm2eOYtWEwQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1995-09-22", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 5.579, + "voteCount": 1323, + "popularity": 8.8167 + }, + { + "id": 1147416, + "title": "Miraculous World: London, At the Edge of Time", + "originalTitle": "Miraculous World : Londres, la course contre le temps", + "overview": "To save the future from a terrible fate, Marinette becomes Chronobug and teams up with Bunnyx to defeat a mysterious opponent who travels through time.", + "posterPath": "/6AtoMpHvs9pxd30KsyK8QmJ9W9M.jpg", + "backdropPath": "/cBTwQKMd7Vn6rGTGBtoFLIfj7uM.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 28, + 14 + ], + "genres": [ + "Animation", + "Adventure", + "Action", + "Fantasy" + ], + "releaseDate": "2024-11-14", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 7.455, + "voteCount": 289, + "popularity": 8.8126 + }, + { + "id": 537971, + "title": "Mia", + "originalTitle": "Mia", + "overview": "Mia recounts her most intimate confessions, uncensored, in her first approach to a totally new world of domination and submission.", + "posterPath": "/nEmw1fZOQp2qFGdrak3ipCbe31G.jpg", + "backdropPath": "/vTcJyuk0uJLKEPCrjJTB2zzY7Np.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 99 + ], + "genres": [ + "Drama", + "Documentary" + ], + "releaseDate": "2017-12-17", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 6.138, + "voteCount": 29, + "popularity": 8.8083 + }, + { + "id": 409317, + "title": "It's a Fairy!", + "originalTitle": "É Fada!", + "overview": "Geraldine is a fairy who lost their wings by using unconventional methods in their missions. Her last chance to retrieve them will be the mission \"Julia\".", + "posterPath": "/krowYpPk8PiINjZLnbFkk3Nvd5.jpg", + "backdropPath": "/zNiGfFeiwyZtWYVqAzrTBZl2Qm1.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2016-10-06", + "releaseYear": "2016", + "originalLanguage": "pt", + "voteAverage": 5.688, + "voteCount": 149, + "popularity": 8.8077 + }, + { + "id": 1182387, + "title": "Armor", + "originalTitle": "Armor", + "overview": "Armored truck security guard James Brody is working with his son Casey transporting millions of dollars between banks when a team of thieves led by Rook orchestrate a takeover of their truck to seize the riches. Following a violent car chase, Rook soon has the armored truck surrounded and James and Casey find themselves cornered onto a decrepit bridge.", + "posterPath": "/pnXLFioDeftqjlCVlRmXvIdMsdP.jpg", + "backdropPath": "/evFChfYeD2LqobEJf8iQsrYcGTw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53, + 18 + ], + "genres": [ + "Action", + "Crime", + "Thriller", + "Drama" + ], + "releaseDate": "2024-10-30", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.558, + "voteCount": 250, + "popularity": 8.802 + }, + { + "id": 277, + "title": "Underworld", + "originalTitle": "Underworld", + "overview": "Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.", + "posterPath": "/zsnQ41UZ3jo1wEeemF0eA9cAIU0.jpg", + "backdropPath": "/zsgdVbuEwqZbnUN9qLGEMBYf2Zo.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 53 + ], + "genres": [ + "Fantasy", + "Action", + "Thriller" + ], + "releaseDate": "2003-09-19", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.838, + "voteCount": 6411, + "popularity": 8.8016 + }, + { + "id": 62752, + "title": "Cinderella", + "originalTitle": "Cinderella", + "overview": "Cinderella, with the help of her \"fairy\" godmother, is granted heightened sexual prowess to win over Prince Charming. After a blindfolded orgy at the royal castle, the nerdy Prince must sleep with every willing woman in his kingdom until he finds that one, mysterious lover who so \"stood out\" on the night of the sex Ball.", + "posterPath": "/nLP4FSHXRTNRbMy6PYPxEAX1xkm.jpg", + "backdropPath": "/cqWFXLqrFINrGPhxCCbcUKWBYtQ.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1977-05-01", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 38, + "popularity": 8.8011 + }, + { + "id": 1253000, + "title": "Deathstalker", + "originalTitle": "Deathstalker", + "overview": "A powerful swordsman known as Deathstalker recovers a cursed amulet from a corpse-strewn battlefield. Marked by dark magic and hunted by monstrous assassins, he must face the rising evil and break the curse.", + "posterPath": "/nEI3DnzQC1afAjJOAizx6UX27pL.jpg", + "backdropPath": "/cugd16e3WbCG3Zogb8N7lwUnVXH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2025-10-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.587, + "voteCount": 23, + "popularity": 8.7953 + }, + { + "id": 57585, + "title": "Elephant White", + "originalTitle": "Elephant White", + "overview": "An assassin is hired by a businessman to avenge the murder of his daughter by white slave traders in Thailand.", + "posterPath": "/hqriJWWisRhm5XapyuB40D1jqqA.jpg", + "backdropPath": "/3UddZry7Pl5bTNatD008pxOJhrW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 14, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Fantasy", + "Crime" + ], + "releaseDate": "2011-05-17", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 4.96, + "voteCount": 202, + "popularity": 8.7945 + }, + { + "id": 4032, + "title": "My Girl", + "originalTitle": "My Girl", + "overview": "Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is \"allergic to everything\", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse...", + "posterPath": "/qyJJNHteA7BUwQSey05t7qP4vRV.jpg", + "backdropPath": "/vSd89kiENYeFa6mPHzsM5BgliPm.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1991-11-27", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.41, + "voteCount": 2218, + "popularity": 8.7928 + }, + { + "id": 56362, + "title": "Loups=Garous", + "originalTitle": "ルー=ガルー 忌避すべき狼", + "overview": "Virtual reality. Murder. Werewolves. And teen girls! In a future where nothing is as it seems, can old legends come true? In the near future, humans will communicate almost exclusively through monitors, making real interaction a rarefied and weak occurrence for those living in a near totalitarian society. In this new world of communication, children are only allowed to interact personally on school grounds. So when a serial killer starts slaughtering junior high children the communication routes go under further surveillance. And despite all the safeguards put in place to avoid physical interaction, the killer's latest victim turns out to have been in contact with three young girls: Tsuzki Mio, a certified prodigy; Matsuno Hatsuki, a quiet but opinionated classmate; and Kouno Ayumi, her best friend. And as the girls get caught up in trying to quell curiosity under such terrorist scrutiny, Hatsuki learns that there is much more than meets the eye of their monitored communications.", + "posterPath": "/8KSWUx4HNxfT2Klyl8lUpm1AVl7.jpg", + "backdropPath": "/30cVk7C8avyGuXtF1UO4MorSAWR.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 18, + 9648, + 16, + 27 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Drama", + "Mystery", + "Animation", + "Horror" + ], + "releaseDate": "2010-08-28", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 18, + "popularity": 8.7925 + }, + { + "id": 414792, + "title": "California Typewriter", + "originalTitle": "California Typewriter", + "overview": "A story about people whose lives are connected by typewriters. A meditation on creativity and technology featuring Tom Hanks, John Mayer, Sam Shepard, David McCullough and others.", + "posterPath": "/8tdOPx8TZ6y85BHD0G3sS8anuMY.jpg", + "backdropPath": "/j1z8S3ZfgDn47AegrQoslsdAoHl.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2017-08-18", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 32, + "popularity": 8.7893 + }, + { + "id": 1217690, + "title": "Homestead", + "originalTitle": "Homestead", + "overview": "A nuclear bomb is detonated in Los Angeles, and the nation devolves into unprecedented chaos. Ex-Green Beret Jeff Eriksson and his family escape to The Homestead, an eccentric prepper’s fortress nestled in the mountains. As violent threats and apocalyptic conditions creep toward their borders, the residents of The Homestead are left to wonder: how long can a group of people resist both the dangers of human nature and the bloodshed at their doorstep?", + "posterPath": "/fKts7WTTP7KWvI6N7WYIuEhmgXP.jpg", + "backdropPath": "/7xbAPWP9utLRecydyFSBaQ0PYGZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-12-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 94, + "popularity": 8.7886 + }, + { + "id": 1191666, + "title": "The Rookie Guide", + "originalTitle": "Le Routard", + "overview": "Yann can’t find a job he likes or can keep, and dreams of a better life. One day he learns that the famous travel guide Le Routard pays its employees to travel the world. Surely the perfect free holiday! Smooth-talking his way through the door, Yann manages to get himself hired for a trial research trip to Morocco, but he rapidly comes to realise that he’s seriously underestimated the job… Beguiled by Sofia, a feisty tourist guide, Yann gets swept up in an art trafficking operation led by the infamous mobster art dealer Dr Charoux and is plunged into an adventure where nothing will go as planned!", + "posterPath": "/fSxrzckEOWAFBBPwt9X4AHfVEA7.jpg", + "backdropPath": "/6pffDq3yzdRBxKd6y2O2InRzxZe.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-04-02", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 4.561, + "voteCount": 42, + "popularity": 8.7872 + }, + { + "id": 46738, + "title": "Incendies", + "originalTitle": "Incendies", + "overview": "A mother's last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.", + "posterPath": "/yH6DAQVgbyj72S66gN4WWVoTjuf.jpg", + "backdropPath": "/f3ATwil5vmUeTsogBaMEKbBYBth.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752, + 9648 + ], + "genres": [ + "Drama", + "War", + "Mystery" + ], + "releaseDate": "2010-09-17", + "releaseYear": "2010", + "originalLanguage": "fr", + "voteAverage": 8.103, + "voteCount": 3078, + "popularity": 8.7852 + }, + { + "id": 11881, + "title": "Miracle on 34th Street", + "originalTitle": "Miracle on 34th Street", + "overview": "Kris Kringle, seemingly the embodiment of Santa Claus, is asked to portray the jolly old fellow at Macy's following his performance in the Thanksgiving Day parade. His portrayal is so complete that many begin to question if he truly is Santa Claus, while others question his sanity.", + "posterPath": "/qyAc9X9XHloIqy3oJbbZ44Cw0Hm.jpg", + "backdropPath": "/hHYoUYgto562dcQRjVuuVlosBKz.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1947-06-04", + "releaseYear": "1947", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 795, + "popularity": 8.7828 + }, + { + "id": 27066, + "title": "The Voyeur", + "originalTitle": "L'uomo che guarda", + "overview": "At a college in Rome, a professor, nicknamed \"Dodo\" is in a deep depression. His stunningly beautiful wife has just left him for another man. Dodo wants her back very badly and has erotic daydreams about her. A beautiful young student in his class asks him for a ride home and seduces the lucky man, but still he wonders about his wife and her lover.", + "posterPath": "/9gxEUC0wMw1eo8untipmOH17h48.jpg", + "backdropPath": "/rE9ze3zdhZE8492KPDXiCergZl0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1994-01-27", + "releaseYear": "1994", + "originalLanguage": "it", + "voteAverage": 5.5, + "voteCount": 219, + "popularity": 8.7813 + }, + { + "id": 287903, + "title": "Krampus", + "originalTitle": "Krampus", + "overview": "When his dysfunctional family clashes over the holidays, young Max is disillusioned and turns his back on Christmas. Little does he know, this lack of festive spirit has unleashed the wrath of Krampus: a demonic force of ancient evil intent on punishing non-believers.", + "posterPath": "/mzPCU6xQ2XQmD76cDVZPm5PZAaS.jpg", + "backdropPath": "/h3X1YZXNeklLNKRVOS6DHGRosog.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 14 + ], + "genres": [ + "Horror", + "Comedy", + "Fantasy" + ], + "releaseDate": "2015-11-26", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 2310, + "popularity": 8.7786 + }, + { + "id": 1283707, + "title": "Shadow Land", + "originalTitle": "Shadow Land", + "overview": "Haunted by relentless nightmares foretelling his untimely demise, former President Robert Wainwright summons his past psychiatrist to his upstate residence, who discovers the threat may be more real than imagined.", + "posterPath": "/n6tk8oqhUki6Zp4PIuQqr1aTSXq.jpg", + "backdropPath": "/ipa9h8BaZgBKWrbDZ9aNfLzYAh7.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2024-05-31", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 18, + "popularity": 8.7779 + }, + { + "id": 431580, + "title": "Abominable", + "originalTitle": "Abominable", + "overview": "A group of misfits encounter a young Yeti named Everest, and they set off to reunite the magical creature with his family on the mountain of his namesake.", + "posterPath": "/llhj3xtNes2Ri4d9HqtleKo1CfL.jpg", + "backdropPath": "/jXk3ZMq7n4ugOqKYq0CtMn3gia8.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 12, + 35 + ], + "genres": [ + "Family", + "Animation", + "Adventure", + "Comedy" + ], + "releaseDate": "2019-09-19", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 2127, + "popularity": 8.7745 + }, + { + "id": 52605, + "title": "Strapped", + "originalTitle": "Strapped", + "overview": "A routine trick propels a tall, dark, cynical hustler into a series of life-changing encounters in this drama. But this amicable and sexually efficient rent boy begins to look at himself differently when he finds himself lost in a maze-like apartment building. As he wanders through the building, he tricks with a variety of johns; sex is the commonality, but out of that commodity comes raw, unguarded emotions for all.", + "posterPath": "/DfI9FjHB0kpNoX2vlI0xwffw32.jpg", + "backdropPath": "/a2qafoYuVLbkruH3Nkm5YO3IWvN.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-09-24", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 51, + "popularity": 8.7569 + }, + { + "id": 41445, + "title": "Psychosis", + "originalTitle": "Psychosis", + "overview": "A serial killer unleashes his blood lust at a remote environmental-camp. Years later a horror novelist relocates to rural England and is plagued to the point of madness by horrific hauntings of a massacre.", + "posterPath": "/gfUwfviPHAiqJ98XMJnmadBAOH0.jpg", + "backdropPath": "/4LU9fOFHiSd1fJk5remPkakwLTI.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2010-07-19", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 3.556, + "voteCount": 45, + "popularity": 8.7406 + }, + { + "id": 512200, + "title": "Jumanji: The Next Level", + "originalTitle": "Jumanji: The Next Level", + "overview": "As the gang return to Jumanji to rescue one of their own, they discover that nothing is as they expect. The players will have to brave parts unknown and unexplored in order to escape the world’s most dangerous game.", + "posterPath": "/4kh9dxAiClS2GMUpkRyzGwpNWWX.jpg", + "backdropPath": "/qgch2rFskIxDMgwrD5lWTaB4nBl.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 14 + ], + "genres": [ + "Adventure", + "Comedy", + "Fantasy" + ], + "releaseDate": "2019-12-04", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 9089, + "popularity": 8.7394 + }, + { + "id": 135397, + "title": "Jurassic World", + "originalTitle": "Jurassic World", + "overview": "Twenty-two years after the events of Jurassic Park, Isla Nublar now features a fully functioning dinosaur theme park, Jurassic World, as originally envisioned by John Hammond.", + "posterPath": "/rhr4y79GpxQF9IsfJItRXVaoGs4.jpg", + "backdropPath": "/dF6FjTZzRTENfB4R17HDN20jLT2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2015-06-06", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 21123, + "popularity": 8.7393 + }, + { + "id": 330770, + "title": "Evolution", + "originalTitle": "Évolution", + "overview": "11-year-old Nicolas lives with his mother in a seaside housing estate. The only place that ever sees any activity is the hospital. It is there that all the boys from the village are forced to undergo strange medical trials that attempt to disrupt the phases of evolution.", + "posterPath": "/sLluKqBaGl0NLOFTtoXLXN9u9G6.jpg", + "backdropPath": "/qnqXk1yjSxamhBel8tOgynMbnkv.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 18, + 27 + ], + "genres": [ + "Mystery", + "Drama", + "Horror" + ], + "releaseDate": "2016-03-16", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.972, + "voteCount": 217, + "popularity": 8.7387 + }, + { + "id": 266285, + "title": "The Salvation", + "originalTitle": "The Salvation", + "overview": "In 1870s America, a peaceful American settler kills his family's murderer which unleashes the fury of a notorious gang leader. His cowardly fellow townspeople then betray him, forcing him to hunt down the outlaws alone.", + "posterPath": "/xQsv3OI8UT6s9Rn3C0WxO24bnEx.jpg", + "backdropPath": "/iXQNyhk1rFtFd9Fo9gUYiw9hlv0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "2014-05-22", + "releaseYear": "2014", + "originalLanguage": "da", + "voteAverage": 6.466, + "voteCount": 907, + "popularity": 8.7376 + }, + { + "id": 571055, + "title": "Down", + "originalTitle": "Down", + "overview": "A pair of coworkers gets trapped in an elevator over a long weekend, but what at first promises to be a romantic connection turns nefarious as each party begins to reveal who they truly are.", + "posterPath": "/tWD5FXfXTRcYzXZLq0bg8hxmQrs.jpg", + "backdropPath": "/o2HR6hDdsIIXEJV7p2KulKybCvo.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2019-02-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 248, + "popularity": 8.7304 + }, + { + "id": 1581099, + "title": "Kevin Hart: Acting My Age", + "originalTitle": "Kevin Hart: Acting My Age", + "overview": "Older, wiser — and still hilarious. Kevin Hart opens up about his midlife mishaps, from intimacy pills to the perils of unexpected injuries.", + "posterPath": "/89HPieER8jX9sGKKzhagGIGkMxi.jpg", + "backdropPath": "/pFCm7WLLpno4opmqqQS4GXZ8V7M.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-11-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.231, + "voteCount": 13, + "popularity": 8.73 + }, + { + "id": 14349, + "title": "Sleepwalking", + "originalTitle": "Sleepwalking", + "overview": "When her boyfriend is arrested for marijuana possession, Joleen Reedy and her 11-year-old daughter, Tara, take refuge with Joleen's aimless brother, James. Joleen soon runs off with a truck driver, and James is unable to meet his responsibilities. After Child Protective Services takes possession of Tara, James abducts her from a foster home, and the two travel from California to Utah, where his abusive father lives.", + "posterPath": "/xMJi8Y8rUmhTp5jYd2dSdBfKvzF.jpg", + "backdropPath": "/276IKjUIqjmwUPUdiW3WgToOf2Z.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-03-14", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 101, + "popularity": 8.7248 + }, + { + "id": 10530, + "title": "Pocahontas", + "originalTitle": "Pocahontas", + "overview": "Pocahontas, daughter of a Native American tribe chief, falls in love with an English soldier as colonists invade 17th century Virginia.", + "posterPath": "/kZ1ft0QZ4e3zDUPMBftEkwI9ftd.jpg", + "backdropPath": "/fDZ2DCKW2D7J0ABNr9EICdD2H1s.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 10751, + 10749 + ], + "genres": [ + "Adventure", + "Animation", + "Family", + "Romance" + ], + "releaseDate": "1995-06-16", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.912, + "voteCount": 5924, + "popularity": 8.7243 + }, + { + "id": 102651, + "title": "Maleficent", + "originalTitle": "Maleficent", + "overview": "A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. She rises to be the land's fiercest protector, but she ultimately suffers a ruthless betrayal – an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King's successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom – and to Maleficent's true happiness as well.", + "posterPath": "/bDG3yei6AJlEAK3A5wN7RwFXQ7V.jpg", + "backdropPath": "/4hfcpHmMEgmFTdnVx4XCtM6dgCG.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 28, + 10751, + 10749 + ], + "genres": [ + "Fantasy", + "Adventure", + "Action", + "Family", + "Romance" + ], + "releaseDate": "2014-05-28", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.089, + "voteCount": 13487, + "popularity": 8.7223 + }, + { + "id": 279914, + "title": "The Identical", + "originalTitle": "The Identical", + "overview": "During the Great Depression, identical twins are separated at birth. One, Drexel Hemsley becomes a wildly successful '50s rock star, while the other, Ryan Wade, struggles to balance his passion for music and pleasing his parents, who want him to become a preacher. Finally, Ryan rebels against his parents' wishes and launches his own music career -- performing the hits of Drexel Hemsley. Ryan later learns the truth about Drexel when their fates tragically collide.", + "posterPath": "/nGLnfqQVr3tPXQtnXBiS3zIb2XE.jpg", + "backdropPath": "/r01yOfa716QB0fqHv6OXdSEvDNg.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18 + ], + "genres": [ + "Music", + "Drama" + ], + "releaseDate": "2014-09-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 52, + "popularity": 8.722 + }, + { + "id": 554585, + "title": "Originless", + "originalTitle": "Sin Origen", + "overview": "A group of arcanes enjoy fighting vampires.", + "posterPath": "/aMDmMiZXoPJlDlrVlaBDC5IZvq8.jpg", + "backdropPath": "/azTsf28VYj0rw6ql67fB8WnxbZX.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2020-10-25", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 5.578, + "voteCount": 58, + "popularity": 8.7204 + }, + { + "id": 343859, + "title": "The Surface", + "originalTitle": "The Surface", + "overview": "Evan, an orphaned 22-year-old who grew up in the foster care system, buys a vintage 8mm camera in a yard sale from an elderly man, ends up with reels of the man's old home movies, and begins to live vicariously through these home movies.", + "posterPath": "/jzJ8d0x6iCpMn3ZUwoSQ0TS1q3x.jpg", + "backdropPath": "/hl98aGSHh7txKGqrh7lX63H0qKX.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-06-27", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.846, + "voteCount": 13, + "popularity": 8.7198 + }, + { + "id": 494950, + "title": "Rajma Chawal", + "originalTitle": "Rajma Chawal", + "overview": "A father attempts to reconnect with his estranged son through social media, a new world for him.", + "posterPath": "/nHIm9h9oKRsNGCtTrPNEZaWQHeB.jpg", + "backdropPath": "/znGw2ALRqdTOYdBbDRW1FgGVJTC.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "2018-10-13", + "releaseYear": "2018", + "originalLanguage": "hi", + "voteAverage": 6.5, + "voteCount": 21, + "popularity": 8.7195 + }, + { + "id": 882598, + "title": "Smile", + "originalTitle": "Smile", + "overview": "After witnessing a bizarre, traumatic incident involving a patient, Dr. Rose Cotter starts experiencing frightening occurrences that she can't explain.", + "posterPath": "/aPqcQwu4VGEewPhagWNncDbJ9Xp.jpg", + "backdropPath": "/kMZIMqEXO5MFd5Y1Ha2jZZF4pvF.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2022-09-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 3828, + "popularity": 8.7188 + }, + { + "id": 1190511, + "title": "Sitaare Zameen Par", + "originalTitle": "सितारे ज़मीन पर", + "overview": "A disgraced basketball coach is given the chance to coach a team of players who are intellectually disabled as part of community services. Gulshan has apprehensions at first and feels out of place but soon realizes they just might have what it takes to make it to the national championships.", + "posterPath": "/adYjCJGSNiL7CIaDW3g0Bcg7r2Z.jpg", + "backdropPath": "/pdbML7ol4HvsI1xWX0s9LZpUGfL.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-06-20", + "releaseYear": "2025", + "originalLanguage": "hi", + "voteAverage": 7.138, + "voteCount": 29, + "popularity": 8.7159 + }, + { + "id": 11528, + "title": "The Sandlot", + "originalTitle": "The Sandlot", + "overview": "During a summer of friendship and adventure, one boy becomes a part of the gang, nine boys become a team and their leader becomes a legend by confronting the terrifying mystery beyond the right field wall.", + "posterPath": "/7PYqz0viEuW8qTvuGinUMjDWMnj.jpg", + "backdropPath": "/kFm4FbjD2mBWtK9uyXryFtOD0Ut.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1993-04-07", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1268, + "popularity": 8.7146 + }, + { + "id": 61930, + "title": "Bagnomaria", + "originalTitle": "Bagnomaria", + "overview": "In Pietrasanta all are excited for the annual party of summer end. Here we find four characters: Merigo, a naive guy passionate of bike; Pierre, son of the mayor; Simone, a pestiferous kid; Mario, lifeguard of \"Bagnomaria\".", + "posterPath": "/7yxgsYHa1RCUYdnSyc73uazjgpT.jpg", + "backdropPath": "/gwHVYWTYZIW6MM8EgFEiQEMWAAR.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1999-02-12", + "releaseYear": "1999", + "originalLanguage": "it", + "voteAverage": 5.8, + "voteCount": 110, + "popularity": 8.7136 + }, + { + "id": 4588, + "title": "Lust, Caution", + "originalTitle": "色‧戒", + "overview": "During World War II, a secret agent must seduce and assassinate an official who works for the Japanese puppet government in Shanghai.", + "posterPath": "/6c1tqfJEBuIyhQC19SLlLQAUAvJ.jpg", + "backdropPath": "/lU1fQews2gye23PocVE48CsTmOQ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 10749, + 53 + ], + "genres": [ + "Action", + "Drama", + "Romance", + "Thriller" + ], + "releaseDate": "2007-09-24", + "releaseYear": "2007", + "originalLanguage": "zh", + "voteAverage": 7.2, + "voteCount": 759, + "popularity": 8.713 + }, + { + "id": 414419, + "title": "Kill Bill: The Whole Bloody Affair", + "originalTitle": "Kill Bill: The Whole Bloody Affair", + "overview": "Quentin Tarantino’s complete cut combining Kill Bill: Vol. 1 and Vol. 2 follows The Bride, a former assassin who awakens from a four-year coma after being shot by her mentor and lover, Bill. She embarks on a vengeful quest to eliminate Bill and the Deadly Viper Assassination Squad who betrayed her.", + "posterPath": "/lRQHS8x9ofDPVx9gjq6sGAfERkf.jpg", + "backdropPath": "/ljFbfNmnJtU4gYXJnPSLDiVhBLu.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2011-03-27", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.012, + "voteCount": 1098, + "popularity": 8.7116 + }, + { + "id": 49529, + "title": "John Carter", + "originalTitle": "John Carter", + "overview": "John Carter is a war-weary, former military captain who's inexplicably transported to the mysterious and exotic planet of Barsoom (Mars) and reluctantly becomes embroiled in an epic conflict. It's a world on the brink of collapse, and Carter rediscovers his humanity when he realizes the survival of Barsoom and its people rests in his hands.", + "posterPath": "/lCxz1Yus07QCQQCb6I0Dr3Lmqpx.jpg", + "backdropPath": "/hj5RynBrJB1Wlz84t3lJj9DuTJh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2012-03-07", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.357, + "voteCount": 5920, + "popularity": 8.7112 + }, + { + "id": 619979, + "title": "Deep Water", + "originalTitle": "Deep Water", + "overview": "A well-to-do husband who allows his wife to have affairs in order to avoid a divorce becomes a prime suspect in the disappearance of her lovers.", + "posterPath": "/6yRMyWwjuhKg6IU66uiZIGhaSc8.jpg", + "backdropPath": "/xpOkZAgYwTeEdmvOXmXK7LbJ8vj.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 53 + ], + "genres": [ + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2022-03-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.818, + "voteCount": 1537, + "popularity": 8.7105 + }, + { + "id": 31598, + "title": "Q & A", + "originalTitle": "Q & A", + "overview": "A young district attorney seeking to prove a case against a corrupt police detective encounters a former lover and her new protector, a crime boss who refuses to help him.", + "posterPath": "/ukvDaASAsiFVnPp16NYfdTIYTJ4.jpg", + "backdropPath": "/qQWlRTI59a9wtj43pE9WToKdBoT.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "1990-04-27", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 188, + "popularity": 8.7026 + }, + { + "id": 514577, + "title": "Our Struggles", + "originalTitle": "Nos batailles", + "overview": "While Olivier, a 39 year-old foreman gives his job everything he’s got, Laura, his wife and the mother of their two children, abandons the family home, leaving Olivier alone to face his responsibilities. Lost and completely thrown, Olivier is going to have to come to terms with his new status as a single father raising his children alone. Because Laura’s not coming back.", + "posterPath": "/3rbE57ZanoU6cdx1AJdABaPrOUC.jpg", + "backdropPath": "/dDhquNqaPfbWoJYRiWkzpBqoeh1.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-10-03", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 6.4, + "voteCount": 139, + "popularity": 8.7002 + }, + { + "id": 85, + "title": "Raiders of the Lost Ark", + "originalTitle": "Raiders of the Lost Ark", + "overview": "When Dr. Indiana Jones – the tweed-suited professor who just happens to be a celebrated archaeologist – is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.", + "posterPath": "/ceG9VzoRAVGwivFU403Wc3AHRys.jpg", + "backdropPath": "/ueDw7djPgKPZfph0vC43aD2EMyF.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28 + ], + "genres": [ + "Adventure", + "Action" + ], + "releaseDate": "1981-06-12", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 13207, + "popularity": 8.6974 + }, + { + "id": 592983, + "title": "Spellbound", + "originalTitle": "Spellbound", + "overview": "When a powerful spell turns her parents into giant monsters, a teenage princess must journey into the wild to reverse the curse before it's too late.", + "posterPath": "/4dSrwXJNKtMtlkwJPgZMkjjuHvD.jpg", + "backdropPath": "/iqL1ztNeXAXulsZzpJWmyiZdZWc.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 10751, + 12, + 35 + ], + "genres": [ + "Animation", + "Fantasy", + "Family", + "Adventure", + "Comedy" + ], + "releaseDate": "2024-11-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.647, + "voteCount": 283, + "popularity": 8.6899 + }, + { + "id": 8467, + "title": "Dumb and Dumber", + "originalTitle": "Dumb and Dumber", + "overview": "Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some \"adventures\" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.", + "posterPath": "/4LdpBXiCyGKkR8FGHgjKlphrfUc.jpg", + "backdropPath": "/8uBTDGRcNHhYChcoazP5rleRME7.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1994-12-16", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.64, + "voteCount": 6469, + "popularity": 8.6875 + }, + { + "id": 68726, + "title": "Pacific Rim", + "originalTitle": "Pacific Rim", + "overview": "Using massive piloted robots to combat the alien threat, earth's survivors take the fight to the invading alien force lurking in the depths of the Pacific Ocean. Nearly defenseless in the face of the relentless enemy, the forces of mankind have no choice but to turn to two unlikely heroes who now stand as earth's final hope against the mounting apocalypse.", + "posterPath": "/8wo4eN8dWKaKlxhSvBz19uvj8gA.jpg", + "backdropPath": "/9X7Im1YuBhyHYVD8r7CAONPJR5k.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2013-07-11", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.916, + "voteCount": 13000, + "popularity": 8.6858 + }, + { + "id": 7485, + "title": "Shooter", + "originalTitle": "Shooter", + "overview": "A top Marine sniper, Bob Lee Swagger, leaves the military after a mission goes horribly awry and disappears, living in seclusion. He is coaxed back into service after a high-profile government official convinces him to help thwart a plot to kill the President of the United States. Ultimately double-crossed and framed for the attempt, Swagger becomes the target of a nationwide manhunt. He goes on the run to track the real killer and find out who exactly set him up, and why, eventually seeking revenge against some of the most powerful and corrupt leaders in the free world.", + "posterPath": "/2aWGxo1E5polpBjPvtBRkWp7qaS.jpg", + "backdropPath": "/uy2trYgO8MOQfQXlvMaLhBnkUqg.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53 + ], + "genres": [ + "Drama", + "Action", + "Thriller" + ], + "releaseDate": "2007-03-22", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.123, + "voteCount": 5231, + "popularity": 8.6855 + }, + { + "id": 1005331, + "title": "Carry-On", + "originalTitle": "Carry-On", + "overview": "An airport security officer races to outsmart a mysterious traveler forcing him to let a dangerous item slip onto a Christmas Eve flight.", + "posterPath": "/sjMN7DRi4sGiledsmllEw5HJjPy.jpg", + "backdropPath": "/6RcBQkC2PZJwwbFugqzgvN3moYL.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2024-12-05", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.895, + "voteCount": 2501, + "popularity": 8.6825 + }, + { + "id": 127585, + "title": "X-Men: Days of Future Past", + "originalTitle": "X-Men: Days of Future Past", + "overview": "The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.", + "posterPath": "/tYfijzolzgoMOtegh1Y7j2Enorg.jpg", + "backdropPath": "/hUPgIibqZlwbhs4N08cPzzc4f5K.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2014-05-15", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 15891, + "popularity": 8.6787 + }, + { + "id": 19124, + "title": "Blind Fury", + "originalTitle": "Blind Fury", + "overview": "A blind Vietnam vet, trained as a swordfighter, comes to America and helps to rescue the son of a fellow soldier.", + "posterPath": "/ufbA7v7b2xt85Cf1tocr69cwuCO.jpg", + "backdropPath": "/rrnya09qUcArCReu2Xvy6tedmPu.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1989-08-17", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.537, + "voteCount": 485, + "popularity": 8.6771 + }, + { + "id": 39563, + "title": "The Eclipse", + "originalTitle": "The Eclipse", + "overview": "Michael is a widower who is struggling to adjust to his new role as the sole caretaker of his two children. Still reeling from the death of his wife, he has been plagued by terrifying apparitions. When he volunteers at a local literary festival, he finds himself drawn to Lena, an empathetic author of supernatural fiction. While Lena tries to help Michael with the mystery of his nightmarish visions, she must contend with problems of her own, as she’s being jealously pursued by self-obsessed novelist Nicholas, her one-time lover. As the festival progresses, the three adults’ lives converge and collide.", + "posterPath": "/96ma6Hn8aW3FbHoaDzHiRflCHls.jpg", + "backdropPath": "/keMfCmqrkSfnjyqCEvhc7mGzWX6.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "2009-04-24", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.956, + "voteCount": 57, + "popularity": 8.674 + }, + { + "id": 283995, + "title": "Guardians of the Galaxy Vol. 2", + "originalTitle": "Guardians of the Galaxy Vol. 2", + "overview": "The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage.", + "posterPath": "/y4MBh0EjBlMuOzv9axM4qJlmhzz.jpg", + "backdropPath": "/aJn9XeesqsrSLKcHfHP4u5985hn.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2017-04-19", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 22425, + "popularity": 8.6732 + }, + { + "id": 463906, + "title": "The Saint", + "originalTitle": "The Saint", + "overview": "International master thief, Simon Templar, also known as The Saint, is asked by a desperate rich man to find his kidnapped daughter. However, in addition to evading the authorities, Simon must face a dangerous adversary from his past.", + "posterPath": "/n8tsrPLem70exhXHfSausV7FlPx.jpg", + "backdropPath": "/5yzpA7odHcs926hLptTwAZmFoVN.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 80 + ], + "genres": [ + "Action", + "Adventure", + "Crime" + ], + "releaseDate": "2017-07-11", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 289, + "popularity": 8.6721 + }, + { + "id": 39347, + "title": "Hello Brother", + "originalTitle": "Hello Brother", + "overview": "A ghost seeking revenge for his death haunts the man who received his heart in a transplant.", + "posterPath": "/edwYmD9YUs6gMPEkNOA78f28pwM.jpg", + "backdropPath": "/8ereTTWeyH1JH4IZOUS8qJ4M5W6.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1999-08-26", + "releaseYear": "1999", + "originalLanguage": "hi", + "voteAverage": 5.6, + "voteCount": 52, + "popularity": 8.6684 + }, + { + "id": 879689, + "title": "Raging Grace", + "originalTitle": "Raging Grace", + "overview": "An undocumented Filipina immigrant lands a job as a careworker for a seemingly terminal old man, securing a better life for her and her daughter. But a dark discovery threatens to destroy everything she’s strived for and holds dear.", + "posterPath": "/mu7vmxuZGAUZCJ5jxqpmpk0CPFX.jpg", + "backdropPath": "/sdCf5jFzyZRGS1umUlmXz7Gn3ao.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 27, + 35, + 9648 + ], + "genres": [ + "Drama", + "Thriller", + "Horror", + "Comedy", + "Mystery" + ], + "releaseDate": "2023-12-01", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 41, + "popularity": 8.6644 + }, + { + "id": 1402, + "title": "The Pursuit of Happyness", + "originalTitle": "The Pursuit of Happyness", + "overview": "A struggling salesman takes custody of his son as he's poised to begin a life-changing professional career.", + "posterPath": "/lBYOKAMcxIvuk9s9hMuecB9dPBV.jpg", + "backdropPath": "/5jhG1lTgV0MS6tDkBMQSSitttTT.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-12-14", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.889, + "voteCount": 10305, + "popularity": 8.6622 + }, + { + "id": 118662, + "title": "Decalogue I", + "originalTitle": "Dekalog, jeden", + "overview": "Krzysztof, a semantics professor and computer hobbyist, is raising his young son, Paweł, to look to science for answers, while Irena, Paweł’s aunt, lives a life rooted in faith. Over the course of one day, both adults are forced to question their belief systems.", + "posterPath": "/h3kJ2UXkZSUzfQAAjcRwl6qNIpc.jpg", + "backdropPath": "/aldfhBj8nq2GLYr8qozR1u0G2NY.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770 + ], + "genres": [ + "Drama", + "TV Movie" + ], + "releaseDate": "1989-05-16", + "releaseYear": "1989", + "originalLanguage": "pl", + "voteAverage": 8.1, + "voteCount": 249, + "popularity": 8.6617 + }, + { + "id": 78188, + "title": "Cabin Pressure", + "originalTitle": "Cabin Pressure", + "overview": "A fully automated commercial jetliner is prepared to make its maiden voyage. Without an on-flight pilot, the craft relies on satellite linking for its course. But when the plane suddenly deviates from its determined route and establishes a circular pattern over Seattle, it becomes evident that the craft has been hijacked by a disgruntled former airline employee who has hacked into the flight's computer system from his apartment, somewhere in the United States. Now, a former discredited Navy pilot and an oddball technician must race against the clock to find where the angry employee is, and regain control of the plane before it crashes into the city.", + "posterPath": "/jIvBfq2l8SExf5ESu5WvsYjk7DP.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 28, + 10770, + 12, + 53 + ], + "genres": [ + "Action", + "TV Movie", + "Adventure", + "Thriller" + ], + "releaseDate": "2001-08-08", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.071, + "voteCount": 14, + "popularity": 8.661 + }, + { + "id": 762430, + "title": "Retribution", + "originalTitle": "Retribution", + "overview": "When a mysterious caller plants a bomb under his car seat, a bank executive begins a high-speed chase across the city to complete a specific series of tasks — all with his kids trapped in the back seat.", + "posterPath": "/oUmmY7QWWn7OhKlcPOnirHJpP1F.jpg", + "backdropPath": "/iiXliCeykkzmJ0Eg9RYJ7F2CWSz.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 12 + ], + "genres": [ + "Thriller", + "Action", + "Adventure" + ], + "releaseDate": "2023-08-23", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.568, + "voteCount": 1302, + "popularity": 8.6592 + }, + { + "id": 616651, + "title": "Stillwater", + "originalTitle": "Stillwater", + "overview": "Bill Baker, an American oil-rig roughneck from Oklahoma, travels to Marseille to visit his estranged daughter, Allison, who is in prison for a murder she claims she did not commit. Confronted with language barriers, cultural differences, and a complicated legal system, Bill builds a new life for himself in France as he makes it his personal mission to exonerate his daughter.", + "posterPath": "/1lrPR7ah1KElPKnCsxmIRE1OlIh.jpg", + "backdropPath": "/70xJCPOvP16XnrtO9WSkCek12sv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "2021-07-29", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1345, + "popularity": 8.6502 + }, + { + "id": 13221, + "title": "The Kautokeino Rebellion", + "originalTitle": "Kautokeino-opprøret", + "overview": "Religious and cultural reawakening inspires rebellion in a 19th century Norwegian village.", + "posterPath": "/4euGED9y7Lt6QzQWw7z9HDwtPW4.jpg", + "backdropPath": "/pDUtAEZ5BSwigThZc76kH7EV5Nb.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2008-01-18", + "releaseYear": "2008", + "originalLanguage": "no", + "voteAverage": 6, + "voteCount": 34, + "popularity": 8.6501 + }, + { + "id": 324552, + "title": "John Wick: Chapter 2", + "originalTitle": "John Wick: Chapter 2", + "overview": "John Wick is forced out of retirement by a former associate looking to seize control of a shadowy international assassins’ guild. Bound by a blood oath to aid him, Wick travels to Rome and does battle against some of the world’s most dangerous killers.", + "posterPath": "/hXWBc0ioZP3cN4zCu6SN3YHXZVO.jpg", + "backdropPath": "/r17jFHAemzcWPPtoO0UxjIX0xas.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2017-02-08", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.34, + "voteCount": 13805, + "popularity": 8.6455 + }, + { + "id": 145963, + "title": "The Bulleteers", + "originalTitle": "The Bulleteers", + "overview": "Criminals with rocket powered car loot and extort the city, and only Superman can stop them!", + "posterPath": "/uVLYnYmrsOnwGrC0NKbmoyh9NTk.jpg", + "backdropPath": "/rg1w1kEb7vo9fp4UbBV2b6S12EF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 14, + 12, + 10751, + 878 + ], + "genres": [ + "Action", + "Animation", + "Fantasy", + "Adventure", + "Family", + "Science Fiction" + ], + "releaseDate": "1942-03-27", + "releaseYear": "1942", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 43, + "popularity": 8.6451 + }, + { + "id": 514999, + "title": "Murder Mystery", + "originalTitle": "Murder Mystery", + "overview": "On a long-awaited trip to Europe, a New York City cop and his hairdresser wife scramble to solve a baffling murder aboard a billionaire's yacht.", + "posterPath": "/bSMSO9xupd4R4vwTPqigHn2quLN.jpg", + "backdropPath": "/wL8KA3zIJQPbbU5hJlyIdmmLZit.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 9648 + ], + "genres": [ + "Action", + "Comedy", + "Mystery" + ], + "releaseDate": "2019-05-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.267, + "voteCount": 4650, + "popularity": 8.6428 + }, + { + "id": 604685, + "title": "Den of Thieves 2: Pantera", + "originalTitle": "Den of Thieves 2: Pantera", + "overview": "Big Nick is back on the hunt in Europe and closing in on Donnie, who is embroiled in the treacherous and unpredictable world of diamond thieves and the infamous Panther mafia, as they plot a massive heist of the world's largest diamond exchange.", + "posterPath": "/rxcyxxarD17xMliStDEhM6y2AYQ.jpg", + "backdropPath": "/1mCEzHxDcJdkM3Ye7CTeZ04HVBB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-01-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.62, + "voteCount": 681, + "popularity": 8.6374 + }, + { + "id": 80280, + "title": "[REC]³ Genesis", + "originalTitle": "[REC]³ Génesis", + "overview": "A pair of newlyweds must fight to survive when their wedding reception descends into chaos and carnage when their guests become infected by a virus that turns them into hungry zombies.", + "posterPath": "/tI1534q0Up7PBcLdXdFerLmIXn3.jpg", + "backdropPath": "/zxPri7LbVdvdwAroeoUp5EXAse1.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2012-03-30", + "releaseYear": "2012", + "originalLanguage": "es", + "voteAverage": 5.322, + "voteCount": 1566, + "popularity": 8.6369 + }, + { + "id": 1049942, + "title": "Bambi: The Reckoning", + "originalTitle": "Bambi: The Reckoning", + "overview": "After a mother and son get in a car wreck, they soon become hunted by Bambi, a mutated grief-stricken deer on a deadly rampage seeking revenge for the death of his mother and wife.", + "posterPath": "/8oBbWxWDJrrDtNkmd0OzZpPFFUR.jpg", + "backdropPath": "/tG5ZSx57zkijfK975aENinlOdIy.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.606, + "voteCount": 99, + "popularity": 8.6322 + }, + { + "id": 730057, + "title": "Torn", + "originalTitle": "Torn", + "overview": "When world renowned climber Alex Lowe was tragically lost in a deadly avalanche, his best friend and climbing partner went on to marry his widow and help raise his three sons. This profoundly intimate film from eldest son Max, captures the family's intense personal journey toward understanding as they finally lay him to rest.", + "posterPath": "/A2FQq9rXzIp9uMLnhB15686Y6uJ.jpg", + "backdropPath": "/fEQZhYwDsnlkVRJYTMB682et3tE.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2021-12-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 25, + "popularity": 8.6313 + }, + { + "id": 497698, + "title": "Black Widow", + "originalTitle": "Black Widow", + "overview": "Natasha Romanoff, also known as Black Widow, confronts the darker parts of her ledger when a dangerous conspiracy with ties to her past arises. Pursued by a force that will stop at nothing to bring her down, Natasha must deal with her history as a spy and the broken relationships left in her wake long before she became an Avenger.", + "posterPath": "/7JPpIjhD2V0sKyFvhB9khUMa30d.jpg", + "backdropPath": "/keIxh0wPr2Ymj0Btjh4gW7JJ89e.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2021-07-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.187, + "voteCount": 10871, + "popularity": 8.6261 + }, + { + "id": 100306, + "title": "The Hare-Brained Hypnotist", + "originalTitle": "The Hare-Brained Hypnotist", + "overview": "Elmer Fudd goes after Bugs using hypnotism, only the plan backfires.", + "posterPath": "/449IbOGzjeyf2rCS95TMO0rPMud.jpg", + "backdropPath": "/gOBZNtmiMvp0lcZHCFjnncPi097.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1942-10-31", + "releaseYear": "1942", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 26, + "popularity": 8.6261 + }, + { + "id": 119450, + "title": "Dawn of the Planet of the Apes", + "originalTitle": "Dawn of the Planet of the Apes", + "overview": "A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.", + "posterPath": "/kScdQEwS9jPEdnO23XjGAtaoRcT.jpg", + "backdropPath": "/zlU8BIkgY7E6SMfD3USTWC6bchL.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 18, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2014-07-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.334, + "voteCount": 11916, + "popularity": 8.6249 + }, + { + "id": 978592, + "title": "Sleeping Dogs", + "originalTitle": "Sleeping Dogs", + "overview": "Roy Freeman, an ex-homicide detective with a fractured memory, is forced to revisit a case he can't remember. As a man's life hangs in the balance on death row, Freeman must piece together the brutal evidence from a decade-old murder investigation, uncovering a sinister web of buried secrets and betrayals linking to his past. With only instincts to trust, he faces a chilling truth - sometimes, it's best to let sleeping dogs lie.", + "posterPath": "/5DwQhh1HvTo7edaOeMX49NUyZqy.jpg", + "backdropPath": "/s1pLloOCKSEzaOwz8PRJgyo5TFX.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 80, + 18 + ], + "genres": [ + "Mystery", + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2024-03-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.004, + "voteCount": 522, + "popularity": 8.6244 + }, + { + "id": 1284787, + "title": "No Signal!", + "originalTitle": "Y’a pas de réseau", + "overview": "It is about two young step-siblings spending the weekend with their parents in a lodge in a remote forest who accidentally film two bumbling criminals in the middle of a robbery.", + "posterPath": "/dy8V2rixzbklwB0aSSrYPkhsLoT.jpg", + "backdropPath": "/e2osCsrNcNVZ5zaCArYeASazCSO.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-08-06", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 4.7, + "voteCount": 10, + "popularity": 8.6231 + }, + { + "id": 567609, + "title": "Ready or Not", + "originalTitle": "Ready or Not", + "overview": "A young bride's wedding night turns into her worst nightmare when her ridiculously rich in-laws force her to play a gruesome game of hide-and-seek.", + "posterPath": "/oJD9KQFoObZmxAS1je56SIFVNJt.jpg", + "backdropPath": "/oJ1MIABA0WF0a7MDVQnnMvBdex8.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2019-08-21", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 4970, + "popularity": 8.623 + }, + { + "id": 62835, + "title": "Colombiana", + "originalTitle": "Colombiana", + "overview": "After witnessing her parents’ murder as a child in Bogota, Cataleya Restrepo grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents' death.", + "posterPath": "/rEdGDgRB3gducezNSIyx2lbKQy4.jpg", + "backdropPath": "/2PlRuZUjqC58bqm6MOjOAraEdFA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80, + 18 + ], + "genres": [ + "Action", + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2011-07-27", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.643, + "voteCount": 2755, + "popularity": 8.6216 + }, + { + "id": 93456, + "title": "Despicable Me 2", + "originalTitle": "Despicable Me 2", + "overview": "Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.", + "posterPath": "/oyMPJJZoOpLHgJoFPUOn6DgkbWJ.jpg", + "backdropPath": "/fOipappvgVtUbbHOtmCkHzcwJjC.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2013-06-26", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 11724, + "popularity": 8.6202 + }, + { + "id": 487616, + "title": "Curiosa", + "originalTitle": "Curiosa", + "overview": "A passionate love story set against a backdrop of sexual freedom, loosely based on the relationship between 19th century authors Pierre Louÿs and Marie de Régnier.", + "posterPath": "/fxHchovLxOnH65Eel3fAHr9i4Qi.jpg", + "backdropPath": "/422khm80pDAY9NCj41qBY9w0X38.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2019-04-03", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 5.864, + "voteCount": 224, + "popularity": 8.6192 + }, + { + "id": 1291559, + "title": "Drawing Closer", + "originalTitle": "余命一年の僕が、余命半年の君と出会った話。", + "overview": "With only a year left to live, 17-year-old Akito finds new meaning in life by bringing joy to a terminally ill girl who has just six months remaining.", + "posterPath": "/173FD4a0rpSF30z4CoWx6qdx8Ry.jpg", + "backdropPath": "/i0c2rE6x1RCXktYk4Bv4NBWh5gO.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2024-06-26", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.342, + "voteCount": 177, + "popularity": 8.6183 + }, + { + "id": 1288072, + "title": "Keeper", + "originalTitle": "Keeper", + "overview": "Liz and Malcolm escape for a romantic anniversary weekend at a secluded cabin. When Malcolm suddenly returns to the city, Liz finds herself isolated and in the presence of an unspeakable evil that reveals the cabin's horrifying secrets.", + "posterPath": "/mbGHijUc0C3fcM12l6ro6FgxIvg.jpg", + "backdropPath": "/5sulGeqGyXj9EvYg8IjxEWFIRdM.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2025-11-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 18, + "popularity": 8.6114 + }, + { + "id": 82525, + "title": "Savages", + "originalTitle": "Savages", + "overview": "Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.", + "posterPath": "/joyiyBwYY5QCpldqT1FzrTqsTJK.jpg", + "backdropPath": "/39FIOhhLT8mxvFRD6MaFzXCVgHr.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2012-07-06", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.345, + "voteCount": 2231, + "popularity": 8.6079 + }, + { + "id": 332672, + "title": "Obsession", + "originalTitle": "Rendez-Vous", + "overview": "Simone inherits a dilapidated farmhouse in France and makes her way there with her husband Eric and their two children. Her dream is to turn the house into a bed and breakfast but as the hectic pace of the rebuilding gets underway, she gets caught up in the romance and chaos of it all. Losing sight of her goals, she must find her way back to the dreams and ambitions which brought her there in the first place.", + "posterPath": "/39dr21LlR2uv7InD04aKbKIXiFW.jpg", + "backdropPath": "/viRcz6CZ7W3kLE7rPsmU0sQDEtL.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 53 + ], + "genres": [ + "Romance", + "Thriller" + ], + "releaseDate": "2015-06-04", + "releaseYear": "2015", + "originalLanguage": "nl", + "voteAverage": 6.323, + "voteCount": 226, + "popularity": 8.6052 + }, + { + "id": 769636, + "title": "Code Name: Emperor", + "originalTitle": "Código Emperador", + "overview": "Juan, a secret service agent, approaches Wendy, a young Filipina who works as a maid for a suspicious couple.", + "posterPath": "/8VjVLMiPm598Kg6XmKk5m1fz0p7.jpg", + "backdropPath": "/h4Sz63WrrATJ8DapGtP8tQsiTGc.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2022-03-18", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 5.807, + "voteCount": 168, + "popularity": 8.6042 + }, + { + "id": 1254808, + "title": "Nouvelle Vague", + "originalTitle": "Nouvelle Vague", + "overview": "After writing for Cahiers du cinéma, a young Jean-Luc Godard decides making films is the best film criticism. He convinces producer Georges de Beauregard to fund a low-budget feature, and creates a treatment with fellow New Wave filmmaker François Truffaut about a gangster couple. The result? Breathless, one of the first features of the Nouvelle Vague era of French cinema.", + "posterPath": "/mNcqF4IBrIV7zitgwM6EnpPRzli.jpg", + "backdropPath": "/c15Fg4jvclF5VjxCi1mtjUg4a6H.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 36 + ], + "genres": [ + "Comedy", + "Drama", + "History" + ], + "releaseDate": "2025-10-08", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 7.5, + "voteCount": 55, + "popularity": 8.5987 + }, + { + "id": 359410, + "title": "Road House", + "originalTitle": "Road House", + "overview": "Ex-UFC fighter Dalton takes a job as a bouncer at a Florida Keys roadhouse, only to discover that this paradise is not all it seems.", + "posterPath": "/fDEdtS4P0gJsxHDIt8dG8TR5dx1.jpg", + "backdropPath": "/clFFCapyGpE7KD4Jsu5pUbFBZF4.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2024-03-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.939, + "voteCount": 2775, + "popularity": 8.5974 + }, + { + "id": 335977, + "title": "Indiana Jones and the Dial of Destiny", + "originalTitle": "Indiana Jones and the Dial of Destiny", + "overview": "Finding himself in a new era, and approaching retirement, Indy wrestles with fitting into a world that seems to have outgrown him. But as the tentacles of an all-too-familiar evil return in the form of an old rival, Indy must don his hat and pick up his whip once more to make sure an ancient and powerful artifact doesn't fall into the wrong hands.", + "posterPath": "/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg", + "backdropPath": "/57JocxmicOoAMhkUSmdKBlpZWMT.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28 + ], + "genres": [ + "Adventure", + "Action" + ], + "releaseDate": "2023-06-25", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.53, + "voteCount": 3878, + "popularity": 8.5971 + }, + { + "id": 926670, + "title": "Henry Danger: The Movie", + "originalTitle": "Henry Danger: The Movie", + "overview": "Henry Hart meets a superfan—eager to fight crime with Kid Danger—who comes into possession of a device that can open up alternate realities. Facing a wild ride, Henry will need his best friend Jasper and his new superfan sidekick to find his way out or be stuck in another dimension forever.", + "posterPath": "/dFWj2rOGsqSIX1PHFghbCBgpMnk.jpg", + "backdropPath": "/cOkgL3jfyHtU5Lfuo4pelYNgfO6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 10751, + 878 + ], + "genres": [ + "Action", + "Comedy", + "Family", + "Science Fiction" + ], + "releaseDate": "2025-01-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 245, + "popularity": 8.5902 + }, + { + "id": 5144, + "title": "Marquise", + "originalTitle": "Marquise", + "overview": "Marquise is a drama about the rise and fall of a beauteous actress. As cheerfully portrayed by Sophie Marceau, the eponymous heroine is an engagingly ribald, but perhaps rather too modern, character. She rises from an impoverished background to become a favourite of the Sun King, Louis XIV, and the mistress of the celebrated Racine, who wrote roles especially for her; but her fate, in the end, is a tragic one.", + "posterPath": "/4FlAhORNIfOwL5XPEtXUbSAKnTK.jpg", + "backdropPath": "/zgW0dbMOqVfpsefYYIRh0AO5Z7D.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1997-08-20", + "releaseYear": "1997", + "originalLanguage": "fr", + "voteAverage": 5.5, + "voteCount": 49, + "popularity": 8.5877 + }, + { + "id": 1280444, + "title": "The Occupant", + "originalTitle": "The Occupant", + "overview": "Desperate to save her sister, Abby takes a dangerous job in the remote Georgian wilderness. Stranded in the mountains after her helicopter crashes, she finds hope through John, a mysterious helper radioing from nearby. As he guides her through the harsh conditions, Abby struggles to survive, and her grip on reality falters until she is faced with an impossible choice.", + "posterPath": "/aRWeT2UIkaWolqQ6fYeHOB1D6vA.jpg", + "backdropPath": "/hltwDG1SWl1BqjORA619hIJb4Ui.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 53 + ], + "genres": [ + "Science Fiction", + "Drama", + "Thriller" + ], + "releaseDate": "2025-08-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 46, + "popularity": 8.5874 + }, + { + "id": 82675, + "title": "Taken 2", + "originalTitle": "Taken 2", + "overview": "In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.", + "posterPath": "/yzAlcuJhpnxRPjaj7AHBRbNPQCJ.jpg", + "backdropPath": "/5M92Rtz6r01HLrN0TMrU8jCbyVm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2012-09-27", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.365, + "voteCount": 6928, + "popularity": 8.5765 + }, + { + "id": 484886, + "title": "Singularity", + "originalTitle": "Singularity", + "overview": "When Elias van Dorne, CEO of the world's largest robotics company, introduces his most powerful invention, Kronos-a super-computer designed to end all wars-it determines that humans are the biggest threat and launches a worldwide attack on mankind. A small band of survivors must form an unlikely alliance to survive the greatest artificial intelligence threat man will ever know.", + "posterPath": "/hMWiOdsN5VK5hgZYocUDxXWSjtQ.jpg", + "backdropPath": "/8qEYZSeFAKehqQtJume2mAv1xe0.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2017-11-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 3.647, + "voteCount": 217, + "popularity": 8.5738 + }, + { + "id": 520788, + "title": "Dystopia", + "originalTitle": "Mad World", + "overview": "It is the year 2037. Our world is dying, slowly, from a virus that has rendered mankind infertile. Not a single child has been born in 25 years. Governments are now powerless puppets for the biggest corporations and Biocorp, the world's biggest, keeps promising a cure that never comes", + "posterPath": "/8luuxpom0e0u8q3x4MtvKR0tozA.jpg", + "backdropPath": "/2uAyKQf5nej3TiWUqbanr6Zb9YU.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2018-01-02", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 57, + "popularity": 8.5658 + }, + { + "id": 588228, + "title": "The Tomorrow War", + "originalTitle": "The Tomorrow War", + "overview": "The world is stunned when a group of time travelers arrive from the year 2051 to deliver an urgent message: Thirty years in the future, mankind is losing a global war against a deadly alien species. The only hope for survival is for soldiers and civilians from the present to be transported to the future and join the fight. Among those recruited is high school teacher and family man Dan Forester. Determined to save the world for his young daughter, Dan teams up with a brilliant scientist and his estranged father in a desperate quest to rewrite the fate of the planet.", + "posterPath": "/34nDCQZwaEvsy4CFO5hkGRFDCVU.jpg", + "backdropPath": "/yizL4cEKsVvl17Wc1mGEIrQtM2F.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2021-09-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 3889, + "popularity": 8.5654 + }, + { + "id": 392818, + "title": "The Transfiguration", + "originalTitle": "The Transfiguration", + "overview": "When troubled teen Milo, who has a fascination with vampire lore, meets the equally alienated Sophie, the two form a bond that begins to blur Milo's fantasy into reality.", + "posterPath": "/mDSfmGdKnh2juq7hvnJKbyn5GqV.jpg", + "backdropPath": "/ewWBAWyRGnLMm3kaqqb9XRUi47c.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18 + ], + "genres": [ + "Horror", + "Drama" + ], + "releaseDate": "2016-04-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.019, + "voteCount": 134, + "popularity": 8.5648 + }, + { + "id": 193385, + "title": "Ironheart", + "originalTitle": "Ironheart", + "overview": "An L.A. cop goes after a gang of murderous drug dealers.", + "posterPath": "/wxW81qeuaxwtNlBqKP1jBpgI4gW.jpg", + "backdropPath": "/pz1JgMO5E1SU5OSL6aT5lN0fIvW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "1992-11-25", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 37, + "popularity": 8.5582 + }, + { + "id": 82690, + "title": "Wreck-It Ralph", + "originalTitle": "Wreck-It Ralph", + "overview": "Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero's Duty, a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.", + "posterPath": "/zWoIgZ7mgmPkaZjG0102BSKFIqQ.jpg", + "backdropPath": "/3IFRjBDwtk0DlIsDfJ2zEzLjUBi.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 35, + 12 + ], + "genres": [ + "Family", + "Animation", + "Comedy", + "Adventure" + ], + "releaseDate": "2012-11-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.353, + "voteCount": 12782, + "popularity": 8.5571 + }, + { + "id": 21765, + "title": "Good Boy!", + "originalTitle": "Good Boy!", + "overview": "An intergalactic dog pilot from Sirius (the dog star), visits Earth to verify the rumors that dogs have failed to take over the planet.", + "posterPath": "/kZDXSPfeKNtai6l8yE4J5LwVQMY.jpg", + "backdropPath": "/5unbVMlqYsgNPEzct6UBo2mVD6A.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 878 + ], + "genres": [ + "Comedy", + "Family", + "Science Fiction" + ], + "releaseDate": "2003-10-10", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 144, + "popularity": 8.5554 + }, + { + "id": 208200, + "title": "Antigone", + "originalTitle": "Antigone", + "overview": "A fearless Antigone, refusing to allow the dishonored body of her murdered brother Polynices to be devoured by vultures and dogs, defies the Thebian tyrant Creon by burying him.", + "posterPath": "/idvNggHcI7MLkaycH6GV6ENePEL.jpg", + "backdropPath": "/66dAxJ7zzcaoYEH8kmy1j3Iz5a5.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1992-09-02", + "releaseYear": "1992", + "originalLanguage": "de", + "voteAverage": 5.9, + "voteCount": 17, + "popularity": 8.5533 + }, + { + "id": 39957, + "title": "Burning Bright", + "originalTitle": "Burning Bright", + "overview": "After her lousy stepfather steals her savings to buy a vicious tiger, Kelly loses all hope of going to college. But Kelly's situation worsens when a hurricane leaves her and her autistic brother boarded up in their house with the man-eating beast. This edge-of-your-seat thriller follows the gutsy heroine and her younger sibling as they struggle to outwit the ravenous predator and find a way to survive.", + "posterPath": "/fRzCoP6quj8SuLjklN3k1nkhqP8.jpg", + "backdropPath": "/3LafJrw0NE43qs8efOAxSaOPfjy.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 53 + ], + "genres": [ + "Drama", + "Horror", + "Thriller" + ], + "releaseDate": "2010-08-17", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.282, + "voteCount": 289, + "popularity": 8.5487 + }, + { + "id": 1053008, + "title": "Fight Another Day", + "originalTitle": "Fight Another Day", + "overview": "Follows a tough cop, who after being transported to a dystopian future, must enter a deadly combat tournament to be able to return to his past.", + "posterPath": "/fKnLt1xQV0RdpN6RViowEiD1dFW.jpg", + "backdropPath": "/znMUHotZRTcyIFWFz2bvcpSx6YP.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2024-10-09", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 19, + "popularity": 8.5394 + }, + { + "id": 1311844, + "title": "The Twisters", + "originalTitle": "The Twisters", + "overview": "A deadly patchwork of destructive cyclones is on an apocalyptic path of convergence at a populated Midwest city center. There, the twisters will merge into one mega tornado that threatens to obliterate the cities for hundreds of miles around.", + "posterPath": "/9xjSHm0R9tII8JCWHS1VdbftFk1.jpg", + "backdropPath": "/xtnfoFs9vOLBF7Ox13mFmFUovey.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Drama" + ], + "releaseDate": "2024-06-28", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 81, + "popularity": 8.5365 + }, + { + "id": 632856, + "title": "Spirited", + "originalTitle": "Spirited", + "overview": "Each Christmas Eve, the Ghost of Christmas Present selects one dark soul to be reformed by a visit from three spirits. But this season, he picked the wrong Scrooge. Clint Briggs turns the tables on his ghostly host until Present finds himself reexamining his own past, present and future.", + "posterPath": "/h3zAzTMs5EP3cKusOxFNGSFE1WI.jpg", + "backdropPath": "/fHDvGGPFry65ou79WLi6JsjCZrM.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2022-11-10", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.873, + "voteCount": 694, + "popularity": 8.5323 + }, + { + "id": 1137350, + "title": "The Phoenician Scheme", + "originalTitle": "The Phoenician Scheme", + "overview": "Wealthy businessman Zsa-zsa Korda appoints his only daughter, a nun, as sole heir to his estate. As Korda embarks on a new enterprise, they soon become the target of scheming tycoons, foreign terrorists, and determined assassins.", + "posterPath": "/u2jxeYLXTYfu0bqJmnLGIgZswib.jpg", + "backdropPath": "/w3RDV3pSpxN0C2DZ4Xpw4o5LWpI.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12, + 80 + ], + "genres": [ + "Comedy", + "Adventure", + "Crime" + ], + "releaseDate": "2025-05-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.642, + "voteCount": 633, + "popularity": 8.5299 + }, + { + "id": 550205, + "title": "Wish Dragon", + "originalTitle": "Wish Dragon", + "overview": "Determined teen Din is longing to reconnect with his childhood best friend when he meets a wish-granting dragon who shows him the magic of possibilities.", + "posterPath": "/lnPf6hzANL6pVQTxUlsNYSuhT5l.jpg", + "backdropPath": "/4kIRrW1AlHP5Idne8CPHeQt8nR5.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 14 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Fantasy" + ], + "releaseDate": "2021-01-15", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.868, + "voteCount": 1418, + "popularity": 8.5293 + }, + { + "id": 1261543, + "title": "The Demon's Bride", + "originalTitle": "Pengantin Iblis", + "overview": "When her daughter is severely injured, a desperate mother makes a deal with a demon to save her — but the price will have to be paid in blood.", + "posterPath": "/um0ezs2daaKr9zW3weK2z2oNUT8.jpg", + "backdropPath": "/tX0G6mVkRt550e3cfzkqZIK8wNz.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-01-29", + "releaseYear": "2025", + "originalLanguage": "id", + "voteAverage": 6, + "voteCount": 15, + "popularity": 8.5252 + }, + { + "id": 214756, + "title": "Ted 2", + "originalTitle": "Ted 2", + "overview": "Newlywed couple Ted and Tami-Lynn want to have a baby, but in order to qualify to be a parent, Ted will have to prove he's a person in a court of law.", + "posterPath": "/38C91I7Xft0gyY7BITm8i4yvuRb.jpg", + "backdropPath": "/jKXzYoVQShnYE25qxS3fgFggx4r.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2015-06-25", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.317, + "voteCount": 7799, + "popularity": 8.5249 + }, + { + "id": 37636, + "title": "High Art", + "originalTitle": "High Art", + "overview": "When Syd, a young editor at an influential art magazine, becomes involved with her neighbor, a drug-addicted lesbian photographer, both seek to exploit each other for their respective careers while slowly falling in love with each other.", + "posterPath": "/qTg05RNJIvb9w4Z7XIcAZxuZmTn.jpg", + "backdropPath": "/z6Cxs29a2vX2Oq79sLCZ5BOZMJ7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1998-06-12", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.182, + "voteCount": 143, + "popularity": 8.5229 + }, + { + "id": 688258, + "title": "Occupation: Rainfall", + "originalTitle": "Occupation: Rainfall", + "overview": "Two years into an intergalactic invasion of Earth, survivors in Sydney, Australia, fight back in a desperate ground war. As casualties mount by the day, the resistance and their unexpected allies, uncover a plot that could see the war come to a decisive end. With the Alien invaders hell-bent on making earth their new home, the race is on to save mankind.", + "posterPath": "/vpq8XjZ3ZalcbqWOYIdqcV7FbIJ.jpg", + "backdropPath": "/xG8MoAb91jRGi01iwU0UMpXNlvK.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "2020-10-30", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.191, + "voteCount": 269, + "popularity": 8.5226 + }, + { + "id": 421987, + "title": "Occupants", + "originalTitle": "Occupants", + "overview": "A documentarian named Annie has roped her husband into a project that involves setting up cameras throughout their house. Complications arise when the cameras start showing that same couple in an alternate universe.", + "posterPath": "/bP7D5zB9iUkLLM2b3reHZ0b7Yn.jpg", + "backdropPath": "/7sRhA4MFBpbSg76gWyLFppT451u.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 53 + ], + "genres": [ + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2015-12-14", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.875, + "voteCount": 24, + "popularity": 8.5194 + }, + { + "id": 262169, + "title": "Gravy", + "originalTitle": "Gravy", + "overview": "It's All Hallow's Eve. A trio of costumed misfits with very special dietary requirements seizes a Mexican cantina and force the staff to engage in a late night of gaming, food and libations. The only caveat is what's on the menu.", + "posterPath": "/ruskUcYFAy6ctl2ZlTsXqJ7kPCD.jpg", + "backdropPath": "/zsZjHIhyTnfRVgKvVJPJjIB61jR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27 + ], + "genres": [ + "Comedy", + "Horror" + ], + "releaseDate": "2015-10-02", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.415, + "voteCount": 59, + "popularity": 8.5192 + }, + { + "id": 8691, + "title": "Cannibal Ferox", + "originalTitle": "Cannibal Ferox", + "overview": "Three friends out to disprove cannibalism meet two men on the run who tortured and enslaved a cannibal tribe to find emeralds, and now the tribe is out for revenge.", + "posterPath": "/ogvtVVsPSuzXKiQY1FCCKwIfBec.jpg", + "backdropPath": "/bM5zSHNVyIdVxrMknkZUOfEJSUB.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 27 + ], + "genres": [ + "Adventure", + "Horror" + ], + "releaseDate": "1981-04-24", + "releaseYear": "1981", + "originalLanguage": "it", + "voteAverage": 5.4, + "voteCount": 258, + "popularity": 8.5185 + }, + { + "id": 22826, + "title": "The Monster", + "originalTitle": "Il mostro", + "overview": "A vicious serial sex killer is on the loose, and landscape gardener and shop-window outfitter Loris is the prime suspect, thanks to his unfortunate habit of getting caught in compromising situations (for which there is always a totally innocent explanation that the police fail to spot). Undercover policewoman Jessica is assigned by eccentric police psychologist Taccone to follow Loris.", + "posterPath": "/6h6ahipPd84QcyFbnsEikLt7w3Z.jpg", + "backdropPath": "/izUQSU7tCcx0k4xU3VARcKqy3pn.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1994-10-22", + "releaseYear": "1994", + "originalLanguage": "it", + "voteAverage": 6.954, + "voteCount": 627, + "popularity": 8.515 + }, + { + "id": 50620, + "title": "The Twilight Saga: Breaking Dawn - Part 2", + "originalTitle": "The Twilight Saga: Breaking Dawn - Part 2", + "overview": "After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.", + "posterPath": "/7IGdPaKujv0BjI0Zd0m0a4CzEjJ.jpg", + "backdropPath": "/qkl57wzSFrpi2sRpoc2mZJbMuLP.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 18, + 10749 + ], + "genres": [ + "Adventure", + "Fantasy", + "Drama", + "Romance" + ], + "releaseDate": "2012-11-13", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.461, + "voteCount": 9198, + "popularity": 8.5145 + }, + { + "id": 25967, + "title": "Isolation", + "originalTitle": "Isolation", + "overview": "On a remote Irish farm, five people become unwilling participants in an experiment that goes nightmarishly wrong.", + "posterPath": "/6CpGHO5cnZgWKKeqjCXaEwvk8Q8.jpg", + "backdropPath": "/ghWikkRVDjLVIaFKLzdj7IvHLO5.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "2005-11-06", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 196, + "popularity": 8.5097 + }, + { + "id": 532865, + "title": "The Dig", + "originalTitle": "The Dig", + "overview": "As WWII looms, a wealthy widow hires an amateur archaeologist to excavate the burial mounds on her estate. When they make a historic discovery, the echoes of Britain's past resonate in the face of its uncertain future‎.", + "posterPath": "/dFDNb9Gk1kyLRcconpj7Mc7C7IL.jpg", + "backdropPath": "/wQhe2YJnB9AAS08RqwMeKN2ywUr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2021-01-14", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.855, + "voteCount": 1286, + "popularity": 8.5088 + }, + { + "id": 490132, + "title": "Green Book", + "originalTitle": "Green Book", + "overview": "Tony Lip, a bouncer in 1962, is hired to drive pianist Don Shirley on a tour through the Deep South in the days when African Americans, forced to find alternate accommodations and services due to segregation laws below the Mason-Dixon Line, relied on a guide called The Negro Motorist Green Book.", + "posterPath": "/7BsvSuDQuoqhWmU2fL7W2GOcZHU.jpg", + "backdropPath": "/5En0fmDagt3Pk8d7P3uTwfeQceg.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 36 + ], + "genres": [ + "Drama", + "Comedy", + "History" + ], + "releaseDate": "2018-11-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.225, + "voteCount": 12400, + "popularity": 8.5036 + }, + { + "id": 72190, + "title": "World War Z", + "originalTitle": "World War Z", + "overview": "Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.", + "posterPath": "/aCnVdvExw6UWSeQfr0tUH3jr4qG.jpg", + "backdropPath": "/31VpBgUX5O4Z3dn5ZbX8HLqoXH3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 878, + 53 + ], + "genres": [ + "Action", + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2013-06-19", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.825, + "voteCount": 16088, + "popularity": 8.4982 + }, + { + "id": 59053, + "title": "The Raffle", + "originalTitle": "La Riffa", + "overview": "Struggling with a financial crisis, a good-looking widow decides to put herself up for grabs. However, going through with it becomes almost impossible with a new love and the legal system thrown into the mix.", + "posterPath": "/2Jc60w8ZemDMYqyJUStcQKy6syi.jpg", + "backdropPath": "/xGhwfRxTsP9VhDSNsfHqBcRvWKY.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1991-11-15", + "releaseYear": "1991", + "originalLanguage": "it", + "voteAverage": 6.677, + "voteCount": 186, + "popularity": 8.4982 + }, + { + "id": 125510, + "title": "Slayers Great", + "originalTitle": "スレイヤーズぐれえと / SLAYERS: GREAT", + "overview": "All Laia Einburg wants for her golem-making father Galia and her equally ambitious brother Huey is to end a long running feud. But her world gets turned upside down when short-stature Lina Inverse and overly endowed Naga the Serpent save Laia from a rampaging golem. A grateful, but smitten, Galia asks Lina to be a model for his work. Not to be outdone, Huey makes a similar request to Naga. The results are towering remote-controlled golems in the image of our favorite sorceresses! Huey gets all the proportions right, but Galia's taste is just weird. Adding insult to injury, Galia turns Lina into a magical battery pack! Officially, Lords Haizen and Granion commissioned these golems for a contest to determine the ruler of the city of Stoner. But the lords are secretly planning to use the golems as prototypes for an army of conquest! Can Lina and Naga save the city from tyranny?", + "posterPath": "/aMoC3UJ2QLqJj8MOGsoNhthdMtm.jpg", + "backdropPath": "/q3Buqnnc0SmSmd9SMSsT7dbCm9j.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 14 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Fantasy" + ], + "releaseDate": "1997-08-02", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 13, + "popularity": 8.4972 + }, + { + "id": 1220564, + "title": "The Secret Agent", + "originalTitle": "O Agente Secreto", + "overview": "In Brazil in 1977, Marcelo, a technology specialist fleeing a mysterious past, returns to Recife in search of peace, but realizes the city is far from the refuge he seeks.", + "posterPath": "/ovn2eHUXwEaYwB9owrg8gY4awpj.jpg", + "backdropPath": "/eeGRpU64sIrRApjWXvTpK5Lep2K.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Thriller", + "Mystery" + ], + "releaseDate": "2025-07-23", + "releaseYear": "2025", + "originalLanguage": "pt", + "voteAverage": 8.195, + "voteCount": 77, + "popularity": 8.4943 + }, + { + "id": 11013, + "title": "Secretary", + "originalTitle": "Secretary", + "overview": "A young woman, recently released from a mental hospital, gets a job as a secretary to a demanding lawyer, where their employer-employee relationship turns into a sexual, sadomasochistic one.", + "posterPath": "/mdRXSE7ho185SZlXj0JSwuecEd3.jpg", + "backdropPath": "/ifHgVh5c7B3mbq5CfkzwsyMRmpG.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "2002-09-20", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.781, + "voteCount": 1781, + "popularity": 8.4943 + }, + { + "id": 646, + "title": "Dr. No", + "originalTitle": "Dr. No", + "overview": "Agent 007 battles mysterious Dr. No, a scientific genius bent on destroying the U.S. space program. As the countdown to disaster begins, Bond must go to Jamaica, where he encounters beautiful Honey Ryder, to confront a megalomaniacal villain in his massive island headquarters.", + "posterPath": "/9zCOLJmLNst0sCPZlkW1IRoH65E.jpg", + "backdropPath": "/srgq7bzZsuDw7NoGXdazRXp7Hl6.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 53 + ], + "genres": [ + "Adventure", + "Action", + "Thriller" + ], + "releaseDate": "1962-10-07", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 6.99, + "voteCount": 3880, + "popularity": 8.4932 + }, + { + "id": 21542, + "title": "Love Don't Co$t a Thing", + "originalTitle": "Love Don't Co$t a Thing", + "overview": "A high school outcast pays a cheerleader to pose as his girlfriend so he can be considered cool.", + "posterPath": "/88zspc72LIkfiuMnGpHnsWCuqEH.jpg", + "backdropPath": "/bYk4H2MSvNWckhrYhZNQHe8v90o.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Family", + "Romance" + ], + "releaseDate": "2003-12-12", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.535, + "voteCount": 648, + "popularity": 8.4921 + }, + { + "id": 107, + "title": "Snatch", + "originalTitle": "Snatch", + "overview": "Unscrupulous boxing promoters, violent bookies, a Russian gangster, incompetent amateur robbers, and supposedly Jewish jewellers fight to track down a priceless stolen diamond.", + "posterPath": "/kJZoAHq1SLDdWjeNGtlHAnGpmFV.jpg", + "backdropPath": "/gTghF8ardwJ48XLHkiapWk3ZmSo.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35 + ], + "genres": [ + "Crime", + "Comedy" + ], + "releaseDate": "2000-09-01", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.816, + "voteCount": 9609, + "popularity": 8.4899 + }, + { + "id": 1001835, + "title": "Wifelike", + "originalTitle": "Wifelike", + "overview": "A grieving detective in the near-future hunts down criminals who trade artificial humans on the black market. In the fight to end AI exploitation, an underground resistance attempts to infiltrate him by sabotaging the programming of the artificial human assigned as his companion to behave like his late wife. She begins to question her reality as memories of a past life begin to surface in a world where nothing is as it seems.", + "posterPath": "/tea2gDZPxw0wfKC2S2VRWHagtt4.jpg", + "backdropPath": "/3xvdNyZ9WsVJpyeGhm85fukeZz4.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 9648, + 53 + ], + "genres": [ + "Science Fiction", + "Mystery", + "Thriller" + ], + "releaseDate": "2022-08-12", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 297, + "popularity": 8.489 + }, + { + "id": 399905, + "title": "Female War: A Nasty Deal", + "originalTitle": "여자전쟁: 비열한 거래", + "overview": "Painter Ha-rim became blind due to an unfortunate accident. His wife Sun-yeong searches far and low for a cornea donor until she meets terminal cancer patient Dae-geun. These two make a startling and dangerous deal for Ha-rim's cornea.", + "posterPath": "/2xUNRZwprvVwfx12WR1rRXoohSi.jpg", + "backdropPath": "/OuOCZojaMAZOLIT3bkEcfDRmqF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2015-09-27", + "releaseYear": "2015", + "originalLanguage": "ko", + "voteAverage": 5.727, + "voteCount": 33, + "popularity": 8.4888 + }, + { + "id": 1214484, + "title": "Let Go", + "originalTitle": "Släpp taget", + "overview": "A jaded mother makes a last-ditch effort to keep her family together by taking them on a trip to their teenage daughter’s pole dancing competition.", + "posterPath": "/hIJRqqAaMUtQ13mZL6lCE6myhXH.jpg", + "backdropPath": "/pAT3Ie1lxxGBJn0USyxcUgBjw76.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-01", + "releaseYear": "2024", + "originalLanguage": "sv", + "voteAverage": 7.856, + "voteCount": 350, + "popularity": 8.4866 + }, + { + "id": 9399, + "title": "Lionheart", + "originalTitle": "Lionheart", + "overview": "Lyon Gaultier is a deserter in the Foreign Legion arriving in the USA entirely hard up. He finds his brother between life and death and his sister-in-law without the money needed to heal her husband and to maintain her child. To earn the money needed, Gaultier decides to take part in some very dangerous clandestine fights.", + "posterPath": "/4fgTLKtYLU13MiuWcPnC1esJI53.jpg", + "backdropPath": "/tcbmOGMRsYN7oIEbmQk7vu7G0ee.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "1990-06-07", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.573, + "voteCount": 1103, + "popularity": 8.4842 + }, + { + "id": 35381, + "title": "Crossfire Trail", + "originalTitle": "Crossfire Trail", + "overview": "Rafe Covington is as good as his word, and he's determined to keep his promise to a dying man that he'll look after the man's widow and Wyoming ranch. But the widow doubts the integrity of drifter Covington. And an unscrupulous land grabber and his gunmen are sizing up the ranch the way a spider eyes a fly.", + "posterPath": "/nWFOBdMabfDUF5Qk8wEPNy9hpAR.jpg", + "backdropPath": "/pKXKxZedtaSQj3YBY7omnYalunJ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 37, + 28, + 10770 + ], + "genres": [ + "Romance", + "Western", + "Action", + "TV Movie" + ], + "releaseDate": "2001-01-21", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 42, + "popularity": 8.4839 + }, + { + "id": 2105, + "title": "American Pie", + "originalTitle": "American Pie", + "overview": "At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to all \"score\" by their senior prom.", + "posterPath": "/5P68by2Thn8wHAziyWGEw2O7hco.jpg", + "backdropPath": "/cvH1gNIMRITdLzoWv1HNAbRyH3n.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1999-07-09", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.598, + "voteCount": 8038, + "popularity": 8.4833 + }, + { + "id": 492550, + "title": "Normandy Nude", + "originalTitle": "Normandie Nue", + "overview": "At the Mêle sur Sarthe, a small Norman village, farmers are affected by a crisis. Georges Balbuzard, the mayor of the city, is not one to let them down and decides to try everything to save his village...", + "posterPath": "/18PbqXl0PKTTptyuKd7PQciXdry.jpg", + "backdropPath": "/vnGvJZG5WGrsbGfrR7TVi0VY31k.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-01-10", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 5.562, + "voteCount": 138, + "popularity": 8.4827 + }, + { + "id": 1620, + "title": "Hitman", + "originalTitle": "Hitman", + "overview": "A genetically engineered assassin with deadly aim, known only as \"Agent 47\" eliminates strategic targets for a top-secret organization. But when he's double-crossed, the hunter becomes the prey as 47 finds himself in a life-or-death game of international intrigue.", + "posterPath": "/h69UJOOKlrHcvhl5H2LY74N61DQ.jpg", + "backdropPath": "/lkoI9rc3OhuSYSy7gK45a3Nk9HH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 18 + ], + "genres": [ + "Action", + "Thriller", + "Drama" + ], + "releaseDate": "2007-11-21", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.146, + "voteCount": 3531, + "popularity": 8.481 + }, + { + "id": 1593, + "title": "Night at the Museum", + "originalTitle": "Night at the Museum", + "overview": "Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits.", + "posterPath": "/pDsAAYf6Zn0yiAGJ6lYGs6hoZ4E.jpg", + "backdropPath": "/1ZVlzOBYCggLzvVYHK7Im6LohjC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 10751, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2006-12-20", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.594, + "voteCount": 10654, + "popularity": 8.4793 + }, + { + "id": 510, + "title": "One Flew Over the Cuckoo's Nest", + "originalTitle": "One Flew Over the Cuckoo's Nest", + "overview": "A petty criminal fakes insanity to serve his sentence in a mental ward rather than prison. He soon finds himself as a leader to the other patients—and an enemy to the cruel, domineering nurse who runs the ward.", + "posterPath": "/kjWsMh72V6d8KRLV4EOoSJLT1H7.jpg", + "backdropPath": "/6Oa3zTiluBz2W8D2ou1MY16dUiF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1975-11-19", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 8.413, + "voteCount": 11063, + "popularity": 8.4768 + }, + { + "id": 894489, + "title": "Kamen Rider OOO 10th: The Core Medals of Resurrection", + "originalTitle": "仮面ライダーオーズ 10th 復活のコアメダル", + "overview": "The year is 2021 and the world is in a state of chaos and fear. The ancient king OOO has come back to life after 800 years of dormancy. As the Kougami Foundation mounts a human resistance, Eiji Hino returns to Japan, believing he has at last found the means to revive the Greeed Ankh...", + "posterPath": "/jqTWihvV6P5TMiCQ6klCe9S7Oz3.jpg", + "backdropPath": "/t6uAdRDJrgbqhbRngA6NkjJRFoU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 14, + 18, + 35 + ], + "genres": [ + "Action", + "Science Fiction", + "Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2022-03-12", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 10, + "popularity": 8.4754 + }, + { + "id": 20148, + "title": "Cowboys & Angels", + "originalTitle": "Cowboys & Angels", + "overview": "This story concerns a hapless civil servant who gets more than he bargains for when he moves into an apartment in Limerick with a gay fashion student and becomes a star on the catwalk. A contemporary story embracing the essence of what it is to be young in today's Ireland.", + "posterPath": "/8S55zmOu7cdN6v71M9AzKLVdrOr.jpg", + "backdropPath": "/lZfHuq0c6uPAE7Gaa0lQI9SGbYC.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2004-07-23", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.838, + "voteCount": 37, + "popularity": 8.4662 + }, + { + "id": 27579, + "title": "The American", + "originalTitle": "The American", + "overview": "Dispatched to a small Italian town to await further orders, assassin Jack embarks on a double life that may be more relaxing than is good for him.", + "posterPath": "/5OEOsRaBsSxD0qBtAhus0iKDzr.jpg", + "backdropPath": "/tjdjDn10yDK5R7b6HdwtTASqwmE.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2010-08-31", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.967, + "voteCount": 1441, + "popularity": 8.465 + }, + { + "id": 1315986, + "title": "Man with No Past", + "originalTitle": "Man with No Past", + "overview": "Waking up in an unfamiliar city, a man with no memory must confront the mysteries of his own identity. However, his desperate search to uncover the past pits him against a powerful enemy, leading to a showdown that ultimately reveals the truth.", + "posterPath": "/eWHvROuznSzcxBAAkzX1X0Rmzoe.jpg", + "backdropPath": "/8or4S9BPhkeYK0vlKsPFee4JVWI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2025-01-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 55, + "popularity": 8.4633 + }, + { + "id": 358403, + "title": "Taj Mahal", + "originalTitle": "Taj Mahal", + "overview": "One evening, while her parents go out for dinner, 18-year-old Louise, alone in her hotel room at Taj Mahal Mumbai, hears strange noises out in the corridor. Within minutes, she realises that a terrorist attack is underway. Her only connection to the outside world is her cell phone, which allows her to maintain contact with her father, who is desperately trying to reach her from the other side of a city that has been plunged into chaos. Louise must spend a long night alone in the face of danger. She will never be the same again.", + "posterPath": "/mscbgXlFLm5NVRZywsdwxdSWkR1.jpg", + "backdropPath": "/lJvnpD8FILATQNBpUi02vo3B3MK.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2015-12-02", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 5.115, + "voteCount": 52, + "popularity": 8.4629 + }, + { + "id": 4241, + "title": "Visitor Q", + "originalTitle": "ビジターQ", + "overview": "In a dysfunctional family where the mother is a heroin addict and prostitute, beaten by her son, and the father is an ex-TV reporter, sleeping with his daughter and filming his son being beaten up, ‘Q’, a complete stranger enters the bizarre family, changing their lives for the better, finding a balance in their disturbing natures.", + "posterPath": "/veDqVt4oYq6mjFGasdVeEv6RPBg.jpg", + "backdropPath": "/7Neq8BvRasGK7RyqBlK4NX30rwF.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 27, + 53 + ], + "genres": [ + "Comedy", + "Drama", + "Horror", + "Thriller" + ], + "releaseDate": "2001-03-17", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 524, + "popularity": 8.4628 + }, + { + "id": 1108336, + "title": "Wild Diamond", + "originalTitle": "Diamant brut", + "overview": "Liane, 19 years old, daring and fiery, lives with her mother and little sister under the dusty sun of Fréjus in the South of France. Obsessed with beauty and the need to become “someone”, she sees reality TV as her opportunity to be loved... Fate smiles upon her when she auditions for “Miracle Island”.", + "posterPath": "/eEF2q2e3vntpKsHa4hQfaF0CVR8.jpg", + "backdropPath": "/rCwzI7prQhPMRxOY2r5x7Zb34Yq.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-10-09", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.4, + "voteCount": 83, + "popularity": 8.4585 + }, + { + "id": 539892, + "title": "Freaks", + "originalTitle": "Freaks", + "overview": "Kept locked inside the house by her father, 7-year-old Chloe lives in fear and fascination of the outside world, where Abnormals create a constant threat—or so she believes. When a mysterious stranger offers her a glimpse of what's really happening outside, Chloe soon finds that while the truth isn't so simple, the danger is very real.", + "posterPath": "/kc2cvuqESIiRX5QoZOoMTBq18kQ.jpg", + "backdropPath": "/mPeyCA2625dLDbPSDjfxpNKL8Uv.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2019-09-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.752, + "voteCount": 1226, + "popularity": 8.4514 + }, + { + "id": 676156, + "title": "The Warrant", + "originalTitle": "The Warrant", + "overview": "After fighting in the Civil War, two Union Army buddies find themselves on opposite sides of the law with the post-war peace at risk.", + "posterPath": "/fAShmkZrxnKe9QvsBg869PmS2zL.jpg", + "backdropPath": "/tcEmEOTrK7LNPwTzafGFPPi1vvK.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "2020-02-06", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 27, + "popularity": 8.4482 + }, + { + "id": 1243341, + "title": "Z-O-M-B-I-E-S 4: Dawn of the Vampires", + "originalTitle": "Z-O-M-B-I-E-S 4: Dawn of the Vampires", + "overview": "A new adventure dawns for Zed and Addison when their summer road trip takes an unexpected detour, landing them in the middle of yet another monster rivalry: Daywalkers vs. Vampires. Tensions flare when Zed and Addison find themselves acting as camp counselors between the two opposing supernatural factions. With the help of Eliza and Willa, they must convince sworn enemies Nova and Victor to try to unite their warring worlds before an even greater threat endangers them all.", + "posterPath": "/6rGsqBxI4r1YkS9FuraovWi465w.jpg", + "backdropPath": "/68TGPnvmZ21NBOoV5IUZ4fQDyvZ.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 10402, + 10749, + 12, + 10751, + 35, + 10770 + ], + "genres": [ + "Fantasy", + "Music", + "Romance", + "Adventure", + "Family", + "Comedy", + "TV Movie" + ], + "releaseDate": "2025-07-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.833, + "voteCount": 126, + "popularity": 8.4472 + }, + { + "id": 656844, + "title": "Winter in Vail", + "originalTitle": "Winter in Vail", + "overview": "Chelsea inherits a house in Vail. She meets Owen and gets a much needed break. Together, they put on Strudelfest to highlight the charm of Old Vail.", + "posterPath": "/gMX4Rx0FEN5ooF114mSJIbLsLNZ.jpg", + "backdropPath": "/fHbnljKhTLwgDwIcpTSnFBXMWvq.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 10749, + 35 + ], + "genres": [ + "TV Movie", + "Romance", + "Comedy" + ], + "releaseDate": "2020-01-04", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.856, + "voteCount": 52, + "popularity": 8.4471 + }, + { + "id": 273477, + "title": "Scouts Guide to the Zombie Apocalypse", + "originalTitle": "Scouts Guide to the Zombie Apocalypse", + "overview": "Three scouts and lifelong friends join forces with one badass cocktail waitress to become the world’s most unlikely team of heroes. When their peaceful town is ravaged by a zombie invasion, they’ll fight for the badge of a lifetime and put their scouting skills to the test to save mankind from the undead.", + "posterPath": "/lUKvvSnjFlazrdh6wyHxHrdMknD.jpg", + "backdropPath": "/ks2C2Ap2W79L5QiVQ7jVp5mmIna.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27 + ], + "genres": [ + "Comedy", + "Horror" + ], + "releaseDate": "2015-10-23", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.56, + "voteCount": 2044, + "popularity": 8.4453 + }, + { + "id": 5955, + "title": "The Pledge", + "originalTitle": "The Pledge", + "overview": "A police chief, about to retire, pledges to help a woman find her daughter's killer.", + "posterPath": "/9QOzFL3FPMAUNNPrNiKC3mEDxco.jpg", + "backdropPath": "/o62VYsoyEUYgYMn21Thd9GHTuUE.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 9648, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2001-01-19", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1168, + "popularity": 8.4385 + }, + { + "id": 10867, + "title": "Malena", + "originalTitle": "Malèna", + "overview": "During WWII, a teenage boy discovering himself becomes love-stricken by Malèna, a sensual woman living in a small, narrow-minded Italian town.", + "posterPath": "/3OyQTl0IGkbnjDxd3MhztfPE34g.jpg", + "backdropPath": "/3mR0TCv9mqAcEBt1Nu9SXI3VDIo.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2000-03-16", + "releaseYear": "2000", + "originalLanguage": "it", + "voteAverage": 7.433, + "voteCount": 2404, + "popularity": 8.4384 + }, + { + "id": 1171821, + "title": "Tehachapi", + "originalTitle": "Tehachapi", + "overview": "French visual artist-director JR (co-director of the Oscar-nominated documentary FACES PLACES with the legendary Agnès Varda) situates his latest social-art intervention in a Southern Californian supermax prison, where he has imagined an enormously ambitious collaboration with the facility’s inmates.", + "posterPath": "/fgaeDmufu8m9jk8kicdNghWvIAO.jpg", + "backdropPath": "/400qH31Wjd1U0NDqVtrnncTx1nL.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 18 + ], + "genres": [ + "Documentary", + "Drama" + ], + "releaseDate": "2024-06-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 21, + "popularity": 8.4365 + }, + { + "id": 41135, + "title": "Operation: Endgame", + "originalTitle": "Operation: Endgame", + "overview": "A battle ensues among two government spy teams in an underground facility after their boss is assassinated.", + "posterPath": "/ugbGBbzoPQXSgolQVVqRC3NGpIw.jpg", + "backdropPath": "/1pX2IloFPEp1Pqrvru94LLzDLut.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 35, + 53 + ], + "genres": [ + "Adventure", + "Action", + "Comedy", + "Thriller" + ], + "releaseDate": "2010-07-20", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 220, + "popularity": 8.4361 + }, + { + "id": 530915, + "title": "1917", + "originalTitle": "1917", + "overview": "At the height of the First World War, two young British soldiers must cross enemy territory and deliver a message that will stop a deadly attack on hundreds of soldiers.", + "posterPath": "/iZf0KyrE25z1sage4SYFLCCrMi9.jpg", + "backdropPath": "/2WgieNR1tGHlpJUsolbVzbUbE1O.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 36, + 18, + 28 + ], + "genres": [ + "War", + "History", + "Drama", + "Action" + ], + "releaseDate": "2019-12-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.986, + "voteCount": 13114, + "popularity": 8.4348 + }, + { + "id": 378064, + "title": "A Silent Voice: The Movie", + "originalTitle": "映画 聲の形", + "overview": "Shouya Ishida starts bullying the new girl in class, Shouko Nishimiya, because she is deaf. But as the teasing continues, the rest of the class starts to turn on Shouya for his lack of compassion. When they leave elementary school, Shouko and Shouya do not speak to each other again... until an older, wiser Shouya, tormented by his past behaviour, decides he must see Shouko once more. He wants to atone for his sins, but is it already too late...?", + "posterPath": "/tuFaWiqX0TXoWu7DGNcmX3UW7sT.jpg", + "backdropPath": "/5lAMQMWpXMsirvtLLvW7cJgEPkU.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 10749 + ], + "genres": [ + "Animation", + "Drama", + "Romance" + ], + "releaseDate": "2016-09-17", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.386, + "voteCount": 4276, + "popularity": 8.4348 + }, + { + "id": 985939, + "title": "Fall", + "originalTitle": "Fall", + "overview": "For best friends Becky and Hunter, life is all about conquering fears and pushing limits. But after they climb 2,000 feet to the top of a remote, abandoned radio tower, they find themselves stranded with no way down. Now Becky and Hunter’s expert climbing skills will be put to the ultimate test as they desperately fight to survive the elements, a lack of supplies, and vertigo-inducing heights", + "posterPath": "/spCAxD99U1A6jsiePFoqdEcY0dG.jpg", + "backdropPath": "/1DBDwevWS8OhiT3wqqlW7KGPd6m.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2022-08-11", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.12, + "voteCount": 4331, + "popularity": 8.4296 + }, + { + "id": 885243, + "title": "Oh My Goodness!", + "originalTitle": "Juste ciel !", + "overview": "Five nuns set their sights on winning the cash prize in a major cycling race to raise money to renovate a dilapidated hospice. The only hitch is that none of them can ride a bicycle.", + "posterPath": "/ruDwzv8fiweqYVD53GfH2NVrtCl.jpg", + "backdropPath": "/eLk6awMf5wkAQaSRuupfL5EV47N.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-02-15", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 5.1, + "voteCount": 51, + "popularity": 8.4289 + }, + { + "id": 1160956, + "title": "Panda Plan", + "originalTitle": "熊猫计划", + "overview": "International action star Jackie Chan is invited to the adoption ceremony of a rare baby panda, but after an international crime syndicate attempts to kidnap the bear, Jackie has to save the bear using his stunt work skills.", + "posterPath": "/8iMPQl13q89jQhaA5nXb6UiT0t0.jpg", + "backdropPath": "/dXoBFj9Yl9HDRcDVQubkuVCh26N.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2024-10-01", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 6.846, + "voteCount": 241, + "popularity": 8.4284 + }, + { + "id": 8920, + "title": "Garfield", + "originalTitle": "Garfield", + "overview": "Garfield, the fat, lazy, lasagna lover, has everything a cat could want. But when Jon, in an effort to impress the Liz - the vet and an old high-school crush - adopts a dog named Odie and brings him home, Garfield gets the one thing he doesn't want. Competition.", + "posterPath": "/vqwTSWNLyH55g8kBT61s2DgNYEp.jpg", + "backdropPath": "/paMPVVzPNLve1DQlKHDuFOofFy6.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2004-06-10", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.731, + "voteCount": 4163, + "popularity": 8.4256 + }, + { + "id": 18461, + "title": "Feelings", + "originalTitle": "Les Sentiments", + "overview": "Two seemingly happily married French couples are forced to contend with a number of issues.", + "posterPath": "/AnC4jgDCyoOZwVzA70bXQ3Uvz7x.jpg", + "backdropPath": "/kezMULHihevYWIRTQqHsKzZXPMn.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10402 + ], + "genres": [ + "Drama", + "Romance", + "Music" + ], + "releaseDate": "2003-09-01", + "releaseYear": "2003", + "originalLanguage": "fr", + "voteAverage": 5.9, + "voteCount": 75, + "popularity": 8.4233 + }, + { + "id": 592350, + "title": "My Hero Academia: Heroes Rising", + "originalTitle": "僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング", + "overview": "Class 1-A visits Nabu Island where they finally get to do some real hero work. The place is so peaceful that it's more like a vacation... until they're attacked by a villain with an unfathomable Quirk! His power is eerily familiar, and it looks like Shigaraki had a hand in the plan. But with All Might retired and citizens' lives on the line, there's no time for questions. Deku and his friends are the next generation of heroes, and they're the island's only hope.", + "posterPath": "/kpWsIkfXrnQ1pmR79qAHHq7DPxc.jpg", + "backdropPath": "/9guoVF7zayiiUq5ulKQpt375VIy.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14, + 12 + ], + "genres": [ + "Animation", + "Action", + "Fantasy", + "Adventure" + ], + "releaseDate": "2019-12-20", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 1236, + "popularity": 8.4195 + }, + { + "id": 588, + "title": "Silent Hill", + "originalTitle": "Silent Hill", + "overview": "Rose, a desperate mother takes her adopted daughter, Sharon, to the town of Silent Hill in an attempt to cure her of her ailment. After a violent car crash, Sharon disappears and Rose begins a desperate search to get her back. She descends into the center of the twisted reality of a town's terrible secret. Pursued by grotesquely deformed creatures and townspeople stuck in permanent purgatory, Rose begins to uncover the truth behind the apocalyptic disaster that burned the town 30 years earlier.", + "posterPath": "/bQkXL0cSlPviaQhxM090knCc5kS.jpg", + "backdropPath": "/cxhC845cuha0rNoOeQhi2mbWDLV.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2006-04-21", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 4618, + "popularity": 8.4167 + }, + { + "id": 9023, + "title": "Spirit: Stallion of the Cimarron", + "originalTitle": "Spirit: Stallion of the Cimarron", + "overview": "A captured mustang remains determined to return to his herd no matter what.", + "posterPath": "/cUgYrz4twiJ3QgVGpRfey984NIB.jpg", + "backdropPath": "/b8hPBW0NJmiIVzvQjT3CwIpAdzl.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751, + 18, + 37, + 10749 + ], + "genres": [ + "Animation", + "Adventure", + "Family", + "Drama", + "Western", + "Romance" + ], + "releaseDate": "2002-05-24", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 4792, + "popularity": 8.4159 + }, + { + "id": 608826, + "title": "Saekano the Movie: Finale", + "originalTitle": "冴えない彼女の育てかた Fine", + "overview": "After blessing software announced their first work, Eriri and Utaha leave the group to join popular creator Akane Kosaka in developing a major game called Fields Chronicle. Meanwhile, Tomoya and Megumi join hands with their new members and various other parties to produce their new game. What will become of Eriri and Utaha’s major work? Will the relationship between Tomoya and Megumi change? And what will be the ultimate fate of blessing software’s new game?", + "posterPath": "/jJKmT4ltysVdapJaNTexpcby96n.jpg", + "backdropPath": "/kEDqhscjAQyxAj0xNQknxJotqzz.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10749, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2019-10-26", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.736, + "voteCount": 36, + "popularity": 8.4139 + }, + { + "id": 518749, + "title": "The Snatch Thief", + "originalTitle": "El motoarrebatador", + "overview": "In the Argentinian city of Tucumán, Miguel is making a living as a “motochorro”, a thief who snatches people’s belongings fromhis motorbike. When he steals the purse of Elena, an old woman, he ends up hurting her badly. After the brutal incident, Miguel is plagued by guilt and unable to forget about his victim. In an attempt to make things right, he conceals his true identity from the old woman and starts to take care of the injured and unsuspecting Elena. The closer he gets to her the more he becomes entangled in his own lies. Afraid of telling Elena the truth, Miguel continues to be haunted by his past and is unable to find true redemption.", + "posterPath": "/3GLLoGGGnAcAJJCmK3NqnRboIFR.jpg", + "backdropPath": "/lHuCRvN978Yx4IUgWyEVGwnROyV.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-06-07", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 6.464, + "voteCount": 14, + "popularity": 8.4105 + }, + { + "id": 580489, + "title": "Venom: Let There Be Carnage", + "originalTitle": "Venom: Let There Be Carnage", + "overview": "After finding a host body in investigative reporter Eddie Brock, the alien symbiote must face a new enemy, Carnage, the alter ego of serial killer Cletus Kasady.", + "posterPath": "/pzKsRuKLFmYrW5Q0q8E8G78Tcgo.jpg", + "backdropPath": "/eENEf62tMXbhyVvdcXlnQz2wcuT.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "2021-09-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.759, + "voteCount": 10881, + "popularity": 8.4099 + }, + { + "id": 2251, + "title": "Unfaithful", + "originalTitle": "Unfaithful", + "overview": "Connie is a wife and mother whose 11-year marriage to Edward has lost its sexual spark. When Connie literally runs into handsome book collector Paul, he sweeps her into an all-consuming affair. But Edward soon becomes suspicious and decides to confront the other man.", + "posterPath": "/bjiHEhuiwhIygzjczbTPAA07cGc.jpg", + "backdropPath": "/egVj5Y9f79xPnyAQJmeDR0Uwow3.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 10749 + ], + "genres": [ + "Thriller", + "Drama", + "Romance" + ], + "releaseDate": "2002-05-10", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.675, + "voteCount": 1636, + "popularity": 8.4062 + }, + { + "id": 370172, + "title": "No Time to Die", + "originalTitle": "No Time to Die", + "overview": "Bond has left active service and is enjoying a tranquil life in Jamaica. His peace is short-lived when his old friend Felix Leiter from the CIA turns up asking for help. The mission to rescue a kidnapped scientist turns out to be far more treacherous than expected, leading Bond onto the trail of a mysterious villain armed with dangerous new technology.", + "posterPath": "/iUgygt3fscRoKWCV1d0C7FbM9TP.jpg", + "backdropPath": "/x9td0NQha0t44K2qgcMipLOGjVi.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 12 + ], + "genres": [ + "Action", + "Thriller", + "Adventure" + ], + "releaseDate": "2021-09-29", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 6777, + "popularity": 8.4019 + }, + { + "id": 165, + "title": "Back to the Future Part II", + "originalTitle": "Back to the Future Part II", + "overview": "Marty and Doc are at it again as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.", + "posterPath": "/YBawEsTkUZBDajKbd5LiHkmMGf.jpg", + "backdropPath": "/w6tPctxWAsHoQXeKxxNOT6lYKpx.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 878 + ], + "genres": [ + "Adventure", + "Comedy", + "Science Fiction" + ], + "releaseDate": "1989-11-22", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 13496, + "popularity": 8.3972 + }, + { + "id": 78, + "title": "Blade Runner", + "originalTitle": "Blade Runner", + "overview": "In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to terminate a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.", + "posterPath": "/63N9uy8nd9j7Eog2axPQ8lbr3Wj.jpg", + "backdropPath": "/cFZRtb1Q4whERknfYtj7Fjsvxpg.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 53 + ], + "genres": [ + "Science Fiction", + "Drama", + "Thriller" + ], + "releaseDate": "1982-06-25", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.942, + "voteCount": 14514, + "popularity": 8.397 + }, + { + "id": 506072, + "title": "Prospect", + "originalTitle": "Prospect", + "overview": "A teenage girl and her father travel to a remote alien moon, aiming to strike it rich. They've secured a contract to harvest a large deposit of the elusive gems hidden in the depths of the moon's toxic forest. But there are others roving the wilderness and the job quickly devolves into a fight to survive.", + "posterPath": "/1HpAwszXLsD8GeypDzK0me7fPFA.jpg", + "backdropPath": "/3r6e2CfNHvtQ1nlXmfwPV7JM3iN.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2018-10-02", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.223, + "voteCount": 922, + "popularity": 8.394 + }, + { + "id": 424889, + "title": "Norman Television", + "originalTitle": "Norman Television", + "overview": "Norman, a lost guinea pig, wanders in the pipe through apartments in New York, and his main recreation during his adventure is to see how the apartment residents live - with popcorn and remote controls.", + "posterPath": "/4SZg8xO3fRQpi2sNDHC8Qd7zl82.jpg", + "backdropPath": "/1bE0ojuHQ3eXm0c1TtZYnnggXPe.jpg", + "mediaType": "movie", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-12-06", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.344, + "voteCount": 32, + "popularity": 8.3929 + }, + { + "id": 1167351, + "title": "Longing", + "originalTitle": "Longing", + "overview": "A business mogul runs into his old small town girlfriend while she is visiting the big city only to find out that they had a child together that he was unaware of.", + "posterPath": "/vn0G7wZirBfDCmsTO6OKX9AAAXm.jpg", + "backdropPath": "/txKaD0CBaIxIc9DaUpZZBj8pD5U.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-06-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.493, + "voteCount": 68, + "popularity": 8.3926 + }, + { + "id": 82507, + "title": "Sinister", + "originalTitle": "Sinister", + "overview": "True-crime writer Ellison Oswald is in a slump; he hasn't had a best seller in more than 10 years and is becoming increasingly desperate for a hit. So, when he discovers the existence of a snuff film showing the deaths of a family, he vows to solve the mystery. He moves his own family into the victims' home and gets to work. However, when old film footage and other clues hint at the presence of a supernatural force, Ellison learns that living in the house may be fatal.", + "posterPath": "/nzx10sca3arCeYBAomHan4Q6wa1.jpg", + "backdropPath": "/jovIEk4cAxWmA2dBcPrfhn3jzYN.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "2012-03-29", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 5844, + "popularity": 8.3912 + }, + { + "id": 8905, + "title": "Three Monkeys", + "originalTitle": "Üç maymun", + "overview": "A family battles against the odds to stay together when small lies grow into an extravagant cover-up. In order to avoid hardship and responsibilities that would otherwise be impossible to endure, the family chooses to ignore the truth, not to see, hear or talk about it. But does playing “Three Monkeys” invalidate the truth of its existence?", + "posterPath": "/tyIKP8SSTkw9xEXAG9lj5jEnIfW.jpg", + "backdropPath": "/tD7zvUWcx6Uw54GiE0xzpGK15pT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2008-05-16", + "releaseYear": "2008", + "originalLanguage": "tr", + "voteAverage": 6.783, + "voteCount": 214, + "popularity": 8.3896 + }, + { + "id": 284054, + "title": "Black Panther", + "originalTitle": "Black Panther", + "overview": "King T'Challa returns home to the reclusive, technologically advanced African nation of Wakanda to serve as his country's new leader. However, T'Challa soon finds that he is challenged for the throne by factions within his own country as well as without. Using powers reserved to Wakandan kings, T'Challa assumes the Black Panther mantle to join with ex-girlfriend Nakia, the queen-mother, his princess-kid sister, members of the Dora Milaje (the Wakandan 'special forces') and an American secret agent, to prevent Wakanda from being dragged into a world war.", + "posterPath": "/uxzzxijgPIY7slzFvMotPv8wjKA.jpg", + "backdropPath": "/AlFqBwJnokrp9zWTXOUv7uhkaeq.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2018-02-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 22975, + "popularity": 8.3832 + }, + { + "id": 623666, + "title": "Young Hunter", + "originalTitle": "El cazador", + "overview": "Ezequiel, a sixteen-year-old gay teenager in his sexual awakening, meets a boy of twenty-one. They quickly start a relationship and the situation unravels unexpectedly.", + "posterPath": "/ufLW18r5L29dCWZ6FCCZ8eabsEY.jpg", + "backdropPath": "/r2JmewF2iCH3jdad5RjcTk7pY5b.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-05-28", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 6.268, + "voteCount": 71, + "popularity": 8.3827 + }, + { + "id": 15475, + "title": "Ferrari", + "originalTitle": "Ferrari", + "overview": "Story of Enzo Ferrari's rise from a successful race driver to one of the most famous entrepreneurs of all time. Being interviewed by a fictitious, intrusive young journalist he recalls his setbacks and personal losses.", + "posterPath": "/9dFxWdl2dX4Ma1H3oHQWN1GpETB.jpg", + "backdropPath": "/xXtbr1cgqY5hU5SUC6LLKMSnLFB.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10751, + 10770 + ], + "genres": [ + "Drama", + "Thriller", + "Family", + "TV Movie" + ], + "releaseDate": "2003-02-16", + "releaseYear": "2003", + "originalLanguage": "it", + "voteAverage": 7.1, + "voteCount": 48, + "popularity": 8.3822 + }, + { + "id": 475961, + "title": "Curvature", + "originalTitle": "Curvature", + "overview": "Helen tries to cope with the recent death of her husband, a scientist who killed himself right when he was on the verge of successfully completing the invention of a time machine. One day, she receives a phone call, and a voice suspiciously resembling her own voice warns her that she’s in danger. Is it possible Helen has time travelled? And what could have led her to do something like that?", + "posterPath": "/wQ1CwqwGCNZHAkMC0HyEoWYJwzI.jpg", + "backdropPath": "/geQgwdQBNYOVoUKK2oBB0ILilIa.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2017-10-08", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.92, + "voteCount": 75, + "popularity": 8.3819 + }, + { + "id": 205587, + "title": "The Judge", + "originalTitle": "The Judge", + "overview": "A successful lawyer returns to his hometown for his mother's funeral only to discover that his estranged father, the town's judge, is suspected of murder.", + "posterPath": "/3K93GWotLXe4FqpErri0xkpLaD5.jpg", + "backdropPath": "/sPantp0oQ9idos7Jdwko2r6ZOIa.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-10-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 4295, + "popularity": 8.3793 + }, + { + "id": 964917, + "title": "Normal", + "originalTitle": "Normale", + "overview": "14-year-old Lucie is a resourceful teenager who takes care of her loving yet unreliable father, William, who has multiple sclerosis. Whilst William hangs out in his wardrobe and devises pranks and jokes to make his daughter smile, Lucie tries her best at school while juggling a job in a sandwich shop and all the chores at home. Her vividly imaginative mind and the novel she is writing are her only distractions. But when a social worker is appointed to visit them, Lucie and William elaborate a complex plan to make social services believe they live a perfectly normal life.", + "posterPath": "/xNmqLUaQ7tdRdhzDy5oXi2KXj5I.jpg", + "backdropPath": "/stPAGbMzkFCfWpKrI4cqxSsYFfk.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2023-04-05", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.2, + "voteCount": 33, + "popularity": 8.3785 + }, + { + "id": 539, + "title": "Psycho", + "originalTitle": "Psycho", + "overview": "When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother.", + "posterPath": "/yz4QVqPx3h1hD1DfqqQkCq3rmxW.jpg", + "backdropPath": "/mufF1aYvwdpKerhq5R1YrVcbJLY.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "1960-06-22", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 8.421, + "voteCount": 10649, + "popularity": 8.3762 + }, + { + "id": 35, + "title": "The Simpsons Movie", + "originalTitle": "The Simpsons Movie", + "overview": "After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.", + "posterPath": "/s3b8TZWwmkYc2KoJ5zk77qB6PzY.jpg", + "backdropPath": "/8ln5VUVk7gnNGIb2VNgw8nICDVt.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2007-07-25", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 8341, + "popularity": 8.3756 + }, + { + "id": 181533, + "title": "Night at the Museum: Secret of the Tomb", + "originalTitle": "Night at the Museum: Secret of the Tomb", + "overview": "When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.", + "posterPath": "/xwgy305K6qDs3D20xUO4OZu1HPY.jpg", + "backdropPath": "/taC97dzVlFBl0vWzmp6PCBWOQtM.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 14, + 10751 + ], + "genres": [ + "Adventure", + "Comedy", + "Fantasy", + "Family" + ], + "releaseDate": "2014-12-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.218, + "voteCount": 6079, + "popularity": 8.3636 + }, + { + "id": 68555, + "title": "Death Note Relight 2: L's Successors", + "originalTitle": "デスノート:リライト2 Lを継ぐ者", + "overview": "L's successor must ponder L's defeat if he hopes to succeed where his famed predecessor failed. At the headquarters of the SPK, he calls upon the Japanese task force to declare war on Light. A recap of Death Note episodes 27–37, with new footage.", + "posterPath": "/uyez2cXhVwgEAakW5bHSscoFlF5.jpg", + "backdropPath": "/an8OJ9L1TkNB5pLkzbyf0LNfoXz.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 53, + 16, + 80, + 18, + 14 + ], + "genres": [ + "TV Movie", + "Thriller", + "Animation", + "Crime", + "Drama", + "Fantasy" + ], + "releaseDate": "2009-10-07", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.348, + "voteCount": 174, + "popularity": 8.3601 + }, + { + "id": 787, + "title": "Mr. & Mrs. Smith", + "originalTitle": "Mr. & Mrs. Smith", + "overview": "A husband and wife struggle to keep their marriage alive until they realize they are both secretly working as assassins. Now, their respective assignments require them to kill each other.", + "posterPath": "/kjD700RtyhveN3ZbOnSvUSne0Qj.jpg", + "backdropPath": "/2YJOXPl4QtCskixYA58ToyCXEW0.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 18, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Drama", + "Thriller" + ], + "releaseDate": "2005-06-07", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.688, + "voteCount": 10898, + "popularity": 8.3597 + }, + { + "id": 13243, + "title": "Meet Bill", + "originalTitle": "Meet Bill", + "overview": "A mild-mannered bank executive mentors a teenage con artist and tries to make a career change as a doughnut merchant.", + "posterPath": "/u5EqwPmzc40qIyUUSMvoaWVsSMc.jpg", + "backdropPath": "/tQeYoSH2z0vqiBff3wUHOUqyZA7.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2007-09-07", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.048, + "voteCount": 351, + "popularity": 8.3586 + }, + { + "id": 1084153, + "title": "Sneaks", + "originalTitle": "Sneaks", + "overview": "Ty, a misguided, one-of-a-kind designer sneaker, doesn’t know life outside the comforts of his velvet-lined shoebox. After his sister is stolen by a shady collector, Ty must venture into New York City to find and rescue her. In his adventure, Ty meets a ragtag group of footwear friends from all walks of life who help him find the courage to step outside of his shoebox and find his sole-mate.", + "posterPath": "/3SipvmtH9VOyLmII9JLs34qFfil.jpg", + "backdropPath": "/eA4S3tlpYfEA7LTo3GOwYWzUG4z.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2025-04-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 31, + "popularity": 8.3572 + }, + { + "id": 26596, + "title": "Johnny Guitar", + "originalTitle": "Johnny Guitar", + "overview": "On the outskirts of town, the hard-nosed Vienna owns a saloon frequented by the undesirables of the region, including Dancin' Kid and his gang. Another patron of Vienna's establishment is Johnny Guitar, a former gunslinger and her lover. When a heist is pulled in town that results in a man's death, Emma Small, Vienna's rival, rallies the townsfolk to take revenge on Vienna's saloon – even without proof of her wrongdoing.", + "posterPath": "/bap37yOCwcR9x4YDsNUaSo9nIp9.jpg", + "backdropPath": "/yiglnLtYEH6UGY1qFy4zacixCXf.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 18, + 10749 + ], + "genres": [ + "Western", + "Drama", + "Romance" + ], + "releaseDate": "1954-05-26", + "releaseYear": "1954", + "originalLanguage": "en", + "voteAverage": 7.418, + "voteCount": 452, + "popularity": 8.3548 + }, + { + "id": 50646, + "title": "Crazy, Stupid, Love.", + "originalTitle": "Crazy, Stupid, Love.", + "overview": "Cal Weaver is living the American dream. He has a good job, a beautiful house, great children and a beautiful wife, named Emily. Cal's seemingly perfect life unravels, however, when he learns that Emily has been unfaithful and wants a divorce. Over 40 and suddenly single, Cal is adrift in the fickle world of dating. Enter, Jacob Palmer, a self-styled player who takes Cal under his wing and teaches him how to be a hit with the ladies.", + "posterPath": "/p4RafgAPk558muOjnBMHhMArjS2.jpg", + "backdropPath": "/vyrCniZsrXZAW08eECKIp1BMLPh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2011-07-29", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.269, + "voteCount": 8983, + "popularity": 8.353 + }, + { + "id": 552178, + "title": "Dark Waters", + "originalTitle": "Dark Waters", + "overview": "A tenacious attorney uncovers a dark secret that connects a growing number of unexplained deaths to one of the world's largest corporations. In the process, he risks everything — his future, his family, and his own life — to expose the truth.", + "posterPath": "/bzvzaHqKBSuGIIWhinTQPHvT0zf.jpg", + "backdropPath": "/jRqHItD7rORpbB0lx2ke8StSntb.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2019-11-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.53, + "voteCount": 2386, + "popularity": 8.3522 + }, + { + "id": 7520, + "title": "Cocktail", + "originalTitle": "Cocktail", + "overview": "After being discharged from the Army, Brian Flanagan moves back to Queens and takes a job in a bar run by Doug Coughlin, who teaches Brian the fine art of bar-tending. Brian quickly becomes a patron favorite with his flashy drink-mixing style, and Brian adopts his mentor's cynical philosophy on life and goes for the money.", + "posterPath": "/jFRhEPhtsln9tDwzMdZN3OlhUob.jpg", + "backdropPath": "/knYXryj3073w9fBMD5Xatk0ECiS.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "1988-07-29", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.119, + "voteCount": 1559, + "popularity": 8.3516 + }, + { + "id": 1429348, + "title": "The Stranger", + "originalTitle": "L'Étranger", + "overview": "Algiers, 1938. Meursault, a quiet and unassuming employee in his early thirties, attends his mother's funeral without shedding a tear. The next day, he begins a casual affair with Marie, a work colleague. He quickly slips back into his usual routine. However, his daily life is soon about to be disrupted by his neighbor, Raymond Sintès, who draws Meursault into his shady dealings. Until one blisteringly hot day, a tragic event occurs on a beach...", + "posterPath": "/11lx7Isd86SIPeNuWlAPjYTfr57.jpg", + "backdropPath": "/sGBTulujyLiPSfzTovHnNxJkubp.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-10-29", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 7.074, + "voteCount": 68, + "popularity": 8.3485 + }, + { + "id": 1198877, + "title": "The Body", + "originalTitle": "Il corpo", + "overview": "Rich entrepreneur Rebecca Zuin has died from an alleged heart attack, raising suspicions on the part of a police inspector after her body disappears from the morgue. When her handsome young husband becomes a suspect, he starts thinking she may have faked her death to sadistically torment him.", + "posterPath": "/AdimvmZwDiItYRzMerSiSakX0q4.jpg", + "backdropPath": "/rIz8OJVJJbZNDXOrXPW7MVXePqi.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "2024-11-28", + "releaseYear": "2024", + "originalLanguage": "it", + "voteAverage": 6.544, + "voteCount": 91, + "popularity": 8.3432 + }, + { + "id": 603094, + "title": "Monty and the Street Party", + "originalTitle": "Mugge & vejfesten", + "overview": "'The Street Party' is an animated comedy for the whole family. The story is about the 10 year old kid, Mugge, who's parents are about to get a divorce. To recreate the balance and harmony that the adults are about to smash, the always optimistic and indomitable Mugge decides to put together the best street party ever - and in that way bring his mom and dad together again.", + "posterPath": "/xghQRNzdTQXrwiCFfthsHu3uW6s.jpg", + "backdropPath": "/kCWNjHwk7pcjViErxpxBLnSN06T.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-09-19", + "releaseYear": "2019", + "originalLanguage": "da", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 8.3424 + }, + { + "id": 21494, + "title": "Moliere", + "originalTitle": "Molière", + "overview": "Molière, a down-and-out actor-cum-playwright up to his ears in debt. When the wealthy Jourdain offers to cover that debt so that Molière's theatrical talents might help Jourdain win the heart of a certain widowed marquise, hilarity ensues.", + "posterPath": "/3nfp9JCCzt1QlRhEzQfz5EkjLYn.jpg", + "backdropPath": "/9t328N5MiH6QgCkeEswUi5WSA3o.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "2007-01-31", + "releaseYear": "2007", + "originalLanguage": "fr", + "voteAverage": 6.4, + "voteCount": 198, + "popularity": 8.3415 + }, + { + "id": 479, + "title": "Shaft", + "originalTitle": "Shaft", + "overview": "New York police detective John Shaft arrests Walter Wade Jr. for a racially motivated slaying. But the only eyewitness disappears, and Wade jumps bail for Switzerland. Two years later Wade returns to face trial, confident his money and influence will get him acquitted -- especially since he's paid a drug kingpin to kill the witness.", + "posterPath": "/5ncvnNPaN73cOqD4muE413sSOyY.jpg", + "backdropPath": "/sblTwYXpm6Nrl4qewg3526lBdlK.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 80, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Crime", + "Thriller" + ], + "releaseDate": "2000-06-15", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.011, + "voteCount": 1379, + "popularity": 8.3415 + }, + { + "id": 39108, + "title": "Dragon Ball Z: Wrath of the Dragon", + "originalTitle": "ドラゴンボールZ 龍拳爆発!!悟空がやらねば誰がやる", + "overview": "The Z Warriors discover an unopenable music box and are told to open it with the Dragon Balls. The contents turn out to be a warrior named Tapion who had sealed himself inside along with a monster called Hildegarn. Goku must now perfect a new technique to defeat the evil monster.", + "posterPath": "/7uRu9EA3nie0n2mlVDDLlTI3IzC.jpg", + "backdropPath": "/Ktn3lkVHlaLpymvp7cCIPdb65g.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction" + ], + "releaseDate": "1995-07-15", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 758, + "popularity": 8.3411 + }, + { + "id": 950, + "title": "Ice Age: The Meltdown", + "originalTitle": "Ice Age: The Meltdown", + "overview": "Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.", + "posterPath": "/zDduhCHasKQ9YOTvlOreHem7Wbi.jpg", + "backdropPath": "/o1jr0UqVjxIZ1JnFzuVLN4ulWey.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 12 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Adventure" + ], + "releaseDate": "2006-03-29", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 10114, + "popularity": 8.3394 + }, + { + "id": 9378, + "title": "Thir13en Ghosts", + "originalTitle": "Thir13en Ghosts", + "overview": "Arthur and his two children inherit his uncle's estate: a glass house that serves as a prison to twelve ghosts. When the family, accompanied by a nanny and an attorney, enter the house they find themselves trapped inside an evil machine 'designed by the Devil and powered by the dead' to open the Eye of Hell. Aided by a ghost hunter and his rival, a ghost rights activist out to set the ghosts free, the group must do what they can to get out of the house alive.", + "posterPath": "/6yrrddjIjx0ElCRZp5pTZeqrj3k.jpg", + "backdropPath": "/mUffUjlJ007XAzdogdZqhaqSp4O.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2001-10-26", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.297, + "voteCount": 2284, + "popularity": 8.3393 + }, + { + "id": 1154304, + "title": "Buffalo Kids", + "originalTitle": "Buffalo Kids", + "overview": "In 1886, orphaned Irish siblings Mary and Tom arrive in New York City via ocean liner, and quickly find themselves on a wild, cross-country journey aboard a transcontinental 'Orphan Train', where they meet an extraordinary new friend who will change their lives forever.", + "posterPath": "/oKz3jeiCVbvbuo1spB8XFSxCGeZ.jpg", + "backdropPath": "/nOEIe9E5rj372Y7Ct0Kx3FJ9tLV.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2024-08-14", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7, + "voteCount": 36, + "popularity": 8.3389 + }, + { + "id": 743563, + "title": "Vikram", + "originalTitle": "விக்ரம்", + "overview": "Amar is assigned to investigate a case of serial killings. When Amar investigates the case, he realizes it is not what it seems to be and following down this path will lead to nothing but war between everyone involved.", + "posterPath": "/774UV1aCURb4s4JfEFg3IEMu5Zj.jpg", + "backdropPath": "/dkIX4dSMuVqjfrPGunBJUR7K3LQ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2022-06-02", + "releaseYear": "2022", + "originalLanguage": "ta", + "voteAverage": 7.606, + "voteCount": 146, + "popularity": 8.3386 + }, + { + "id": 83658, + "title": "Mozzarella Stories", + "originalTitle": "Mozzarella Stories", + "overview": "Ciccio D.O.P., undisputed lord of the mozzarella kingdom, sees his dairy empire imperiled when enigmatic Chinese producers unleash a half-priced, top-quality mozzarella on Italian shelves, igniting a brutal market war. As he scrambles to defend his realm, his daughter Sofia, the crooner Angelo Tatangelo, former flame Autilia “Jazz-Mood,” and ex-water-polo champ Dudo are swept into a high-stakes struggle that tests loyalties, reignites old passions, and reveals the true cost of domination.", + "posterPath": "/lEDlJS8EzwUSkMm4o7Nf63XJaHm.jpg", + "backdropPath": "/sPz9Rapu02xfaLHj9GRvsKfTOAR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 53, + 28 + ], + "genres": [ + "Comedy", + "Crime", + "Thriller", + "Action" + ], + "releaseDate": "2011-08-08", + "releaseYear": "2011", + "originalLanguage": "it", + "voteAverage": 5.9, + "voteCount": 19, + "popularity": 8.3271 + }, + { + "id": 840889, + "title": "Stopmotion", + "originalTitle": "Stopmotion", + "overview": "Ella Blake, a stop-motion animator struggling to control her demons after the loss of her overbearing mother, embarks upon the creation of a film that becomes the battleground for her sanity. As Ella’s mind starts to fracture, the characters in her project take on a life of their own.", + "posterPath": "/kWzWZEctPcZ0dATbtcYy6lIJgGj.jpg", + "backdropPath": "/shS6buEDnEDoHTdLbGzCoDIZ9ur.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 16 + ], + "genres": [ + "Horror", + "Animation" + ], + "releaseDate": "2024-02-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.205, + "voteCount": 200, + "popularity": 8.3252 + }, + { + "id": 437311, + "title": "Orbiter 9", + "originalTitle": "Órbita 9", + "overview": "Helena, a young woman on a deep space mission, has been alone for 20 years. Her parents abandoned ship after a technical malfunction made it impossible for all three of them to reach their intended destination. Alex, an isolated engineer, is about to enter her life and turn her world upside down.", + "posterPath": "/1EbdFbUbY2K8MJbNAIGnZ7gGrRs.jpg", + "backdropPath": "/jSxVqmHofYPXcJGt4CA28vtkc9w.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 10749 + ], + "genres": [ + "Drama", + "Science Fiction", + "Romance" + ], + "releaseDate": "2017-04-07", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 5.828, + "voteCount": 302, + "popularity": 8.3239 + }, + { + "id": 284753, + "title": "Ransom", + "originalTitle": "Ransom", + "overview": "A Native American travels around a resort town, murdering cops and rich people with a high-powered crossbow, while demanding that the town's richest residents pay him money to stop the killings.", + "posterPath": "/ac18JidpEPzIaS03hCLyfouqEME.jpg", + "backdropPath": "/s8DsdMerUnNtwjJ9JCA5CAdtdyd.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53 + ], + "genres": [ + "Crime", + "Thriller" + ], + "releaseDate": "1977-04-29", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 11, + "popularity": 8.3235 + }, + { + "id": 12429, + "title": "Ponyo", + "originalTitle": "崖の上のポニョ", + "overview": "When Sosuke, a young boy who lives on a clifftop overlooking the sea, rescues a stranded goldfish named Ponyo, he discovers more than he bargained for. Ponyo is a curious, energetic young creature who yearns to be human, but even as she causes chaos around the house, her father, a powerful sorcerer, schemes to return Ponyo to the sea.", + "posterPath": "/yp8vEZflGynlEylxEesbYasc06i.jpg", + "backdropPath": "/shqLeIkqPAAXM8iT6wVDiXUYz1p.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 10751 + ], + "genres": [ + "Animation", + "Fantasy", + "Family" + ], + "releaseDate": "2008-07-19", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.752, + "voteCount": 4605, + "popularity": 8.3203 + }, + { + "id": 49444, + "title": "Kung Fu Panda 2", + "originalTitle": "Kung Fu Panda 2", + "overview": "Po and his friends fight to stop a peacock villain from conquering China with a deadly new weapon, but first the Dragon Warrior must come to terms with his past.", + "posterPath": "/A23nZfFBa7gFD40IsiV5gOadyIi.jpg", + "backdropPath": "/reHkSQwiYKK4SabnGDY1FWKie82.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2011-05-25", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 7611, + "popularity": 8.3187 + }, + { + "id": 1242404, + "title": "Steve", + "originalTitle": "Steve", + "overview": "Over one intense day, the devoted head teacher of a last-chance reform school strives to keep his students in line while facing pressures of his own.", + "posterPath": "/wmLoMyofbseLfxiGgk1Iz5H97c3.jpg", + "backdropPath": "/sb8Aq1RohASXyjT0uEOUUZJi5oI.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 174, + "popularity": 8.3182 + }, + { + "id": 30606, + "title": "Mobile Suit Zeta Gundam - A New Translation III: Love is the Pulse of the Stars", + "originalTitle": "機動戦士ZガンダムIII A New Translation 星の鼓動は愛", + "overview": "Universal Century 0087, Char Aznable has now become the leader of the AEUG. Scirocco, the man from Jupiter, schemes to seize control of the Titans. Haman, the Axis leader, is attempting to restore the Zabi family. Through politics and strategy, these three powers struggle for dominion over the Earth Sphere. The war builds to a deadly endgame around the space colony Gryps 2, which has been converted into a giant laser cannon. What destiny awaits Kamille at the end of the conflict? This is the final part of the Mobile Suit Zeta Gundam feature trilogy, which features enhanced animation and theme songs by GACKT.", + "posterPath": "/flcl4NZlDrGF76lTXSUNdzOOunt.jpg", + "backdropPath": "/sufienRbPlkcFx6hQPFlnTGqGvo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878, + 10752 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction", + "War" + ], + "releaseDate": "2006-03-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 26, + "popularity": 8.3178 + }, + { + "id": 296917, + "title": "PSYCHO-PASS: The Movie", + "originalTitle": "劇場版 PSYCHO-PASS サイコパス", + "overview": "In a futuristic Japan, the Sibyl System is charged with keeping the peace. When the state of SEAUn brings the Sibyl System in to test its effectiveness, it becomes a haven of peace and safety—for a time. Eventually, terrorists from SEAUn begin appearing in Japan, somehow slipping through the System's security and attacking from within. Desperate for answers, Inspector Akane Tsunemori is sent overseas to bring the terrorists to justice. But when her investigation forces her into a standoff with an old ally, will she be able to pull the trigger?", + "posterPath": "/hUlhPosXp62uuTS0c2aINdg8cvV.jpg", + "backdropPath": "/8jnHGZ4vguLcctDHlMvaAyG7mjb.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 28 + ], + "genres": [ + "Animation", + "Science Fiction", + "Action" + ], + "releaseDate": "2015-01-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 231, + "popularity": 8.3165 + }, + { + "id": 476781, + "title": "Possessive", + "originalTitle": "Posesif", + "overview": "A student diver risks her scholastic future and relationship with her father when she dates a moody transfer student consumed by their romance.", + "posterPath": "/vHv1TRQ0K3MbXJHrcy65nTczuuu.jpg", + "backdropPath": "/mCGhKpn0C0ywvtwzI5qoZA23Dt9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2017-10-26", + "releaseYear": "2017", + "originalLanguage": "id", + "voteAverage": 7.1, + "voteCount": 17, + "popularity": 8.3121 + }, + { + "id": 102699, + "title": "The Visitors", + "originalTitle": "The Visitors", + "overview": "Bill, Martha and their little child Hal are spending a quiet winter Sunday in their cosy house when they get an unexpected visit from Mike Nickerson and Tony Rodriguez. Mike and Tony are old acquaintances of Bill; a few years back, in Vietnam, they were in the same platoon. They also became opposed parties in a court martial - for a reason that Bill never explained to Martha. What happened in Vietnam, and what is the reason for the presence of Mike and Tony ?", + "posterPath": "/rlnSJXYfCzbmBN2utn7BRZX5Lak.jpg", + "backdropPath": "/5FavuUTRtloz41DYWqN4CWOHwdZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "1972-02-02", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 25, + "popularity": 8.3117 + }, + { + "id": 1097870, + "title": "Dear Santa", + "originalTitle": "Dear Santa", + "overview": "Likeable 6th grader Liam writes to Santa asking him to prove that he's real. But Liam is dyslexic and accidentally sends his letter to Satan instead, who shows up at Liam's house, excited to have his first fanboy letter and wanting a little of Liam's soul.", + "posterPath": "/fRbDHbGBXg6kwQYr3CRYeKPJW5q.jpg", + "backdropPath": "/yYQDu8yX2zZaCa1hUWD24jq3JRu.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2024-11-24", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.253, + "voteCount": 429, + "popularity": 8.3102 + }, + { + "id": 109843, + "title": "Ill Manors", + "originalTitle": "Ill Manors", + "overview": "Ensemble film revolving around characters living in Forest Gate, London. Over the course of a few days, six inter-linking stories explore issues of drug use, prostitution and urban poverty.", + "posterPath": "/qhN0X6sDUalPxoNRfuUIBR6QmSO.jpg", + "backdropPath": "/nWJPW8Z2fZr9vmBzqlLh2o5vOac.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2012-06-06", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.293, + "voteCount": 138, + "popularity": 8.3099 + }, + { + "id": 977294, + "title": "Tin Soldier", + "originalTitle": "Tin Soldier", + "overview": "An ex-special forces operative seeks revenge against a cult leader who has corrupted his former comrades, the Shinjas. This leader, known as The Bokushi, promises veterans a purpose and protection, but is revealed to be a destructive influence. The ex-soldier, Nash Cavanaugh, joins forces with military operative Emmanuel Ashburn to infiltrate the Bokushi's fortress and expose his reign of terror", + "posterPath": "/lFFDrFLXywFhy6khHes1LCFVMsL.jpg", + "backdropPath": "/5VY1i8ET5xUeg0zEEwNjFfWYJJF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-05-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 88, + "popularity": 8.3089 + }, + { + "id": 486131, + "title": "Shaft", + "originalTitle": "Shaft", + "overview": "JJ, aka John Shaft Jr., may be a cyber security expert with a degree from MIT, but to uncover the truth behind his best friend’s untimely death, he needs an education only his dad can provide. Absent throughout JJ’s youth, the legendary locked-and-loaded John Shaft agrees to help his progeny navigate Harlem’s heroin-infested underbelly.", + "posterPath": "/joNpwk3wQXpiv6d2bPemjWj3CBd.jpg", + "backdropPath": "/hwaYxb8nm7ADQRgUIsqUTsDwgyO.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 35, + 9648 + ], + "genres": [ + "Action", + "Crime", + "Comedy", + "Mystery" + ], + "releaseDate": "2019-06-14", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.534, + "voteCount": 1798, + "popularity": 8.3066 + }, + { + "id": 43123, + "title": "Madame Bovary", + "originalTitle": "Madame Bovary", + "overview": "Soon after the death of his first wife (whose dowry was inadequate), Charles Bovary, a country doctor in Normandy, marries Emma Rouault. In her new home, Emma finds conflict with her mother-in-law, a husband uninterested in the social whirl, and general discontentment; thereby proving an easy conquest for philanderer Rodolphe. Other lovers follow. Does tragedy await?", + "posterPath": "/rrRpmDh3PMHYPdaisyePGV6VQkg.jpg", + "backdropPath": "/holJnveYpAAzievL3lcnyCih4Xn.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1934-01-04", + "releaseYear": "1934", + "originalLanguage": "fr", + "voteAverage": 5.263, + "voteCount": 19, + "popularity": 8.2974 + }, + { + "id": 332562, + "title": "A Star Is Born", + "originalTitle": "A Star Is Born", + "overview": "Seasoned musician Jackson Maine discovers — and falls in love with — struggling artist Ally. She has just about given up on her dream to make it big as a singer — until Jack coaxes her into the spotlight. But even as Ally's career takes off, the personal side of their relationship is breaking down, as Jack fights an ongoing battle with his own internal demons.", + "posterPath": "/wrFpXMNBRj2PBiN4Z5kix51XaIZ.jpg", + "backdropPath": "/dDYpjrwh1wNVQk0rEpc9P81wQt4.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18, + 10749 + ], + "genres": [ + "Music", + "Drama", + "Romance" + ], + "releaseDate": "2018-10-03", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 12010, + "popularity": 8.2954 + }, + { + "id": 12626, + "title": "Broadcast News", + "originalTitle": "Broadcast News", + "overview": "A high-strung news producer finds herself in a love triangle between a talented but self-doubting reporter and a charming new anchor, who embodies the growing trivialization of news that she is determined to fight against.", + "posterPath": "/kQNR1Lc0qAF5xuBySpDn481KVjb.jpg", + "backdropPath": "/wHSZJ8s0JfWIjoHkRknq6ZtGlZr.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1987-12-16", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.755, + "voteCount": 441, + "popularity": 8.2934 + }, + { + "id": 9486, + "title": "Johnny English", + "originalTitle": "Johnny English", + "overview": "A lowly pencil pusher working for MI7, Johnny English is suddenly promoted to super spy after Agent One is assassinated and every other agent is blown up at his funeral. When a billionaire entrepreneur sponsors the exhibition of the Crown Jewels—and the valuable gems disappear on the opening night and on English's watch—the newly-designated agent must jump into action to find the thief and recover the missing gems.", + "posterPath": "/mmzW88tnkB2MnOV3Un2F9IUxSnZ.jpg", + "backdropPath": "/tGcIy7gA8jwYpi5W2UB1Rxrk2i6.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 35 + ], + "genres": [ + "Adventure", + "Action", + "Comedy" + ], + "releaseDate": "2003-03-14", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 3651, + "popularity": 8.2917 + }, + { + "id": 30875, + "title": "Manhattan Baby", + "originalTitle": "Manhattan Baby", + "overview": "An archaeologist opens an Egyptian tomb and accidently releases an evil spirit. His young daughter becomes possessed by the freed entity and, upon their arrival back in New York, the gory murders begin.", + "posterPath": "/cHqAB06ofzOisT0kRRfiSeHdnHM.jpg", + "backdropPath": "/lLqmVSW3ozeOwjB9BiCPWE3gv8l.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1982-08-12", + "releaseYear": "1982", + "originalLanguage": "it", + "voteAverage": 5.06, + "voteCount": 100, + "popularity": 8.2914 + }, + { + "id": 1217602, + "title": "London Calling", + "originalTitle": "London Calling", + "overview": "After fleeing the UK from a job gone wrong, a down on his luck hitman is forced to babysit the son of his new crime boss and show him how to become a man.", + "posterPath": "/cpQ4VxBJO7vGV3IUdKzSNf4tH9V.jpg", + "backdropPath": "/1dqFuNiutgBdNF9d5QOQBWHHvft.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 35, + 53 + ], + "genres": [ + "Action", + "Crime", + "Comedy", + "Thriller" + ], + "releaseDate": "2025-09-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.128, + "voteCount": 43, + "popularity": 8.2863 + }, + { + "id": 1072790, + "title": "Anyone But You", + "originalTitle": "Anyone But You", + "overview": "After an amazing first date, Bea and Ben’s fiery attraction turns ice cold — until they find themselves unexpectedly reunited at a destination wedding in Australia. So they do what any two mature adults would do: pretend to be a couple.", + "posterPath": "/5qHoazZiaLe7oFBok7XlUhg96f2.jpg", + "backdropPath": "/j9eOeLlTGoHoM8BNUJVNyWmIvCi.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2023-12-21", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.833, + "voteCount": 2811, + "popularity": 8.2823 + }, + { + "id": 791373, + "title": "Zack Snyder's Justice League", + "originalTitle": "Zack Snyder's Justice League", + "overview": "Determined to ensure Superman's ultimate sacrifice was not in vain, Bruce Wayne aligns forces with Diana Prince with plans to recruit a team of metahumans to protect the world from an approaching threat of catastrophic proportions.", + "posterPath": "/tnAuB8q5vv7Ax9UAEje5Xi4BXik.jpg", + "backdropPath": "/13Nz8EchKRdCgJcKdEoJAnpiVn2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2021-03-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 10502, + "popularity": 8.2784 + }, + { + "id": 390415, + "title": "Maikäfer flieg", + "originalTitle": "Maikäfer flieg", + "overview": "A movie based on the book by Christine Nöstlinger “Maikäfer, flieg! Mein Vater, das Kriegsende, Cohn und ich”", + "posterPath": "/unjwBtvi1wUIbdksXpiE7IabsiC.jpg", + "backdropPath": "/sa3p10m3hMLGo9TI1FmdLE1Qzcr.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-02-11", + "releaseYear": "2016", + "originalLanguage": "de", + "voteAverage": 6.3, + "voteCount": 14, + "popularity": 8.2782 + }, + { + "id": 522681, + "title": "Escape Room", + "originalTitle": "Escape Room", + "overview": "Six strangers find themselves in circumstances beyond their control, and must use their wits to survive.", + "posterPath": "/8Ls1tZ6qjGzfGHjBB7ihOnf7f0b.jpg", + "backdropPath": "/mWLljCmpqlcYQh7uh51BBMwCZwN.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "2019-01-03", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.542, + "voteCount": 4907, + "popularity": 8.2725 + }, + { + "id": 384018, + "title": "Fast & Furious Presents: Hobbs & Shaw", + "originalTitle": "Fast & Furious Presents: Hobbs & Shaw", + "overview": "Ever since US Diplomatic Security Service Agent Hobbs and lawless outcast Shaw first faced off, they just have traded smack talk and body blows. But when cyber-genetically enhanced anarchist Brixton's ruthless actions threaten the future of humanity, they join forces to defeat him.", + "posterPath": "/qRyy2UmjC5ur9bDi3kpNNRCc5nc.jpg", + "backdropPath": "/qAhedRxRYWZAgZ8O8pHIl6QHdD7.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35 + ], + "genres": [ + "Action", + "Adventure", + "Comedy" + ], + "releaseDate": "2019-07-31", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.844, + "voteCount": 7555, + "popularity": 8.2715 + }, + { + "id": 396386, + "title": "Barracuda", + "originalTitle": "Barracuda", + "overview": "Sinaloa hitchhikes into Texas to meet Merle, her half-sister by way of their dead country musician father. As the two get to know each other, Sinaloa's chaotic influence starts to unravel Merle's quiet, comfortable life. While the family music legacy brought Sinaloa to Austin, she won't leave without taking revenge against the people who stole her daddy away years ago.", + "posterPath": "/yIpEGLtjxDkwu9ytfvCgawJR1bb.jpg", + "backdropPath": "/62Db5WVKGagI9Sz3JUJC3yd41KW.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 53, + 18 + ], + "genres": [ + "Music", + "Thriller", + "Drama" + ], + "releaseDate": "2017-06-10", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 26, + "popularity": 8.27 + }, + { + "id": 592695, + "title": "Pleasure", + "originalTitle": "Pleasure", + "overview": "19 year old Linnéa leaves her small town in Sweden and heads for Los Angeles with the aim of becoming the world's next big porn star, but the road to her goal turns out to be bumpier than she imagined.", + "posterPath": "/TcOsu6iO5prSJbDn9oIQgIW655.jpg", + "backdropPath": "/y0LhmaMYpFkIfrUlOpJYTVMH2eA.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-10-08", + "releaseYear": "2021", + "originalLanguage": "sv", + "voteAverage": 6.282, + "voteCount": 735, + "popularity": 8.2698 + }, + { + "id": 258480, + "title": "Carol", + "originalTitle": "Carol", + "overview": "In 1950s New York, a department-store clerk who dreams of a better life falls for an older, married woman.", + "posterPath": "/cJeled7EyPdur6TnCA5GYg0UVna.jpg", + "backdropPath": "/o0ghC4XMIMdbRBXIqSvnPrxwj3W.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2015-11-20", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 3857, + "popularity": 8.2657 + }, + { + "id": 3980, + "title": "Critters", + "originalTitle": "Critters", + "overview": "Carnivorous aliens arrive unannounced at a Kansas family farm; two intergalactic bounty hunters soon follow, determined to blow them off the planet.", + "posterPath": "/zLL6nX13AfigvvNQ9GyNXhKVrmg.jpg", + "backdropPath": "/omoQkyiQ94FfyR4gUmA66VXQyZ9.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27, + 878 + ], + "genres": [ + "Comedy", + "Horror", + "Science Fiction" + ], + "releaseDate": "1986-04-11", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 1045, + "popularity": 8.2628 + }, + { + "id": 6477, + "title": "Alvin and the Chipmunks", + "originalTitle": "Alvin and the Chipmunks", + "overview": "A struggling songwriter named Dave Seville finds success when he comes across a trio of singing chipmunks: mischievous leader Alvin, brainy Simon, and chubby, impressionable Theodore.", + "posterPath": "/22YxmH8FHZGEVyBgKBNorVF4cqi.jpg", + "backdropPath": "/lKkkogTlIQT8o83GFQZZ3CA9MzB.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 14 + ], + "genres": [ + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2007-12-13", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 4637, + "popularity": 8.258 + }, + { + "id": 354110, + "title": "Forsaken", + "originalTitle": "Forsaken", + "overview": "John Henry returns to his hometown in hopes of repairing his relationship with his estranged father, but a local gang is terrorizing the town. John Henry is the only one who can stop them, however he has abandoned both his gun and reputation as a fearless quick-draw killer.", + "posterPath": "/fbTpSiqGn6ImqSAyawHlLf7goat.jpg", + "backdropPath": "/eiHNVxEXJIY7nBlcL9zXmtP7qtz.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 28, + 18 + ], + "genres": [ + "Western", + "Action", + "Drama" + ], + "releaseDate": "2015-09-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 367, + "popularity": 8.2573 + }, + { + "id": 116711, + "title": "Epic", + "originalTitle": "Epic", + "overview": "A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world—and ours.", + "posterPath": "/81cSsWzjTfR3cJSqnTiHwy1eyPK.jpg", + "backdropPath": "/zFyuN8vF2XNSzxIdACES0IyNrhK.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751, + 14 + ], + "genres": [ + "Animation", + "Adventure", + "Family", + "Fantasy" + ], + "releaseDate": "2013-05-15", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.542, + "voteCount": 2853, + "popularity": 8.2555 + }, + { + "id": 637415, + "title": "Enhanced", + "originalTitle": "Enhanced", + "overview": "A group of mutant outcasts including a young woman with enhanced super strength find themselves being hunted down, one by one by a sinister government organization. But when an even stronger enhanced serial killer emerges on the scene, agents and mutants are forced to question their allegiances.", + "posterPath": "/b0vSMHuwXatB7V7ck6NdogCQrPW.jpg", + "backdropPath": "/fcLpZFKktM1U3lus7bHgo2h7KK0.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878 + ], + "genres": [ + "Action", + "Science Fiction" + ], + "releaseDate": "2019-10-24", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 41, + "popularity": 8.2536 + }, + { + "id": 11395, + "title": "The Santa Clause", + "originalTitle": "The Santa Clause", + "overview": "On Christmas Eve, divorced dad Scott Calvin and his son discover Santa Claus has fallen off their roof. When Scott takes the reins of the magical sleigh, he finds he is now the new Santa, and must convince a world of disbelievers, including himself.", + "posterPath": "/hvV2rI60qOYELT7tHHLpxtafnBZ.jpg", + "backdropPath": "/wOoZPg0ZCJ1z1KZhVXRvX1eDZqb.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 35, + 10751 + ], + "genres": [ + "Fantasy", + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "1994-11-11", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 2183, + "popularity": 8.2503 + }, + { + "id": 493551, + "title": "Operation Finale", + "originalTitle": "Operation Finale", + "overview": "In 1960, a team of Israeli secret agents is deployed to find Adolf Eichmann, the infamous Nazi architect of the Holocaust, supposedly hidden in Argentina, and get him to Israel to be judged.", + "posterPath": "/nlIdPeH5IrR1qRErschnVQeZAQu.jpg", + "backdropPath": "/giAigYAErqK0FTt2H5UmUS5kNZO.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 53 + ], + "genres": [ + "Drama", + "History", + "Thriller" + ], + "releaseDate": "2018-08-29", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 1054, + "popularity": 8.2485 + }, + { + "id": 9297, + "title": "Monster House", + "originalTitle": "Monster House", + "overview": "Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.", + "posterPath": "/zCRPr4bkO3ae0U1134vJ39xZnAG.jpg", + "backdropPath": "/aDnCTWpWMHcQxOeGWsITmoLuEGy.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2006-06-30", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 4203, + "popularity": 8.2466 + }, + { + "id": 1134682, + "title": "Dominion of Darkness", + "originalTitle": "Kuasa Gelap", + "overview": "After losing his mother and sister, Thomas plans to resign as a priest but is tasked with assisting exorcist Rendra. Together, they confront demons possessing Kayla, his late sister's friend, while her mother Maya battles a haunting past.", + "posterPath": "/xwM1MDzQn43jLJoUeY2YGBpUkuO.jpg", + "backdropPath": "/hHhZFnZs107bAaOmpDR9sSWjZK2.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-10-03", + "releaseYear": "2024", + "originalLanguage": "id", + "voteAverage": 6.063, + "voteCount": 16, + "popularity": 8.2427 + }, + { + "id": 48303, + "title": "Certified Copy", + "originalTitle": "Copie conforme", + "overview": "In Tuscany to promote his latest book, a middle-aged English writer meets a French woman who leads him to the village of Lucignano.", + "posterPath": "/soBvtCR33Gv1j6gXwXOIc3JTlNc.jpg", + "backdropPath": "/slNzn4E0XA1WE0yh9I53oIzXQ4e.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2010-05-19", + "releaseYear": "2010", + "originalLanguage": "fr", + "voteAverage": 6.987, + "voteCount": 428, + "popularity": 8.241 + }, + { + "id": 420817, + "title": "Aladdin", + "originalTitle": "Aladdin", + "overview": "A kindhearted street urchin named Aladdin embarks on a magical adventure after finding a lamp that releases a wisecracking genie while a power-hungry Grand Vizier vies for the same lamp that has the power to make their deepest wishes come true.", + "posterPath": "/ykUEbfpkf8d0w49pHh0AD2KrT52.jpg", + "backdropPath": "/yJyZRrXaYUjhOrJGga8awbw4Rud.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 10749, + 10751 + ], + "genres": [ + "Adventure", + "Fantasy", + "Romance", + "Family" + ], + "releaseDate": "2019-05-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 10411, + "popularity": 8.234 + }, + { + "id": 1293286, + "title": "Gunslingers", + "originalTitle": "Gunslingers", + "overview": "When the most wanted man in America surfaces in a small Kentucky town, his violent history -- and a blood-thirsty mob seeking vengeance and a king’s ransom -- soon follow. As brothers face off against one another and bullets tear the town to shreds, this lightning-fast gunslinger makes his enemies pay the ultimate price for their greed.", + "posterPath": "/O7REXWPANWXvX2jhQydHjAq2DV.jpg", + "backdropPath": "/zksO4lVnRKRoaSYzh2EDn2Z3Pel.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 28 + ], + "genres": [ + "Western", + "Action" + ], + "releaseDate": "2025-04-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 81, + "popularity": 8.2321 + }, + { + "id": 25892, + "title": "Cinderella", + "originalTitle": "Cinderella", + "overview": "After the success of the live 1957 Cinderella on CBS (with Julie Andrews), the network decided to produce another television version. The new script hewed closer to the traditional tale, although nearly all of the original songs were retained and performed in their original settings. Added to the Rodgers and Hammerstein score was \"Loneliness of Evening\", which had been composed for South Pacific but not used.", + "posterPath": "/60gQBt16TakffKrR2sizX7SWJ1M.jpg", + "backdropPath": "/1fvoMvKbk4L0vzdXyTwOGxXxrl3.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 10749, + 10770, + 10402 + ], + "genres": [ + "Fantasy", + "Romance", + "TV Movie", + "Music" + ], + "releaseDate": "1965-02-22", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 46, + "popularity": 8.2313 + }, + { + "id": 58058, + "title": "Elisa", + "originalTitle": "Elisa", + "overview": "Marie has had a tough childhood ever since her mother Elisa committed suicide. She has spent most of her life in an orphanage and now makes a living as a small time criminal in Paris. Now she wants to unravel her past and find her father whom she blames for her mother's death.", + "posterPath": "/q5LWron7LvX1XeKtTNEs47oY6Sf.jpg", + "backdropPath": "/ct80LPqrOXbMtxvKqxixfXuIOkP.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1995-02-01", + "releaseYear": "1995", + "originalLanguage": "fr", + "voteAverage": 6.359, + "voteCount": 99, + "popularity": 8.2309 + }, + { + "id": 970450, + "title": "Werewolves", + "originalTitle": "Werewolves", + "overview": "A year after a supermoon’s light activated a dormant gene, transforming humans into bloodthirsty werewolves and causing nearly a billion deaths, the nightmare resurfaces as the supermoon rises again. Two scientists attempt to stop the mutation but fail and must now struggle to reach one of their family homes.", + "posterPath": "/otXBlMPbFBRs6o2Xt6KX59Qw6dL.jpg", + "backdropPath": "/cA88pwGnHa64BBcU3R1oCcJH9Qc.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 53 + ], + "genres": [ + "Action", + "Horror", + "Thriller" + ], + "releaseDate": "2024-12-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.915, + "voteCount": 454, + "popularity": 8.2304 + }, + { + "id": 32657, + "title": "Percy Jackson & the Olympians: The Lightning Thief", + "originalTitle": "Percy Jackson & the Olympians: The Lightning Thief", + "overview": "Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.", + "posterPath": "/brzpTyZ5bnM7s53C1KSk1TmrMO6.jpg", + "backdropPath": "/ugiV9SpJburMOPeIyjBJyAnO1So.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 10751 + ], + "genres": [ + "Adventure", + "Fantasy", + "Family" + ], + "releaseDate": "2010-02-01", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.21, + "voteCount": 7676, + "popularity": 8.2283 + }, + { + "id": 138574, + "title": "Beyond the Hill", + "originalTitle": "Tepenin Ardı", + "overview": "In the quiet foothills of Turkey, Faik lives an isolated existence. When his second son brings his boys for a visit, Faik takes the opportunity to pontificate about the law of the land, as he sees it. He shares one unsolicited thought after the next, most particularly focusing on the elusive nomads whom he suspects have been trespassing on his property. The day and night wear on, and each member of the clan takes his turn entrusting the film's audience with his own dark secret.", + "posterPath": "/SN9t45t6hImAjr1AzB85gUICxZ.jpg", + "backdropPath": "/wcnMRuiLeGFJprzUy17BfxoxpqR.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2012-12-14", + "releaseYear": "2012", + "originalLanguage": "tr", + "voteAverage": 6.9, + "voteCount": 40, + "popularity": 8.2241 + }, + { + "id": 1106739, + "title": "Juror #2", + "originalTitle": "Juror #2", + "overview": "While serving as a juror in a high profile murder trial, family man Justin Kemp finds himself struggling with a serious moral dilemma…one he could use to sway the jury verdict and potentially convict—or free—the accused killer.", + "posterPath": "/ugQkpGajKFQ8eyOEhGheR0HfWQ.jpg", + "backdropPath": "/wHXyGLjYPm4bHNKFQPCfYWiTeSH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2024-10-30", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.874, + "voteCount": 2221, + "popularity": 8.2234 + }, + { + "id": 728144, + "title": "The Special", + "originalTitle": "The Special", + "overview": "Suspecting his wife of infidelity, Jerry is persuaded by his best friend to accompany him to a brothel to sample ‘The Special’, which proves to be a lifechanging experience in more ways than one. Because every pleasure has its price...", + "posterPath": "/kVRVgtgPDm9Wg6lVMpE4PGNs1V5.jpg", + "backdropPath": "/kFQBLnLESkKZzPJ381lrm3pcgDy.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2020-01-31", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 41, + "popularity": 8.2217 + }, + { + "id": 454033, + "title": "Swinging Safari", + "originalTitle": "Swinging Safari", + "overview": "1975: A 200-ton blue whale gets washed up on a local beach and the kids think it’s the biggest thing that’s ever happened in Australia. Behind closed doors, the Mums and Dads of a quiet suburban street are going to celebrate in their own special way, by joining the sexual revolution and throwing a wife-swapping key party. And like the rotting whale, it’s all about to go spectacularly wrong.", + "posterPath": "/zs9wcNHidBPhcTmiWzXuFam823v.jpg", + "backdropPath": "/gqfMZITSrYR1BAMhu0oh8yxHcn6.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-01-18", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.203, + "voteCount": 64, + "popularity": 8.2195 + }, + { + "id": 19257, + "title": "Mobile Suit Zeta Gundam - A New Translation II: Lovers", + "originalTitle": "機動戦士ZガンダムII A New Translation 恋人たち", + "overview": "Universal Century 0087. As the civil war between the AEUG and the Titans continues, Kamille meets a mysterious girl named Four. But his encounter with Four, one of the Titans' \"cyber-Newtypes,\" fills his heart with anguish. The grief-stricken Kamille fights his way back to space to find the new mobile suit Zeta Gundam waiting for him. Meanwhile, Paptimus Scirocco, the man from Jupiter, has added his strength to that of the Titans. And a third power is finally making its move, in the form of the Zeon remnants of Axis... With enhanced animation and a theme song by GACKT, the tragic romance of Kamille and Four unfolds in this second part of the Mobile Suit Zeta Gundam feature trilogy.", + "posterPath": "/hpNtbZvUcQCxedLl42TDYmmn0PW.jpg", + "backdropPath": "/v2NJPBmhQBGI8nLmTBI94MwPT1t.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "2005-10-29", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 20, + "popularity": 8.2191 + }, + { + "id": 32091, + "title": "The Touch", + "originalTitle": "The Touch", + "overview": "A sister and brother, the last heirs of a family of acrobats, are called upon by a Buddhist monk sect to retrieve an artifact that their ancestors have protected throughout the ages.", + "posterPath": "/voQXY7v9G8n4cPQEZIabkBzwzB6.jpg", + "backdropPath": "/rhQK6grjWKHwuolvkEQGVf0vtuw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14 + ], + "genres": [ + "Action", + "Fantasy" + ], + "releaseDate": "2002-08-01", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 4.988, + "voteCount": 41, + "popularity": 8.2143 + }, + { + "id": 744750, + "title": "Held", + "originalTitle": "Held", + "overview": "A couple's ailing marriage is put to the test when they are held hostage in an isolated vacation rental by an unseen Voice that commands their every move and threatens harm if they don’t obey.", + "posterPath": "/c8NqVX14i0d9gmKsZFcTRa8xuac.jpg", + "backdropPath": "/1a8iiHGZ43kKAsVLQAl9lvBi9Hg.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2020-10-21", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.571, + "voteCount": 70, + "popularity": 8.2111 + }, + { + "id": 517331, + "title": "The Realm", + "originalTitle": "El reino", + "overview": "Manuel, a Spanish politician whose high-class lifestyle is based on nefarious and illegal business threatens to break his entire party after a newspaper exposes him to the public eye. Rather than admit to any wrongdoing, he decides to sell out his whole party in an effort to avoid jail time. It's a decision that will put many lives at risk.", + "posterPath": "/8C4rnA6r7myYdJBgeZLgCvy5RPS.jpg", + "backdropPath": "/cLAvMhCYwRelzzOJTXuXxzMFZZV.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648, + 18 + ], + "genres": [ + "Thriller", + "Mystery", + "Drama" + ], + "releaseDate": "2018-09-28", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 7.088, + "voteCount": 452, + "popularity": 8.2103 + }, + { + "id": 16220, + "title": "Wizards", + "originalTitle": "Wizards", + "overview": "After the death of his mother, the evil mutant wizard Blackwolf discovers some long-lost military technologies. Full of ego and ambition, Blackwolf claims his mother's throne, assembles an army and sets out to brainwash and conquer Earth. Meanwhile, Blackwolf's gentle twin brother, the bearded and sage Avatar, calls upon his own magical abilities to foil Blackwolf's plans for world domination -- even if it means destroying his own flesh and blood.", + "posterPath": "/jeAxoYepnVirGe0H7pmwviSZYul.jpg", + "backdropPath": "/eTzdSb3YCFZvyzicBalPJ9O0zzJ.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 878 + ], + "genres": [ + "Animation", + "Fantasy", + "Science Fiction" + ], + "releaseDate": "1977-02-09", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 227, + "popularity": 8.2093 + }, + { + "id": 30484, + "title": "Warrior Queen", + "originalTitle": "Warrior Queen", + "overview": "In ancient Pompeii, slaves are bought and sold for household chores and sex. A mysterious queen moves among the elite, meantime secretly helping the slaves to escape. Eventually her life is also in jeopardy, and as the volcano erupts she and the slaves attempt to escape while being chased by the military.", + "posterPath": "/P0j17mJRpSIZOglbtPkakHSD1S.jpg", + "backdropPath": "/iZcknWnGqXNJFEb9YrxT7q21KJ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 36, + 12 + ], + "genres": [ + "Action", + "History", + "Adventure" + ], + "releaseDate": "1987-01-26", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 3.5, + "voteCount": 32, + "popularity": 8.2072 + }, + { + "id": 953735, + "title": "Marinette", + "originalTitle": "Marinette", + "overview": "Born in 1975, Marinette Pichon was a born soccer player. Raised by a courageous mother who had to deal with an abusive husband, she overcame difficulties and developed unwavering determination. While juggling odd jobs and her sporting career, she was selected for the French national team and then spotted by a major American club. Marinette then moved to the United States with her mother, pursuing her dream of becoming the best player in the world.", + "posterPath": "/aM7o55PKT45q630Qmma1fNu99Cd.jpg", + "backdropPath": "/2RV5M80S4El2R5bmqpBJx6hpquT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2023-06-07", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.5, + "voteCount": 70, + "popularity": 8.2052 + }, + { + "id": 947507, + "title": "Just Super", + "originalTitle": "Helt super", + "overview": "11-year-old gaming enthusiast Hedvig finds her life turned upside down when she is forced to replace her father as the town’s superhero much earlier than expected. But Hedvig is no superhero, and the challenges are far greater than her coaching father anticipated.", + "posterPath": "/iZxqMQTIQ6HYOzyeiDxYYtyj4H7.jpg", + "backdropPath": "/w66mT7g0cA7lcHcdJ9SGRIONdo8.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "2022-09-30", + "releaseYear": "2022", + "originalLanguage": "no", + "voteAverage": 5.7, + "voteCount": 22, + "popularity": 8.2013 + }, + { + "id": 123599, + "title": "Gerzek Şaban", + "originalTitle": "Gerzek Şaban", + "overview": "People mistake a naive extra for his lookalike gangster and cause funny events.", + "posterPath": "/n2ccx4fqrQmqn7kx80yHL0KWztU.jpg", + "backdropPath": "/5ID4LwQbqplYCmxR1bOraLIYuRT.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1980-11-01", + "releaseYear": "1980", + "originalLanguage": "tr", + "voteAverage": 6.5, + "voteCount": 42, + "popularity": 8.1989 + }, + { + "id": 74692, + "title": "Rare Birds", + "originalTitle": "Rare Birds", + "overview": "A down-and-out restaurateur and his neighbor hatch a plan to lure bird watchers to their small Newfoundland town and increase tourism by announcing the presence of a rare duck.", + "posterPath": "/z0tTXhUzG9mwKVliv74LBe7gGdy.jpg", + "backdropPath": "/bYDydmDUdWoLWQum0gim7hrQEJR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 9648, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Mystery", + "Romance" + ], + "releaseDate": "2001-09-09", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 29, + "popularity": 8.1989 + }, + { + "id": 661804, + "title": "De Gaulle", + "originalTitle": "De Gaulle", + "overview": "Paris, June 1940. The de Gaulle couple is confronted with the military and political collapse of France. Charles de Gaulle joins London while Yvonne, his wife, finds herself with her three children on the road of the exodus.", + "posterPath": "/riglPR73CUgNdnNqZ47LWKmad7r.jpg", + "backdropPath": "/oJ59r7g65QFDfluNh0coN4tssw3.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2020-03-04", + "releaseYear": "2020", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 285, + "popularity": 8.1943 + }, + { + "id": 508883, + "title": "The Boy and the Heron", + "originalTitle": "君たちはどう生きるか", + "overview": "While the Second World War rages, the teenage Mahito, haunted by his mother's tragic death, is relocated from Tokyo to the serene rural home of his new stepmother Natsuko, a woman who bears a striking resemblance to the boy's mother. As he tries to adjust, this strange new world grows even stranger following the appearance of a persistent gray heron, who perplexes and bedevils Mahito, dubbing him the \"long-awaited one.\"", + "posterPath": "/f4oZTcfGrVTXKTWg157AwikXqmP.jpg", + "backdropPath": "/a0GM57AnJtNi7lMOCamniiyV10W.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 14, + 10751, + 18 + ], + "genres": [ + "Animation", + "Adventure", + "Fantasy", + "Family", + "Drama" + ], + "releaseDate": "2023-07-14", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 2403, + "popularity": 8.1937 + }, + { + "id": 4966, + "title": "The Last Days", + "originalTitle": "Pan Tadeusz", + "overview": "Romance brings two warring families together in this historical drama. As citizens fight for independence in 1810s Lithuania, Tadeusz, the son of a murderer, and Zosia, a young woman, come together for a wedding against a backdrop of changing politics, ancient traditions, and the uncertain future of a country.", + "posterPath": "/zUhFR2DQLpt8YWMvEMVTa55bIEL.jpg", + "backdropPath": "/df5iAHuH2brY9zXMeeRuL2AAE6O.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 36 + ], + "genres": [ + "Drama", + "Romance", + "History" + ], + "releaseDate": "1999-10-18", + "releaseYear": "1999", + "originalLanguage": "pl", + "voteAverage": 5.5, + "voteCount": 58, + "popularity": 8.1915 + }, + { + "id": 139743, + "title": "The Crossing", + "originalTitle": "La Traversée", + "overview": "Lola Arendt, 8, vanishes while on vacation on a wild Scottish island. Shattered by her disappearance, her parents, Sarah and Martin, separate. Two years later, Lola is found at the exact same spot. Martin returns to the island to bring her home. His delight at being reunited with Lola soon gives way to suspicion and fear. Why won't Lola talk? Who are these men watching them? What did Sarah know about Lola's disappearance? And who is beautiful and mysterious Norah Kross? When the weather conspires to stop them leaving, Martin and Lola embark on a journey across the island with Norah, headed for a tragic discovery...", + "posterPath": "/m2u7YHcX8DEL8utQLLXSGvfmQVi.jpg", + "backdropPath": "/TEHj31E9wjr1CSQgGUOmIMD37l.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2012-10-31", + "releaseYear": "2012", + "originalLanguage": "fr", + "voteAverage": 6.46, + "voteCount": 25, + "popularity": 8.191 + }, + { + "id": 679, + "title": "Aliens", + "originalTitle": "Aliens", + "overview": "Ripley, the sole survivor of the Nostromo's deadly encounter with the monstrous Alien, returns to Earth after drifting through space in hypersleep for 57 years. Although her story is initially met with skepticism, she agrees to accompany a team of Colonial Marines back to LV-426.", + "posterPath": "/r1x5JGpyqZU8PYhbs4UcrO1Xb6x.jpg", + "backdropPath": "/4kix6fAblJIH6eMs0Ku2loyZJXK.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1986-07-18", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 10452, + "popularity": 8.1868 + }, + { + "id": 491854, + "title": "Foxtrot Six", + "originalTitle": "Foxtrot Six", + "overview": "Escalating climate change is turning the world economy upside down. With crops dying and food price spiking, FOOD has replaced oil as the world's most valuable commodity. Among the very few lands still left fertile, Indonesia is quickly rising as the next economic superpower, when its government is suddenly and ruthlessly overtaken by a popular rogue political party. In just three days, six former Marines must work together, find their long-lost brotherhood, stop a nationwide government- sanctioned genocide, and save millions of lives, for one last shot at redemption. Or die trying.", + "posterPath": "/o7c8FKCZFIrLKrZSzgqufvNo4mr.jpg", + "backdropPath": "/5d3v2DhPsh2fO0kb2zUuFp6KovA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 878 + ], + "genres": [ + "Action", + "Drama", + "Science Fiction" + ], + "releaseDate": "2019-02-21", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 48, + "popularity": 8.1854 + }, + { + "id": 10555, + "title": "Shark Tale", + "originalTitle": "Shark Tale", + "overview": "Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile, Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast, the two form an unlikely friendship.", + "posterPath": "/r08DpyPyhXcJTfNZAICNGMzcQ8l.jpg", + "backdropPath": "/7ZmZxar3bYORcl0TPA4oceyxcaE.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 35, + 10751 + ], + "genres": [ + "Animation", + "Action", + "Comedy", + "Family" + ], + "releaseDate": "2004-09-20", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 6543, + "popularity": 8.185 + }, + { + "id": 979660, + "title": "Freaky Tales", + "originalTitle": "Freaky Tales", + "overview": "In 1987 Oakland, a mysterious force guides The Town's underdogs in four interconnected tales: teen punks defend their turf against Nazi skinheads, a rap duo battles for hip-hop immortality, a weary henchman gets a shot at redemption, and an NBA All-Star settles the score.", + "posterPath": "/lo5mfglsGeMYmAkSRXs9DATNJxk.jpg", + "backdropPath": "/elZZLzhDzjRIIkGcIK0FGmZSUaq.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2025-04-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.394, + "voteCount": 175, + "popularity": 8.1839 + }, + { + "id": 791042, + "title": "Levels", + "originalTitle": "Levels", + "overview": "After witnessing his girlfriend's murder, a man risks everything - including reality itself - to discover the truth.", + "posterPath": "/y1xm0jMIlx9Oo2a3jWNyLGm43sJ.jpg", + "backdropPath": "/kwXycPsLA6SV3KUOagn343TtMOf.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "2024-11-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 79, + "popularity": 8.1836 + }, + { + "id": 1422, + "title": "The Departed", + "originalTitle": "The Departed", + "overview": "To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.", + "posterPath": "/nT97ifVT2J1yMQmeq20Qblg61T.jpg", + "backdropPath": "/6WRrGYalXXveItfpnipYdayFkQB.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80 + ], + "genres": [ + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2006-10-04", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 8.159, + "voteCount": 15690, + "popularity": 8.1806 + }, + { + "id": 734288, + "title": "Killer Competition", + "originalTitle": "Killer Competition", + "overview": "By her friend Sarah's suggestion, high school senior Nicole manipulates test scores to be the valedictorian, but becomes the prime suspect for a series of top-ranked students' murders.", + "posterPath": "/uTjNpwtFtxNqqxf4xDwmET5WYIb.jpg", + "backdropPath": "/1kqU17MZJeF40iVVZRguwXT9luV.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10770 + ], + "genres": [ + "Thriller", + "TV Movie" + ], + "releaseDate": "2020-11-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 12, + "popularity": 8.179 + }, + { + "id": 444395, + "title": "Jupiter's Moon", + "originalTitle": "Jupiter holdja", + "overview": "A young refugee, Aryan, is shot while illegally trying to cross the Hungarian border. While tending him back to health, a doctor at a refugee camp discovers that Aryan has gained an extraordinary talent—he can levitate. Aryan is smuggled out by the doctor, who is intent on exploiting his secret.", + "posterPath": "/lhxOYoKfLjaicDckUf8pX04ilOf.jpg", + "backdropPath": "/i5St0PWbDpmKP3ghAaTYgME5Ojr.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2017-11-02", + "releaseYear": "2017", + "originalLanguage": "hu", + "voteAverage": 5.573, + "voteCount": 116, + "popularity": 8.1739 + }, + { + "id": 507250, + "title": "Dead Shot", + "originalTitle": "Dead Shot", + "overview": "In the 1970s, a member of the IRA takes over an Active Service Unit in London after his wife is accidentally shot dead in Ireland. The unit's mission is to cause chaos and destruction, while his personal aim is to hunt down his wife’s killer — an SAS captain, who is also hunting him.", + "posterPath": "/oLMzL9cpBBnkMGF8j4Z5Dbi2Z5u.jpg", + "backdropPath": "/iWbLW6Axg3UafpyTZ85zGGwX6U2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2023-08-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.371, + "voteCount": 66, + "popularity": 8.1723 + }, + { + "id": 42302, + "title": "Blood Monkey", + "originalTitle": "Blood Monkey", + "overview": "Six American grad students have arrived in Africa to study apes with a renowned professor. But after setting up camp in a jungle clearing, they soon become witness to the carnage inflicted by the strange and remote species.", + "posterPath": "/f5qGpkxA4uFAhMqGue8uPfwABe8.jpg", + "backdropPath": "/A9h4ymN86r147D2xov7xYMB4cX3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 27, + 10770 + ], + "genres": [ + "Action", + "Adventure", + "Horror", + "TV Movie" + ], + "releaseDate": "2007-09-24", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.561, + "voteCount": 139, + "popularity": 8.1716 + }, + { + "id": 423108, + "title": "The Conjuring: The Devil Made Me Do It", + "originalTitle": "The Conjuring: The Devil Made Me Do It", + "overview": "Paranormal investigators Ed and Lorraine Warren encounter what would become one of the most sensational cases from their files. The fight for the soul of a young boy takes them beyond anything they'd ever seen before, to mark the first time in U.S. history that a murder suspect would claim demonic possession as a defense.", + "posterPath": "/rQfX2xx8TUoNvyk892yKWNikJaM.jpg", + "backdropPath": "/6Z0FhoZM56YkuXhvklMTpc7rc5u.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2021-05-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 6344, + "popularity": 8.1676 + }, + { + "id": 1159939, + "title": "The Partisan", + "originalTitle": "The Partisan", + "overview": "A Polish spy working for the British during World War II is betrayed and compromised in Warsaw, leaving her no other choice but to descend into a dangerous world of treachery and deception in order to survive.", + "posterPath": "/a6AMhzCY0vlnO9KSbawvGg7c2y.jpg", + "backdropPath": "/uKYonNS8B67oYgjGIMKMCgYOnER.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 10752, + 53 + ], + "genres": [ + "History", + "War", + "Thriller" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.208, + "voteCount": 24, + "popularity": 8.1636 + }, + { + "id": 8077, + "title": "Alien³", + "originalTitle": "Alien³", + "overview": "After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.", + "posterPath": "/xh5wI0UoW7DfS1IyLy3d2CgrCEP.jpg", + "backdropPath": "/lU0zVj8KcQVkPczdGGraYGiRC72.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 27 + ], + "genres": [ + "Science Fiction", + "Action", + "Horror" + ], + "releaseDate": "1992-05-22", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.378, + "voteCount": 6126, + "popularity": 8.1624 + }, + { + "id": 542178, + "title": "The French Dispatch of the Liberty, Kansas Evening Sun", + "originalTitle": "The French Dispatch of the Liberty, Kansas Evening Sun", + "overview": "The staff of an American magazine based in France puts out its last issue, with stories featuring an artist sentenced to life imprisonment, student riots, and a kidnapping resolved by a chef.", + "posterPath": "/6JXR3KJH5roiBCjWFt09xfgxHZc.jpg", + "backdropPath": "/xS0rl1YrVt51ztzjRf6qoIPZ7TA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2021-10-21", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 2820, + "popularity": 8.162 + }, + { + "id": 12812, + "title": "Wild Side", + "originalTitle": "Wild Side", + "overview": "A transgender woman returns – with her two male lovers – to her family home in the countryside to look after her dying mother.", + "posterPath": "/aZ0ETlO7sFMW5PKBHIt4kxBhldh.jpg", + "backdropPath": "/gtH5YsWDbz7uTHvByLUQSl3ATUa.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-02-08", + "releaseYear": "2004", + "originalLanguage": "fr", + "voteAverage": 5.707, + "voteCount": 29, + "popularity": 8.1613 + }, + { + "id": 1216784, + "title": "Sunrise", + "originalTitle": "Sunrise", + "overview": "When an ex-cop named Fallon returns to the scene of a horrific crime, the residents of a rural town soon discover that this dark visitor is really a vampire who feeds on blood and fear. After he is befriended by a kind immigrant family, the instinctive killer is faced with a choice between revenge and redemption.", + "posterPath": "/4aRvg2ybz646gciX5M6qaclunC2.jpg", + "backdropPath": "/c5Ural3rnZ9VFfZ2knmVuv4I1OL.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-01-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 50, + "popularity": 8.1591 + }, + { + "id": 166428, + "title": "How to Train Your Dragon: The Hidden World", + "originalTitle": "How to Train Your Dragon: The Hidden World", + "overview": "As Hiccup fulfills his dream of creating a peaceful dragon utopia, Toothless’ discovery of an untamed, elusive mate draws the Night Fury away. When danger mounts at home and Hiccup’s reign as village chief is tested, both dragon and rider must make impossible decisions to save their kind.", + "posterPath": "/xvx4Yhf0DVH8G4LzNISpMfFBDy2.jpg", + "backdropPath": "/h3KN24PrOheHVYs9ypuOIdFBEpX.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12 + ], + "genres": [ + "Animation", + "Family", + "Adventure" + ], + "releaseDate": "2019-01-03", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 6870, + "popularity": 8.1587 + }, + { + "id": 1106289, + "title": "The Pickup", + "originalTitle": "The Pickup", + "overview": "A routine cash pickup takes a wild turn when mismatched armored truck drivers Russell and Travis are ambushed by ruthless criminals led by savvy mastermind Zoe.", + "posterPath": "/vFWvWhfAvij8UIngg2Vf6JV95Cr.jpg", + "backdropPath": "/y7tjLYcq2ZGy2DNG0ODhGX9Tm60.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2025-07-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.433, + "voteCount": 405, + "popularity": 8.157 + }, + { + "id": 1373445, + "title": "V/H/S/Halloween", + "originalTitle": "V/H/S/Halloween", + "overview": "A collection of Halloween-themed videotapes unleashes a series of twisted, blood-soaked tales, turning trick-or-treat into a struggle for survival.", + "posterPath": "/bvMKSZtN8KAdtlKoYbEi1Zhyaou.jpg", + "backdropPath": "/2JHJtATet58dzGpEwFek0kKGJFo.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.247, + "voteCount": 152, + "popularity": 8.1564 + }, + { + "id": 205, + "title": "Hotel Rwanda", + "originalTitle": "Hotel Rwanda", + "overview": "Inspired by true events, this film takes place in Rwanda in the 1990s when more than a million Tutsis were killed in a genocide that went mostly unnoticed by the rest of the world. Hotel owner Paul Rusesabagina houses over a thousand refuges in his hotel in attempt to save their lives.", + "posterPath": "/p3pHw85UMZPegfMZBA6dZ06yarm.jpg", + "backdropPath": "/jkvvXaN7FPVKGlk8oj9PL0FHNtj.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752 + ], + "genres": [ + "Drama", + "History", + "War" + ], + "releaseDate": "2004-12-22", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.715, + "voteCount": 3030, + "popularity": 8.1525 + }, + { + "id": 851976, + "title": "Small World", + "originalTitle": "Small World", + "overview": "After disappearing from a small Polish town, a mother discovers her 4-year old daughter, Ola, has been abducted by the Russian Mafia. In pursuit of her daughter, she is stopped for speeding by a police officer, Robert Goc. His intervention results in the escape of the kidnappers across the Eastern border. Feeling guilt for failing to prevent the abduction, Robert becomes engaged in an international investigation to find the missing girl.", + "posterPath": "/wcXTkwCo0fw2mPqssyZFpYZDyjB.jpg", + "backdropPath": "/mtUYpuzDHAMAdR3KVPJ48KpXh6K.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 18 + ], + "genres": [ + "Crime", + "Action", + "Drama" + ], + "releaseDate": "2021-09-10", + "releaseYear": "2021", + "originalLanguage": "pl", + "voteAverage": 7.708, + "voteCount": 106, + "popularity": 8.1521 + }, + { + "id": 13971, + "title": "Wild Child", + "originalTitle": "Wild Child", + "overview": "Sixteen-year-old Poppy has everything her unlimited credit cards can buy, and a spoiled attitude to match. After a final thoughtless prank, her exasperated father ships her off to boarding school in England. There, Poppy meets her match in a stern headmistress and a class full of girls who will not tolerate her selfishness.", + "posterPath": "/xwbFEPubG4wroLDZdmTWRGNnnWf.jpg", + "backdropPath": "/zjobTF54Z1P1hpa3w2RePqL42is.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2008-08-15", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 1883, + "popularity": 8.1517 + }, + { + "id": 585511, + "title": "Luck", + "originalTitle": "Luck", + "overview": "Suddenly finding herself in the never-before-seen Land of Luck, the unluckiest person in the world must unite with the magical creatures there to turn her luck around.", + "posterPath": "/1HOYvwGFioUFL58UVvDRG6beEDm.jpg", + "backdropPath": "/sKvQUSyqsFq8e1ts6oo3Xp3dPH2.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 14 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Fantasy" + ], + "releaseDate": "2022-08-05", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.746, + "voteCount": 1867, + "popularity": 8.1513 + }, + { + "id": 7131, + "title": "Van Helsing", + "originalTitle": "Van Helsing", + "overview": "Famed monster slayer Gabriel Van Helsing is dispatched to Transylvania to assist the last of the Valerious bloodline in defeating Count Dracula. Anna Valerious reveals that Dracula has formed an unholy alliance with Dr. Frankenstein's monster and is hell-bent on exacting a centuries-old curse on her family.", + "posterPath": "/gsFun8nATm52aGHeT8ueAel98nE.jpg", + "backdropPath": "/d72ROyJqXQtw2OupW0l15eicRAF.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 12, + 28 + ], + "genres": [ + "Horror", + "Adventure", + "Action" + ], + "releaseDate": "2004-05-03", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.384, + "voteCount": 6345, + "popularity": 8.1489 + }, + { + "id": 66143, + "title": "The Chasers", + "originalTitle": "Les Dragueurs", + "overview": "Two young men, one shy and one self-confident, spend a fast-paced night in Paris trying to pick up chicks. They confront every possible difficulty", + "posterPath": "/jn3RUct5ppZxtQXPkw6EzOkEnXM.jpg", + "backdropPath": "/f4quebOLKAaom57oHugtzr72GFi.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1959-04-29", + "releaseYear": "1959", + "originalLanguage": "fr", + "voteAverage": 5.857, + "voteCount": 14, + "popularity": 8.1453 + }, + { + "id": 18726, + "title": "Perfect Creature", + "originalTitle": "Perfect Creature", + "overview": "The vampire myth is given a stylish 1960s treatment, where a human cop partners with a vampire cop to stop a vamp bent on creating a war between the two \"separate but equal\" races.", + "posterPath": "/dimESyMjhfzmukbisslB3djbXhQ.jpg", + "backdropPath": "/2E4BhpkadFj2tp8cRiROf1s5FAY.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 18, + 14, + 27 + ], + "genres": [ + "Action", + "Science Fiction", + "Drama", + "Fantasy", + "Horror" + ], + "releaseDate": "2007-08-16", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 97, + "popularity": 8.1442 + }, + { + "id": 66043, + "title": "The Incident", + "originalTitle": "The Incident", + "overview": "Two hoodlums terrorize the passengers of a late-night New York City subway train.", + "posterPath": "/ghXkcvpKPwOaViJ1V9SK8UyZ27g.jpg", + "backdropPath": "/t78HhX62iZKSOXaTgXrAsiIwQf5.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18 + ], + "genres": [ + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "1967-11-05", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 79, + "popularity": 8.1429 + }, + { + "id": 15794, + "title": "White Heat", + "originalTitle": "White Heat", + "overview": "A psychopathic criminal with a mother complex makes a daring break from prison and then leads his old gang in a chemical plant payroll heist. After the heist, events take a crazy turn.", + "posterPath": "/v7cPOHKKZI9qChi7HDUxNIhEcLR.jpg", + "backdropPath": "/cap8458wFeRCJSKxL758dI82TRK.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1949-09-02", + "releaseYear": "1949", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 510, + "popularity": 8.1377 + }, + { + "id": 742391, + "title": "Final Set", + "originalTitle": "5ème Set", + "overview": "Thomas was once renowned as a young tennis prodigy, but never had the career he hoped for. At 37, despite his declining physical fitness and shattered knee he decides to compete in the intense qualifying rounds of the French Open at Roland-Garros for one last attempt at glory. Although his wife Eve and mother Judith advise him to give up, Thomas obsessively pushes forward. He will have to fight his own demons and will ultimately face a determined young player who reminds him of his younger self.", + "posterPath": "/qmHWh6ip3yxDCkVJ75K0mVqRrO5.jpg", + "backdropPath": "/paQ75HfeOo8Bt93QeKh7niaiHRl.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-06-16", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 179, + "popularity": 8.1375 + }, + { + "id": 1207417, + "title": "Mooned", + "originalTitle": "Mooned", + "overview": "Villainous Vector must figure out how to get off the moon and return to Earth.", + "posterPath": "/zJeGQ67XPRkr9lpUOIUYLOhPNf.jpg", + "backdropPath": "/spIOuHlH99mHuktnQHWaAAu9b5J.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2023-12-06", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.477, + "voteCount": 43, + "popularity": 8.1358 + }, + { + "id": 401121, + "title": "Shortwave", + "originalTitle": "Shortwave", + "overview": "A modern and unrelentingly tense psychological thriller based on a theory of the origins of shortwave radio frequencies, Shortwave is an unnerving reminder that some stones are best left unturned.", + "posterPath": "/eAZ0TQLmrlkB5AaAf5NiR0Gaba6.jpg", + "backdropPath": "/dZkhe0DqyRHdwhtddYUi0OJyXXU.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878 + ], + "genres": [ + "Thriller", + "Science Fiction" + ], + "releaseDate": "2016-06-04", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 4.49, + "voteCount": 52, + "popularity": 8.135 + }, + { + "id": 517380, + "title": "Over Drive", + "originalTitle": "OVER DRIVE", + "overview": "At the SCRS (Seiko Cup Rally Series), talented young drivers hope to advance to the WRC (World Rally Championship). Atsuhiro Hiyama is the chief mechanic and an engineer at Supika Racing Factory. He is well regarded by his peers. His younger brother is Naozumi. He is an extremely gifted driver for Supika Racing Factory, but he is also a troublemaker. They continually argue because of Naozumi's reckless racing style. One day, Hikaru Endo becomes his manager.", + "posterPath": "/xoF7zjiHcWUmdHSktqiI4LTpg0.jpg", + "backdropPath": "/8enbHMkXLMtyO6uO0vVzWJNN2FA.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2018-06-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 18, + "popularity": 8.1329 + }, + { + "id": 645757, + "title": "That Christmas", + "originalTitle": "That Christmas", + "overview": "It's an unforgettable Christmas for the townsfolk of Wellington-on-Sea when the worst snowstorm in history alters everyone's plans — including Santa's.", + "posterPath": "/uR3uhztTAxGGK7Co0yyxVy4Gc7H.jpg", + "backdropPath": "/1rpyQcniNIJgsE0wKLOqPk2n7b7.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 14, + 12 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Fantasy", + "Adventure" + ], + "releaseDate": "2024-11-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.168, + "voteCount": 379, + "popularity": 8.1328 + }, + { + "id": 26675, + "title": "The Outing", + "originalTitle": "The Outing", + "overview": "A group of high schoolers decide to stay in a natural museum after closing hours, but a newly acquired and mysterious lamp hiding a deadly force will turn the fun into horror.", + "posterPath": "/jPVanJPUGHjBuXScbpbopZvMKKv.jpg", + "backdropPath": "/oMl3CT8Ggo7coxhyYMULHDQbRE7.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1987-09-11", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 4.966, + "voteCount": 73, + "popularity": 8.1326 + }, + { + "id": 63961, + "title": "People in Luck", + "originalTitle": "Les Veinards", + "overview": "A light French comedy of 5 segments.", + "posterPath": "/tKpNEFiCSdDugOMD2rYfRr8yQWM.jpg", + "backdropPath": "/4dNC39YL3Wq2RTrkyz1FrEhIw7V.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1963-04-26", + "releaseYear": "1963", + "originalLanguage": "fr", + "voteAverage": 5.5, + "voteCount": 31, + "popularity": 8.1274 + }, + { + "id": 38706, + "title": "The Sect", + "originalTitle": "La setta", + "overview": "A spree of grisly murders is perpetrated in Frankfurt by a group of Satan worshippers. A lonely schoolteacher almost runs over an elderly man and takes him in, unbeknown to her the man has plans for her – plans that involve a permanent future with the Satanic cult.", + "posterPath": "/3T3mlpejXWOeJaQBFwL0xD8Ok2Q.jpg", + "backdropPath": "/dXDmQKuvIL0hh8XRYxxnR2HYZye.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1991-03-01", + "releaseYear": "1991", + "originalLanguage": "it", + "voteAverage": 6.2, + "voteCount": 125, + "popularity": 8.1254 + }, + { + "id": 1042834, + "title": "Eden", + "originalTitle": "Eden", + "overview": "A group of disillusioned outsiders abandon modern society in search of a new beginning. Settling on a remote, uninhabited island, their utopian dream quickly unravels as they discover that the greatest threat isn’t the brutal climate or deadly wildlife, but each other.", + "posterPath": "/jbFEESMVbpJU8IjZBjiWGJdEsxR.jpg", + "backdropPath": "/rz8NcfTRczvn94vpnmMx42zt6EC.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2025-04-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 424, + "popularity": 8.1199 + }, + { + "id": 947478, + "title": "The Green Dinosaur", + "originalTitle": "Diplodocus", + "overview": "When the world around him is mysteriously erased, a little green dinosaur named Diplodocus must travel through the pages of a comic book and adventure through time to bring color back to his land. Alongside a wizard and two scientists, Diplo’s plans go awry as he learns that there may be a dimension to his world that he never considered.", + "posterPath": "/9mnMMiwv20EL5weJrLZCaF8cM2u.jpg", + "backdropPath": "/wcFV4uOdSbC0cSjs7ecAyOU6t59.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 14, + 35 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Fantasy", + "Comedy" + ], + "releaseDate": "2024-10-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 11, + "popularity": 8.1134 + }, + { + "id": 90104, + "title": "Cecilia", + "originalTitle": "Cecilia", + "overview": "After repeatedly flaunting her peerless body to her servants, snobbish aristocrat Cecilia becomes the victim of rape. But the experience triggers a carnal awakening, full of socialite sex parties and woodland orgies. And before long, Cecilia finds her amorous adventures spinning out of control, particularly when her husband decides to join in on the free-love lifestyle.", + "posterPath": "/hrwva7qemUt9v9w9502aVHaiOJh.jpg", + "backdropPath": "/foLoldpYRgie4t64TTl60ijnYHr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1983-05-18", + "releaseYear": "1983", + "originalLanguage": "fr", + "voteAverage": 4.1, + "voteCount": 26, + "popularity": 8.1114 + }, + { + "id": 1233208, + "title": "Santosh", + "originalTitle": "संतोष", + "overview": "A government scheme sees newly widowed Santosh inherit her husband’s job as a police constable in the rural badlands of Northern India. When a low-caste girl is found raped and murdered, she is pulled into the investigation under the wing of charismatic feminist inspector Sharma.", + "posterPath": "/c4LdJKjE7Du2ofKsyDrmwZs9u5m.jpg", + "backdropPath": "/c6DH4DO5Gf1MRuFIA8omh2b6psn.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2024-07-17", + "releaseYear": "2024", + "originalLanguage": "hi", + "voteAverage": 7.045, + "voteCount": 66, + "popularity": 8.1103 + }, + { + "id": 1332316, + "title": "Scurry", + "originalTitle": "Scurry", + "overview": "Two strangers find themselves trapped underground when the city is attacked by a monstrous threat. Badly injured with limited resources they must navigate a treacherous, narrowing tunnel in hopes of finding an exit.", + "posterPath": "/tu7M6zojJPtgPUXnTcN9eBoWxOh.jpg", + "backdropPath": "/p1bYD09ncd4a2bKuHpEluSXGWQa.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 27 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Horror" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.159, + "voteCount": 23, + "popularity": 8.1073 + }, + { + "id": 22832, + "title": "Ninja Assassin", + "originalTitle": "Ninja Assassin", + "overview": "Ninja Assassin follows Raizo, one of the deadliest assassins in the world. Taken from the streets as a child, he was transformed into a trained killer by the Ozunu Clan, a secret society whose very existence is considered a myth. But haunted by the merciless execution of his friend by the Clan, Raizo breaks free from them and vanishes. Now he waits, preparing to exact his revenge.", + "posterPath": "/ipJ4mgqse6uoTRsDyU3TXmva1rt.jpg", + "backdropPath": "/44Yi72Ut3NchXewQzx814ViE2dy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2009-09-29", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.676, + "voteCount": 1682, + "popularity": 8.1066 + }, + { + "id": 303857, + "title": "Dragon Ball Z: Resurrection 'F'", + "originalTitle": "ドラゴンボールZ 復活の「F」", + "overview": "One peaceful day on Earth, two remnants of Frieza's army named Sorbet and Tagoma arrive searching for the Dragon Balls with the aim of reviving Frieza. They succeed, and Frieza subsequently seeks revenge on the Saiyans.", + "posterPath": "/soq3AxjALdBfdPAm8H7yuMmNL5Y.jpg", + "backdropPath": "/yWZCOzib7BipGjYJ39nrplb1Fy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "2015-04-18", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.857, + "voteCount": 1968, + "popularity": 8.1045 + }, + { + "id": 11360, + "title": "Dumbo", + "originalTitle": "Dumbo", + "overview": "Dumbo is a baby elephant born with over-sized ears and a supreme lack of confidence. But thanks to his even more diminutive buddy Timothy the Mouse, the pint-sized pachyderm learns to surmount all obstacles.", + "posterPath": "/4x9FmvdJ464Fg7A9XcbYSmxfVw3.jpg", + "backdropPath": "/eEKpOowAkVAF3sKJKqY2h4h12GV.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751 + ], + "genres": [ + "Animation", + "Family" + ], + "releaseDate": "1941-10-31", + "releaseYear": "1941", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 5167, + "popularity": 8.1041 + }, + { + "id": 1118031, + "title": "Apocalypse Z: The Beginning of the End", + "originalTitle": "Apocalipsis Z: el principio del fin", + "overview": "When a kind of rabies that transforms people into aggressive creatures spreads across the planet, Manel isolates himself at home with his cat, relying on his wits to survive; but soon they must go out in search of food, by land and by sea, dodging many dangers.", + "posterPath": "/wIGJnIFQlESkC2rLpfA8EDHqk4g.jpg", + "backdropPath": "/lTYGtgDRygku7iiFLWyiEc4wLzz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 27 + ], + "genres": [ + "Drama", + "Action", + "Horror" + ], + "releaseDate": "2024-10-04", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.724, + "voteCount": 1176, + "popularity": 8.1009 + }, + { + "id": 490862, + "title": "A Paris Education", + "originalTitle": "Mes provinciales", + "overview": "Etienne comes to Paris to study filmmaking at the Sorbonne. He meets Mathias and Jean-Noël who share his passion for films. But as they spend the year studying, they have to face friendship and love challenges as well as choosing their artistic battles.", + "posterPath": "/7W6XYAbIQeXyfnNwnmfinWOXvva.jpg", + "backdropPath": "/iKsHxjh9GDGh1InmQSjXIrMpkFT.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-04-18", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 5.842, + "voteCount": 38, + "popularity": 8.0997 + }, + { + "id": 762441, + "title": "A Quiet Place: Day One", + "originalTitle": "A Quiet Place: Day One", + "overview": "As New York City is invaded by alien creatures who hunt by sound, a woman named Sam fights to survive with her cat.", + "posterPath": "/hU42CRk14JuPEdqZG3AWmagiPAP.jpg", + "backdropPath": "/6XjMwQTvnICBz6TguiDKkDVHvgS.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 53 + ], + "genres": [ + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2024-06-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.686, + "voteCount": 3040, + "popularity": 8.0955 + }, + { + "id": 10483, + "title": "Death Race", + "originalTitle": "Death Race", + "overview": "Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.", + "posterPath": "/5A79GeOb3uChQ0l0ZDjDyODKQp3.jpg", + "backdropPath": "/bSqhsOTMnp0L6xGSHCAArXXURNy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2008-08-22", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.29, + "voteCount": 3987, + "popularity": 8.0952 + }, + { + "id": 297, + "title": "Meet Joe Black", + "originalTitle": "Meet Joe Black", + "overview": "Bill Parrish has it all - success, wealth and power. Days before his 65th birthday, he receives a visit from a mysterious stranger, Joe Black, who soon reveals himself as Death. In exchange for extra time, Bill agrees to serve as Joe's earthly guide. But will he regret his choice when Joe unexpectedly falls in love with Bill's beautiful daughter Susan?", + "posterPath": "/fDPAjvfPMomkKF7cMRmL5Anak61.jpg", + "backdropPath": "/o67MmFburfckl6iPa4DVkranLi3.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 10749 + ], + "genres": [ + "Fantasy", + "Drama", + "Romance" + ], + "releaseDate": "1998-11-12", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.353, + "voteCount": 5568, + "popularity": 8.095 + }, + { + "id": 1146972, + "title": "Mobile Suit Gundam SEED FREEDOM", + "originalTitle": "機動戦士ガンダムSEED FREEDOM", + "overview": "In C.E.75, the fighting still continues. There are independence movements, and aggression by Blue Cosmos... In order to calm the situation, a global peace monitoring agency called COMPASS is established, with Lacus as its first president. As members of COMPASS, Kira and his comrades intervene into various regional battles. Then a newly established nation called Foundation proposes a joint operation against a Blue Cosmos stronghold.", + "posterPath": "/1EBnttleJaKnWWyyEqfiSn76ZjT.jpg", + "backdropPath": "/fU3oaBud5SZadw6k1ycftYedmXJ.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 28, + 18 + ], + "genres": [ + "Animation", + "Science Fiction", + "Action", + "Drama" + ], + "releaseDate": "2024-01-26", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 72, + "popularity": 8.0947 + }, + { + "id": 420818, + "title": "The Lion King", + "originalTitle": "The Lion King", + "overview": "Simba idolizes his father, King Mufasa, and takes to heart his own royal destiny. But not everyone in the kingdom celebrates the new cub's arrival. Scar, Mufasa's brother—and former heir to the throne—has plans of his own. The battle for Pride Rock is ravaged with betrayal, tragedy and drama, ultimately resulting in Simba's exile. With help from a curious pair of newfound friends, Simba will have to figure out how to grow up and take back what is rightfully his.", + "posterPath": "/dzBtMocZuJbjLOXvrl4zGYigDzh.jpg", + "backdropPath": "/1TUg5pO1VZ4B0Q1amk3OlXvlpXV.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10751, + 16 + ], + "genres": [ + "Adventure", + "Drama", + "Family", + "Animation" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.102, + "voteCount": 10571, + "popularity": 8.0944 + }, + { + "id": 628866, + "title": "The Return", + "originalTitle": "The Return", + "overview": "After the death of his father, a brilliant college student returns to his family home where he learns that the horrors from his childhood aren't as dead and gone as he once thought.", + "posterPath": "/rK2gW2kOIC5hG3JjVB81vU9v8gC.jpg", + "backdropPath": "/3fIELwQezqPoIrfgzCf19r9TymE.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "2020-09-05", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.661, + "voteCount": 317, + "popularity": 8.0925 + }, + { + "id": 1050035, + "title": "Monster", + "originalTitle": "怪物", + "overview": "After an outburst at school involving her son, a concerned single mother demands answers, triggering a sequence of deepening suspicion and turmoil.", + "posterPath": "/kvUJUyUGOhEoiWWNH04IXoExPE2.jpg", + "backdropPath": "/dZJcOyRonN0Kb7kJR3DE3esGn16.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 18 + ], + "genres": [ + "Mystery", + "Thriller", + "Drama" + ], + "releaseDate": "2023-06-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 789, + "popularity": 8.091 + }, + { + "id": 1282138, + "title": "Justice", + "originalTitle": "Napad", + "overview": "A young detective seeks the help of a discharged police officer, giving him the chance to reclaim his old life in exchange for solving a bank raid case.", + "posterPath": "/zrzKoiLUdKuKqtYOKS2orLRoUhv.jpg", + "backdropPath": "/iZigj6HaTW2QHBixcEBxsF0JE2a.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2024-10-15", + "releaseYear": "2024", + "originalLanguage": "pl", + "voteAverage": 6.566, + "voteCount": 121, + "popularity": 8.0885 + }, + { + "id": 266061, + "title": "Xenia", + "originalTitle": "Xenia", + "overview": "Strangers in their own birthplace, 16-year-old Danny and 18-year-old Odysseus cross the entire country in search of their Greek father, after their Albanian mother passes away.", + "posterPath": "/plCXgcDPlxo07ZQDKTNWw7gfOZg.jpg", + "backdropPath": "/8Hcip8wcH3SIv8z5Dqfyo8P4aAW.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2014-06-18", + "releaseYear": "2014", + "originalLanguage": "el", + "voteAverage": 6.071, + "voteCount": 70, + "popularity": 8.0854 + }, + { + "id": 26665, + "title": "Aberdeen", + "originalTitle": "Aberdeen", + "overview": "Kaisa is a Scot, a successful London lawyer, who snorts coke and has one-night stands with strangers. Her mother calls from Aberdeen with some story begging her to fly to Norway and collect her alcoholic dad whom she hasn't seen in years.", + "posterPath": "/yjDBeAxrXXd4kt4DpTbjHsmtukk.jpg", + "backdropPath": "/177bT09OBoPZ0ZN1yqtQfbrqgq9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2000-09-08", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.347, + "voteCount": 36, + "popularity": 8.0835 + }, + { + "id": 15267, + "title": "The Beast", + "originalTitle": "The Beast", + "overview": "During the war in Afghanistan a Soviet tank crew commanded by a tyrannical officer find themselves lost and in a struggle against a band of Mujahadeen guerrillas in the mountains.", + "posterPath": "/ag0oez7oBuk8xCQ5pvb4pSj544Z.jpg", + "backdropPath": "/9Nb2AFJQZVUvcRIlCBUsyXr99sI.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18 + ], + "genres": [ + "War", + "Drama" + ], + "releaseDate": "1988-09-14", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.003, + "voteCount": 196, + "popularity": 8.0828 + }, + { + "id": 613178, + "title": "Shadow Wolves", + "originalTitle": "Shadow Wolves", + "overview": "A rogue NSA agent joins an elite group of Native American trackers who call themselves the Shadow Wolves as they engage in missions to protect justice in America and abroad.", + "posterPath": "/xPLyuKO74kbFS6PmSUKLsJHnLHa.jpg", + "backdropPath": "/8QL9d851z1RAKL6ceItS0i4dA3S.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2019-07-02", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 20, + "popularity": 8.0816 + }, + { + "id": 607, + "title": "Men in Black", + "originalTitle": "Men in Black", + "overview": "After a police chase with an otherworldly being, a New York City cop is recruited as an agent in a top-secret organization established to monitor and police alien activity on Earth: the Men in Black. Agent K and new recruit Agent J find themselves in the middle of a deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies.", + "posterPath": "/uLOmOF5IzWoyrgIF5MfUnh5pa1X.jpg", + "backdropPath": "/1GJvBE7UWU1WOVi0XREl4JQc7f8.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Science Fiction" + ], + "releaseDate": "1997-07-02", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 14411, + "popularity": 8.0815 + }, + { + "id": 12233, + "title": "Oliver & Company", + "originalTitle": "Oliver & Company", + "overview": "A young cat named Oliver is left alone in a kitten box, while all the other young cats have new owners. A big dog named Dodger shows him how to get food and later Oliver lives with him, his owner Fagin and Fagin's other dogs Tito, Rita, Einstein, and Francis. Fagin has one problem besides being broke he owes a nasty man named Sykes a lot of money. If he can't pay it back he's in big trouble. While Oliver runs into a little girl named Jenny who becomes his new owner which he is happy with and later Sykes sees Jenny as the key for him to get his money.", + "posterPath": "/nijsZeuINn0SnNb5cQVz2L4Yhps.jpg", + "backdropPath": "/k18aKqDPrbTsijtN9jRpnTHxQks.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1988-11-18", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 1652, + "popularity": 8.0805 + }, + { + "id": 5228, + "title": "Stay Hungry", + "originalTitle": "Stay Hungry", + "overview": "A dishonest businessman asks rich layabout Craig Blake to help him buy a gym, which will be demolished for a development project in Alabama. But after spending time with weightlifter Joe Santo and gym worker Mary Tate Farnsworth, Craig wants out of the deal. The property negotiations turn ugly, causing a brawl at the gym and a spectacle at a big bodybuilding meet, as Craig learns that it's not easy to turn your back on fair-weather friends.", + "posterPath": "/6WNMcRYtk74QNL53ZxVIDjpBbzF.jpg", + "backdropPath": "/bULGgi8SDhjmdzGjPKUAeDtf6ZZ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1976-04-23", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 85, + "popularity": 8.0795 + }, + { + "id": 167364, + "title": "Turf", + "originalTitle": "Turf", + "overview": "This is the story of four French friends: the Greek (an osteopath), Fifi (who lives with his mother), Fortuné (a West Indian) and Freddy (a gambler). They meet up regularly at a Parisian bookmakers’, their favourite haunt. Tired of frittering away the little spare cash they have, they agree to give up gambling. But no sooner have they taken this pledge than Fate intervenes, in the guise of the turf king, Monsieur Paul. The latter persuades the four friends to buy a champion racehorse, not knowing that it is in fact an old nag…", + "posterPath": "/3Tk5DANe3SoL0hH5ngHvMf1rOD0.jpg", + "backdropPath": "/mSM2kv0LRwwAXONVGZQxIy1Yi1u.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-02-13", + "releaseYear": "2013", + "originalLanguage": "fr", + "voteAverage": 4.7, + "voteCount": 92, + "popularity": 8.0756 + }, + { + "id": 7508, + "title": "Like Stars on Earth", + "originalTitle": "तारे ज़मीन पर", + "overview": "Ishaan Awasthi is an eight-year-old whose world is filled with wonders that no one else seems to appreciate. Colours, fish, dogs, and kites don't seem important to the adults, who are much more interested in things like homework, marks, and neatness. Ishaan cannot seem to get anything right in class; he is then sent to boarding school, where his life changes forever.", + "posterPath": "/puHRt6Raovm5ujGCdwLWvRv4NHU.jpg", + "backdropPath": "/bPwdy3zaNnMdZ22u0WCcYu0xxgt.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-12-21", + "releaseYear": "2007", + "originalLanguage": "hi", + "voteAverage": 7.977, + "voteCount": 1260, + "popularity": 8.0734 + }, + { + "id": 9503, + "title": "Pope Joan", + "originalTitle": "Die Päpstin", + "overview": "A 9th century woman of English extraction born in the German city of Ingelheim disguises herself as a man and rises through the Vatican ranks.", + "posterPath": "/cYeodvtw9wlo5DWUVwoTiqjvfLJ.jpg", + "backdropPath": "/mKOp7sXHbwUpOdd9WCClcg0wp3.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10749 + ], + "genres": [ + "Drama", + "History", + "Romance" + ], + "releaseDate": "2009-10-22", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 357, + "popularity": 8.0716 + }, + { + "id": 619264, + "title": "The Platform", + "originalTitle": "El hoyo", + "overview": "A slab of food descends down a vertical facility. The residents above eat heartily, leaving those below starving and desperate. A rebellion is imminent.", + "posterPath": "/iXvQnzy6JCAx1PiQEKXuTY04ZHl.jpg", + "backdropPath": "/3tkDMNfM2YuIAJlvGO6rfIzAnfG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 53 + ], + "genres": [ + "Drama", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2019-11-08", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 6.969, + "voteCount": 7588, + "popularity": 8.071 + }, + { + "id": 5879, + "title": "In the Realm of the Senses", + "originalTitle": "愛のコリーダ", + "overview": "A passionate telling of the story of Sada Abe, a woman whose affair with her master led to an obsessive and ultimately destructive sexual relationship.", + "posterPath": "/AiFQbgjgSXWPfbi9iIYT39iXWMW.jpg", + "backdropPath": "/g3L6tOvJIRWSkxnhmoEW1SKEvW3.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1976-09-15", + "releaseYear": "1976", + "originalLanguage": "ja", + "voteAverage": 6.584, + "voteCount": 689, + "popularity": 8.07 + }, + { + "id": 1075536, + "title": "Suki", + "originalTitle": "Suki", + "overview": "A lady stripper and a gigolo promised each other that their work can't break them apart. But when lust and temptation come into the picture, they begin to question their vow.", + "posterPath": "/7bfDD4mtWYrExQuWDfUiY7JZ3hk.jpg", + "backdropPath": "/1lat0QYutfuLxvLg7prCWHSxYZt.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-02-24", + "releaseYear": "2023", + "originalLanguage": "tl", + "voteAverage": 4.583, + "voteCount": 12, + "popularity": 8.0685 + }, + { + "id": 18, + "title": "The Fifth Element", + "originalTitle": "Le Cinquième Élément", + "overview": "In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.", + "posterPath": "/fPtlCO1yQtnoLHOwKtWz7db6RGU.jpg", + "backdropPath": "/dwN0kPGrLbFRxyL3F3J3t4ShQx.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "1997-05-02", + "releaseYear": "1997", + "originalLanguage": "fr", + "voteAverage": 7.562, + "voteCount": 11302, + "popularity": 8.0644 + }, + { + "id": 4232, + "title": "Scream", + "originalTitle": "Scream", + "overview": "A year after the murder of her mother, a teenage girl is terrorized by a masked killer who targets her and her friends by using scary movies as part of a deadly game.", + "posterPath": "/lr9ZIrmuwVmZhpZuTCW8D9g0ZJe.jpg", + "backdropPath": "/4PPC7fKClu0u7NTbo5xgV4vb5VD.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 27, + 9648 + ], + "genres": [ + "Crime", + "Horror", + "Mystery" + ], + "releaseDate": "1996-12-20", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.425, + "voteCount": 7554, + "popularity": 8.0627 + }, + { + "id": 1272166, + "title": "Ballad of a Small Player", + "originalTitle": "Ballad of a Small Player", + "overview": "Amid the glittering casinos of Macau, a gambler running from his past — and his debts — becomes fascinated by an enigmatic woman at the baccarat table.", + "posterPath": "/yiXpXNiBWENaSJmdKfoT5DU0bL4.jpg", + "backdropPath": "/cc48kfehVAkgG73BsPcFLMoxa8h.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-10-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 210, + "popularity": 8.0597 + }, + { + "id": 329865, + "title": "Arrival", + "originalTitle": "Arrival", + "overview": "Taking place after alien crafts land around the world, an expert linguist is recruited by the military to determine whether they come in peace or are a threat.", + "posterPath": "/pEzNVQfdzYDzVK0XqxERIw2x2se.jpg", + "backdropPath": "/hNCqkXbWd40eftqSdjq8TmV7Mqr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 9648 + ], + "genres": [ + "Drama", + "Science Fiction", + "Mystery" + ], + "releaseDate": "2016-11-10", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.623, + "voteCount": 18760, + "popularity": 8.0585 + }, + { + "id": 428446, + "title": "Walking Out", + "originalTitle": "Walking Out", + "overview": "A city teen travels to Montana to go hunting with his estranged father, only for the strained trip to become a battle for survival when they encounter a grizzly bear.", + "posterPath": "/wK3l4ZfcRXFph6uop7yr7scM2SP.jpg", + "backdropPath": "/8T6LF94Rv71gAM00Y0m5L2ikZEx.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 53, + 9648 + ], + "genres": [ + "Adventure", + "Drama", + "Thriller", + "Mystery" + ], + "releaseDate": "2017-01-21", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 153, + "popularity": 8.058 + }, + { + "id": 86645, + "title": "The Demons", + "originalTitle": "Les démons", + "overview": "A group of nuns become possessed by demons and are then tortured in a dungeon of horrors during the Inquisition.", + "posterPath": "/xDnfPwBPjuwUddvnZLxaaKPx9zj.jpg", + "backdropPath": "/bWuxeAp7S9R7euZx03CTNgoJA3s.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1973-02-05", + "releaseYear": "1973", + "originalLanguage": "fr", + "voteAverage": 5.1, + "voteCount": 32, + "popularity": 8.0565 + }, + { + "id": 1138749, + "title": "The Island", + "originalTitle": "The Island", + "overview": "When his brother is killed, LAPD officer Mark leaves the city to return to the island he grew up on. Seeking answers and ultimately vengeance, he soon finds himself in a bloody battle with the corrupt tycoon who's taken over the island paradise.", + "posterPath": "/ajb1rMiorchfRemYHZCkbV9DBg6.jpg", + "backdropPath": "/7Xcxujw8dN5a9rCMOWKEiHSvW01.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2023-07-21", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.111, + "voteCount": 99, + "popularity": 8.0503 + }, + { + "id": 373571, + "title": "Godzilla: King of the Monsters", + "originalTitle": "Godzilla: King of the Monsters", + "overview": "Follows the heroic efforts of the crypto-zoological agency Monarch as its members face off against a battery of god-sized monsters, including the mighty Godzilla, who collides with Mothra, Rodan, and his ultimate nemesis, the three-headed King Ghidorah. When these ancient super-species, thought to be mere myths, rise again, they all vie for supremacy, leaving humanity's very existence hanging in the balance.", + "posterPath": "/mzOHg7Q5q9yUmY0b9Esu8Qe6Nnm.jpg", + "backdropPath": "/ndQbXYTC5dY6zhMdT9eg0D56NWD.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "2019-05-29", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 6485, + "popularity": 8.0493 + }, + { + "id": 16270, + "title": "Career Opportunities", + "originalTitle": "Career Opportunities", + "overview": "Josie, the daughter of the town's wealthiest businessman, faces problems at home and wishes to leave town but is disoriented. Her decision is finalized after she falls asleep in a Target dressing room. She awakens to find herself locked in the store overnight with the janitor, Jim, the town \"no hoper\" and liar.", + "posterPath": "/opfsY8aUZ1GjqiZFvYzdvETzl1l.jpg", + "backdropPath": "/y9UU2JNjoFPI7ZvCuiWzpN9GJHZ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "1991-03-29", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 717, + "popularity": 8.0483 + }, + { + "id": 540709, + "title": "Ema", + "originalTitle": "Ema", + "overview": "Ema is a magnetic and impulsive dancer in a reggaeton troupe. Her toxic marriage to choreographer Gastón is beyond repair, following a decision to give up on their adopted child Polo. She sets out on a mission to get him back, not caring who she’ll need to fight, seduce or destroy to make it happen.", + "posterPath": "/9p78EwUeo7NkFFCIBzU8jwxC867.jpg", + "backdropPath": "/ks7PNbmkcxBoSLxF4bBbqiEofHP.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-09-26", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 6.7, + "voteCount": 238, + "popularity": 8.0478 + }, + { + "id": 926606, + "title": "The Home", + "originalTitle": "The Home", + "overview": "A troubled man starts working at a retirement home and realizes its residents and caretakers harbor sinister secrets. As he investigates the building and its forbidden fourth floor, he starts to uncover connections to his own past and upbringing as a foster child.", + "posterPath": "/r0NUt1M62StNgvSLmLsmJADbHpg.jpg", + "backdropPath": "/Lu57GTE24Ja5O61jieY2aIBk8d.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 27, + 53 + ], + "genres": [ + "Mystery", + "Horror", + "Thriller" + ], + "releaseDate": "2025-07-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.479, + "voteCount": 117, + "popularity": 8.0471 + }, + { + "id": 960469, + "title": "Natty Knocks", + "originalTitle": "Natty Knocks", + "overview": "On Halloween Eve, Britt and the kids she is babysitting have to survive the horror of serial killer Abner Honeywell, who is himself the traumatized son of B-movie horror legend \"Natty Knocks\".", + "posterPath": "/gPqcRBBb4PpE0WyHwQZdlTjfLXg.jpg", + "backdropPath": "/uNMwASFJXcoJ0QYcEVMxnTcTYCZ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2023-07-21", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 32, + "popularity": 8.0414 + }, + { + "id": 108083, + "title": "Bizarre", + "originalTitle": "Profumo", + "overview": "A wife escapes her pressure-filled marriage only to have her husband haunt her literally and figuratively.", + "posterPath": "/szzMi5duQHn38hC8ow0QrIXOQ7A.jpg", + "backdropPath": "/xNE1g8F5plrUGtFF2bOfMPMDcsl.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1987-01-16", + "releaseYear": "1987", + "originalLanguage": "it", + "voteAverage": 4.8, + "voteCount": 28, + "popularity": 8.0391 + }, + { + "id": 417587, + "title": "Under Pressure", + "originalTitle": "Sob Pressão", + "overview": "Over a tense day in the emergency hospital, we follow the surgeon's work Evandro and staff in three cases that require risk surgery: a drug dealer, a military police officer and a rich family child, all injured during a shootout in a slum next to the hospital.", + "posterPath": "/lSibFrGTDaXy96lDZnUdtEDMYaw.jpg", + "backdropPath": "/jndinzQfLsWWBCOLUuzukNMl6SA.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-11-17", + "releaseYear": "2016", + "originalLanguage": "pt", + "voteAverage": 7.5, + "voteCount": 32, + "popularity": 8.0377 + }, + { + "id": 287426, + "title": "Shelter", + "originalTitle": "Shelter", + "overview": "Hannah and Tahir fall in love while homeless on the streets of New York. Shelter explores how they got there, and as we learn about their pasts we realize they need each other to build a future.", + "posterPath": "/1EtMTtKDLp2MGhddZuLgeGZVbRk.jpg", + "backdropPath": "/pHSTy4aFEcBnslMACAawkr6oum5.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-09-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 108, + "popularity": 8.0369 + }, + { + "id": 1262983, + "title": "MadS", + "originalTitle": "MadS", + "overview": "A teenager stops off to see his dealer to test a new drug before heading off for a night of partying. On the way home, he picks up an injured woman, and the night takes a surreal turn.", + "posterPath": "/3xgcQHcYxGOrJNbwgXRGPPHCXVu.jpg", + "backdropPath": "/8lL13GCrlOii2KvMaSom2rC16Zr.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-10-25", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.7, + "voteCount": 174, + "popularity": 8.0363 + }, + { + "id": 1089, + "title": "Point Break", + "originalTitle": "Point Break", + "overview": "In Los Angeles, a gang of bank robbers who call themselves The Ex-Presidents commit their crimes while wearing masks of Reagan, Carter, Nixon and Johnson. Believing that the members of the gang could be surfers, the F.B.I. sends young agent Johnny Utah to the beach undercover to mix with the surfers and gather information.", + "posterPath": "/tlbERIghrQ4oofqlbF7H0K0EYnx.jpg", + "backdropPath": "/ihYOaSoQ4IPNhnxwwMPZAYprs3o.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "1991-07-12", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.16, + "voteCount": 3811, + "popularity": 8.0347 + }, + { + "id": 295237, + "title": "The Assault", + "originalTitle": "The Assault", + "overview": "After a cheerleader is sexually assaulted by the high school football team, she must overcome her shame and use the evidence gathered from the subsequent social media firestorm to piece together the night that she can't remember in her fight for justice. Based on the true story of the Steubenville, Ohio rape case.", + "posterPath": "/ztyBW1fC7oRrxNdrZsZztcGkvs4.jpg", + "backdropPath": "/eq0N54GnErEcTJtTWu7UOzqfKPp.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 80, + 18, + 10770 + ], + "genres": [ + "Mystery", + "Crime", + "Drama", + "TV Movie" + ], + "releaseDate": "2014-09-20", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 78, + "popularity": 8.0319 + }, + { + "id": 829560, + "title": "The Next 365 Days", + "originalTitle": "Kolejne 365 dni", + "overview": "Laura and Massimo's relationship hangs in the balance as they try to overcome trust issues while a tenacious Nacho works to push them apart.", + "posterPath": "/8AWm7iMcsCI3DdGz4YEJtiMDp8Z.jpg", + "backdropPath": "/6cpRpfD3isvluFwXDGSiDVyibPJ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2022-08-18", + "releaseYear": "2022", + "originalLanguage": "pl", + "voteAverage": 6.396, + "voteCount": 1270, + "popularity": 8.0309 + }, + { + "id": 170885, + "title": "Annihilator", + "originalTitle": "Annihilator", + "overview": "Humanoid killer robots stalk a newspaperman, who has knowledge of their existence. One of the robots is made to look like his girl friend.", + "posterPath": "/iwWoknF64tJ4PGcY4US1yGPqNpv.jpg", + "backdropPath": "/oCg4zDQjZndJ9mRvcU7thq0u5uG.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27, + 10770 + ], + "genres": [ + "Science Fiction", + "Horror", + "TV Movie" + ], + "releaseDate": "1986-04-07", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 11, + "popularity": 8.0301 + }, + { + "id": 744733, + "title": "The Emigrants", + "originalTitle": "Utvandrarna", + "overview": "Sweden, 1849. A poverty-stricken family decides to move to America in the hope of finding a better and more prosperous life. Although they know the journey will be dangerous and the pressure of facing a new life in a strange and wild land is great, they are determined to succeed.", + "posterPath": "/lMEg2ed0KZAA9kB2vDnfkU7Uduq.jpg", + "backdropPath": "/nbN4mD6AnUgUUcbCKymH0gMwzBG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2021-12-25", + "releaseYear": "2021", + "originalLanguage": "sv", + "voteAverage": 5.7, + "voteCount": 28, + "popularity": 8.0291 + }, + { + "id": 376228, + "title": "Audrie & Daisy", + "originalTitle": "Audrie & Daisy", + "overview": "A documentary film about three cases of rape, that includes the stories of two American high school students, Audrie Pott and Daisy Coleman. At the time of the sexual assaults, Pott was 15 and Coleman was 14 years old. After the assaults, the victims and their families were subjected to abuse and cyberbullying.", + "posterPath": "/4AsrmTmKMVs8PmBnu6jNpMekoBj.jpg", + "backdropPath": "/14sGKb6Sey0SmFpjLUgt64Lv7VZ.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2016-09-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.142, + "voteCount": 194, + "popularity": 8.0288 + }, + { + "id": 84185, + "title": "Chasing Ice", + "originalTitle": "Chasing Ice", + "overview": "When National Geographic photographer James Balog asked, “How can one take a picture of climate change?” his attention was immediately drawn to ice. Soon he was asked to do a cover story on glaciers that became the most popular and well-read piece in the magazine during the last five years. But for Balog, that story marked the beginning of a much larger and longer-term project that would reach epic proportions.", + "posterPath": "/q4T6Wqh7ZXzf30odR2Yo2dLWdZ.jpg", + "backdropPath": "/pTzzoMS3OQ2iM1RImLITf9w0ov7.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2012-10-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.482, + "voteCount": 164, + "popularity": 8.0275 + }, + { + "id": 940721, + "title": "Godzilla Minus One", + "originalTitle": "ゴジラ-1.0", + "overview": "In postwar Japan, Godzilla brings new devastation to an already scorched landscape. With no military intervention or government help in sight, the survivors must join together in the face of despair and fight back against an unrelenting horror.", + "posterPath": "/2E2WTX0TJEflAged6kzErwqX1kt.jpg", + "backdropPath": "/1FMnXfgPFJFWhPrCZBgXwHbwmye.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27, + 28 + ], + "genres": [ + "Science Fiction", + "Horror", + "Action" + ], + "releaseDate": "2023-11-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 2895, + "popularity": 8.0266 + }, + { + "id": 49069, + "title": "The Apple", + "originalTitle": "The Apple", + "overview": "In a pseudo-futuristic 1994, a square couple enter the corrupt world of the music industry, and subsequently a maze of drugs, sex, and temptation.", + "posterPath": "/yQxFFhPzH3hzzmlEeCU0aKyOC4T.jpg", + "backdropPath": "/3L05HQS4GiR8PXCq0JjqXShoLRF.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 878, + 10402 + ], + "genres": [ + "Fantasy", + "Comedy", + "Science Fiction", + "Music" + ], + "releaseDate": "1980-11-21", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 4.39, + "voteCount": 59, + "popularity": 8.0262 + }, + { + "id": 540468, + "title": "Geetha Govindam", + "originalTitle": "గీత గోవిందం", + "overview": "Vijay Govind, a young college lecturer who dreams of marriage falls for Geetha, a level-headed woman who's wary of strangers and isn't easy to convince. While things seem to go smoothly, Vijay makes a terrible mistake which not only derails any hope for his love story, but also potential repercussions with his family.", + "posterPath": "/sTreb0ajewXqeIqAyZ0IWtafoB5.jpg", + "backdropPath": "/2pJ9xW1mA7zRfrg9On9e8AekrQM.jpg", + "mediaType": "movie", + "genreIds": [ + 10749 + ], + "genres": [ + "Romance" + ], + "releaseDate": "2018-08-15", + "releaseYear": "2018", + "originalLanguage": "te", + "voteAverage": 6.865, + "voteCount": 74, + "popularity": 8.0259 + }, + { + "id": 38700, + "title": "Bad Boys for Life", + "originalTitle": "Bad Boys for Life", + "overview": "Marcus and Mike are forced to confront new threats, career changes, and midlife crises as they join the newly created elite team AMMO of the Miami police department to take down the ruthless Armando Armas, the vicious leader of a Miami drug cartel.", + "posterPath": "/y95lQLnuNKdPAzw9F9Ab8kJ80c3.jpg", + "backdropPath": "/eAIHqfS3kXm7kZl4j7ZBfdegyEz.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 80 + ], + "genres": [ + "Thriller", + "Action", + "Crime" + ], + "releaseDate": "2020-01-15", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.127, + "voteCount": 8553, + "popularity": 8.0244 + }, + { + "id": 388, + "title": "Inside Man", + "originalTitle": "Inside Man", + "overview": "When an armed, masked gang enter a Manhattan bank, lock the doors and take hostages, the detective assigned to effect their release enters negotiations preoccupied with corruption charges he is facing.", + "posterPath": "/ffMUgkDZICNiyaws1Jkv8qG8uFW.jpg", + "backdropPath": "/2QxNeZ9ejpkAE7Q1DMWzJDDhrVP.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2006-03-17", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.398, + "voteCount": 6124, + "popularity": 8.0244 + }, + { + "id": 901385, + "title": "Significant Other", + "originalTitle": "Significant Other", + "overview": "Ruth and Harry decide to take a romantic backpacking trip through the Pacific Northwest, but amongst the beautiful scenery, Ruth makes an unexpected discovery that sets her off on a strange, frightening new path. The couple aren't alone in the woods, and they might not be the same when they come out...if they come out.", + "posterPath": "/liGvBdUsyOfiTJjNCD55JJfISzb.jpg", + "backdropPath": "/dR78i8aMsa8wIuBiHGfU8K5gNL7.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 27, + 9648, + 18 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Horror", + "Mystery", + "Drama" + ], + "releaseDate": "2022-10-06", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.041, + "voteCount": 366, + "popularity": 8.0231 + }, + { + "id": 579, + "title": "Jaws 2", + "originalTitle": "Jaws 2", + "overview": "Police chief Brody must protect the citizens of Amity after a second monstrous shark begins terrorizing the waters.", + "posterPath": "/cN3ijEwsn4kBaRuHfcJpAQJbeWe.jpg", + "backdropPath": "/q46nyik6GeDkUV6wQGiZQ97UuP6.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "1978-06-16", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 6.027, + "voteCount": 2047, + "popularity": 8.0215 + }, + { + "id": 969492, + "title": "Land of Bad", + "originalTitle": "Land of Bad", + "overview": "When a Delta Force special ops mission goes terribly wrong, Air Force drone pilot Reaper has 48 hours to remedy what has devolved into a wild rescue operation. With no weapons and no communication other than the drone above, the ground mission suddenly becomes a full-scale battle when the team is discovered by the enemy.", + "posterPath": "/h3jYanWMEJq6JJsCopy1h7cT2Hs.jpg", + "backdropPath": "/iKqItVltY6r0eJeIRdIZV8IrBpz.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752, + 53 + ], + "genres": [ + "Action", + "War", + "Thriller" + ], + "releaseDate": "2024-02-09", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.276, + "voteCount": 1372, + "popularity": 8.0212 + }, + { + "id": 19256, + "title": "Mobile Suit Zeta Gundam - A New Translation I: Heir to the Stars", + "originalTitle": "機動戦士Ζガンダム A New Translation 星を継ぐ者", + "overview": "Universal Century 0087. The Titans, a bellicose faction among the Earth Federation Forces, grows powerful and tyrannical, even using poison gas to suppress a civil unrest. Dissident soldiers from the same military stand against them, forming a resistance group called the AEUG. Kamille Bidan, a civilian student, gets entangled in this conflict when he impulsively steals the Gundam Mark II and joins the AEUG, running away from his home space colony. Then he begins to fight along with Char Aznable, a former Zeon ace pilot who has infiltrated the Earth Sphere for reasons of his own. This is the first part of the feature trilogy derived from the anime series Mobile Suit Zeta Gundam, and features enhanced animation and theme songs by GACKT.", + "posterPath": "/eAvcw6isE3GcV7tiGUqdAWTtmy.jpg", + "backdropPath": "/bKrSGdpBDDL3rlvmwOsoNQwYeoU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878, + 10752 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction", + "War" + ], + "releaseDate": "2005-05-28", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 22, + "popularity": 8.0206 + }, + { + "id": 395817, + "title": "The Thicket", + "originalTitle": "The Thicket", + "overview": "An innocent young man, Jack, goes on an epic quest to rescue his sister Lula after she has been kidnapped by the violent killer Cut Throat Bill and her gang. To save her, Jack enlists the help of a crafty bounty hunter named Reginald Jones, a grave-digging alcoholic son of an ex-slave, and a street-smart prostitute. The gang tracks Cut Throat Bill into the deadly no-man’s land known as The Big Thicket — a place where blood and chaos reign.", + "posterPath": "/jsvk8e0HgITFX0gbDEjj6hOytsP.jpg", + "backdropPath": "/3m7252MFY0YkOrr7SmnPEhuSha6.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 80, + 53 + ], + "genres": [ + "Western", + "Crime", + "Thriller" + ], + "releaseDate": "2024-09-05", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.481, + "voteCount": 132, + "popularity": 8.0191 + }, + { + "id": 1131759, + "title": "Omniscient Reader: The Prophecy", + "originalTitle": "전지적 독자 시점", + "overview": "Kim Dok-ja, an ordinary man in his 20s, is the only reader of an obscure web novel titled \"Three Ways to Survive the Apocalypse\". After having read the last chapter, the novel suddenly becomes reality, and its omnipotent hero Yu Jung-hyeok appears before Kim. As the only person who knows how to survive in this world, Kim and his companions strive to save the world by writing his own, new ending.", + "posterPath": "/3R3dXO2nm8JyR5NG7SEfii7RzlV.jpg", + "backdropPath": "/fP6L6V42980QmuoyyGXCmWphwpT.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2025-07-23", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 6.767, + "voteCount": 30, + "popularity": 8.0181 + }, + { + "id": 4148, + "title": "Revolutionary Road", + "originalTitle": "Revolutionary Road", + "overview": "A young couple living in a Connecticut suburb during the mid-1950s struggle to come to terms with their personal problems while trying to raise their two children. Based on a novel by Richard Yates.", + "posterPath": "/cvkD3yiVXLg3as8EAG3LaTycONQ.jpg", + "backdropPath": "/ra9aXj8PpUbUHwwTRSl5zsL6WHM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2008-12-19", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.981, + "voteCount": 4002, + "popularity": 8.0178 + }, + { + "id": 609681, + "title": "The Marvels", + "originalTitle": "The Marvels", + "overview": "When her duties send her to an anomalous wormhole linked to a Kree revolutionary, Carol's powers become entangled with that of Jersey City super-fan Kamala Khan, aka Ms. Marvel, and Carol's estranged niece, now S.A.B.E.R. astronaut Captain Monica Rambeau. Together, this unlikely trio must team up and learn to work in concert to save the universe.", + "posterPath": "/9GBhzXMFjgcZ3FdR9w3bUMMTps5.jpg", + "backdropPath": "/criPrxkTggCra1jch49jsiSeXo1.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2023-11-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 3165, + "popularity": 8.0174 + }, + { + "id": 504949, + "title": "The King", + "originalTitle": "The King", + "overview": "England, 15th century. Hal, a capricious prince who lives among the populace far from court, is forced by circumstances to reluctantly accept the throne and become Henry V.", + "posterPath": "/8u0QBGUbZcBW59VEAdmeFl9g98N.jpg", + "backdropPath": "/pmwTANjISHvxOmO3iz5kRGAArso.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752 + ], + "genres": [ + "Drama", + "History", + "War" + ], + "releaseDate": "2019-10-11", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.156, + "voteCount": 3424, + "popularity": 8.0156 + }, + { + "id": 446894, + "title": "Smallfoot", + "originalTitle": "Smallfoot", + "overview": "A bright young yeti finds something he thought didn't exist—a human. News of this “smallfoot” throws the simple yeti community into an uproar over what else might be out there in the big world beyond their snowy village.", + "posterPath": "/zfaiO7QgpcvR8XDOMokWLRfKeTE.jpg", + "backdropPath": "/zIVHIKljz7pFB8Es9U2n8xaUvDm.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2018-09-20", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.82, + "voteCount": 1588, + "popularity": 8.0136 + }, + { + "id": 3061, + "title": "The Crowd", + "originalTitle": "The Crowd", + "overview": "John, an ambitious but undisciplined New York City office worker, meets and marries Mary. They start a family, struggle to cope with marital stress, financial setbacks, and tragedy, all while lost amid the anonymous, pitiless throngs of the big city.", + "posterPath": "/jftzHLCZLE2DOLQWY0mENOIPjxc.jpg", + "backdropPath": "/gU6ZJQbMLOKPURvkmh3vNOuW5Ew.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1928-03-03", + "releaseYear": "1928", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 187, + "popularity": 8.012 + }, + { + "id": 1230393, + "title": "Monsters 103 Mercies Dragon Damnation", + "originalTitle": "MONSTERS 一百三情飛龍侍極", + "overview": "A samurai's path leads him to a young waitress whose hometown was destroyed by a dragon. He doesn't want any trouble — but it finds them anyway.", + "posterPath": "/yG8QKnaiz7JoIMh3oxdm0JJN6IG.jpg", + "backdropPath": "/upDUDOlpGBPGwV6A4vs0y2Whzg0.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14, + 12 + ], + "genres": [ + "Animation", + "Action", + "Fantasy", + "Adventure" + ], + "releaseDate": "2024-01-21", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.159, + "voteCount": 132, + "popularity": 8.0111 + }, + { + "id": 16577, + "title": "Astro Boy", + "originalTitle": "Astro Boy", + "overview": "Set in the futuristic Metro City, Astro Boy (Atom) is a young robot with incredible powers created by a brilliant scientist in the image of the son he had lost. Unable to fulfill his creator's expectations, Astro embarks on a journey in search of acceptance, experiencing betrayal and a netherworld of robot gladiators, before returning to save Metro City and reconcile with the father who rejected him.", + "posterPath": "/jcM6F9Mivs4WZYE3N8MkLYx2ywP.jpg", + "backdropPath": "/t39jaNSYMVNecNPQSVVlW6I4opm.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 10751, + 878 + ], + "genres": [ + "Animation", + "Action", + "Family", + "Science Fiction" + ], + "releaseDate": "2009-10-15", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.325, + "voteCount": 1597, + "popularity": 8.0105 + }, + { + "id": 168742, + "title": "The Rocket", + "originalTitle": "The Rocket", + "overview": "Laos. In a land ravaged by war and exploitation, a boy whose family believe he is cursed must redeem himself by taking part in a dangerous rocket competition.", + "posterPath": "/nFh4GRrEnrc3L29SueSP4DqFMqT.jpg", + "backdropPath": "/mcZO2pc3MKS6ijmt48MczMbWOks.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-02-10", + "releaseYear": "2013", + "originalLanguage": "lo", + "voteAverage": 6.6, + "voteCount": 64, + "popularity": 8.003 + }, + { + "id": 364733, + "title": "Blind", + "originalTitle": "Blind", + "overview": "A novelist is blinded in a car crash that killed his wife and several years later rediscovers his passion for life and writing when he embarks on an affair with the neglected wife of an indicted businessman.", + "posterPath": "/cXyObe5aB63ueOndEXxXabgAvIi.jpg", + "backdropPath": "/tMtXSrEeh2rueJQVWMom78ZBhG0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2017-07-14", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 152, + "popularity": 8.0023 + }, + { + "id": 469722, + "title": "Trauma", + "originalTitle": "Trauma", + "overview": "Four friends visit a rural locality of Chile, are brutally attacked by a man and his son. After not finding help in the town, they decide to confront these men with the help of a pair of policemen. But in this way, they will discover that their attackers have in their blood the direct legacy of the darkest period of Chilean history and will have to face the most brutal enemy.", + "posterPath": "/wbtU44cXUa57LV4rCIVuFBSBRql.jpg", + "backdropPath": "/3qdHH6aE5rt0XW561tGa3EYffTh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2017-12-25", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 5.481, + "voteCount": 131, + "popularity": 8.0013 + }, + { + "id": 537976, + "title": "American Dharma", + "originalTitle": "American Dharma", + "overview": "A portrait of controversial Breitbart honcho and Donald Trump advisor, Stephen K. Bannon.", + "posterPath": "/7l2OyHmbQqwVF7X7XgS1q3upaP2.jpg", + "backdropPath": "/ejTb05o1zgYm6yWSX5KuPUr65cW.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 13, + "popularity": 7.9984 + }, + { + "id": 592, + "title": "The Conversation", + "originalTitle": "The Conversation", + "overview": "A paranoid, secretive surveillance expert has a crisis of conscience when he suspects that the couple he is spying on will be murdered.", + "posterPath": "/dHqVBwcv1SGymOpUueRoKzcmdes.jpg", + "backdropPath": "/ioo6AH0qmqdfVCejFoMRi9gPePr.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1974-04-07", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 7.511, + "voteCount": 1935, + "popularity": 7.998 + }, + { + "id": 11224, + "title": "Cinderella", + "originalTitle": "Cinderella", + "overview": "Cinderella has faith her dreams of a better life will come true. With help from her loyal mice friends and a wave of her Fairy Godmother's wand, Cinderella's rags are magically turned into a glorious gown and off she goes to the Royal Ball. But when the clock strikes midnight, the spell is broken, leaving a single glass slipper... the only key to the ultimate fairy-tale ending!", + "posterPath": "/4nssBcQUBadCTBjrAkX46mVEKts.jpg", + "backdropPath": "/puJKgNcWaGgMk5VHanSSomUTpmw.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 16, + 10749 + ], + "genres": [ + "Family", + "Fantasy", + "Animation", + "Romance" + ], + "releaseDate": "1950-02-22", + "releaseYear": "1950", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 6971, + "popularity": 7.9973 + }, + { + "id": 859, + "title": "Dangerous Liaisons", + "originalTitle": "Dangerous Liaisons", + "overview": "In 18th century France, Marquise de Merteuil asks her ex-lover Vicomte de Valmont to seduce the future wife of another ex-lover of hers in return for one last night with her. Yet things don’t go as planned.", + "posterPath": "/eNvJXuTQ7lusuUrIvS7wplORXBX.jpg", + "backdropPath": "/2gm0EEn4RsfvOOV20GOZrwAZ5mA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1988-12-21", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 1231, + "popularity": 7.9964 + }, + { + "id": 476926, + "title": "The Titan", + "originalTitle": "The Titan", + "overview": "On a bleak future Earth, a soldier endures a radical genetic transformation to save humanity. But his wife fears he's becoming more creature than man.", + "posterPath": "/qRmQazyIBZR4pQIk9VruiZul0Au.jpg", + "backdropPath": "/tNkpV19YzF5jmZVG7hmKKk0Xb9H.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2018-03-30", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.321, + "voteCount": 1286, + "popularity": 7.9953 + }, + { + "id": 1337562, + "title": "Splitsville", + "originalTitle": "Splitsville", + "overview": "After Ashley asks for a divorce, good-natured Carey runs to his friends, Julie and Paul, for support. He’s shocked to discover that the secret to their happiness is an open marriage, that is until Carey crosses the line and throws all of their relationships into chaos.", + "posterPath": "/gxCv6kUdywxYzIXX6xYcmX5APUV.jpg", + "backdropPath": "/5iLtvZuiM7QmNjIUXVajdjtCXwb.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-08-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.311, + "voteCount": 106, + "popularity": 7.992 + }, + { + "id": 425972, + "title": "Cargo", + "originalTitle": "Cargo", + "overview": "After being infected in the wake of a violent pandemic and with only 48 hours to live, a father struggles to find a new home for his baby daughter.", + "posterPath": "/cdPSUck4tBRvRu6DFk6XciDrssn.jpg", + "backdropPath": "/tiIpajUBpLMNWMEzpjRBxo0jCbD.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 27 + ], + "genres": [ + "Drama", + "Thriller", + "Horror" + ], + "releaseDate": "2017-10-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.397, + "voteCount": 1803, + "popularity": 7.9907 + }, + { + "id": 39517, + "title": "Clapham Junction", + "originalTitle": "Clapham Junction", + "overview": "Set in the Clapham district of south London, England, the film is inspired by true events. The paths of several men intersect during a dramatic thirty-six hours in which their lives are changed forever.", + "posterPath": "/tFfbPg1prSGZIybOEdc1azYnjcA.jpg", + "backdropPath": "/dTNBlVRYm6KVXv2CgMUJGV4MFz4.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770 + ], + "genres": [ + "Drama", + "TV Movie" + ], + "releaseDate": "2007-07-22", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 46, + "popularity": 7.9903 + }, + { + "id": 351286, + "title": "Jurassic World: Fallen Kingdom", + "originalTitle": "Jurassic World: Fallen Kingdom", + "overview": "Three years after Jurassic World was destroyed, Isla Nublar now sits abandoned. When the island's dormant volcano begins roaring to life, Owen and Claire mount a campaign to rescue the remaining dinosaurs from this extinction-level event.", + "posterPath": "/x8cLgs0uXlb9rmpuVIxopoRGnCr.jpg", + "backdropPath": "/gBmrsugfWpiXRh13Vo3j0WW55qD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2018-06-06", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.537, + "voteCount": 12410, + "popularity": 7.9883 + }, + { + "id": 1148677, + "title": "Doraemon the Movie: Nobita's Earth Symphony", + "originalTitle": "映画ドラえもん のび太の地球交響楽", + "overview": "Music exists in our daily lives for granted. But what would happen if music disappeared from the earth? This is a completely original story about Doraemon and his friends who are trying to save the earth from a crisis with the familiar theme of music!", + "posterPath": "/1W5Kg4K27U3dx9Kxb8DaE6WFLHI.jpg", + "backdropPath": "/Z3mSxuPRNiFYxf1LBoGz3YrJzC.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 10402, + 12 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Music", + "Adventure" + ], + "releaseDate": "2024-03-01", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.724, + "voteCount": 29, + "popularity": 7.988 + }, + { + "id": 18079, + "title": "Nine Queens", + "originalTitle": "Nueve reinas", + "overview": "Two con artists try to swindle a stamp collector by selling him a sheet of counterfeit rare stamps, the \"nine queens\".", + "posterPath": "/tabMRXUTTBmprGax6ON2r9yBN0D.jpg", + "backdropPath": "/e4tZvefBtA6P1T0vAPfeXG4Bj3r.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 18 + ], + "genres": [ + "Crime", + "Thriller", + "Drama" + ], + "releaseDate": "2000-08-31", + "releaseYear": "2000", + "originalLanguage": "es", + "voteAverage": 7.76, + "voteCount": 774, + "popularity": 7.9862 + }, + { + "id": 1227739, + "title": "Homebound", + "originalTitle": "होमबाउंड", + "overview": "Two childhood friends from a small North Indian village chase a police job that promises them the dignity they’ve long been denied. But as they inch closer to their dream, mounting desperation threatens the bond that holds them together.", + "posterPath": "/vyezjSvSdLO0bvr6jSNuFi6yuiw.jpg", + "backdropPath": "/v9w0xds8GUzOwHTZRuw2yeObRzD.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-26", + "releaseYear": "2025", + "originalLanguage": "hi", + "voteAverage": 8.4, + "voteCount": 10, + "popularity": 7.9835 + }, + { + "id": 40833, + "title": "King Cobra", + "originalTitle": "King Cobra", + "overview": "30 feet of pure terror is the result of an experimental drug used in a biochemical lab and this mutated nightmare is pure evil! Half-African cobra and half-diamondback, he's 30 feet long with a giant appetite for terror.", + "posterPath": "/p5s5Vt1RLiqI3HQ9WaDm32e8zWH.jpg", + "backdropPath": "/jJOU5SoUDkThk4s66RviazOel2R.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1999-08-10", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 44, + "popularity": 7.9832 + }, + { + "id": 9675, + "title": "Sideways", + "originalTitle": "Sideways", + "overview": "Two middle-aged men embark on a spiritual journey through Californian wine country. One is an unpublished novelist suffering from depression, and the other is only days away from walking down the aisle.", + "posterPath": "/zOsaxYLgvZVU7cJBpPn8CuE0MrP.jpg", + "backdropPath": "/zmuRxro8AxPDjACjXTIIDCUNwDl.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2004-10-22", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.115, + "voteCount": 1797, + "popularity": 7.9785 + }, + { + "id": 1302916, + "title": "Heart Eyes", + "originalTitle": "Heart Eyes", + "overview": "When the \"Heart Eyes Killer\" strikes Seattle, a pair of co-workers pulling overtime on Valentine's Day are mistaken for a couple by the elusive couple-hunting killer. Now, they must spend the most romantic night of the year running for their lives.", + "posterPath": "/ebqttF1Vjgde6uSFBEw9mta7Hd3.jpg", + "backdropPath": "/psCkHIvTQ9b0w4tx1ALhzVCRiYP.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 10749 + ], + "genres": [ + "Horror", + "Comedy", + "Romance" + ], + "releaseDate": "2025-02-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.401, + "voteCount": 388, + "popularity": 7.978 + }, + { + "id": 500921, + "title": "Between Worlds", + "originalTitle": "Between Worlds", + "overview": "Joe, a down-on-his-luck truck driver haunted by the memory of his deceased wife and child, meets Julie, a spiritually gifted woman who enlists his help in a desperate effort to find the lost soul of her comatose daughter. But the spirit of Joe's dead wife proves stronger, possessing the young woman's body and determined to settle her unfinished business with the living.", + "posterPath": "/7V25KUnWkf0NP7wtGkbmPjEfYf9.jpg", + "backdropPath": "/3SrCDYkkibQ97zjdvf0NhTLTe3I.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 14 + ], + "genres": [ + "Mystery", + "Thriller", + "Fantasy" + ], + "releaseDate": "2018-12-21", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.002, + "voteCount": 257, + "popularity": 7.978 + }, + { + "id": 1222248, + "title": "Number 24", + "originalTitle": "Nr. 24", + "overview": "On the brink of the Second World War, a young Norwegian man's drive to resist the Nazis sets a new course for his future – and the future of his country.", + "posterPath": "/qv7crkk9fzMrvj3WqWU6PiFm12f.jpg", + "backdropPath": "/8r4Fk4GZMPZGRBjxFJsZjJICj0O.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 36, + 18 + ], + "genres": [ + "War", + "History", + "Drama" + ], + "releaseDate": "2024-10-30", + "releaseYear": "2024", + "originalLanguage": "no", + "voteAverage": 7.1, + "voteCount": 335, + "popularity": 7.9774 + }, + { + "id": 617, + "title": "Wild Things", + "originalTitle": "Wild Things", + "overview": "When teen-socialite Kelly Van Ryan and troubled bad girl Suzie Toller accuse guidance counselor Sam Lombardo of rape, he's suspended by the school, rejected by the town, and fighting to get his life back. One cop suspects conspiracy, but nothing is what it seems...", + "posterPath": "/wrcTDD9T7Ga5c9MW7kaOo2qwIvW.jpg", + "backdropPath": "/qVKhr3WcbSQKJmVJhKq9ov3iwcT.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 18 + ], + "genres": [ + "Mystery", + "Thriller", + "Drama" + ], + "releaseDate": "1998-03-20", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.364, + "voteCount": 1873, + "popularity": 7.9768 + }, + { + "id": 77866, + "title": "Contraband", + "originalTitle": "Contraband", + "overview": "When his brother-in-law runs afoul of a drug lord, family man Chris Farraday turns to a skill he abandoned long ago—smuggling—to repay the debt. But the job goes wrong, and Farraday finds himself wanted by cops, crooks and killers alike.", + "posterPath": "/dNNjyZQ0zVtmPa74nJE63Kn0xEx.jpg", + "backdropPath": "/3se6YngJYOQ8rpbp7ZeNcnSKmmM.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 18, + 80 + ], + "genres": [ + "Thriller", + "Action", + "Drama", + "Crime" + ], + "releaseDate": "2012-01-12", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.335, + "voteCount": 2142, + "popularity": 7.9721 + }, + { + "id": 451918, + "title": "Little Woods", + "originalTitle": "Little Woods", + "overview": "For years, Ollie has illicitly helped the struggling residents of her North Dakota oil boomtown access Canadian health care and medication. When the authorities catch on, she plans to abandon her crusade, only to be dragged in even deeper after a desperate plea for help from her sister.", + "posterPath": "/gvyikwFv2pwUyapTPx8Mx6JKZzX.jpg", + "backdropPath": "/7ZeDSOb6YQEHHAmT1O1zGUO3e75.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2019-04-19", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.463, + "voteCount": 80, + "popularity": 7.9718 + }, + { + "id": 1020910, + "title": "Influencer", + "originalTitle": "Influencer", + "overview": "While struggling on a solo backpacking trip in Thailand, social media influencer Madison meets CW, who travels with ease and shows her a more uninhibited way of living. But CW's interest in her takes a darker turn.", + "posterPath": "/mtXV301BF7pqwvRjsWhQo6sD10F.jpg", + "backdropPath": "/ABuIGbnT6uQtHULIst9DiR7pyG.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2023-05-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.213, + "voteCount": 298, + "popularity": 7.9682 + }, + { + "id": 477313, + "title": "In the Family", + "originalTitle": "Aile Arasında", + "overview": "The neurotic Fikret and tavern singer Solmaz, whose 21 year long relationships end on the same day, meet through a funny coincidence. When Solmaz's daughter Zeynep decides to marry her lover from Adana, the ever-fearful Fikret ends up having to play the role of his life. Intended at first to be kept in the family, the wedding becomes a much bigger event upon the insistence of the groom's relatives. Can our heroes come to terms with the traditional Adana family who carry guns and own a kebab restaurant chain, and see the wedding through without mishaps?", + "posterPath": "/lxA6UjZqRX1LFCQ6kgjpbCCP3JI.jpg", + "backdropPath": "/xTAEtKYzlgTJJgCJ6XTjJWznTs0.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-12-01", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 6.685, + "voteCount": 162, + "popularity": 7.9613 + }, + { + "id": 522016, + "title": "The 355", + "originalTitle": "The 355", + "overview": "A group of top female agents from American, British, Chinese, Colombian, and German government agencies are drawn together to try and stop an organization from acquiring a deadly weapon to send the world into chaos.", + "posterPath": "/xef9Ht77B2igqZv754HNdW8qZCk.jpg", + "backdropPath": "/oSNqhngemquRBzxKSC3ysAmnC5e.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2022-01-05", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 1081, + "popularity": 7.961 + }, + { + "id": 14054, + "title": "Snow Angels", + "originalTitle": "Snow Angels", + "overview": "Waitress Annie has separated from her suicidal alcoholic husband, Glenn. Glenn has become an evangelical Christian, but his erratic attempts at getting back into Annie's life have alarmed her. High school student Arthur works at Annie's restaurant, growing closer to a new kid in town, Lila, after class. When Glenn and Annie's daughter go missing, the whole town searches for her, as he increasingly spirals out of control.", + "posterPath": "/hKtht1ezc31mH1cBIHoDPmScnk9.jpg", + "backdropPath": "/8XcPTBlqdxLavdJ52Qh2Jh5mtDw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 80 + ], + "genres": [ + "Drama", + "Romance", + "Crime" + ], + "releaseDate": "2007-03-07", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 158, + "popularity": 7.96 + }, + { + "id": 401326, + "title": "Mr. Frog", + "originalTitle": "Meester Kikker", + "overview": "A normal class, ordinary children and a regular school teacher. Or not. The lives of the children in Mr Frans' class are turned upside down when they discover that he sometimes turns into a frog. And Sita is so fond of her teacher that she wants to protect him at all costs from all those dangerous animals... Based on the novel by bestselling Dutch author Paul van Loon.", + "posterPath": "/52dp9Rs4KlJQK9gdLEEdLcpvyRs.jpg", + "backdropPath": "/eK83EQmfqofwY9eUogKigi7Ezrz.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 14 + ], + "genres": [ + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2016-07-28", + "releaseYear": "2016", + "originalLanguage": "nl", + "voteAverage": 4.9, + "voteCount": 24, + "popularity": 7.9586 + }, + { + "id": 1355666, + "title": "Love Untangled", + "originalTitle": "고백의 역사", + "overview": "A lovestruck teen plans to win the school heartthrob by going from curly to straight hair — until a new transfer student changes everything.", + "posterPath": "/e7jStO2xfBUAUK37LbINHd1qtgy.jpg", + "backdropPath": "/oBcvmHD7lbaX8RZ7NXvO05fIJef.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "2025-08-28", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.425, + "voteCount": 135, + "popularity": 7.9585 + }, + { + "id": 9824, + "title": "Mystery Men", + "originalTitle": "Mystery Men", + "overview": "When Champion City's hero Captain Amazing is kidnapped by the recently paroled supervillain Casanova Frankenstein, a trio of average, everyday superheroes -- Mr. Furious, the Shoveler and the Blue Raja -- assemble a new super team to save him.", + "posterPath": "/ciVSbFmDecOIwlxl9F6GhHVgCVJ.jpg", + "backdropPath": "/nrLnodkGvswfPiuKfbdPZN8P5eI.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28, + 35, + 878 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action", + "Comedy", + "Science Fiction" + ], + "releaseDate": "1999-08-06", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 877, + "popularity": 7.9537 + }, + { + "id": 15942, + "title": "Go Fast", + "originalTitle": "Go Fast", + "overview": "Marek, a crime squad officer, sets out to avenge the death of his partner and best friend, who was killed by drug traffickers. He asks for a posting to a new undercover unit created to infiltrate a drug gang that imports hashish from Morocco using the \"Go Fast\" method. A fleet of high-powered speedboats and cars races across the Mediterranean to Spain and then France, loaded with drugs.", + "posterPath": "/mXESPPvjKWtcl0uVXnuRipPxz2q.jpg", + "backdropPath": "/6GmgWNha6oK1oxgClrNIxPepBAq.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 80 + ], + "genres": [ + "Drama", + "Action", + "Crime" + ], + "releaseDate": "2008-10-01", + "releaseYear": "2008", + "originalLanguage": "fr", + "voteAverage": 5.872, + "voteCount": 183, + "popularity": 7.9532 + }, + { + "id": 1144107, + "title": "The Legend of Hei 2", + "originalTitle": "罗小黑战记 2", + "overview": "When an attack shatters the fragile peace between the spirit world and humanity, Hei teams up with Luye, the last disciple of his Shifu Wuxian, to expose a conspiracy that threatens both realms - and the bond they've sworn to protect.", + "posterPath": "/l1Q7YzanazjJescEkSfcRuIj1hR.jpg", + "backdropPath": "/uJEZaEM2hY3MG50CgZ3z9jeTwmp.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 28 + ], + "genres": [ + "Animation", + "Fantasy", + "Action" + ], + "releaseDate": "2025-07-18", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 31, + "popularity": 7.9529 + }, + { + "id": 36934, + "title": "American Shaolin", + "originalTitle": "American Shaolin", + "overview": "After being humiliated in the ring a young karate student travels to China in order to study the ancient art of Shaolin Kung Fu, and in the process becoming the first American Shaolin.", + "posterPath": "/vCUHCkMJ94KqvfzaVviOngjZgLm.jpg", + "backdropPath": "/sabFNFbuJ46DXrUxrkhIgsaBZu3.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "1991-10-01", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 58, + "popularity": 7.9529 + }, + { + "id": 17352, + "title": "South Pacific", + "originalTitle": "South Pacific", + "overview": "Can a girl from Little Rock find happiness with a mature French planter she got to know one enchanted evening away from the military hospital where she is a nurse? Or should she just wash that man out of her hair? Bloody Mary is the philosopher of the island and it's hard to believe she could be the mother of Liat who has captured the heart of Lt. Joseph Cable USMC. While waiting for action in the war in the South Pacific, sailors and nurses put on a musical comedy show. The war gets closer and the saga of Nellie Forbush and Emile de Becque becomes serious drama.", + "posterPath": "/nYNltu2clFoRQGBz9BtZUTcCbUm.jpg", + "backdropPath": "/1l0rx8cwekCKlGPO9iWFtHvQ7nL.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 10749, + 10752 + ], + "genres": [ + "Music", + "Romance", + "War" + ], + "releaseDate": "1958-03-19", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 113, + "popularity": 7.9517 + }, + { + "id": 29602, + "title": "The Storm", + "originalTitle": "De storm", + "overview": "A fictional story within the historical context of the disastrous flood that engulfed the Dutch coastal province of Zeeland in 1953. When their farmhouse is destroyed by the flood, teenage mother Julia gets separated from her baby boy, whom she kept hidden in a box. She is saved from drowning by a young air force lieutenant, who agrees to go help looking for Julia's little son.", + "posterPath": "/6tUtLfBhI9HTpOFdviuzPR2XTal.jpg", + "backdropPath": "/vLrYs1tQuT8VbETvTd1CGLXEv3u.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-09-17", + "releaseYear": "2009", + "originalLanguage": "nl", + "voteAverage": 6.6, + "voteCount": 54, + "popularity": 7.9509 + }, + { + "id": 50619, + "title": "The Twilight Saga: Breaking Dawn - Part 1", + "originalTitle": "The Twilight Saga: Breaking Dawn - Part 1", + "overview": "Bella Swan and Edward Cullen's honeymoon phase is abruptly disrupted by betrayals and unforeseen tragedies that endanger their world.", + "posterPath": "/qs8LsHKYlVRmJbFUiSUhhRAygwj.jpg", + "backdropPath": "/hBwDYiOPwXHuwiYGP82ekFNSeBr.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 10749 + ], + "genres": [ + "Adventure", + "Fantasy", + "Romance" + ], + "releaseDate": "2011-11-16", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.193, + "voteCount": 9091, + "popularity": 7.9496 + }, + { + "id": 508442, + "title": "Soul", + "originalTitle": "Soul", + "overview": "Joe Gardner is a middle school teacher with a love for jazz music. After a successful audition at the Half Note Club, he suddenly gets into an accident that separates his soul from his body and is transported to the You Seminar, a center in which souls develop and gain passions before being transported to a newborn child. Joe must enlist help from the other souls-in-training, like 22, a soul who has spent eons in the You Seminar, in order to get back to Earth.", + "posterPath": "/pEz5aROvfy5FBW1OTlrDO3VryWO.jpg", + "backdropPath": "/rQaHA74pevnGsxcKGaoZVGWe9TC.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 14, + 18 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Fantasy", + "Drama" + ], + "releaseDate": "2020-12-25", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.104, + "voteCount": 11038, + "popularity": 7.9485 + }, + { + "id": 24124, + "title": "The Burning", + "originalTitle": "The Burning", + "overview": "A caretaker at a summer camp is burned when a prank goes tragically wrong. After several years of intensive treatment at hospital, he is released back into society, albeit missing some social skills. What follows is a bloody killing spree with the caretaker making his way back to his old stomping ground to confront one of the youths that accidentally burned him.", + "posterPath": "/d8as1GtCAhlc5rirarnUUd85gJA.jpg", + "backdropPath": "/hkt9cbyS3gRkiBqc9a8oukd3oXt.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1981-05-08", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 431, + "popularity": 7.9472 + }, + { + "id": 785663, + "title": "Old Henry", + "originalTitle": "Old Henry", + "overview": "A widowed farmer and his son warily take in a mysterious, injured man with a satchel of cash. When a posse of men claiming to be the law come for the money, the farmer must decide who to trust. Defending a siege of his homestead, the farmer reveals a talent for gun-slinging that surprises everyone calling his true identity into question.", + "posterPath": "/eE1SL0QoDsvAMqQly56IkRtlN1W.jpg", + "backdropPath": "/1uCX0fpYOdvrTIYulFymWOP08HT.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 28, + 18 + ], + "genres": [ + "Western", + "Action", + "Drama" + ], + "releaseDate": "2021-10-01", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 636, + "popularity": 7.9466 + }, + { + "id": 8069, + "title": "Barbarella", + "originalTitle": "Barbarella", + "overview": "In the far future, a highly sexual woman is tasked with finding and stopping the evil Durand-Durand. Along the way she encounters various unusual people.", + "posterPath": "/facTz5BZz4AkJal1FWgjYciekih.jpg", + "backdropPath": "/gY8essk1UcNZMK3VRkPpdaUQLDQ.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 35, + 14, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Comedy", + "Fantasy", + "Action" + ], + "releaseDate": "1968-10-10", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 5.989, + "voteCount": 793, + "popularity": 7.9442 + }, + { + "id": 621462, + "title": "The Sleepwalkers", + "originalTitle": "Los sonámbulos", + "overview": "A woman and her 14-year-old daughter, who is a sleepwalker, in the midst of awakening. A marriage on the edges of a silenced crisis. A ritualistic, matriarchal, and endogamous family. Grandmother, siblings, cousins. A new summer, sweat, alcohol, traditions. Naked bodies, changing bodies, and the gazes upon those emerging bodies. A new New Year's celebration in the old historic family mansion is the trap for the sleepwalkers to finally awaken.", + "posterPath": "/tN9BEDSBJGag4oFIPgXFKjUKmOm.jpg", + "backdropPath": "/ecEKyTlR5xzhk0NsvQY6reNcq6e.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2019-09-25", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 6.756, + "voteCount": 39, + "popularity": 7.9421 + }, + { + "id": 39107, + "title": "Dragon Ball Z: Fusion Reborn", + "originalTitle": "ドラゴンボールZ 復活のフュージョン!! 悟空とベジータ", + "overview": "Not paying attention to his job, a young demon allows the evil cleansing machine to overflow and explode, turning the young demon into the infamous monster Janemba. Goku and Vegeta make solo attempts to defeat the monster, but realize their only option is fusion.", + "posterPath": "/7AHvaEAeQfkfJ4OqcBePxa2ao09.jpg", + "backdropPath": "/5seSw3hQTFSYzdh6kHOSAmExUA.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction" + ], + "releaseDate": "1995-03-04", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.526, + "voteCount": 894, + "popularity": 7.9391 + }, + { + "id": 1006911, + "title": "Make Me Believe", + "originalTitle": "Sen İnandır", + "overview": "Two meddling grannies trick their adult grandkids into a meet-cute that reignites a childhood crush and old grudges.", + "posterPath": "/q1MWxML2IuAZMLKxxNaZDQTbqU5.jpg", + "backdropPath": "/mKlBeUZvmHUbo4LObp7OvLVkL2G.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2023-06-23", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 6.4, + "voteCount": 122, + "popularity": 7.9384 + }, + { + "id": 233470, + "title": "Jamesy Boy", + "originalTitle": "Jamesy Boy", + "overview": "Based on the true story of teenager James Burns who goes from a suburban street gang to a maximum-security prison cell surrounded by hardened criminals. He turns his life around in prison thanks to the unexpected friendship he forms with a convicted murderer who becomes his mentor.", + "posterPath": "/fJCMNxUnYfOmej5FhXSOeMX2jSD.jpg", + "backdropPath": "/1htkRUQozHR1n5pD1yDhUXGV3xA.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10749 + ], + "genres": [ + "Crime", + "Drama", + "Romance" + ], + "releaseDate": "2014-01-03", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 177, + "popularity": 7.9365 + }, + { + "id": 489326, + "title": "Mortal", + "originalTitle": "Mortal", + "overview": "A young boy must discover the origins of his extraordinary powers before he is captured by authorities hell-bent on condemning him for an accidental murder.", + "posterPath": "/aVbqhqYtlxwEGihTEhewZAgDOCX.jpg", + "backdropPath": "/pcIwP8OdcYk1hFyDLHs3Mrrb7PR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 53 + ], + "genres": [ + "Action", + "Fantasy", + "Thriller" + ], + "releaseDate": "2020-02-28", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.476, + "voteCount": 488, + "popularity": 7.9362 + }, + { + "id": 4824, + "title": "The Jackal", + "originalTitle": "The Jackal", + "overview": "Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, a psychopathic hitman known only as The Jackal proves an elusive target for the people charged with the task of bringing him down: a deputy FBI director, a Russian MVK Major, and a jailed IRA terrorist who can recognize him.", + "posterPath": "/oXF26QmDEaRaH9Fbhs3NXtcnryx.jpg", + "backdropPath": "/hctm1pdmsk0wW5XV9EwuMUYTuXc.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 12, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Adventure", + "Crime" + ], + "releaseDate": "1997-11-14", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.383, + "voteCount": 2019, + "popularity": 7.935 + }, + { + "id": 369202, + "title": "Lake Bodom", + "originalTitle": "Bodom", + "overview": "Four friends are spending the night at Lake Bodom, where unsolved murders took place many years ago. The young men are determined to venture into the dense forest to solve the mystery.", + "posterPath": "/3PZThccJqH2rlkIqaiNWfZO3q2y.jpg", + "backdropPath": "/heaHpK33jbxr2k9J8rwF1wT96HY.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2016-08-19", + "releaseYear": "2016", + "originalLanguage": "fi", + "voteAverage": 5.3, + "voteCount": 294, + "popularity": 7.9347 + }, + { + "id": 290618, + "title": "The Landlord", + "originalTitle": "L'affittacamere", + "overview": "Giorgia and her sister inherit a villa and decide to turn it into a pension. When the sister orders the advertising, the brochure, together with the name, Pension Paradise, leads people to believe it is a whore house.", + "posterPath": "/oHbEmMfP1kUtpOUWLmIgz44QC5i.jpg", + "backdropPath": "/pMIz59be4tdDSBSynxnHrEtO2tF.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1976-08-07", + "releaseYear": "1976", + "originalLanguage": "it", + "voteAverage": 5.3, + "voteCount": 27, + "popularity": 7.9308 + }, + { + "id": 136, + "title": "Freaks", + "originalTitle": "Freaks", + "overview": "A circus' beautiful trapeze artist agrees to marry the leader of side-show performers, but his deformed friends discover she is only marrying him for his inheritance.", + "posterPath": "/fX2Wxd0W9E7eVClUd8kJTfennoV.jpg", + "backdropPath": "/r18vpGFsNf6n984x4KdJmAAWKkP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "1932-01-01", + "releaseYear": "1932", + "originalLanguage": "en", + "voteAverage": 7.778, + "voteCount": 1257, + "popularity": 7.9303 + }, + { + "id": 579245, + "title": "The Specials", + "originalTitle": "Hors Normes", + "overview": "For twenty years, Bruno and Malik have lived in a different world—the world of autistic children and teens. In charge of two separate nonprofit organizations (The Hatch & The Shelter), they train young people from underprivileged areas to be caregivers for extreme cases that have been refused by all other institutions. It’s an exceptional partnership, outside of traditional settings, for some quite extraordinary characters.", + "posterPath": "/zJziqrnSOzKiV0TrNVZ3AS0NMKI.jpg", + "backdropPath": "/580aO5umsOX5FAFmD6ObYvVuk6p.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-10-23", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 7.781, + "voteCount": 961, + "popularity": 7.9293 + }, + { + "id": 88949, + "title": "A Bullet for Sandoval", + "originalTitle": "Los desesperados", + "overview": "After his girlfriend dies in childbirth, Confederate deserter John Warner travels to Mexico, where the woman's father, Don Pedro Sandoval, grudgingly hands over his child. But with no locals willing to provide milk, the baby dies. Rounding up a group of rebels, Warner goes on a rampage through northern Mexico, with the ultimate goal of taking down Sandoval in this gritty Western.", + "posterPath": "/7mhPYLkCHESTbEt1j2QySx3KhDu.jpg", + "backdropPath": "/vS73aXDp0x2rruwUyJhnaOGZaeI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 37 + ], + "genres": [ + "Action", + "Western" + ], + "releaseDate": "1969-08-19", + "releaseYear": "1969", + "originalLanguage": "es", + "voteAverage": 5.6, + "voteCount": 13, + "popularity": 7.9253 + }, + { + "id": 1389038, + "title": "Mickey and the Very Many Christmases", + "originalTitle": "Mickey and the Very Many Christmases", + "overview": "Mickey makes a magical wish that every day could be Christmas — but winds up having second thoughts when his wish actually comes true!", + "posterPath": "/j8HNzRSIsiiCfSzsU1FU8U60VAd.jpg", + "backdropPath": "/tjOYNmVEO98WoK8SGhUq5aw8qTh.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2024-12-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.588, + "voteCount": 17, + "popularity": 7.9252 + }, + { + "id": 59118, + "title": "The Prey", + "originalTitle": "La Proie", + "overview": "A robber escapes from prison with a single objective in mind: to track down his former cellmate, a serial killer who intends to pin his crimes on him. A cop is sent after the robber who, despite his best efforts, soon becomes Public Enemy Number One. As the protagonists are driven to their limits, it becomes increasingly unclear who is the hunter and who is the prey.", + "posterPath": "/vv30WTTkdstFcOW82EigWQNBHik.jpg", + "backdropPath": "/exPAVv84rMP1LgtghB8a8bW6ZJS.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2011-04-12", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 6.449, + "voteCount": 217, + "popularity": 7.9249 + }, + { + "id": 663105, + "title": "His", + "originalTitle": "his", + "overview": "Shun and Nagisa first meet and fall in love during their first year of high school. While Shun is graduating from university, Nagisa tells him that he doesn't see a future for them. Despite Shun's strong feelings, they go their separate ways. Years later, Shun is now a store owner, living alone in a rural area. Out of the blue, Nagisa arrives with his six-year-old daughter, Sora. Spending time together, Shun realizes he still harbors feelings for Nagisa. Can Nagisa reconcile with his feelings for Shun, which have been there all along?", + "posterPath": "/ePBDOSLQ26voWspjWoDn1GuhiU8.jpg", + "backdropPath": "/unGBAgFxeKUzGEsTReV2ECphMVl.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2020-01-24", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.071, + "voteCount": 28, + "popularity": 7.9246 + }, + { + "id": 1225572, + "title": "Screamboat", + "originalTitle": "Screamboat", + "overview": "A late-night boat ride turns into a desperate fight for survival in New York City when a mischievous mouse becomes a monstrous reality.", + "posterPath": "/78xGAhQaKpgq9TI08XK40Ua2bGx.jpg", + "backdropPath": "/r2u7GCYhxtpZbprKJIgdAkGQow3.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2025-03-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.089, + "voteCount": 107, + "popularity": 7.9233 + }, + { + "id": 1724, + "title": "The Incredible Hulk", + "originalTitle": "The Incredible Hulk", + "overview": "Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.", + "posterPath": "/gKzYx79y0AQTL4UAk1cBQJ3nvrm.jpg", + "backdropPath": "/jPu8yiadqgzwFPGKJmGo637ASVP.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "2008-06-12", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 12349, + "popularity": 7.9229 + }, + { + "id": 9647, + "title": "Scrooged", + "originalTitle": "Scrooged", + "overview": "Frank Cross is a wildly successful television executive whose cold ambition and curmudgeonly nature has driven away the love of his life. But after firing a staff member on Christmas Eve, Frank is visited by a series of ghosts who give him a chance to re-evaluate his actions and right the wrongs of his past.", + "posterPath": "/uO0znfB2ZzTXA1IS7jkrjNbpkYK.jpg", + "backdropPath": "/6Cld2xtKYfWnWK3w3gfJRRA82vd.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 18 + ], + "genres": [ + "Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "1988-11-22", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 1623, + "popularity": 7.9188 + }, + { + "id": 524008, + "title": "The Chain", + "originalTitle": "The Chain", + "overview": "When Mike finds out that he has he same neurological disease as his father, he decides to enter a chain of assisted suicides, which operates under one rule: if you want to die, you must kill someone first.", + "posterPath": "/svDXf7TBrxf4dOXIRJWUbCxWYPv.jpg", + "backdropPath": "/cCpxjjHUCoBJtwt0yPkVJnu6THg.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2019-05-31", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 30, + "popularity": 7.9182 + }, + { + "id": 80, + "title": "Before Sunset", + "originalTitle": "Before Sunset", + "overview": "Nine years later, Jesse travels across Europe giving readings from a book he wrote about the night he spent in Vienna with Celine. After his reading in Paris, Celine finds him, and they spend part of the day together before Jesse has to again leave for a flight. They are both in relationships now, and Jesse has a son, but as their strong feelings for each other start to return, both confess a longing for more.", + "posterPath": "/gycdE1ARByGQcK4fYR2mgpU6OO.jpg", + "backdropPath": "/tcZi0LQc5iu2u6i5aOWyj9NBBvl.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2004-06-16", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.809, + "voteCount": 3636, + "popularity": 7.9172 + }, + { + "id": 52998, + "title": "El Dorado", + "originalTitle": "El Dorado", + "overview": "The story of an expedition down the Orinoco and Amazon rivers in 1560 by Spanish soldiers searching for the fabled city of gold, El Dorado.", + "posterPath": "/b1Msl7LnDlKfoI7K3NcJlHchGGI.jpg", + "backdropPath": "/gbf86yaQXNtIUyi49tZ9zG8J4HX.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 36, + 18 + ], + "genres": [ + "Adventure", + "History", + "Drama" + ], + "releaseDate": "1988-04-20", + "releaseYear": "1988", + "originalLanguage": "es", + "voteAverage": 6, + "voteCount": 20, + "popularity": 7.9171 + }, + { + "id": 451184, + "title": "Wasp Network", + "originalTitle": "Wasp Network", + "overview": "Havana, Cuba, 1990. René González, an airplane pilot, unexpectedly flees the country, leaving behind his wife Olga and his daughter Irma, and begins a new life in Miami, where he becomes a member of an anti-Castro organization.", + "posterPath": "/fzjbeyEwmlpxu5CMzmFz8IDVELm.jpg", + "backdropPath": "/sOy92H9RdKfsC4OY4umZi2rPrur.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 53 + ], + "genres": [ + "Drama", + "History", + "Thriller" + ], + "releaseDate": "2020-01-29", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.036, + "voteCount": 392, + "popularity": 7.9133 + }, + { + "id": 175606, + "title": "Les Coquillettes", + "originalTitle": "Les Coquillettes", + "overview": "Three female friends recall their misadventures (more sexual than cinematical) attending the Locarno Film Festival.", + "posterPath": "/mjgCAftCODeMQHW43GtpBeWmBI8.jpg", + "backdropPath": "/nNarLGCwnTEyp6074JrkyIleAfj.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-03-20", + "releaseYear": "2013", + "originalLanguage": "fr", + "voteAverage": 4.4, + "voteCount": 28, + "popularity": 7.9105 + }, + { + "id": 5174, + "title": "Rush Hour 3", + "originalTitle": "Rush Hour 3", + "overview": "After a botched assassination attempt, the mismatched duo finds themselves in Paris, struggling to retrieve a precious list of names, as the murderous crime syndicate's henchmen try their best to stop them. Once more, Lee and Carter must fight their way through dangerous gangsters; however, this time, the past has come back to haunt Lee. Will the boys get the job done once and for all?", + "posterPath": "/mp9CzKxLa2i7yblMXUrzVfGqsCo.jpg", + "backdropPath": "/ozsLB1HRCN6ZAmJN89pWtoiAwnb.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2007-08-08", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.483, + "voteCount": 3555, + "popularity": 7.9095 + }, + { + "id": 1266798, + "title": "Dog 51", + "originalTitle": "Chien 51", + "overview": "In the near future, Paris is divided into three zones that separate social classes, and no one can escape ALMA, a predictive AI that has revolutionized law enforcement. When ALMA’s creator is assassinated, Salia, a top agent, and Zem, a jaded cop, are forced to work together to solve a murder that may expose the dark secrets of the system they serve.", + "posterPath": "/zZJACnkGZfSfHGvRxWFZe1dDxWR.jpg", + "backdropPath": "/nHKOcY1VrVLA4bIt8phzTx28bt0.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878, + 80, + 28 + ], + "genres": [ + "Thriller", + "Science Fiction", + "Crime", + "Action" + ], + "releaseDate": "2025-10-15", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.526, + "voteCount": 134, + "popularity": 7.9083 + }, + { + "id": 1091275, + "title": "The Flood", + "originalTitle": "Le Déluge", + "overview": "1792. Louis XVI, his wife Marie Antoinette, and their children have been arrested and imprisoned in the Tour du Temple, a sinister chateau in Paris, awaiting their trial. Far from the splendour of Versailles, they are isolated and vulnerable for the first time in their lives.", + "posterPath": "/fSmtF1eGhqPy1x4sO42pqSmHnCo.jpg", + "backdropPath": "/89fOQTzvNM5V2SwS6ozk3nXPyA7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2024-11-21", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.083, + "voteCount": 42, + "popularity": 7.9078 + }, + { + "id": 681580, + "title": "Cross the Line", + "originalTitle": "No matarás", + "overview": "A good-natured man has an unexpected deadly confrontation. Instincts kick in to clean up the mess caused in the name of self-defense but does one really get away free after killing someone?", + "posterPath": "/dYqTGyqHydFqfMD1LWaQG59FWsM.jpg", + "backdropPath": "/bjtMaJKErHVtWixo2vFxgChPpV1.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2020-10-16", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 6.8, + "voteCount": 266, + "popularity": 7.9078 + }, + { + "id": 18892, + "title": "Jawbreaker", + "originalTitle": "Jawbreaker", + "overview": "When an exclusive clique of teenage socialites accidentally murder their best friend on the morning of her birthday, the three girls responsible conspire to hide the truth.", + "posterPath": "/gwjJPAraQy5fDd3NJvK677uItU4.jpg", + "backdropPath": "/bZ7ZMu8lGuEKmwH5lXRhlJAjYWv.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 53 + ], + "genres": [ + "Comedy", + "Crime", + "Thriller" + ], + "releaseDate": "1999-01-30", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.384, + "voteCount": 564, + "popularity": 7.9054 + }, + { + "id": 1005281, + "title": "Purificacion", + "originalTitle": "Purificacion", + "overview": "A policewoman investigates the series of killings that happened to women of Santa Monica and her main suspect is the new priest, Father Purificacion.", + "posterPath": "/jHF307TKVMfTBvW9YWCpskyivFr.jpg", + "backdropPath": "/cKX1icoeRJ0eHEKeJZqO7ZwlhvX.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2022-08-05", + "releaseYear": "2022", + "originalLanguage": "tl", + "voteAverage": 5.3, + "voteCount": 10, + "popularity": 7.9006 + }, + { + "id": 1319969, + "title": "Sketch", + "originalTitle": "Sketch", + "overview": "When a young girl’s sketchbook falls into a strange pond, her drawings come to life—chaotic, real, and on the loose. As the town descends into chaos, her family must reunite and stop the monsters they never meant to unleash.", + "posterPath": "/sxiDj3dTgZuCPkx30Jvyq8K9QUV.jpg", + "backdropPath": "/3htgvJ6d0GV633oHYueeISk8J7w.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 35, + 10751 + ], + "genres": [ + "Adventure", + "Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "2025-08-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 73, + "popularity": 7.8996 + }, + { + "id": 597900, + "title": "High Moon", + "originalTitle": "High Moon", + "overview": "A soldier turned gunfighter rises from the grave only to find himself in a modern time where the same werewolf outlaw gang that brutally murdered his wife are running rampant. Aided by a beautiful widow, a broken down sheriff, and a corrupt Mayor, Colt must face the blood thirsty creatures once again to save a small sleepy southern town.", + "posterPath": "/ic8jANmgpnRzCKxuPGsqK25HWct.jpg", + "backdropPath": "/gH3jVxHk8BNPIJKMavTtVfbiBxk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 37 + ], + "genres": [ + "Action", + "Horror", + "Western" + ], + "releaseDate": "2019-05-14", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 13, + "popularity": 7.8995 + }, + { + "id": 812, + "title": "Aladdin", + "originalTitle": "Aladdin", + "overview": "In the boorish city of Agrabah, kind-hearted street urchin Aladdin and Princess Jasmine fall in love, although she can only marry a prince. He and power-hungry Grand Vizier Jafar vie for a magic lamp that can fulfill their wishes.", + "posterPath": "/eLFfl7vS8dkeG1hKp5mwbm37V83.jpg", + "backdropPath": "/nenJjvfe2Eq8uBMXFJnWj5mw4bi.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 14, + 10749 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Fantasy", + "Romance" + ], + "releaseDate": "1992-11-25", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.654, + "voteCount": 11695, + "popularity": 7.8993 + }, + { + "id": 9659, + "title": "Mad Max", + "originalTitle": "Mad Max", + "overview": "In the ravaged near-future, a savage motorcycle gang rules the road. Terrorizing innocent civilians while tearing up the streets, the ruthless gang laughs in the face of a police force hell-bent on stopping them.", + "posterPath": "/5LrI4GiCSrChgkdskVZiwv643Kg.jpg", + "backdropPath": "/8CcjyTF3hXIe2wRdFkv52zkOmO1.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 53, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1979-04-12", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 6.677, + "voteCount": 4755, + "popularity": 7.8991 + }, + { + "id": 328869, + "title": "Meadowland", + "originalTitle": "Meadowland", + "overview": "In the hazy aftermath of an unimaginable loss, Sarah and Phil come unhinged, recklessly ignoring the repercussions. Phil starts to lose sight of his morals as Sarah puts herself in increasingly dangerous situations, falling deeper into her own fever dream.", + "posterPath": "/yrvg3703wPftQLNI4xbBP2cuNy9.jpg", + "backdropPath": "/nDu5empxd15LVQiBwh8bfM7OXhN.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-10-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 117, + "popularity": 7.8986 + }, + { + "id": 1440, + "title": "Little Children", + "originalTitle": "Little Children", + "overview": "The lives of two lovelorn spouses from separate marriages, a registered sex offender, and a disgraced ex-police officer intersect as they struggle to resist their vulnerabilities and temptations.", + "posterPath": "/l2wTSP0Ifo9vY03nJEfkFBbT2S9.jpg", + "backdropPath": "/uDDgaNppSCJm6kWDLl7vMeu8xcl.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2006-10-06", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 1087, + "popularity": 7.8981 + }, + { + "id": 826047, + "title": "Why?", + "originalTitle": "Why?", + "overview": "Writer Blake Sinclair finds herself in a fight for her life against a bloodthirsty maniac who has been leaving multiple victims in his wake as he returns to the mountain town of Northdale.", + "posterPath": "/l31YVOzDG13jwSJKYehZxgUsILH.jpg", + "backdropPath": "/zdh7hs80rgbuTEuXDqWO8aPvt4v.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2021-05-05", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 3.933, + "voteCount": 15, + "popularity": 7.8963 + }, + { + "id": 787699, + "title": "Wonka", + "originalTitle": "Wonka", + "overview": "Willy Wonka – chock-full of ideas and determined to change the world one delectable bite at a time – is proof that the best things in life begin with a dream, and if you’re lucky enough to meet Willy Wonka, anything is possible.", + "posterPath": "/qhb1qOilapbapxWQn9jtRCMwXJF.jpg", + "backdropPath": "/uIk2g2bRkNwNywKZIhC5oIU94Kh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 14 + ], + "genres": [ + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2023-12-06", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.052, + "voteCount": 4134, + "popularity": 7.8955 + }, + { + "id": 44264, + "title": "True Grit", + "originalTitle": "True Grit", + "overview": "Following the murder of her father by a hired hand, a 14-year-old farm girl sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find—a man with 'true grit'—Reuben J. 'Rooster' Cogburn.", + "posterPath": "/tCrB8pcjadZjsDk7rleGJaIv78k.jpg", + "backdropPath": "/5dwlH8Krm2bsuc2Pubw2cBb03g5.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 12, + 37 + ], + "genres": [ + "Drama", + "Adventure", + "Western" + ], + "releaseDate": "2010-12-22", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.307, + "voteCount": 5549, + "popularity": 7.8934 + }, + { + "id": 1211957, + "title": "The Painter", + "originalTitle": "The Painter", + "overview": "An ex-CIA operative is thrown back into a dangerous world when a mysterious woman from his past resurfaces. Now exposed and targeted by a relentless killer and a rogue black ops program, he must rely on skills he thought he left behind in a high-stakes game of survival.", + "posterPath": "/UZ0ydgbXtnrq8xZCI5lHVXVcH9.jpg", + "backdropPath": "/6OnoMgGFuZ921eV8v8yEyXoag19.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2024-01-05", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.086, + "voteCount": 140, + "popularity": 7.8912 + }, + { + "id": 727566, + "title": "Parallel Minds", + "originalTitle": "Parallel Minds", + "overview": "In the near future, technology firm Red-Eye is on the verge of developing a revolutionary contact lens that records human sight to replicate memories. When the company’s lead researcher is murdered, Detective Thomas Elliot, and researcher Margo Elson are drawn into searching deeper to apprehend an elusive digital shapeshifter. Soon, both are threatened by their past as they seek to uncover what this dangerous artificial intelligence is trying to consume.", + "posterPath": "/Ahmj6O9ohSfO81v5X1fRcmvRHsd.jpg", + "backdropPath": "/gg77w83ngGGenyHTAh2MDCLeOzh.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2020-09-24", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.423, + "voteCount": 14, + "popularity": 7.8908 + }, + { + "id": 120386, + "title": "The Stud", + "originalTitle": "The Stud", + "overview": "Fontaine Khaled is the London wife of wealthy Arab businessman Benjamin, whose money she blows on partying and on her nightclub, \"The Hobo\". She hires handsome Tony to manage her club, but it's understood that his job security is dependent on his satisfying her nymphomaniacal demands. He soon loses interest, and turns his attention to her stepdaughter Alexandra, who uses him to get back at Fontaine for cheating on her father.", + "posterPath": "/sNduWNPPh2qy0npxKCKIEZi5LC8.jpg", + "backdropPath": "/zr2ScyHN6mvkUk7rHpLR19FR8NQ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "1978-08-17", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 29, + "popularity": 7.8896 + }, + { + "id": 58232, + "title": "Chalet Girl", + "originalTitle": "Chalet Girl", + "overview": "While working a job at an exclusive ski resort to support her Dad, Kim learns to snowboard and is so good at it that she enters a competition with a huge cash prize. She has to dig deep to overcome her fears, but her life gets more complicated through her spoken-for boss, Jonny.", + "posterPath": "/uzHIG8nXums3sCAiO4w5heZi3Hc.jpg", + "backdropPath": "/ovq99oayVGCKEBUPeqT1SvQQwDU.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2011-02-02", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 653, + "popularity": 7.8896 + }, + { + "id": 7445, + "title": "Brothers", + "originalTitle": "Brothers", + "overview": "When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill is presumed dead. Back home, brother Tommy steps in to look over Sam’s wife, Grace, and two children. Sam’s surprise homecoming triggers domestic mayhem.", + "posterPath": "/skHqceAFYee0JZuYd9MVk2IQggi.jpg", + "backdropPath": "/xERofiEyzGekTNi3oIppQvdLDZB.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10752 + ], + "genres": [ + "Drama", + "Thriller", + "War" + ], + "releaseDate": "2009-12-02", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.317, + "voteCount": 3807, + "popularity": 7.8874 + }, + { + "id": 3309, + "title": "Mildred Pierce", + "originalTitle": "Mildred Pierce", + "overview": "A hard-working mother inches towards disaster as she divorces her husband and starts a successful restaurant business to support her spoiled daughter.", + "posterPath": "/3bqF5bJPjeITNeC8ydbUOQZfuqP.jpg", + "backdropPath": "/iWAijx2874J0QgNVXwqW24IMRai.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1945-10-20", + "releaseYear": "1945", + "originalLanguage": "en", + "voteAverage": 7.61, + "voteCount": 426, + "popularity": 7.8867 + }, + { + "id": 326359, + "title": "Frozen Fever", + "originalTitle": "Frozen Fever", + "overview": "On Anna's birthday, Elsa and Kristoff are determined to give her the best celebration ever, but Elsa's icy powers may put more than just the party at risk.", + "posterPath": "/dJ9sxSn95KoWwErBrEILD3Lucg6.jpg", + "backdropPath": "/tQNop6scGYjapYo8j4wCSoVls0i.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 35 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Comedy" + ], + "releaseDate": "2015-03-09", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 1874, + "popularity": 7.8862 + }, + { + "id": 1195518, + "title": "The Unholy Trinity", + "originalTitle": "The Unholy Trinity", + "overview": "Set against the turbulent backdrop of 1870s Montana, in the moments before the execution of Isaac Broadway, he gives his estranged son, Henry, an impossible task: murder the man who framed him for a crime he didn’t commit. Intent on fulfilling his promise, Henry travels to the remote town of Trinity, where an unexpected turn of events traps him in town and leaves him caught between Gabriel Dove, the town’s upstanding new sheriff, and a mysterious figure named St. Christopher.", + "posterPath": "/waU3o5qRPNA9bIC59DIsDppll11.jpg", + "backdropPath": "/hyc9gq0Oq5THKak7tB7oqC2Rd6z.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 12, + 80 + ], + "genres": [ + "Western", + "Adventure", + "Crime" + ], + "releaseDate": "2025-06-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.317, + "voteCount": 93, + "popularity": 7.8861 + }, + { + "id": 347033, + "title": "Equity", + "originalTitle": "Equity", + "overview": "Senior investment banker Naomi Bishop’s world of high-power big money is brutal and fierce, and one she thrives in. When a controversial IPO threatens the fragile balance of power and confidentiality, Naomi finds herself entangled in a web of politics and deception.", + "posterPath": "/rCl96gJRjX4R1l1jArouQpPc5qw.jpg", + "backdropPath": "/9pgHdDy43KeGQiODBNye3ltjxY3.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-07-29", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 101, + "popularity": 7.8821 + }, + { + "id": 2322, + "title": "Sneakers", + "originalTitle": "Sneakers", + "overview": "When shadowy U.S. intelligence agents blackmail a reformed computer hacker and his eccentric team of security experts into stealing a code-breaking 'black box' from a Soviet-funded genius, they uncover a bigger conspiracy. Now, he and his 'sneakers' must save themselves and the world economy by retrieving the box from their blackmailers.", + "posterPath": "/l2pIGwCvpZEpBuMb55YBl6A04Jv.jpg", + "backdropPath": "/smK3ud9IKSLVuRXdKauJ9p0DwNB.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "1992-09-09", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.897, + "voteCount": 1001, + "popularity": 7.8818 + }, + { + "id": 276907, + "title": "Legend", + "originalTitle": "Legend", + "overview": "Suave, charming and volatile, Reggie Kray and his unstable twin brother Ronnie start to leave their mark on the London underworld in the 1960s. Using violence to get what they want, the siblings orchestrate robberies and murders while running nightclubs and protection rackets. With police Detective Leonard \"Nipper\" Read hot on their heels, the brothers continue their rapid rise to power and achieve tabloid notoriety.", + "posterPath": "/4shf5Alq4KWCKqrAAQe0JGJHYp5.jpg", + "backdropPath": "/v8zOcynvSd6IW3FzZrvst2HJ53s.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53 + ], + "genres": [ + "Crime", + "Thriller" + ], + "releaseDate": "2015-09-09", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 4119, + "popularity": 7.8805 + }, + { + "id": 259693, + "title": "The Conjuring 2", + "originalTitle": "The Conjuring 2", + "overview": "Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.", + "posterPath": "/zEqyD0SBt6HL7W9JQoWwtd5Do1T.jpg", + "backdropPath": "/ev5Ti7Q0REkoVLO7PkKaq1yZYQE.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2016-06-08", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 8948, + "popularity": 7.8795 + }, + { + "id": 11635, + "title": "Old School", + "originalTitle": "Old School", + "overview": "Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.", + "posterPath": "/nYtuwNHpEoIbTgS3aFPSEwZNN6l.jpg", + "backdropPath": "/2tZVYiosztNM1DAYUF59VPsNp9L.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-02-21", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 2003, + "popularity": 7.8784 + }, + { + "id": 1124, + "title": "The Prestige", + "originalTitle": "The Prestige", + "overview": "A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.", + "posterPath": "/bdN3gXuIZYaJP7ftKK2sU0nPtEA.jpg", + "backdropPath": "/yCnJT53HMXAK87xzPAdjdYhZ3JE.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 878 + ], + "genres": [ + "Drama", + "Mystery", + "Science Fiction" + ], + "releaseDate": "2006-10-17", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 8.205, + "voteCount": 16993, + "popularity": 7.8783 + }, + { + "id": 27123, + "title": "The Trench", + "originalTitle": "The Trench", + "overview": "The Trench tells the story of a group of young British soldiers on the eve of the Battle of the Somme in the summer of 1916, the worst defeat in British military history. Against this ill-fated backdrop, the movie depicts the soldiers' experience as a mixture of boredom, fear, panic, and restlessness, confined to a trench on the front lines.", + "posterPath": "/tEK7lwfMz7Hy3LhuunPH0cjQDXl.jpg", + "backdropPath": "/eAjt5jswKjomWLLpJqAm3D45Wam.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 36 + ], + "genres": [ + "War", + "History" + ], + "releaseDate": "1999-09-17", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 98, + "popularity": 7.8763 + }, + { + "id": 37997, + "title": "Permanent Vacation", + "originalTitle": "Permanent Vacation", + "overview": "In downtown Manhattan, twentysomething Allie, whose father is not around and whose mother is institutionalized, is a big Charlie Parker fan. He almost subconsciously searches for meaning in his life and meets some idiosyncratic characters along the way.", + "posterPath": "/pfHKEtzZu8xukk9ZxHZ2XtRlLhH.jpg", + "backdropPath": "/54o7yGJVp4wbUaQVrCi7AwPtzHA.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1981-03-06", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 204, + "popularity": 7.8722 + }, + { + "id": 240832, + "title": "Lucy", + "originalTitle": "Lucy", + "overview": "A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.", + "posterPath": "/dhjyfcwEoW6jJ4Q7DpZTp6E58GA.jpg", + "backdropPath": "/ozVwXlfxqNsariipatGwa5px3Pm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878 + ], + "genres": [ + "Action", + "Science Fiction" + ], + "releaseDate": "2014-07-25", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.47, + "voteCount": 16693, + "popularity": 7.8705 + }, + { + "id": 54915, + "title": "Young, Beautiful and Screwed Up", + "originalTitle": "Les Gaous", + "overview": "A young boy from the south of France falls madly in love with a posh Parisian girl and follows her for crazy adventures to the big city.", + "posterPath": "/iAm5o0b7svnUjLb8fEC6NaYGKAc.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2003-11-30", + "releaseYear": "2003", + "originalLanguage": "de", + "voteAverage": 4.429, + "voteCount": 21, + "popularity": 7.8699 + }, + { + "id": 24402, + "title": "Emmanuelle", + "originalTitle": "Emmanuelle", + "overview": "An employee at the French Embassy in Bangkok invites his wife to join him – and enjoy the benefits of their open marriage.", + "posterPath": "/kFq1ffM4ruQmWH6C3SjVWJoqMi6.jpg", + "backdropPath": "/k5qXRqhCkzETnH0ktCtyBGR7pWz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1974-06-25", + "releaseYear": "1974", + "originalLanguage": "fr", + "voteAverage": 6, + "voteCount": 793, + "popularity": 7.8665 + }, + { + "id": 84362, + "title": "Devil Hunter", + "originalTitle": "El caníbal", + "overview": "The lovely Laura, on a modelling job in South Africa, is kidnapped by a gang who carry her off into the jungle from where they demand a huge ransom. Two men set off in a helicopter to rescue her, little knowing what horrors Laura is enduring in the meantime in the savage clutches of a primitive and bloodthristy world. Laura's rescuers not only have to face the cruel violence of her captors - but also the horrifying lust for blood of a primitive and cruel god.", + "posterPath": "/2eccYH8f7WPqOyaIQ6vFHxRXNAz.jpg", + "backdropPath": "/dvuCQ5Kpr5sQE7Hx9bJIHY7V5hw.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1980-12-05", + "releaseYear": "1980", + "originalLanguage": "es", + "voteAverage": 4.413, + "voteCount": 40, + "popularity": 7.8648 + }, + { + "id": 2976, + "title": "Hairspray", + "originalTitle": "Hairspray", + "overview": "Pleasantly plump teenager Tracy Turnblad auditions to be on Baltimore's most popular dance show - The Corny Collins Show - and lands a prime spot. Through her newfound fame, she becomes determined to help her friends and end the racial segregation that has been a staple of the show.", + "posterPath": "/fgMka3HtFvI5OgW1eYdR9XpySxH.jpg", + "backdropPath": "/oO55Z71apssUy4Cf0obsK2kX3oK.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2007-07-19", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 2563, + "popularity": 7.8644 + }, + { + "id": 507660, + "title": "The Merger", + "originalTitle": "The Merger", + "overview": "A country football coach who has a plan to rebuild the local football team by recruiting recently settled asylum seekers.", + "posterPath": "/v1bCOU6touQ4qWidGGD8LtqwiBW.jpg", + "backdropPath": "/fWHgtnGGA8L7238DBa0WVGkIzI1.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-08-30", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 15, + "popularity": 7.8616 + }, + { + "id": 100898, + "title": "North Sea Texas", + "originalTitle": "Noordzee, Texas", + "overview": "A teen boy living in a small town on the Belgian coast finds his ordinary life take an unexpected turn when a handsome traveler blows through town.", + "posterPath": "/jLmcMgjW8sM9vVqXopZa97RICWb.jpg", + "backdropPath": "/61QRbP2qVRXLXK2NZBtNhHqeo2J.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2011-03-16", + "releaseYear": "2011", + "originalLanguage": "nl", + "voteAverage": 7.2, + "voteCount": 239, + "popularity": 7.8615 + }, + { + "id": 173185, + "title": "It Boy", + "originalTitle": "20 Ans d'écart", + "overview": "38-year-old Alice has everything to become the next editor-in-chief of Rebelle magazine except for her uptight image. But when the young and charming Balthazar, barely 20, crosses Alice's path, she realizes that he holds the key to her promotion.", + "posterPath": "/7PbiUzPjM6ZvD9sGppBtdLcDdwx.jpg", + "backdropPath": "/uwb6ojh9Xc0dqJI3hIE1cxk3tPu.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-03-06", + "releaseYear": "2013", + "originalLanguage": "fr", + "voteAverage": 6.5, + "voteCount": 1538, + "popularity": 7.8593 + }, + { + "id": 2292, + "title": "Clerks", + "originalTitle": "Clerks", + "overview": "Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.", + "posterPath": "/9IiSgiq4h4siTIS9H3o4nZ3h5L9.jpg", + "backdropPath": "/sjfbZVKRGh84lNxhqvuhdvovh18.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1994-10-19", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.384, + "voteCount": 2646, + "popularity": 7.8579 + }, + { + "id": 504585, + "title": "Little Joe", + "originalTitle": "Little Joe", + "overview": "Alice, a single mother who is more dedicated to her work as a genetic engineer than to her teenage son Joe, develops a new variety of flower that is supposed to have the ability to make its owner happy thanks to its special chemical properties.", + "posterPath": "/q4VMyavCoXxN9U8AONE2YryQDVz.jpg", + "backdropPath": "/jnq1lg6Fd8b6pn5ud5hVFS2hSyf.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878 + ], + "genres": [ + "Drama", + "Science Fiction" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.716, + "voteCount": 303, + "popularity": 7.8574 + }, + { + "id": 1484453, + "title": "Snoopy Presents: A Summer Musical", + "originalTitle": "Snoopy Presents: A Summer Musical", + "overview": "Music and glee fill the air as Charlie Brown and the gang head off to summer camp. First-timer Sally doesn't get what all the hype is about. But when the camp may be forced to close, they team up to save it so more kids can make their own special memories.", + "posterPath": "/kK1ugxST3tCJZjZEO37sLb4Yot5.jpg", + "backdropPath": "/1Bavnm3tr5zJMAhBKKmGHVjbPZN.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 10402, + 35 + ], + "genres": [ + "Animation", + "Family", + "Music", + "Comedy" + ], + "releaseDate": "2025-08-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.441, + "voteCount": 17, + "popularity": 7.8531 + }, + { + "id": 10601, + "title": "Peter Pan", + "originalTitle": "Peter Pan", + "overview": "In stifling Edwardian London, Wendy Darling mesmerizes her brothers every night with bedtime tales of swordplay, swashbuckling and the fearsome Captain Hook. But the children become the heroes of an even greater story, when Peter Pan flies into their nursery one night and leads them over moonlit rooftops through a galaxy of stars and to the lush jungles of Neverland.", + "posterPath": "/6QdU3TZZrIvXFzoHOwafZAynFjB.jpg", + "backdropPath": "/zyWbOvKCdA9V9P5xuUG2eiPYsUo.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 10751 + ], + "genres": [ + "Adventure", + "Fantasy", + "Family" + ], + "releaseDate": "2003-12-18", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.144, + "voteCount": 2712, + "popularity": 7.8495 + }, + { + "id": 508947, + "title": "Turning Red", + "originalTitle": "Turning Red", + "overview": "Thirteen-year-old Mei is experiencing the awkwardness of being a teenager with a twist – when she gets too excited, she transforms into a giant red panda.", + "posterPath": "/qsdjk9oAKSQMWs0Vt5Pyfh6O4GZ.jpg", + "backdropPath": "/b8Ma7TkasTDpMIkoIngzHVcgANa.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 14 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Fantasy" + ], + "releaseDate": "2022-03-10", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.329, + "voteCount": 5599, + "popularity": 7.8493 + }, + { + "id": 10202, + "title": "Bedtime Stories", + "originalTitle": "Bedtime Stories", + "overview": "Skeeter Bronson is a down-on-his-luck guy who's always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?", + "posterPath": "/rSOnWm8ahvgThYp8TKGRUTcvsyw.jpg", + "backdropPath": "/1STpoknpEUiyory94WxGIhQHPIp.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 10751, + 10749 + ], + "genres": [ + "Fantasy", + "Comedy", + "Family", + "Romance" + ], + "releaseDate": "2008-12-24", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.159, + "voteCount": 2909, + "popularity": 7.8485 + }, + { + "id": 222517, + "title": "Snow White and 7 Wise Men", + "originalTitle": "Biancaneve & Co...", + "overview": "The king and the queen conceive Snow White during a sexual relationship in the snow.", + "posterPath": "/yMiM9Zg9JuNy9k1Q7wsyEpwTSQR.jpg", + "backdropPath": "/vsgprE5Esxj06j6SPKjMN5CL5oM.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1982-04-03", + "releaseYear": "1982", + "originalLanguage": "it", + "voteAverage": 4.8, + "voteCount": 14, + "popularity": 7.8454 + }, + { + "id": 2528, + "title": "Madame Bovary", + "originalTitle": "Madame Bovary", + "overview": "Bored with the limited and tedious nature of provincial life in 19th-century France, the fierce and sensual Emma Bovary finds herself in calamitous debt and pursues scandalous sexual liaisons with absolute abandon. However, when her volatile lifestyle catches up to her, the lives of everyone around her are endangered.", + "posterPath": "/cBJtWAgDTCqxNJJOZjnRSh5Vxa5.jpg", + "backdropPath": "/m4gGt73A0bEMPRS4eiIrRuDk5KW.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 36 + ], + "genres": [ + "Romance", + "Drama", + "History" + ], + "releaseDate": "1991-03-03", + "releaseYear": "1991", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 143, + "popularity": 7.8437 + }, + { + "id": 32146, + "title": "Body Parts", + "originalTitle": "Body Parts", + "overview": "A criminal psychologist loses his arm in a car crash, and becomes one of three patients to have their missing limbs replaced by those belonging to an executed serial killer. One of them dies violently, and disturbing occurrences start happening to the surviving two.", + "posterPath": "/8hFSFiLMy0wnyVaaJ4EHFlPD1yf.jpg", + "backdropPath": "/lqSjo0x0WUNIkL0wDMZI9AjOasU.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "1991-08-02", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 125, + "popularity": 7.8417 + }, + { + "id": 17993, + "title": "Henry & June", + "originalTitle": "Henry & June", + "overview": "While traveling in Paris, author Henry Miller and his wife, June, meet Anais Nin, and sexual sparks fly as Nin starts an affair with the openly bisexual June. When June is forced to return to the U.S., she gives Nin her blessing to sleep with her husband. Then, when June returns to France, an unexpected, and sometimes contentious, threesome forms.", + "posterPath": "/cDMQLwT5LpdbA4dc4Twn43sbGRw.jpg", + "backdropPath": "/6jF3HdLkHsEJtw8qKoEyZ9oJ7qB.jpg", + "mediaType": "movie", + "genreIds": [ + 10749 + ], + "genres": [ + "Romance" + ], + "releaseDate": "1990-09-28", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.02, + "voteCount": 213, + "popularity": 7.8415 + }, + { + "id": 10409, + "title": "Strictly Ballroom", + "originalTitle": "Strictly Ballroom", + "overview": "Brave new steps put Scott's career in jeopardy. With a new partner and determination, can he still succeed?", + "posterPath": "/f6vs4DQGuNpLuA5Z7k69uuKpbVG.jpg", + "backdropPath": "/5gPUA8ABoBK4D1GUkL1NXTSS8Wq.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1992-08-20", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 366, + "popularity": 7.8411 + }, + { + "id": 96454, + "title": "The Visitor", + "originalTitle": "La visita", + "overview": "Certain that \"the right man\" is crucial to her escaping the confines of the Italian village where she lives, Pina places an ad in the newspaper. She gets a response from Adolfo, who agrees to travel from his residence in Rome to visit her. As flashbacks shed light on both their pasts, suspense builds about how they will relate to one another.", + "posterPath": "/hJiTRDh38S1UHwZMOcVfURbCx60.jpg", + "backdropPath": "/gcQNBOi3Z8zfxMrUNULPvt3qqmb.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "1963-12-30", + "releaseYear": "1963", + "originalLanguage": "it", + "voteAverage": 7.309, + "voteCount": 35, + "popularity": 7.841 + }, + { + "id": 980296, + "title": "Los Frikis", + "originalTitle": "Los Frikis", + "overview": "Gustavo idolizes his older brother Paco and his punk, \"Frikis\" bandmates. When word reaches the Frikis of a potential reprieve from the effects of the economic crisis, they do the now unthinkable: deliberately inject themselves with HIV to live at a government-run treatment home. It's there that they create their own utopia to live and play music freely.", + "posterPath": "/kCGWNd8yFQ3E695kYuaUUv62pJP.jpg", + "backdropPath": "/fOGTvPtALsehlUFYUoZPUoRIHhd.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-12-20", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.5, + "voteCount": 15, + "popularity": 7.8407 + }, + { + "id": 438799, + "title": "Overlord", + "originalTitle": "Overlord", + "overview": "France, June 1944. On the eve of D-Day, some American paratroopers fall behind enemy lines after their aircraft crashes while on a mission to destroy a radio tower in a small village near the beaches of Normandy. After reaching their target, the surviving paratroopers realise that, in addition to fighting the Nazi troops that patrol the village, they also must fight against something else.", + "posterPath": "/l76Rgp32z2UxjULApxGXAPpYdAP.jpg", + "backdropPath": "/10wHo9VmDvBW9wtSZ26bgjm9GKY.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 10752, + 878 + ], + "genres": [ + "Horror", + "War", + "Science Fiction" + ], + "releaseDate": "2018-11-01", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.734, + "voteCount": 3010, + "popularity": 7.8396 + }, + { + "id": 332179, + "title": "April 9th", + "originalTitle": "9. april", + "overview": "In the early morning of April 9, 1940, the Danish army is alerted: the Germans have crossed the border.", + "posterPath": "/hH1uhfE5eN4FzQIuj8WkdCAL7n0.jpg", + "backdropPath": "/resjA0V2CB4fx5p332KNoNVQvfL.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752, + 36 + ], + "genres": [ + "Drama", + "War", + "History" + ], + "releaseDate": "2015-03-12", + "releaseYear": "2015", + "originalLanguage": "da", + "voteAverage": 6.7, + "voteCount": 106, + "popularity": 7.8374 + }, + { + "id": 738652, + "title": "Copshop", + "originalTitle": "Copshop", + "overview": "On the run from a lethal assassin, a wily con artist devises a scheme to hide out inside a small-town police station. However, when the hit man turns up at the precinct, an unsuspecting rookie cop finds herself caught in the crosshairs.", + "posterPath": "/9LEWWWEhS7SZXFDuH1YYhs0VFct.jpg", + "backdropPath": "/jIkH6cy0Haa1cyitn6gtKmE3lxu.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 28 + ], + "genres": [ + "Thriller", + "Crime", + "Action" + ], + "releaseDate": "2021-09-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 848, + "popularity": 7.833 + }, + { + "id": 1791, + "title": "The Piano Teacher", + "originalTitle": "La Pianiste", + "overview": "Erika Kohut, a sexually repressed piano teacher living with her domineering mother, meets a young man who starts romantically pursuing her.", + "posterPath": "/gNHKYQnP1RnqEhkivHJzBPb4MOP.jpg", + "backdropPath": "/tEhvOU8nJp4v9goYwrJTASJJD3C.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2001-09-05", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 7.3, + "voteCount": 1201, + "popularity": 7.8308 + }, + { + "id": 9947, + "title": "Elektra", + "originalTitle": "Elektra", + "overview": "Elektra the warrior survives a near-death experience, becomes an assassin-for-hire, and tries to protect her two latest targets, a single father and his young daughter, from a group of supernatural assassins.", + "posterPath": "/Z4dAOxjAHTUZO6DJ2WVAsxzwe3.jpg", + "backdropPath": "/2JMOTj6DFjNcg9KToctmfTV55EW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 12 + ], + "genres": [ + "Action", + "Fantasy", + "Adventure" + ], + "releaseDate": "2005-01-13", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 2576, + "popularity": 7.8287 + }, + { + "id": 75612, + "title": "Oblivion", + "originalTitle": "Oblivion", + "overview": "Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack’s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.", + "posterPath": "/eO3r38fwnhb58M1YgcjQBd3VNcp.jpg", + "backdropPath": "/2kVt8oj1cSz4GAP0Hi8SESOiH0T.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12, + 9648 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure", + "Mystery" + ], + "releaseDate": "2013-04-10", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.664, + "voteCount": 11179, + "popularity": 7.8262 + }, + { + "id": 42337, + "title": "Beau Pere", + "originalTitle": "Beau-père", + "overview": "Rémi is a man trapped in a deteriorating marriage. When his wife is unexpectedly killed in a car accident, Rémi is left with his stepdaughter, Marion, who chooses to stay with him rather than live with her birth father. After the initial shock passes, Rémi is caught off-guard when Marion begins expressing her attraction to him. Initially repulsed, Marion's mature beauty wears him down as he finally caves to her seductions.", + "posterPath": "/endIIUYX3ARuMwTIkF8vX3KwYCq.jpg", + "backdropPath": "/cAq2d6HiCiCTjltxOlj0aKcHHD8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1981-09-15", + "releaseYear": "1981", + "originalLanguage": "fr", + "voteAverage": 6.526, + "voteCount": 134, + "popularity": 7.8252 + }, + { + "id": 609181, + "title": "Golden Arm", + "originalTitle": "Golden Arm", + "overview": "A tough lady trucker trains her girly best friend to compete in the National Ladies Arm Wrestling Championship.", + "posterPath": "/w4vwJK62cWhVFq6SZKHIcdHrh5T.jpg", + "backdropPath": "/m2y1YIukPM5Shvb6VxbUejgcScX.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-04-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 17, + "popularity": 7.825 + }, + { + "id": 399031, + "title": "Happy End", + "originalTitle": "Happy End", + "overview": "A well-to-do French family living in Calais deal with a series of setbacks and crises while paying little attention to the grim conditions in the refugee camps within a few miles of their home.", + "posterPath": "/tAHzP9O0MOswvWFv5jtWGTyMYXl.jpg", + "backdropPath": "/97mRqLyRHDeNd3rdHukMu7u46hN.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-06-21", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.16, + "voteCount": 415, + "popularity": 7.8249 + }, + { + "id": 70690, + "title": "Cinderella '80", + "originalTitle": "Cenerentola '80", + "overview": "A feisty 18-year-old Italian-American New Yorker named Cindy is sent off to Rome with her irascible stepmother and vain stepsisters. On the way, she meets and falls in love with, globetrotting bagpacker Mizio, who eventually turns out to be of Italian nobility. There's a fairy stand-in in the form of a spaced-out astrologer, a dance, and she even loses a shoe at one point. Care to venture a guess how it all turns out?", + "posterPath": "/69Sp3PHJ7JIuceoEL2CQzrmwUOa.jpg", + "backdropPath": "/gUUX6XsB5AbxWaEmh3b7VvVHJrv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 10749, + 10402 + ], + "genres": [ + "Drama", + "Fantasy", + "Romance", + "Music" + ], + "releaseDate": "1984-02-16", + "releaseYear": "1984", + "originalLanguage": "it", + "voteAverage": 6.9, + "voteCount": 20, + "popularity": 7.8205 + }, + { + "id": 1426792, + "title": "Mango", + "originalTitle": "Mango", + "overview": "An ambitious hotelier and her reluctant daughter take a trip to Málaga, where they find what they've been craving in a farmer's idyllic mango orchard.", + "posterPath": "/8aTla8ofmtJdfhInKyLTyZifA3k.jpg", + "backdropPath": "/5IHYBbVG1qWv9oNjyh6ZRnn9ZFh.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2025-11-06", + "releaseYear": "2025", + "originalLanguage": "da", + "voteAverage": 6.706, + "voteCount": 34, + "popularity": 7.8191 + }, + { + "id": 581528, + "title": "The Gangster, the Cop, the Devil", + "originalTitle": "악인전", + "overview": "After barely surviving a brutal attack by a sadistic serial killer, crime boss Jang Dong-su is left humiliated. Determined to catch the killer known as K, he forms an uneasy alliance with Jung Tae-seok, a relentless and incorruptible detective who often disrupts his illegal business. However, while Jang Dong-su wants K dead, Jung Tae-suk is determined to bring him to justice. With a deal in place—whoever finds K first will decide his fate—the hunt begins, blurring the lines between crime and law.", + "posterPath": "/oHlM4abRm6BzrRcz9Nup1uidw9H.jpg", + "backdropPath": "/jJJQ1PPXUEchqyZ9YyWzgSNU39Z.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 53 + ], + "genres": [ + "Crime", + "Action", + "Thriller" + ], + "releaseDate": "2019-05-15", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 7.846, + "voteCount": 1368, + "popularity": 7.8168 + }, + { + "id": 818647, + "title": "Through My Window", + "originalTitle": "A través de mi ventana", + "overview": "Raquel's longtime crush on her next-door neighbor turns into something more when he starts developing feelings for her, despite his family's objections.", + "posterPath": "/jmkpZvMVIRrMFevxzOubSBfG0s0.jpg", + "backdropPath": "/4rsomWxlqnHt3muGYK06auhOib6.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "2022-02-04", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 7.361, + "voteCount": 3282, + "popularity": 7.8162 + }, + { + "id": 448119, + "title": "Dolittle", + "originalTitle": "Dolittle", + "overview": "After losing his wife seven years earlier, the eccentric Dr. John Dolittle, famed doctor and veterinarian of Queen Victoria’s England, hermits himself away behind the high walls of Dolittle Manor with only his menagerie of exotic animals for company. But when the young queen falls gravely ill, a reluctant Dolittle is forced to set sail on an epic adventure to a mythical island in search of a cure, regaining his wit and courage as he crosses old adversaries and discovers wondrous creatures.", + "posterPath": "/uoplwswBDy7gsOyrbGuKyPFoPCs.jpg", + "backdropPath": "/xcUf6yIheo78btFqihlRLftdR3M.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 14, + 12 + ], + "genres": [ + "Family", + "Comedy", + "Fantasy", + "Adventure" + ], + "releaseDate": "2020-01-02", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.59, + "voteCount": 3771, + "popularity": 7.816 + }, + { + "id": 416148, + "title": "Rocco", + "originalTitle": "Rocco", + "overview": "Rocco Siffredi is to pornography what Mike Tyson is to boxing or Mick Jagger is to rock’n’roll: a living legend. His mother wanted him to be a priest; with her blessing he became a hardcore performer, devoting his life to one God only: Desire. Rocco Siffredi reveals all, even if it sometimes means busting his own myth: his true story, beginnings, career, wife and children… and the ultimate revelation that will change his life forever.", + "posterPath": "/wGVnyKJm37uXqL1wAeLfnGuYw0m.jpg", + "backdropPath": "/E2qITsMjBW19HUuezmzvEY5NqZ.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2016-11-30", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.525, + "voteCount": 179, + "popularity": 7.8158 + }, + { + "id": 927342, + "title": "Amaran", + "originalTitle": "அமரன்", + "overview": "A heroic true story of Major Mukund Varadarajan, an Indian Army officer who displayed extraordinary bravery during a counterterrorism mission in Kashmir’s Shopian district. The film captures his courage in protecting his nation and the devotion of his wife Indhu Rebecaa Varghese.", + "posterPath": "/yj9DbvPWjytH2EvDpGuJwos69rn.jpg", + "backdropPath": "/7cNE2qydew1c8fqnlhWjkE3DHc2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 12, + 10752 + ], + "genres": [ + "Action", + "Drama", + "Adventure", + "War" + ], + "releaseDate": "2024-10-31", + "releaseYear": "2024", + "originalLanguage": "ta", + "voteAverage": 7.387, + "voteCount": 248, + "popularity": 7.8157 + }, + { + "id": 1078249, + "title": "Boundless", + "originalTitle": "Den grænseløse", + "overview": "In a moment of cowardice, Detective Carl Mørck sends Rose, his junior colleague in Department Q, to the remote Danish island of Bornholm to answer his old colleague Christian Habersaat's repeated requests. But during his forced retirement ceremony Christian kills himself sending Rose into a journey deep into her own traumatic past. Later, Department Q are embroiled into an old cold case of a girl found dead hanging in a tree.", + "posterPath": "/3GBvlNiiKyNTph25cosMExP7vJX.jpg", + "backdropPath": "/48wrf9AAI6K2f7gsKVTh1UT81XW.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2024-02-01", + "releaseYear": "2024", + "originalLanguage": "da", + "voteAverage": 6, + "voteCount": 69, + "popularity": 7.8143 + }, + { + "id": 19286, + "title": "Leprechaun 3", + "originalTitle": "Leprechaun 3", + "overview": "It was a normal night in Las Vegas, Nevada, all the lights were flashing brightly, until a man with one hand, one eye, and one leg walks into a pawn shop with a statue of a hideous looking Leprechaun. The owner claims it's a good luck charm. The statue also wore a medallion around it's neck. The careless pawn shop owner took off the medallion setting the Leprechaun free...", + "posterPath": "/z9NT2smK66pYOjBtmZuKFFTZ478.jpg", + "backdropPath": "/xGGRgSD7vbkyFwrt24x6cG4ytbp.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 10749 + ], + "genres": [ + "Horror", + "Comedy", + "Romance" + ], + "releaseDate": "1995-06-27", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 348, + "popularity": 7.8134 + }, + { + "id": 1030196, + "title": "A Storm Foretold: Det amerikanske oprør", + "originalTitle": "A Storm Foretold: Det amerikanske oprør", + "overview": "With a colossal cigar dangling from the corner of his mouth, a libation in hand, and an unmistakable disdain for his political adversaries, Roger Stone emerges as the quintessential ally to Donald Trump. Revered as a right-wing powerbroker, Stone's influential journey traces back to the era of President Nixon, a legacy inked onto his own back. In a film marked by unparalleled access, Christoffer Guldbrandsen captures the tumultuous final months of the Trump administration, centering on the heart of power and climaxing with the unprecedented storming of Congress. Guldbrandsen finds himself amidst the chaos as Trump supporters converge on Washington, witnessing firsthand Roger Stone's strategic retreat from his hotel suite as the 'Stop the Steal' campaign spirals into a riot. A Storm Foretold – Roger Stone and Die unfolds the narrative of a once-established political party metamorphosing into an anti-democratic movement, where impassioned rhetoric evolves into tangible violence.", + "posterPath": "/f9HNKlQZrI6IDvdVPE4YpyfeEYl.jpg", + "backdropPath": "/6xBBzsETT4nXDTMw82qNwS9ukWm.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2023-03-21", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 11, + "popularity": 7.8118 + }, + { + "id": 1136558, + "title": "Best Wishes to All", + "originalTitle": "みなに幸あれ", + "overview": "A young woman's visit to her grandparents' home leads to the discovery of what's brought them happiness, a revelation that will lead her to question her choices, sanity and reality itself.", + "posterPath": "/vwWYIcVkDb8twv0unOCcriYCSrD.jpg", + "backdropPath": "/b1PmdOB577WosIeimPv7WTdkDLJ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2022-06-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 37, + "popularity": 7.8095 + }, + { + "id": 254201, + "title": "The Absent One", + "originalTitle": "Fasandræberne", + "overview": "Denmark, 2014. A former police officer asks Carl Mørck, head of Department Q, to find out who brutally killed his young twins in 1994. Although a local inhabitant confessed and was convicted of murder, Carl and his partner Assad soon realize that there is something in the case resolution that is terribly wrong.", + "posterPath": "/gnXZXx5rDHfymhB7jCDdBjWgm2j.jpg", + "backdropPath": "/1BqoXxXahujGXSLUfefs3bmUSZy.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2014-10-02", + "releaseYear": "2014", + "originalLanguage": "da", + "voteAverage": 7.028, + "voteCount": 671, + "popularity": 7.8093 + }, + { + "id": 503616, + "title": "Second Act", + "originalTitle": "Second Act", + "overview": "Value Shop assistant manager Maya Vargas wants only one thing for her 43rd birthday -- a promotion. While her résumé may not scream upper management, her track record certainly does; she is an innovator who listens to her customers and delivers results. When she loses the job to a college-educated candidate, Maya sets out to prove to Madison Avenue that street smarts are as valuable as book smarts -- and it's never too late for a second act.", + "posterPath": "/6qf5rkbrzkE13peHxB6ENH9nGMO.jpg", + "backdropPath": "/aRAmr3Eg7pyiIAdCSkD9OT8UvR4.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2018-11-22", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.327, + "voteCount": 1228, + "popularity": 7.8085 + }, + { + "id": 794960, + "title": "Blood Moon", + "originalTitle": "Blood Moon", + "overview": "When Esme and her ten-year-old son, Luna move to a small desert town looking for a fresh start, they attract all the wrong kinds of attention. Esme must battle to protect her son and a terrifying secret before the next full moon reveals all.", + "posterPath": "/9umVH1R5Z2I1Fqzg7qwMIR2gpKG.jpg", + "backdropPath": "/2F6zpkkMianLO9JRRvnujpW4bzp.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 53 + ], + "genres": [ + "Fantasy", + "Horror", + "Thriller" + ], + "releaseDate": "2021-03-26", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 47, + "popularity": 7.8075 + }, + { + "id": 10431, + "title": "War", + "originalTitle": "War", + "overview": "FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?", + "posterPath": "/scFc8RD4sFxB2x0eIOaymphMnYh.jpg", + "backdropPath": "/b5IB4VGjR818tTNcCLHQCIFwQmW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2007-08-24", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.393, + "voteCount": 1972, + "popularity": 7.8075 + }, + { + "id": 429194, + "title": "Journeyman", + "originalTitle": "Journeyman", + "overview": "A boxer suffers a serious head injury during a fight, and must deal with the consequences.", + "posterPath": "/47ITipyIx7QPjB1oyNsR6H52Ic0.jpg", + "backdropPath": "/yuXpvShHGBqcVtG9KcAZxoUgbGF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-03-30", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.608, + "voteCount": 88, + "popularity": 7.8061 + }, + { + "id": 85044, + "title": "Woman of Rome", + "originalTitle": "La romana", + "overview": "During the fascist era, Adriana a beautiful young model, becomes a prostitute after a love affair gone wrong. She meets Mino, a partisan who falls in love with her and wants to redeem her.", + "posterPath": "/s57Oz0WWH91yRYGOBEKw2BxU86G.jpg", + "backdropPath": "/ziCtpc8WlSx27UgYaCK8qnP5u6M.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1954-10-27", + "releaseYear": "1954", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 21, + "popularity": 7.8044 + }, + { + "id": 55309, + "title": "Vincent & Theo", + "originalTitle": "Vincent & Theo", + "overview": "The tragic story of Vincent van Gogh broadened by focusing as well on his brother Theodore, who helped support Vincent. Based on the letters written between the two.", + "posterPath": "/hKsYwJoncAf42hqzCVbp1LBwUxv.jpg", + "backdropPath": "/mMVmRtcAvVDRe9VpusjoCL1pw6s.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1990-12-02", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 66, + "popularity": 7.804 + }, + { + "id": 561, + "title": "Constantine", + "originalTitle": "Constantine", + "overview": "John Constantine has literally been to Hell and back. When he teams up with a policewoman to solve the mysterious suicide of her twin sister, their investigation takes them through the world of demons and angels that exists beneath the landscape of contemporary Los Angeles.", + "posterPath": "/vPYgvd2MwHlxTamAOjwVQp4qs1W.jpg", + "backdropPath": "/26OvB15pqk3eiKJG8LrXDVzO7Mw.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 27 + ], + "genres": [ + "Fantasy", + "Action", + "Horror" + ], + "releaseDate": "2005-02-08", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.116, + "voteCount": 7713, + "popularity": 7.8 + }, + { + "id": 901418, + "title": "Croc!", + "originalTitle": "Croc!", + "overview": "Deep in the English countryside, Lisa and Charlie prepare for their wedding at a Tudor mansion. But an angry crocodile lies in wait, determined to ruin their big day.", + "posterPath": "/u4Xq3M0NMAimB95tgGLblTeVThn.jpg", + "backdropPath": "/iaZqpmhYs4KxNx6M89CesZiMdCv.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2022-08-25", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 2.765, + "voteCount": 17, + "popularity": 7.7992 + }, + { + "id": 132363, + "title": "The Butler", + "originalTitle": "The Butler", + "overview": "A look at the life of Cecil Gaines, who served eight presidents as the White House's head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.", + "posterPath": "/pAi8Bl3ZKX6pANPVhNwbhbQANop.jpg", + "backdropPath": "/g0nLh5eQjTcffJUavvatBNkaSpy.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-08-16", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.332, + "voteCount": 2965, + "popularity": 7.7981 + }, + { + "id": 446807, + "title": "The Girl in the Spider's Web", + "originalTitle": "The Girl in the Spider's Web", + "overview": "After being enlisted to recover a dangerous computer program, hacker Lisbeth Salander and journalist Mikael Blomkvist find themselves caught in a web of spies, cybercriminals and corrupt government officials.", + "posterPath": "/w4ibr8R702DCjwYniry1D1XwQXj.jpg", + "backdropPath": "/ejmwCnlgWXkpDLsrhsnB8Mn6dcu.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2018-10-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.161, + "voteCount": 1448, + "popularity": 7.798 + }, + { + "id": 2383, + "title": "The Bear", + "originalTitle": "L'Ours", + "overview": "An orphan bear cub hooks up with an adult male as they try to dodge human hunters.", + "posterPath": "/ry4A1Y2udvqyDlVHLtSeP1u9qwJ.jpg", + "backdropPath": "/iZuZjmEeWR0D8ak67FNKJuGr7gL.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10751 + ], + "genres": [ + "Adventure", + "Drama", + "Family" + ], + "releaseDate": "1988-10-21", + "releaseYear": "1988", + "originalLanguage": "fr", + "voteAverage": 7.074, + "voteCount": 505, + "popularity": 7.7976 + }, + { + "id": 582908, + "title": "Perfect 10", + "originalTitle": "Perfect 10", + "overview": "14-year-old Leigh lives with her neglectful father on the outskirts of Brighton. She’s a talented gymnast, training hard for her first competition. When an older half-brother appears at her house one night, Leigh’s lonely existence is altered.", + "posterPath": "/5czEYrrPBF7HlzSDmc4Reoelg2N.jpg", + "backdropPath": "/v5WXEPMyD9WfIU1mctRE1EecWs4.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-07-08", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 15, + "popularity": 7.7945 + }, + { + "id": 13186, + "title": "Wrong Turn 2: Dead End", + "originalTitle": "Wrong Turn 2: Dead End", + "overview": "Retired military commander Colonel Dale Murphy hosts the simulated post-apocalyptic reality show where participants are challenged to survive a remote West Virginia wasteland. But the show turns into a nightmarish showdown when each realizes they are being hunted by an inbred family of cannibals determined to make them all dinner!", + "posterPath": "/yd3RMKUmeNQusDsQ3G8LyreAr0O.jpg", + "backdropPath": "/8GWfHRApMYUQl1JSX1drAMs5aY1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2007-08-25", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 1479, + "popularity": 7.7945 + }, + { + "id": 845783, + "title": "Baghead", + "originalTitle": "Baghead", + "overview": "Following the death of her estranged father, Iris learns she has inherited a run-down, centuries-old pub. She travels to Berlin to identify her father’s body and meet with The Solicitor to discuss the estate. Little does she know, when the deed is signed she will become inextricably tied to an unspeakable entity that resides in the pub’s basement – Baghead – a shape-shifting creature that can transform into the dead.", + "posterPath": "/lbOyeiiRYAE6Nm2e7xiNAAaRwZB.jpg", + "backdropPath": "/lVJVLe4EZ1hOKPUWgsZVebCnr0C.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2023-12-28", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.525, + "voteCount": 458, + "popularity": 7.7914 + }, + { + "id": 24752, + "title": "Dragon Ball Z: Cooler's Revenge", + "originalTitle": "ドラゴンボールZ とびっきりの最強対最強", + "overview": "After defeating Frieza, Goku returns to Earth and goes on a camping trip with Gohan and Krillin. Everything is normal until Cooler - Frieza's brother - sends three henchmen after Goku. A long fight ensues between our heroes and Cooler, in which he transforms into the fourth stage of his evolution and has the edge in the fight... until Goku transforms into a Super Saiyan.", + "posterPath": "/uqTSXqjaSgSAT2lCv3GyZeodQPG.jpg", + "backdropPath": "/hph1RMsL4223xyqxfEx3OXodf5E.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "1991-07-20", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 711, + "popularity": 7.7907 + }, + { + "id": 1032274, + "title": "Reggie", + "originalTitle": "Reggie", + "overview": "One of sport’s first and most influential megastars, beloved baseball icon and 5-time World Series champion Reggie Jackson contemplates his legacy as a trailblazing Black athlete fighting for dignity, respect, and a seat at the table in this intimate and revealing documentary exploring his life and barrier-busting career.", + "posterPath": "/xMXHVmyYNQMDiPEZPWl5aVlVKG4.jpg", + "backdropPath": "/3ruKxDCY071SwCOzlzMTlJknvvM.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2023-03-23", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 11, + "popularity": 7.7897 + }, + { + "id": 270938, + "title": "Falcon Rising", + "originalTitle": "Falcon Rising", + "overview": "Chapman is an ex-marine in Brazil's slums, battling the yakuza outfit who attacked his sister and left her for dead.", + "posterPath": "/4wnfTO8mvqcTU62YMkUeKq49VMT.jpg", + "backdropPath": "/plhx3rFbnhpPdDb4HkKm94OhN5p.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28 + ], + "genres": [ + "Adventure", + "Action" + ], + "releaseDate": "2014-09-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.348, + "voteCount": 372, + "popularity": 7.7895 + }, + { + "id": 106867, + "title": "The Barbarian", + "originalTitle": "The Barbarian", + "overview": "An Arab prince masquerades as a tour guide for rich women in order to enrich himself.", + "posterPath": "/vaKMi6qR76oBYJgauS7mtQ73FfZ.jpg", + "backdropPath": "/uLAd0B0iwQQJl3JUY2gcACXZCIg.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10749 + ], + "genres": [ + "Adventure", + "Drama", + "Romance" + ], + "releaseDate": "1933-05-12", + "releaseYear": "1933", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 14, + "popularity": 7.7885 + }, + { + "id": 698687, + "title": "Transformers One", + "originalTitle": "Transformers One", + "overview": "The untold origin story of Optimus Prime and Megatron, better known as sworn enemies, but once were friends bonded like brothers who changed the fate of Cybertron forever.", + "posterPath": "/iRCgqpdVE4wyLQvGYU3ZP7pAtUc.jpg", + "backdropPath": "/cMfokHWle5lfCreoV08cbmkKv6G.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 12, + 10751 + ], + "genres": [ + "Animation", + "Science Fiction", + "Adventure", + "Family" + ], + "releaseDate": "2024-09-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 1454, + "popularity": 7.7879 + }, + { + "id": 51482, + "title": "Death Note Relight 1: Visions of a God", + "originalTitle": "DEATH NOTE リライト ~幻視する神~", + "overview": "When rogue shinigami Ryuk leaves his Death Note in the human world, he has no idea how far the one who finds it will take his new-found power. With the Death Note in hand, brilliant high school student Light Yagami vows to rid the world of evil. A recap of Death Note episodes 1–26, with alternate footage.", + "posterPath": "/qDhbGqjZ7yFwa7FMIzuiQTQMfEQ.jpg", + "backdropPath": "/lyQCUSslaE8fe4CHHKwXvTeudQf.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 80, + 18, + 14, + 53, + 16 + ], + "genres": [ + "TV Movie", + "Crime", + "Drama", + "Fantasy", + "Thriller", + "Animation" + ], + "releaseDate": "2009-09-23", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.909, + "voteCount": 372, + "popularity": 7.7862 + }, + { + "id": 299054, + "title": "Expend4bles", + "originalTitle": "Expend4bles", + "overview": "Armed with every weapon they can get their hands on and the skills to use them, The Expendables are the world’s last line of defense and the team that gets called when all other options are off the table. But new team members with new styles and tactics are going to give “new blood” a whole new meaning.", + "posterPath": "/iwsMu0ehRPbtaSxqiaUDQB9qMWT.jpg", + "backdropPath": "/rMvPXy8PUjj1o8o1pzgQbdNCsvj.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2023-09-15", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.092, + "voteCount": 1774, + "popularity": 7.7857 + }, + { + "id": 48138, + "title": "Unknown", + "originalTitle": "Unknown", + "overview": "A man awakens from a coma, only to discover that someone has taken on his identity and that no one, (not even his wife), believes him. With the help of a young woman, he sets out to prove who he is.", + "posterPath": "/sqbJ2Hd6OX4fIC8I55NGh1EverJ.jpg", + "backdropPath": "/f2d419xzKDbtVpToJorTxlKMvgQ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 9648, + 53 + ], + "genres": [ + "Action", + "Mystery", + "Thriller" + ], + "releaseDate": "2011-02-16", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.686, + "voteCount": 4040, + "popularity": 7.7845 + }, + { + "id": 10340, + "title": "Lady and the Tramp", + "originalTitle": "Lady and the Tramp", + "overview": "Lady, a golden cocker spaniel, meets up with a mongrel dog who calls himself the Tramp. He is obviously from the wrong side of town, but happenings at Lady's home make her decide to travel with him for a while.", + "posterPath": "/340NcWz9SQXWQyf4oicMxjbrLOb.jpg", + "backdropPath": "/yGgEg4yimYQJLZrZg3Qhogp2raQ.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 10749 + ], + "genres": [ + "Family", + "Animation", + "Romance" + ], + "releaseDate": "1955-06-22", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 5501, + "popularity": 7.7843 + }, + { + "id": 616446, + "title": "Brothers", + "originalTitle": "Brothers", + "overview": "A reformed criminal's attempt at going straight is derailed when he reunites with his sanity-testing twin brother on a road trip for the score of a lifetime. Dodging bullets, the law, and an overbearing mother along the way, they must heal their severed family bond before they end up killing each other.", + "posterPath": "/Akweo95FGyDpucYVT81h0SbX8Ky.jpg", + "backdropPath": "/bAO9hLGRWOJMUFXmKwa4kST6I5N.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2024-10-10", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.954, + "voteCount": 305, + "popularity": 7.7836 + }, + { + "id": 936245, + "title": "Hidden Face", + "originalTitle": "히든페이스", + "overview": "Su-yeon, a cellist in an orchestra led by her fiancé and conductor Sung-jin, disappears one day, leaving behind only a video recording. Sung-jin is devasted over the loss of Su-yeon, but feels a strong attraction to Mi-ju, a cellist who fills in for his fiancée. Then one rainy night, Sung-jin and Mi-ju get swept away by their mutual desires for each other and commit an unforgivable act at Su-yeon's house.", + "posterPath": "/slRaAeEWbU8gM834X10qNhBhVIv.jpg", + "backdropPath": "/jgySLjw9ZDKbnGf0VlhlHT7iHSi.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53 + ], + "genres": [ + "Mystery", + "Thriller" + ], + "releaseDate": "2024-11-20", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 4.7, + "voteCount": 48, + "popularity": 7.7833 + }, + { + "id": 84119, + "title": "Goodbye Again", + "originalTitle": "Goodbye Again", + "overview": "Middle-aged businesswoman Paula Tessier rejects the advances of her client's amusing 25-year-old son, Philip Van der Besh, but reconsiders when her longtime philandering partner begins yet another casual affair with a younger woman. She soon learns that May-December romances with older women are frowned upon in society.", + "posterPath": "/ioB65VUB3jgFruUw9uc17ZVL6kH.jpg", + "backdropPath": "/AbsCoVCde4PoT2mUs7trdezkVXW.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1961-05-23", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 40, + "popularity": 7.7828 + }, + { + "id": 490017, + "title": "Your Move", + "originalTitle": "Your Move", + "overview": "A man must go to extreme lengths to discover what happened to his kidnapped wife and daughter.", + "posterPath": "/cU2DW4kTRhhRrAi0HAhghH1sXr6.jpg", + "backdropPath": "/9tp9CtWnVYpAPDLGJ7ySB5WRPtl.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2017-12-01", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.364, + "voteCount": 33, + "popularity": 7.7816 + }, + { + "id": 676839, + "title": "Human Animals", + "originalTitle": "Animales humanos", + "overview": "The harmony of a seemingly idyllic neighborhood is disrupted when a dog attacks a young girl.", + "posterPath": "/5Ba51RwONmbrotqX1FgHELYtffU.jpg", + "backdropPath": "/5eh3FcbEEK9jyoZr6CApEFwvlwU.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2020-12-12", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 6.778, + "voteCount": 72, + "popularity": 7.7809 + }, + { + "id": 760204, + "title": "The Lair", + "originalTitle": "The Lair", + "overview": "Royal Air Force pilot Lt. Kate Sinclair is on her final flight mission when her jet is shot down over one of the most dangerous rebel strongholds in Afghanistan. She finds refuge in an abandoned underground bunker where deadly man-made creatures known as Ravagers — half-human, half-alien, and hungry for human flesh — are awakened.", + "posterPath": "/ifRFLx83Xk1DcwAS3OScgI6HmWO.jpg", + "backdropPath": "/cBNLVp6sDn9xoK8gZYBw1ycAjaD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28 + ], + "genres": [ + "Horror", + "Action" + ], + "releaseDate": "2022-10-28", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.596, + "voteCount": 282, + "popularity": 7.7802 + }, + { + "id": 12656, + "title": "Feeling Minnesota", + "originalTitle": "Feeling Minnesota", + "overview": "Sam Clayton's marriage to ex-stripper Freddie comes about when she's strong-armed into the match by Red, a club proprietor who once did her a favor. But Freddie falls in love with Jjaks, Sam's brother, and the pair tries to escape the situation together. It isn't long before both Sam and Red catch up with them, resulting in threats against the two of them -- although tension also starts to build between Sam and Red.", + "posterPath": "/fCJ5eUZw6mGS53spQxGUu7rzFm1.jpg", + "backdropPath": "/pWQccERGRrNRJTEK9cOLV8M4Efx.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 53, + 80, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Thriller", + "Crime", + "Romance" + ], + "releaseDate": "1996-09-13", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 5.445, + "voteCount": 173, + "popularity": 7.7786 + }, + { + "id": 8047, + "title": "Matador", + "originalTitle": "Matador", + "overview": "A conflicted youth confesses to crimes he didn't commit while a man and woman aroused by death become obsessed with each other.", + "posterPath": "/jBBLDaF7j3EeTPkOwDPqdfSCWWk.jpg", + "backdropPath": "/p88RfbdSazcFFEkAKT8fBQV4HWZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1986-03-07", + "releaseYear": "1986", + "originalLanguage": "es", + "voteAverage": 6.67, + "voteCount": 275, + "popularity": 7.7778 + }, + { + "id": 949903, + "title": "Apaches: Gang of Paris", + "originalTitle": "Apaches", + "overview": "Paris, 1884. The lives of three orphaned children wandering the streets dominated by ruthless criminals change tragically when they carry out a daring robbery.", + "posterPath": "/tUez9nfKgolfL2seCMFz2VofgI2.jpg", + "backdropPath": "/l8kFJnULJWZIJwlKTUgGScisgLi.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2023-03-29", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 5.971, + "voteCount": 121, + "popularity": 7.7773 + }, + { + "id": 25527, + "title": "The Ron Clark Story", + "originalTitle": "The Ron Clark Story", + "overview": "Passionate and innovative teacher Ron Clark leaves his small hometown to teach in one of Harlem's toughest schools. But to break through to the students, he must use unconventional methods, including his ground-breaking classroom rules, to help them reach their potential. Based on a true story.", + "posterPath": "/gSu3GKl3fYt8yFPr8ZYAZWoQNok.jpg", + "backdropPath": "/qQ8gvPDWP073sljX9HIbu0ReTsS.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 18 + ], + "genres": [ + "TV Movie", + "Drama" + ], + "releaseDate": "2006-08-13", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.494, + "voteCount": 159, + "popularity": 7.7755 + }, + { + "id": 717672, + "title": "Kindred", + "originalTitle": "Kindred", + "overview": "When her boyfriend Ben suddenly dies in an accident, mother-to-be Charlotte collapses upon receiving the news. She wakes up in Ben’s family home, a crumbling old manor house in the middle of nowhere with Ben’s overbearing mother and his controlling stepbrother who are determined to care for her. Grief-stricken and increasingly haunted by visions possibly brought on by the pregnancy, Charlotte begins to doubt the family's intentions and her suspicions grow that they may be trying to control her and her unborn baby.", + "posterPath": "/qvVtPCnkY0k4B5iy1tCR7QWLsIw.jpg", + "backdropPath": "/u7m85sSfi5FziizIWOh14nJDvKz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 27 + ], + "genres": [ + "Drama", + "Mystery", + "Horror" + ], + "releaseDate": "2020-11-06", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.417, + "voteCount": 30, + "popularity": 7.774 + }, + { + "id": 61578, + "title": "Esther Kahn", + "originalTitle": "Esther Kahn", + "overview": "A Jewish girl in 19th century London dreams of becoming a stage actress.", + "posterPath": "/ikotkI3DKEnDENBS1ZxSLEPwVdF.jpg", + "backdropPath": "/rYQkXduVSBubBgMQS20OoPGdFfs.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2000-10-04", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 26, + "popularity": 7.773 + }, + { + "id": 997265, + "title": "Rule 34", + "originalTitle": "Regra 34", + "overview": "Simone is a young law student who studies criminal law and advocates for women's rights. On her free time, she's a cam girl that makes live sexual performances on the Internet. One night, she watches a video that awakens her interest in BDSM-related activities, leading her into a series of conflicts dominated by violence and eroticism.", + "posterPath": "/nIiSeI4i9uBlKlxUncgoKyoOQEu.jpg", + "backdropPath": "/pHxggyWVzyYlnSVov6vURcaOy3k.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-01-19", + "releaseYear": "2023", + "originalLanguage": "pt", + "voteAverage": 5.31, + "voteCount": 21, + "popularity": 7.7708 + }, + { + "id": 585759, + "title": "The Coldest Game", + "originalTitle": "Ukryta gra", + "overview": "Warsaw, Poland, during the Cuban Missile Crisis, 1962. Josh Mansky, a troubled math genius and former US chess champion, is recruited to hold a dangerous public match against the Soviet champion, while playing the deadly game of espionage hidden in the darkest shadows of a hostile territory.", + "posterPath": "/7YRO2Jamqb6ck5vJqrwWgMFWuPW.jpg", + "backdropPath": "/3UHkAGbm8H8hbgIUuxyMHOHHLuY.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2019-11-08", + "releaseYear": "2019", + "originalLanguage": "pl", + "voteAverage": 6.205, + "voteCount": 315, + "popularity": 7.7685 + }, + { + "id": 126413, + "title": "Sandow", + "originalTitle": "Sandow", + "overview": "Strong-man Eugene Sandow flexes his muscles and strikes a few poses in front of a black background. This was a short film shot by William K.L. Dickson for the American Mutoscope Company and is not the 1894 Edison film shot at the Black Maria.", + "posterPath": "/v9W18L4PYmer4gUl5vNt6G8LTph.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1896-09-30", + "releaseYear": "1896", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 68, + "popularity": 7.7645 + }, + { + "id": 811941, + "title": "Devara: Part 1", + "originalTitle": "Devara: Part 1", + "overview": "Devara, a fearless man from a coastal region, embarks on a perilous journey into the treacherous world of the sea to safeguard the lives of his people. Unbeknownst to him, his brother Bhaira is plotting a conspiracy against him. As events unfold, Devara passes on his legacy to his mild-mannered and timid son, Varada.", + "posterPath": "/lQfuaXjANoTsdx5iS0gCXlK9D2L.jpg", + "backdropPath": "/hAQnXxOwCjgYcKRgTdYPRC8neqL.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2024-09-26", + "releaseYear": "2024", + "originalLanguage": "te", + "voteAverage": 6.936, + "voteCount": 204, + "popularity": 7.7643 + }, + { + "id": 760873, + "title": "The Colony", + "originalTitle": "Tides", + "overview": "In the not-too-distant future: after a global catastrophe has wiped out nearly all of humanity on Earth, an elite astronaut from Space Colony Kepler must make a decision that will seal the fate of the people on both planets.", + "posterPath": "/nX7ZUYwgGOCe5nXXwpNg4hAf1xB.jpg", + "backdropPath": "/etXdtwnruC2ZM1ZdQJ8V3d71Eyd.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2021-08-26", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 324, + "popularity": 7.7631 + }, + { + "id": 457041, + "title": "Elizabeth Harvest", + "originalTitle": "Elizabeth Harvest", + "overview": "The newly married Elizabeth arrives with her new husband, the scientist Henry, at a magnificent house. He tells her that she can do there anything she pleases, except to enter a certain closed room.", + "posterPath": "/oiwY0z17ZqCPVSK1plvL11rSKuK.jpg", + "backdropPath": "/wJprgIXjjpV3iZcMdF76Hyen75e.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 27, + 9648 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Horror", + "Mystery" + ], + "releaseDate": "2018-08-10", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.201, + "voteCount": 375, + "popularity": 7.7608 + }, + { + "id": 39100, + "title": "Dragon Ball Z: The World's Strongest", + "originalTitle": "ドラゴンボールZ この世で一番強いヤツ", + "overview": "The evil Dr. Kochin uses the dragon balls to resurrect his mentor, Dr. Wheelo, in an effort to take over the world. Dr. Wheelo, his body having been destroyed by the avalanche that killed him fifty years before, desires the body of the strongest fighter in the world as his new vessel. Believing Roshi to be the world's strongest warrior, Dr. Kochin abducts Bulma and forces Roshi to surrender himself to save her. When Goku hears of their abduction, he goes to their rescue.", + "posterPath": "/5elbm3iLgGQ6nA5vqUmi9vIojbF.jpg", + "backdropPath": "/xVHgLL32VHlPMl1syvVMuZFSVLM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "1990-03-10", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 6.625, + "voteCount": 532, + "popularity": 7.7593 + }, + { + "id": 9954, + "title": "The Covenant", + "originalTitle": "The Covenant", + "overview": "Four young men who belong to a supernatural legacy are forced to battle a fifth power long thought to have died out. Another great force they must contend with is the jealousy and suspicion that threatens to tear them apart.", + "posterPath": "/skHRXm3m0BDp2E2uHkAWKT6OlQH.jpg", + "backdropPath": "/vn9BFSlvwILE4wPUITi4XDD3fEK.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 12, + 28 + ], + "genres": [ + "Fantasy", + "Horror", + "Adventure", + "Action" + ], + "releaseDate": "2006-09-07", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 1060, + "popularity": 7.7588 + }, + { + "id": 1224447, + "title": "Mascarpone: The Rainbow Cake", + "originalTitle": "Maschile plurale", + "overview": "Three years have passed, Antonio and Luca are seeing each other for the first time since Denis's death. Luca, who has hit rock bottom after the death of his friend, was lucky enough to meet Tancredi, his current boyfriend, ...while Antonio has focused on his work, so much so that he is now a well-known chef in a pastry shop. It is clear that there is still a special relationship between the two, but Antonio mistakes Luca's affection for something more and does everything he can to ruin his relationship with Tancredi, even though Cristina does not approve of his behavior. Will Antonio learn to leave the past behind in order to fully experience what the future has to offer him?", + "posterPath": "/mg11CIXKEPu5US71jXZlUcSGaR5.jpg", + "backdropPath": "/93OIVDMhG8qdOnEcPAlcXT8mlRc.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2024-09-20", + "releaseYear": "2024", + "originalLanguage": "it", + "voteAverage": 5.909, + "voteCount": 11, + "popularity": 7.7551 + }, + { + "id": 154400, + "title": "The Drop", + "originalTitle": "The Drop", + "overview": "Bob Saginowski finds himself at the center of a robbery gone awry and entwined in an investigation that digs deep into the neighborhood's past where friends, families, and foes all work together to make a living - no matter the cost.", + "posterPath": "/olQInYvVCW2wycMSU1ogo9Jshml.jpg", + "backdropPath": "/kydclLUnhGMuoCxl6VRfSSwdRRO.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2014-09-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.823, + "voteCount": 2331, + "popularity": 7.754 + }, + { + "id": 621954, + "title": "Concrete Cowboy", + "originalTitle": "Concrete Cowboy", + "overview": "Sent to live with his estranged father for the summer, a rebellious teen finds kinship in a tight-knit Philadelphia community of Black cowboys.", + "posterPath": "/qRW2poVt06WCVlIhrolWS5af4YV.jpg", + "backdropPath": "/9XPFB98nYhQG05btI1NDJidUg2J.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "2020-09-13", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 202, + "popularity": 7.7537 + }, + { + "id": 225886, + "title": "Sex Tape", + "originalTitle": "Sex Tape", + "overview": "When Jay and Annie first got together, their romantic connection was intense – but ten years and two kids later, the flame of their love needs a spark. To kick things up a notch, they decide – why not? – to make a video of themselves trying out every position in The Joy of Sex in one marathon three-hour session. It seems like a great idea – until they discover that their most private video is no longer private. With their reputations on the line, they know they’re just one click away from being laid bare to the world... but as their race to reclaim their video leads to a night they'll never forget, they'll find that their video will expose even more than they bargained for.", + "posterPath": "/pFdS7SIdjcrYXtf141dabWVly9B.jpg", + "backdropPath": "/nFCUBRDF4C6RWopNo0nAfvMA6mm.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-07-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 4151, + "popularity": 7.753 + }, + { + "id": 6280, + "title": "Junior", + "originalTitle": "Junior", + "overview": "A research scientist becomes the world's first pregnant man in order to test a drug he and a colleague have designed for expectant women. To carry out the trial, he has an embryo implant, believing that he will only carry the baby for three months – hardly expecting to face the prospect of giving birth.", + "posterPath": "/swxxtzYc60qqnFhfWMFdmx9QXvY.jpg", + "backdropPath": "/sK1IMe4yNH5Je1PBmcgw7aFA8HB.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878 + ], + "genres": [ + "Comedy", + "Science Fiction" + ], + "releaseDate": "1994-11-22", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 5.19, + "voteCount": 1579, + "popularity": 7.748 + }, + { + "id": 10045, + "title": "District B13", + "originalTitle": "Banlieue 13", + "overview": "Set in the ghettos of Paris in 2010, an undercover cop and ex-thug try to infiltrate a gang in order to defuse a neutron bomb.", + "posterPath": "/u9gOfYelDwmvAmXWC1jgCFIY8RB.jpg", + "backdropPath": "/dSbXXdDcnQFimUf1mhkPk5dkQU3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2004-11-09", + "releaseYear": "2004", + "originalLanguage": "fr", + "voteAverage": 6.805, + "voteCount": 1928, + "popularity": 7.7467 + }, + { + "id": 13448, + "title": "Angels & Demons", + "originalTitle": "Angels & Demons", + "overview": "Harvard symbologist Robert Langdon is recruited by the Vatican to investigate the apparent return of the Illuminati – a secret, underground organization – after four cardinals are kidnapped on the night of the papal conclave.", + "posterPath": "/tFZQAuulEOtFTp0gHbVdEXwGrYe.jpg", + "backdropPath": "/olz8Xw3yOLpBAHKgPoSRwmomdM.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "2009-04-20", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.715, + "voteCount": 7126, + "popularity": 7.7458 + }, + { + "id": 660717, + "title": "Enfant Terrible", + "originalTitle": "Enfant Terrible", + "overview": "When 22-year-old Rainer Werner Fassbinder storms the stage of a small, progressive theatre in Munich 1967, and seizes the production without further ado, nobody suspects this brazen young rebel to become one of the most important post-war German filmmakers. Despite early setbacks, many of his films breakout at the most renowned films festivals and polarise audience, critics and filmmakers alike. His radical views and self-exploitation, as well as his longing for love, have made him one of the most fascinating film directors of this time.", + "posterPath": "/mYT6aGySsVohb2PZVMZfS1l4eBo.jpg", + "backdropPath": "/pGF6nltPhJpCUH93K89DxSCxmtK.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2020-10-01", + "releaseYear": "2020", + "originalLanguage": "de", + "voteAverage": 4.3, + "voteCount": 36, + "popularity": 7.7441 + }, + { + "id": 48017, + "title": "The Poet", + "originalTitle": "The Poet", + "overview": "At the dawn of World War 2, a Rabbi's daughter and a disenchanted German soldier fall in love and are separated by the war. They struggle on a perilous journey to find one another.", + "posterPath": "/iHfqatnKlnMeLel63IOAjH5HAHP.jpg", + "backdropPath": "/8Cvznhsf5s8uTZTaDk8BmMtQ8Yq.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "2007-08-07", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.368, + "voteCount": 34, + "popularity": 7.7438 + }, + { + "id": 894169, + "title": "Vendetta", + "originalTitle": "Vendetta", + "overview": "When his daughter is murdered, William Duncan takes the law into his own hands, setting out on a quest for retribution. After killing the street thug responsible for her death, he finds himself in the middle of a war with the thug's brother, father, and their gang, who are equally hell-bent on getting even. What ensues is a tense back-and-forth game of vengeance. By the end, William comes to find that the quest for revenge never has a winner.", + "posterPath": "/bvhmqU6GUkigo6SSYL3ttkBhNER.jpg", + "backdropPath": "/33qGtN2GpGEb94pn25PDPeWQZLk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2022-05-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.986, + "voteCount": 320, + "popularity": 7.7422 + }, + { + "id": 438790, + "title": "Grand Froid", + "originalTitle": "Grand Froid", + "overview": "In a small town lost in the middle of nowhere, Edmond Zweck's funeral business is on the wing. The company now has only two employees: Georges, Zweck's right-hand man, and Eddy, a young man still a novice in the trade. One fine morning, however, a dead man pointed his nose. Hope is born again. Georges and Eddy are responsible for leading the deceased to his last abode. But in search of the cemetery that can not be found, the funeral convoy goes astray and the journey turns into a fiasco.", + "posterPath": "/oTHXSrpz9HzAScM8OcfGlYhFiJ5.jpg", + "backdropPath": "/9fQBlmNb6ZNtTIptkzvXZkQQrwP.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2017-06-28", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 5.4, + "voteCount": 62, + "popularity": 7.742 + }, + { + "id": 9594, + "title": "Double Impact", + "originalTitle": "Double Impact", + "overview": "Jean Claude Van Damme plays a dual role as Alex and Chad, twins separated at the death of their parents. Chad is raised by a family retainer in Paris, Alex becomes a petty crook in Hong Kong. Seeing a picture of Alex, Chad rejoins him and convinces him that his rival in Hong Kong is also the man who killed their parents. Alex is suspicious of Chad, especially when it comes to his girlfriend.", + "posterPath": "/tmzwvSqoMC37Tgqwj4mA2dHNSmw.jpg", + "backdropPath": "/iI0n28l5vn3K1GdXHVoA54kRemv.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 80, + 18 + ], + "genres": [ + "Thriller", + "Action", + "Crime", + "Drama" + ], + "releaseDate": "1991-07-31", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.196, + "voteCount": 1154, + "popularity": 7.7417 + }, + { + "id": 8055, + "title": "The Reader", + "originalTitle": "The Reader", + "overview": "The story of Michael Berg, a German lawyer who, as a teenager in the late 1950s, had an affair with an older woman, Hanna, who then disappeared only to resurface years later as one of the defendants in a war crimes trial stemming from her actions as a concentration camp guard late in the war. He alone realizes that Hanna is illiterate and may be concealing that fact at the expense of her freedom.", + "posterPath": "/r0WURbmnhgKeBpHcpDULBgRedQM.jpg", + "backdropPath": "/waMGsUEoHfYj3A1uRMUUgpBa71d.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2008-12-10", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.468, + "voteCount": 3282, + "popularity": 7.7397 + }, + { + "id": 291151, + "title": "The Stranger", + "originalTitle": "The Stranger", + "overview": "A supernatural thriller, laced by flashbacks, and set in Canada’s North-West, “The Stranger” turns on the mysterious titular figure of Martin, who comes to a small quiet town seeking to kill his wife Ana who suffers from a very dangerous decease that makes her addicted to human blood - just like himself-. However, when he arrives to the town, he discovers that Ana has been dead for a couple of years and decides to commit suicide to definitely eradicate this dangerous decease, but, before he can do it, Martin's brutally attacked by three local thugs led by Caleb, the son of a corrupt police lieutenant, and the incident suddenly starts a snowball that will plunge the community into a bloodbath.", + "posterPath": "/8YjSy1vG4yuuatgdAU1NbitA52F.jpg", + "backdropPath": "/plTx6iHNbLxNXKL4swZxl4RVT2w.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 9648 + ], + "genres": [ + "Thriller", + "Horror", + "Mystery" + ], + "releaseDate": "2014-06-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.728, + "voteCount": 101, + "popularity": 7.7376 + }, + { + "id": 11770, + "title": "Shaolin Soccer", + "originalTitle": "少林足球", + "overview": "A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.", + "posterPath": "/z6ZQqwoxWy9muIxwUP4K2zWw7BU.jpg", + "backdropPath": "/lMRX4cLx4hxYth3iQ96c0E1RHGB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2001-07-05", + "releaseYear": "2001", + "originalLanguage": "cn", + "voteAverage": 7.147, + "voteCount": 2425, + "popularity": 7.7367 + }, + { + "id": 42782, + "title": "Circus World", + "originalTitle": "Circus World", + "overview": "Circus owner Matt Masters is beset by disasters as he attempts a European tour of his circus. At the same time, he is caught in an emotional bind between his adopted daughter and her mother.", + "posterPath": "/vwioP29cTAsQP1dUrVa1yvLVNmz.jpg", + "backdropPath": "/cguzwAWMrT9yhSvilgaZxNhipdo.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1964-06-25", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 78, + "popularity": 7.7331 + }, + { + "id": 79694, + "title": "The Apparition", + "originalTitle": "The Apparition", + "overview": "Plagued by frightening occurrences in their home, Kelly and Ben learn that a university's parapsychology experiment produced an entity that is now haunting them. The malevolent spirit feeds on fear and torments the couple no matter where they run. Desperate, Kelly and Ben turn to a paranormal researcher, but even with his aid, it may already be too late to save themselves from the terrifying presence.", + "posterPath": "/jO45nIEQMWHE0I68aGls3mRJR8M.jpg", + "backdropPath": "/sie33RpTUQJxJq2XXjrOBXJpASL.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2012-08-23", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 4.457, + "voteCount": 449, + "popularity": 7.7321 + }, + { + "id": 13377, + "title": "How the Grinch Stole Christmas!", + "originalTitle": "How the Grinch Stole Christmas!", + "overview": "Bitter and hateful, the Grinch is irritated at the thought of a nearby village having a happy time celebrating Christmas. Disguised as Santa Claus, with his dog made to look like a reindeer, he decides to raid the village to steal all the Christmas things.", + "posterPath": "/7ir0iRuPK9OEuH569cp0nF5CJce.jpg", + "backdropPath": "/1Q5b34cge5nClCpamxf3HkU18W1.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "1966-12-18", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1091, + "popularity": 7.732 + }, + { + "id": 646097, + "title": "Rebel Ridge", + "originalTitle": "Rebel Ridge", + "overview": "A former Marine confronts corruption in a small town when local law enforcement unjustly seizes the bag of cash he needs to post his cousin's bail.", + "posterPath": "/xEt2GSz9z5rSVpIHMiGdtf0czyf.jpg", + "backdropPath": "/cyKH7pDFlxIXluqRyNoHHEpxSDX.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 53 + ], + "genres": [ + "Crime", + "Action", + "Thriller" + ], + "releaseDate": "2024-08-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.992, + "voteCount": 1476, + "popularity": 7.7293 + }, + { + "id": 955555, + "title": "The Roundup: No Way Out", + "originalTitle": "범죄도시 3", + "overview": "Detective Ma Seok-do changes his affiliation from the Geumcheon Police Station to the Metropolitan Investigation Team, in order to eradicate Japanese gangsters who enter Korea to commit heinous crimes.", + "posterPath": "/lW6IHrtaATxDKYVYoQGU5sh0OVm.jpg", + "backdropPath": "/5DKVH8KeqFwPacWFMyYqTaECxJP.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 35, + 53 + ], + "genres": [ + "Action", + "Crime", + "Comedy", + "Thriller" + ], + "releaseDate": "2023-05-31", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.2, + "voteCount": 500, + "popularity": 7.7276 + }, + { + "id": 5123, + "title": "August Rush", + "originalTitle": "August Rush", + "overview": "Lyla and Louis, a singer and a musician, fall in love, but are soon compelled to separate. Lyla is forced to give up her newborn but unknown to her, he grows up to become a musical genius.", + "posterPath": "/oA6ZeICPINiS6YtD5WZeBaGVmuT.jpg", + "backdropPath": "/i3pONuqGZSR3UYOOdBeU2CiQnxj.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 18, + 10402 + ], + "genres": [ + "Family", + "Drama", + "Music" + ], + "releaseDate": "2007-11-21", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 2779, + "popularity": 7.7264 + }, + { + "id": 250657, + "title": "Fed Up", + "originalTitle": "Fed Up", + "overview": "Fed Up blows the lid off everything we thought we knew about food and weight loss, revealing a 30-year campaign by the food industry, aided by the U.S. government, to mislead and confuse the American public, resulting in one of the largest health epidemics in history.", + "posterPath": "/tiS6NjxcMzui3AMgOanQFrQnYUA.jpg", + "backdropPath": "/9nPM0bDtVnNJF9ZfZS1fFz5ocMZ.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2014-05-09", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.341, + "voteCount": 249, + "popularity": 7.7252 + }, + { + "id": 509967, + "title": "6 Underground", + "originalTitle": "6 Underground", + "overview": "After faking his death, a tech billionaire recruits a team of international operatives for a bold and bloody mission to take down a brutal dictator.", + "posterPath": "/lnWkyG3LLgbbrIEeyl5mK5VRFe4.jpg", + "backdropPath": "/eFw5YSorHidsajLTayo1noueIxI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Thriller" + ], + "releaseDate": "2019-12-10", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.342, + "voteCount": 5000, + "popularity": 7.7248 + }, + { + "id": 18228, + "title": "Blue Hawaii", + "originalTitle": "Blue Hawaii", + "overview": "Chad Gates has just been discharged from the Army, and is happy to be back in Hawaii with his surf-board, his beach buddies and his girlfriend.", + "posterPath": "/kujIwcrOsgcyRLbs5xfwU1ADwHk.jpg", + "backdropPath": "/xjenQamrkIiKWlfBviOnL5j7E34.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 35, + 10749 + ], + "genres": [ + "Music", + "Comedy", + "Romance" + ], + "releaseDate": "1961-11-22", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 5.888, + "voteCount": 143, + "popularity": 7.7237 + }, + { + "id": 913290, + "title": "Barbarian", + "originalTitle": "Barbarian", + "overview": "In town for a job interview, a young woman arrives at her Airbnb late at night only to find that it has been mistakenly double-booked and a strange man is already staying there. Against her better judgement, she decides to stay the night anyway.", + "posterPath": "/idT5mnqPcJgSkvpDX7pJffBzdVH.jpg", + "backdropPath": "/b5Sq1p2qnLNlaU9XOwjNNdbWmkP.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2022-09-08", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 2983, + "popularity": 7.7225 + }, + { + "id": 458305, + "title": "Vivarium", + "originalTitle": "Vivarium", + "overview": "A young woman and her fiancé are in search of the perfect starter home. After following a mysterious real estate agent to a new housing development, the couple finds themselves trapped in a maze of identical houses and forced to raise an otherworldly child.", + "posterPath": "/myf3qzpeN0JbuFRPwSpJcz7rmAT.jpg", + "backdropPath": "/zLa8fA7boGtNoNH7n6iYi9UqoaH.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 9648, + 27 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Mystery", + "Horror" + ], + "releaseDate": "2019-09-07", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.044, + "voteCount": 2368, + "popularity": 7.7209 + }, + { + "id": 638965, + "title": "Mandibles", + "originalTitle": "Mandibules", + "overview": "Two dimwitted friends hatch a money-making scheme after discovering a giant fly in the trunk of a car.", + "posterPath": "/pdizbiLiOiV8ysYknz79VMitsfU.jpg", + "backdropPath": "/1Rl22zqQw5YGVmmAPpMyQDUD723.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2021-05-19", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 6.304, + "voteCount": 587, + "popularity": 7.7205 + }, + { + "id": 64854, + "title": "Seconds Apart", + "originalTitle": "Seconds Apart", + "overview": "Seth and Jonah are twins with a dangerous ability: telekinesis. Things start to spiral out of control as their classmates die in twisted and bizarre ways. Jealousy begins to divide them and soon they can no longer trust each other, leading up to a horrific battle against themselves.", + "posterPath": "/wrWQbrGHBd0rVuymlZvSco5BNlr.jpg", + "backdropPath": "/swbczpGiNTmlqwhW79EoZMOEOJR.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2011-01-28", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.663, + "voteCount": 123, + "popularity": 7.7182 + }, + { + "id": 10028, + "title": "Honey", + "originalTitle": "Honey", + "overview": "Honey Daniels dreams of making a name for herself as a hip-hop choreographer. When she's not busy hitting downtown clubs with her friends, she teaches dance classes at a nearby community center in Harlem, N.Y., as a way to keep kids off the streets. Honey thinks she's hit the jackpot when she meets a hotshot director casts her in one of his music videos. But, when he starts demanding sexual favors from her, Honey makes a decision that will change her life.", + "posterPath": "/gnY6d7BoddAAQ8s42fxCJK8lL1A.jpg", + "backdropPath": "/9dixOiaWMKAJiqBiIf7GgHADsG4.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18, + 10749 + ], + "genres": [ + "Music", + "Drama", + "Romance" + ], + "releaseDate": "2003-12-05", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.344, + "voteCount": 1209, + "popularity": 7.7177 + }, + { + "id": 286217, + "title": "The Martian", + "originalTitle": "The Martian", + "overview": "During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.", + "posterPath": "/3ndAx3weG6KDkJIRMCi5vXX6Dyb.jpg", + "backdropPath": "/sq8oUjbBvKkqv9h0Ns5rQbbquhZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 12, + 878 + ], + "genres": [ + "Drama", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2015-09-30", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.691, + "voteCount": 20626, + "popularity": 7.7166 + }, + { + "id": 33436, + "title": "The Brain", + "originalTitle": "Le Cerveau", + "overview": "Arthur and Anatole are two little robbers. They want to rob money, money that will travel in a special train from Paris to Bruxelles. They don't know that other people have planned to do the same thing.", + "posterPath": "/wCtaWDaOiGPVEoo7tiPBSH7sQx9.jpg", + "backdropPath": "/prLH9OrtVjTBUM5vGT0rcrtXFOj.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35 + ], + "genres": [ + "Crime", + "Comedy" + ], + "releaseDate": "1969-03-07", + "releaseYear": "1969", + "originalLanguage": "fr", + "voteAverage": 7.289, + "voteCount": 287, + "popularity": 7.7162 + }, + { + "id": 292081, + "title": "Sunshine Superman", + "originalTitle": "Sunshine Superman", + "overview": "Documentary portrait of Carl Boenish, the father of the BASE jumping movement, whose early passion for skydiving led him to ever more spectacular -and dangerous- feats of foot-launched human flight.", + "posterPath": "/hCfe6xbM3dcV5AYTL5KQn8AUKRD.jpg", + "backdropPath": "/vGO6RbAPmArIY6FyAOGS8sPJQJ8.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2015-05-22", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 30, + "popularity": 7.7119 + }, + { + "id": 182912, + "title": "Best Before", + "originalTitle": "Bäst före", + "overview": "To cope with major life changes, three older pals take a cruise, where a former lover on board puts stress on the trio's friendship.", + "posterPath": "/l0LFTj8iMGGAZBjNiZcgXBaY8iC.jpg", + "backdropPath": "/9K2lebwt74v40WhNIrwLN6b0zIL.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2013-03-22", + "releaseYear": "2013", + "originalLanguage": "sv", + "voteAverage": 4.269, + "voteCount": 13, + "popularity": 7.7113 + }, + { + "id": 1013126, + "title": "The Fence", + "originalTitle": "The Fence", + "overview": "The story kicks off on Hartcliffe council estate in Bristol during the early 1980s. It follows Steven Knight, a working-class boy who has his motorbike stolen the day he buys it. Teaming up with his scoundrel friends he desperately tries to track it down before it's gone for good.", + "posterPath": "/uYD3ohshnoMBvcgXuEahec1JgLM.jpg", + "backdropPath": "/7bBpOs05a0Q7WLYD6NE1oxRuv5R.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-09-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 11, + "popularity": 7.7111 + }, + { + "id": 73686, + "title": "In Darkness", + "originalTitle": "In Darkness", + "overview": "A dramatization of one man's rescue of Jewish refugees in the Nazi-occupied Polish city of Lvov. In Darkness tells the true story of Leopold Soha who risks his own life to save a dozen people from certain death. Initially only interested in his own good, the thief and burglar hides Jewish refugees for 14 months in the sewers of the Nazi-occupied town of Lvov (formerly Poland).", + "posterPath": "/cRm30D0tBvMLXjtoKuaUteBZ4nv.jpg", + "backdropPath": "/nHEfc1ukpsYMmILr79QrClYNma.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "2011-09-15", + "releaseYear": "2011", + "originalLanguage": "de", + "voteAverage": 6.9, + "voteCount": 196, + "popularity": 7.7081 + }, + { + "id": 79596, + "title": "The Emperor's Nightingale", + "originalTitle": "Císařův slavík", + "overview": "Adaptation of a fairy tale by Hans Christian Andersen, about an emperor who prefers the tinkling of a bejeweled mechanical bird to the song of a real nightingale. When the Emperor is near death, the nightingale's song restores his health.", + "posterPath": "/8xJG2OuNwpK1KgIV2wdbAuKoMpB.jpg", + "backdropPath": "/i6y6gpQeOB1FnFPswye4q7PIypk.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "1949-04-15", + "releaseYear": "1949", + "originalLanguage": "cs", + "voteAverage": 5.3, + "voteCount": 15, + "popularity": 7.7069 + }, + { + "id": 412452, + "title": "Cross Wars", + "originalTitle": "Cross Wars", + "overview": "Cross is aided by his team of weapons experts Riot, War, Shark, Lucia, Ranger, Saint, Blackfire and Nuke. Their biggest fight is against their most dangerous enemy GUNNAR. A thousand year old Viking that's cursed to live for ever. Gunnar's only chance at ending his own life is to be the last living soul on earth. The Cross Team must stop Gunnar before he ends humanity.", + "posterPath": "/ubvOS7Ire1Wp6TrtwHH9Sw8vpbw.jpg", + "backdropPath": "/vmq1kWoBqOjUwjFB5IOexUNQloL.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2017-02-11", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.1, + "voteCount": 25, + "popularity": 7.7065 + }, + { + "id": 63176, + "title": "Liza", + "originalTitle": "La cagna", + "overview": "Liza meets the artist Giorgio and falls in love with him. She dreams of becoming the wife of Giorgio, but he is married. She dreams of being a close friend to him, but he has a favorite dog. Liza is ready for any sacrifice for the sake of her love. She kills Giorgio's dog and takes her place. Now she is a woman who always and everywhere follows her master.", + "posterPath": "/zsJa2ibtGSx1ZRbzOV4sA3ZQSQq.jpg", + "backdropPath": "/vZIRGQyaxOwldzijg61BROJPkrb.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1972-08-11", + "releaseYear": "1972", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 49, + "popularity": 7.7047 + }, + { + "id": 55349, + "title": "Anastasia", + "originalTitle": "Anastasia", + "overview": "Young Russian Princess Anastasia is the cherished daughter of the mighty Czar Nicholas. Anastasia’s perfect world changes forever when the evil monk Rasputin topples the Czar from power. Anastasia falls in love with the dashing young soldier, Alexander, who helps the young princess flee for her life.", + "posterPath": "/yjLkrpnVCkdP7m3ZDkwsGSqylb4.jpg", + "backdropPath": "/zDdAUd1afKdqEaFyx05DtpRQB2p.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 10402 + ], + "genres": [ + "Animation", + "Family", + "Music" + ], + "releaseDate": "1997-05-20", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 12, + "popularity": 7.7021 + }, + { + "id": 4171, + "title": "Odette Toulemonde", + "originalTitle": "Odette Toulemonde", + "overview": "Objectively, Odette Toulemonde has nothing to be happy about, but is. Balthazar Balsan has everything to be happy about, but isn’t. Odette, awkwardly forty, with a delightful hairdresser son and a daughter bogged down in adolescence, spends her days behind the cosmetic’s counter in a department store and her nights sewing feathers on costumes for Parisian variety shows. She dreams of thanking Balthazar Balsan, her favorite author, to whom – she believes – she owes her optimism. The rich and charming Parisian writer then turns up in her life in an unexpected way.", + "posterPath": "/dwpuTxb9JkBhPBqZs13iTpTjOAw.jpg", + "backdropPath": "/z1UPixrVMCLVO80veFx19XJQdW7.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2007-02-07", + "releaseYear": "2007", + "originalLanguage": "fr", + "voteAverage": 5.652, + "voteCount": 138, + "popularity": 7.7001 + }, + { + "id": 527641, + "title": "Five Feet Apart", + "originalTitle": "Five Feet Apart", + "overview": "Seventeen-year-old Stella spends most of her time in the hospital as a cystic fibrosis patient. Her life is full of routines, boundaries and self-control — all of which get put to the test when she meets Will, an impossibly charming teen who has the same illness. There's an instant flirtation, though restrictions dictate that they must maintain a safe distance between them. As their connection intensifies, so does the temptation to throw the rules out the window and embrace that attraction.", + "posterPath": "/kreTuJBkUjVWePRfhHZuYfhNE1T.jpg", + "backdropPath": "/27ZkYMWynuK2qiDP6awc3MsCaOs.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2019-03-14", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.226, + "voteCount": 5814, + "popularity": 7.6978 + }, + { + "id": 21191, + "title": "Sin Nombre", + "originalTitle": "Sin nombre", + "overview": "Sayra, a Honduran teen, hungers for a better life. Her chance for one comes when she is reunited with her long-estranged father, who intends to emigrate to Mexico and then enter the United States. Sayra's life collides with a pair of Mexican gangmembers who have boarded the same American-bound train.", + "posterPath": "/dubZwiGWp6TwYNGYtyGEUC7XAin.jpg", + "backdropPath": "/dPJ6Phs6crwoVXiLHntQk2lHz2T.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53, + 80 + ], + "genres": [ + "Drama", + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2009-03-20", + "releaseYear": "2009", + "originalLanguage": "es", + "voteAverage": 7.6, + "voteCount": 728, + "popularity": 7.6946 + }, + { + "id": 45243, + "title": "The Hangover Part II", + "originalTitle": "The Hangover Part II", + "overview": "The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.", + "posterPath": "/cKZu0Fdkj7dmwbfMpgDqVVCkLJQ.jpg", + "backdropPath": "/aGmsekNU5cMOkJMpbdRutkvmVMl.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-05-25", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.498, + "voteCount": 10963, + "popularity": 7.6945 + }, + { + "id": 939335, + "title": "Muzzle", + "originalTitle": "Muzzle", + "overview": "LAPD K-9 officer Jake Rosser has just witnessed the shocking murder of his dedicated partner by a mysterious assailant. As he investigates the shooter’s identity, he uncovers a vast conspiracy that has a choke-hold on the city in this thrilling journey through the tangled streets of Los Angeles and the corrupt bureaucracy of the LAPD.", + "posterPath": "/7pXRA6HpxYjp3ISimzLqmH4ibGz.jpg", + "backdropPath": "/su7FqHdZez0oOvpZAbV7P6BGq0R.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2023-09-29", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.491, + "voteCount": 317, + "popularity": 7.6933 + }, + { + "id": 893694, + "title": "Eva", + "originalTitle": "Eva", + "overview": "When Eva gets involved in a steamy threesome with a houseboy and her lady boss, she realizes she has to choose only one between them.", + "posterPath": "/xADCcluh5TaqETZGO45RulKnYDy.jpg", + "backdropPath": "/ougkufYSiruP8jrEHQanXN7DxRv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2021-12-24", + "releaseYear": "2021", + "originalLanguage": "tl", + "voteAverage": 5.1, + "voteCount": 20, + "popularity": 7.6928 + }, + { + "id": 28460, + "title": "Sailor Moon SuperS: The Movie - Black Dream Hole", + "originalTitle": "劇場版 美少女戦士セーラームーンSuperS セーラー9戦士集結!ブラック・ドリーム・ホールの奇跡", + "overview": "The wicked Badiyanu has come to capture all Earth's children to gain enough power to absorb the planet in her Black Dream Hole. The Black Dream Hole is in Badiyanu's castle and absorbs the dream energy from children. The more children Badiyanu kidnaps, the larger the dream hole gets. The Sailor Team must save Earth's children and prevent the Black Dream Hole from enveloping the entire planet!", + "posterPath": "/11GoqlOv0AqNZ4V9w3oUhBMg86r.jpg", + "backdropPath": "/xbEmI681B0aeYkIXQ2Nlfj42GCF.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 28, + 10749, + 35 + ], + "genres": [ + "Animation", + "Fantasy", + "Action", + "Romance", + "Comedy" + ], + "releaseDate": "1995-12-23", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 145, + "popularity": 7.6921 + }, + { + "id": 765967, + "title": "Black Pumpkin", + "originalTitle": "Black Pumpkin", + "overview": "On October 31st, two preteens in a small town accidentally awaken an evil that has lain dormant for decades. They are forced to survive through a terrifying Halloween night of cat-and-mouse, from the monster known as \"Bloody Bobby.\"", + "posterPath": "/pLmJaMR4njeEjpglTP26WJSDb1y.jpg", + "backdropPath": "/6ssZlpIWZuAkDhVzfvbSEejHbPj.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2018-09-28", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 14, + "popularity": 7.692 + }, + { + "id": 58233, + "title": "Johnny English Reborn", + "originalTitle": "Johnny English Reborn", + "overview": "The most prominent heads of state in the world begin gathering for a conference that could have a major impact on global politics. When MI-7 receives word that the Chinese premier has become the target of some high-powered killers, it falls on Johnny English to save the day. Armed with the latest high-tech weaponry and gadgets that would make even James Bond jealous, the once-disgraced agent uncovers evidence of a massive conspiracy involving some of the world's most powerful organisations, and vows to redeem his tarnished reputation by stopping the killers before they can strike.", + "posterPath": "/1T6qnlTVkrGr0mpgZbpSwVU5FWW.jpg", + "backdropPath": "/croOmkPszzl9p8ASq4NTYunFJ5E.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 35 + ], + "genres": [ + "Crime", + "Action", + "Comedy" + ], + "releaseDate": "2011-09-15", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 3465, + "popularity": 7.6916 + }, + { + "id": 321757, + "title": "Punching Henry", + "originalTitle": "Punching Henry", + "overview": "Comedian Henry Phillips is lured to LA by a renowned TV producer who wants to bring his story of failure to the screen. But when a major network gets involved, Henry must decide whether he wants to make jokes for a living, or be the butt of them.", + "posterPath": "/jMdJhJpfVbGTG6ClecTQZWS68Us.jpg", + "backdropPath": "/gS295rP05A1KYmTNFPL6ejtCCuH.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-02-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 45, + "popularity": 7.6895 + }, + { + "id": 436828, + "title": "Uncertain Glory", + "originalTitle": "Incerta glòria", + "overview": "Front of Aragon, 1937. Lluís, a young republican officer destined for a temporarily dormant position, meets an enigmatic widow of whom she falls in love, Carlana, who manages to fool him to falsify a Document that makes it the lady of the region. The best friend of Lluís, the Soleràs, a degraded officer, discovers the fraud and, in exchange for not exposing him, he demands that he move away from the bombings of Barcelona his son and his wife, from whom he is Secretly in love When Trini arrives at the town, it does not take long to discover the betrayal of Lluís and establishes between them two a \"state of war\" that will make all moral bases stagger.", + "posterPath": "/qWuyQ1HJ8hCZMEgsQwZ1FDoOo7S.jpg", + "backdropPath": "/ov2I9QYH6cLtWZPyGOzmLeAqAja.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-03-17", + "releaseYear": "2017", + "originalLanguage": "ca", + "voteAverage": 5.4, + "voteCount": 41, + "popularity": 7.6887 + }, + { + "id": 974262, + "title": "Descendants: The Rise of Red", + "originalTitle": "Descendants: The Rise of Red", + "overview": "After the Queen of Hearts incites a coup on Auradon, her rebellious daughter Red and Cinderella's perfectionist daughter Chloe join forces and travel back in time to try to undo the traumatic event that set Red's mother down her villainous path.", + "posterPath": "/8fYluTtB3b3HKO7KQa5tzrvGaps.jpg", + "backdropPath": "/dn3gbDpXPSwC6saMJOHkCiFA9jn.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 10751, + 35 + ], + "genres": [ + "Fantasy", + "Adventure", + "Family", + "Comedy" + ], + "releaseDate": "2024-07-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.755, + "voteCount": 449, + "popularity": 7.6886 + }, + { + "id": 279988, + "title": "Extinction", + "originalTitle": "Extinction", + "overview": "Deep in the Amazon jungle a group of scientists are on a dangerous mission. When their guide suddenly abandons them, they find themselves in a savage and hostile environment. However, things turn deadly when they find they are in the middle of a hunting ground for a pack of prehistoric predators long thought extinct.", + "posterPath": "/13LTZkxrAkswx2eidHK06XbVH8n.jpg", + "backdropPath": "/18qzbskGhbAPjkFrtgPw1utxIF0.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 12 + ], + "genres": [ + "Thriller", + "Adventure" + ], + "releaseDate": "2014-08-24", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 48, + "popularity": 7.687 + }, + { + "id": 31616, + "title": "Natalee Holloway", + "originalTitle": "Natalee Holloway", + "overview": "On May 30, 2005, on a high school graduation trip to Aruba, she disappeared without a trace.", + "posterPath": "/tDkyccpQbliQbLTDZQJsSPdQ4OD.jpg", + "backdropPath": "/pHgstfdBUfJg20ask38RmZ06yb4.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 10770 + ], + "genres": [ + "Drama", + "Mystery", + "TV Movie" + ], + "releaseDate": "2009-04-19", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 16, + "popularity": 7.686 + }, + { + "id": 106546, + "title": "Moscow Heat", + "originalTitle": "Moscow Heat", + "overview": "After a U.S. policeman is killed by black market weapons dealers, his partner, Rudy (Robert Madrid), and the murdered cop's father, ex-British Intelligence agent Roger Chambers (Michael York), head to Moscow to find the killers. The two begin to track down their targets, but their plan falters when Rudy's injured and Chambers is arrested. Enter Vlad (Alexander Nevsky), a Russian officer who's willing to help the men complete their mission.", + "posterPath": "/7WwaL21mcewnQTVAz3zOStDB4M1.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2004-11-24", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 2.6, + "voteCount": 15, + "popularity": 7.6857 + }, + { + "id": 5375, + "title": "Fred Claus", + "originalTitle": "Fred Claus", + "overview": "Fred Claus and Santa Claus have been estranged brothers for many years. Now Fred must reconcile his differences with his brother whom he believes overshadows him. When an efficiency expert assesses the workings at the North Pole and threatens to shut Santa down, Fred must help his brother to save Christmas.", + "posterPath": "/9gATbvoRMxVeoHInwS8nR0KZMVc.jpg", + "backdropPath": "/nf9Y9KtrSFqUz3gNbsrgmFJV1S4.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 18 + ], + "genres": [ + "Action", + "Comedy", + "Drama" + ], + "releaseDate": "2007-11-09", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.857, + "voteCount": 887, + "popularity": 7.6847 + }, + { + "id": 287424, + "title": "Maggie", + "originalTitle": "Maggie", + "overview": "There's a deadly zombie epidemic threatening humanity, but Wade, a small-town farmer and family man, refuses to accept defeat even when his daughter Maggie becomes infected. As Maggie's condition worsens and the authorities seek to eradicate those with the virus, Wade is pushed to the limits in an effort to protect her. Joely Richardson co-stars in this post-apocalyptic thriller.", + "posterPath": "/twa9gXjocLM629sJrQYVtmF306R.jpg", + "backdropPath": "/8LYxSH8ZJzKbS3kNIELsVc05RNH.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 878 + ], + "genres": [ + "Horror", + "Drama", + "Science Fiction" + ], + "releaseDate": "2015-05-08", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.405, + "voteCount": 1644, + "popularity": 7.6823 + }, + { + "id": 44214, + "title": "Black Swan", + "originalTitle": "Black Swan", + "overview": "The story of a ballerina in a New York City ballet company whose life is completely consumed with dance. Nina lives with her retired ballerina mother who zealously supports her daughter's professional ambition. When the artistic director decides to replace the prima ballerina for the opening production of their new season, Nina is his first choice.", + "posterPath": "/viWheBd44bouiLCHgNMvahLThqx.jpg", + "backdropPath": "/g0geLM1zXpLb9mpqKw1ePcA5bTJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 27 + ], + "genres": [ + "Drama", + "Thriller", + "Horror" + ], + "releaseDate": "2010-12-03", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.686, + "voteCount": 15154, + "popularity": 7.6809 + }, + { + "id": 11385, + "title": "Hatari!", + "originalTitle": "Hatari!", + "overview": "A female wildlife photographer arrives on an East African reservation where a group of men trap wild animals for zoos and circuses.", + "posterPath": "/fT1Ht8PSM5cFKmejrnufWvpXAPk.jpg", + "backdropPath": "/fqRGoUOta2bYcAx3tyTvIbDIVzf.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 28 + ], + "genres": [ + "Adventure", + "Comedy", + "Action" + ], + "releaseDate": "1962-06-19", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 261, + "popularity": 7.6797 + }, + { + "id": 10134, + "title": "Cyborg", + "originalTitle": "Cyborg", + "overview": "A martial artist hunts a killer in a plague-infested urban dump of the future.", + "posterPath": "/rwzRUC6inDraeIQD8f0FYteSonL.jpg", + "backdropPath": "/lUHhwf9VRcdnP5gQjnqa337L33M.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller", + "Adventure" + ], + "releaseDate": "1989-04-07", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 5.674, + "voteCount": 791, + "popularity": 7.6774 + }, + { + "id": 80041, + "title": "The Runway", + "originalTitle": "The Runway", + "overview": "The Runway is inspired by the true story of a South American pilot who landed his plane near Mallow, in 1983. Against all odds, the people of the town came together to build a runway to get him home and briefly caught the imagination of the nation. It is the story of Paco, a young boy without a father who adopts the pilot and convinces the town to build a runway to get him home.", + "posterPath": "/jMw5WMdRpMtEdHcAamY1Kkq0Xf1.jpg", + "backdropPath": "/fwUpftcFtA9nWdRNBqXKPSdExq8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2010-07-10", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 7.6763 + }, + { + "id": 1127, + "title": "Princesses", + "originalTitle": "Princesas", + "overview": "Caye is a young prostitute whose family is unaware of her profession. She meets her striking Dominican neighbour Zulema, an illegal immigrant, after she finds her in the bathroom, badly beaten up. They strike up a close friendship unbeknownst to Caye's xenophobic co-workers.", + "posterPath": "/ahgTyjdQfoCj9TNedozDxiMTuIs.jpg", + "backdropPath": "/jyV0QQRCk5a5kYMWZPh7WZcNu6j.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2005-09-02", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 6.7, + "voteCount": 84, + "popularity": 7.6735 + }, + { + "id": 278540, + "title": "Girl's Blood", + "originalTitle": "赤×ピンク", + "overview": "Four girls take part in illegal underground fighting event \"Girl's Blood\" held at an abandoned school building in Roppongi every night. The girls have their own stories and quirks from their private lives. Satsuki (Yuria Haga) suffers from a gender identity disorder, Chinatsu (Asami Tada) ran away from an abusive husband, Miko (Ayame Misaki) is a S&M queen and Mayu (Rina Koike) has a Lolita face.", + "posterPath": "/9Oc7cqHsPLA1FvNLmF6jUAz38tg.jpg", + "backdropPath": "/kB2DXsW4QZP33Skch3pE0ZCPThj.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 10749 + ], + "genres": [ + "Action", + "Drama", + "Romance" + ], + "releaseDate": "2014-02-22", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.286, + "voteCount": 35, + "popularity": 7.6729 + }, + { + "id": 1137205, + "title": "Last Straw", + "originalTitle": "Last Straw", + "overview": "A rural roadside diner becomes the host of a maniacal killing spree – leaving a young waitress to clean up the mess. After hard-headed Nancy fires the staff at her dad’s diner, she decides to cover the last shift of the night by herself. Little does she know, she is far from alone. The day is coming back to haunt her and when things begin to spiral out of control, she must fight for her life over the course of one long night.", + "posterPath": "/hgpUvybRQzRK6UagoHNQRrO8sUg.jpg", + "backdropPath": "/A6KaZEXI9NJ1nwjmzTQDkiDTDWN.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 53 + ], + "genres": [ + "Horror", + "Drama", + "Thriller" + ], + "releaseDate": "2024-09-20", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.147, + "voteCount": 117, + "popularity": 7.6725 + }, + { + "id": 12604, + "title": "Dalecarlians", + "originalTitle": "Masjävlar", + "overview": "Mia returns from Stockholm to her parents' home in a small town in Dalecarlia (Dalarna) to celebrate her father's 70th birthday. Her elder sisters Eivor and Gunilla welcome her, but their different lifestyles prevent them from really communicating. The tension builds, and the party that should be a celebration turns out to be a turning point for the family and their friends", + "posterPath": "/kNRtHq5QiyI0n3OV2IKq3pOhMtu.jpg", + "backdropPath": "/dDxew0gMKv7Y7hT8SGuMa1rWHHe.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2004-12-17", + "releaseYear": "2004", + "originalLanguage": "sv", + "voteAverage": 5.818, + "voteCount": 44, + "popularity": 7.6706 + }, + { + "id": 1079091, + "title": "It Ends with Us", + "originalTitle": "It Ends with Us", + "overview": "When a woman's first love suddenly reenters her life, her relationship with a charming, but abusive neurosurgeon is upended, and she realizes she must learn to rely on her own strength to make an impossible choice for her future.", + "posterPath": "/AjV6jFJ2YFIluYo4GQf13AA1tqu.jpg", + "backdropPath": "/8yPSYhooj8nyBbmV3GVdLDwuE7e.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2024-08-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.972, + "voteCount": 1764, + "popularity": 7.6695 + }, + { + "id": 319998, + "title": "Sworn Virgin", + "originalTitle": "Vergine giurata", + "overview": "Years after declaring her eternal virginity and opting to live life as a man in the mountains of Albania, Hana looks to return to living as a woman as she settles into a new existence in modern-day Milan.", + "posterPath": "/piSe5rV0crFgHHJgXrjrTwGNJmi.jpg", + "backdropPath": "/3UuNxoThmvXPUEe7k8TaBnjapoc.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-03-19", + "releaseYear": "2015", + "originalLanguage": "it", + "voteAverage": 5.6, + "voteCount": 59, + "popularity": 7.6683 + }, + { + "id": 69056, + "title": "Breathing Fire", + "originalTitle": "Breathing Fire", + "overview": "Michael, a Vietnam vet with two kids, pulls off a bank heist with his gang, which includes the bank's manager. To ensure the loyalty of everyone involved, Mike makes a special set of keys, so that the hiding place for the loot can only be opened if all the members are present. The bank manager, however, gets cold feet and tries to back out, so Mike and his buddies kill him and his wife. His daughter, however, gets hold of the key and runs for help to David, one of her father's old friends who also happens to be a Vietnam vet and a former comrade of Michael's. Will David be able to protect his friend's daughter?", + "posterPath": "/hUHTu9Masyd4anz3gNHb7F27xac.jpg", + "backdropPath": "/prpuunu0uRKfR2Y5qSxAo4ez9oM.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "1991-09-25", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 26, + "popularity": 7.6677 + }, + { + "id": 513919, + "title": "Youtopia", + "originalTitle": "Youtopia", + "overview": "To help her financially struggling mother, a teenage girl turns to escorting and meets a wealthy man who makes a proposal she can't refuse.", + "posterPath": "/9eFZZuplF7SAP64ZD8aEgVKKLS6.jpg", + "backdropPath": "/9Adlux9Slo5ObjO3lETqBawK9bs.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-04-25", + "releaseYear": "2018", + "originalLanguage": "it", + "voteAverage": 5.2, + "voteCount": 115, + "popularity": 7.6675 + }, + { + "id": 1260, + "title": "Lotte from Gadgetville", + "originalTitle": "Leiutajateküla Lotte", + "overview": "Somewhere in Europe by a great sea stands a small village, where inventing all manner of domestic gadgets is held in great esteem. Every year the villagers organize an annual competition of new inventions. One of the best inventors in the village is Oskar, Lotte's father. His primary rival is Adalbert, whose wife also partakes in the competition. On the eve of the next competition, Lotte and her friend Bruno find a book soaked in the sea, from which Susumu, a gardener from distant Japan, climbs out. Susumu teaches the villagers some judo throws before a big judo competition, which the latter will eagerly use to facilitate their daily lives.", + "posterPath": "/d165xgjAJam1cpNhDJAE9UMfvIA.jpg", + "backdropPath": "/ciSyb3yWsvpmLknmDQYgUsMQCIu.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 35, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2006-08-25", + "releaseYear": "2006", + "originalLanguage": "et", + "voteAverage": 8.6, + "voteCount": 12, + "popularity": 7.665 + }, + { + "id": 508965, + "title": "Klaus", + "originalTitle": "Klaus", + "overview": "A selfish postman and a reclusive toymaker form an unlikely friendship, delivering joy to a cold, dark town that desperately needs it.", + "posterPath": "/q125RHUDgR4gjwh1QkfYuJLYkL.jpg", + "backdropPath": "/mlxKite1x1PgmIhJgAxNS9eHmH8.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 35, + 14 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Comedy", + "Fantasy" + ], + "releaseDate": "2019-11-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.229, + "voteCount": 4409, + "popularity": 7.6635 + }, + { + "id": 10471, + "title": "Next Friday", + "originalTitle": "Next Friday", + "overview": "A streetwise man flees South Central Los Angeles, heading to the suburbs and his lottery-winner uncle and cousin, to avoid a neighborhood thug with a grudge who has just escaped from prison.", + "posterPath": "/dP4fYCGQZzg17ta7FvLwJVCwwt9.jpg", + "backdropPath": "/xi4Uy11TdACds3SXglrbbmaVd90.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-01-12", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.455, + "voteCount": 620, + "popularity": 7.663 + }, + { + "id": 166426, + "title": "Pirates of the Caribbean: Dead Men Tell No Tales", + "originalTitle": "Pirates of the Caribbean: Dead Men Tell No Tales", + "overview": "Thrust into an all-new adventure, a down-on-his-luck Capt. Jack Sparrow feels the winds of ill-fortune blowing even more strongly when deadly ghost sailors led by his old nemesis, the evil Capt. Salazar, escape from the Devil's Triangle. Jack's only hope of survival lies in seeking out the legendary Trident of Poseidon, but to find it, he must forge an uneasy alliance with a brilliant and beautiful astronomer and a headstrong young man in the British navy.", + "posterPath": "/qwoGfcg6YUS55nUweKGujHE54Wy.jpg", + "backdropPath": "/7C921eWK06n12c1miRXnYoEu5Yv.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 14 + ], + "genres": [ + "Adventure", + "Action", + "Fantasy" + ], + "releaseDate": "2017-05-23", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 12496, + "popularity": 7.6623 + }, + { + "id": 14022, + "title": "Slacker", + "originalTitle": "Slacker", + "overview": "Austin, Texas, is an Eden for the young and unambitious, from the enthusiastically eccentric to the dangerously apathetic. Here, the nobly lazy can eschew responsibility in favor of nursing their esoteric obsessions. The locals include a backseat philosopher who passionately expounds on his dream theories to a seemingly comatose cabbie, a young woman who tries to hawk Madonna's Pap test to anyone who will listen and a kindly old anarchist looking for recruits.", + "posterPath": "/8cEWYiKJgVWCgO1aOQItifZBQOw.jpg", + "backdropPath": "/1gjK6oZSQtvhFBbSgkBvn72dPLF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1991-07-05", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.731, + "voteCount": 329, + "popularity": 7.662 + }, + { + "id": 9952, + "title": "Rescue Dawn", + "originalTitle": "Rescue Dawn", + "overview": "A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.", + "posterPath": "/ymPlV2ymUBSctfRzpehFOxFmJiS.jpg", + "backdropPath": "/q4RamDqx4kXCrUvk49o4FmVBbb.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10752 + ], + "genres": [ + "Adventure", + "Drama", + "War" + ], + "releaseDate": "2007-06-23", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 1346, + "popularity": 7.6613 + }, + { + "id": 9574, + "title": "Flubber", + "originalTitle": "Flubber", + "overview": "Professor Phillip Brainard, an absent minded professor, works with his assistant Weebo, trying to create a substance that's a new source of energy and that will save Medfield College where his sweetheart Sara is the president. He has missed his wedding twice, and on the afternoon of his third wedding, Professor Brainard creates flubber, which allows objects to fly through the air.", + "posterPath": "/bnKvk04icAyCO1KjqhsaEXBO9aJ.jpg", + "backdropPath": "/iaAWeeZaWU7c1UHfxMOhqxLXAUp.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 878 + ], + "genres": [ + "Comedy", + "Family", + "Science Fiction" + ], + "releaseDate": "1997-11-26", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 5.661, + "voteCount": 2471, + "popularity": 7.6613 + }, + { + "id": 2493, + "title": "The Princess Bride", + "originalTitle": "The Princess Bride", + "overview": "In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.", + "posterPath": "/2FC9L9MrjBoGHYjYZjdWQdopVYb.jpg", + "backdropPath": "/aQ2ZbNqIaecoQsryNe33UmDtms.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14, + 35, + 10749 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy", + "Comedy", + "Romance" + ], + "releaseDate": "1987-09-25", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.689, + "voteCount": 4882, + "popularity": 7.6611 + }, + { + "id": 140605, + "title": "Certain Fury", + "originalTitle": "Certain Fury", + "overview": "Teenage prostitute Scarlet and minor offender Tracy end up on the run together in the wake of a courtroom shoot-out.", + "posterPath": "/t1rq2KVP0VWrvZehi4k2wwWitIr.jpg", + "backdropPath": "/3CeWGZjH9jSU16sZFnxMHMiP7zS.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "1985-03-01", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 22, + "popularity": 7.6605 + }, + { + "id": 6145, + "title": "Fracture", + "originalTitle": "Fracture", + "overview": "A husband is on trial for the attempted murder of his wife, in what is seemingly an open/shut case for the ambitious district attorney trying to put him away. However, there are surprises for both around every corner, and, as a suspenseful game of cat-and-mouse is played out, each must manipulate and outwit the other.", + "posterPath": "/qNen8x5gaikjIg9CFihgxYcJwQe.jpg", + "backdropPath": "/mujUrk2diGe5vRCb3kdpHZeobRs.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2007-04-19", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.262, + "voteCount": 4154, + "popularity": 7.6592 + }, + { + "id": 173908, + "title": "Sunlight Jr.", + "originalTitle": "Sunlight Jr.", + "overview": "Quickie-mart employee Melissa and paraplegic Richie are very much in love. Supported only by Melissa’s small hourly wage, they are nevertheless thrilled to learn that Melissa is pregnant. Then their situation deteriorates, and their tenuous financial situation threatens to bring their happy life crashing down.", + "posterPath": "/rL1dhso58VmJnCwSSwGsT4usjB4.jpg", + "backdropPath": "/2OyHRnW3TW174fIrGkIWk6bWFvk.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-04-20", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 77, + "popularity": 7.6547 + }, + { + "id": 408508, + "title": "Blue Jay", + "originalTitle": "Blue Jay", + "overview": "Meeting by chance when they return to their tiny California hometown, two former high-school sweethearts reflect on their shared past.", + "posterPath": "/A2A80lvgaagG5ewfP7SKhL8uwUI.jpg", + "backdropPath": "/fJvmBZypJfnQHFoyCzZsi4vvWxR.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 512, + "popularity": 7.6537 + }, + { + "id": 656150, + "title": "Responsible Child", + "originalTitle": "Responsible Child", + "overview": "Ray, a twelve-year-old boy, must confront the British legal system when he is accused of murder.", + "posterPath": "/32eFoW7Oudmd0xv8KlFybKvanbA.jpg", + "backdropPath": "/6ic9EaJeAaYkXpJ0ZiVpJE3h0KX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770 + ], + "genres": [ + "Drama", + "TV Movie" + ], + "releaseDate": "2019-12-16", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.579, + "voteCount": 19, + "popularity": 7.6529 + }, + { + "id": 85877, + "title": "The 33D Invader", + "originalTitle": "蜜桃成熟時33D", + "overview": "A young woman named Future is sent from the year 2046 to the year 2011 in Hong Kong. Future was sent by the United Nations in order to get pregnant, where she can then extract her genes and repopulate the earth as 99% of males have become infertile in the future due to attacks from Planet Xucker. Two assassins from Xuckler are sent after her to stop her. Future meets three University students: Felix, Dan-san and Sing. The men are obsessed with female students next door: Chin-chin, Chen-chen and Sai-sai. The students agree to help Future find a mate at the university.", + "posterPath": "/bBC1fBHyFBmc6fn4UDedtkOVSaD.jpg", + "backdropPath": "/jl7RhBszdR4chHuL9DLoIYjjNcJ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878 + ], + "genres": [ + "Comedy", + "Science Fiction" + ], + "releaseDate": "2011-10-06", + "releaseYear": "2011", + "originalLanguage": "cn", + "voteAverage": 5.645, + "voteCount": 31, + "popularity": 7.6521 + }, + { + "id": 390635, + "title": "Fate/stay night: Heaven's Feel III. Spring Song", + "originalTitle": "劇場版「Fate/stay night [Heaven’s Feel]」Ⅲ.spring song", + "overview": "The battle rages on as Shirou continues to protect Sakura, now consumed by the darkness. He joins forces with Rin to end the Holy Grail War, while Illyasviel, who knows the truth behind it, confronts her fate. Amidst the chaos, Zouken plots to manipulate Sakura for his own desires. The final fight begins.", + "posterPath": "/hIK5kEdFwOHnHTa06ntTVSfG9im.jpg", + "backdropPath": "/tLfQZkB4yBlO1h5WMIFLJgHYcZD.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10749, + 14, + 28, + 18 + ], + "genres": [ + "Animation", + "Romance", + "Fantasy", + "Action", + "Drama" + ], + "releaseDate": "2020-08-15", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 191, + "popularity": 7.6512 + }, + { + "id": 93685, + "title": "Swingers", + "originalTitle": "Swingers", + "overview": "Despite Diana's insecure nature, she and her husband Julian agree with the idea to sexually experiment with another couple. They put out an ad on the net to which the well experienced Alex and Timo react. We follow Diana and Julian as they prepare for the arrival of Alex and Timo, who they have invited to their home for the weekend. Diana is nervous. As soon as she is confronted with the self-confident and ravishingly sexy Alex, her insecurity increases even more. Timo seems disinterested, a sharp contrast to the boyish excitement of Julian. But as night falls and their sexual exploration begins, we notice Timo may not be as casual as he initially seemed and Diana on the other hand contains hidden strength. And so we realize there's more to 'Swingers' than just sex. Swingers: could your relationship stand the test?", + "posterPath": "/vsctdCbDHApN003Fs3QzJB8Nl9B.jpg", + "backdropPath": "/8B8mdhvEy6mnu1whpLbd6ASoOOl.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2002-10-01", + "releaseYear": "2002", + "originalLanguage": "nl", + "voteAverage": 5.821, + "voteCount": 67, + "popularity": 7.6495 + }, + { + "id": 13060, + "title": "Lifted", + "originalTitle": "Lifted", + "overview": "When an overconfident teen alien gets behind the controls of a spaceship, he must attempt to abduct a slumbering farmer under the watchful eye of a critical instructor. But abducting humans requires precision and a gentle touch, and within a few missteps it's painfully clear why more humans don't go missing every year.", + "posterPath": "/mh7VBbGPbGEITEPSSyRWQVO6HVW.jpg", + "backdropPath": "/13CqQIOwZ0dkAxgzL7W4VcJLDAg.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 878, + 35 + ], + "genres": [ + "Family", + "Animation", + "Science Fiction", + "Comedy" + ], + "releaseDate": "2006-12-28", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.454, + "voteCount": 786, + "popularity": 7.649 + }, + { + "id": 1491, + "title": "The Illusionist", + "originalTitle": "The Illusionist", + "overview": "With his eye on a lovely aristocrat, a gifted illusionist named Eisenheim uses his powers to win her away from her betrothed, a crown prince. But Eisenheim's scheme creates tumult within the monarchy and ignites the suspicion of a dogged inspector.", + "posterPath": "/1O9jUvqkHaGBMVRyOJz1AlkmALW.jpg", + "backdropPath": "/8ScGUtKTupr5rVLiXRmffjKMRhH.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 53, + 10749 + ], + "genres": [ + "Fantasy", + "Drama", + "Thriller", + "Romance" + ], + "releaseDate": "2006-08-18", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.295, + "voteCount": 5142, + "popularity": 7.649 + }, + { + "id": 364, + "title": "Batman Returns", + "originalTitle": "Batman Returns", + "overview": "The monstrous Penguin, who dwells in the sewers beneath Gotham, joins up with corrupt mayoral candidate Max Shreck to topple the Batman once and for all. But when Shreck's timid assistant Selina Kyle finds out, and Shreck tries to kill her, she's transformed into the sexy Catwoman. She teams up with the Penguin and Shreck to destroy Batman, but sparks fly unexpectedly when she confronts the caped crusader.", + "posterPath": "/jKBjeXM7iBBV9UkUcOXx3m7FSHY.jpg", + "backdropPath": "/3WP0RObZ2t7ShHfqQpKPljF9B22.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14 + ], + "genres": [ + "Action", + "Fantasy" + ], + "releaseDate": "1992-06-19", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.944, + "voteCount": 6864, + "popularity": 7.6471 + }, + { + "id": 484747, + "title": "Little Tickles", + "originalTitle": "Les Chatouilles", + "overview": "Odette is a 8-yr-old girl who loves to dance and draw. Once she has become an adult, Odette realizes she was abused, and immerses herself body and soul in her career as a dancer while trying to deal with her past.", + "posterPath": "/h3oNso475RURIBQmrVkyEfwrWOS.jpg", + "backdropPath": "/1IAoK7OVmo5erbrHrch6jMErMJn.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-11-14", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 7.358, + "voteCount": 374, + "popularity": 7.6446 + }, + { + "id": 322, + "title": "Mystic River", + "originalTitle": "Mystic River", + "overview": "The lives of three men who were childhood friends are shattered when one of them suffers a family tragedy.", + "posterPath": "/hCHVDbo6XJGj3r2i4hVjKhE0GKF.jpg", + "backdropPath": "/4ycpMe25LYpzGW42U9amyW9gM53.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18, + 9648 + ], + "genres": [ + "Thriller", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2003-10-08", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.741, + "voteCount": 7153, + "popularity": 7.6418 + }, + { + "id": 44918, + "title": "Titanic II", + "originalTitle": "Titanic II", + "overview": "On the 100th anniversary of the original voyage, a modern luxury liner christened \"Titanic 2,\" follows the path of its namesake. But when a tsunami hurls an ice berg into the new ship's path, the passengers and crew must fight to avoid a similar fate.", + "posterPath": "/3m12UeP1DMfhYZyvpLftaJGsyp3.jpg", + "backdropPath": "/e9XRikkyth0GtG8RkU3XNm0oMsA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 10749, + 12, + 18 + ], + "genres": [ + "Action", + "Thriller", + "Romance", + "Adventure", + "Drama" + ], + "releaseDate": "2010-08-07", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 4.899, + "voteCount": 441, + "popularity": 7.6415 + }, + { + "id": 9444, + "title": "Anastasia", + "originalTitle": "Anastasia", + "overview": "Ten years after she was separated from her family, an eighteen-year-old orphan with vague memories of the past sets out to Paris in hopes of reuniting with her grandmother. She is accompanied by two con men, who intend to pass her off as the Grand Duchess Anastasia to the Dowager Empress for a reward.", + "posterPath": "/bppGWGA8zq1sRvTdDJnUzVW9GcH.jpg", + "backdropPath": "/h6VshReCGaGQoaGZwT2wqiqrcZW.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 12 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Adventure" + ], + "releaseDate": "1997-11-20", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.606, + "voteCount": 5486, + "popularity": 7.6407 + }, + { + "id": 41225, + "title": "Spirits of the Dead", + "originalTitle": "Histoires extraordinaires", + "overview": "Anthology film from three European directors based on stories by Edgar Allan Poe: a cruel countess haunted by a ghostly horse, a sadistic young man haunted by his double, and an alcoholic actor haunted by the Devil.", + "posterPath": "/9HmCwfPG7URPSXSrmEAFN65VoWE.jpg", + "backdropPath": "/s8h41U0rqM0PP6qCas8qzBtxeen.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 18 + ], + "genres": [ + "Horror", + "Mystery", + "Drama" + ], + "releaseDate": "1968-05-16", + "releaseYear": "1968", + "originalLanguage": "fr", + "voteAverage": 6.2, + "voteCount": 178, + "popularity": 7.638 + }, + { + "id": 11544, + "title": "Lilo & Stitch", + "originalTitle": "Lilo & Stitch", + "overview": "As Stitch, a runaway genetic experiment from a faraway planet, wreaks havoc on the Hawaiian Islands, he becomes the mischievous adopted alien \"puppy\" of an independent little girl named Lilo and learns about loyalty, friendship, and ʻohana, the Hawaiian tradition of family.", + "posterPath": "/m13Vbzv7R2GMAl3GXFrkmMEgCFQ.jpg", + "backdropPath": "/AcxbOWUbwtIEDisfuhNGHQNfnMK.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2002-06-21", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.563, + "voteCount": 6884, + "popularity": 7.6363 + }, + { + "id": 369230, + "title": "Them Who?", + "originalTitle": "Loro chi?", + "overview": "David loses his white collar job, his fiancée and his house after one night with con man Marcello. He tracks him down to exact revenge, but ends up becoming his disciple in order to win back everything.", + "posterPath": "/e9XQYbmL3EEDDcQOx7e3hB2UjnE.jpg", + "backdropPath": "/qbpfEMjf2q3kdJBhz1fShhASor.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-11-19", + "releaseYear": "2015", + "originalLanguage": "it", + "voteAverage": 6.456, + "voteCount": 428, + "popularity": 7.6353 + }, + { + "id": 240206, + "title": "Touchless", + "originalTitle": "Bez doteku", + "overview": "Jolana (18) is an object of her step-father's desire. She is unable to cope, especially when her own mother turns a blind eye. Those events are heavily paid for when she finds herself working in a brothel. Her inability to cope raise a question: What is it she actually wants? Are her dreams of escaping really better than the reality she finds herself in?", + "posterPath": "/r0IBEfaDyU9k8E9UIQdOwUlOGJ3.jpg", + "backdropPath": "/yQd6Z0jKAS0a8aT5ni9nPhOD3MT.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-03-28", + "releaseYear": "2013", + "originalLanguage": "cs", + "voteAverage": 3.4, + "voteCount": 13, + "popularity": 7.6331 + }, + { + "id": 62177, + "title": "Brave", + "originalTitle": "Brave", + "overview": "In the mystical Scottish Highlands, Merida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, Merida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, Merida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into Merida's quest — and serving as comic relief — are the kingdom's three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.", + "posterPath": "/1XAuDtMWpL0sYSFK0R6EZate2Ux.jpg", + "backdropPath": "/qx9ts2hBYJrkIQxhryitxnLlm2u.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751, + 28, + 14 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family", + "Action", + "Fantasy" + ], + "releaseDate": "2012-06-21", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.021, + "voteCount": 13851, + "popularity": 7.6325 + }, + { + "id": 573171, + "title": "Little Eggs: A Frozen Rescue", + "originalTitle": "Huevitos Congelados", + "overview": "In the final Huevos adventure, Toto and his family will have to travel to the South Pole to fulfill their promise to return a polar bear and some Spanish penguins to their home. In order to do so, they will have to overcome some obstacles that will teach them how important teamwork is.", + "posterPath": "/8xCO3IarklLD4tK1rPn0e4gSMoV.jpg", + "backdropPath": "/9PxXSAnbVfvFacsGTJu1aXEWVg7.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2022-12-14", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 7.692, + "voteCount": 360, + "popularity": 7.6317 + }, + { + "id": 567691, + "title": "I Am Toxic", + "originalTitle": "Soy tóxico", + "overview": "Province of Buenos Aires, Argentina, 2101. The world has been ravaged by a biological warfare. A man wakes up in the desert, unable to remember anything of his previous life.", + "posterPath": "/e2fe8dYSl2aVMR6Mtn3yExHn4hz.jpg", + "backdropPath": "/54nkHaMykk0YpLohG7nBeLvAIbs.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 878 + ], + "genres": [ + "Drama", + "Horror", + "Science Fiction" + ], + "releaseDate": "2018-11-14", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 4.5, + "voteCount": 23, + "popularity": 7.6316 + }, + { + "id": 415132, + "title": "Ares", + "originalTitle": "Arès", + "overview": "In a near future, the world order has changed. With its 10 millions of unemployed citizens, France has now become a poor country. Its people wavers between rebellion and resignation and find an outlet in the shape of TV broadcast ultra brutal fights in which the players are legally doped and unscrupulous.", + "posterPath": "/sVKz7eKtSkVGjKaSWo065XTkWk9.jpg", + "backdropPath": "/rFjeGAA4cW8PEuVbzayDGLg07l6.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 53 + ], + "genres": [ + "Science Fiction", + "Drama", + "Thriller" + ], + "releaseDate": "2016-11-23", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 6.094, + "voteCount": 341, + "popularity": 7.631 + }, + { + "id": 1287536, + "title": "Dora and the Search for Sol Dorado", + "originalTitle": "Dora and the Search for Sol Dorado", + "overview": "Dora, Diego, and their new friends trek through the perilous dangers of the Amazonian jungle in search of the ancient and powerful treasure of Sol Dorado to keep it out of enemy hands.", + "posterPath": "/r3d6u2n7iPoWNsSWwlJJWrDblOH.jpg", + "backdropPath": "/9A0wQG38VdEu3DYh8HzXKXKhA6g.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12 + ], + "genres": [ + "Family", + "Comedy", + "Adventure" + ], + "releaseDate": "2025-07-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.606, + "voteCount": 99, + "popularity": 7.6304 + }, + { + "id": 1024721, + "title": "Monolith", + "originalTitle": "Monolith", + "overview": "A desperate young journalist turns to podcasting to salvage her career, but her rush to make headlines leads her to an alien conspiracy.", + "posterPath": "/zKpLzzX1va6gkMJiI9p3DudqChe.jpg", + "backdropPath": "/sAkY5Td6FkQAptnFB6Sr6xqldo4.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 878, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2023-10-26", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 176, + "popularity": 7.6284 + }, + { + "id": 504, + "title": "Monster", + "originalTitle": "Monster", + "overview": "An emotionally scarred highway drifter shoots a sadistic trick who rapes her, and ultimately becomes America's first female serial killer.", + "posterPath": "/aevmNtJCNG4ZlfEeEGZ79frMUes.jpg", + "backdropPath": "/nUJk4UjWS9YvBJUepCWziQ1QYSf.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2003-12-24", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 2450, + "popularity": 7.628 + }, + { + "id": 84397, + "title": "Double Dynamite", + "originalTitle": "Double Dynamite", + "overview": "An innocent bank teller, suspected of embezzlement, is aided by an eccentric, wisecracking waiter.", + "posterPath": "/eC78JPGLhE64F6q9hG1VR6zbFTa.jpg", + "backdropPath": "/6ZlAG5iNeMEgjlhQ9vDDJymMc5F.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12, + 10402, + 10749 + ], + "genres": [ + "Comedy", + "Adventure", + "Music", + "Romance" + ], + "releaseDate": "1951-12-25", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 13, + "popularity": 7.6268 + }, + { + "id": 40222, + "title": "The Brain", + "originalTitle": "The Brain", + "overview": "Dr. Blake runs a TV show called \"Independent Thinkers\", which is sort of a Scientology-like self-help/religion program. But he's not making his audience think any more independently - with the help of an alien organism he calls The Brain, he's using brainwashing and mind control. The only thing that stands between them and world domination is a brilliant but troubled high school student with a penchant for pranks...", + "posterPath": "/2kCTNR4709IFljoKoID5Ii06Rj6.jpg", + "backdropPath": "/eLHSLBX6svkE1146PGEjJgHklMZ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1988-11-03", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.175, + "voteCount": 81, + "popularity": 7.6268 + }, + { + "id": 516729, + "title": "Paddington in Peru", + "originalTitle": "Paddington in Peru", + "overview": "Paddington travels to Peru to visit his beloved Aunt Lucy, who now resides at the Home for Retired Bears. With the Brown Family in tow, a thrilling adventure ensues when a mystery plunges them into an unexpected journey through the Amazon rainforest and up to the mountain peaks of Peru.", + "posterPath": "/1ffZAucqfvQu36x1C49XfOdjuOG.jpg", + "backdropPath": "/7N7CtZftqEvgojR3QloukU0oWPg.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12 + ], + "genres": [ + "Family", + "Comedy", + "Adventure" + ], + "releaseDate": "2024-11-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.839, + "voteCount": 570, + "popularity": 7.6263 + }, + { + "id": 115290, + "title": "Blue Lagoon: The Awakening", + "originalTitle": "Blue Lagoon: The Awakening", + "overview": "Two high school students become stranded on a tropical island and must rely on each other for survival. They learn more about themselves and each other while falling in love.", + "posterPath": "/ptsBY9Aqo4Mn0V1krI5s8WfFxzW.jpg", + "backdropPath": "/7VSh4KRB38gs4t4Dlub8GwXNUub.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 12, + 10749, + 10770 + ], + "genres": [ + "Drama", + "Adventure", + "Romance", + "TV Movie" + ], + "releaseDate": "2012-06-16", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.445, + "voteCount": 1473, + "popularity": 7.6258 + }, + { + "id": 996154, + "title": "Black Lotus", + "originalTitle": "Black Lotus", + "overview": "An ex-special forces operative wages a one man war through the streets of Amsterdam to rescue his friend's daughter from the local crime syndicate.", + "posterPath": "/y3AeW200hqGLxoPyHMDHpzudylz.jpg", + "backdropPath": "/hvqNAz3cq48sh9GKxu4lPiogfBo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 9648, + 53 + ], + "genres": [ + "Action", + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "2023-04-12", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.448, + "voteCount": 183, + "popularity": 7.6237 + }, + { + "id": 77338, + "title": "The Intouchables", + "originalTitle": "Intouchables", + "overview": "A true story of two men who should never have met – a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.", + "posterPath": "/i97FM40bOMKvKIo3hjQviETE5yf.jpg", + "backdropPath": "/q6OGlZ1KMEb14AC8KbPCxyNOal6.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2011-11-02", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 8.3, + "voteCount": 17983, + "popularity": 7.6237 + }, + { + "id": 137113, + "title": "Edge of Tomorrow", + "originalTitle": "Edge of Tomorrow", + "overview": "Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.", + "posterPath": "/nBM9MMa2WCwvMG4IJ3eiGUdbPe6.jpg", + "backdropPath": "/4V1yIoAKPMRQwGBaSses8Bp2nsi.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878 + ], + "genres": [ + "Action", + "Science Fiction" + ], + "releaseDate": "2014-05-27", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.633, + "voteCount": 14590, + "popularity": 7.6226 + }, + { + "id": 55045, + "title": "Psych:9", + "originalTitle": "Psych:9", + "overview": "A young woman with a troubled past takes a job at recently closed down hospital. Working the night shift alone she begins to experience a series of unsettling events that lead her to believe that the hospital may be connected to a number of recent murders in the area. To uncover the truth she will have to revisit the past behind the walls of Psych:9.", + "posterPath": "/nGxy7Jd7VCSwpjMXJ7ZwWJuFGnC.jpg", + "backdropPath": "/ofH4XAARGBndUSaVNPAcPYpIw1U.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2010-05-07", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 4.566, + "voteCount": 53, + "popularity": 7.6207 + }, + { + "id": 597096, + "title": "Oleg", + "originalTitle": "Oļegs", + "overview": "Oleg, a young Latvian butcher, arrives in Brussels in the hope of getting a better salary in a meat factory. His experience turns short after being betrayed by a colleague. Alone in a country where he doesn’t belong, he quickly falls under the yoke of Andrzej, a Polish criminal.", + "posterPath": "/xJWLN0r3hBFlpQyFzfUHYkh0JeM.jpg", + "backdropPath": "/A51Fr3B5ZBS97H1KsxZnU9keUnN.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-10-04", + "releaseYear": "2019", + "originalLanguage": "lv", + "voteAverage": 6.8, + "voteCount": 27, + "popularity": 7.6192 + }, + { + "id": 456929, + "title": "Champions", + "originalTitle": "Campeones", + "overview": "A disgraced basketball coach is given the chance to coach Los Amigos, a team of players who are intellectually disabled, and soon realizes they just might have what it takes to make it to the national championships.", + "posterPath": "/m5z4Ud6Ya5EY3Eg3OBbVBaDKWK.jpg", + "backdropPath": "/8s231Ufkl9jF2JVnoZtQUxPXsSl.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "2018-04-06", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 7.52, + "voteCount": 758, + "popularity": 7.6178 + }, + { + "id": 528644, + "title": "Bilby", + "originalTitle": "Bilby", + "overview": "Threatened daily by the deadly residents and harsh environment of Australia’s Outback, a lonesome bilby finds himself an unwitting protector, and unexpected friend, to a helpless (and quite adorable) baby bird.", + "posterPath": "/xjOrumBkIq6hDjijozRuja8Obo0.jpg", + "backdropPath": "/r36XKxRSy2XQTBPfiu4ACXsINvo.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 12 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Adventure" + ], + "releaseDate": "2019-02-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 194, + "popularity": 7.6156 + }, + { + "id": 71672, + "title": "Wrong Turn 4: Bloody Beginnings", + "originalTitle": "Wrong Turn 4: Bloody Beginnings", + "overview": "A group of friends take refuge in a deserted sanatorium after they are left stranded in a snowstorm. Later, the place becomes a death trap when man-eating cannibals surround them.", + "posterPath": "/l1vD4GY7tlT420KJ3xWTzyQ2Aa9.jpg", + "backdropPath": "/8xyJcJnYbupkPPMvwTEJaUwjxDI.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2011-10-17", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.723, + "voteCount": 1168, + "popularity": 7.6146 + }, + { + "id": 42722, + "title": "The Nun", + "originalTitle": "La Religieuse", + "overview": "In eighteenth-century France, a girl is forced against her will to take vows as a nun. Three mothers superior treat her in radically different ways, ranging from maternal concern, to sadistic persecution, to lesbian desire.", + "posterPath": "/75EehgZs63K70RODuFLXXgopPl.jpg", + "backdropPath": "/auWpC62GLdB5je6TOOw1a4jGm2F.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1967-07-26", + "releaseYear": "1967", + "originalLanguage": "fr", + "voteAverage": 7.1, + "voteCount": 97, + "popularity": 7.6134 + }, + { + "id": 15378, + "title": "The Grand", + "originalTitle": "The Grand", + "overview": "The Grand is in the tradition of improvisational comedies like Best In Show and This Is Spinal Tap. The story is set in the world of professional poker and follows six players who reach the final table of the world’s second most famous high stakes tournament, the Grand Championship of Poker.", + "posterPath": "/3H4QTgFxt1lJps8U2tKfSTbsMl7.jpg", + "backdropPath": "/wl9oqSfAcufBsrKSUMwsEZNCVUl.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-06-07", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.826, + "voteCount": 95, + "popularity": 7.6133 + }, + { + "id": 17408, + "title": "Humans", + "originalTitle": "Humains", + "overview": "A team of several researchers travel to the Swiss Alps to investigate a scientific discovery on human evolution. The trip, however, turns into a deadly fight for survival when the team crash into a gully and find themselves falling prey to someone...or something.", + "posterPath": "/5bA0KY80E0qyam9awVBfuhxwrte.jpg", + "backdropPath": "/nMAhKhlM6jprnScyHHavVK13Hrr.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 53, + 27 + ], + "genres": [ + "Adventure", + "Thriller", + "Horror" + ], + "releaseDate": "2009-04-22", + "releaseYear": "2009", + "originalLanguage": "fr", + "voteAverage": 4.184, + "voteCount": 38, + "popularity": 7.6127 + }, + { + "id": 419430, + "title": "Get Out", + "originalTitle": "Get Out", + "overview": "Chris and his girlfriend Rose go upstate to visit her parents for the weekend. At first, Chris reads the family's overly accommodating behavior as nervous attempts to deal with their daughter's interracial relationship, but as the weekend progresses, a series of increasingly disturbing discoveries lead him to a truth that he never could have imagined.", + "posterPath": "/tFXcEccSQMf3lfhfXKSU9iRBpa3.jpg", + "backdropPath": "/bBQHALHRAaaORlPNXv7fNcRXYdx.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 27 + ], + "genres": [ + "Mystery", + "Thriller", + "Horror" + ], + "releaseDate": "2017-02-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 18327, + "popularity": 7.6094 + }, + { + "id": 616561, + "title": "Hope", + "originalTitle": "Håp", + "overview": "Together for 20 years, a couple that has grown apart over time receives difficult news that will impact the entire family. As they try to make sense of the changes, they end up rediscovering their love for one another.", + "posterPath": "/GmsHT0ssqeJceSoxfmoMYBZWQu.jpg", + "backdropPath": "/mx0lxr7oW9csT8jyU2Z4HFskkqm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2019-11-22", + "releaseYear": "2019", + "originalLanguage": "no", + "voteAverage": 6.9, + "voteCount": 57, + "popularity": 7.609 + }, + { + "id": 19913, + "title": "(500) Days of Summer", + "originalTitle": "(500) Days of Summer", + "overview": "Tom, greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer, suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.", + "posterPath": "/qXAuQ9hF30sQRsXf40OfRVl0MJZ.jpg", + "backdropPath": "/1M2i4Mxd03elGOTmEkIvqrHfmyS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2009-07-17", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.298, + "voteCount": 10698, + "popularity": 7.6079 + }, + { + "id": 843, + "title": "In the Mood for Love", + "originalTitle": "花樣年華", + "overview": "In 1962 Hong Kong, neighbors Su Li-zhen (Mrs. Chan) and Chow Mo-wan (Mr. Chow) discover their spouses are having an affair. As they spend time together, they develop feelings for each other, but their relationship remains chaste and unspoken, reflecting societal constraints and their own moral compass.", + "posterPath": "/8BgGbbWiLNhPtkMkN0gGTnbtvBv.jpg", + "backdropPath": "/ffQFnAUm2Uu4RU0nijpjPRf9TBT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2000-09-29", + "releaseYear": "2000", + "originalLanguage": "cn", + "voteAverage": 8.093, + "voteCount": 3084, + "popularity": 7.6072 + }, + { + "id": 151586, + "title": "La nipote", + "originalTitle": "La nipote", + "overview": "The summer vacation of a young beautiful girl, at her uncle's country villa.", + "posterPath": "/4Ix6IvUqXQLX5fWsa7RrQGF5bBP.jpg", + "backdropPath": "/2k7QEpO7Kvz8mgQPifjWLH6DjtS.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1974-06-14", + "releaseYear": "1974", + "originalLanguage": "it", + "voteAverage": 4.889, + "voteCount": 18, + "popularity": 7.6071 + }, + { + "id": 18801, + "title": "Haunted", + "originalTitle": "Haunted", + "overview": "Professor David Ash exposes false spiritulists and mediums. He is invited to Edbrook to resolve the fears and torments within its secretive family. Soon after arriving Ash begins to doubt his own senses, and watching the strange behaviour of its residents does not make his task any easier. In time, he finds there's more to Edbrook than even he can debunk.", + "posterPath": "/5sJyBJafGtBuvHv6zkXsTFtA3vu.jpg", + "backdropPath": "/7MyaGCabKNgJvg5Cpe5NInND7h9.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 27, + 14, + 10749 + ], + "genres": [ + "Mystery", + "Horror", + "Fantasy", + "Romance" + ], + "releaseDate": "1995-10-27", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.088, + "voteCount": 164, + "popularity": 7.6065 + }, + { + "id": 666277, + "title": "Past Lives", + "originalTitle": "Past Lives", + "overview": "After decades apart, childhood friends Nora and Hae Sung are reunited in New York for one fateful weekend as they confront notions of destiny, love, and the choices that make a life.", + "posterPath": "/k3waqVXSnvCZWfJYNtdamTgTtTA.jpg", + "backdropPath": "/7HR38hMBl23lf38MAN63y4pKsHz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2023-06-02", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 2097, + "popularity": 7.6057 + }, + { + "id": 9325, + "title": "The Jungle Book", + "originalTitle": "The Jungle Book", + "overview": "The boy Mowgli makes his way to the man-village with Bagheera, the wise panther. Along the way he meets jazzy King Louie, the hypnotic snake Kaa and the lovable, happy-go-lucky bear Baloo, who teaches Mowgli \"The Bare Necessities\" of life and the true meaning of friendship.", + "posterPath": "/9BgcTVV43dZ8A1TpuXWkuNTXtfI.jpg", + "backdropPath": "/zj8XS0l1cWStpKnuD1LFMB3VoV1.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 12 + ], + "genres": [ + "Family", + "Animation", + "Adventure" + ], + "releaseDate": "1967-10-18", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 7.278, + "voteCount": 6506, + "popularity": 7.6057 + }, + { + "id": 184578, + "title": "The Dove", + "originalTitle": "The Dove", + "overview": "16-year-old Robin Lee Graham aims to become the youngest person to sail around the world in a 23-foot sloop named \"The Dove\". On his journey, he meets and falls in love with Patti Ratteree, who is also traveling around the world. As Robin sails around the world to many beautiful locales, he grows from a boy to a man, finds himself, and finds the love of his life.", + "posterPath": "/8EI2olzoUGhHUyAPM6YiQ8cdORB.jpg", + "backdropPath": "/inDpkj6YTRuUfSULWTD1wj8yHeH.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 12 + ], + "genres": [ + "Romance", + "Drama", + "Adventure" + ], + "releaseDate": "1974-06-16", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 7.6054 + }, + { + "id": 50647, + "title": "Wanderlust", + "originalTitle": "Wanderlust", + "overview": "Rattled by sudden unemployment, a Manhattan couple surveys alternative living options, ultimately deciding to experiment with living on a rural commune where free love rules.", + "posterPath": "/hH1Bla0W4YIn9sdd9NwODzDCcE4.jpg", + "backdropPath": "/t4ykoxb5Ofmvbnnbv2u2r7HkjCS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2012-02-23", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.495, + "voteCount": 1295, + "popularity": 7.6035 + }, + { + "id": 852445, + "title": "Acid", + "originalTitle": "Acide", + "overview": "During a heat wave, strange clouds start pouring down acid rain, wreaking devastation and panic throughout France. In a world teetering on the edge, a girl and her divorced parents must join forces to confront and try to escape this climate catastrophe.", + "posterPath": "/6JrZMrk3ZlQFURI7nmKGMxnTUCs.jpg", + "backdropPath": "/rzz7TBviOvDgIeujt2h9GwxV0AJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 14 + ], + "genres": [ + "Drama", + "Science Fiction", + "Fantasy" + ], + "releaseDate": "2023-09-20", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 5.73, + "voteCount": 304, + "popularity": 7.6017 + }, + { + "id": 140403, + "title": "Fresh Meat", + "originalTitle": "Fresh Meat", + "overview": "A dysfunctional gang of criminals takes a middle class Maori family hostage and discovers too late that they are cannibals.", + "posterPath": "/iQ4KWUXZaINWNvj7FPLnBZu1XEc.jpg", + "backdropPath": "/xX005RB57Mztv3RjgCUMnATTzv5.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27 + ], + "genres": [ + "Comedy", + "Horror" + ], + "releaseDate": "2012-10-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.323, + "voteCount": 62, + "popularity": 7.5996 + }, + { + "id": 485811, + "title": "Redcon-1", + "originalTitle": "Redcon-1", + "overview": "After a zombie apocalypse spreads from a London prison, the UK is brought to its knees. The spread of the virus is temporarily contained but, without a cure, it’s only a matter of time before it breaks its boundaries and the biggest problem of all… any zombies with combat skills are now enhanced. With the South East of England quarantined from the rest of the world using fortified borders, intelligence finds that the scientist responsible for the outbreak is alive and well in London. With his recovery being the only hope of a cure, a squad of eight Special Forces soldiers is sent on a suicide mission to the city, now ruled by the undead, with a single task: get him out alive within 72 hours by any means necessary. What emerges is an unlikely pairing on a course to save humanity against ever-rising odds.", + "posterPath": "/vVPrWngVJ2cfYAncBedQty69Dlf.jpg", + "backdropPath": "/palbhPOSYf2g1p18vWd91dDhZLM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 878 + ], + "genres": [ + "Action", + "Horror", + "Science Fiction" + ], + "releaseDate": "2018-09-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 325, + "popularity": 7.5969 + }, + { + "id": 24559, + "title": "Slaughterhouse-Five", + "originalTitle": "Slaughterhouse-Five", + "overview": "Billy Pilgrim, a veteran of the Second World War, finds himself mysteriously detached from time, so that he is able to travel, without being able to help it, from the days of his childhood to those of his peculiar life on a distant planet called Tralfamadore, passing through his bitter experience as a prisoner of war in the German city of Dresden, over which looms the inevitable shadow of an unspeakable tragedy.", + "posterPath": "/gM2q9pGW9x2zdEMPRsXLBgTDDFH.jpg", + "backdropPath": "/tIlhG6ZmJFF1NKEA3aMWJhXhW78.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 10752 + ], + "genres": [ + "Drama", + "Science Fiction", + "War" + ], + "releaseDate": "1972-03-15", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.498, + "voteCount": 241, + "popularity": 7.5967 + }, + { + "id": 978090, + "title": "Striking The Palace", + "originalTitle": "Petites Mains", + "overview": "Eva, 20, joins Safietou, Djaoua, Violette and Simone, a team of chambermaids at one of Paris’s finest Palace Hotels. She discovers the poor working conditions of these invisible women, who work tirelessly to keep the high standards of these luxurious hotels, where one night can cost their annual salary. Many are not even employed by the hotels directly but by sub-contractors, and are therefore particularly vulnerable. While on strike to fight against subcontracting and to obtain better working conditions, they come up with a colorful idea : having their own “Fashion Week” in front of the hotel!", + "posterPath": "/nIVt1Jr37o5U9opboyBjs6zZ9mB.jpg", + "backdropPath": "/jorgdQ0Ows8iucGfba0Vb6Epqve.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-05-01", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 64, + "popularity": 7.5963 + }, + { + "id": 81775, + "title": "The Audience", + "originalTitle": "L'udienza", + "overview": "Caustic satire on bureaucracy of the Vatican authority and a simple Italian who wants to achieve the audience with the Pope.", + "posterPath": "/twsQq5mmkN60sQkLr2aucZBr4qO.jpg", + "backdropPath": "/qDE1AUFsgVTGZ3IwU3iaCs7LpQo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1972-03-31", + "releaseYear": "1972", + "originalLanguage": "it", + "voteAverage": 6.542, + "voteCount": 36, + "popularity": 7.5954 + }, + { + "id": 823, + "title": "Jin-Roh: The Wolf Brigade", + "originalTitle": "人狼 JIN-ROH", + "overview": "A member of an elite paramilitary counter-terrorism unit becomes traumatized after witnessing the suicide bombing of a young girl and is forced to undergo retraining. However, unbeknownst to him, he becomes a key player in a dispute between rival police divisions, as he finds himself increasingly involved with the sister of the girl he saw die.", + "posterPath": "/iyLKFR339GCzTKUtrVO4hbeEhub.jpg", + "backdropPath": "/2WuR3EaBj8X2WR4fvqa449tnNLn.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 10749, + 53, + 878 + ], + "genres": [ + "Animation", + "Drama", + "Romance", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1999-11-17", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.405, + "voteCount": 529, + "popularity": 7.5953 + }, + { + "id": 889962, + "title": "California King", + "originalTitle": "California King", + "overview": "When mattress store manager Perry's childhood crush, Lynette, announces she's leaving town, he panics. Desperate to prove himself, he and his reckless best friend, Wyatt, concoct a harebrained scheme to \"rescue\" her younger brother from a fake kidnapping--only to accidentally pull off a real one.", + "posterPath": "/3OUuH8AfUHwST706boHsUjvODYk.jpg", + "backdropPath": "/wBqQ5bDkungVrZzTgS7Sx5rdups.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 28, + 80 + ], + "genres": [ + "Comedy", + "Action", + "Crime" + ], + "releaseDate": "2025-04-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 17, + "popularity": 7.5947 + }, + { + "id": 10640, + "title": "Futureworld", + "originalTitle": "Futureworld", + "overview": "Two years after the Westworld tragedy in the Delos amusement park, the corporate owners have reopened the park following over $1 billion in safety and other improvements. For publicity purposes, reporters Chuck Browning and Tracy Ballard are invited to review the park. Just prior to arriving, however, Browning is given a clue by a dying man that something is amiss.", + "posterPath": "/sH5b8w52rEt8iqc1ibt1SwU5P.jpg", + "backdropPath": "/7PSLLtj7i94WSQ3Svjv7qHevj2n.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "Thriller" + ], + "releaseDate": "1976-08-13", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 344, + "popularity": 7.5934 + }, + { + "id": 286256, + "title": "Tim Maia", + "originalTitle": "Tim Maia", + "overview": "Biopic of Brazilian singer Tim Maia, from his childhood in Rio de Janeiro until his death at age 55, including his passage by the US, where he discovers a new style of music and is arrested for theft and drug possession.", + "posterPath": "/eZOOkfjr8YVhRsQvZxPUeqw49cx.jpg", + "backdropPath": "/uISJbRzKwt8XNZT0r9o1WaMF61Z.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 36 + ], + "genres": [ + "Drama", + "Music", + "History" + ], + "releaseDate": "2014-10-30", + "releaseYear": "2014", + "originalLanguage": "pt", + "voteAverage": 7.188, + "voteCount": 165, + "popularity": 7.5895 + }, + { + "id": 9315, + "title": "Flightplan", + "originalTitle": "Flightplan", + "overview": "Flying at 40,000 feet in a state-of-the art aircraft that she helped design, Kyle Pratt's 6-year-old daughter Julia vanishes without a trace. Or did she? No one on the plane believes Julia was ever onboard. And now Kyle, desperate and alone, can only count on her own wits to unravel the mystery and save her daughter.", + "posterPath": "/oNjZFzbe7PfF3TxztNHDkinOPyB.jpg", + "backdropPath": "/59vrJSluVcM4bs9nnGMYnXX569o.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 9648 + ], + "genres": [ + "Thriller", + "Drama", + "Mystery" + ], + "releaseDate": "2005-09-22", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.451, + "voteCount": 2845, + "popularity": 7.5887 + }, + { + "id": 278154, + "title": "Ice Age: Collision Course", + "originalTitle": "Ice Age: Collision Course", + "overview": "Set after the events of Continental Drift, Scrat's epic pursuit of his elusive acorn catapults him outside of Earth, where he accidentally sets off a series of cosmic events that transform and threaten the planet. To save themselves from peril, Manny, Sid, Diego, and the rest of the herd leave their home and embark on a quest full of thrills and spills, highs and lows, laughter and adventure while traveling to exotic new lands and locations.", + "posterPath": "/dWyaaP1dmW5peBvgiVaugdRuyYD.jpg", + "backdropPath": "/lyt9DYP0Suy1j8XnjJl0saVOs8K.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 10751, + 35, + 878 + ], + "genres": [ + "Adventure", + "Animation", + "Family", + "Comedy", + "Science Fiction" + ], + "releaseDate": "2016-06-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 4770, + "popularity": 7.5866 + }, + { + "id": 1228685, + "title": "Love", + "originalTitle": "Kjærlighet", + "overview": "A female doctor in her late forties has no desire for a permanent relationship. But when a male nurse talks about how random meetings with men sometimes lead to rewarding and noncommittal sex, she notices how this is exactly what she wants.", + "posterPath": "/iLkxnDAhmzOlLtjzv19RvbnrHsP.jpg", + "backdropPath": "/po1gve57e66M2ye3JQIX1q8A3Nl.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2024-11-10", + "releaseYear": "2024", + "originalLanguage": "no", + "voteAverage": 6.9, + "voteCount": 28, + "popularity": 7.5862 + }, + { + "id": 28468, + "title": "The Key", + "originalTitle": "La chiave", + "overview": "Art professor Nino Rolfe attempts to break down his wife Teresa's conventional modesty. Noticing her affection for their daughter's fiancé, Nino instigates her sexual interest in him - setting off a chain of unexpected events and emotional complications...", + "posterPath": "/e6g2geNLgFzMbriH6EvSJZD78nx.jpg", + "backdropPath": "/bYbnlh6VXFRtcSX82UMDsBDLB5j.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1983-10-19", + "releaseYear": "1983", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 428, + "popularity": 7.5848 + }, + { + "id": 31332, + "title": "The Stranger", + "originalTitle": "Lo straniero", + "overview": "Meursault is a man who feels utterly isolated from everyone and everything around him. This alienation results in sudden, inexplicable bursts of violence, culminating in murder.", + "posterPath": "/q4SP2AyOyMAdWZhgWvDLZ9MY680.jpg", + "backdropPath": "/5ekGWawVJRnVzVsOqQMF9UpkZGP.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1967-10-14", + "releaseYear": "1967", + "originalLanguage": "it", + "voteAverage": 6.7, + "voteCount": 83, + "popularity": 7.5835 + }, + { + "id": 138275, + "title": "Galileo", + "originalTitle": "Galileo", + "overview": "A humble scientist from Padua proves that the Earth revolves and that it is not the center of the universe.", + "posterPath": "/5Eo6wfdBWW8JM3UWfJKVrwGIXg6.jpg", + "backdropPath": "/qGooCRzBPf2CB5J4EC25g2sqmx.jpg", + "mediaType": "movie", + "genreIds": [ + 36 + ], + "genres": [ + "History" + ], + "releaseDate": "1968-09-07", + "releaseYear": "1968", + "originalLanguage": "it", + "voteAverage": 6.276, + "voteCount": 29, + "popularity": 7.5788 + }, + { + "id": 242582, + "title": "Nightcrawler", + "originalTitle": "Nightcrawler", + "overview": "When Lou Bloom, desperate for work, muscles into the world of L.A. crime journalism, he blurs the line between observer and participant to become the star of his own story. Aiding him in his effort is Nina, a TV-news veteran.", + "posterPath": "/j9HrX8f7GbZQm1BrBiR40uFQZSb.jpg", + "backdropPath": "/bdI6U1mT0kCdTJ6TWtiFxQ42GSn.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2014-10-23", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.707, + "voteCount": 11357, + "popularity": 7.5783 + }, + { + "id": 15603, + "title": "Fat Pizza", + "originalTitle": "Fat Pizza", + "overview": "Fat Pizza is yet another slice of life at a dodgy suburban Sydney take away. Bobo Gigliotti the psychotic pizzeria owner/pizza chef is awaiting the arrival of his mail-order refugee bride Lin Chow Bang, and a new pizza deliverer is on the block. Channel V's Jabba almost steals the show as token skip delivery boy Davo Dinkum, a stoner with a bong strapped to his face like a feedbag.", + "posterPath": "/liPJfjBKSn0UKQ1W2GTgfk07Rmb.jpg", + "backdropPath": "/m49dLlJH81YCw4USCNyzoimixae.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-04-10", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 46, + "popularity": 7.5778 + }, + { + "id": 9702, + "title": "Bound by Honor", + "originalTitle": "Bound by Honor", + "overview": "Based on the true life experiences of poet Jimmy Santiago Baca, the film focuses on half-brothers Paco and Cruz, and their bi-racial cousin Miklo. It opens in 1972, as the three are members of an East L.A. gang known as the \"Vatos Locos\", and the story focuses on how a violent crime and the influence of narcotics alter their lives. Miklo is incarcerated and sent to San Quentin, where he makes a \"home\" for himself. Cruz becomes an exceptional artist, but a heroin addiction overcomes him with tragic results. Paco becomes a cop and an enemy to his \"carnal\", Miklo.", + "posterPath": "/gvP6R6juhe2IpCG7QGDgjyUvm0g.jpg", + "backdropPath": "/9xjUZjuYyehv2qnqMH0oR9nSTft.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 18, + 53 + ], + "genres": [ + "Crime", + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "1993-02-05", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8.133, + "voteCount": 1465, + "popularity": 7.5771 + }, + { + "id": 263986, + "title": "The Drownsman", + "originalTitle": "The Drownsman", + "overview": "After nearly drowning in a lake, a young girl develops an abnormal fear of water and is plagued by visions of a mysterious dark figure. A year later, in an attempt to cure her phobia and visions, her skeptical friends stage a séance and subject her to a bathtub experiment, unwittingly summoning the dark figure into the world.", + "posterPath": "/knOFNsT08SGghtW7GcpyriOsHqn.jpg", + "backdropPath": "/9n1WY3L5OVxVTmczGLFxDhwizgQ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14, + 53 + ], + "genres": [ + "Horror", + "Fantasy", + "Thriller" + ], + "releaseDate": "2014-08-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 56, + "popularity": 7.5764 + }, + { + "id": 28844, + "title": "Black Velvet", + "originalTitle": "Velluto nero", + "overview": "Crystal, a wealthy, scorned woman living in a massive Egyptian palace with her daughter Magda, finds commiseration in a dried-up Hollywood expat who surrounds himself with singing children.", + "posterPath": "/nRIkmhFx3xJmFKi6ExsiHapDJKP.jpg", + "backdropPath": "/vIIOXIHUM01rzCm8lNkxhqrqSDV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 27 + ], + "genres": [ + "Drama", + "Romance", + "Horror" + ], + "releaseDate": "1976-08-06", + "releaseYear": "1976", + "originalLanguage": "it", + "voteAverage": 4.2, + "voteCount": 31, + "popularity": 7.5759 + }, + { + "id": 111170, + "title": "Rubberneck", + "originalTitle": "Rubberneck", + "overview": "Paul Harris works at a small research facility on the outskirts of Boston. After a weekend tryst with a co-worker leaves him wanting more, his unreciprocated desires gradually mold into an acute infatuation. When Danielle takes interest in a new scientist at the laboratory, Paul's suppressed resentments and perverse delusions finally become unhinged, triggering a horrific course of events that mercilessly engulf a tortured past and fugitive present.", + "posterPath": "/aKfIBaEFyAQGk9Fyqpw78cGEUQ2.jpg", + "backdropPath": "/fBQzNe5wiuFeHqrViYRrGUo4CTk.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2013-02-22", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.85, + "voteCount": 20, + "popularity": 7.5748 + }, + { + "id": 536517, + "title": "Blood Machines", + "originalTitle": "Blood Machines", + "overview": "An artificial intelligence escapes her spaceship to turn into a female ghost and challenges two blade runners to a galactic chase.", + "posterPath": "/nT8cZQCz5pf0NBSnZDTDrfC8Mgn.jpg", + "backdropPath": "/c7TXEWIbLWJUi9c1w9yazNWBB4l.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27 + ], + "genres": [ + "Science Fiction", + "Horror" + ], + "releaseDate": "2020-09-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.339, + "voteCount": 87, + "popularity": 7.5746 + }, + { + "id": 351242, + "title": "The Intervention", + "originalTitle": "The Intervention", + "overview": "A weekend getaway for four couples takes a sharp turn when one of the couples discovers the entire trip was orchestrated to host an intervention on their marriage.", + "posterPath": "/yPgppin50E0pxKgL1lmKlFbhTF1.jpg", + "backdropPath": "/j8dF5qCN63TnpVn0hsVbZi3VnOn.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-08-26", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.857, + "voteCount": 171, + "popularity": 7.5739 + }, + { + "id": 686918, + "title": "Lone Wolf", + "originalTitle": "Lone Wolf", + "overview": "Through various modes of surveillance we observe an overprotective young woman, Winnie, and her disabled brother, Stevie, caught in a web of intrigue involving a bomb plot, inept anarchists, ambitious police and a corrupt politician. The duplicity of Winnie’s boyfriend, Conrad Verloc -political activist and police informant –propels these siblings down a deadly path. But justice may prevail in the aftermath, via the surveillance collected, compiled and presented by Special Crimes Sergeant Kylie Heat.", + "posterPath": "/p9XfsBQaaDX7WgbinKewtbrYAcD.jpg", + "backdropPath": "/r9idknRNC06DgibfBgiJ3L9WZnc.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-09-01", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.1, + "voteCount": 14, + "popularity": 7.5737 + }, + { + "id": 1129598, + "title": "Prey", + "originalTitle": "Prey", + "overview": "A young couple is compelled to leave their Christian missionary station in the Kalahari Desert after being threatened with death by an extremist militant gang. After crashing their aircraft they must battle man and beast for their lives.", + "posterPath": "/aOsPclgSiOqhndI2Xp2ksz2g9n6.jpg", + "backdropPath": "/n3JeGELHa9V6k9mL81ItMxWLSS6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 27 + ], + "genres": [ + "Action", + "Thriller", + "Horror" + ], + "releaseDate": "2024-03-15", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.022, + "voteCount": 343, + "popularity": 7.5736 + }, + { + "id": 121826, + "title": "Quartet", + "originalTitle": "Quartet", + "overview": "Cissy, Reggie, and Wilf are in a home for retired musicians. Every year, there is a concert to celebrate Composer Giuseppe Verdi's birthday and they take part. Jean, who used to be married to Reggie, arrives at the home and disrupts their equilibrium. She still acts like a diva, but she refuses to sing. Still, the show must go on, and it does.", + "posterPath": "/lDg2DfB5MuEoUeRFQqzBFVoWGep.jpg", + "backdropPath": "/rsGYoSu8MNGabCMAnZIzzEHzIFd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "2012-12-26", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 375, + "popularity": 7.5703 + }, + { + "id": 1128668, + "title": "Santocielo", + "originalTitle": "Santocielo", + "overview": "In paradise, a group gathers to discuss why people still act selfishly, even though Jesus sacrificed himself for them 2,000 years ago. As a result, a new Messiah is sent to Earth to address the issue.", + "posterPath": "/dLDyJunOnqwCdQesG6mvCWCWCEs.jpg", + "backdropPath": "/8mXqTjyxfC9iA5KEkwU0Aq6DCtx.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2023-12-14", + "releaseYear": "2023", + "originalLanguage": "it", + "voteAverage": 5.955, + "voteCount": 155, + "popularity": 7.5685 + }, + { + "id": 2362, + "title": "Westworld", + "originalTitle": "Westworld", + "overview": "Delos is a futuristic amusement park that features themed worlds populated by human-like androids. After two patrons have a run-in with a menacing gunslinger in West World, the androids at Delos all begin to malfunction, causing havoc throughout the park.", + "posterPath": "/qNt29HzxwZ4jGTgSRxdA34ino9Q.jpg", + "backdropPath": "/m9K8LWrIuujCvYW9c7SgIOSOOj1.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 878, + 37 + ], + "genres": [ + "Adventure", + "Science Fiction", + "Western" + ], + "releaseDate": "1973-08-15", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 6.775, + "voteCount": 1386, + "popularity": 7.5682 + }, + { + "id": 19959, + "title": "Surrogates", + "originalTitle": "Surrogates", + "overview": "Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.", + "posterPath": "/v3Z0Hbl0oe57njrrIPh0fJPFoo.jpg", + "backdropPath": "/cCjzu6OZIUDWowadzexCHNBTmjH.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "2009-09-24", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.139, + "voteCount": 3321, + "popularity": 7.5654 + }, + { + "id": 524, + "title": "Casino", + "originalTitle": "Casino", + "overview": "In Las Vegas, two best friends--a casino executive and a Mafia enforcer--compete for a gambling empire and a fast-living, fast-loving socialite.", + "posterPath": "/gziIkUSnYuj9ChCi8qOu2ZunpSC.jpg", + "backdropPath": "/iZGiMD0p1M2AOmzKknFo5bkuz94.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1995-11-22", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.992, + "voteCount": 6267, + "popularity": 7.5646 + }, + { + "id": 303991, + "title": "Demolition", + "originalTitle": "Demolition", + "overview": "An emotionally desperate investment banker finds hope through a woman he meets.", + "posterPath": "/4t56LZ1KbOOxgKfqMKN6truBDVc.jpg", + "backdropPath": "/dapUorbOMzlaB12dACCtaiuaTQz.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-04-06", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 2390, + "popularity": 7.5635 + }, + { + "id": 337404, + "title": "Cruella", + "originalTitle": "Cruella", + "overview": "In 1970s London amidst the punk rock revolution, a young grifter named Estella is determined to make a name for herself with her designs. She befriends a pair of young thieves who appreciate her appetite for mischief, and together they are able to build a life for themselves on the London streets. One day, Estella’s flair for fashion catches the eye of the Baroness von Hellman, a fashion legend who is devastatingly chic and terrifyingly haute. But their relationship sets in motion a course of events and revelations that will cause Estella to embrace her wicked side and become the raucous, fashionable and revenge-bent Cruella.", + "posterPath": "/hjS9mH8KvRiGHgjk6VUZH7OT0Ng.jpg", + "backdropPath": "/6MKr3KgOLmzOP6MSuZERO41Lpkt.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 12 + ], + "genres": [ + "Comedy", + "Crime", + "Adventure" + ], + "releaseDate": "2021-05-26", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.983, + "voteCount": 9799, + "popularity": 7.5625 + }, + { + "id": 115, + "title": "The Big Lebowski", + "originalTitle": "The Big Lebowski", + "overview": "Jeffrey 'The Dude' Lebowski, a Los Angeles slacker who only wants to bowl and drink White Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.", + "posterPath": "/9mprbw31MGdd66LR0AQKoDMoFRv.jpg", + "backdropPath": "/lpTXHNKCozJgfUQZZJ1Xn3LKpIS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "1998-03-06", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.841, + "voteCount": 11792, + "popularity": 7.5623 + }, + { + "id": 8690, + "title": "Eaten Alive!", + "originalTitle": "Mangiati vivi!", + "overview": "A woman's search for her missing sister leads her to the jungles of New Guinea, where she and an expatriate guide encounter a cult leader and flesh-hungry natives.", + "posterPath": "/7h5LH5UNjYO4Hvv2myKqGeoaSo7.jpg", + "backdropPath": "/rgk8qRr3Xdl700x5NTJ39rtccuj.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 27 + ], + "genres": [ + "Adventure", + "Horror" + ], + "releaseDate": "1980-03-19", + "releaseYear": "1980", + "originalLanguage": "it", + "voteAverage": 5.3, + "voteCount": 134, + "popularity": 7.562 + }, + { + "id": 1226406, + "title": "Love Hurts", + "originalTitle": "Love Hurts", + "overview": "A realtor is pulled back into the life he left behind after his former partner-in-crime resurfaces with an ominous message. With his crime-lord brother also on his trail, he must confront his past and the history he never fully buried.", + "posterPath": "/skPPVeHoTTVVSJlb0Ib5vrqiuA4.jpg", + "backdropPath": "/aGgr2Q07AcyiWPGODoofgZDUEHp.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 10749 + ], + "genres": [ + "Action", + "Comedy", + "Romance" + ], + "releaseDate": "2025-02-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.74, + "voteCount": 306, + "popularity": 7.5617 + }, + { + "id": 40649, + "title": "Demonic Toys", + "originalTitle": "Demonic Toys", + "overview": "While on a stakeout, Judith Gray, a beautiful, tough cop, is trapped inside a warehouse full of toys that have been awakened to murderous life by a strange child of darkness.", + "posterPath": "/stFIfuvl3pWgPeAiYKVy7dlg73X.jpg", + "backdropPath": "/lxSDdz3c7fI7tsHk0XAQOCbkC28.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1992-03-12", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 162, + "popularity": 7.561 + }, + { + "id": 462550, + "title": "Family", + "originalTitle": "Family", + "overview": "Kate Stone is career-focused with a brash attitude that keeps relationships at an arm's length. When her estranged brother calls asking her to baby-sit her tween niece Maddie, Kate reluctantly agrees to help. But baby-sitting overnight unexpectedly turns into a week, and Kate's life spins into chaos. As Maddie reveals stories of being bullied and of wanting to run away and be a Juggalo, the two form a unique bond.", + "posterPath": "/vUhBEVwzvLsbWRnUNQsWkj7luAE.jpg", + "backdropPath": "/47QrJ0K8W6DEdZOZG9UohrfDK7i.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-08-19", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 67, + "popularity": 7.5603 + }, + { + "id": 810271, + "title": "The Resort", + "originalTitle": "The Resort", + "overview": "Four friends head to Hawaii to investigate reports of a haunting at an abandoned resort in hopes of finding the infamous Half-Faced Girl. When they arrive, they soon learn you should be careful what you wish for.", + "posterPath": "/bXZUVJP8Fr3RId7SSsV4RXvjnIh.jpg", + "backdropPath": "/tZWTkJFJe5DwzSSkCc4L7VghJmZ.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2021-04-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 276, + "popularity": 7.5579 + }, + { + "id": 442266, + "title": "La Colle", + "originalTitle": "La Colle", + "overview": "Poor Benjamin gets stuck in a time-loop while on detention with his high-school crush.", + "posterPath": "/haQZa0aUJ8YX8C4xOr3EVe6lKlL.jpg", + "backdropPath": "/q24Uz9syNTc95FQrgjJYqudYqoq.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-07-19", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 196, + "popularity": 7.5568 + }, + { + "id": 108632, + "title": "The Show", + "originalTitle": "The Show", + "overview": "Cock Robin is the swaggering ballyhoo man of a Hungarian sideshow known as the Palace of Illusions. The highlight of the show is a reenactment of Salome's dance of the seven veils, replete with the beheading of Jokanaan. The performer portraying Salome is in love with Cock Robin. Jealous, sinister The Greek is determined to eliminate that competition.", + "posterPath": "/gMdoBDkaLyp1vgWKOWYRh77Y946.jpg", + "backdropPath": "/wR4HNonMth871WvSlyX8tiCY5Io.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1927-01-22", + "releaseYear": "1927", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 12, + "popularity": 7.5535 + }, + { + "id": 10079, + "title": "Joy Division", + "originalTitle": "Joy Division", + "overview": "A teenage orphan fights against the Red Army at the end of WWII and in the aftermath is 'adopted' by a Commissar. Years later he is sent to London during the Cold war to work for the KGB, where he questions his life.", + "posterPath": "/nY4OiLvIN2gH0AQJP0AjnhLwlcg.jpg", + "backdropPath": "/r4LK4yNgfV4rl3WuTF0yIa2HrXy.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-11-17", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.042, + "voteCount": 24, + "popularity": 7.5499 + }, + { + "id": 9286, + "title": "Final Destination 3", + "originalTitle": "Final Destination 3", + "overview": "High school senior Wendy's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself — which seeks out those who escaped their fate.", + "posterPath": "/p7ARuNKUGPGvkBiDtIDvAzYzonX.jpg", + "backdropPath": "/nSV1NIAK0Sp5dM1oiobtqbJ8Jrv.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2006-02-09", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.148, + "voteCount": 4386, + "popularity": 7.5498 + }, + { + "id": 38093, + "title": "Just Wright", + "originalTitle": "Just Wright", + "overview": "Physical therapist Leslie Wright lands the dream job of working with basketball superstar Scott McKnight, helping him recover from a career-threatening injury. All goes well and soon Leslie finds herself falling in love with him. Just as their friendship deepens, however, Scott focuses his attention back on his tenuous relationship with his ex-fiancé Morgan, Leslie's gorgeous godsister, who would love to be the basketball player's trophy wife.", + "posterPath": "/qx1SumoTQYtB9VyxQ7irlfE2e7L.jpg", + "backdropPath": "/gvNBgLoVxEGZrzjyudnTY0tdDlz.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2010-05-14", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.521, + "voteCount": 448, + "popularity": 7.5472 + }, + { + "id": 9682, + "title": "Pulse", + "originalTitle": "Pulse", + "overview": "When the dead discover a means to contact the living through electronic devices, cellphones and computers become open gateways to monstrosities and destruction.", + "posterPath": "/9ePdNzKVvGHsMMphfS3HeoMvuEX.jpg", + "backdropPath": "/dTDETgmTPeEbnI3cwfQhTETgygv.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 9648, + 18 + ], + "genres": [ + "Horror", + "Science Fiction", + "Mystery", + "Drama" + ], + "releaseDate": "2006-08-11", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.061, + "voteCount": 566, + "popularity": 7.547 + }, + { + "id": 1196470, + "title": "Survive", + "originalTitle": "Survivre", + "overview": "A couple celebrates their son’s birthday in the middle of the ocean on their boat. A violent storm hits and it brings up hungry creatures from the depths and they fight for their survival.", + "posterPath": "/7fR3KxswtY8OHHZuOUB9td58CRX.jpg", + "backdropPath": "/2xnLwNvea2TSH0M0oc9iEq2KEVp.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Adventure", + "Action" + ], + "releaseDate": "2024-06-19", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 5.818, + "voteCount": 329, + "popularity": 7.5438 + }, + { + "id": 584427, + "title": "4L", + "originalTitle": "4 latas", + "overview": "To find Joseba, a dying friend, and see him reunite with his daughter Ely, two old friends, Jean Pierre and Tocho, embark with her on a road trip through the Sahara desert, from Spain to Mali.", + "posterPath": "/hxtvnvWdeibiDc6mU5ftAUPGofe.jpg", + "backdropPath": "/iNoQzWvIozJ1H3zA9ShV8FC6TmC.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-03-01", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 5.914, + "voteCount": 168, + "popularity": 7.5414 + }, + { + "id": 33633, + "title": "Oleanna", + "originalTitle": "Oleanna", + "overview": "Carol, a college student, comes to John's office, her professor, to discuss the grade she has received for one of her papers.", + "posterPath": "/8WqNryGHUxtVqvQK7JZYy2jnpxA.jpg", + "backdropPath": "/6bXAJ2pMeFaIs6YuajYlAgBf8m8.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1994-11-04", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.143, + "voteCount": 56, + "popularity": 7.5406 + }, + { + "id": 686, + "title": "Contact", + "originalTitle": "Contact", + "overview": "A radio astronomer receives the first extraterrestrial radio signal ever picked up on Earth. As the world powers scramble to decipher the message and decide upon a course of action, she must make some difficult decisions between her beliefs, the truth, and reality.", + "posterPath": "/bCpMIywuNZeWt3i5UMLEIc0VSwM.jpg", + "backdropPath": "/yFkUPqBuUnbhYbQL8VFpTrAT9za.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 9648 + ], + "genres": [ + "Drama", + "Science Fiction", + "Mystery" + ], + "releaseDate": "1997-07-11", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.439, + "voteCount": 4774, + "popularity": 7.5379 + }, + { + "id": 9304, + "title": "Multiplicity", + "originalTitle": "Multiplicity", + "overview": "Construction worker Doug Kinney finds that the pressures of his working life, combined with his duties to his wife Laura and daughter Jennifer leaves him with little time for himself. However, he is approached by geneticist Dr. Owen Leeds, who offers Doug a rather unusual solution to his problems: cloning.", + "posterPath": "/t3CUIrzJwxIS7uS1YDJdfSJuPAo.jpg", + "backdropPath": "/pfgUk6IgobtEhisyJBBrjSVkfZR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 878, + 10749 + ], + "genres": [ + "Comedy", + "Fantasy", + "Science Fiction", + "Romance" + ], + "releaseDate": "1996-07-19", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 575, + "popularity": 7.5372 + }, + { + "id": 572667, + "title": "Too Handsome to Handle", + "originalTitle": "Terlalu Tampan", + "overview": "Wary of the effects of his good looks on others, a shut-in agrees to attend high school for the first time and meets a girl who's immune to his charm.", + "posterPath": "/nAervZUh0oosR06cZtNrRWKIGBs.jpg", + "backdropPath": "/tkrFNe7KPzWQEFDS7jKPZwWXMDj.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2019-01-31", + "releaseYear": "2019", + "originalLanguage": "id", + "voteAverage": 6.5, + "voteCount": 13, + "popularity": 7.5366 + }, + { + "id": 1399696, + "title": "Hysteria", + "originalTitle": "Hysteria", + "overview": "A film shoot takes a dark turn when the burning of a Quran throws the crew into turmoil. Caught in accusations, intern Elif is drawn into a dangerous game of secrets and lies, finding herself at the heart of an all-absorbing conspiracy.", + "posterPath": "/7UOVLIlPm5RmSJ8Y0kbOKVqzNfO.jpg", + "backdropPath": "/xw0GqVJSAqZRpBGOhpbICsL0EpJ.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2025-05-02", + "releaseYear": "2025", + "originalLanguage": "de", + "voteAverage": 5, + "voteCount": 10, + "popularity": 7.5327 + }, + { + "id": 16166, + "title": "Sauna", + "originalTitle": "Sauna", + "overview": "It is 1595. Brutal wars have just ended in an uneasy peace between Protestant Sweden and Orthodox Russia. We focus on the spiritual defeats of two conquered Finnish brothers, one a hardened near-psychopathic war hero, the other a gentle scientist in an age with no use for such men. They find themselves in the swampy interior, demarcating the new border with a unit of sadistic Russians.", + "posterPath": "/9OnBhOx8kAyA3BLi8bx83L2dQbA.jpg", + "backdropPath": "/yNwoVVgx3avrfwJSgyBtXd7oSGM.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2008-10-17", + "releaseYear": "2008", + "originalLanguage": "fi", + "voteAverage": 6.171, + "voteCount": 126, + "popularity": 7.5321 + }, + { + "id": 1813, + "title": "The Devil's Advocate", + "originalTitle": "The Devil's Advocate", + "overview": "Aspiring Florida defense lawyer Kevin Lomax accepts a job at a New York law firm. With the stakes getting higher every case, Kevin quickly learns that his boss has something far more evil planned.", + "posterPath": "/5ZzBGpxy55OQzHxKVY11IpY6a0o.jpg", + "backdropPath": "/bHjrGR0Fzn4QEBhvjiwdyMPaYVH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 27 + ], + "genres": [ + "Drama", + "Mystery", + "Horror" + ], + "releaseDate": "1997-10-17", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.467, + "voteCount": 6501, + "popularity": 7.5295 + }, + { + "id": 666942, + "title": "Music", + "originalTitle": "Musik", + "overview": "Abandoned at birth in the Greek mountains on a stormy night, Jon is taken in and adopted, without having known his father or mother. As a young man, he meets Iro, a warden in the prison where he is incarcerated after a deadly tragic accident. She seems to seek out his presence, takes care of him, records music for him. Jon’s eyesight begins to fail... From then on, for every loss he suffers, he will gain something in return. Thus, in spite of going blind, he will live his life more fully than ever.", + "posterPath": "/1umDdnIslIJZOxZ5WSbEt7aTVCF.jpg", + "backdropPath": "/pU5L09QsIEGRer4jK5TOdSeGDFK.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-03-08", + "releaseYear": "2023", + "originalLanguage": "de", + "voteAverage": 5.4, + "voteCount": 18, + "popularity": 7.526 + }, + { + "id": 13461, + "title": "Melissa P.", + "originalTitle": "Melissa P.", + "overview": "An adolescent girl, living with her mother and her grandmother, will have her first sexual experiences in a heavy and excessive way.", + "posterPath": "/3fjMLEVozmApiiDF75dnpSIaYZ3.jpg", + "backdropPath": "/c6hFzNJIAGT84E6SfuuqEZNJlqH.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2005-11-18", + "releaseYear": "2005", + "originalLanguage": "it", + "voteAverage": 4.6, + "voteCount": 581, + "popularity": 7.5247 + }, + { + "id": 1502943, + "title": "Night of the Reaper", + "originalTitle": "Night of the Reaper", + "overview": "College student Deena visits her hometown and is roped into a babysitting gig. Meanwhile, the local sheriff, after receiving a piece of evidence in the mail, falls into an increasingly desperate scavenger hunt involving a series of murders.", + "posterPath": "/HVR8cNWzBVoqbEIIqVtLpDvVKn.jpg", + "backdropPath": "/eO5hZJjuQRB675g2j9Y7BqDJrGd.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-10-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.64, + "voteCount": 25, + "popularity": 7.5244 + }, + { + "id": 59068, + "title": "Sister Emanuelle", + "originalTitle": "Suor Emanuelle", + "overview": "Sister Emanuelle and Sister Nanà go to meet Mr. Cazzabriga, who has a problem: his wild-child daughter, Monica, who he wants to send to a Catholic school to remove her from temptations around the house.", + "posterPath": "/eRmBJGmljHY9o7OHpcmPfdMKqQg.jpg", + "backdropPath": "/7SyXKnL76PqHtIcGdUWnrOgdEkm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 27 + ], + "genres": [ + "Drama", + "Crime", + "Horror" + ], + "releaseDate": "1977-08-10", + "releaseYear": "1977", + "originalLanguage": "it", + "voteAverage": 5.179, + "voteCount": 53, + "popularity": 7.5237 + }, + { + "id": 8392, + "title": "My Neighbor Totoro", + "originalTitle": "となりのトトロ", + "overview": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.", + "posterPath": "/rtGDOeG9LzoerkDGZF9dnVeLppL.jpg", + "backdropPath": "/95ozIP0A2fKaAXxwDxUEVn74Iux.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 16, + 10751 + ], + "genres": [ + "Fantasy", + "Animation", + "Family" + ], + "releaseDate": "1988-04-16", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 8.067, + "voteCount": 8479, + "popularity": 7.5217 + }, + { + "id": 30688, + "title": "Gemini", + "originalTitle": "Géminis", + "overview": "An incestuous love affair. Meme and Jeremias are the younger children in a typical bourgeois family. Their mother Lucia is the dominant force in the household, but her fixation on upholding the niceties of upper middle class life has prevented her from seeing what is going on under her roof. When the siblings’ older brother and his fiancee arrive home for their wedding, it seems inevitable that the concealment will be impossible to sustain. But equally it becomes apparent that if Lucia were to find out about the affair, there would be catastrophic consequences.", + "posterPath": "/6VzGSoaXJLNJkWLnkNABwB3CZEa.jpg", + "backdropPath": "/eIxnorIDSgrTHYjkWilqBGTCvFs.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2005-06-09", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 5.5, + "voteCount": 54, + "popularity": 7.5201 + }, + { + "id": 50071, + "title": "Sweetgrass", + "originalTitle": "Sweetgrass", + "overview": "An unsentimental elegy to the American West, Sweetgrass follows the last modern-day cowboys to lead their flocks of sheep up into Montana's breathtaking and often dangerous Absaroka-Beartooth mountains for summer pasture, revealing a world in which nature and culture, animals and humans, vulnerability and violence are all intimately meshed.", + "posterPath": "/xTQ7URCmLBWkMJeT4G8uyvpciqU.jpg", + "backdropPath": "/zCX6d5Ib4PpM8nNuwvescqLUe0j.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2009-11-18", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 27, + "popularity": 7.5189 + }, + { + "id": 354660, + "title": "The Bomb", + "originalTitle": "The Bomb", + "overview": "Using masterfully restored footage from recently declassified images, The Bomb tells a powerful story of the most destructive invention in human history. From the earliest testing stages to its use as the ultimate chess piece in global politics, the program outlines how America developed the bomb, how it changed the world and how it continues to loom large in our lives. The show also includes interviews with prominent historians and government insiders, along with men and women who helped build the weapon piece by piece.", + "posterPath": "/rrmXjsBF0B8sxQDadh4rusaT60s.jpg", + "backdropPath": "/75mZKDviACLuXiaLF8GCN4wmqLV.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 36, + 10752 + ], + "genres": [ + "Documentary", + "History", + "War" + ], + "releaseDate": "2015-07-29", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 14, + "popularity": 7.5188 + }, + { + "id": 50456, + "title": "Hanna", + "originalTitle": "Hanna", + "overview": "Raised by her father, an ex-CIA agent, in the wilds of Finland, Hanna's upbringing has been geared to making her the perfect assassin. Sent into the world by her father on a mission, Hanna journeys across Europe, eluding agents dispatched after her by a ruthless intelligence operative. As she nears her ultimate target, Hanna faces startling revelations about her existence.", + "posterPath": "/gRvxRMtejJa9jjfDDUibUIfIJbP.jpg", + "backdropPath": "/qq39KWLKBBJmOtj54grO58XyoXG.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 12 + ], + "genres": [ + "Action", + "Thriller", + "Adventure" + ], + "releaseDate": "2011-04-07", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.591, + "voteCount": 3541, + "popularity": 7.5171 + }, + { + "id": 10615, + "title": "Pootie Tang", + "originalTitle": "Pootie Tang", + "overview": "Pootie Tang, the musician/actor/folk hero of the ghetto, is chronicled from his early childhood to his battles against the evil Corporate America, who try to steal his magic belt and make him sell out by endorsing addictive products to his people. Pootie must learn to find himself and defeat the evil corporation for all the young black children of America, supatime.", + "posterPath": "/fNvx45x4JWHYucpnV2vuKn9TZnV.jpg", + "backdropPath": "/csH5MGh51Ndz1bJ3MHhukjs0Pyo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2001-06-29", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.058, + "voteCount": 163, + "popularity": 7.5097 + }, + { + "id": 513045, + "title": "Stuber", + "originalTitle": "Stuber", + "overview": "After crashing his car, a cop who's recovering from eye surgery recruits an Uber driver to help him catch a heroin dealer. The mismatched pair soon find themselves in for a wild day of stakeouts and shootouts as they encounter the city's seedy side.", + "posterPath": "/gqk7ndiGn9WUT5UDTm6KHwGTv3m.jpg", + "backdropPath": "/Ad0O2lK5XHu1iBywSH039l5dGgA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2019-07-11", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1354, + "popularity": 7.5066 + }, + { + "id": 110614, + "title": "Savage Pampas", + "originalTitle": "Savage Pampas", + "overview": "An army captain in Argentina learns why his lonely men are deserting to an outlaw's gaucho gang.", + "posterPath": "/AuYajllaPX5AA83B4CeyS9dDZpK.jpg", + "backdropPath": "/yvK6NSRpxoGPondKbXdEXL4Xo8e.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 37 + ], + "genres": [ + "Adventure", + "Drama", + "Western" + ], + "releaseDate": "1966-07-07", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 13, + "popularity": 7.5063 + }, + { + "id": 133167, + "title": "The Victim", + "originalTitle": "The Victim", + "overview": "A woman is trapped during a storm in a house with no electricity or phone. A killer has murdered her sister, stuffed the body in the basement, and is now after her.", + "posterPath": "/2wlpBT5ypi7NARVfVzaUc5n8OqH.jpg", + "backdropPath": "/lDmIFwzQ5cGxEYQUU28vVsEPNH.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 27, + 9648, + 53, + 10770 + ], + "genres": [ + "Crime", + "Drama", + "Horror", + "Mystery", + "Thriller", + "TV Movie" + ], + "releaseDate": "1972-11-14", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.227, + "voteCount": 22, + "popularity": 7.5045 + }, + { + "id": 487186, + "title": "Halo: Nightfall", + "originalTitle": "Halo: Nightfall", + "overview": "Set between the events of Halo 4 and Halo 5: Guardians… Halo: Nightfall tells the dramatic story of legendary man hunter and Naval Intelligence Officer Jameson Locke and his team as they are caught in a horrific biological attack while investigating terrorist activity on the distant colony world of Sedra. As they unravel a plot that draws them to an ancient, hellish artifact, they will be forced to fight for their survival, question everything and ultimately choose between their loyalty and their lives.", + "posterPath": "/liLQ8EFzHN06eFZ9KQMDK6cmGaK.jpg", + "backdropPath": "/jAXel5sHK1bnv9lL1U4HOkdxuD9.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "2014-02-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 181, + "popularity": 7.504 + }, + { + "id": 1069905, + "title": "Jay Kelly", + "originalTitle": "Jay Kelly", + "overview": "Famous movie actor Jay Kelly embarks on a journey of self-discovery, confronting both his past and present, accompanied by his devoted manager, Ron.", + "posterPath": "/lEXYpY9X17pGC7xYYy17Guv0L3J.jpg", + "backdropPath": "/wR9D9hQvCVBux16NauY4b7letdU.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-11-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 11, + "popularity": 7.5021 + }, + { + "id": 496450, + "title": "Miraculous: Ladybug & Cat Noir, The Movie", + "originalTitle": "Miraculous - le film", + "overview": "After a guardian of magical jewels turns an awkward girl and a popular boy into superheroes, they can never reveal their identities — even to each other.", + "posterPath": "/dQNJ8SdCMn3zWwHzzQD2xrphR1X.jpg", + "backdropPath": "/iEFuHjqrE059SmflBva1JzDJutE.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 28, + 10749, + 10751 + ], + "genres": [ + "Animation", + "Fantasy", + "Action", + "Romance", + "Family" + ], + "releaseDate": "2023-07-05", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 7.6, + "voteCount": 929, + "popularity": 7.5017 + }, + { + "id": 31703, + "title": "Death Ship", + "originalTitle": "Death Ship", + "overview": "Survivors of a tragic shipping collision are rescued by a mysterious black ship which appears out of the fog. Little do they realise that the ship is actually a Nazi torture ship which has sailed the seas for years, luring unsuspecting sailors aboard and killing them off one by one.", + "posterPath": "/w5FDs2a7MLuwDJPQWbVbYrL2NJy.jpg", + "backdropPath": "/tYCrbmnQlmrCnGMO78qVG5jOM79.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "1980-03-07", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 152, + "popularity": 7.5004 + }, + { + "id": 996067, + "title": "NightMare", + "originalTitle": "Marerittet", + "overview": "A woman is plagued by constant nightmares after moving into a large, suspiciously cheap apartment. The apartment’s terrible secret soon reveals itself through her dreams.", + "posterPath": "/rlB7pf3dVwRcF4tFKXxNwx3wwXx.jpg", + "backdropPath": "/mm6o45ILfY52w8y68e4FrQFlD3x.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2022-10-22", + "releaseYear": "2022", + "originalLanguage": "no", + "voteAverage": 5.4, + "voteCount": 33, + "popularity": 7.5 + }, + { + "id": 660335, + "title": "Hunted", + "originalTitle": "Hunted", + "overview": "A woman flees two serial killers who are hot on her heels in a forest.", + "posterPath": "/ytCQyuhipANedA1to4EKAOv10xv.jpg", + "backdropPath": "/tdoqtxyeZLZUd12kZnUhnDvl8Q2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 53 + ], + "genres": [ + "Action", + "Horror", + "Thriller" + ], + "releaseDate": "2021-02-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 184, + "popularity": 7.4986 + }, + { + "id": 12140, + "title": "Ghost in the Shell 2: Innocence", + "originalTitle": "イノセンス", + "overview": "Cyborg detective Batou is assigned to investigate a series of murders committed by gynoids—doll-like cyborgs, which all malfunctioned, killed, then self-destructed afterwards. The brains of the gynoids initialize in order to protect their manufacturer's software, but in one gynoid, which Batou himself neutralized, one file remains: a voice speaking the phrase \"Help me.\"", + "posterPath": "/1ZJRbLDVr90KLtKdmTT4WZhT26E.jpg", + "backdropPath": "/8AGLGUYg9UqcDWXtAH0t7InsBd.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 878 + ], + "genres": [ + "Animation", + "Drama", + "Science Fiction" + ], + "releaseDate": "2004-03-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 932, + "popularity": 7.4972 + }, + { + "id": 12092, + "title": "Alice in Wonderland", + "originalTitle": "Alice in Wonderland", + "overview": "On a golden afternoon, wildly curious young Alice tumbles into the burrow and enters the merry, madcap world of Wonderland full of whimsical escapades.", + "posterPath": "/20cvfwfaFqNbe9Fc3VEHJuPRxmn.jpg", + "backdropPath": "/tyj0QztA0PkYo6XauifWjkx7UVi.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 12 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Adventure" + ], + "releaseDate": "1951-07-28", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 6115, + "popularity": 7.4971 + }, + { + "id": 1299046, + "title": "Diamonds", + "originalTitle": "Diamanti", + "overview": "A film director gathers his favorite actresses, those he worked with and those he loved. He wants to make a film about women but he doesn’t reveal much: he observes them, takes cue, until his imaginary throw them into another era, in a past where the noise of the sewing machines fills a workplace handled and populated by women, where men have minor and marginal roles and cinema can be told from another point of view: the one of costume. Between loneliness, passions, anxieties, heartbreaking absence and unbreakable bonds, reality and fiction permeate, as well as the lives of the actresses and those of the characters, the competition and the sisterhood, the visible and the invisible.", + "posterPath": "/l9Gwwr7nMQzCsOZ9B0b6FlOWTU6.jpg", + "backdropPath": "/pbcKKVPlySkjr1oMCQyNKZBoI5A.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-12-19", + "releaseYear": "2024", + "originalLanguage": "it", + "voteAverage": 7.2, + "voteCount": 269, + "popularity": 7.4959 + }, + { + "id": 4025, + "title": "The Prize", + "originalTitle": "The Prize", + "overview": "A group of Nobel laureates descends on Stockholm to accept their awards. Among them is American novelist Andrew Craig, a former literary luminary now writing pulp detective stories to earn a living. Craig, who is infamous for his drinking and womanizing, formulates a wild theory that physics prize winner Dr. Max Stratman has been replaced by an impostor, embroiling Craig and his chaperone in a Cold War kidnapping plot.", + "posterPath": "/k5A9KlSQaCg5epjrMH5RFyYQoTs.jpg", + "backdropPath": "/d54lG5yWhHU5efctWsPIxd2J9yr.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53 + ], + "genres": [ + "Mystery", + "Thriller" + ], + "releaseDate": "1963-12-25", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 6.736, + "voteCount": 110, + "popularity": 7.495 + }, + { + "id": 76726, + "title": "Chronicle", + "originalTitle": "Chronicle", + "overview": "Three high school students make an incredible discovery, leading to their developing uncanny powers beyond their understanding. As they learn to control their abilities and use them to their advantage, their lives start to spin out of control, and their darker sides begin to take over.", + "posterPath": "/kdyrdFIt29FUmLIKvedAc2j4rpo.jpg", + "backdropPath": "/rgNzvSagnlc32TuMEBa529QFIig.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 53 + ], + "genres": [ + "Science Fiction", + "Drama", + "Thriller" + ], + "releaseDate": "2012-02-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.838, + "voteCount": 5551, + "popularity": 7.4949 + }, + { + "id": 1094138, + "title": "Jackpot!", + "originalTitle": "Jackpot!", + "overview": "In the near future, a 'Grand Lottery' has been established - the catch: kill the winner before sundown to legally claim their multi-billion dollar jackpot. When Katie Kim mistakenly finds herself with the winning ticket, she reluctantly joins forces with amateur lottery protection agent Noel Cassidy who must get her to sundown in exchange for a piece of her prize.", + "posterPath": "/7vv0NTaQGOO7M5ZMerp1vMFJsby.jpg", + "backdropPath": "/7mQ13AV4qd6A43XxXfSoyYQMzhh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 28 + ], + "genres": [ + "Comedy", + "Action" + ], + "releaseDate": "2024-08-13", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.39, + "voteCount": 740, + "popularity": 7.4948 + }, + { + "id": 450875, + "title": "LA 92", + "originalTitle": "LA 92", + "overview": "Twenty-five years after the verdict in the Rodney King trial sparked several days of protests, violence and looting in Los Angeles, LA 92 immerses viewers in that tumultuous period through stunning and rarely seen archival footage.", + "posterPath": "/oT7OmkAoVnYDa8XbGipCEj6PVmN.jpg", + "backdropPath": "/lj79NEheTtAqHXjNvWaIPjd7ERe.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 99 + ], + "genres": [ + "History", + "Documentary" + ], + "releaseDate": "2017-04-28", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.714, + "voteCount": 133, + "popularity": 7.494 + }, + { + "id": 974191, + "title": "The Harbinger", + "originalTitle": "The Harbinger", + "overview": "Monique leaves her family quarantine to help a friend who’s suffering from terrible nightmares - but she learns too late that the bad dreams are contagious, along with the demon behind them.", + "posterPath": "/hxVgKLpA5ld2u226Bg11N5tK3KQ.jpg", + "backdropPath": "/dbM737JDwMsTKngQd6zhjhQpkYD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53, + 18 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller", + "Drama" + ], + "releaseDate": "2023-11-16", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.704, + "voteCount": 27, + "popularity": 7.4913 + }, + { + "id": 454615, + "title": "Black Water", + "originalTitle": "Black Water", + "overview": "A deep cover operative awakens to find himself imprisoned on a submarine. With the help of a fellow prisoner and an amateur agent, he must race against the clock to escape the vessel and expose who set him up.", + "posterPath": "/tIcZAB5AmRN8fIDXfDZ2aUok9qa.jpg", + "backdropPath": "/noNMHp461qETqftTGRC4xJtJ8Pf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2018-05-18", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 269, + "popularity": 7.4908 + }, + { + "id": 2109, + "title": "Rush Hour", + "originalTitle": "Rush Hour", + "overview": "When Hong Kong Inspector Lee is summoned to Los Angeles to investigate a kidnapping, the FBI doesn't want any outside help and assigns cocky LAPD Detective James Carter to distract Lee from the case. Not content to watch the action from the sidelines, Lee and Carter form an unlikely partnership and investigate the case themselves.", + "posterPath": "/nwPhAsfnb7f46bZkWLG7IRP5HXr.jpg", + "backdropPath": "/9FrpAtF87VKblKkDEiIZzYgO40K.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "1998-09-18", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 5402, + "popularity": 7.4892 + }, + { + "id": 425336, + "title": "Loving Pablo", + "originalTitle": "Loving Pablo", + "overview": "The film chronicles the rise and fall of the world's most feared drug lord Pablo Escobar and his volatile love affair with Colombia's most famous journalist Virginia Vallejo throughout a reign of terror that tore a country apart.", + "posterPath": "/aV3kKzTCycGfZc5Lh29Tk6avKPL.jpg", + "backdropPath": "/pcIXV6Od8KeDsLWKu7Wzthaur4V.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-10-12", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 6.292, + "voteCount": 1022, + "popularity": 7.4829 + }, + { + "id": 690957, + "title": "Pushpa: The Rise", + "originalTitle": "పుష్పా - The Rise", + "overview": "As Pushpa, a labourer, rises in the world of red sandalwood smuggling, he ends up making many enemies. However, violence ensues when the police try to topple his illegal business.", + "posterPath": "/r1yAzVQNbCbPTbB3GZFour9Qr0t.jpg", + "backdropPath": "/jQIcn51nsvMrpB9NFwEOb9QHhFt.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2021-12-16", + "releaseYear": "2021", + "originalLanguage": "te", + "voteAverage": 6.827, + "voteCount": 168, + "popularity": 7.4828 + }, + { + "id": 1508191, + "title": "Ozzy: No Escape from Now", + "originalTitle": "Ozzy: No Escape from Now", + "overview": "Ozzy Osbourne faces his identity and mortality after his world stops. Dealing with health issues and Parkinson's, he questions if he can perform again while music remains his life's cornerstone.", + "posterPath": "/7xlmn0xpEYiqGN7bINAbEUjNqbr.jpg", + "backdropPath": "/qUTXVONhIelFdBXvSJW6rPWv9LN.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.7, + "voteCount": 25, + "popularity": 7.4821 + }, + { + "id": 84992, + "title": "Blood Theatre", + "originalTitle": "Blood Theatre", + "overview": "Three young movie theater employees are given the task of re-opening a long-closed, old-time theater at which, many years before, a shocking series of grisly murders took place. It seems many more murders have occurred since then but all of this remains unknown to these three young upstart employees hoping to finally make it big on their own. As they approach the grand re-opening night, things keep getting stranger and more unsettling with items suddenly starting to move around by themselves without any seen aid and a terrifying old man seemingly haunting the premises.", + "posterPath": "/3KMRX64Q3pleib8bwM8C6zQi3Nd.jpg", + "backdropPath": "/gPGVaKTLzyBbq6EYrVYkOWo8DbS.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "1984-09-05", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 3.679, + "voteCount": 28, + "popularity": 7.4812 + }, + { + "id": 8904, + "title": "Service", + "originalTitle": "Serbis", + "overview": "A struggling family owns a Filipino porn theater where prostitutes conduct their business.", + "posterPath": "/qJXdfE1VTYQFLvljHIzAWulQyXD.jpg", + "backdropPath": "/jOdfYXyhLmkBj0hPF0fwzPUuEqV.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-06-24", + "releaseYear": "2008", + "originalLanguage": "tl", + "voteAverage": 6.1, + "voteCount": 25, + "popularity": 7.4811 + }, + { + "id": 881462, + "title": "Still Time", + "originalTitle": "Era ora", + "overview": "Dante accidentally kisses Alice and they get engaged. After a surprise party for his 40th birthday, he wakes up a year later, not remembering what happened. Not only does he discover that Alice is pregnant... He feels time is passing too quickly and he starts forgetting some of the most important moments of his life.", + "posterPath": "/527kMgGu38T8Sc1wwfJxyoUHgrY.jpg", + "backdropPath": "/jOqGCRHZ2Hea2mPH2IOkMabmdw5.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 18 + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ], + "releaseDate": "2023-03-16", + "releaseYear": "2023", + "originalLanguage": "it", + "voteAverage": 6.7, + "voteCount": 346, + "popularity": 7.4804 + }, + { + "id": 9529, + "title": "Candyman", + "originalTitle": "Candyman", + "overview": "The Candyman, a murderous soul with a hook for a hand, is accidentally summoned to reality by a skeptic grad student researching the monster's myth.", + "posterPath": "/jQtgkgDZE7egMq532sOt83DnT83.jpg", + "backdropPath": "/l0JgqFNxeMb1OoHq1CzdYC3Y5J8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 53 + ], + "genres": [ + "Drama", + "Horror", + "Thriller" + ], + "releaseDate": "1992-10-16", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1728, + "popularity": 7.4774 + }, + { + "id": 975056, + "title": "Cabrini", + "originalTitle": "Cabrini", + "overview": "Italian immigrant Francesca Cabrini arrives in 1889 New York City and is greeted by disease, crime, and impoverished children. Cabrini sets off on a daring mission to convince the hostile mayor to secure housing and healthcare for society's most vulnerable. With broken English and poor health, Cabrini uses her entrepreneurial mind to build an empire of hope unlike anything the world had ever seen.", + "posterPath": "/rBiHiN8W4BqMFrDozemzkof7GmF.jpg", + "backdropPath": "/jwmswCW3U8Uh0wEo46psJpgXejD.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2024-03-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.877, + "voteCount": 142, + "popularity": 7.4772 + }, + { + "id": 746524, + "title": "Blood", + "originalTitle": "Blood", + "overview": "Jess, a newly separated mother and nurse, moves into her old family farmhouse with Tyler, her teenage daughter, and Owen, her eight-year-old son. One night, the family dog senses something in the woods and runs off to find it. He returns a couple of days later and attacks Owen, savagely biting him before Jess is able to intervene. Owen is rushed to the hospital. His condition worsens, and no one can figure out why... until Jess discovers a disturbing cure...", + "posterPath": "/gCUFtTvjK4gbmjVxhx8bhyOhAeW.jpg", + "backdropPath": "/tNWZ1fyKYl2zWRWsyXTTH7OwuQr.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2023-01-12", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 225, + "popularity": 7.4772 + }, + { + "id": 112205, + "title": "The Family", + "originalTitle": "The Family", + "overview": "After ratting out his Mafia cohorts, Giovanni Manzoni and his family enter the Witness Protection Program and relocate to a sleepy town in France. Despite the best efforts of their handler to keep them in line, Giovanni (now called Fred Blake), his wife and children can't help but resort to doing things the \"family\" way. However, their dependence on such old habits places everyone in danger from vengeful mobsters.", + "posterPath": "/x2arN02JFsZcDKmBb0SIjG8Smc8.jpg", + "backdropPath": "/mt4cfjeFHNKda7KDSvvJlG50swc.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 28 + ], + "genres": [ + "Crime", + "Comedy", + "Action" + ], + "releaseDate": "2013-09-13", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.364, + "voteCount": 3024, + "popularity": 7.4769 + }, + { + "id": 1117698, + "title": "Fanfic", + "originalTitle": "Fanfik", + "overview": "Two high school students form an intense connection as they navigate the challenges of discovering and expressing their truest selves.", + "posterPath": "/kY13qAaWf5BOzdN15LkM89vDiNY.jpg", + "backdropPath": "/mw96qKZHHM4onrWcu9Aqb4lfvDg.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-05-17", + "releaseYear": "2023", + "originalLanguage": "pl", + "voteAverage": 6.983, + "voteCount": 88, + "popularity": 7.476 + }, + { + "id": 983526, + "title": "Leave", + "originalTitle": "Leave", + "overview": "A young woman tries to find her origins after having been abandoned as an infant at a cemetery wrapped in a cloth with satanic symbols, but as she gets closer to answers a malevolent spirit is telling her to leave.", + "posterPath": "/aiw8k5wXSCkueUD7eavmnNtaQFO.jpg", + "backdropPath": "/elH2ZWRHOKpjUNHROvpTCZIvuO7.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2022-10-28", + "releaseYear": "2022", + "originalLanguage": "no", + "voteAverage": 5.6, + "voteCount": 84, + "popularity": 7.4757 + }, + { + "id": 21356, + "title": "Rock & Rule", + "originalTitle": "Rock & Rule", + "overview": "A malevolent rock star kidnaps a female singer to force her to participate in the summoning of a demon and her band must help her stop him.", + "posterPath": "/y92zm5q88LRXGlKMNgVS3rCNqoz.jpg", + "backdropPath": "/ccQrQnBh24IWDjgO1TwmZPRhYmu.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 14 + ], + "genres": [ + "Adventure", + "Animation", + "Fantasy" + ], + "releaseDate": "1983-04-15", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 90, + "popularity": 7.4726 + }, + { + "id": 6644, + "title": "El Dorado", + "originalTitle": "El Dorado", + "overview": "Cole Thornton, a gunfighter for hire, joins forces with an old friend, Sheriff J.P. Harrah. Together with a fighter and a gambler, they help a rancher and his family fight a rival rancher that is trying to steal their water.", + "posterPath": "/poJxkMtTA3E95lJ6RnBgNxF0Vmx.jpg", + "backdropPath": "/rhwGCD3AosYcPK7rTFHmL4NdrP1.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1966-12-17", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 558, + "popularity": 7.472 + }, + { + "id": 383682, + "title": "Planet Single", + "originalTitle": "Planeta Singli", + "overview": "He is one of the top celebrities in the country: a fast-talking TV host, who can joke his way out of any situation. Women want to be with him, men want to be like him. He is looking for a new topic to discuss in his popular talk-show. She is a teacher at a musical school - a timid girl looking for Mr. Perfect on an internet dating site. He will help her realise her potential and teach her how to recognise various types of men for what they are, she will teach him what real life is about. The show will become a huge hit. It seems they are destined to fall in love and be together, but one day she actually does meet Mr. Perfect on the net.", + "posterPath": "/7bePLXgvcpj2xlQfT9CUwVE7QLy.jpg", + "backdropPath": "/yyWMsx7mqnHtuOk7afwXuKONucH.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2016-02-05", + "releaseYear": "2016", + "originalLanguage": "pl", + "voteAverage": 6.556, + "voteCount": 107, + "popularity": 7.4714 + }, + { + "id": 127, + "title": "Blind Chance", + "originalTitle": "Przypadek", + "overview": "Witek runs after a train. Three variations follow on how such a seemingly banal incident could influence the rest of Witek's life.", + "posterPath": "/gx84VmJllqvXF3JEqcEdsxBEcbF.jpg", + "backdropPath": "/jwIobRGkBEFWXcg1q8xnTfb3JVH.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1987-01-10", + "releaseYear": "1987", + "originalLanguage": "pl", + "voteAverage": 7.5, + "voteCount": 230, + "popularity": 7.4673 + }, + { + "id": 74, + "title": "War of the Worlds", + "originalTitle": "War of the Worlds", + "overview": "Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop off his teenage son and young daughter for a rare weekend visit, a strange and powerful lightning storm touches down.", + "posterPath": "/6Biy7R9LfumYshur3YKhpj56MpB.jpg", + "backdropPath": "/bInicBgSHfQiWLbnRT5jxw9Grvm.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 53, + 878 + ], + "genres": [ + "Adventure", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2005-06-28", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.527, + "voteCount": 8853, + "popularity": 7.4659 + }, + { + "id": 625248, + "title": "Dead Kids", + "originalTitle": "Dead Kids", + "overview": "A socially awkward teen bonds with a group of misfits who plot to abduct the school's arrogant rich kid -- until their kidnapping scheme turns deadly.", + "posterPath": "/tIBEsnzhz5NE1KTzwyvJlFIGEhg.jpg", + "backdropPath": "/912nxaCkl5aAMoZMOtPGy3LPC2W.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18 + ], + "genres": [ + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2019-11-17", + "releaseYear": "2019", + "originalLanguage": "tl", + "voteAverage": 5.9, + "voteCount": 26, + "popularity": 7.4648 + }, + { + "id": 760774, + "title": "One Life", + "originalTitle": "One Life", + "overview": "British stockbroker Nicholas Winton visits Czechoslovakia in the 1930s and forms plans to assist in the rescue of Jewish children before the onset of World War II, in an operation that came to be known as the Kindertransport.", + "posterPath": "/yvnIWt2j8VnDgwKJE2VMiFMa2Qo.jpg", + "backdropPath": "/7kgDHoXEk0EySTczcmaYpPDBFQS.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2023-12-21", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.767, + "voteCount": 881, + "popularity": 7.4647 + }, + { + "id": 1238200, + "title": "Babies Don't Come with Instructions", + "originalTitle": "Sin instrucciones", + "overview": "Leo is a single, womanizing guy who lives day to day in a tiny beach town in the Canary Islands. One day one of his old flings, Julia, reappears to leave a baby of a few months in his arms and she disappears at the next morning.", + "posterPath": "/2Lq2meSVsGvfFOh89iWTcA76wST.jpg", + "backdropPath": "/yhV2Cs7N8RrchaUSXLA2zkFHKcz.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-12-25", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.8, + "voteCount": 55, + "popularity": 7.4638 + }, + { + "id": 303005, + "title": "Fallen Angels", + "originalTitle": "Fallen Angels", + "overview": "When a turn of the century prison reformatory is slated for demolition, a grisly discovery is made. Hidden deep underground beneath the west cell block is a sub-basement structure that has not been entered in 100 years. Inside are the skeletal remains of several brutally slain children. As a CSI team arrives at the prison, an even more disturbing discovery is made that will eventually unveil a legion of seven demons and their even more chilling origins: each demon is responsible for one of the seven deadly sins. Seven deadly sins...Seven deadly demons...Seven more deadly ways to die...", + "posterPath": "/sWKGtoDXyQmzz3bEE6REzSkiEFd.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2007-10-05", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 3, + "voteCount": 10, + "popularity": 7.4627 + }, + { + "id": 190625, + "title": "Territory 8", + "originalTitle": "Territory 8", + "overview": "Shortly after a chemical weapon explosion in the Nevada desert, two scientists find themselves confronting a sinister cover up, and a band of hostile survivors who are looking to escape the quarantined area known as Territory 8.", + "posterPath": "/9gW7NSLNaCqKYftUIQFQB610y2H.jpg", + "backdropPath": "/1LYCMoBy5bSbVubZnoIkOJNm3JT.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 18 + ], + "genres": [ + "Science Fiction", + "Action", + "Drama" + ], + "releaseDate": "2014-03-20", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 3, + "voteCount": 15, + "popularity": 7.4605 + }, + { + "id": 585083, + "title": "Hotel Transylvania: Transformania", + "originalTitle": "Hotel Transylvania: Transformania", + "overview": "When Van Helsing's mysterious invention, the \"Monsterfication Ray,\" goes haywire, Drac and his monster pals are all transformed into humans, and Johnny becomes a monster. In their new mismatched bodies, Drac and Johnny must team up and race across the globe to find a cure before it's too late, and before they drive each other crazy.", + "posterPath": "/teCy1egGQa0y8ULJvlrDHQKnxBL.jpg", + "backdropPath": "/qBLEWvJNVsehJkEJqIigPsWyBse.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 12, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Adventure", + "Fantasy" + ], + "releaseDate": "2022-01-31", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.05, + "voteCount": 2942, + "popularity": 7.4564 + }, + { + "id": 71847, + "title": "Fast Food", + "originalTitle": "Fast Food", + "overview": "Auggie and his pals are living it up as perpetual college students. When the dean decides teh only way to stop their schemes and antics is to graduate them, they have to go out and find real work. Auggie hears that Samantha is planning on selling her father's garage to fast food king Wrangler Bob, and comes up with one final scheme; a risky bank loan to turn the garage into stiff competition for Bob. When it looks like Bob will win after all, they develop a very special sauce that keeps the crowds coming because it has the effect of being an aphrodisiac. Bob doesn't like to lose, so he sends his \"spy\" Dixie Love to infiltrate the restaurant and find out their secret. The ensuing FDA investigation culminates into a hilarious case of disorder in the court!", + "posterPath": "/h6qggt7kKFAQQ93SDGgTDJjdJnY.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1989-04-28", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 14, + "popularity": 7.456 + }, + { + "id": 80278, + "title": "The Impossible", + "originalTitle": "The Impossible", + "overview": "In December 2004, close-knit family Maria, Henry and their three sons begin their winter vacation in Thailand. But the day after Christmas, the idyllic holiday turns into an incomprehensible nightmare when a terrifying roar rises from the depths of the sea, followed by a wall of black water that devours everything in its path. Though Maria and her family face their darkest hour, unexpected displays of kindness and courage ameliorate their terror.", + "posterPath": "/k0DLCiDbnYywOHiISALbl2EH2NE.jpg", + "backdropPath": "/3NfM0sRwVLnsQkCd5YBPGvM9a5v.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 36 + ], + "genres": [ + "Drama", + "Thriller", + "History" + ], + "releaseDate": "2012-09-09", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.367, + "voteCount": 6528, + "popularity": 7.455 + }, + { + "id": 17917, + "title": "Oliver!", + "originalTitle": "Oliver!", + "overview": "Musical adaptation of Charles Dickens' Oliver Twist, a classic tale of an orphan who runs away from the workhouse and joins up with a group of boys headed by the Artful Dodger and trained to be pickpockets by master thief Fagin.", + "posterPath": "/1XJgoaOWKrqxkKeBKWLKSigqG8c.jpg", + "backdropPath": "/DWRcfNaWioQwfPMG028LjHsrRq.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "1968-09-26", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 457, + "popularity": 7.4533 + }, + { + "id": 1542, + "title": "Office Space", + "originalTitle": "Office Space", + "overview": "A depressed white-collar worker tries hypnotherapy, only to find himself in a perpetual state of devil-may-care bliss that prompts him to start living by his own rules, and hatch a hapless attempt to embezzle money from his soul-killing employers.", + "posterPath": "/v7fBXxHZ5WQn2PGgpXhTqHgtcJk.jpg", + "backdropPath": "/g7o5O6xRWkMiwHXiYMPC690YEL4.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1999-02-19", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 3226, + "popularity": 7.4513 + }, + { + "id": 1308546, + "title": "Carved", + "originalTitle": "Carved", + "overview": "On Halloween 1993, the staff of a historic pioneer village attraction must work together to survive the attack of a monstrous killer pumpkin set on revenge.", + "posterPath": "/9DKH4j80eR4qAcGDoShlUO7D0Is.jpg", + "backdropPath": "/wFn1yJnuMOh8M3EonYchPH5XyjC.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2024-10-20", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 4.854, + "voteCount": 65, + "popularity": 7.4509 + }, + { + "id": 138103, + "title": "The Expendables 3", + "originalTitle": "The Expendables 3", + "overview": "Barney, Christmas and the rest of the team comes face-to-face with Conrad Stonebanks, who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to kill… or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables -- but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendables’ most personal battle yet.", + "posterPath": "/utS5euWHlEdKBNnEFwjpZ2oGuhF.jpg", + "backdropPath": "/d3B8BQDmEEK2Qy6tjYRP3hkpv6J.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2014-08-07", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.209, + "voteCount": 5188, + "popularity": 7.4497 + }, + { + "id": 191104, + "title": "Wolf", + "originalTitle": "Wolf", + "overview": "A promising kickboxer struggles to resist the temptations of a life of crime.", + "posterPath": "/axGiNAdvkTJ3otlytSP2EEKQ1Qq.jpg", + "backdropPath": "/7ToXi1lFK6E69dBTBxkOx5Oh9JV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80 + ], + "genres": [ + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2013-09-11", + "releaseYear": "2013", + "originalLanguage": "nl", + "voteAverage": 6.663, + "voteCount": 52, + "popularity": 7.4463 + }, + { + "id": 158999, + "title": "Blackfish", + "originalTitle": "Blackfish", + "overview": "Notorious killer whale Tilikum is responsible for the deaths of three individuals, including a top killer whale trainer. Blackfish shows the sometimes devastating consequences of keeping such intelligent and sentient creatures in captivity.", + "posterPath": "/kCk4mDFE96Mn1AYfEcbxkIiw7ND.jpg", + "backdropPath": "/tCW0uGWwfZzRkupNFdI0yUo4A0w.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2013-06-07", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.846, + "voteCount": 1156, + "popularity": 7.4444 + }, + { + "id": 10621, + "title": "Lovers", + "originalTitle": "Lovers", + "overview": "A French woman falls in love with a Yugoslavian man, not realizing that he is an illegal immigrant.", + "posterPath": "/5RL8wNrSkdU13XhpbBPvdbNiQ2k.jpg", + "backdropPath": "/pHY1pk9LjyCxd0Nj5up59816sb8.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1999-12-08", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.571, + "voteCount": 14, + "popularity": 7.4439 + }, + { + "id": 24164, + "title": "Good Morning, Night", + "originalTitle": "Buongiorno, notte", + "overview": "The 1978 kidnapping and murder of Aldo Moro, president of the most important political party in Italy at the time, Democrazia Cristiana, as seen from the perspective of one of his assailants -- a conflicted young woman in the ranks of the Red Brigade.", + "posterPath": "/5r6JAD9E6BUCfpN8At52a0TJbaR.jpg", + "backdropPath": "/z5E3p3YAzV3SvOdvTplgr6Y6NrG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2003-09-05", + "releaseYear": "2003", + "originalLanguage": "it", + "voteAverage": 7.1, + "voteCount": 205, + "popularity": 7.4436 + }, + { + "id": 3537, + "title": "Fame", + "originalTitle": "Fame", + "overview": "A chronicle of the lives of several teenagers who attend a New York high school for students gifted in the performing arts.", + "posterPath": "/ewuGn4kxsqbYfgSO8Y5kzYlBcKE.jpg", + "backdropPath": "/jekdv0OUnppLnpbPdBIkwCoeENo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "1980-05-16", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 483, + "popularity": 7.442 + }, + { + "id": 1218628, + "title": "Trouble Man", + "originalTitle": "Trouble Man", + "overview": "Jaxen, a former cop turned Atlanta PI, is hired to find missing R&B star Jahari. His investigation uncovers her disappearance is connected to a larger conspiracy, forcing him to question those around him and his own past.", + "posterPath": "/v3ETgv42JkchzAYK4ZDI5VvsY3w.jpg", + "backdropPath": "/q6DLjPZM7tMeNcLNjgyyRfamnuT.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2025-08-01", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 12, + "popularity": 7.4415 + }, + { + "id": 181812, + "title": "Star Wars: The Rise of Skywalker", + "originalTitle": "Star Wars: The Rise of Skywalker", + "overview": "The surviving Resistance faces the First Order once again as the journey of Rey, Finn and Poe Dameron continues. With the power and knowledge of generations behind them, the final battle begins.", + "posterPath": "/db32LaOibwEliAmSL2jjDF6oDdj.jpg", + "backdropPath": "/auJKGst3vXpJozHZh4nMFs0xWIU.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2019-12-18", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.278, + "voteCount": 10470, + "popularity": 7.4372 + }, + { + "id": 391711, + "title": "Imagining Zootopia", + "originalTitle": "Imagining Zootopia", + "overview": "Fusion spent two years with the production team of Disney's smash hit film. In 'Imagining Zootopia,' you will travel with the team to Africa to explore the animals in their natural habitat and find out how the storytellers and animators dealt with the very real themes of prejudice and bias.", + "posterPath": "/dwLfMBuOZL7YUCQZJYTzYIFzZuu.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2016-04-05", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 11, + "popularity": 7.4365 + }, + { + "id": 506528, + "title": "Harriet", + "originalTitle": "Harriet", + "overview": "The extraordinary tale of Harriet Tubman's escape from slavery and transformation into one of America's greatest heroes. Her courage, ingenuity and tenacity freed hundreds of slaves and changed the course of history.", + "posterPath": "/rsUs58bDqpJJxZSOebZOMN9gzw2.jpg", + "backdropPath": "/rStbi6Sm1JWk4S3pCqULUY7GMDB.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 877, + "popularity": 7.4362 + }, + { + "id": 1156638, + "title": "The Contestant", + "originalTitle": "The Contestant", + "overview": "The incredible true story of a man who lived for 15 months trapped inside a small room, naked, starving and alone... and completely unaware that his life was being broadcast on national TV in Japan, to over 15 million viewers a week.", + "posterPath": "/p6jHYpie6VEW68mnxfHVRZo0Xm6.jpg", + "backdropPath": "/hH2IvdorIVeRDMs0ZDkefTiIKfT.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2023-09-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.86, + "voteCount": 50, + "popularity": 7.436 + }, + { + "id": 123553, + "title": "The Mortal Instruments: City of Bones", + "originalTitle": "The Mortal Instruments: City of Bones", + "overview": "In New York City, Clary Fray, a seemingly ordinary teenager, learns that she is descended from a line of Shadowhunters — half-angel warriors who protect humanity from evil forces. After her mother disappears, Clary joins forces with a group of Shadowhunters and enters Downworld, an alternate realm filled with demons, vampires, and a host of other creatures. Clary and her companions must find and protect an ancient cup that holds the key to her mother's future.", + "posterPath": "/zaK1aVn5vXfNwLIDop9U8XA3Q0x.jpg", + "backdropPath": "/z4nKeZpPCrTifS6pzzK8vNleADl.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 9648 + ], + "genres": [ + "Fantasy", + "Action", + "Mystery" + ], + "releaseDate": "2013-08-21", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.436, + "voteCount": 4565, + "popularity": 7.4348 + }, + { + "id": 157354, + "title": "Fruitvale Station", + "originalTitle": "Fruitvale Station", + "overview": "Oakland, California. Young Afro-American Oscar Grant crosses paths with family members, friends, enemies and strangers before facing his fate on the platform at Fruitvale Station, in the early morning hours of New Year's Day 2009.", + "posterPath": "/oXSy3nEKFtfw5iRxdG8ouEFAnxs.jpg", + "backdropPath": "/u0nAnvRdzAGgDYLyfIbAUBDOcpb.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-07-26", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.356, + "voteCount": 1377, + "popularity": 7.4344 + }, + { + "id": 39324, + "title": "Dragon Ball Z: The History of Trunks", + "originalTitle": "ドラゴンボールZ 絶望への反抗!! 残された超戦士・悟飯とトランクス", + "overview": "It has been thirteen years since the Androids began their killing rampage and Son Gohan is the only person fighting back. He takes Bulma's son Trunks as a student and even gives his own life to save Trunks's. Now Trunks must figure out a way to change this apocalyptic future", + "posterPath": "/x0FCkSSdOGTA3gC99QayGJH0Dqx.jpg", + "backdropPath": "/8GvOQSjztqy3M2Oe9KzeSsxFYcO.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction" + ], + "releaseDate": "1993-02-24", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 573, + "popularity": 7.4323 + }, + { + "id": 62768, + "title": "Flying", + "originalTitle": "Flying", + "overview": "Robin and her father have a car accident. Her father dies. Robin is badly injured and cannot compete in gymnastics tournaments anymore. She lives with her mother and bad step-father. Robin is accepted to the school athlethics team but is not accepted by some other girls, so she works out at a friends house. Eventually Robin and her team compete in the national scholastic meet.", + "posterPath": "/2B6vVQM79o0N2dO94P4mnjrbkxt.jpg", + "backdropPath": "/5jdcMKI5KXxwjxaEjiRy9Cgxx7s.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1986-05-14", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 15, + "popularity": 7.4313 + }, + { + "id": 621707, + "title": "The Vigil", + "originalTitle": "The Vigil", + "overview": "A man providing overnight watch to a deceased member of his former Orthodox Jewish community finds himself opposite a malevolent entity.", + "posterPath": "/xNX2hN50YFBMYIZy5UkQxNoE9o3.jpg", + "backdropPath": "/2v6tOt3yedtb9urqXr7qCBS2gyl.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2020-07-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.832, + "voteCount": 414, + "popularity": 7.4309 + }, + { + "id": 27550, + "title": "Nina Frisk", + "originalTitle": "Nina Frisk", + "overview": "Nina Frisk is a flight attendant who loves flying. She is happy above the clouds, far away from her dysfunctional family and superficial love life. But then one day Nina meets Marcus and his son William, and falls helplessly in love. For the first time ever in her life, Nina begins to long for a family of her own. But Nina soon discovers that life on earth can be just as turbulent as in the sky.", + "posterPath": "/du6GHMgEJWMCx3KggCXLem4wKML.jpg", + "backdropPath": "/j14jV0OVIGVXWODaSO3bQBvv7B7.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-03-09", + "releaseYear": "2007", + "originalLanguage": "sv", + "voteAverage": 5, + "voteCount": 11, + "popularity": 7.4305 + }, + { + "id": 460846, + "title": "Security", + "originalTitle": "Security", + "overview": "An ex-special services veteran, down on his luck and desperate for work, takes a job as a security guard at a run-down mall in a rough area of town. On his first night on the job, he opens the door to a distraught and desperate young girl who has fled the hijacking of a Police motorcade that was transporting her to testify as a witness in a trial. Hot on her heels is the psychopathic hijacker and his team of henchmen, who will stop at nothing to extract and eliminate the witness.", + "posterPath": "/9FN5n8wGYrfSJaKGF9uObdKimIh.jpg", + "backdropPath": "/41pWNOj2rqKSfsKayS4kAbzpsRt.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2017-03-04", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.339, + "voteCount": 934, + "popularity": 7.4252 + }, + { + "id": 51163, + "title": "Strange Gardens", + "originalTitle": "Effroyables Jardins", + "overview": "Lucien, 14, can’t understand why his father, a serious and respected teacher, makes a fool of himself by dressing up as a clown and giving a show. André, Lucien’s father’s best friend, feels for the teenager and decides to reveal something from their mutual past that will explain the reason for Lucien’s father’s strange behavior.", + "posterPath": "/xMrcSLn5UioeSuek4FldkFlnOgF.jpg", + "backdropPath": "/oXZ5e6vB00vhVIaT3fAmKRfsnzk.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2003-03-26", + "releaseYear": "2003", + "originalLanguage": "fr", + "voteAverage": 7.4, + "voteCount": 124, + "popularity": 7.425 + }, + { + "id": 374464, + "title": "Planetarium", + "originalTitle": "Planetarium", + "overview": "In 1930s France, two sisters who are thought to be able to communicate with ghosts meet a visionary producer while performing in Paris.", + "posterPath": "/znEuFcJJAiSEhBlt1gPeD28OdTA.jpg", + "backdropPath": "/9HRReetyFFz5OVGRoahQQhDO0yO.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 9648 + ], + "genres": [ + "Drama", + "Fantasy", + "Mystery" + ], + "releaseDate": "2016-11-16", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 4.609, + "voteCount": 207, + "popularity": 7.4249 + }, + { + "id": 55931, + "title": "The Animatrix", + "originalTitle": "The Animatrix", + "overview": "Straight from the creators of the groundbreaking Matrix trilogy, this collection of short animated films from the world's leading anime directors fuses computer graphics and Japanese anime to provide the background of the Matrix universe and the conflict between man and machines. The shorts include Final Flight of the Osiris, The Second Renaissance, Kid's Story, Program, World Record, Beyond, A Detective Story and Matriculated.", + "posterPath": "/g52SOsTvdjzY8oPIn5znLJMzLHG.jpg", + "backdropPath": "/7a4WHNllmX5ZGR0MfYJDPhV69eM.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878 + ], + "genres": [ + "Animation", + "Science Fiction" + ], + "releaseDate": "2003-05-09", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.201, + "voteCount": 1690, + "popularity": 7.4249 + }, + { + "id": 821133, + "title": "HollyBlood", + "originalTitle": "HollyBlood", + "overview": "Javi is a teenage student so shy and clumsy that he does not know how to attract the attention of his classmate Sara, a geeky girl who is only interested in a literary saga about vampires.", + "posterPath": "/ts82TuL0Uz2P3YNbMzZWC9Kp16Q.jpg", + "backdropPath": "/tlv5biZKgNHkMYHgk2jPWdFs500.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 10749 + ], + "genres": [ + "Comedy", + "Fantasy", + "Romance" + ], + "releaseDate": "2022-07-22", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 5.277, + "voteCount": 94, + "popularity": 7.4247 + }, + { + "id": 161, + "title": "Ocean's Eleven", + "originalTitle": "Ocean's Eleven", + "overview": "Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.", + "posterPath": "/hQQCdZrsHtZyR6NbKH2YyCqd2fR.jpg", + "backdropPath": "/ncoqdHs1poUaBqyKic9YI8ai7MP.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2001-12-07", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.452, + "voteCount": 12171, + "popularity": 7.4244 + }, + { + "id": 38398, + "title": "Just Bea", + "originalTitle": "Bare Bea", + "overview": "16 year-old Bea is in her first year at upper secondary school in Oslo. Active on the school magazine, she falls in love with Daniel, the smartest and most gifted student in the top year, who returns her feelings. There is just one drawback, namely her friend' idea of virginity and first love...", + "posterPath": "/8ejChMekZyl3lAzzvGlo0OCDQLg.jpg", + "backdropPath": "/hNpExSqRqOzrQZ0U63xkqubt4eO.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2004-01-23", + "releaseYear": "2004", + "originalLanguage": "no", + "voteAverage": 5.6, + "voteCount": 20, + "popularity": 7.4225 + }, + { + "id": 806, + "title": "The Omen", + "originalTitle": "The Omen", + "overview": "A diplomatic couple adopts the son of the devil without knowing it. A remake of the classic horror film of the same name from 1976.", + "posterPath": "/kf1Qq9b32jn4umll9qD2ue5ftnh.jpg", + "backdropPath": "/cIdt86pqHfSZQRduKh0xFvnqtwE.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2006-06-06", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 1146, + "popularity": 7.4225 + }, + { + "id": 10956, + "title": "Joe Dirt", + "originalTitle": "Joe Dirt", + "overview": "Joe Dirt is a janitor with a mullet hairdo, acid-washed jeans and a dream to find the parents that he lost at the Grand Canyon when he was a belligerent, trailer park-raised eight-year-old. Now, blasting Van Halen in his jacked-up economy car, the irrepressibly optimistic Joe hits the road alone in search of his folks.", + "posterPath": "/yykDEtHk6DMtZK8EaxW88YyQ054.jpg", + "backdropPath": "/1g04YnMJQvWFRKOXJlUeZe1rOxF.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 12, + 35, + 10749, + 18 + ], + "genres": [ + "Mystery", + "Adventure", + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2001-04-10", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.62, + "voteCount": 769, + "popularity": 7.4184 + }, + { + "id": 464879, + "title": "Cabin 28", + "originalTitle": "Cabin 28", + "overview": "Based on one of the most infamous unsolved murder cases in American history, this film follows a family who are terrorized at an isolated cabin by mysterious assailants.", + "posterPath": "/crvqys951H0yVoPR38oSg6YAxSj.jpg", + "backdropPath": "/9haFz9lGsA1XeBel1q5xly5BTdT.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2017-08-01", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 42, + "popularity": 7.4177 + }, + { + "id": 336455, + "title": "Viral", + "originalTitle": "Viral", + "overview": "Following the outbreak of a virus that wipes out the majority of the human population, a young woman documents her family's new life in quarantine and tries to protect her infected sister.", + "posterPath": "/2Rul30PXj13zTAx9RgYZQ8fnlif.jpg", + "backdropPath": "/smxlrWGByIzvdraNHYSmG36w1G9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 878 + ], + "genres": [ + "Drama", + "Horror", + "Science Fiction" + ], + "releaseDate": "2016-02-18", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.657, + "voteCount": 543, + "popularity": 7.4173 + }, + { + "id": 1090007, + "title": "First Shift", + "originalTitle": "First Shift", + "overview": "NYPD veteran Mike and rookie Angela tackle a high-stakes day on New York's toughest streets, diving headfirst into a vortex of danger and action. Their adrenaline-fueled pursuits and unexpected threats unfold as they navigate perilous encounters. Amidst the chaos, intense challenges forge unbreakable bonds.", + "posterPath": "/ajsGI4JYaciPIe3gPgiJ3Vw5Vre.jpg", + "backdropPath": "/xRr7mnOJ39bZtCRmVefrm3sBxX4.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 28 + ], + "genres": [ + "Crime", + "Thriller", + "Action" + ], + "releaseDate": "2024-08-30", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.676, + "voteCount": 34, + "popularity": 7.4159 + }, + { + "id": 377, + "title": "A Nightmare on Elm Street", + "originalTitle": "A Nightmare on Elm Street", + "overview": "Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson, traces the cause to child molester Fred Krueger, who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen, must devise a plan to lure the monster out of the realm of nightmares and into the real world...", + "posterPath": "/avHGIO93jgCZLf33ec2aahgZJX6.jpg", + "backdropPath": "/nzSjTiecdosBfwMGAdpt9CxltCI.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1984-11-09", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 5517, + "popularity": 7.4157 + }, + { + "id": 183175, + "title": "Fast Company", + "originalTitle": "Fast Company", + "overview": "Married book-dealers Joel & Garda Sloane try to clear a friend in the murder of a rival book-seller.", + "posterPath": "/tGtUiGb9TYQIo2cPJhXM5Hk88TL.jpg", + "backdropPath": "/e9KKjcdqWdeTMwYQfrmGXslYala.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 35, + 10749 + ], + "genres": [ + "Mystery", + "Comedy", + "Romance" + ], + "releaseDate": "1938-07-05", + "releaseYear": "1938", + "originalLanguage": "en", + "voteAverage": 5.05, + "voteCount": 10, + "popularity": 7.4153 + }, + { + "id": 8583, + "title": "Dangerous Beauty", + "originalTitle": "Dangerous Beauty", + "overview": "Veronica is brilliant, gifted and beautiful, but the handsome aristocrat she loves, Marco Venier, cannot marry her because she is penniless and of questionable family. So Veronica's mother, Paola, teaches her to become a courtesan, one of the exotic companions favored by the richest and most powerful Venetian men. Veronica courageously uses her charms to change destiny -- and to give herself a chance at true love.", + "posterPath": "/7uHX8qIr8VYPwdpVv4TCjXcVxDo.jpg", + "backdropPath": "/nT6udCjGaYih9VUZQU7xnwX99RK.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1998-02-20", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.04, + "voteCount": 287, + "popularity": 7.4151 + }, + { + "id": 617653, + "title": "The Last Duel", + "originalTitle": "The Last Duel", + "overview": "King Charles VI declares that Knight Jean de Carrouges settle his dispute with his squire, Jacques Le Gris, by challenging him to a duel.", + "posterPath": "/zjrJE0fpzPvX8saJXj8VNfcjBoU.jpg", + "backdropPath": "/4LrL40XecjGLRpX5I2gzMTUt04l.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 28 + ], + "genres": [ + "History", + "Drama", + "Action" + ], + "releaseDate": "2021-10-13", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 3671, + "popularity": 7.4137 + }, + { + "id": 623511, + "title": "The Burning Sea", + "originalTitle": "Nordsjøen", + "overview": "An oil platform dramatically goes down on the Norwegian coast, and researchers try to find out what happened when they realize this is just the start of something even more serious.", + "posterPath": "/1bB7uV5ljDWKG2m5Z4cgWwDMAeY.jpg", + "backdropPath": "/9JLl9UYkcWbkLWWHtzuVB6fc9Qr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 18 + ], + "genres": [ + "Action", + "Thriller", + "Drama" + ], + "releaseDate": "2021-10-29", + "releaseYear": "2021", + "originalLanguage": "no", + "voteAverage": 6.597, + "voteCount": 278, + "popularity": 7.4132 + }, + { + "id": 84188, + "title": "Compliance", + "originalTitle": "Compliance", + "overview": "On a particularly busy day at a suburban Ohio fast food restaurant, manager Sandra receives a phone call from a police officer saying that an employee has stolen money from a customer.", + "posterPath": "/bLdu28fr9txYlHLmEOyGplDT3nH.jpg", + "backdropPath": "/u71Y8A7BnJbjnFlt6zKHx8i60bZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2012-08-23", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.355, + "voteCount": 749, + "popularity": 7.4124 + }, + { + "id": 912726, + "title": "Rhinegold", + "originalTitle": "Rheingold", + "overview": "Xatar’s way from the ghetto to the top of the charts is as dramatic as it is daring: Fatih Akin’s new film is based on the autobiographical novel »Alles oder Nix« (»All or Nothing«) of the probably most authentic exponent of German gangsta rap. From the hell of an Iraqi jail, Giwar Hajabi (Emilio Sakraya) emigrated to Germany as a young boy with his family in the mid-1980s and has to start right at the bottom. There are opportunities, but far more obstacles. Giwar’s rise from petty criminal to major dealer is swift. Until one shipment goes missing. In order to clear his debts with the cartel, he plans a legendary gold heist. But just as everything goes wrong, another door opens for Giwar thanks to his passion for music …", + "posterPath": "/aUtbh1sFpCWEZlABXNjOugCbt88.jpg", + "backdropPath": "/ukdapIy8Ag2RCUvy0aYmwQfeajH.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 80, + 10402 + ], + "genres": [ + "History", + "Drama", + "Crime", + "Music" + ], + "releaseDate": "2022-10-27", + "releaseYear": "2022", + "originalLanguage": "de", + "voteAverage": 6.528, + "voteCount": 90, + "popularity": 7.4122 + }, + { + "id": 17708, + "title": "Corky Romano", + "originalTitle": "Corky Romano", + "overview": "Corky Romano is a bumbling, simpleton, veterinarian and the youngest, outcast son of an aging gangster, named Pops Romano, who calls upon Corky to infiltrate the local FBI and retrieve and destroy evidence being used to incriminate Pops for racketeering charges.", + "posterPath": "/aLgzSIgHTyWggrP7ieDVYE3PB8g.jpg", + "backdropPath": "/3kOMMRwf9AEdQ2STIb4tjcsRx9w.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2001-10-12", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 169, + "popularity": 7.4115 + }, + { + "id": 39105, + "title": "Dragon Ball Z: Bojack Unbound", + "originalTitle": "ドラゴンボールZ 銀河ギリギリ!! ぶっちぎりの凄い奴", + "overview": "Mr. Money is holding another World Martial Arts Tournament and Mr. Satan invites everyone in the world to join in. Little does he know that Bojack, an ancient villain who has escaped his prison, is competing. Since Goku is currently dead, it is up to Gohan, Vegeta, and Trunks to defeat Bojack and his henchman.", + "posterPath": "/iihTK9Af8G1ZzBjkIIAV4qQMkzF.jpg", + "backdropPath": "/iChtjY4jZTvYEG0lTSxT5B3nG1l.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "1993-07-10", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 599, + "popularity": 7.4095 + }, + { + "id": 122906, + "title": "About Time", + "originalTitle": "About Time", + "overview": "The night after another unsatisfactory New Year's party, Tim's father tells his son that the men in his family have always had the ability to travel through time. They can't change history, but they can change what happens and has happened in their own lives. Thus begins the start of a lesson in learning to appreciate life itself as it is, as it comes, and most importantly, the people living alongside us.", + "posterPath": "/iR1bVfURbN7r1C46WHFbwCkVve.jpg", + "backdropPath": "/fzZmcKQv7ZTGIiPvocPhNs3wUyK.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 14 + ], + "genres": [ + "Drama", + "Romance", + "Fantasy" + ], + "releaseDate": "2013-09-04", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.909, + "voteCount": 8968, + "popularity": 7.407 + }, + { + "id": 11957, + "title": "Peut-être", + "originalTitle": "Peut-être", + "overview": "Arthur is invited to a New Year's Eve party to celebrate the year 2000. His girlfriend Lucie would like a baby from him but he refuses. Through the ceiling of the toilets, he discovers a passage leading to this futurist Paris. There, he meets an old man Ako who affirms he is his son and that he wants to exist. Otherwise he will vanish into the air. Arthur is still hesitant because his life is an unfulfilled one: a has a little lucrative job, is uncertain about his future and things are getting out of hand when Ako discovers the passage and interferes in the party.", + "posterPath": "/crHfjsE7ZE8yMa7bilCLbOsaHZY.jpg", + "backdropPath": "/a8jKGQfOeAzgcMwLfaydkefGMQc.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18 + ], + "genres": [ + "Science Fiction", + "Drama" + ], + "releaseDate": "1999-11-10", + "releaseYear": "1999", + "originalLanguage": "fr", + "voteAverage": 5.286, + "voteCount": 77, + "popularity": 7.4063 + }, + { + "id": 41791, + "title": "Mississippi Masala", + "originalTitle": "Mississippi Masala", + "overview": "Years after her Indian family was forced to flee their home in Uganda, twentysomething Mina finds herself helping to run a motel in the faraway land of Mississippi. It's there that a passionate romance with the charming Black carpet cleaner Demetrius challenges the prejudices of their conservative families and exposes the rifts between the region's Indian and African American communities.", + "posterPath": "/b2Gks4Stt98FRI5isaL6Wu1luhh.jpg", + "backdropPath": "/PFrzqXuT0yEGEmcbXDwPOUKCsS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1991-09-18", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.337, + "voteCount": 92, + "popularity": 7.4061 + }, + { + "id": 335, + "title": "Once Upon a Time in the West", + "originalTitle": "C'era una volta il West", + "overview": "As the railroad builders advance unstoppably through the Arizona desert on their way to the sea, Jill arrives in the small town of Flagstone with the intention of starting a new life.", + "posterPath": "/qbYgqOczabWNn2XKwgMtVrntD6P.jpg", + "backdropPath": "/aKZ9hDmLJTaGSxWdhxqMTcvXmk4.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "1968-12-21", + "releaseYear": "1968", + "originalLanguage": "it", + "voteAverage": 8.28, + "voteCount": 4691, + "popularity": 7.4056 + }, + { + "id": 1148713, + "title": "The Courier", + "originalTitle": "El correo", + "overview": "After shrewdly seizing his chance to join a money-laundering scheme, a modest valet dives into a world of fast cash, fast cars — and an inevitable crash.", + "posterPath": "/1IRKYqQXXleihbzaFXeDU1TdxKP.jpg", + "backdropPath": "/6SukPXIL4ipy2JptYaTgeYnRD0p.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2024-01-19", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.424, + "voteCount": 164, + "popularity": 7.4034 + }, + { + "id": 136795, + "title": "The Heat", + "originalTitle": "The Heat", + "overview": "Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence--and hyper-arrogance. Shannon Mullins, one of Boston P.D.'s \"finest,\" is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: buddies.", + "posterPath": "/yERBa1y5zNUOTRKQPiDCPIc2fuv.jpg", + "backdropPath": "/c0V8KAiuoWLXf7TfvwHK4yhIfb9.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2013-06-27", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.594, + "voteCount": 4078, + "popularity": 7.4026 + }, + { + "id": 901362, + "title": "Trolls Band Together", + "originalTitle": "Trolls Band Together", + "overview": "When Branch's brother, Floyd, is kidnapped for his musical talents by a pair of nefarious pop-star villains, Branch and Poppy embark on a harrowing and emotional journey to reunite the other brothers and rescue Floyd from a fate even worse than pop-culture obscurity.", + "posterPath": "/bkpPTZUdq31UGDovmszsg2CchiI.jpg", + "backdropPath": "/mDW6z7I6de6JbUgPOkAEZwKbg7G.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 10402, + 14, + 35 + ], + "genres": [ + "Animation", + "Family", + "Music", + "Fantasy", + "Comedy" + ], + "releaseDate": "2023-10-12", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 942, + "popularity": 7.4025 + }, + { + "id": 46368, + "title": "The Rig", + "originalTitle": "The Rig", + "overview": "In the midst of a tropical storm, the crew of an offshore oil rig must survive the rampage of a creature after invading its undersea habitat.", + "posterPath": "/qf7OXFj0bomUAFy9xR3jSN4zF7u.jpg", + "backdropPath": "/adLyEt4sbwDM73NX2ZzXkoaYwGm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 878, + 53 + ], + "genres": [ + "Action", + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2010-10-05", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 3.365, + "voteCount": 78, + "popularity": 7.4016 + }, + { + "id": 11469, + "title": "Black Knight", + "originalTitle": "Black Knight", + "overview": "Martin Lawrence plays Jamal, an employee in Medieval World amusement park. After nearly drowning in the moat, he awakens to find himself in 14th century England.", + "posterPath": "/pVxwVH461k9u4tUfRewT29DEZ2e.jpg", + "backdropPath": "/udgq4FDqsRgJIACUrWlk1BRtUhf.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 12 + ], + "genres": [ + "Comedy", + "Fantasy", + "Adventure" + ], + "releaseDate": "2001-11-21", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.351, + "voteCount": 1154, + "popularity": 7.4014 + }, + { + "id": 174675, + "title": "The Machine", + "originalTitle": "The Machine", + "overview": "Already deep into a second Cold War, Britain’s Ministry of Defense seeks a game-changing weapon. Programmer Vincent McCarthy unwittingly provides an answer in The Machine, a super-strong human cyborg. When a programming bug causes the prototype to decimate his lab, McCarthy takes his obsessive efforts underground, far away from inquisitive eyes.", + "posterPath": "/nNHAZaTrFVOjwLhkMYm4syUjNw8.jpg", + "backdropPath": "/3CcZRO5UMQwIA2f3U6bEnpjpegf.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2013-04-25", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 836, + "popularity": 7.4004 + }, + { + "id": 629, + "title": "The Usual Suspects", + "originalTitle": "The Usual Suspects", + "overview": "Held in an L.A. interrogation room, Verbal Kint attempts to convince the feds that a mythic crime lord, Keyser Soze, not only exists, but was also responsible for drawing him and his four partners into a multi-million dollar heist that ended with an explosion in San Pedro harbor – leaving few survivors. Verbal lures his interrogators with an incredible story of the crime lord's almost supernatural prowess.", + "posterPath": "/99X2SgyFunJFXGAYnDv3sb9pnUD.jpg", + "backdropPath": "/hy0Hx9fMPk2fmw26Li60z1S2giU.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "1995-07-19", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 8.173, + "voteCount": 10990, + "popularity": 7.4003 + }, + { + "id": 862491, + "title": "Catwoman: Hunted", + "originalTitle": "Catwoman: Hunted", + "overview": "Catwoman's attempt to steal a priceless jewel puts her squarely in the crosshairs of both a powerful consortium of villains and the ever-resourceful Interpol, not to mention Batwoman.", + "posterPath": "/iu01cvxs3eLQzra3YNF1pbpXIZa.jpg", + "backdropPath": "/vD7Lc0xfcsm9sKikq9HbeHRlqjF.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 80 + ], + "genres": [ + "Animation", + "Action", + "Crime" + ], + "releaseDate": "2022-02-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 123, + "popularity": 7.4 + }, + { + "id": 10380, + "title": "An American Tail: Fievel Goes West", + "originalTitle": "An American Tail: Fievel Goes West", + "overview": "Some time after the Mousekewitz's have settled in America, they find that they are still having problems with the threat of cats. That makes them eager to try another home out in the west, where they are promised that mice and cats live in peace. Unfortunately, the one making this claim is an oily con artist named Cat R. Waul who is intent on his own sinister plan.", + "posterPath": "/k4aLupAkHWwHiEDwvqsZFAnUYF.jpg", + "backdropPath": "/8UpJ8svNnwVtpu8n62vGke8MOJf.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 37, + 12, + 35 + ], + "genres": [ + "Animation", + "Family", + "Western", + "Adventure", + "Comedy" + ], + "releaseDate": "1991-11-21", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 770, + "popularity": 7.3996 + }, + { + "id": 260346, + "title": "Taken 3", + "originalTitle": "Taken 3", + "overview": "Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.", + "posterPath": "/vzvMXMypMq7ieDofKThsxjHj9hn.jpg", + "backdropPath": "/vFm4pF0BgaWPj0i2zEiZO6TqEQ0.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2014-12-16", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 5988, + "popularity": 7.3988 + }, + { + "id": 283566, + "title": "Evangelion: 3.0+1.0 Thrice Upon a Time", + "originalTitle": "シン・エヴァンゲリオン劇場版:||", + "overview": "In the aftermath of the Fourth Impact, stranded without their Evangelions, Shinji, Asuka and Rei find refuge in one of the rare pockets of humanity that still exist on the ruined planet Earth. There, each lives a life far different from their days as an Evangelion pilot. However, the danger to the world is far from over. A new impact is looming on the horizon—one that will prove to be the true end of Evangelion.", + "posterPath": "/md5wZRRj8biHrGtyitgBZo7674t.jpg", + "backdropPath": "/1EAxNqdkVnp48a7NUuNBHGflowM.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878, + 18 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction", + "Drama" + ], + "releaseDate": "2021-03-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 889, + "popularity": 7.3985 + }, + { + "id": 173736, + "title": "The Cave of the Golden Rose 4", + "originalTitle": "Fantaghirò 4", + "overview": "A black cloud travels across country, kills animals and plants and dries up the rivers. When the cloud reaches Fantaghiro's kingdom she meets Prince Parsel who follows the cloud to get his stolen castle back. After her castle vanishes, too, Fantaghiro joins Parsel on his journey to find her home, her people, her family and her love.", + "posterPath": "/97MClGvx4qztBC3rXaygwwmLgUi.jpg", + "backdropPath": "/u1L5uCF55hRrOKQGPeDhYHRkPLu.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14, + 10749 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy", + "Romance" + ], + "releaseDate": "1994-12-19", + "releaseYear": "1994", + "originalLanguage": "it", + "voteAverage": 6.242, + "voteCount": 91, + "popularity": 7.3976 + }, + { + "id": 290753, + "title": "Lighthouse", + "originalTitle": "Lighthouse", + "overview": "An obsessive fan rescues a famous musician from a car crash, then takes her to his secluded lighthouse.", + "posterPath": "/rG7iD2L8nS7RJ9mvu3WeQu7nEtv.jpg", + "backdropPath": "/538IabdG7kKdYdu7ndFMnGTKHlW.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 10770 + ], + "genres": [ + "Mystery", + "Thriller", + "TV Movie" + ], + "releaseDate": "2014-08-23", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 16, + "popularity": 7.3975 + }, + { + "id": 1070535, + "title": "Canceled", + "originalTitle": "Canceled", + "overview": "Gone Ghosting is a popular ghost hunting team that earned millions from live broadcasts and selling merch. Lise, Catta, Sandro, and Polly join the group to live-stream a ghost hunt to prove that everything is real. They break into a place where legend says everyone has died and do the craziest broadcast ever live.", + "posterPath": "/kgtDMp1Qut4M92g2yTdX2YL9zh8.jpg", + "backdropPath": "/juhNBu3B3B4ijVimeiUlAHFlooA.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 27, + 53 + ], + "genres": [ + "Mystery", + "Horror", + "Thriller" + ], + "releaseDate": "2023-08-25", + "releaseYear": "2023", + "originalLanguage": "sv", + "voteAverage": 5.8, + "voteCount": 18, + "popularity": 7.3971 + }, + { + "id": 1029235, + "title": "Azrael", + "originalTitle": "Azrael", + "overview": "In a world where no one speaks, a devout female hunts down a young woman who has escaped her imprisonment. Recaptured by its ruthless leaders, Azrael is due to be sacrificed to pacify an ancient evil deep within the surrounding wilderness.", + "posterPath": "/qpdFKDvJS7oLKTcBLXOaMwUESbs.jpg", + "backdropPath": "/uLqNGzJwnj8JKkKuRM2dHWJKCtc.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 53 + ], + "genres": [ + "Action", + "Horror", + "Thriller" + ], + "releaseDate": "2024-09-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.954, + "voteCount": 372, + "popularity": 7.3948 + }, + { + "id": 4176, + "title": "Murder on the Orient Express", + "originalTitle": "Murder on the Orient Express", + "overview": "In 1935, when his train is stopped by deep snow, detective Hercule Poirot is called on to solve a murder that occurred in his car the night before.", + "posterPath": "/oJjKcuoH7SuiqZaEpHt2Nd5ZxNY.jpg", + "backdropPath": "/tAXK5R0ytrN2l2qgGfyxums5J0w.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 9648 + ], + "genres": [ + "Drama", + "Thriller", + "Mystery" + ], + "releaseDate": "1974-11-22", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 1516, + "popularity": 7.394 + }, + { + "id": 501, + "title": "Grizzly Man", + "originalTitle": "Grizzly Man", + "overview": "Werner Herzog's documentary film about the \"Grizzly Man\" Timothy Treadwell and what the thirteen summers in a National Park in Alaska were like in one man's attempt to protect the grizzly bears. The film is full of unique images and a look into the spirit of a man who sacrificed himself for nature.", + "posterPath": "/zuZWpcuye25rpsiZ4XzsAvmLDHG.jpg", + "backdropPath": "/yvPsQ5A5eDHBV3bBmAWn2qDawJX.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2005-08-12", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 909, + "popularity": 7.3936 + }, + { + "id": 1165441, + "title": "I'll Crush Y'all", + "originalTitle": "Os reviento", + "overview": "Gabriel, known as Tarado, a retired boxing champion, tries to lead a quiet life in a remote village, with his father and his dog, far from the kind of problems that, in the past, led him to spend a few years in jail.", + "posterPath": "/lRbfUX43uR9ryX2eIVMD9jHtybl.jpg", + "backdropPath": "/uzXLCqPWYbsVzPU3pGz3oPqO4lE.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 28, + 53 + ], + "genres": [ + "Comedy", + "Action", + "Thriller" + ], + "releaseDate": "2024-09-13", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.6, + "voteCount": 11, + "popularity": 7.3899 + }, + { + "id": 39103, + "title": "Dragon Ball Z: The Return of Cooler", + "originalTitle": "ドラゴンボールZ 激突!!100億パワーの戦士たち", + "overview": "Cooler has resurrected himself as a robot and is enslaving the people of New Namek. Goku and the gang must help.", + "posterPath": "/k23L4i0JjwU8D5flnR5damgXFcS.jpg", + "backdropPath": "/l1H7adqYhxBrBK45aKAzqm6nIVC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "1992-03-07", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 1074, + "popularity": 7.3881 + }, + { + "id": 35026, + "title": "Lucky Luke", + "originalTitle": "Lucky Luke", + "overview": "Fearless gunslinger, Lucky Luke, is ordered by the President to bring peace to Daisy Town.", + "posterPath": "/sO2jtEp8DGz9X9EOpXatpBMz4mX.jpg", + "backdropPath": "/yA5P73pvjxYp7PbhteysFeq9eKq.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 37, + 12 + ], + "genres": [ + "Comedy", + "Western", + "Adventure" + ], + "releaseDate": "2009-10-21", + "releaseYear": "2009", + "originalLanguage": "fr", + "voteAverage": 4.5, + "voteCount": 530, + "popularity": 7.3881 + }, + { + "id": 1002338, + "title": "Operation Napoleon", + "originalTitle": "Napóleonsskjölin", + "overview": "A modern-day lawyer is sucked into an international conspiracy after being accused of a murder she didn't commit. Her only chance of freedom lies in uncovering the secret of an old German WWII aeroplane, long buried deep beneath the ice, before the CIA.", + "posterPath": "/l5VLVINzfiltL1fqNLt8oMTWnr0.jpg", + "backdropPath": "/oTAbBVd48ngNEfXrZhGAtNbRbto.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2023-01-26", + "releaseYear": "2023", + "originalLanguage": "is", + "voteAverage": 6.188, + "voteCount": 157, + "popularity": 7.3873 + }, + { + "id": 112160, + "title": "Sexual Chronicles of a French Family", + "originalTitle": "Chroniques sexuelles d'une famille d'aujourd'hui", + "overview": "Three generations of a French family open up about their sexual experiences and desires after young Romain is caught masturbating in his biology class.", + "posterPath": "/pebwFXu7izkXf8b8soWVXoRyJoR.jpg", + "backdropPath": "/gvtGBiE4r2xCVp0qR0mbM85Doxp.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2012-05-09", + "releaseYear": "2012", + "originalLanguage": "fr", + "voteAverage": 5.378, + "voteCount": 393, + "popularity": 7.3873 + }, + { + "id": 9463, + "title": "Vampire Hunter D", + "originalTitle": "バンパイアハンターD", + "overview": "In a far-future time ruled by the supernatural, a young girl requests the help of a vampire hunter to kill the vampire who has bitten her and thus prevent her from becoming a vampire herself.", + "posterPath": "/yhKS0Wi6HNOHauWl0M3fr23hiB7.jpg", + "backdropPath": "/l55hMfLp4XhyipHeUyqEXh3d75M.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 27 + ], + "genres": [ + "Animation", + "Fantasy", + "Horror" + ], + "releaseDate": "1985-12-21", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 6.594, + "voteCount": 513, + "popularity": 7.3858 + }, + { + "id": 41864, + "title": "Phase 3", + "originalTitle": "Grado 3", + "overview": "Follows the sexual stories of five Chilean couples.", + "posterPath": "/zzuNLgHs6fWG3v5jcuq3fsIkCTU.jpg", + "backdropPath": "/x3HQZhswZg1rnNN3HCOBoyt9ay9.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-07-09", + "releaseYear": "2009", + "originalLanguage": "es", + "voteAverage": 3.833, + "voteCount": 15, + "popularity": 7.3857 + }, + { + "id": 58434, + "title": "Rocket Gibraltar", + "originalTitle": "Rocket Gibraltar", + "overview": "A man's family comes for his 77th birthday and while he loves all of his children and their children, he and his children don't exactly connect. However, he connects with his grandchildren. And he tells them what he wants for his birthday and they do what they can to give it to him.", + "posterPath": "/4yA9LoOXHl5gTxfizEpl4407phT.jpg", + "backdropPath": "/9hSSQzTZ0rMwIwAXk3fpsuiinKC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "1988-09-02", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 35, + "popularity": 7.3856 + }, + { + "id": 517940, + "title": "Euphoria", + "originalTitle": "Euforia", + "overview": "Matteo is a young successful businessman, audacious, charming and energetic. Ettore instead, is a calm, righteous, second grade teacher always living in the shadows, still in the small town from where both come from. They’re brothers but with two very different personalities. A dramatic event will force them to live together in Rome for a few months, bringing up the opportunity to face their differences with sympathy and tenderness, in a climax of fear and euphoria.", + "posterPath": "/mRKr08cLd43CnwHCAuFKCq7XtDu.jpg", + "backdropPath": "/imzXEh5Z2aZbz9K0SXfyKlhrMBm.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-10-25", + "releaseYear": "2018", + "originalLanguage": "it", + "voteAverage": 6.475, + "voteCount": 202, + "popularity": 7.3853 + }, + { + "id": 45170, + "title": "Stolen Dreams", + "originalTitle": "Sonhos Roubados", + "overview": "Jessica, Sabrina and Daiane have dreams, just like all young people of any social class or place in the world. They live in a low-income neighborhood in the periphery of Rio de Janeiro and find in prostitution a way to survive and satisfy their consumer desires. However, even faced with the trials of absolute uncertainty and lack of hope, Jessica, Sabrina and Daiane insist on loving, having fun and planning their future.", + "posterPath": "/1mdVp2j5AdtB0qW6Wt4MXRoNFt6.jpg", + "backdropPath": "/5Jw40UncGBlcmoRb6PcJhJwrNPm.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-09-25", + "releaseYear": "2009", + "originalLanguage": "pt", + "voteAverage": 5.7, + "voteCount": 42, + "popularity": 7.3849 + }, + { + "id": 107983, + "title": "Golem", + "originalTitle": "Golem", + "overview": "Pernat finds himself in a police interrogation, accused of a murder, and unable to recall any details of the crime, or even his own life. He's released back into a world of raving lunatics and deranged dentists, murderous doctors and scientists who believe the secret of human creation is inside the walls of a cast-iron oven.", + "posterPath": "/vvae3Jqex1PTGEq3s3PLvU9dPcF.jpg", + "backdropPath": "/mUShQuVUrLUtdGylu1IAkNOUW51.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 27 + ], + "genres": [ + "Drama", + "Science Fiction", + "Horror" + ], + "releaseDate": "1980-03-18", + "releaseYear": "1980", + "originalLanguage": "pl", + "voteAverage": 6.8, + "voteCount": 61, + "popularity": 7.3845 + }, + { + "id": 482712, + "title": "The Apparition", + "originalTitle": "L'Apparition", + "overview": "Jacques Mayano, a French journalist who has lived a traumatic experience, is recruited by the Vatican to be part of a task force that must investigate the veracity of a supernatural apparition allegedly happened in a small French village.", + "posterPath": "/l4TXhyNSipy6ZvkVI7BzzhYW675.jpg", + "backdropPath": "/y64dXLCrhAYYBLJYdpCYyi2ETIv.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-02-14", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 6, + "voteCount": 153, + "popularity": 7.3824 + }, + { + "id": 270303, + "title": "It Follows", + "originalTitle": "It Follows", + "overview": "A young woman is followed by an unknown supernatural force after a sexual encounter.", + "posterPath": "/iwnQ1JH1wdWrGYkgWySptJ5284A.jpg", + "backdropPath": "/ikaRI4yMxKOje5SmOlAhOBUnicL.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2015-02-04", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.589, + "voteCount": 6708, + "popularity": 7.3811 + }, + { + "id": 174754, + "title": "Specters", + "originalTitle": "Spettri", + "overview": "A mysterious tomb is unearthed in the catacombs under Rome, the contents of which contain evidence of an ageless evil that may once have preyed on man.", + "posterPath": "/qyKGsp1ErnZFGcAIRQ0DzwhCaS.jpg", + "backdropPath": "/4bbVimXMwc6XjlWfUlrGZr4XkTL.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1987-04-24", + "releaseYear": "1987", + "originalLanguage": "it", + "voteAverage": 4.095, + "voteCount": 21, + "popularity": 7.3803 + }, + { + "id": 1032765, + "title": "My Everything", + "originalTitle": "Mon Inséparable", + "overview": "Mona lives with her adult son, Joël, who is \"slow,\" as they say. He works in a specialized facility and is passionately in love with his coworker, Océane, who is also disabled. While Mona knows nothing of their relationship, she eventually learns that Océane is pregnant, and the symbiotic bond between mother and son falters.", + "posterPath": "/5dRlQIDKaLJUiGaej6u8asad8Id.jpg", + "backdropPath": "/AubvnwXT5YNr8H7902LaBkBiHgk.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-12-25", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.375, + "voteCount": 20, + "popularity": 7.3802 + }, + { + "id": 8009, + "title": "Highlander", + "originalTitle": "Highlander", + "overview": "He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal.", + "posterPath": "/8Z8dptJEypuLoOQro1WugD855YE.jpg", + "backdropPath": "/2EfbAWLq8s2f1LxTAIuLGYpKETV.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 14 + ], + "genres": [ + "Adventure", + "Action", + "Fantasy" + ], + "releaseDate": "1986-03-07", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.868, + "voteCount": 2790, + "popularity": 7.3788 + }, + { + "id": 335216, + "title": "Sweet Hours", + "originalTitle": "Dulces horas", + "overview": "Juan Sahagún, since childhood, feels passion for his mother. One day in the street he sees a woman identical to her. He follows her and finds out that she works as an actress in a theater company, so Juan decides to hire the whole company to represent the people who have influenced him in his past. They recreate the same situations of yesteryear and Juan acts as the child he was, to relive the memories already forgotten.", + "posterPath": "/ubwDNRoLHM6ON2pMtLM4PLsguee.jpg", + "backdropPath": "/uQQ9U0co9whx8FGKASvXW7woLP0.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1982-02-15", + "releaseYear": "1982", + "originalLanguage": "es", + "voteAverage": 5.364, + "voteCount": 11, + "popularity": 7.3787 + }, + { + "id": 22681, + "title": "Homecoming", + "originalTitle": "Homecoming", + "overview": "A jilted ex-girlfriend plots revenge after her former beau comes back to their hometown with a new lover.", + "posterPath": "/ALPTyUklWtULWAzaf0J9vrRfUN.jpg", + "backdropPath": "/mOWeZlcpdAraOSA3ReYWqu2JJt7.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2009-07-17", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 166, + "popularity": 7.3781 + }, + { + "id": 32301, + "title": "Survival Island", + "originalTitle": "Survival Island", + "overview": "A group of teens on a remote island for a scavenger hunt accidentally unleash vengeful spirits from a cursed piñata and must fight to survive.", + "posterPath": "/suV4zsHoEEIzwY3CatYNvsfIlXA.jpg", + "backdropPath": "/g3jYktxAWZwJa5SoJAajxWVXnes.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2002-06-14", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 4.408, + "voteCount": 71, + "popularity": 7.3772 + }, + { + "id": 4169, + "title": "Breach", + "originalTitle": "Breach", + "overview": "Eric O'Neill, a low-level surveillance expert with the FBI, believes he is accomplishing his dream of becoming a full-fledged agent, with his unexpected promotion and assignment to clerk for Robert Hanssen, a renowned senior agent with 25 years in the FBI. However, he soon learns the reason for his promotion is to gain Hanssen's trust and find proof that he is a traitor to the country. Determined to draw the suspected double-agent out of deep cover, O'Neill finds himself in a lethal game of spy vs. spy, where nothing is as it seems.", + "posterPath": "/m2iVkJPxDrrink7NiE412nFBMQj.jpg", + "backdropPath": "/8WneCViPYXAcnJcJ2VZuAPPHQ5p.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80, + 36 + ], + "genres": [ + "Drama", + "Thriller", + "Crime", + "History" + ], + "releaseDate": "2007-02-12", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.608, + "voteCount": 637, + "popularity": 7.3762 + }, + { + "id": 1301844, + "title": "Belén", + "originalTitle": "Belén", + "overview": "In the conservative northwestern region of Argentina, Julieta finds herself accused of infanticide after a medical emergency. Facing a miscarriage of justice that lands her in prison for a crime she didn’t commit, her only hope is getting the chance to challenge her conviction in a courtroom battle with the help of Soledad, a fearless lawyer who risks everything to defend her. Their fight for justice will slowly begin to fuel a growing movement for solidarity and women’s rights.", + "posterPath": "/z5GUwkH7CrfP62SCyfh1KVRnQwG.jpg", + "backdropPath": "/rfARFd7JExZ348aP4DgrKyA2Nrp.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-18", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.7, + "voteCount": 19, + "popularity": 7.3758 + }, + { + "id": 1180906, + "title": "Desert Dawn", + "originalTitle": "Desert Dawn", + "overview": "A newly appointed small-town sheriff and his begrudging deputy get tangled up in a web of lies and corruption involving shady businessmen and the cartel while investigating the murder of a mysterious woman.", + "posterPath": "/6MpAklfzhbIqonqt54MyGciDTjS.jpg", + "backdropPath": "/dOi9s5qoWTEf3PgOPfbvgGsosMX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 9648, + 53 + ], + "genres": [ + "Action", + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "2025-05-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 54, + "popularity": 7.3755 + }, + { + "id": 1266, + "title": "Street Kings", + "originalTitle": "Street Kings", + "overview": "Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.", + "posterPath": "/csXyZ1BsDBlH0PXkOFWxggEf9WF.jpg", + "backdropPath": "/h5h2zpha5480Nea2saKTyF8KNBk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2008-04-10", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1602, + "popularity": 7.3752 + }, + { + "id": 106046, + "title": "Assault", + "originalTitle": "Assault", + "overview": "After a schoolgirl is raped while taking a short cut through the local woods, and another murdered a few days later, the police are baffled. With the help of a reporter, and against the wishes of a local psychologist, a young schoolteacher uses herself as bait to lure the perpetrator out.", + "posterPath": "/zx4xaFck68SuahsGvo2WCPaHpdv.jpg", + "backdropPath": "/oJ9qugXLS67Hz0fdU7qQ06JHDlB.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 27, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Horror", + "Mystery" + ], + "releaseDate": "1971-02-11", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 27, + "popularity": 7.3746 + }, + { + "id": 43429, + "title": "Martin (Hache)", + "originalTitle": "Martín (Hache)", + "overview": "19-year-old Argentine Martin has a nearly fatal drug overdose. After that, his mother sends him to Madrid, where his film director father (also Martin) lives with his new, much younger lover, Alicia, and bisexual actor friend, Dante.", + "posterPath": "/oknI8xVpiuUKl0gcMlqAdqvqbVR.jpg", + "backdropPath": "/oLMzuBnWrooxDIRBKTG7OPDlrXS.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1997-03-31", + "releaseYear": "1997", + "originalLanguage": "es", + "voteAverage": 7.4, + "voteCount": 96, + "popularity": 7.3744 + }, + { + "id": 132, + "title": "Gimme Shelter", + "originalTitle": "Gimme Shelter", + "overview": "A detailed chronicle of the famous 1969 tour of the United States by the British rock band The Rolling Stones, which culminated with the disastrous and tragic concert held on December 6 at the Altamont Speedway Free Festival, an event of historical significance, as it marked the end of an era: the generation of peace and love suddenly became the generation of disillusionment.", + "posterPath": "/fFLKCqI7nfkie9V1LmBLljiNV4j.jpg", + "backdropPath": "/c4Chm8w7AsekIkPb6KSxUxCzXq2.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 10402 + ], + "genres": [ + "Documentary", + "Music" + ], + "releaseDate": "1970-12-13", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 182, + "popularity": 7.3741 + }, + { + "id": 1023922, + "title": "MaXXXine", + "originalTitle": "MaXXXine", + "overview": "In 1980s Hollywood, adult film star and aspiring actress Maxine Minx finally gets her big break. But as a mysterious killer stalks the starlets of Hollywood, a trail of blood threatens to reveal her sinister past.", + "posterPath": "/ArvoFK6nlouZRxYmtIOUzKIrg90.jpg", + "backdropPath": "/viKEEaaCaZ0hZ2nGuvIEozlLooL.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-07-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.323, + "voteCount": 1305, + "popularity": 7.3737 + }, + { + "id": 374465, + "title": "Things to Come", + "originalTitle": "L'Avenir", + "overview": "Nathalie teaches philosophy at a high school in Paris. She is passionate about her job and particularly enjoys passing on the pleasure of thinking. Married with two children, she divides her time between her family, former students and her very possessive mother. One day, Nathalie’s husband announces he is leaving her for another woman. With freedom thrust upon her, Nathalie must reinvent her life.", + "posterPath": "/6MAAJJ51y2RUa1gvvVje4s0FB7W.jpg", + "backdropPath": "/mwl0MTfVZk6GPizobnSS8bFWCTY.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-04-06", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 6.5, + "voteCount": 330, + "popularity": 7.37 + }, + { + "id": 846422, + "title": "The Old Guard 2", + "originalTitle": "The Old Guard 2", + "overview": "Andy and her team of immortal warriors fight with renewed purpose as they face a powerful new foe threatening their mission to protect humanity.", + "posterPath": "/wqfu3bPLJaEWJVk3QOm0rKhxf1A.jpg", + "backdropPath": "/fd9K7ZDfzRAcbLh8JlG4HIKbtuR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14 + ], + "genres": [ + "Action", + "Fantasy" + ], + "releaseDate": "2025-07-01", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.969, + "voteCount": 799, + "popularity": 7.3693 + }, + { + "id": 433082, + "title": "Across the Waters", + "originalTitle": "Fuglene over sundet", + "overview": "Fuglene Over Sundet is the gripping tale of the Danish Jews' escape to Sweden in October 1943.", + "posterPath": "/dUik1Dx2ZqTFM4ghxFIvlQzWkEz.jpg", + "backdropPath": "/5RRJ2Z68O9fkjJqBoz5cYOfhpct.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752 + ], + "genres": [ + "Drama", + "History", + "War" + ], + "releaseDate": "2016-10-27", + "releaseYear": "2016", + "originalLanguage": "da", + "voteAverage": 7, + "voteCount": 15, + "popularity": 7.3683 + }, + { + "id": 37247, + "title": "The Graduate", + "originalTitle": "The Graduate", + "overview": "A disillusioned college graduate finds himself torn between his older lover and her daughter.", + "posterPath": "/z1Z1tZMR66RxcNeHbwoEhYeqOlP.jpg", + "backdropPath": "/lIY8ZTp6OJTAMfiorDGsPsJ5LT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 35 + ], + "genres": [ + "Drama", + "Romance", + "Comedy" + ], + "releaseDate": "1967-12-21", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 3555, + "popularity": 7.368 + }, + { + "id": 17886, + "title": "Mutants", + "originalTitle": "Mutants", + "overview": "A nasty virus has spread throughout the human race turning the population into something ...else. After a brief setup (and a messy hit and run) we’re introduced to an ambulance and its four occupants. Sonia and Marco are together and riding with two police officers. Tensions rise between them as they head for a mythical research facility called NOAH that is reportedly infection free and working on a cure, and circumstances lead to Sonia and Marco holing up alone in an abandoned building. She’s pregnant, in love, and apparently immune to the virus… and she realizes that he’s been infected. He slowly transforms but her love for him refuses to give up on a cure, so she sets out to survive the onslaught of infected, attacks from still-human marauders, and the growing threat from her baby’s daddy.", + "posterPath": "/wXElN0L7FXYv0K9bOP2e3BWNxDs.jpg", + "backdropPath": "/vCD6Yo3zbTjTGupUm7TtAeVGcwI.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "2009-05-06", + "releaseYear": "2009", + "originalLanguage": "fr", + "voteAverage": 5.3, + "voteCount": 101, + "popularity": 7.3673 + }, + { + "id": 36446, + "title": "Camille 2000", + "originalTitle": "Camille 2000", + "overview": "Marguerite, a beautiful woman of affairs, falls for the young and promising Armand, but sacrifices her love for him for the sake of his future and reputation.", + "posterPath": "/dQdIVngtrn56qmqxhotrVGiY3Hi.jpg", + "backdropPath": "/hBlnsVKrfZZWnnuWwXh0zLnXy2n.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1969-07-15", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 29, + "popularity": 7.3664 + }, + { + "id": 774021, + "title": "Demonic", + "originalTitle": "Demonic", + "overview": "A young woman unleashes terrifying demons when supernatural forces at the root of a decades-old rift between mother and daughter are ruthlessly revealed.", + "posterPath": "/pUK9duiCK1PKqWA5rRQ4XBMHITH.jpg", + "backdropPath": "/tFBVXnqmsmoSFR3rbltTfdGIMgV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 878 + ], + "genres": [ + "Drama", + "Horror", + "Science Fiction" + ], + "releaseDate": "2021-07-29", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.826, + "voteCount": 276, + "popularity": 7.3662 + }, + { + "id": 774825, + "title": "The Ice Age Adventures of Buck Wild", + "originalTitle": "The Ice Age Adventures of Buck Wild", + "overview": "The fearless one-eyed weasel Buck teams up with mischievous possum brothers Crash & Eddie as they head off on a new adventure into Buck's home: The Dinosaur World.", + "posterPath": "/zzXFM4FKDG7l1ufrAkwQYv2xvnh.jpg", + "backdropPath": "/qw02SUqrrdTjAOPCFJBPyKaVf4z.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 12 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Adventure" + ], + "releaseDate": "2022-01-28", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.586, + "voteCount": 1781, + "popularity": 7.366 + }, + { + "id": 450438, + "title": "Permanent", + "originalTitle": "Permanent", + "overview": "This comedy, set in 1983 in small town Virginia, centers around a 13 year old and her family. The story of a hairstyle gone incredibly wrong and a young girl's plight to fit in while encountering bullies at a new school.", + "posterPath": "/fdnPEuJe69F58MphzHnXovcfBK0.jpg", + "backdropPath": "/jWrLZQHK3MBJwOgupZbjE2K8dEl.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-12-15", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.209, + "voteCount": 86, + "popularity": 7.366 + }, + { + "id": 25719, + "title": "Shooting Fish", + "originalTitle": "Shooting Fish", + "overview": "Two con artists hire an unwitting medical-school student as a secretary for their latest scam.", + "posterPath": "/mGmKLFKD5FREXqIpxntNQic61vZ.jpg", + "backdropPath": "/ldjjEZl2Ez6m32HAZJtfaF2aKGF.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 10749 + ], + "genres": [ + "Crime", + "Comedy", + "Romance" + ], + "releaseDate": "1997-08-22", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 80, + "popularity": 7.3647 + }, + { + "id": 121514, + "title": "Miracolo italiano", + "originalTitle": "Miracolo italiano", + "overview": "7 segments about life in 1990s Italy: two MPs from the opposite sides of the political spectrum spend the night together; during their honeymoon, a woman cheats on her husband with her favorite soap opera star; a married man pretends to be ill to seduce his younger nurse; a family discovers that their son's beautiful fiancée is transgender; an unsatisfied single woman is duped by her celebrity crush for Kevin Costner; two best friends want to have fun; a couple on a tropical holiday is fascinated by their indigenous masseuse.", + "posterPath": "/zAZWbx1TZDonku6HO65W8EmHD26.jpg", + "backdropPath": "/jdAQ3izQqJtd257WKL8XGMlc2lZ.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1994-12-21", + "releaseYear": "1994", + "originalLanguage": "it", + "voteAverage": 4, + "voteCount": 30, + "popularity": 7.3645 + }, + { + "id": 604, + "title": "The Matrix Reloaded", + "originalTitle": "The Matrix Reloaded", + "overview": "The Resistance builds in numbers as humans are freed from the Matrix and brought to the city of Zion. Neo discovers his superpowers, including the ability to see the code inside the Matrix. With machine sentinels digging to Zion in 72 hours, Neo, Morpheus and Trinity must find the Keymaker to ultimately reach the Source.", + "posterPath": "/aA5qHS0FbSXO8PxcxUIHbDrJyuh.jpg", + "backdropPath": "/hgWDZ0UlGEf8LvrAkKt6VqAH0bu.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 53, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2003-05-15", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.067, + "voteCount": 11562, + "popularity": 7.3634 + }, + { + "id": 301528, + "title": "Toy Story 4", + "originalTitle": "Toy Story 4", + "overview": "Woody has always been confident about his place in the world and that his priority is taking care of his kid, whether that's Andy or Bonnie. But when Bonnie adds a reluctant new toy called \"Forky\" to her room, a road trip adventure alongside old and new friends will show Woody how big the world can be for a toy.", + "posterPath": "/w9kR8qbmQ01HwnvK4alvnQ2ca0L.jpg", + "backdropPath": "/m67smI1IIMmYzCl9axvKNULVKLr.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 16, + 12 + ], + "genres": [ + "Family", + "Comedy", + "Animation", + "Adventure" + ], + "releaseDate": "2019-06-19", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.47, + "voteCount": 10238, + "popularity": 7.363 + }, + { + "id": 71682, + "title": "Coffin Baby", + "originalTitle": "Coffin Baby", + "overview": "An attractive young woman is kidnapped, held captive and forced to endure the evils of one of the most violent homicidal maniacs in the city's history. \"The Toolbox Killer\" aka TBK. It is by her will, strength and her faith that she must survive, the ordeal. Her escape is almost hopeless. Unfortunately her situation only worsens when outside supernatural forces become more difficult to contend with than TBK.", + "posterPath": "/bsK0nq4KgP2qhy29CZRzMF8LdvR.jpg", + "backdropPath": "/dq2ynRiiOgJN3kh9jpyWIKAmHUe.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2013-03-15", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 49, + "popularity": 7.3626 + }, + { + "id": 440444, + "title": "Piercing", + "originalTitle": "Piercing", + "overview": "After kissing his wife and baby goodbye for a seemingly normal business trip, Reed checks himself into a hotel room to accomplish something he’s always dreamed of: the perfect murder. As his sinister plans unfold, he soon realizes he might be in over his head with a mysteriously unhinged call girl named Jackie.", + "posterPath": "/1iDIFMzYxY25X25KDeARA6VoDl3.jpg", + "backdropPath": "/mgQum2DEYJaDe6opeQu9KvACOQ9.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2019-01-03", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.715, + "voteCount": 246, + "popularity": 7.3625 + }, + { + "id": 96721, + "title": "Rush", + "originalTitle": "Rush", + "overview": "In the 1970s, a rivalry propels race car drivers Niki Lauda and James Hunt to fame and glory — until a horrible accident threatens to end it all.", + "posterPath": "/ohZ2oP27ZAwNJ8xUNOQkFiwqKDL.jpg", + "backdropPath": "/D3eDUNEzJPBDG3TCJcR7RyRgTA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28 + ], + "genres": [ + "Drama", + "Action" + ], + "releaseDate": "2013-09-02", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.729, + "voteCount": 7567, + "popularity": 7.3617 + }, + { + "id": 424694, + "title": "Bohemian Rhapsody", + "originalTitle": "Bohemian Rhapsody", + "overview": "Singer Freddie Mercury, guitarist Brian May, drummer Roger Taylor and bass guitarist John Deacon take the music world by storm when they form the rock 'n' roll band Queen in 1970. Hit songs become instant classics. When Mercury's increasingly wild lifestyle starts to spiral out of control, Queen soon faces its greatest challenge yet – finding a way to keep the band together amid the success and excess.", + "posterPath": "/lHu1wtNaczFPGFDTrjCSzeLPTKN.jpg", + "backdropPath": "/dcvbs8z0GEXslC1kCT77x19XDeR.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18 + ], + "genres": [ + "Music", + "Drama" + ], + "releaseDate": "2018-10-24", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.965, + "voteCount": 17412, + "popularity": 7.3616 + }, + { + "id": 353081, + "title": "Mission: Impossible - Fallout", + "originalTitle": "Mission: Impossible - Fallout", + "overview": "When an IMF mission ends badly, the world is faced with dire consequences. As Ethan Hunt takes it upon himself to fulfill his original briefing, the CIA begin to question his loyalty and his motives. The IMF team find themselves in a race against time, hunted by assassins while trying to prevent a global catastrophe.", + "posterPath": "/AkJQpZp9WoNdj7pLYSj1L0RcMMN.jpg", + "backdropPath": "/5jnoAA74Qwb5w6B9FMvnc20n6Ie.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12 + ], + "genres": [ + "Action", + "Adventure" + ], + "releaseDate": "2018-07-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 8829, + "popularity": 7.3598 + }, + { + "id": 532671, + "title": "The Prodigy", + "originalTitle": "The Prodigy", + "overview": "A mother concerned about her young son's disturbing behavior thinks something supernatural may be affecting him.", + "posterPath": "/yyejodyk3lWncVjVhhrEkPctY9o.jpg", + "backdropPath": "/k27fGtCqjP85cv4RTV2fJDUNDxu.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2019-02-06", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.16, + "voteCount": 1035, + "popularity": 7.3596 + }, + { + "id": 792, + "title": "Platoon", + "originalTitle": "Platoon", + "overview": "As a young and naive recruit in Vietnam, Chris Taylor faces a moral crisis when confronted with the horrors of war and the duality of man.", + "posterPath": "/m3mmFkPQKvPZq5exmh0bDuXlD9T.jpg", + "backdropPath": "/xywFHPls3rMTiRtZUhrCghMCsMe.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752, + 28 + ], + "genres": [ + "Drama", + "War", + "Action" + ], + "releaseDate": "1986-12-19", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.746, + "voteCount": 4873, + "popularity": 7.359 + }, + { + "id": 621191, + "title": "Blue Story", + "originalTitle": "Blue Story", + "overview": "Blue Story is a tragic tale of a friendship between Timmy and Marco, two young boys from opposing postcodes. Timmy, a shy, smart, naive and timid young boy from Deptford, goes to school in Peckham where he strikes up a friendship with Marco, a charismatic, streetwise kid from the local area. Although from warring postcodes, the two quickly form a firm friendship until it is tested and they wind up on rival sides of a street war. Blue Story depicts elements of Rapman's own personal experiences and aspects of his childhood.", + "posterPath": "/qI4Rw83LxKq07xIjM3RcbKcWpAM.jpg", + "backdropPath": "/zbLbjvbDph2eTYhAWWH1rbM0cP5.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10749 + ], + "genres": [ + "Crime", + "Drama", + "Romance" + ], + "releaseDate": "2019-11-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.275, + "voteCount": 231, + "popularity": 7.3586 + }, + { + "id": 289335, + "title": "Wallander: The Brothers", + "originalTitle": "Bröderna", + "overview": "In the third Wallander film, starring Krister Henriksson, a bestial double murder is investigated in which the victims have been subjected to torture and where many point to the act of revenge. Henning Mankell's sharp-eyed commissioner has the assistance of daughter Linda, newly graduated police officer, and criminal inspector Stefan Lindman.", + "posterPath": "/uAhkenrgMeTbLf6LymX4ecqKYb0.jpg", + "backdropPath": "/b7ssm9DTKc2tcCRu0Ob7uLJ7RzC.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2005-09-07", + "releaseYear": "2005", + "originalLanguage": "sv", + "voteAverage": 5.1, + "voteCount": 16, + "popularity": 7.3577 + }, + { + "id": 18406, + "title": "Chained Heat", + "originalTitle": "Chained Heat", + "overview": "Linda Blair plays Carol, a young woman who must serve 18 months in prison after driving drunk and killing a man. The prison turns out to be brimming with decadence, corruption and sleaze, where the other female inmates are sadistic crack-selling lesbian rapists and the guards and warden are no better.", + "posterPath": "/iS3XhJEEmK7BfwsFFMoLVSCMQrn.jpg", + "backdropPath": "/5RwrEx5BdIbOD0KiE3HYaIanvWV.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1983-05-27", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 66, + "popularity": 7.3568 + }, + { + "id": 1702, + "title": "Death Machine", + "originalTitle": "Death Machine", + "overview": "Chaank Armaments is experimenting with the ultimate fighting machine which is part human - part machine. So far, the Hardman project has been unreliable and has killed a number of innocent people. The genius behind this project is Jack who lives in a world of models, toys and magazines. When he is fired by Cale for killing a few corporate officers, he unleashes the ultimate killing machine called the 'Warbeast' against Cale and those who would help her.", + "posterPath": "/vmDaabHFO4NvrEc6kT8aRMv9Rve.jpg", + "backdropPath": "/3zKoRDJ1ngF5CNJbOyB6Io1O6Qs.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 878, + 53 + ], + "genres": [ + "Action", + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "1995-05-02", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 132, + "popularity": 7.3532 + }, + { + "id": 1200320, + "title": "Killing Faith", + "originalTitle": "Killing Faith", + "overview": "In the summer of 1859, a widowed physician reluctantly agrees to take a recently freed slave and her mysterious Caucasian daughter on a five-day journey through the bloody West to find a distant town's Faith Healer. The woman believes her daughter is possessed. The doctor believes she simply carries The Sickness. Either way the fact remains that every living thing the girl touches mysteriously dies.", + "posterPath": "/bNHlTTdpdDv8xxrXF3krVghyCcj.jpg", + "backdropPath": "/dC15RaDX4mmPB0omILrjTKMGy6W.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 37 + ], + "genres": [ + "Thriller", + "Western" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.233, + "voteCount": 15, + "popularity": 7.3528 + }, + { + "id": 575774, + "title": "His House", + "originalTitle": "His House", + "overview": "After making a harrowing escape from war-torn South Sudan, a young refugee couple struggle to adjust to their new life in a small English town that has an unspeakable evil lurking beneath the surface.", + "posterPath": "/mM1ELeOF4qmdIFbZh9VSBn685g.jpg", + "backdropPath": "/bNZB25TQxt0jEVgJOJ09tD2es7k.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "2020-01-27", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.419, + "voteCount": 1181, + "popularity": 7.3527 + }, + { + "id": 6977, + "title": "No Country for Old Men", + "originalTitle": "No Country for Old Men", + "overview": "Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.", + "posterPath": "/6d5XOczc226jECq0LIX0siKtgHR.jpg", + "backdropPath": "/gddUsvfyySrM5k8B8wwJy2VRlBx.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 37 + ], + "genres": [ + "Crime", + "Thriller", + "Western" + ], + "releaseDate": "2007-11-09", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.947, + "voteCount": 12821, + "popularity": 7.3516 + }, + { + "id": 29461, + "title": "Soul Food", + "originalTitle": "Soul Food", + "overview": "Traditional Sunday dinners at Mama Joe's (Irma P. Hall) turn sour when sisters Teri (Vanessa L. Williams), Bird (Nia Long) and Maxine (Vivica A. Fox) start bringing their problems to the dinner table in this ensemble comedy. When tragedy strikes, it's up to grandson Ahmad (Brandon Hammond) to pull the family together and put the soul back into the family's weekly gatherings.", + "posterPath": "/97t6YjxjTpwQ439MJcPiPDrMAg0.jpg", + "backdropPath": "/d8JdOTvPHrT5pi4oGcwZ3YAqjP.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1997-09-26", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.207, + "voteCount": 87, + "popularity": 7.3515 + }, + { + "id": 539649, + "title": "The Lie", + "originalTitle": "The Lie", + "overview": "A father and daughter are on their way to dance camp when they spot the girl's best friend on the side of the road. When they stop to offer the friend a ride, their good intentions soon result in terrible consequences.", + "posterPath": "/a3c5zUOIEXAFYFf0vyypBCNJepb.jpg", + "backdropPath": "/yRzsHHUbgsgEQ2ZNxYtvujaTer9.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2018-09-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.361, + "voteCount": 767, + "popularity": 7.3509 + }, + { + "id": 379220, + "title": "No Filter", + "originalTitle": "Sin Filtro", + "overview": "When a woman visits a Chinese doctor, she discovers her pain is due to pent-up rage, and the only cure is to fully express herself, whatever may come.", + "posterPath": "/cISuCIaPdwjJ8YJhBipdslltKl9.jpg", + "backdropPath": "/a88IphyJeF1gnmwAmiDZHHpkS1F.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-01-07", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 5.8, + "voteCount": 72, + "popularity": 7.3496 + }, + { + "id": 41003, + "title": "White Palace", + "originalTitle": "White Palace", + "overview": "Max Baron is a Jewish advertising executive in his 20s who's still getting over the death of his wife. Nora Baker is a 40-something diner waitress who enjoys the wilder side of life. Mismatched or not, their attraction is instant and smoldering. With time, however, their class and age differences become an obstacle in their relationship, especially since Max can't keep Nora a secret from his Jewish friends and upper-crust associates forever.", + "posterPath": "/8H63Gjhfa5f2zkXgEuFA2ThdDJ6.jpg", + "backdropPath": "/yme0UvacQuWaZK9QiywD6lvx0Oz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1990-10-19", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.298, + "voteCount": 168, + "popularity": 7.3496 + }, + { + "id": 7298, + "title": "One Way", + "originalTitle": "One Way", + "overview": "To cover up his infidelities and protect his upcoming marriage, a star advertiser helps free an accused rapist by giving a false alibi and suffers the brutal revenge of the victim.", + "posterPath": "/1cJmiDpBgjdqUY02mfDAKMBM5YB.jpg", + "backdropPath": "/jfHDfHNgCZRrt4pkiXJU4DmnEqT.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 53 + ], + "genres": [ + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "2006-10-21", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.492, + "voteCount": 63, + "popularity": 7.3485 + }, + { + "id": 173484, + "title": "Rewind This!", + "originalTitle": "Rewind This!", + "overview": "Home video changed the world. The cultural and historical impact of the VHS tape was enormous. This film traces the ripples of that impact by examining the myriad aspects of society that were altered by the creation of videotape.", + "posterPath": "/4iOjFXiU1QyoqeKF3Eq5IyxtzjP.jpg", + "backdropPath": "/9XolK3SX5yOkTDOxmDl4K6HSroJ.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2013-08-27", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 67, + "popularity": 7.3451 + }, + { + "id": 10330, + "title": "Freaky Friday", + "originalTitle": "Freaky Friday", + "overview": "Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fiancé. When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.", + "posterPath": "/ipKcZ4Up7dp18XpsfYUc9NKZy3g.jpg", + "backdropPath": "/aH4MrSu8fwjRiEMGfdRwpsYu2PW.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 35, + 10749 + ], + "genres": [ + "Family", + "Fantasy", + "Comedy", + "Romance" + ], + "releaseDate": "2003-08-05", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 4123, + "popularity": 7.3449 + }, + { + "id": 649609, + "title": "Renfield", + "originalTitle": "Renfield", + "overview": "Having grown sick and tired of his centuries as Dracula's lackey, Renfield finds a new lease on life — and maybe even redemption — when he falls for feisty, perennially angry traffic cop Rebecca Quincy.", + "posterPath": "/p6yUjhvNGQpFZilKwOKbxQ1eHlo.jpg", + "backdropPath": "/nBEFrdcVhwceGSFw83RksxY9Blg.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 27 + ], + "genres": [ + "Comedy", + "Fantasy", + "Horror" + ], + "releaseDate": "2023-04-07", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.463, + "voteCount": 2008, + "popularity": 7.3433 + }, + { + "id": 801688, + "title": "Kalki 2898-AD", + "originalTitle": "కల్కి 2898-ఎ.డి", + "overview": "In the year 2898 AD, around 6000 years after Kurukshetra war, Ashwatthama gears up for his final battle of redemption at the sign of hope in a dystopian world and Bhairava, a wisecracking and self-interested bounty hunter, tired of the perilous life becomes the hurdle in the process.", + "posterPath": "/rstcAnBeCkxNQjNp3YXrF6IP1tW.jpg", + "backdropPath": "/o8XSR1SONnjcsv84NRu6Mwsl5io.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 14, + 878 + ], + "genres": [ + "Drama", + "Action", + "Fantasy", + "Science Fiction" + ], + "releaseDate": "2024-06-26", + "releaseYear": "2024", + "originalLanguage": "te", + "voteAverage": 6.483, + "voteCount": 150, + "popularity": 7.3432 + }, + { + "id": 1218493, + "title": "Ick", + "originalTitle": "Ick", + "overview": "Science teacher Hank’s life changes when he reconnects with his first love and suspects that a new student may be his daughter—all while facing an alien threat in their town.", + "posterPath": "/AtfV5Rl0YHtibZWuwC9ilHcHugU.jpg", + "backdropPath": "/mow3uFuLiBMXq5C7CzHc9wmYnDB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "2025-07-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 25, + "popularity": 7.3421 + }, + { + "id": 159514, + "title": "Matterhorn", + "originalTitle": "Matterhorn", + "overview": "A lonely widower finds himself facing both his devout Calvinist village community and his own deepest regrets when he takes a deranged vagrant into his home.", + "posterPath": "/hCZrQoZIHBlTV4luqWwvJRSp8d9.jpg", + "backdropPath": "/1ydyBeyf3qI9zn6OWsIBAkufiEp.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2013-01-24", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 31, + "popularity": 7.342 + }, + { + "id": 466129, + "title": "The Hatred", + "originalTitle": "The Hatred", + "overview": "Four young women travel to their college professor's new country home for a weekend getaway, only to discover that the house has a malevolent past.", + "posterPath": "/sCuZThFUGycGPwVblKdQO5MWzi0.jpg", + "backdropPath": "/10qtFb7Idkf7AEtph1UoRyG95gK.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2017-11-29", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.348, + "voteCount": 89, + "popularity": 7.3402 + }, + { + "id": 660033, + "title": "How I Became a Gangster", + "originalTitle": "Jak zostałem gangsterem. Historia prawdziwa", + "overview": "The action of the film begins in the 1970s – even then, the young protagonist knows that adrenaline tastes better than powdered milk. Over time, he also discovers a desire for money, power, and being above the law. A transformation begins, and his gangster talent blossoms. Together with a friend, they build their own army.", + "posterPath": "/oEvk45mBpE6s6wmIjvCTbdaMMpB.jpg", + "backdropPath": "/pHvHLrbvMogNMH1l7Uon3VzE3px.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28 + ], + "genres": [ + "Crime", + "Action" + ], + "releaseDate": "2019-12-25", + "releaseYear": "2019", + "originalLanguage": "pl", + "voteAverage": 6.996, + "voteCount": 114, + "popularity": 7.3398 + }, + { + "id": 26261, + "title": "Cops & Robbersons", + "originalTitle": "Cops & Robbersons", + "overview": "When the police discover that a mob hitman has moved in next door to the Robbersons, they set up a stakeout in the Robbersons' home. Hard-nosed, tough-as-nails Jake Stone and his young partner Tony Moore are assigned to the stakeout, but now it is a question of whether Jake can last long enough to capture the bad guys. The Robbersons want to help, and by doing so, drive Jake crazy.", + "posterPath": "/wnkWgFU5UcLwbExCp1YtCg5Ox4E.jpg", + "backdropPath": "/or1yV4hqs8X2sDsFhGXSR8Vc8YM.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53, + 80 + ], + "genres": [ + "Comedy", + "Thriller", + "Crime" + ], + "releaseDate": "1994-04-15", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 5.097, + "voteCount": 124, + "popularity": 7.339 + }, + { + "id": 1265, + "title": "Bridge to Terabithia", + "originalTitle": "Bridge to Terabithia", + "overview": "Jesse Aarons trained all summer to become the fastest runner in school. So he's very upset when newcomer Leslie Burke outruns him and everyone else. Despite this and other differences including that she's rich, he's poor, she's a city girl, and he's a country boy the two become fast friends. Together they create Terabithia, a land of monsters, trolls, ogres, and giants where they rule as king and queen.", + "posterPath": "/3xFxGodKPMFLheS8rujFSmLfcq4.jpg", + "backdropPath": "/jfxTTQqb9FRUPDLMn5BUWVvVsKf.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10751 + ], + "genres": [ + "Adventure", + "Drama", + "Family" + ], + "releaseDate": "2007-02-15", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.308, + "voteCount": 5062, + "popularity": 7.338 + }, + { + "id": 815, + "title": "Animal Farm", + "originalTitle": "Animal Farm", + "overview": "Animals on a farm lead a revolution against the farmers to put their destiny in their own hands. However this revolution eats their own children and they cannot avoid corruption.", + "posterPath": "/vFQo4DdhgHBr0Jy06VpzCYaZaPI.jpg", + "backdropPath": "/hh35rkki4XHbAYXPqsSumyQ9Ns7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1999-10-03", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.654, + "voteCount": 147, + "popularity": 7.3375 + }, + { + "id": 98609, + "title": "National Heritage", + "originalTitle": "Patrimonio nacional", + "overview": "After the death of General Franco, the Leguineche family leaves their estate of Los Tejadillos, where they have remained for decades in voluntary exile, with the purpose of returning to Madrid to actively participate in the social events of the aristocracy and to get closer to the closest circle of the Spanish monarch. The obsession of the old marquis is centered on getting in touch with the most illustrious surnames, to ascend socially and to resume the pomp and courtly life that his family lost a long time ago. To this end, he decides to move into an old palace he owns, located in the center of the capital, but not before overcoming the difficulties posed by his wife, who deeply hates both her husband and her son. To regain control of the palace, the Marquis of Leguineche tries to handicap his wife, arguing an incurable mental illness, and then undertake a reform of the place in order to adapt it to aristocratic life.", + "posterPath": "/ggtpWtXpuCGY2B5yoShkOwuy4Ig.jpg", + "backdropPath": "/pMfWX66NOzhNOQislqAOyRseDtC.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1981-03-26", + "releaseYear": "1981", + "originalLanguage": "es", + "voteAverage": 7, + "voteCount": 26, + "popularity": 7.336 + }, + { + "id": 2978, + "title": "Ghostbusters II", + "originalTitle": "Ghostbusters II", + "overview": "The discovery of a massive river of ectoplasm and a resurgence of spectral activity allows the staff of Ghostbusters to revive the business.", + "posterPath": "/yObYPMA58DnTMvJooFW7GG6jWAt.jpg", + "backdropPath": "/tgHO1DdnaS0xHcRxBHxE4kOQeIm.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "1989-06-16", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.596, + "voteCount": 4678, + "popularity": 7.335 + }, + { + "id": 1075969, + "title": "Moonrise", + "originalTitle": "Moonrise", + "overview": "After country singer Will Brown's wife passes away, his grief sidelines his career and pushes him away from his young daughter until a bright and talented horse trainer shows him strength, forgiveness and grace to live life again", + "posterPath": "/nOMQMIphDZuOoAkrktd22dJJnmv.jpg", + "backdropPath": "/xvydM9wCeUPZMNmiMGOmK5WBCpW.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 10751 + ], + "genres": [ + "Drama", + "Music", + "Family" + ], + "releaseDate": "2022-12-15", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 14, + "popularity": 7.3336 + }, + { + "id": 781777, + "title": "AEW Double or Nothing 2021", + "originalTitle": "AEW Double or Nothing 2021", + "overview": "It's time to put all your chips on the table as All Elite Wrestling's third annual May spectacular is something to bet the house on as The Young Bucks defend their AEW Tag Team Championships against Jon Moxley & Eddie Kingston, Dr. Britt Baker, D.M.D. challenges Hikaru Shida for her AEW Women's World Championship, Pac & Orange Cassidy take on Kenny Omega for his AEW World Championship, and The Pinnacle faces off against Inner Circle in the second ever Stadium Stampede Match.", + "posterPath": "/uNn4XM2bBo55fQrDmPcib6JTTWy.jpg", + "backdropPath": "/1v4cR42VINukiuAr6aBNJq6VB21.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2021-05-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 19, + "popularity": 7.3335 + }, + { + "id": 324291, + "title": "Night Owls", + "originalTitle": "Night Owls", + "overview": "After workaholic Kevin has a drunken one night stand with the beautiful train-wreck Madeline, he's horrified to discover that she's actually his boss' jilted ex-mistress. When she takes a bottle of sleeping pills, Kevin is forced to keep her awake... and over the course of the night the two begin to fall for each other.", + "posterPath": "/wRzddgMNFWfoYbE0hiyWxYNt5Gg.jpg", + "backdropPath": "/AtBwNjgIXTIEvyfuKRk8ex3bKiF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "2015-12-04", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.157, + "voteCount": 83, + "popularity": 7.3315 + }, + { + "id": 83200, + "title": "Tummy Trouble", + "originalTitle": "Tummy Trouble", + "overview": "Roger Rabbit once again is chosen for the dangerous task of babysitting Baby Herman and everything is going to be just fine.", + "posterPath": "/mLOqZNasNOUKSNCpAIeHmJWPkvW.jpg", + "backdropPath": "/rft7tLgv41w33b037512tlmxD4N.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "1989-06-23", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 74, + "popularity": 7.3315 + }, + { + "id": 263115, + "title": "Logan", + "originalTitle": "Logan", + "overview": "In the near future, a weary Logan cares for an ailing Professor X in a hideout on the Mexican border. But Logan's attempts to hide from the world and his legacy are upended when a young mutant arrives, pursued by dark forces.", + "posterPath": "/fnbjcRDYn6YviCcePDnGdyAkYsB.jpg", + "backdropPath": "/4DZxWNSAyksN6N3JkvpJ53Yq6zU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 878 + ], + "genres": [ + "Action", + "Drama", + "Science Fiction" + ], + "releaseDate": "2017-02-28", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 19974, + "popularity": 7.3313 + }, + { + "id": 517839, + "title": "Border", + "originalTitle": "Gräns", + "overview": "When a border guard with a sixth sense for identifying smugglers encounters the first person she cannot prove is guilty, she is forced to confront terrifying revelations about herself and humankind.", + "posterPath": "/8KzOTRlKjdAKQTemV41hq86ldFS.jpg", + "backdropPath": "/blHx3LrXsIfefFggOk4gjwdX73i.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 80 + ], + "genres": [ + "Fantasy", + "Drama", + "Crime" + ], + "releaseDate": "2018-09-27", + "releaseYear": "2018", + "originalLanguage": "sv", + "voteAverage": 6.694, + "voteCount": 889, + "popularity": 7.3305 + }, + { + "id": 41317, + "title": "Caravans", + "originalTitle": "Caravans", + "overview": "This epic adventure-drama based on James Michener's best-selling novel concerns a young American embassy official who is sent into the Middle-Eastern desert to find the missing daughter of a US Senator. The young woman has left her husband, a Colonel in the Shadom - she was his number two wife - and has opted for the lifestyle of a nomadic tribe. When the diplomat locates the girl he joins the caravan and attempts to persuade the girl to return.", + "posterPath": "/bKX4NG5QMuyqDQTAcnpn83Tmokc.jpg", + "backdropPath": "/nJuLiTB7xdhXux827Smxmg2cRGU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18, + 10749 + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "Romance" + ], + "releaseDate": "1978-11-02", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 17, + "popularity": 7.3304 + }, + { + "id": 4286, + "title": "The Innocent", + "originalTitle": "L'innocente", + "overview": "Tullio Hermil is a chauvinist aristocrat who flaunts his mistress to his wife, but when he believes she has been unfaithful he becomes enamored of her again.", + "posterPath": "/90WVQLoRRW0n4GObgtlYcr9xRp0.jpg", + "backdropPath": "/j1R4wGpgfgY219Z7cDDZQJOM6TI.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1976-05-18", + "releaseYear": "1976", + "originalLanguage": "it", + "voteAverage": 6.8, + "voteCount": 115, + "popularity": 7.3304 + }, + { + "id": 1262299, + "title": "The Apocalypse of St John", + "originalTitle": "El Apocalipsis de san Juan", + "overview": "Embark on an epic journey through time and faith with 'The Apocalypse of Saint John.' Join the Apostle John in a stunning visual narrative that unravels the visions of the End Times. Experience each vision like never before, with striking visual effects and epic scenes that immerse you in the apocalyptic narrative.", + "posterPath": "/zzXU586n4uDBgMtVMPPQW7UJwu8.jpg", + "backdropPath": "/8lreZPhAuNjGmqukZWzY9sORmyl.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 36 + ], + "genres": [ + "Documentary", + "History" + ], + "releaseDate": "2024-10-07", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 8.4, + "voteCount": 60, + "popularity": 7.3299 + }, + { + "id": 84155, + "title": "Pretty Cure All Stars DX3: Deliver the Future! The Rainbow-Colored Flower That Connects the World", + "originalTitle": "映画 プリキュアオールスターズDX3 未来にとどけ!世界をつなぐ☆虹色の花", + "overview": "Precure All Stars Movie DX3: Deliver The Future! The Rainbow-Colored Flower That Connects The World is the third movie in the series, released on March 19, 2011, starring all the Cures from the previous series, including those introduced in Suite PreCure, as well as various villains featured in previous Pretty Cure movies. The theatrical release was edited in parts as a result of the 2011 Sendai earthquake and tsunami which occurred before the movie was due to be released.", + "posterPath": "/bYbdoDoJJuMX1onDdpfzKH8ZvJ.jpg", + "backdropPath": "/nDJ8wjLaA7y6fmuI0u4Rxx6STvZ.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14, + 35, + 12 + ], + "genres": [ + "Animation", + "Action", + "Fantasy", + "Comedy", + "Adventure" + ], + "releaseDate": "2011-03-19", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 12, + "popularity": 7.3299 + }, + { + "id": 1058623, + "title": "The Stroll", + "originalTitle": "The Stroll", + "overview": "The history of New York’s Meatpacking District, told from the perspective of transgender sex workers who lived and worked there. Filmmaker Kristen Lovell, who walked “The Stroll” for a decade, reunites her community to recount the violence, policing, homelessness, and gentrification they overcame to build a movement for transgender rights.", + "posterPath": "/xe097R7cR5umC1k9srZDCYc7Cv7.jpg", + "backdropPath": "/fxPx5qTsNQQMR9RdNJq4YvrXEWS.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2023-01-23", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 20, + "popularity": 7.3294 + }, + { + "id": 353429, + "title": "Jaanwar", + "originalTitle": "Jaanwar", + "overview": "Sultan (Shakti Kapoor) adopted an orphan and named him Badshah (Akshay Kumar). Badshah grows up to be a criminal and his life was made difficult by Inspector Pradhan (Ashish Vidyarthi). Badshah's sidekick is Abdul (Ashutosh Rana). The only hope in Badshah's life is Sapna (Karisma Kapoor), whom he incidentally met. But circumstances lead Badshah to commit murder in public. During this experience, a child clangs to him and he took the child to Sapna. Before he could explain anything, Pradhan gets there and Badshah had to escape. He changed his name to Babu Lohar and becomes a blacksmith and loving father, to give the child a good future. However, after 7 years, he sees Abdul and Sultan again. Pradhan is still after him. When the child's parents find out about him, they ask Babu to return their child. Will he let the child go? Will the child go with his parents?", + "posterPath": "/hAdnoPTsd1uWXKtKNzHzhijg6j.jpg", + "backdropPath": "/5qu3Q3FcfiI59ZBo4Fddk8nchds.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "1999-12-24", + "releaseYear": "1999", + "originalLanguage": "hi", + "voteAverage": 6.3, + "voteCount": 16, + "popularity": 7.3289 + }, + { + "id": 1147710, + "title": "Hijack 1971", + "originalTitle": "하이재킹", + "overview": "Pilots Tae-in and Gyu-sik are set to fly to Gimpo. Under the guidance of flight attendant Ok-soon, passengers are busy boarding. However, shortly after takeoff, a homemade bomb explodes, turning the cabin into chaos.", + "posterPath": "/68jNkFi61MQjrJEqj2up5wZ4w5R.jpg", + "backdropPath": "/hQ9grQ2RjHS3X7crItJqhoGvUPm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2024-06-21", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 6.6, + "voteCount": 127, + "popularity": 7.3288 + }, + { + "id": 137370, + "title": "Pauline détective", + "originalTitle": "Pauline détective", + "overview": "After she has been dumped by her boyfriend, Pauline allows her sister to take her to a palace on the Italian Riviera. Instead of savouring the delights of a carefree existence, Pauline prefers to take on the role of an amateur sleuth, convinced that a crime has been committed in the environs. She ropes a handsome lifeguard into her investigation...", + "posterPath": "/airIUkhjmvB4FI70LfKtbcODVR3.jpg", + "backdropPath": "/vCbFBv49aISv8mwfW6Or7dToUVM.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-10-01", + "releaseYear": "2012", + "originalLanguage": "fr", + "voteAverage": 5.6, + "voteCount": 67, + "popularity": 7.3272 + }, + { + "id": 471856, + "title": "Non-Fiction", + "originalTitle": "Doubles vies", + "overview": "Alain, a successful Parisian publisher struggling to adapt to the digital revolution, has major doubts about the new manuscript of Léonard, one of his long-time authors — another work of auto-fiction recycling his love affair with a minor celebrity. Selena, Alain’s wife, a famous stage actress, is of the opposite opinion.", + "posterPath": "/mlic9fFnAsJcS5xIFyVhMtYCVU5.jpg", + "backdropPath": "/96FSuNGiuHAJnDsxlVExafH6LZy.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2018-10-11", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 5.412, + "voteCount": 243, + "popularity": 7.3269 + }, + { + "id": 9991, + "title": "Mean Machine", + "originalTitle": "Mean Machine", + "overview": "Disgraced ex-England football captain, Danny 'Mean Machine' Meehan, is thrown in jail for assaulting two police officers. He keeps his head down and has the opportunity to forget everything and change the lives of the prisoners. When these prisoners have the chance to put one over the evil guards during a prison football match, Danny takes the lead.", + "posterPath": "/ripTQsmWQJyccK6zB1dajSY3olv.jpg", + "backdropPath": "/lXwvQ7JEHm5kaHPVm7QR4mAnOkN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2001-12-26", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.246, + "voteCount": 603, + "popularity": 7.3265 + }, + { + "id": 131634, + "title": "The Hunger Games: Mockingjay - Part 2", + "originalTitle": "The Hunger Games: Mockingjay - Part 2", + "overview": "As the war between the Capitol and the districts reaches its peak, Katniss Everdeen embarks on a perilous mission to liberate Panem and confront President Snow. Joined by a team of trusted allies, she navigates deadly traps, shifting loyalties, and the heavy cost of rebellion, determined to bring freedom to her people and end the Hunger Games once and for all.", + "posterPath": "/lImKHDfExAulp16grYm8zD5eONE.jpg", + "backdropPath": "/qVgLMRVNB5bHU0inmRa0ueShacN.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2015-11-18", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 13042, + "popularity": 7.325 + }, + { + "id": 408381, + "title": "Monolith", + "originalTitle": "Monolith", + "overview": "A mother and her son plan a surprise visit to Los Angeles to see her husband/his father. Halfway there they get into a terrible accident in the middle of nowhere and now must fight to survive.", + "posterPath": "/gyI1M8toCUr6xlVnVqXOdATg9gY.jpg", + "backdropPath": "/iY5y6Cj5AMUKqeNdroJayIeZSzY.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2016-05-12", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.346, + "voteCount": 377, + "popularity": 7.3244 + }, + { + "id": 83542, + "title": "Cloud Atlas", + "originalTitle": "Cloud Atlas", + "overview": "A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.", + "posterPath": "/8naVv2Xu3rWI5JKHz0vCujx6GaJ.jpg", + "backdropPath": "/sFDntG0Z0Wjrsz26TVptfs5OSLT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878 + ], + "genres": [ + "Drama", + "Science Fiction" + ], + "releaseDate": "2012-10-26", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.889, + "voteCount": 7325, + "popularity": 7.3241 + }, + { + "id": 48254, + "title": "Ovosodo", + "originalTitle": "Ovosodo", + "overview": "From childhood to fatherhood, Piero learns things the hard way while growing up in a working-class neighborhood of Livorno.", + "posterPath": "/lV5uNrculiODLGqzWsP7uV3EUPm.jpg", + "backdropPath": "/dWNWXJJg1bW3PM2xXyIv6AOcyCn.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1997-09-12", + "releaseYear": "1997", + "originalLanguage": "it", + "voteAverage": 7.211, + "voteCount": 466, + "popularity": 7.3232 + }, + { + "id": 28800, + "title": "Transformations", + "originalTitle": "Transformations", + "overview": "Wolfgang is traveling in outer space when a monster, which he sees as a beautiful woman, appears in his spaceship and makes love with him. Then the ship is forced to land on a planet which is a penal colony. Here he meets Miranda who falls in love with him. A group of prisoners uses him and his spaceship to fly away from the planet. But the monster which is by now inside Wolfgang arouses and only Miranda's love can save him.", + "posterPath": "/mikYbyRLbyr2hI9hpk4xTC51aWp.jpg", + "backdropPath": "/5eBr3gMPRPRzEteYtGAggnkcO3E.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27 + ], + "genres": [ + "Science Fiction", + "Horror" + ], + "releaseDate": "1988-09-02", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 3.917, + "voteCount": 18, + "popularity": 7.3213 + }, + { + "id": 1374534, + "title": "Almost Cops", + "originalTitle": "Bad Boa's", + "overview": "When an overeager community officer and a reckless ex-detective are forced to team up, plenty of chaos ensues on the streets of Rotterdam.", + "posterPath": "/7bcndiaTgu1Kj5a6qyCmsWYdtI.jpg", + "backdropPath": "/9l6bcHNFLR2fcCBSPzEeqxiQhwU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 9648 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Mystery" + ], + "releaseDate": "2025-07-10", + "releaseYear": "2025", + "originalLanguage": "nl", + "voteAverage": 6, + "voteCount": 160, + "popularity": 7.3211 + }, + { + "id": 42247, + "title": "Treasure Raiders", + "originalTitle": "Treasure Raiders", + "overview": "Michael, an American professor teaching history at Moscow University, finances his passion for treasure hunting with competitive street racing. His racing nemesis Wolf becomes his ally as they both embark on a quest to search for a famous ancient Russian treasure.", + "posterPath": "/uHkLSa8DLigGhVPKmVmtJYQpTWT.jpg", + "backdropPath": "/l7838ZJZvhoxqVvWnFihqZusGVS.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 28, + 53 + ], + "genres": [ + "Adventure", + "Drama", + "Action", + "Thriller" + ], + "releaseDate": "2007-04-20", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 3, + "voteCount": 20, + "popularity": 7.3208 + }, + { + "id": 72356, + "title": "Sade", + "originalTitle": "Sade", + "overview": "A man prepares himself to be transferred to a detention center and rest home where he will relive one more time the highlights of his youth.", + "posterPath": "/mcr6I5KtSUrR1peEZ2EFotW6Hhx.jpg", + "backdropPath": "/8iD2S2Y5HBRscKVffIR7sdTYf6k.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 80 + ], + "genres": [ + "History", + "Drama", + "Crime" + ], + "releaseDate": "2000-08-23", + "releaseYear": "2000", + "originalLanguage": "fr", + "voteAverage": 5.514, + "voteCount": 36, + "popularity": 7.3207 + }, + { + "id": 7484, + "title": "Open Season", + "originalTitle": "Open Season", + "overview": "Boog, a domesticated 900lb. Grizzly bear finds himself stranded in the woods 3 days before Open Season. Forced to rely on Elliot, a fast-talking mule deer, the two form an unlikely friendship and must quickly rally other forest animals if they are to form a rag-tag army against the hunters.", + "posterPath": "/w5Lctmkc1yah215Luxmci4djaiW.jpg", + "backdropPath": "/wttDKH1WRXGpebDVzrqnVSdh15u.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 35 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Comedy" + ], + "releaseDate": "2006-09-27", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 2902, + "popularity": 7.3204 + }, + { + "id": 49040, + "title": "The Bourne Legacy", + "originalTitle": "The Bourne Legacy", + "overview": "New CIA operative Aaron Cross experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne.", + "posterPath": "/1aExL5DTGHj25ZfIC3dDwS84RWi.jpg", + "backdropPath": "/akNBILfG0vh7WhuzjA1bXfrgpYI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2012-08-08", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.239, + "voteCount": 5932, + "popularity": 7.3187 + }, + { + "id": 296367, + "title": "Morning Star", + "originalTitle": "Morning Star", + "overview": "In time of war, a man must survive to make a journey to fulfill a promise made and discover the truth. After a terrible battle, a man sees his great friend perish, leaving him one request – that he visit the king, father of the deceased, to give him the news of his death. Tied promise on his deathbed friend, the warrior part for the meeting with the monarch, an old man and convalescent, who lost his only heir. The king demands that the warrior’s serve, but the man is tired of war and want a place to live in peace. When the warrior goes in search of tranquility, his path crosses that of a beautiful young woman, chased by soldiers. He saves her and discovers she is a witch. With the Inquisition coming to the kingdom and a new love in his chest, the warrior must regain their weapons to prevent more blood from the people he loves spill.", + "posterPath": "/2lm2kaUZaUz1TyghT0oydoc4bJZ.jpg", + "backdropPath": "/krXzC9HNZM5Z6tBCecP9mbqMpz3.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 12 + ], + "genres": [ + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2014-04-14", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 3.6, + "voteCount": 19, + "popularity": 7.3161 + }, + { + "id": 44835, + "title": "Hesher", + "originalTitle": "Hesher", + "overview": "A young boy has lost his mother and is losing touch with his father and the world around him. Then he meets Hesher who manages to make his life even more chaotic.", + "posterPath": "/dD03azf3h1hUHVzVkkqJs96Kkay.jpg", + "backdropPath": "/1naAvovOZDe21QOvdJ4e6GnFqcs.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-01-22", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.799, + "voteCount": 716, + "popularity": 7.3158 + }, + { + "id": 1267, + "title": "Meet the Robinsons", + "originalTitle": "Meet the Robinsons", + "overview": "Lewis, a brilliant young inventor, is keen on creating a time machine to find his mother, who abandoned him in an orphanage. Things take a turn when he meets Wilbur Robinson and his family.", + "posterPath": "/naya0zF4kT401Sx15AtwB9vpcJr.jpg", + "backdropPath": "/jZbMhbhwaMrWosBh9dxLleWnMG8.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2007-03-23", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.929, + "voteCount": 3033, + "popularity": 7.3157 + }, + { + "id": 84981, + "title": "Francesco", + "originalTitle": "Francesco", + "overview": "The life of St. Francis of Assisi (1181-1226) as related by followers who gather after his death to tell stories so that Leone can record them: a privileged and virile youth, a prisoner of war, an heir who turns away from his father and gives all to the poor, a beggar for others, and an inspiration to friends who accept the Gospels' life of poverty.", + "posterPath": "/uhxxixmo3e6xkKn8IiF0U8yGOZH.jpg", + "backdropPath": "/tIZcNhg1ipg8a5GlwEMRMKQ4l8l.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "1989-03-22", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.452, + "voteCount": 52, + "popularity": 7.3154 + }, + { + "id": 284053, + "title": "Thor: Ragnarok", + "originalTitle": "Thor: Ragnarok", + "overview": "Thor is imprisoned on the other side of the universe and finds himself in a race against time to get back to Asgard to stop Ragnarok, the destruction of his home-world and the end of Asgardian civilization, at the hands of a powerful new threat, the ruthless Hela.", + "posterPath": "/rzRwTcFvttcN1ZpX2xv4j3tSdJu.jpg", + "backdropPath": "/6G2fLCVm9fiLyHvBrccq6GSe2ih.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2017-10-02", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.583, + "voteCount": 21537, + "popularity": 7.3147 + }, + { + "id": 508138, + "title": "Burn", + "originalTitle": "Burn", + "overview": "Lonely, unstable gas station attendant Melinda is tired of being overshadowed by her more confident, outgoing co-worker Sheila. When the gas station is held up at gunpoint by Billy, a desperate man in need of quick cash, Melinda finds an opportunity to make a connection with the robber, regardless of who gets hurt.", + "posterPath": "/ifSMo5x7SDXpettRt8TWY9EOquM.jpg", + "backdropPath": "/3C14xx4RteMksSUwgYfI52B8Iu6.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 28 + ], + "genres": [ + "Thriller", + "Crime", + "Action" + ], + "releaseDate": "2019-08-23", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.048, + "voteCount": 322, + "popularity": 7.3137 + }, + { + "id": 15250, + "title": "This Christmas", + "originalTitle": "This Christmas", + "overview": "This year Christmas with the Whitfields promises to be one they will never forget. All the siblings have come home for the first time in years and they've brought plenty of baggage with them. As the Christmas tree is trimmed and the lights are hung, secrets are revealed and family bonds are tested. As their lives converge, they join together and help each other discover the true meaning of family.", + "posterPath": "/dBuLAw4mRlO83LPA2s4zOlVesUe.jpg", + "backdropPath": "/qUTY0w0ZQ15siNdu3Nfa88T5gqV.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2007-11-27", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.528, + "voteCount": 137, + "popularity": 7.3114 + }, + { + "id": 13189, + "title": "A Christmas Carol", + "originalTitle": "A Christmas Carol", + "overview": "Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.", + "posterPath": "/m3T3iLdE6J5PrqvvP0XNHBvM2bm.jpg", + "backdropPath": "/1WQ4bHXzS7DpGppkS2PcpFvpY7T.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 10770, + 10751 + ], + "genres": [ + "Drama", + "Fantasy", + "TV Movie", + "Family" + ], + "releaseDate": "1984-10-09", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 393, + "popularity": 7.3112 + }, + { + "id": 1234905, + "title": "Bogieville", + "originalTitle": "Bogieville", + "overview": "A young couple on the run come across a derelict trailer park called Bogieville. Convinced to stay by the sinister caretaker, they soon learn that he is a guardian to the Bogievillians, a pack of vampires.", + "posterPath": "/chav4r3mbF8ETV9589obVym6SVs.jpg", + "backdropPath": "/fKUPs5xcBMWy5VCZkYQjetQu42X.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-08-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 12, + "popularity": 7.3104 + }, + { + "id": 47971, + "title": "xXx: Return of Xander Cage", + "originalTitle": "xXx: Return of Xander Cage", + "overview": "Xander Cage is left for dead after an incident, though he secretly returns to action for a new, tough assignment with his handler Augustus Gibbons.", + "posterPath": "/hba8zREJpP1AYhaXgb2oJLQeO0K.jpg", + "backdropPath": "/cFcXilLbI7yjPIYB58AZiOyUnoh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 80 + ], + "genres": [ + "Action", + "Adventure", + "Crime" + ], + "releaseDate": "2017-01-13", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.135, + "voteCount": 9127, + "popularity": 7.3097 + }, + { + "id": 11845, + "title": "Intimacy", + "originalTitle": "Intimacy", + "overview": "Failed musician Jay abandoned his family and now earns a living as head bartender in a trendy London pub. Every Wednesday afternoon, a woman comes to his house for graphic, almost wordless, sex. One day, Jay follows her and learns about her. This eventually disrupts their relationship.", + "posterPath": "/aiPhBVo2eNhuPw5Pezx4BHagvUx.jpg", + "backdropPath": "/qoxriJ6n1qxvG1bBMPnsZBHKGco.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 14 + ], + "genres": [ + "Romance", + "Drama", + "Fantasy" + ], + "releaseDate": "2001-01-20", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 540, + "popularity": 7.3084 + }, + { + "id": 797838, + "title": "Firebird", + "originalTitle": "Firebird", + "overview": "At the height of the Cold War, a troubled soldier forms a forbidden love triangle with a daring fighter pilot and his female comrade amid the dangerous surroundings of a Soviet Air Force Base.", + "posterPath": "/uECWNRjCEwewHBjt0leyZiAyiXb.jpg", + "backdropPath": "/rJFerFqrKx6jL2i9TjbMNAx5ptd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10752 + ], + "genres": [ + "Drama", + "Romance", + "War" + ], + "releaseDate": "2021-10-29", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.306, + "voteCount": 211, + "popularity": 7.3077 + }, + { + "id": 804370, + "title": "Arco", + "originalTitle": "Arco", + "overview": "Arco, 12 years old, lives in a far future. During his first flight in his rainbow suit, he loses control and falls in the past. Iris, a little girl his age from 2075, saw him fall. She rescues him and tries by all means to send him back to his era.", + "posterPath": "/sV5B8qn4HhIPCKNFighAVMjKBtR.jpg", + "backdropPath": "/jFKbhV0uFZuA3K73UJIq1dzisCi.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 878, + 14 + ], + "genres": [ + "Animation", + "Adventure", + "Science Fiction", + "Fantasy" + ], + "releaseDate": "2025-10-22", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 8.2, + "voteCount": 45, + "popularity": 7.3057 + }, + { + "id": 591102, + "title": "Comali", + "originalTitle": "கோமாளி", + "overview": "A youngster in his mid-30s goes through a series of struggles after coming to terms with the fact that he was in coma for 16 years.", + "posterPath": "/AvtepCkbx7772EOGn7na3ItSRq8.jpg", + "backdropPath": "/qCwJYb225SnXUt2bdPcC8QwD9Yz.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-08-14", + "releaseYear": "2019", + "originalLanguage": "ta", + "voteAverage": 6.138, + "voteCount": 29, + "popularity": 7.3057 + }, + { + "id": 4248, + "title": "Scary Movie 2", + "originalTitle": "Scary Movie 2", + "overview": "While the original parodied slasher flicks like Scream, Keenen Ivory Wayans's sequel to Scary Movie takes comedic aim at haunted house movies. A group of students visit a mansion called \"Hell House,\" and murderous high jinks ensue.", + "posterPath": "/7Eb1JWK0Cb0rbfsYjwfc9g0PbQH.jpg", + "backdropPath": "/cjSB3ZjaMpaa9oHFyeYha3KG0mp.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2001-07-04", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 4922, + "popularity": 7.3057 + }, + { + "id": 5721, + "title": "Vixen!", + "originalTitle": "Vixen!", + "overview": "Vixen lives in a Canadian mountain resort with her naive pilot husband. While he's away flying in tourists, she gets it on with practically everybody including a husband and his wife, and even her biker brother. She is openly racist, and she makes it clear that she won't do the wild thing with her brother's biker friend, who is black.", + "posterPath": "/9KMZWDA3xTrlgrScqdMisINQmsh.jpg", + "backdropPath": "/uLu8zcwmR7qjkkF3zkScm6Sjh2v.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1968-10-15", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 97, + "popularity": 7.3052 + }, + { + "id": 1592, + "title": "Primal Fear", + "originalTitle": "Primal Fear", + "overview": "Defense attorney Martin Vail takes on jobs for money and prestige rather than any sense of the greater good. His latest case involves an altar boy, accused of brutally murdering the archbishop of Chicago. Vail finds himself up against his ex-pupil and ex-lover, but as the case progresses and the Church's dark secrets are revealed, Vail finds that what appeared a simple case takes on a darker, more dangerous aspect.", + "posterPath": "/qJf2TzE8nRTFbFMPJNW6c8mI0KU.jpg", + "backdropPath": "/a4f6y7gbMmMLrwzJZrwmcNmEBM1.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 9648, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "1996-03-06", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.656, + "voteCount": 3702, + "popularity": 7.3046 + }, + { + "id": 72444, + "title": "Human Experiments", + "originalTitle": "Human Experiments", + "overview": "A demented prison doctor performs gruesome shock therapy experiments on inmates.", + "posterPath": "/rizflW3YRMOTKkiYnwjUAnEGjne.jpg", + "backdropPath": "/A0v8VDxY1RZ28gL6rnDYEOY0DdH.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 80 + ], + "genres": [ + "Horror", + "Crime" + ], + "releaseDate": "1979-10-19", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 4.238, + "voteCount": 21, + "popularity": 7.3039 + }, + { + "id": 38043, + "title": "Shag", + "originalTitle": "Shag", + "overview": "Summer of 1963. Carson is getting married to her boyfriend so her friends Melaina, Pudge and Luanne take her to Myrtle Beach for one last irresponsible weekend.", + "posterPath": "/gIxA8FkPBk0wJLkF4znqBdWD8HX.jpg", + "backdropPath": "/xUMzKSiqm14Z9GPmIaNcbrnGYVS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1989-04-14", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.203, + "voteCount": 59, + "popularity": 7.3034 + }, + { + "id": 553585, + "title": "Patrick", + "originalTitle": "De Patrick", + "overview": "Patrick is the handyman on his father's naturist campsite. The remaining time he dedicates to his hobby, designing and creating wooden furniture. When Patrick loses his campsite hammer, his quest to retrieve it takes him to the farthest corners of the camping grounds.", + "posterPath": "/vbkUg7wZTwlVqMTb7upceQ6oBFn.jpg", + "backdropPath": "/7MCyt1pFP15saHjDzgGlPuljiYB.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2019-07-01", + "releaseYear": "2019", + "originalLanguage": "nl", + "voteAverage": 6.638, + "voteCount": 47, + "popularity": 7.3028 + }, + { + "id": 1034947, + "title": "Street Flow 2", + "originalTitle": "Banlieusards 2", + "overview": "Struggling to overcome cycles of betrayal, revenge and violence, the Traoré brothers continue to fight for a brighter future in a seedy Paris suburb.", + "posterPath": "/96I4OKRZICinYFCAvOnXznaCQcm.jpg", + "backdropPath": "/POvvuyuL2NZzsT8eIigEPOzGkN.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-09-27", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.172, + "voteCount": 88, + "popularity": 7.3024 + }, + { + "id": 15915, + "title": "The Pornographer", + "originalTitle": "Le Pornographe", + "overview": "A former porn director, who once elevated the genre with 1960s counter-culture ideals, returns to filmmaking after 20 years, clashing with his producer's hard-core vision. Estranged from his son over the family business, they begin reconnecting as the son embraces political activism, while the director seeks personal renewal.", + "posterPath": "/vY9UWnAu30KoNQtcTnRcEJjSI6t.jpg", + "backdropPath": "/tdBOawrdkMjaPYF73gkWEWpOd1K.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-10-03", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 4.9, + "voteCount": 76, + "popularity": 7.3012 + }, + { + "id": 10166, + "title": "The Witches", + "originalTitle": "The Witches", + "overview": "A young boy named Luke and his grandmother go on vacation only to discover their hotel is hosting an international witch convention, where the Grand High Witch is unveiling her master plan to turn all children into mice. Will Luke fall victim to the witches' plot before he can stop them?", + "posterPath": "/mPYBjVkeHakkPGY7WaKyyNU4RWm.jpg", + "backdropPath": "/hehaK1jIuTOvRPGPccVivZcZ2Cb.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 10751, + 27 + ], + "genres": [ + "Fantasy", + "Family", + "Horror" + ], + "releaseDate": "1990-05-25", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.939, + "voteCount": 1328, + "popularity": 7.3009 + }, + { + "id": 73835, + "title": "The Paramedic", + "originalTitle": "Il Paramedico", + "overview": "At work, Mario Millio is the only male nurse not on strike. At home, his wife is more interested in calling the hot-line of a local TV-doctor. When Mario wins 15 million Lire in the lottery, he buys himself a new car and starts to live out his dreams in secret. All goes well until a criminal steals the car and Mario is blamed for the car thief's crimes", + "posterPath": "/i4Z1KvQ7UC4CiktHp6icTgm20hD.jpg", + "backdropPath": "/o4jSxqUxrVrocEX93GcB63POSYF.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1982-02-07", + "releaseYear": "1982", + "originalLanguage": "it", + "voteAverage": 4, + "voteCount": 14, + "popularity": 7.2994 + }, + { + "id": 943788, + "title": "From Black", + "originalTitle": "From Black", + "overview": "A young mother who's crushed by guilt and shame after the disappearance of her young son five years previously, is offered a bizarre opportunity to learn the truth and set things right. Is she willing to pay the terrifying price for a chance to hold her boy again?", + "posterPath": "/9DG2g1Gl1ENAxFONIxxb5FMH99f.jpg", + "backdropPath": "/mgYrvtsUosqKHwFyqQjMKU7w12D.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2023-03-15", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.192, + "voteCount": 60, + "popularity": 7.2985 + }, + { + "id": 1125510, + "title": "The Platform 2", + "originalTitle": "El hoyo 2", + "overview": "After a mysterious leader imposes his law in a brutal system of vertical cells, a new arrival battles against a dubious food distribution method.", + "posterPath": "/tvIpBg12IIA5Dr9Sjn38ygS1vQp.jpg", + "backdropPath": "/3m0j3hCS8kMAaP9El6Vy5Lqnyft.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27, + 53 + ], + "genres": [ + "Science Fiction", + "Horror", + "Thriller" + ], + "releaseDate": "2024-09-27", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 5.6, + "voteCount": 1327, + "popularity": 7.2969 + }, + { + "id": 1990, + "title": "Paranoid Park", + "originalTitle": "Paranoid Park", + "overview": "A teenage skateboarder becomes suspected of being connected with a security guard who suffered a brutal death in a skate park called \"Paranoid Park\".", + "posterPath": "/qdxQ8vZJoZuLqU9MXYW2vnRwhan.jpg", + "backdropPath": "/xRTTlWBks6IAmkehS2JjOtzdZXC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2007-07-12", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 573, + "popularity": 7.2947 + }, + { + "id": 468287, + "title": "Hannah", + "originalTitle": "Hannah", + "overview": "A woman grapples with the consequences of her husband's imprisonment.", + "posterPath": "/ceEP87OvIOlASy2PIiJjaFk9V6o.jpg", + "backdropPath": "/59PhOwQXvCMH3IJ74KsXlRo0OEd.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-01-18", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 5.602, + "voteCount": 54, + "popularity": 7.2938 + }, + { + "id": 9566, + "title": "The Fan", + "originalTitle": "The Fan", + "overview": "When the San Francisco Giants pay center-fielder, Bobby Rayburn $40 million to lead their team to the World Series, no one is happier or more supportive than #1 fan, Gil Renard. When Rayburn becomes mired in the worst slump of his career, the obsessed Renard decides to stop at nothing to help his idol regain his former glory—not even murder.", + "posterPath": "/lu7CjP8YES5dJMCFg5O9o9jCkjl.jpg", + "backdropPath": "/dISWllRkiQ1l5Nbn5JMZbz6RHoh.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 18 + ], + "genres": [ + "Thriller", + "Action", + "Drama" + ], + "releaseDate": "1996-08-15", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.004, + "voteCount": 825, + "popularity": 7.2932 + }, + { + "id": 479226, + "title": "The Purity of Vengeance", + "originalTitle": "Journal 64", + "overview": "Copenhagen, 2018. A frightening discovery is made in an old apartment. The subsequent investigation of Department Q leads them to an infamous institution for girls that was suddenly closed in the early sixties.", + "posterPath": "/uTdaeGpznkLfyhAzLlrdssD621R.jpg", + "backdropPath": "/9lOtDZY6oy6qUlYH78fJ27RMkLP.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 9648, + 18 + ], + "genres": [ + "Crime", + "Thriller", + "Mystery", + "Drama" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "da", + "voteAverage": 7.153, + "voteCount": 528, + "popularity": 7.2924 + }, + { + "id": 9475, + "title": "Scent of a Woman", + "originalTitle": "Scent of a Woman", + "overview": "Charlie Simms is a student at a private preparatory school who comes from a poor family. To earn the money for his flight home to Gresham, Oregon for Christmas, Charlie takes a job over Thanksgiving looking after retired U.S. Army officer Lieutenant Colonel Frank Slade, a cantankerous middle-aged man who lives with his niece and her family.", + "posterPath": "/4adI7IaveWb7EidYXfLb3MK3CgO.jpg", + "backdropPath": "/fa03pD2qYmms4ZMgAv7PMqfFiGO.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1992-12-23", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.777, + "voteCount": 3740, + "popularity": 7.2898 + }, + { + "id": 12719, + "title": "Flashback", + "originalTitle": "Flashback", + "overview": "A hippie radical, Huey Walker has been a fugitive for decades, accused of a crime that he may not have committed. Finally apprehended, Walker is escorted to trial by uptight 20-something FBI agent John Buckner. While the two seem to be polar opposites, it turns out that Buckner may have more in common with Walker than is initially apparent, a point that is driven home when the pair faces off against a sinister small-town sheriff.", + "posterPath": "/zHJbL26SdgeWbKFJVKNfEI4LJwS.jpg", + "backdropPath": "/fu8pdH9bV7ILcgoRqPiMOQB41Bx.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "1990-02-02", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.333, + "voteCount": 99, + "popularity": 7.2896 + }, + { + "id": 1895, + "title": "Star Wars: Episode III - Revenge of the Sith", + "originalTitle": "Star Wars: Episode III - Revenge of the Sith", + "overview": "The evil Darth Sidious enacts his final plan for unlimited power – and the heroic Jedi Anakin Skywalker must choose a side.", + "posterPath": "/xfSAoBEm9MNBjmlNcDYLvLSMlnq.jpg", + "backdropPath": "/jniabJVBSW3EqLlyhjxWCZjVkiE.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2005-05-17", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.456, + "voteCount": 14493, + "popularity": 7.2892 + }, + { + "id": 613349, + "title": "A Good Doctor", + "originalTitle": "Docteur ?", + "overview": "On Christmas eve, Serge is the only on-call emergency doctor available. Struck by a crippling back-ache, he gets help from a pizza delivery boy who will need to step in the doctor's shoes.", + "posterPath": "/7wx7VMj4eoJUXR4ZVdYVDzFStNd.jpg", + "backdropPath": "/70zanWt7TxBCZJCdMYhCMFDdGQr.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-12-11", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.5, + "voteCount": 325, + "popularity": 7.2887 + }, + { + "id": 440, + "title": "Aliens vs Predator: Requiem", + "originalTitle": "Aliens vs Predator: Requiem", + "overview": "After a horrifying PredAlien crash-lands near a small Colorado town, killing everyone it encounters and producing countless Alien offspring, a lone Predator arrives to \"clean up\" the infestation.", + "posterPath": "/5iTwPDNtvK6ZZF607BHBbU3HO0B.jpg", + "backdropPath": "/jXntuh47VtKLeoyBQ268rv24Igw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53, + 27 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller", + "Horror" + ], + "releaseDate": "2007-12-25", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.18, + "voteCount": 3164, + "popularity": 7.2886 + }, + { + "id": 51010, + "title": "Sweet Rush", + "originalTitle": "Tatarak", + "overview": "As an aging woman married to a workaholic doctor by chance meets a young man who makes her feel young again. All of this is films by a director making a film about her which cuts in and out of the on camera and off camera drama.", + "posterPath": "/fvVwpaA3yJ1UvZsmAo2H6zUoQYY.jpg", + "backdropPath": "/g5q2wZBTMD4i2PnhD2yzjyZ0xEM.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-04-23", + "releaseYear": "2009", + "originalLanguage": "pl", + "voteAverage": 6.4, + "voteCount": 29, + "popularity": 7.2883 + }, + { + "id": 744, + "title": "Top Gun", + "originalTitle": "Top Gun", + "overview": "For Lieutenant Pete 'Maverick' Mitchell and his friend and co-pilot Nick 'Goose' Bradshaw, being accepted into an elite training school for fighter pilots is a dream come true. But a tragedy, as well as personal demons, will threaten Pete's dreams of becoming an ace pilot.", + "posterPath": "/xUuHj3CgmZQ9P2cMaqQs4J0d4Zc.jpg", + "backdropPath": "/jILeJ60zPpIjjJHGSmIeY4eO30t.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "1986-05-16", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.06, + "voteCount": 9201, + "popularity": 7.2883 + }, + { + "id": 46705, + "title": "Blue Valentine", + "originalTitle": "Blue Valentine", + "overview": "Dean and Cindy live a quiet life in a modest neighborhood. They appear to have the world at their feet at the outset of the relationship. However, his lack of ambition and her retreat into self-absorption cause potentially irreversible cracks in their marriage.", + "posterPath": "/dc8BdKnDY5Iy28KzUGtHIXuqqFK.jpg", + "backdropPath": "/sZRErzShw9N77TEcxX3DBpDPmCc.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2010-12-26", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.956, + "voteCount": 3416, + "popularity": 7.2873 + }, + { + "id": 107775, + "title": "The Orheim Company", + "originalTitle": "Kompani Orheim", + "overview": "A strong, human tale about a boy growing up with an alcoholic father, but also an energetic story about teenage lust, pain and passion – about liberation and redemption.", + "posterPath": "/akkLJkhKLvZMGsyxx4GHi3v8q9p.jpg", + "backdropPath": "/bIQoW9P0hjm72cfFFzCXsBsCASf.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-03-02", + "releaseYear": "2012", + "originalLanguage": "no", + "voteAverage": 6.543, + "voteCount": 23, + "popularity": 7.2862 + }, + { + "id": 179150, + "title": "Reality", + "originalTitle": "Réalité", + "overview": "A wanna-be director is given 48 hours by a producer to find the best groan of pain, worthy of an Oscar, as the only condition to back his film.", + "posterPath": "/l6aty0lfqsTefZ5xduwT7D44N1q.jpg", + "backdropPath": "/dsqlBtXS5DJBrFYTIYJuSD5YatF.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-02-18", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 7.078, + "voteCount": 535, + "popularity": 7.286 + }, + { + "id": 814776, + "title": "Bottoms", + "originalTitle": "Bottoms", + "overview": "Unpopular best friends PJ and Josie start a high school self-defense club to meet girls and lose their virginity. They soon find themselves in over their heads when the most popular students start beating each other up in the name of self-defense.", + "posterPath": "/jeyTQrNEpyE1LZIgVlswYh3sc34.jpg", + "backdropPath": "/2sxiysM6O0FAxeR2CEIeKSv9IkA.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-08-25", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.752, + "voteCount": 763, + "popularity": 7.2854 + }, + { + "id": 2636, + "title": "The Specialist", + "originalTitle": "The Specialist", + "overview": "May Munro is a woman obsessed with getting revenge on the people who murdered her parents when she was still a girl. She hires Ray Quick, a retired explosives expert, to kill her parents' killers. When Ned Trent, embittered ex-partner of Quick's, is assigned to protect one of Quick's potential victims, a deadly game of cat and mouse ensues.", + "posterPath": "/9CVAjtkSaFs9FyddGfThj11ZuQq.jpg", + "backdropPath": "/fvBshQMwOnYZdUXySGMdT6LiqsI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1994-10-07", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 1378, + "popularity": 7.2846 + }, + { + "id": 9487, + "title": "A Bug's Life", + "originalTitle": "A Bug's Life", + "overview": "On behalf of \"oppressed bugs everywhere,\" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.", + "posterPath": "/Ah3J9OJVc2CNCuH2zMydXy9fmIC.jpg", + "backdropPath": "/pWd09ohdwOSNF4IWG8a25qORc2O.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 12, + 35 + ], + "genres": [ + "Family", + "Animation", + "Adventure", + "Comedy" + ], + "releaseDate": "1998-11-25", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 9526, + "popularity": 7.283 + }, + { + "id": 647245, + "title": "Reagan", + "originalTitle": "Reagan", + "overview": "Told through the voice of former KGB agent Viktor Petrovich, whose life becomes inextricably linked with Ronald Reagan's when Reagan first caught the Soviets’ attention as an actor in Hollywood, Reagan overcomes the odds to become the 40th president of the United States.", + "posterPath": "/o21NB4f5fNk1dtrRlyAmA0C0cb3.jpg", + "backdropPath": "/vhMJZYFNRJ7v2L0lrYT8lYAs05z.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2024-08-29", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.325, + "voteCount": 103, + "popularity": 7.2812 + }, + { + "id": 961, + "title": "The General", + "originalTitle": "The General", + "overview": "During America’s Civil War, Union spies steal engineer Johnny Gray's beloved locomotive, 'The General'—with Johnnie's lady love aboard an attached boxcar—and he single-handedly must do all in his power to both get The General back and to rescue Annabelle.", + "posterPath": "/nIp4gIXogCjfB1QABNsWwa9gSca.jpg", + "backdropPath": "/dYocWQoWk3Y6vBa0pGc0OQ8GLqn.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 10752, + 10749 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "War", + "Romance" + ], + "releaseDate": "1926-12-25", + "releaseYear": "1926", + "originalLanguage": "en", + "voteAverage": 7.93, + "voteCount": 1351, + "popularity": 7.2801 + }, + { + "id": 49018, + "title": "Insidious", + "originalTitle": "Insidious", + "overview": "A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.", + "posterPath": "/1egpmVXuXed58TH2UOnX1nATTrf.jpg", + "backdropPath": "/yZP6GyrgzdpjH1AxPHlb8ACLkiA.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2011-03-31", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.942, + "voteCount": 7118, + "popularity": 7.2798 + }, + { + "id": 1297763, + "title": "Batman Ninja vs. Yakuza League", + "originalTitle": "ニンジャバットマン対ヤクザリーグ", + "overview": "The Batman family has returned to the present to discover that Japan has disappeared, and a giant island - Hinomoto - is now in the sky over Gotham City. At the top sit the Yakuza, a group of superpowered individuals who reign without honor or humanity and look suspiciously like the Justice League. Now, it’s up to Batman and his allies to save Gotham!", + "posterPath": "/sVVT6GYFErVv0Lcc9NvqCu0iOxO.jpg", + "backdropPath": "/e807jDKiFcntZS32ze88X6I96OD.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction" + ], + "releaseDate": "2025-03-17", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 209, + "popularity": 7.2795 + }, + { + "id": 599975, + "title": "Countdown", + "originalTitle": "Countdown", + "overview": "A young nurse downloads an app that tells her she only has three days to live. With time ticking away and a mysterious figure haunting her, she must find a way to save her life before time runs out.", + "posterPath": "/qCDPKUMX5xrxxQY8XhGVCKO3fks.jpg", + "backdropPath": "/vb9luxoqiCogWxyeZoveTANa8P6.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2019-10-24", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.215, + "voteCount": 2231, + "popularity": 7.2792 + }, + { + "id": 233, + "title": "The Wanderers", + "originalTitle": "The Wanderers", + "overview": "The streets of the Bronx are owned by '60s youth gangs where the joy and pain of adolescence is lived. Philip Kaufman tells his take on the novel by Richard Price about the history of the Italian-American gang ‘The Wanderers.’", + "posterPath": "/p8vxJHlCbmmnUX3p8bEAzXZfcIT.jpg", + "backdropPath": "/c4hWk3pBYlpukYNFeEq29wpxAO1.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1979-07-13", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 210, + "popularity": 7.2791 + }, + { + "id": 11466, + "title": "Slim Susie", + "originalTitle": "Smala Sussie", + "overview": "When Erik, a Stockholm urbanite, learns that his beauty-queen sister, Susie, is missing, he goes to their country roots to look for her. But after talking to the eccentric locals -- including a shy video store clerk and a corrupt police officer -- Erik finds a woman who is not at all like the girl he left behind. Award-winning director Ulf Malmros helms this black comedy infused with hipster flair.", + "posterPath": "/4ND3jFeBkQnKzQLOPxVs30VdPj2.jpg", + "backdropPath": "/1pySFXXpL9qlSgP6A6NL5lsHMeu.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2003-10-03", + "releaseYear": "2003", + "originalLanguage": "sv", + "voteAverage": 6.714, + "voteCount": 85, + "popularity": 7.2785 + }, + { + "id": 462883, + "title": "Woody Woodpecker", + "originalTitle": "Woody Woodpecker", + "overview": "Woody Woodpecker enters a turf war with a big city lawyer wanting to tear down his home in an effort to build a house to flip.", + "posterPath": "/cSo4vsBdzTNJG24VYgAkGgeYkAs.jpg", + "backdropPath": "/xG1rDofqghJBN9N0Pbko1q1WOxY.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 16 + ], + "genres": [ + "Comedy", + "Family", + "Animation" + ], + "releaseDate": "2017-10-05", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.574, + "voteCount": 752, + "popularity": 7.2773 + }, + { + "id": 400148, + "title": "Owl You Need Is Love", + "originalTitle": "Hibou", + "overview": "Rocky is a discreet man. He is happy but exists in anyone's eyes. One evening in returning home, he discovered an owl \"Grand Duke \"on his couch that fixed intently. He understands that he must act. The next day arrived his office, he takes an owl costume without that nobody pays any attention. Until the day he encounters a panda ...", + "posterPath": "/63we6pJi9ABlIcuaJ95iAAgVj6g.jpg", + "backdropPath": "/15kAXkwqwBX6lKvi9agt0ONkVy0.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2016-07-06", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.6, + "voteCount": 25, + "popularity": 7.2773 + }, + { + "id": 426253, + "title": "The Lovers", + "originalTitle": "The Lovers", + "overview": "The separation of a long married couple goes awry when they fall for each other again.", + "posterPath": "/tRWza39fHyef12FvScIBduaHMi6.jpg", + "backdropPath": "/3PezXrFmOQhGkDcsmRj9nlwKgFn.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2017-05-05", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.409, + "voteCount": 93, + "popularity": 7.276 + }, + { + "id": 10673, + "title": "Wall Street", + "originalTitle": "Wall Street", + "overview": "A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider, whom takes the youth under his wing.", + "posterPath": "/2tQYq9ntzn2dEwDIGLBSipYPenv.jpg", + "backdropPath": "/v46Uq29FXcl4huvu1Nh7tJ5qAjZ.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1987-12-10", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.164, + "voteCount": 2172, + "popularity": 7.2752 + }, + { + "id": 11815, + "title": "The Fly", + "originalTitle": "The Fly", + "overview": "Industrialist François Delambre is called late at night by his sister-in-law, Helene, who tells him that she has just killed her husband. Reluctant at first, she eventually explains to the police that he invented a matter transportation apparatus and, while experimenting on himself, a fly entered the chamber.", + "posterPath": "/kXdBcDh2EbgSIf4Oo1dxKapZM2f.jpg", + "backdropPath": "/wpz62HFxCGaMX6jImELAspwqjT1.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27, + 18 + ], + "genres": [ + "Science Fiction", + "Horror", + "Drama" + ], + "releaseDate": "1958-07-16", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 582, + "popularity": 7.2718 + }, + { + "id": 10445, + "title": "Shadowlands", + "originalTitle": "Shadowlands", + "overview": "C.S. Lewis, a world-renowned writer and professor, leads a passionless life until he meets spirited poet Joy Gresham.", + "posterPath": "/5jTWY1M2O4Zhid4rLOpftzazRGn.jpg", + "backdropPath": "/nna1FWMle9WUd0lg3qJWog1NBbe.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1993-12-25", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.879, + "voteCount": 293, + "popularity": 7.2718 + }, + { + "id": 38978, + "title": "Ned Kelly", + "originalTitle": "Ned Kelly", + "overview": "Unable to support his family in the Australian outback, a man turns to stealing horses in order to make money. He gets more deeply drawn into the outlaw life, and eventually becomes involved in murders. Based on the life of famed 19th-century Australian outlaw Ned Kelly.", + "posterPath": "/dnOunMa3i3L915F5eBxJvjkMCYS.jpg", + "backdropPath": "/6umXaC6mx34HDkKkZAd50dD8rgp.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 37 + ], + "genres": [ + "Drama", + "Action", + "Western" + ], + "releaseDate": "1970-06-10", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 4.72, + "voteCount": 25, + "popularity": 7.2712 + }, + { + "id": 13805, + "title": "Disaster Movie", + "originalTitle": "Disaster Movie", + "overview": "Over the course of one evening, an unsuspecting group of twenty-somethings find themselves bombarded by a series of natural disasters and catastrophic events.", + "posterPath": "/3J8XKUfhJiNzwobUZVtizXYPe8b.jpg", + "backdropPath": "/5V6jAFS0Q49SI07qjyFRMYlbfR9.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878 + ], + "genres": [ + "Comedy", + "Science Fiction" + ], + "releaseDate": "2008-08-29", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 3.2, + "voteCount": 1092, + "popularity": 7.2711 + }, + { + "id": 9509, + "title": "Man on Fire", + "originalTitle": "Man on Fire", + "overview": "Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.", + "posterPath": "/grCGLCcTHv9TChibzOwzUpykcjB.jpg", + "backdropPath": "/6c7j7MQCczzNVvcrNEiXbs8Kt2p.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2004-04-23", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 5438, + "popularity": 7.2704 + }, + { + "id": 1075456, + "title": "O'Dessa", + "originalTitle": "O'Dessa", + "overview": "A farm girl is on an epic quest to recover a cherished family heirloom. Her journey leads her to a strange and dangerous city where she meets her one true love – but in order to save his soul, she must put the power of destiny and song to the ultimate test.", + "posterPath": "/xbdRxyr1u5dbhvMm14w7J1jJWQS.jpg", + "backdropPath": "/7z2lSLmiJ5jNeYCoXmton86BapN.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18, + 878 + ], + "genres": [ + "Music", + "Drama", + "Science Fiction" + ], + "releaseDate": "2025-03-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 86, + "popularity": 7.2703 + }, + { + "id": 169818, + "title": "Hannibal", + "originalTitle": "Annibale", + "overview": "A Carthaginian general attempts to cross the Alps with an army of elephants in order to conquer Rome.", + "posterPath": "/ti3xn55d3sAOFTpFEQiwiCWqnkY.jpg", + "backdropPath": "/5jJYXkFBXeMy007NI3K2xx87Dk2.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 12, + 18 + ], + "genres": [ + "History", + "Adventure", + "Drama" + ], + "releaseDate": "1959-12-21", + "releaseYear": "1959", + "originalLanguage": "it", + "voteAverage": 5.5, + "voteCount": 55, + "popularity": 7.2693 + }, + { + "id": 723072, + "title": "Host", + "originalTitle": "Host", + "overview": "Six friends hire a medium to hold a séance via Zoom during lockdown — but they get far more than they bargained for as things quickly go wrong. When an evil spirit starts invading their homes, they begin to realise they might not survive the night.", + "posterPath": "/h7dZpJDORYs5c56dydbrLFkEXpE.jpg", + "backdropPath": "/buop8brXQ8gGiOPrVTxZZUqE8Oa.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2020-12-04", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.466, + "voteCount": 1044, + "popularity": 7.2689 + }, + { + "id": 383498, + "title": "Deadpool 2", + "originalTitle": "Deadpool 2", + "overview": "Wisecracking mercenary Deadpool battles the evil and powerful Cable and other bad guys to save a boy's life.", + "posterPath": "/to0spRl1CMDvyUbOnbb4fTk3VAd.jpg", + "backdropPath": "/3P52oz9HPQWxcwHOwxtyrVV1LKi.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 12 + ], + "genres": [ + "Action", + "Comedy", + "Adventure" + ], + "releaseDate": "2018-05-15", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.489, + "voteCount": 18756, + "popularity": 7.2688 + }, + { + "id": 50241, + "title": "Saving Shiloh", + "originalTitle": "Saving Shiloh", + "overview": "In this third movie about Shiloh, Judd Travers is accused of killing a man he once fought in a bar. Everyone in the town consider Judd to be guilty except Marty Preston, but even him has some doubts. Trying to clear Judd's name Marty and his friend searches the woods to find the criminal.", + "posterPath": "/3tHopHc1r1jxXfwS0jFYqcq4mDc.jpg", + "backdropPath": "/uvGOxcnuBINpYwH12apF3d4G0mC.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 15, + "popularity": 7.2683 + }, + { + "id": 605373, + "title": "The Influence", + "originalTitle": "La influencia", + "overview": "After moving back to her family home to care for her dying mother, a nurse haunted by her childhood memories must struggle with an evil force in the house.", + "posterPath": "/xGUMfHIiEzuNVGeRAggLprzo1gG.jpg", + "backdropPath": "/j0gADYc94vowdGeANLceDCKleKt.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2019-06-21", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 4.855, + "voteCount": 266, + "popularity": 7.268 + }, + { + "id": 9587, + "title": "Little Women", + "originalTitle": "Little Women", + "overview": "Four sisters come of age in America in the aftermath of the Civil War.", + "posterPath": "/1ZzH1XMcKAe5NdrKL5MfcqZHHsZ.jpg", + "backdropPath": "/lmMVUuu2hHX6qrpcusiuSGU8HaC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1994-12-21", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 1292, + "popularity": 7.2676 + }, + { + "id": 57800, + "title": "Ice Age: Continental Drift", + "originalTitle": "Ice Age: Continental Drift", + "overview": "Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.", + "posterPath": "/dfp1BZF7FxbBUyzHvMOI9t8NWDD.jpg", + "backdropPath": "/kyTlMMVWo1GffYoQctZwLqJcwaj.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 12, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Adventure", + "Family" + ], + "releaseDate": "2012-06-27", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.389, + "voteCount": 7917, + "popularity": 7.2671 + }, + { + "id": 96600, + "title": "Grassroots", + "originalTitle": "Grassroots", + "overview": "Grant Cogswell, a liberal music critic decides to run for city council against a popular black incumbent and is assisted by a reporter who recently lost his job. Initially given no chance, things turn dark when Cogswell makes it into the general election. Based on a true story.", + "posterPath": "/At79sRABWzppBed5759uRYqh6vh.jpg", + "backdropPath": "/aGhyS2YqTGbe15AK97CaFdx6xkq.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2012-06-22", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 17, + "popularity": 7.2662 + }, + { + "id": 39043, + "title": "Countess Dracula", + "originalTitle": "Countess Dracula", + "overview": "Hungary, XVII century. After being widowed, the old countess Elizabeth Nádasdy, of the Báthory lineage, fortunately discovers a way to become young again; but the price to be paid by those around her will be high and bloody.", + "posterPath": "/ybYHPH9SywTbFaggQJDhju9KV2M.jpg", + "backdropPath": "/8J5I8riV0eh7eDRRR7vyB66Tjrt.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "1971-01-30", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 123, + "popularity": 7.2662 + }, + { + "id": 511401, + "title": "The Raft", + "originalTitle": "Flotten", + "overview": "In 1973, five men and six women drifted across the Atlantic on a raft as part of a scientific experiment exploring the origins of violence and sexual attraction. Nobody expected what ultimately took place on that 3-month journey. Through archive material and a reunion of the surviving members of the expedition, this film tells the hidden story of the project.", + "posterPath": "/9LgODHplMsZ0FAGweSErfHsbY6T.jpg", + "backdropPath": "/a38cQIKwkTbX765RlpId6z9IR2k.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2019-02-13", + "releaseYear": "2019", + "originalLanguage": "sv", + "voteAverage": 5.786, + "voteCount": 14, + "popularity": 7.2659 + }, + { + "id": 375588, + "title": "Robin Hood", + "originalTitle": "Robin Hood", + "overview": "A war-hardened Crusader and his Moorish commander mount an audacious revolt against the corrupt English crown.", + "posterPath": "/AiRfixFcfTkNbn2A73qVJPlpkUo.jpg", + "backdropPath": "/9KKT8qPAII0VJMpviThOTMLN0Wt.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 53, + 14 + ], + "genres": [ + "Adventure", + "Action", + "Thriller", + "Fantasy" + ], + "releaseDate": "2018-11-03", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.911, + "voteCount": 3073, + "popularity": 7.263 + }, + { + "id": 38775, + "title": "Night Tide", + "originalTitle": "Night Tide", + "overview": "A young sailor falls in love with a mysterious woman performing as a mermaid on the local pier. As they become entwined, he comes to suspect the woman might be a real mermaid who lures men to a watery death during the full moon. Preserved by the Academy Film Archive in partnership with The Film Foundation in 2007.", + "posterPath": "/bd8pTcZQNRBFrShJoCQUWnJxmZJ.jpg", + "backdropPath": "/uAW0YfIBSm6TTwyE2hTKsqRVhga.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648, + 10749, + 27 + ], + "genres": [ + "Thriller", + "Mystery", + "Romance", + "Horror" + ], + "releaseDate": "1961-07-01", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 98, + "popularity": 7.2628 + }, + { + "id": 13515, + "title": "Mirrors", + "originalTitle": "Mirrors", + "overview": "An ex-cop and his family are the target of an evil force that is using mirrors as a gateway into their home.", + "posterPath": "/bt5a4ThyLpLTsia2e2ZTLzQjXO0.jpg", + "backdropPath": "/9zMbyilain3lcbX16fZwEkIBMLB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2008-08-14", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 1959, + "popularity": 7.2627 + }, + { + "id": 705861, + "title": "Hustle", + "originalTitle": "Hustle", + "overview": "After discovering a once-in-a-lifetime player with a rocky past abroad, a down on his luck basketball scout takes it upon himself to bring the phenom to the States without his team's approval. Against the odds, they have one final shot to prove they have what it takes to make it in the NBA.", + "posterPath": "/xWic7kPq13oRxYjbGLApXCnc7pz.jpg", + "backdropPath": "/hGr0FrLI74vqpBWTBOPloDBwOAK.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-06-03", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.717, + "voteCount": 2719, + "popularity": 7.26 + }, + { + "id": 14709, + "title": "Varsity Blues", + "originalTitle": "Varsity Blues", + "overview": "In small-town Texas, high school football is a religion, 17-year-old schoolboys carry the hopes of an entire community onto the gridiron every Friday night. When star quarterback Lance Harbor suffers an injury, the Coyotes are forced to regroup under the questionable leadership of John Moxon, a second-string quarterback with a slightly irreverent approach to the game.", + "posterPath": "/g2jX2Xmx7drbc6J9MLJEBghR7Mg.jpg", + "backdropPath": "/rTlMsaE2MQ8NG2cs0bEkwVhMOrV.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1999-01-15", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 445, + "popularity": 7.26 + }, + { + "id": 7500, + "title": "Sonatine", + "originalTitle": "Sonatine", + "overview": "Murakawa, an aging Tokyo yakuza tiring of gangster life, is sent by his boss to Okinawa along with a few of his henchmen to help end a gang war, supposedly as mediators between two warring clans. He finds that the dispute between the clans is insignificant and whilst wondering why he was sent to Okinawa at all, his group is attacked in an ambush. The survivors flee and make a decision to lay low at the beach while they await further instructions.", + "posterPath": "/mX9E4fEuG17L2e7bZmhBc0XdRbw.jpg", + "backdropPath": "/wVQbMLpczyxlPKJWo6Qk3A1v2rB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "1993-09-10", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.502, + "voteCount": 666, + "popularity": 7.2593 + }, + { + "id": 575426, + "title": "Tommaso", + "originalTitle": "Tommaso", + "overview": "Tommaso is an American expat film director living in Rome with his young wife and their daughter. Disoriented by his past misgivings and subsequent unexpected blows to his self-esteem, Tommaso wades through this late chapter of his life with an increasingly impaired grasp on reality as he prepares for his next film.", + "posterPath": "/qLRp3j8KVlk2LI0pw9M1OFUJzKQ.jpg", + "backdropPath": "/wWBqpOEb1Yk5bEHvB0kkdzvv52C.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-01-08", + "releaseYear": "2020", + "originalLanguage": "it", + "voteAverage": 5.707, + "voteCount": 58, + "popularity": 7.2591 + }, + { + "id": 996087, + "title": "Hoard", + "originalTitle": "Hoard", + "overview": "The story follows Maria – a teenager whose mother used to be a hoarder. Now (set in the 90s) she lives in a foster home where a previous resident, Michael, inspires her to revisit the childhood memories and passions that she has repressed.", + "posterPath": "/81VQOyGSnyMxE2SWf0bgnHAAKeT.jpg", + "backdropPath": "/c0tZsK1WouPqKIgREuTcjDuy5K0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2024-05-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 25, + "popularity": 7.2587 + }, + { + "id": 644, + "title": "A.I. Artificial Intelligence", + "originalTitle": "A.I. Artificial Intelligence", + "overview": "David, a robotic boy—the first of his kind programmed to love—is adopted as a test case by a Cybertronics employee and his wife. Though he gradually becomes their child, a series of unexpected circumstances make this life impossible for David.", + "posterPath": "/8MZSGX5JORoO72EfuAEcejH5yHn.jpg", + "backdropPath": "/2tQ0Uhav10ay7jOX6QoqvbtGljB.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 12 + ], + "genres": [ + "Drama", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2001-06-29", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.051, + "voteCount": 6458, + "popularity": 7.2576 + }, + { + "id": 1779, + "title": "Roger & Me", + "originalTitle": "Roger & Me", + "overview": "A documentary about the closure of General Motors' plant at Flint, Michigan, which resulted in the loss of 30,000 jobs. Details the attempts of filmmaker Michael Moore to get an interview with GM CEO Roger Smith.", + "posterPath": "/nsLrWqKnyOKgtBMD6OYLk6fAyTG.jpg", + "backdropPath": "/1TFrt5rlgbAS7WdHfCp142NPt4s.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 36, + 35 + ], + "genres": [ + "Documentary", + "History", + "Comedy" + ], + "releaseDate": "1989-09-01", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 308, + "popularity": 7.2558 + }, + { + "id": 17874, + "title": "Laserblast", + "originalTitle": "Laserblast", + "overview": "Happy go-lucky teen Billy Duncan discovers an otherworldly laser gun in the southern California desert, making him the target of a pair of aliens who had recently executed its previous owner.", + "posterPath": "/jxv1Z0URENuWADDRwvRINUWUsP.jpg", + "backdropPath": "/tOrprVcS1hdR91VqGTORQmZb0pr.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27 + ], + "genres": [ + "Science Fiction", + "Horror" + ], + "releaseDate": "1978-03-01", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 3.2, + "voteCount": 106, + "popularity": 7.2557 + }, + { + "id": 8358, + "title": "Cast Away", + "originalTitle": "Cast Away", + "overview": "Chuck Noland, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia crashes at sea during a terrible storm. He's the only survivor, and finds himself marooned on a desolate island. With no way to escape, Chuck must find ways to survive in his new home.", + "posterPath": "/7lLJgKnAicAcR5UEuo8xhSMj18w.jpg", + "backdropPath": "/ioqaIhJSkwa9DGRHGtOOUTiGRs2.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18 + ], + "genres": [ + "Adventure", + "Drama" + ], + "releaseDate": "2000-12-22", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.66, + "voteCount": 11924, + "popularity": 7.2557 + }, + { + "id": 512098, + "title": "Blackmail", + "originalTitle": "Blackmail", + "overview": "When Dev finds about his wife's affair, he starts blackmailing her and her lover but the blackmail game backfires on him.", + "posterPath": "/2gg9lc8UqRxeybJLJv2Yt156Je4.jpg", + "backdropPath": "/oXuu7LYV1ztNotZvvOJchqBgl8Z.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53 + ], + "genres": [ + "Comedy", + "Thriller" + ], + "releaseDate": "2018-04-06", + "releaseYear": "2018", + "originalLanguage": "hi", + "voteAverage": 6.9, + "voteCount": 100, + "popularity": 7.2549 + }, + { + "id": 374617, + "title": "Imperium", + "originalTitle": "Imperium", + "overview": "Nate Foster, a young, idealistic FBI agent, goes undercover to take down a radical white supremacy terrorist group. The bright up-and-coming analyst must confront the challenge of sticking to a new identity while maintaining his real principles as he navigates the dangerous underworld of white supremacy. Inspired by real events.", + "posterPath": "/fEwo3gZfbeoovdcTyf4o4wATE1r.jpg", + "backdropPath": "/4IvMs0GxI2ObYhleDydRi0qjVR4.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-08-19", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.47, + "voteCount": 1447, + "popularity": 7.2549 + }, + { + "id": 458156, + "title": "John Wick: Chapter 3 - Parabellum", + "originalTitle": "John Wick: Chapter 3 - Parabellum", + "overview": "Super-assassin John Wick returns with a $14 million price tag on his head and an army of bounty-hunting killers on his trail. After killing a member of the shadowy international assassin’s guild, the High Table, John Wick is excommunicado, but the world’s most ruthless hit men and women await his every turn.", + "posterPath": "/ziEuG1essDuWuC5lpWUaw1uXY2O.jpg", + "backdropPath": "/vVpEOvdxVBP2aV166j5Xlvb5Cdc.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2019-05-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.445, + "voteCount": 11334, + "popularity": 7.2532 + }, + { + "id": 973468, + "title": "WILL", + "originalTitle": "WIL", + "overview": "Two young police officers find themselves torn between collaboration and resistance as they navigate the Nazi-occupied Antwerp during World War II.", + "posterPath": "/qAhD2oipCFMUXcZ5YDtQg0pwbUY.jpg", + "backdropPath": "/hycr8NAoZgCtLxiSNYZL9kCQcCr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752, + 36 + ], + "genres": [ + "Drama", + "War", + "History" + ], + "releaseDate": "2023-09-27", + "releaseYear": "2023", + "originalLanguage": "nl", + "voteAverage": 6.565, + "voteCount": 107, + "popularity": 7.2529 + }, + { + "id": 713, + "title": "The Piano", + "originalTitle": "The Piano", + "overview": "When an arranged marriage brings Ada and her spirited daughter to the wilderness of nineteenth-century New Zealand, she finds herself locked in a battle of wills with both her controlling husband and a rugged frontiersman to whom she develops a forbidden attraction.", + "posterPath": "/dUxjG6baSzGIgP7R8BQI5rpMuET.jpg", + "backdropPath": "/c2O99arhWcuLexMHiuRfSuDMpYm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1993-05-18", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.381, + "voteCount": 1597, + "popularity": 7.2528 + }, + { + "id": 247182, + "title": "The Kid", + "originalTitle": "El Niño", + "overview": "Two youths, Niño and Compi, enter the world of drug smuggling in the Strait of Gibraltar; while two police officers, Jesús and Eva, try to eradicate the contraband.", + "posterPath": "/cOSAcaVdqQoyX7VDigjAy94mMaO.jpg", + "backdropPath": "/wJt1THSshTQPedR6zC9a4WCzF26.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2014-08-29", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 6.459, + "voteCount": 255, + "popularity": 7.2526 + }, + { + "id": 399566, + "title": "Godzilla vs. Kong", + "originalTitle": "Godzilla vs. Kong", + "overview": "In a time when monsters walk the Earth, humanity’s fight for its future sets Godzilla and Kong on a collision course that will see the two most powerful forces of nature on the planet collide in a spectacular battle for the ages.", + "posterPath": "/pgqgaUx1cJb5oZQQ5v0tNARCeBp.jpg", + "backdropPath": "/wWqTMWkEw6HouLd1zPZbZWxtAPr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2021-03-24", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 10389, + "popularity": 7.251 + }, + { + "id": 15555, + "title": "Chop Shop", + "originalTitle": "Chop Shop", + "overview": "Alejandro, a tough and ambitious Latino street orphan on the verge of adolescence, lives and works in an auto-body repair shop in a sprawling junkyard on the outskirts of Queens, New York. In this chaotic world of adults, young Alejandro struggles to make a better life for himself and his 16-year-old sister, Isamar.", + "posterPath": "/5yuXy0aiEJRUIsSqCHDhrJcO5s5.jpg", + "backdropPath": "/xZMivkkeHNpgO7IfTFzD8Grx6T4.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-02-27", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 78, + "popularity": 7.2509 + }, + { + "id": 38234, + "title": "Undisputed III: Redemption", + "originalTitle": "Undisputed III: Redemption", + "overview": "Russian inmate Boyka, now severely hobbled by the knee injury suffered at the end of Undisputed 2. No longer the feared prison fighter he was, he has declined so far that he is now good only for cleaning toilets. But when a new prison fight tournament begins - an international affair, matching the best fighters from prisons around the globe, enticing them with the promise of freedom for the winner - Boyka must reclaim his dignity and fight for his position in the tournament.", + "posterPath": "/g8KB77SPA7SyU8eid6TAEpt9skU.jpg", + "backdropPath": "/tOfAkOf7TrAPuz4kKG5Fvq1seCd.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80, + 18 + ], + "genres": [ + "Action", + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2010-04-17", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 972, + "popularity": 7.2504 + }, + { + "id": 1966, + "title": "Alexander", + "originalTitle": "Alexander", + "overview": "Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians, he leads his army across the then known world, venturing farther than any westerner had ever gone, all the way to India.", + "posterPath": "/jrwQu72sGwGqwE8Ijne89PSIvhp.jpg", + "backdropPath": "/ySK5gxvXYnn55fjCIBeJVsG17RJ.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 36, + 28, + 12, + 18, + 10749 + ], + "genres": [ + "War", + "History", + "Action", + "Adventure", + "Drama", + "Romance" + ], + "releaseDate": "2004-11-21", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 3405, + "popularity": 7.2501 + }, + { + "id": 84892, + "title": "The Perks of Being a Wallflower", + "originalTitle": "The Perks of Being a Wallflower", + "overview": "Pittsburgh, Pennsylvania, 1991. High school freshman Charlie is a wallflower, always watching life from the sidelines, until two senior students, Sam and her stepbrother Patrick, become his mentors, helping him discover the joys of friendship, music and love.", + "posterPath": "/aKCvdFFF5n80P2VdS7d8YBwbCjh.jpg", + "backdropPath": "/3GppgdtQeVKfN6JhvGIGWYVsItn.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-09-20", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.802, + "voteCount": 10911, + "popularity": 7.25 + }, + { + "id": 14459, + "title": "Storm Warning", + "originalTitle": "Storm Warning", + "overview": "A couple becomes lost in a massive storm and seek refuge at a nearby farmhouse, only to be captured by deranged killers.", + "posterPath": "/a52a97dlHjYWnNTzeJJohlPOSLG.jpg", + "backdropPath": "/nBWoGZH5pkybVNnFh7QA0nJAzGh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2007-10-19", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 162, + "popularity": 7.2499 + }, + { + "id": 10153, + "title": "Sphere", + "originalTitle": "Sphere", + "overview": "A spacecraft is discovered on the floor of the Pacific Ocean, presumed to be at least 300 years old and of alien origin. A crack team of scientists and experts is assembled and taken to the Habitat, a state-of-the-art underwater living environment, to investigate.", + "posterPath": "/reR7C7EYe3DiHm5OYpA0ACUMDld.jpg", + "backdropPath": "/rSoWawQFVINi3yMyeMfq4aCny0U.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 9648, + 53 + ], + "genres": [ + "Science Fiction", + "Mystery", + "Thriller" + ], + "releaseDate": "1998-02-13", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 1735, + "popularity": 7.2499 + }, + { + "id": 591789, + "title": "Boi", + "originalTitle": "Boi", + "overview": "Boi is a young man starting out in a new job as a chauffeur. While anxiously waiting for news from his girlfriend regarding a decision that could change both their lives, he must accompany his first clients, Michael and Gordon, two Asian businessmen who have come to Barcelona in order to close a multimillion-dollar deal.", + "posterPath": "/2lGKEaL315JTlusiQDRobBA84ES.jpg", + "backdropPath": "/fvU0nXA8Xjmt6PDb0gcJH0wwefh.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2019-03-29", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 5.1, + "voteCount": 40, + "popularity": 7.2492 + }, + { + "id": 10144, + "title": "The Little Mermaid", + "originalTitle": "The Little Mermaid", + "overview": "This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula.", + "posterPath": "/plcZXvI310FkbwIptvd6rqk63LP.jpg", + "backdropPath": "/2ze42e0l0bPYEcJXInUukvNfZKk.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "1989-11-17", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.351, + "voteCount": 8219, + "popularity": 7.2483 + }, + { + "id": 380565, + "title": "Home Invasion", + "originalTitle": "Home Invasion", + "overview": "Terror arrives at the one place we all feel safest... When a wealthy woman, Chloe, and her stepson, Jacob, are targeted by a trio of expert thieves in their remote mansion, her only form of help comes from a call with Mike, a security systems specialist. But as the intruders become increasingly hostile and the connection wavers, will she trust him to be her eyes and navigate her to safety?", + "posterPath": "/9Wbt3orDldytLe3JMOl2lzukxnw.jpg", + "backdropPath": "/xfF8bra0O8nERlPPuUNL9UDGc0o.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 27 + ], + "genres": [ + "Thriller", + "Crime", + "Horror" + ], + "releaseDate": "2016-02-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.542, + "voteCount": 156, + "popularity": 7.2477 + }, + { + "id": 1072269, + "title": "The Successor", + "originalTitle": "Le Successeur", + "overview": "Happy and accomplished, Ellias becomes the new artistic director of a famous French Haute Couture house. When he learns that his father, whom he has not seen for many years, has just died of a heart attack, Ellias goes to Quebec to settle the estate. The young creator will discover that he has inherited much worse than his father's fragile heart.", + "posterPath": "/7Tu8EBsjLGEdzXeCD9HbhhVKXHK.jpg", + "backdropPath": "/yWXFxxqNDKJsbWaNv1CSG6JLXoo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2023-11-07", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.506, + "voteCount": 86, + "popularity": 7.246 + }, + { + "id": 345931, + "title": "American Poltergeist", + "originalTitle": "American Poltergeist", + "overview": "A group of friends move into a vacation home with a sinister past in Fall River, Massachusetts. Suspicious of the home's owner, Taryn feels a strong connection to the house and finds herself at the center of one of the most deadly poltergeists in American history.", + "posterPath": "/ejVbDQBTTfTSuiUvIa7iBmgwJt0.jpg", + "backdropPath": "/b0U2Bd5QJytSf1vTDBtgUpgQKXn.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2015-05-29", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 2.8, + "voteCount": 101, + "popularity": 7.2431 + }, + { + "id": 375946, + "title": "Fast Convoy", + "originalTitle": "Le Convoi", + "overview": "Málaga, southern Spain. Seven men, divided into four cars, set off with a large drug shipment towards Creil, a city near Paris; a routine mission that will be complicated by a fatal sequence of events.", + "posterPath": "/ueJOZdL66KD8An9HntIdxKHxx.jpg", + "backdropPath": "/oooZkKlOCmswD7JKEBG3FbG8pPn.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53 + ], + "genres": [ + "Drama", + "Action", + "Thriller" + ], + "releaseDate": "2016-01-20", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.602, + "voteCount": 118, + "popularity": 7.2424 + }, + { + "id": 16136, + "title": "Juice", + "originalTitle": "Juice", + "overview": "Four Harlem friends -- Bishop, Q, Steel and Raheem -- dabble in petty crime, but they decide to go big by knocking off a convenience store. Bishop, the magnetic leader of the group, has the gun. But Q has different aspirations. He wants to be a DJ and happens to have a gig the night of the robbery. Unfortunately for him, Bishop isn't willing to take no for answer in a game where everything's for keeps.", + "posterPath": "/hfXFPMhNjLnCugBHMN0nrtKW7Ra.jpg", + "backdropPath": "/54xcERdFHlRny2FJ9NC4koForkR.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53, + 28 + ], + "genres": [ + "Crime", + "Drama", + "Thriller", + "Action" + ], + "releaseDate": "1992-01-17", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.192, + "voteCount": 429, + "popularity": 7.2396 + }, + { + "id": 112886, + "title": "Jivaro", + "originalTitle": "Jivaro", + "overview": "At Rio Galdez's remote Brazilian trading post live assorted outcast Americans and Europeans, including Jerry Russell, ex-engineer who became obsessed with the Jivaro headhunters' treasure, quit his job, and took up with the bottle and local girl Maroa. But he still gets letters from his nominal fiancée in California, and unexpectedly the shapely, glamorous Alice Parker arrives, expecting to marry a rich planter. Disillusioned, Alice is almost ready to fall into Rio's arms when news comes that Jerry is missing in Jivaro country.", + "posterPath": "/pRMngNWqpDB1oAfJea9xbzDAUD0.jpg", + "backdropPath": "/2NnfZ90OC572cbNiiSGXVhkYnx2.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 10749 + ], + "genres": [ + "Adventure", + "Action", + "Romance" + ], + "releaseDate": "1954-02-12", + "releaseYear": "1954", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 11, + "popularity": 7.2389 + }, + { + "id": 22455, + "title": "Body Melt", + "originalTitle": "Body Melt", + "overview": "Residents of peaceful Pebbles Court, Homesville, are being used unknowingly as test experiments for a new 'Body Drug' that causes rapid body decomposition (melting skin etc.) and painful death.", + "posterPath": "/3DhwXNsZ5X66aQi9VnJMPn1Xcsl.jpg", + "backdropPath": "/jbunzjlC12ZNf84xD6v5HF3LlOo.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27, + 878 + ], + "genres": [ + "Comedy", + "Horror", + "Science Fiction" + ], + "releaseDate": "1994-10-28", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 109, + "popularity": 7.2375 + }, + { + "id": 73134, + "title": "Tender Cousins", + "originalTitle": "Tendres Cousines", + "overview": "Teenage Julien loves his teenage cousin Julia among flowers in summer of '39 France.", + "posterPath": "/jITSqc5btIXBRsiZbC3RkZaoY4U.jpg", + "backdropPath": "/fz5rODyDPyIPInB6oaUAaosnJNP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1980-11-19", + "releaseYear": "1980", + "originalLanguage": "fr", + "voteAverage": 5.7, + "voteCount": 81, + "popularity": 7.2373 + }, + { + "id": 90720, + "title": "The Hellbenders", + "originalTitle": "I crudeli", + "overview": "A Southern Colonel, his three sons, and a card shark embark on an odyssey through the Southwest carrying a coffin full of stolen money with which the Colonel plans to revive the Confederacy.", + "posterPath": "/l0BjrQzmbGuXmK5BH7wMmcaykMs.jpg", + "backdropPath": "/xoKUNLfbxA40bAQO55eKodHTrCf.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1967-02-02", + "releaseYear": "1967", + "originalLanguage": "it", + "voteAverage": 6.5, + "voteCount": 58, + "popularity": 7.2369 + }, + { + "id": 1522923, + "title": "Safe House", + "originalTitle": "Safe House", + "overview": "Trapped in a high-security safe house after a terrorist attack in downtown Los Angeles, six government agents realize they must survive not just the enemy outside, but the potential traitor among them.", + "posterPath": "/peUlWeJaqTi0YnsM4L6gnWzz0Ko.jpg", + "backdropPath": "/ptHXfOc0gEIG8CrieQ3t8MUBuiP.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2025-10-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.129, + "voteCount": 35, + "popularity": 7.2363 + }, + { + "id": 149, + "title": "Akira", + "originalTitle": "AKIRA", + "overview": "A secret military project endangers Neo-Tokyo when it turns a biker gang member into a rampaging psychic psychopath that only two teenagers and a group of psychics can stop.", + "posterPath": "/neZ0ykEsPqxamsX6o5QNUFILQrz.jpg", + "backdropPath": "/fK40VGYIm7hmKrLJ26fgPQU0qRG.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 28 + ], + "genres": [ + "Animation", + "Science Fiction", + "Action" + ], + "releaseDate": "1988-06-10", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 4568, + "popularity": 7.2353 + }, + { + "id": 575923, + "title": "Only Mine", + "originalTitle": "Only Mine", + "overview": "Tormented and left for dead by a scorned lover, a woman finds the strength within herself to recover and retaliate against her abuser.", + "posterPath": "/1EbeDRaqYTpkw35ntQGlskuak1c.jpg", + "backdropPath": "/zwHCbRtJy1qGhZVgoUFAIedFAmu.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 10770 + ], + "genres": [ + "Thriller", + "Drama", + "TV Movie" + ], + "releaseDate": "2019-01-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.246, + "voteCount": 130, + "popularity": 7.2335 + }, + { + "id": 393, + "title": "Kill Bill: Vol. 2", + "originalTitle": "Kill Bill: Vol. 2", + "overview": "The Bride unwaveringly continues on her roaring rampage of revenge against the band of assassins who had tried to kill her and her unborn child. She visits each of her former associates one-by-one, checking off the victims on her Death List Five until there's nothing left to do … but kill Bill.", + "posterPath": "/2yhg0mZQMhDyvUQ4rG1IZ4oIA8L.jpg", + "backdropPath": "/pgG6tzJzC8mjGqhaT8IWwEk00xf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2004-04-16", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.875, + "voteCount": 14599, + "popularity": 7.2331 + }, + { + "id": 624788, + "title": "Black Bear", + "originalTitle": "Black Bear", + "overview": "At a remote lake house in the Adirondack Mountains, a couple entertains an out-of-town guest looking for inspiration in her filmmaking. The group quickly falls into a calculated game of desire, manipulation, and jealousy, unaware of how dangerously intertwined their lives will soon become.", + "posterPath": "/nqZFjQRWfW6PjFTc17pzJ5LRAAv.jpg", + "backdropPath": "/o87ErHJHx99C5B8IiW9RYK1uCdU.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2020-12-04", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.384, + "voteCount": 280, + "popularity": 7.2328 + }, + { + "id": 54065, + "title": "Bambola", + "originalTitle": "Bámbola", + "overview": "Her name is Mina, but she is called Bambola (doll). Upon the death of her mother, she and her homosexual brother, Flavio, open a pizzeria. A man named Ugo loans Bambola the money, but is then killed in a fight with another one of her boyfriends, Settimio. While visiting Settimio in jail, she meets a sadistic man named Furio, and they begin a relationship.", + "posterPath": "/8o2xRDWl9DTmSTpdLCN0GHl9zqJ.jpg", + "backdropPath": "/a6d2Tjhu0DMdiOcpGVniKsPNDuS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1996-09-01", + "releaseYear": "1996", + "originalLanguage": "it", + "voteAverage": 4.3, + "voteCount": 61, + "popularity": 7.2301 + }, + { + "id": 55382, + "title": "Bayside Shakedown", + "originalTitle": "踊る大捜査線 THE MOVIE", + "overview": "Aoshima, a police detective working in the Bayside Precinct, is continually frustrated by the hierarchy and red tape that plague the system. His friend Muroi is climbing the ladder of the police bureaucracy. Muroi has made a pact with Aoshima that while Aoshima looks after the streets, Muroi would make life easier for the cops on the beat. One day in Bayside, a series of events turns the small station upside down.", + "posterPath": "/4pveFVl8gyGrnfD4Tr8icw2fAjY.jpg", + "backdropPath": "/d92fuqhTpVZL3y9nWl0azkQUUdE.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Crime" + ], + "releaseDate": "1998-10-31", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 26, + "popularity": 7.2299 + }, + { + "id": 608317, + "title": "Hidden Away", + "originalTitle": "Volevo Nascondermi", + "overview": "The film tackles the life journey of Toni Ligabue, visionary naïf painter who used to draw tigers, lions and jaguars while living among the poplar trees of the boundless Po valley. A harsh life that is a fairy tale too, as a lonely and marginalized kid finds redemption in his art, and a way to express himself and be admired by the world.", + "posterPath": "/znkT7ke3WKz6wfvBCoCA7s8cvz8.jpg", + "backdropPath": "/yGPNJns2G4j7FuJw3vDVYJhIgxa.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-02-27", + "releaseYear": "2020", + "originalLanguage": "it", + "voteAverage": 7.536, + "voteCount": 250, + "popularity": 7.2295 + }, + { + "id": 2768, + "title": "American Gigolo", + "originalTitle": "American Gigolo", + "overview": "Julian makes a lucrative living as an escort to older women in the Los Angeles area. He begins a relationship with Michelle, a local politician's wife, without expecting any pay. One of his clients is murdered and Detective Sunday begins pumping him for details on his different clients, something he is reluctant to do considering the nature of his work. Julian begins to suspect he's being framed. Meanwhile Michelle begins to fall in love with him.", + "posterPath": "/igXGCwti23PHOjLKQX6eGIGzQiJ.jpg", + "backdropPath": "/74FYuO2hDNmFt4Yz3IQ1ORcp5K9.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1980-02-01", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 699, + "popularity": 7.2261 + }, + { + "id": 335797, + "title": "Sing", + "originalTitle": "Sing", + "overview": "A koala named Buster recruits his best friend to help him drum up business for his theater by hosting a singing competition.", + "posterPath": "/xviEKU073QAzeFRzWDdW9xDHPbB.jpg", + "backdropPath": "/z9ft5HYHzWcasR6SGcgeluxTznB.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 10402, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Music", + "Animation" + ], + "releaseDate": "2016-11-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.121, + "voteCount": 8257, + "popularity": 7.2257 + }, + { + "id": 44729, + "title": "One Piece: Baron Omatsuri and the Secret Island", + "originalTitle": "ワンピース the movie オマツリ男爵と秘密の島", + "overview": "The Straw Hats visit a recreational island, run by Baron Omatsuri, who asks them to complete a series of ordeals if they wish to stay on the island. Luffy accepts and the Straw Hats work together to complete them, but as the island's mysteries unfold, their lives and friendships are put to the test. It's up to Luffy to stop the Baron's plot and keep his crew together.", + "posterPath": "/ueIR4LM4k8eKhSB8gGT9NMhCwGW.jpg", + "backdropPath": "/Aqsjzy5lZsOIIj0nmdDJ3woqeKe.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 53, + 35 + ], + "genres": [ + "Action", + "Animation", + "Thriller", + "Comedy" + ], + "releaseDate": "2005-03-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.186, + "voteCount": 231, + "popularity": 7.2252 + }, + { + "id": 64084, + "title": "Scorned", + "originalTitle": "Scorned", + "overview": "A vengeful widow worms her way into the home of the man she holds responsible for her husband's suicide.", + "posterPath": "/latrrZjz5kwVz3Am3ajLaCrJ1LW.jpg", + "backdropPath": "/vIo7x9CP8gUMhapvoHON50OgGn0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1993-07-14", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 43, + "popularity": 7.2247 + }, + { + "id": 14695, + "title": "Havoc", + "originalTitle": "Havoc", + "overview": "A wealthy Los Angeles teen and her superficial friends wants to break out of suburbia and experience Southern California's \"gangsta\" lifestyle. But problems arise when the preppies get in over their heads and provoke the wrath of a violent Latino gang. Suddenly, their role-playing seems a little too real.", + "posterPath": "/xY4c4bHPCRrwIvkxJ6qRLoyxQVo.jpg", + "backdropPath": "/gCEyc80mSflLymG8bfqrtu6ly44.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2005-10-16", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 335, + "popularity": 7.2229 + }, + { + "id": 760871, + "title": "Demigod", + "originalTitle": "Demigod", + "overview": "Upon the death of her grandfather, a woman and her husband return to her birthplace in Germany's Black Forest, only to find a terrifying secret awaits them.", + "posterPath": "/xTUhRLblPHTJmyFEiqHWUuY4Wcg.jpg", + "backdropPath": "/en9CrIDfA11e2hgUIiu9MV6Vk8d.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 18 + ], + "genres": [ + "Horror", + "Mystery", + "Drama" + ], + "releaseDate": "2021-10-08", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 16, + "popularity": 7.2221 + }, + { + "id": 506763, + "title": "Detective Dee: The Four Heavenly Kings", + "originalTitle": "狄仁杰之四大天王", + "overview": "Dee, the detective serving Chinese empress Wu Zetian, is called upon to investigate a series of strange events in Loyang, including the appearance of mysterious warriors wearing Chiyou ghost masks, foxes that speak human language and the pillar sculptures in the palace coming alive.", + "posterPath": "/nZ3XTA5ZlGOj92jRBSYglW8r9QY.jpg", + "backdropPath": "/rzGHVq2BCMwjp93QaKYoLPSaSrp.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 12, + 9648 + ], + "genres": [ + "Action", + "Fantasy", + "Adventure", + "Mystery" + ], + "releaseDate": "2018-07-27", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 6.26, + "voteCount": 204, + "popularity": 7.2217 + }, + { + "id": 81466, + "title": "The Oracle", + "originalTitle": "The Oracle", + "overview": "A murder victim reaches out from beyond the grave in an attempt to possess the body of a young woman who has moved into his old apartment.", + "posterPath": "/6qfUvWoTbCLsClxEVB1AZCd3cC6.jpg", + "backdropPath": "/4iKUw8LiINcwbNgF9fw3GOsS5Rv.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 80, + 53, + 9648 + ], + "genres": [ + "Horror", + "Crime", + "Thriller", + "Mystery" + ], + "releaseDate": "1985-05-01", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 3.98, + "voteCount": 25, + "popularity": 7.221 + }, + { + "id": 1058710, + "title": "Bloodline Killer", + "originalTitle": "Bloodline Killer", + "overview": "Moira Cole endeavors to rebuild her shattered life after her family's murder at the hands of her deranged and obsessed cousin.", + "posterPath": "/wHmzCQwBzT6m8wtZdXHOIITn82B.jpg", + "backdropPath": "/ibK0sooxQwIeqS9tz4Tj0chyca9.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-04-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 4, + "voteCount": 21, + "popularity": 7.2195 + }, + { + "id": 402900, + "title": "Ocean's Eight", + "originalTitle": "Ocean's Eight", + "overview": "Debbie Ocean, a criminal mastermind, gathers a crew of female thieves to pull off the heist of the century at New York's annual Met Gala.", + "posterPath": "/MvYpKlpFukTivnlBhizGbkAe3v.jpg", + "backdropPath": "/scQf03Fm3jeyv4FH04qvi4fp4wh.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 28 + ], + "genres": [ + "Crime", + "Comedy", + "Action" + ], + "releaseDate": "2018-06-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.968, + "voteCount": 8593, + "popularity": 7.2183 + }, + { + "id": 37593, + "title": "Lone Star", + "originalTitle": "Lone Star", + "overview": "Rip-roaring big star, big budget semi-historical story about cattle baron Devereaux Burke, who is enlisted by an aging Andrew Jackson to dissuade Sam Houston from establishing Texas as a republic. Burke must fight state senator Thomas Craden, in the process winning the heart of Craden's newspaper-editor girlfriend Martha Ronda.", + "posterPath": "/4AMTdBJpApUz55HqVbZBS5GNQa6.jpg", + "backdropPath": "/aKwLvHLj54hyFnXdmKMm5tAyPke.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1952-10-24", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 22, + "popularity": 7.2179 + }, + { + "id": 854542, + "title": "The Den", + "originalTitle": "La tana", + "overview": "In the summer of his nineteenth year, Giulio has decided not to go away: he will spend his vacation at home, helping his parents with their work in the vegetable garden. In the house next door, empty for some time, arrives Lia, a twenty-year-old girl. Giulio would like to get to know her, but she is sullen and introverted. One day Giulio is swimming in the lake and Lia plays at drowning him. Giulio is a regular guy, sensitive and polite to a fault. Attracted to her, he starts thinking about her day and night. Lia initiates him into strange and increasingly dangerous \"games.\" The girl won't talk about herself though. She has told him she came alone to spend her vacation in the old family home, where she hadn't been since she was a child. But Lia has secrets to keep and won't let anyone set foot in the old and abandoned house.", + "posterPath": "/4Bb8wmB3fVaQYTidjfebO2oAK5o.jpg", + "backdropPath": "/zDqYYO0zKEauegsfYRwawLgCkoq.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-04-28", + "releaseYear": "2022", + "originalLanguage": "it", + "voteAverage": 5.333, + "voteCount": 15, + "popularity": 7.2173 + }, + { + "id": 111132, + "title": "The Masseur", + "originalTitle": "Masahista", + "overview": "Iliac works in a massage parlor where the gay clients are given more than a shoulder kneading and back rub. When Iliac's father dies he must reconcile his job as a sex worker with the rest of his family.", + "posterPath": "/fno3fe1vrsGfT2brBwqzv7dw0Hd.jpg", + "backdropPath": "/znDydPyqoSkQk9gQkvzr4uobVjb.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2005-10-19", + "releaseYear": "2005", + "originalLanguage": "tl", + "voteAverage": 5.813, + "voteCount": 16, + "popularity": 7.2151 + }, + { + "id": 476195, + "title": "Daisy Winters", + "originalTitle": "Daisy Winters", + "overview": "An eleven year-old girl's unconventional yet deeply loving relationship with her mother is harshly broken. Along her journey, including her quest to discover her father, she learns how to embrace every moment with determination and unrelenting self-confidence.", + "posterPath": "/hSid5I9ai3XYzuRgmLPAhpw07bq.jpg", + "backdropPath": "/hYONQrm0kypNHSQXECvU723guMy.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-10-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 13, + "popularity": 7.214 + }, + { + "id": 11197, + "title": "Evil", + "originalTitle": "Ondskan", + "overview": "Stockholm, in the 1950s. Erik is expelled from the local school for getting into one brawl too many. To protect Erik from his violent stepfather’s reaction to his expulsion, Erik's mother arranges for Erik to spend a year at Stjärnsberg Boarding School, the only school willing to accept him. This is Erik's last chance to graduate to Upper School and he promises his mother, for his and her sake, to do all he can to stay out of trouble.", + "posterPath": "/1qqI4qh3VP7jUBRTGsIxh1miNKJ.jpg", + "backdropPath": "/2EIiauBZJspEHEJQeSw7OvrFG3d.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-09-16", + "releaseYear": "2003", + "originalLanguage": "sv", + "voteAverage": 7.316, + "voteCount": 380, + "popularity": 7.214 + }, + { + "id": 400155, + "title": "Hotel Transylvania 3: Summer Vacation", + "originalTitle": "Hotel Transylvania 3: Summer Vacation", + "overview": "Dracula, Mavis, Johnny and the rest of the Drac Pack take a vacation on a luxury Monster Cruise Ship, where Dracula falls in love with the ship’s captain, Ericka, who’s secretly a descendant of Abraham Van Helsing, the notorious monster slayer.", + "posterPath": "/lzE5BwGQea1nek7TPXUuC5AZ6rq.jpg", + "backdropPath": "/m03jul0YdVEOFXEQVUv6pOVQYGL.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2018-06-28", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 4611, + "popularity": 7.2139 + }, + { + "id": 63574, + "title": "Joyful Noise", + "originalTitle": "Joyful Noise", + "overview": "G.G. Sparrow faces off with her choir's newly appointed director, Vi Rose Hill, over the group's direction as they head into a national competition.", + "posterPath": "/pIgrIGFMZ7CslGPCWI7JHV3R96H.jpg", + "backdropPath": "/xNf9R2tw75AzU5DGaQR37wGppJ8.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10402 + ], + "genres": [ + "Comedy", + "Music" + ], + "releaseDate": "2012-01-13", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 162, + "popularity": 7.2129 + }, + { + "id": 36197, + "title": "Digimon Savers: The Movie - Ultimate Power! Activate Burst Mode!!", + "originalTitle": "デジモンセイバーズ THE MOVIE 究極パワー! バーストモード発動!!", + "overview": "The film begins with around Agumon, Gaomon and Lalamon, whose partners have been placed in a magical slumber along with the rest of city's population, by a mysterious thorned vine that spread throughout the city. As the Digimon make their way through the silent city, they stumble upon a pack of Goblimon, led by an Ogremon, who are attacking a young girl. They scare off the goblins, and the girl, Rhythm, reveals that she is actually a Digimon, then explains that the thorns are the work of a Digimon named Argomon. The quartet sets out to confront the villain atop his skyscraper lair.", + "posterPath": "/aHfRevkr2NYG3tNHKyBgaiuB3vL.jpg", + "backdropPath": "/zPxHVEKtRWOON3yTDfyqEDmz0wk.jpg", + "mediaType": "movie", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2006-12-09", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 10, + "popularity": 7.2121 + }, + { + "id": 30718, + "title": "Last of the Dogmen", + "originalTitle": "Last of the Dogmen", + "overview": "A Montana bounty hunter is sent into the wilderness to track three escaped prisoners. Instead he sees something that puzzles him. Later with a female Native Indian history professor, he returns to find some answers.", + "posterPath": "/7GkP9w87TAFSXLzJdqxTt0ymbJE.jpg", + "backdropPath": "/eSjyfYgT9GOoeTEj20ByCgj84Ms.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 9648, + 53, + 37 + ], + "genres": [ + "Adventure", + "Mystery", + "Thriller", + "Western" + ], + "releaseDate": "1995-09-08", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 100, + "popularity": 7.2103 + }, + { + "id": 292777, + "title": "Flower & Snake: Zero", + "originalTitle": "花と蛇 ZERO", + "overview": "Misaki Amemiya is an assistant inspector for the Metropolitan Police Department's Community Safety Bureau who becomes ensnared in a trap while investigating a mysterious illegal video website called \"Babylon\". Soon, she's bound and tortured along with Shizuko and an oversexed housewife named Ruri.", + "posterPath": "/dgL3SEyEGJl33PyUs2ADh82Dd3m.jpg", + "backdropPath": "/w3BKakhGKTyNs1G0mZsCj2HoRmD.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 18, + 27 + ], + "genres": [ + "Mystery", + "Thriller", + "Drama", + "Horror" + ], + "releaseDate": "2014-05-17", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.023, + "voteCount": 43, + "popularity": 7.2087 + }, + { + "id": 16147, + "title": "Aurore", + "originalTitle": "Aurore", + "overview": "After the sudden death of her mother, Aurore Gagnon is abused by her disturbed step-mother as her town remains in the silence followed by her death. Based on a true story.", + "posterPath": "/vuP0Fti4LRfQAaMRdxDRtr88GOW.jpg", + "backdropPath": "/fszGfgBTnBMCDYq0k3Bp3FpDUvZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2005-07-08", + "releaseYear": "2005", + "originalLanguage": "fr", + "voteAverage": 7.5, + "voteCount": 51, + "popularity": 7.2055 + }, + { + "id": 749727, + "title": "Shepherd", + "originalTitle": "Shepherd", + "overview": "When a deadly secret rots the mind of a grieving widower, the decision to work alone on a deserted island morphs into a terrifying race to save his sanity and his life.", + "posterPath": "/zZr7DFP1kP9s7cRnqWuVP72EB7X.jpg", + "backdropPath": "/r4HFuuth5EkvNJNoCTKRPCRjjMv.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2021-11-26", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.483, + "voteCount": 58, + "popularity": 7.2054 + }, + { + "id": 93856, + "title": "Chernobyl Diaries", + "originalTitle": "Chernobyl Diaries", + "overview": "A group of six tourists looking to go off the beaten path, hire an 'extreme tour guide' who, ignoring warnings, takes them into the city of Pripyat, the former home to the workers of the Chernobyl nuclear reactor, but now a deserted town since the disaster more than 25 years earlier. After a brief exploration of the abandoned city, the group members find themselves stranded, only to discover that they are not alone.", + "posterPath": "/9AKhThGA8IATBy3gR7I4dw9SEc4.jpg", + "backdropPath": "/1BgWRWjZtD6zyJfzlfDx3NHaECQ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2012-05-24", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 1649, + "popularity": 7.2052 + }, + { + "id": 40430, + "title": "Doppelgänger", + "originalTitle": "Doppelgänger", + "overview": "A planet is discovered in the same orbit as Earth's but is located on the exact opposite side of the sun, making it not visible from Earth. The European Space Exploration Council decide to send American astronaut Glenn Ross and British scientist John Kane via spaceship to explore the other planet.", + "posterPath": "/tW7Dr74ovic9wTAqoeRZy2SQ96L.jpg", + "backdropPath": "/yyAwhv0FU6BnMFwu0rKCJM1tVsX.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "1969-08-27", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 6.228, + "voteCount": 125, + "popularity": 7.2052 + }, + { + "id": 168259, + "title": "Furious 7", + "originalTitle": "Furious 7", + "overview": "Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.", + "posterPath": "/ktofZ9Htrjiy0P6LEowsDaxd3Ri.jpg", + "backdropPath": "/ehzI1mVcnHqB58NqPyQwpMqcVoz.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2015-04-01", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.223, + "voteCount": 11031, + "popularity": 7.2047 + }, + { + "id": 889737, + "title": "Joker: Folie à Deux", + "originalTitle": "Joker: Folie à Deux", + "overview": "While struggling with his dual identity, Arthur Fleck not only stumbles upon true love, but also finds the music that's always been inside him.", + "posterPath": "/if8QiqCI7WAGImKcJCfzp6VTyKA.jpg", + "backdropPath": "/AVWlQpVhpudyFsSh3OQIieHHYf.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "2024-10-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.41, + "voteCount": 2687, + "popularity": 7.2038 + }, + { + "id": 1000881, + "title": "Dead Man's Boots", + "originalTitle": "Prosper", + "overview": "One evening, Prosper, a loser Uber driver who still lives with his mother, picks up a dying man who has just been shot. Freaked out, Prosper gets rid of the body but not before stealing his pair of crocodile boots. As he slips them on, Prosper finds himself inhabited by the spirit of the deceased: King - a respected gangster feared by all. Split between these two opposing personalities, Prosper and King, united in one body, investigate to unmask King's killer.", + "posterPath": "/jh2jVf6L1REXcvvlGdqwFoYGdqE.jpg", + "backdropPath": "/5tEhvnlJebzBzQO32wu3g9bzSOr.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2025-03-19", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.053, + "voteCount": 19, + "popularity": 7.2032 + }, + { + "id": 384737, + "title": "Precious Cargo", + "originalTitle": "Precious Cargo", + "overview": "After a botched heist, Eddie a murderous crime boss, hunts down the seductive thief Karen who failed him. In order to win back Eddie’s trust, Karen recruits her ex-lover and premier thief Jack to steal a cargo of rare precious gems. But when the job goes down, allegiances are betrayed and lines are crossed as Jack, Karen, and Eddie face off in a fateful showdown.", + "posterPath": "/dOQv2PDBu9bBCZRLeRp6QQYJDr3.jpg", + "backdropPath": "/5yRU4YM4Vo5jYVZ6FoYlsUOrxU3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2016-07-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.088, + "voteCount": 296, + "popularity": 7.2028 + }, + { + "id": 1405338, + "title": "Demon City", + "originalTitle": "Demon City 鬼ゴロシ", + "overview": "Framed for his family's murder and left for dead, an ex-hitman will stop at nothing to exact revenge on the masked \"demons\" who have taken over his city.", + "posterPath": "/g5PqsFFrayyRL1Ldgib2lMYuJXg.jpg", + "backdropPath": "/hD2SN5bbqxk0kcRmsATJkXObgnZ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 14, + 53 + ], + "genres": [ + "Action", + "Crime", + "Fantasy", + "Thriller" + ], + "releaseDate": "2025-02-26", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.944, + "voteCount": 295, + "popularity": 7.2027 + }, + { + "id": 841742, + "title": "Megalomaniac", + "originalTitle": "Megalomaniac", + "overview": "Felix and Martha, the two offspring of legendary serial murderer The Skinner of Mons, grapple with the grotesque legacy bequeathed to them. While Martha works a menial janitorial job, Felix continues his father's reign of terror. But following a brutal attack at work, Martha quickly descends into madness, finding she must come to terms with the infamous blood that flows through her veins.", + "posterPath": "/8HKjrjwTjvDscC9uZNk6dCRHcfd.jpg", + "backdropPath": "/xmwHKkDrTAOFK2odRJFpeKp3eEx.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2023-09-08", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 5.536, + "voteCount": 56, + "popularity": 7.2022 + }, + { + "id": 329010, + "title": "Emelie", + "originalTitle": "Emelie", + "overview": "After their regular babysitter cancels, the Thompson family turns to her friend, Anna to supervise their children while the parents go out to celebrate their anniversary. At first Anna seems like a dream come true to the kids, allowing them to eat extra cookies and play with things that are usually off-limits, but as her behaviour becomes increasingly odd, the kids soon find out that her intentions are dark and twisted—and she is not who she seems to be.", + "posterPath": "/cfb1kzY0V4j0KKPLYMfXEo3t3op.jpg", + "backdropPath": "/5QQ4nNfs1ANq12mvRldIzqdhiY9.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2016-03-04", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.262, + "voteCount": 668, + "popularity": 7.2019 + }, + { + "id": 80321, + "title": "Madagascar 3: Europe's Most Wanted", + "originalTitle": "Madagascar 3: Europe's Most Wanted", + "overview": "Animal pals Alex, Marty, Melman, and Gloria are still trying to make it back to New York's Central Park Zoo. They are forced to take a detour to Europe to find the penguins and chimps who broke the bank at a Monte Carlo casino. When French animal-control officer Capitaine Chantel DuBois picks up their scent, Alex and company are forced to hide out in a traveling circus.", + "posterPath": "/ekraj4ksvIKeuvQVEevEJkuybZd.jpg", + "backdropPath": "/hfdds27YL5nTAhiOtjfNNxD3bJe.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 12 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Adventure" + ], + "releaseDate": "2012-06-06", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 6384, + "popularity": 7.2017 + }, + { + "id": 1073, + "title": "Arlington Road", + "originalTitle": "Arlington Road", + "overview": "Bedraggled college professor Michael Faraday has been vexed — and increasingly paranoid — since his wife's accidental death in a botched FBI operation. When a seemingly all-American couple set up house next door, Michael begin to suspect there’s more to them than meets the eye.", + "posterPath": "/4yYHyZuyTTQaEZuHKS7561jXjtR.jpg", + "backdropPath": "/7qfRbS477Io8JnYz739P0aXbBVh.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Thriller", + "Mystery" + ], + "releaseDate": "1999-03-19", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 1177, + "popularity": 7.2015 + }, + { + "id": 1317088, + "title": "The Assessment", + "originalTitle": "The Assessment", + "overview": "In a climate change-ravaged world, a utopian society optimizes life, including parenthood assessments. A successful couple faces scrutiny by an evaluator over seven days to determine their fitness for childbearing.", + "posterPath": "/o1K7be85FAauSbVPzCQ0GjOXUqu.jpg", + "backdropPath": "/96w2p3xKIgvuSTJsNVnvNFqOhPJ.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 53 + ], + "genres": [ + "Science Fiction", + "Drama", + "Thriller" + ], + "releaseDate": "2025-03-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.865, + "voteCount": 344, + "popularity": 7.2004 + }, + { + "id": 1001089, + "title": "Brothers", + "originalTitle": "Frères", + "overview": "Two young brothers are abandoned by their mother during summer of 1948, they run into the forest and survive there for seven years.", + "posterPath": "/5FmRJCoCmPWxZhJ0gE6vwSzx4pP.jpg", + "backdropPath": "/bZAdBX9dUjJhXVgWvfzdUVJYaj2.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-04-24", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 7.083, + "voteCount": 103, + "popularity": 7.1987 + }, + { + "id": 329996, + "title": "Dumbo", + "originalTitle": "Dumbo", + "overview": "A young elephant, whose oversized ears enable him to fly, helps save a struggling circus, but when the circus plans a new venture, Dumbo and his friends discover dark secrets beneath its shiny veneer.", + "posterPath": "/qgibOIN9RDHiPdimw7Gc7YcY960.jpg", + "backdropPath": "/5tFt6iuGnKapHl5tw0X0cKcnuVo.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 12 + ], + "genres": [ + "Family", + "Fantasy", + "Adventure" + ], + "releaseDate": "2019-03-27", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.591, + "voteCount": 4458, + "popularity": 7.1968 + }, + { + "id": 525200, + "title": "The School", + "originalTitle": "The School", + "overview": "When a doctor looking for her missing child awakens to find herself in an abandoned school, she must survive the supernatural terror and face her own demons if she is to find the truth about where her son is.", + "posterPath": "/38GDdvmKhN9DYrGtaQ6OQr53Tnh.jpg", + "backdropPath": "/25yuDMN1RGClKz52eeO4PcPF4PR.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 9648 + ], + "genres": [ + "Thriller", + "Horror", + "Mystery" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.724, + "voteCount": 38, + "popularity": 7.1965 + }, + { + "id": 882569, + "title": "Guy Ritchie's The Covenant", + "originalTitle": "Guy Ritchie's The Covenant", + "overview": "During the war in Afghanistan, a local interpreter risks his own life to carry an injured sergeant across miles of grueling terrain.", + "posterPath": "/kVG8zFFYrpyYLoHChuEeOGAd6Ru.jpg", + "backdropPath": "/eTvN54pd83TrSEOz6wbsXEJktCV.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 28, + 53 + ], + "genres": [ + "War", + "Action", + "Thriller" + ], + "releaseDate": "2023-04-19", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.732, + "voteCount": 2958, + "popularity": 7.1951 + }, + { + "id": 146768, + "title": "The Americano", + "originalTitle": "The Americano", + "overview": "An American Rancher takes a small herd of Brahma bulls to Brazil where he has sold them for a small fortune. There, he finds himself in the middle of a range war......and in love. His concern, who are really his friends and who are his enemies", + "posterPath": "/dDktGrzgogNzTLhFYn5dpKXPYKH.jpg", + "backdropPath": "/hPxBuVCLV5yEUj1vY6WSilTEVS8.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 37 + ], + "genres": [ + "Adventure", + "Western" + ], + "releaseDate": "1955-01-19", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 12, + "popularity": 7.1932 + }, + { + "id": 540414, + "title": "Dirt Music", + "originalTitle": "Dirt Music", + "overview": "Georgie is slowly suffocating in a loveless marriage to fishing tycoon Jim Buckridge. Handsome poacher Lu is an irresistible symbol of the excitement she craves. A passionate affair follows that reveals the dark secrets in Lu’s past and forces him to take flight into the blistering heat of the outback. Georgie follows, determined to find him and bring him back.", + "posterPath": "/9FbR35fAEr6vMiQLyxeCSgHkgvW.jpg", + "backdropPath": "/v6ZKREYbiRITI6kyusyzm009o6D.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2020-10-08", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.228, + "voteCount": 57, + "popularity": 7.1927 + }, + { + "id": 196, + "title": "Back to the Future Part III", + "originalTitle": "Back to the Future Part III", + "overview": "The final installment finds Marty digging the trusty DeLorean out of a mineshaft and looking for Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.", + "posterPath": "/crzoVQnMzIrRfHtQw0tLBirNfVg.jpg", + "backdropPath": "/vKp3NvqBkcjHkCHSGi6EbcP7g4J.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 878 + ], + "genres": [ + "Adventure", + "Comedy", + "Science Fiction" + ], + "releaseDate": "1990-05-25", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.49, + "voteCount": 11163, + "popularity": 7.1919 + }, + { + "id": 1025805, + "title": "Burning Patience", + "originalTitle": "Ardiente paciencia", + "overview": "Mario is a young fisherman who dreams of becoming a poet. He gets a job as the postman to Pablo Neruda when the legendary writer moves there after being exiled from Chile.", + "posterPath": "/aCL4YZBsyobwDQZeLdJ0iGOrXvs.jpg", + "backdropPath": "/xoFCNSluiCBawxNlB3nnMsMX92H.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2022-12-07", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 6.7, + "voteCount": 15, + "popularity": 7.1905 + }, + { + "id": 56534, + "title": "Knock Out", + "originalTitle": "Knock Out", + "overview": "A businessman in a phone-booth is held hostage by a sniper.", + "posterPath": "/biCktF7ea5f16T8JITOpM6PeLLA.jpg", + "backdropPath": "/dEdpzfV0DPXr1oQ8JwadxKJWxSN.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 53, + 9648 + ], + "genres": [ + "Crime", + "Action", + "Thriller", + "Mystery" + ], + "releaseDate": "2010-10-15", + "releaseYear": "2010", + "originalLanguage": "hi", + "voteAverage": 6.558, + "voteCount": 26, + "popularity": 7.1883 + }, + { + "id": 459151, + "title": "The Boss Baby: Family Business", + "originalTitle": "The Boss Baby: Family Business", + "overview": "The Templeton brothers — Tim and his Boss Baby little bro Ted — have become adults and drifted away from each other. But a new boss baby with a cutting-edge approach and a can-do attitude is about to bring them together again … and inspire a new family business.", + "posterPath": "/kv2Qk9MKFFQo4WQPaYta599HkJP.jpg", + "backdropPath": "/yBov7O4eXDcBLDpZrOHZzFr8rIl.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 12, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Adventure", + "Family" + ], + "releaseDate": "2021-07-01", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 2638, + "popularity": 7.1866 + }, + { + "id": 12994, + "title": "The Nines", + "originalTitle": "The Nines", + "overview": "A troubled actor, a television show runner, and an acclaimed videogame designer find their lives intertwining in mysterious and unsettling ways.", + "posterPath": "/AkIyPzbxBnR815XNCKH5D9T4RaE.jpg", + "backdropPath": "/xkwa3F4jvRTSy1mHPBTiqkH5aRq.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 9648, + 53 + ], + "genres": [ + "Drama", + "Fantasy", + "Mystery", + "Thriller" + ], + "releaseDate": "2007-01-21", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.974, + "voteCount": 453, + "popularity": 7.1846 + }, + { + "id": 10009, + "title": "Brother Bear", + "originalTitle": "Brother Bear", + "overview": "When an impulsive boy named Kenai is magically transformed into a bear, he must literally walk in another's footsteps until he learns some valuable life lessons. His courageous and often zany journey introduces him to a forest full of wildlife, including the lovable bear cub Koda, hilarious moose Rutt and Tuke, woolly mammoths and rambunctious rams.", + "posterPath": "/otptPbEY0vBostmo95xwiiumMJm.jpg", + "backdropPath": "/sZhY0BAsN1bMAPLIqMRqG1fqb3A.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Family" + ], + "releaseDate": "2003-10-23", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 5633, + "popularity": 7.184 + }, + { + "id": 220002, + "title": "Our Family", + "originalTitle": "Bizim Aile", + "overview": "A love story between a poor man and a rich girl. The rich girl's father tries to prevent their marriage and he declares a war against the poor boy's family.", + "posterPath": "/gZPmr1QT48IDYsMCczOVLGk7Ov8.jpg", + "backdropPath": "/50XTa3vvRKPHZ2aSkL2CLwBiVDJ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "1975-09-07", + "releaseYear": "1975", + "originalLanguage": "tr", + "voteAverage": 7.7, + "voteCount": 76, + "popularity": 7.1834 + }, + { + "id": 1134048, + "title": "Marshmallow", + "originalTitle": "Marshmallow", + "overview": "At a secluded summer camp, timid and introverted 12-year-old Morgan is thrust into a waking nightmare when a once-fabled campfire tale becomes real. As a mysterious figure descends upon the camp, Morgan and his newfound friends must embark on a treacherous journey and uncover a sinister reality buried beneath the surface.", + "posterPath": "/oxCJDzkFahBxRaeKoCBJwQkJZUE.jpg", + "backdropPath": "/kdJctsoSXy2SG7hh6IP450RBLmT.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "2025-04-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.109, + "voteCount": 64, + "popularity": 7.1808 + }, + { + "id": 541660, + "title": "Loro", + "originalTitle": "Loro", + "overview": "Internationally released Director's Cut of \"Loro 1\" and \"Loro 2\", which were released separately as two movies in Italy. The film talks about the group of businessmen and politicians – the Loro (Them) from the title – who live and act near to media tycoon and politician Silvio Berlusconi in the years between 2006 and 2009.", + "posterPath": "/yAogxeovs5HpzhD4UbrDsSybtp7.jpg", + "backdropPath": "/jLWXOlbmaCzsuOKfTKycW22ZjyC.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-09-13", + "releaseYear": "2018", + "originalLanguage": "it", + "voteAverage": 6.688, + "voteCount": 328, + "popularity": 7.1802 + }, + { + "id": 134673, + "title": "Renoir", + "originalTitle": "Renoir", + "overview": "In the French Riviera in the summer of 1915, Jean Renoir, son of the Impressionist painter Pierre-Auguste, returns home to convalesce after being wounded in World War I. At his side is Andrée, a young woman who rejuvenates, enchants, and inspires both father and son.", + "posterPath": "/6rITdY5SdUMFZ0lKmLUCsNFoKmJ.jpg", + "backdropPath": "/xiWwDhYlwLd3UVDvfZQfiig0nEB.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2012-07-02", + "releaseYear": "2012", + "originalLanguage": "fr", + "voteAverage": 6.343, + "voteCount": 140, + "popularity": 7.1802 + }, + { + "id": 13653, + "title": "The Aura", + "originalTitle": "El aura", + "overview": "A quiet, epileptic taxidermist plans the perfect crime. All he needs is the right opportunity. An accident, perhaps…", + "posterPath": "/waaFS27AOSt2JvKMZyFi9m7uGKY.jpg", + "backdropPath": "/fvl1geY63c1xoa6r6iRPARGJdJY.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2005-09-15", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 6.951, + "voteCount": 213, + "popularity": 7.1801 + }, + { + "id": 10649, + "title": "The Enforcer", + "originalTitle": "The Enforcer", + "overview": "Dirty Harry Callahan returns again, this time saddled with a rookie female partner. Together, they must stop a terrorist group consisting of angry Vietnam veterans.", + "posterPath": "/l0W85fpnsfnpLSSF3D6bKKlH1dD.jpg", + "backdropPath": "/jflTPIeK9JPkHwMEq8XF8sgUIIJ.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28 + ], + "genres": [ + "Crime", + "Action" + ], + "releaseDate": "1976-12-16", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 936, + "popularity": 7.1792 + }, + { + "id": 480007, + "title": "The Third Eye", + "originalTitle": "Mata Batin", + "overview": "When her little sister claims she sees the dead, Alia consults a psychic, who opens her own eyes to the vengeful ghosts haunting their childhood home.", + "posterPath": "/sOUhG1OMRD5RfMpMnT1AhramdZI.jpg", + "backdropPath": "/zVITKJxmvzvi5sBECmfDK1i3wA7.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2017-11-30", + "releaseYear": "2017", + "originalLanguage": "id", + "voteAverage": 5.7, + "voteCount": 94, + "popularity": 7.1771 + }, + { + "id": 844530, + "title": "The Judgement", + "originalTitle": "De veroordeling", + "overview": "A Dutch TV journalist finds himself challenging the police, courts and media as he attempts to uncover the truth about the controversial 1999 Deventer murder case.", + "posterPath": "/bmajnbYU1uRqokxo04p13CuPhX2.jpg", + "backdropPath": "/9IuANz6AFiRApEIUqFjmItIypb7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2021-09-02", + "releaseYear": "2021", + "originalLanguage": "nl", + "voteAverage": 6.8, + "voteCount": 35, + "popularity": 7.1742 + }, + { + "id": 28732, + "title": "Fall Time", + "originalTitle": "Fall Time", + "overview": "Three young men decide to plan a mock kidnapping, but everything goes wrong because a real bank robbery was already planned by two other guys.", + "posterPath": "/rYFexSIWUXNhuIdTIVcvZSEGe5G.jpg", + "backdropPath": "/9D2SaKXE5tnYMASY8XhS4Y3z6Vl.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1995-05-13", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 4.667, + "voteCount": 28, + "popularity": 7.174 + }, + { + "id": 384243, + "title": "The Fury", + "originalTitle": "De Helleveeg", + "overview": "Albert has always looked up to his aunt Tiny: this beautiful woman from Brabant can make any man’s heart skip a beat. Through Albert’s eyes Tiny’s life seems quite exciting. But why is she so furious at everyone and everything? It takes him half a lifetime to discover that his beloved aunt’s existence is a lot more complex than he had ever thought.", + "posterPath": "/rhT6dXxNn0x1HuK6nbTsbHfqmlc.jpg", + "backdropPath": "/dEU7idPBi6rdwAeSBdrX1aL6KGg.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-03-24", + "releaseYear": "2016", + "originalLanguage": "nl", + "voteAverage": 6.1, + "voteCount": 24, + "popularity": 7.1738 + }, + { + "id": 290370, + "title": "Mutant World", + "originalTitle": "Mutant World", + "overview": "A decade after a disastrous meteor impact wipes out most of society, a group of survivalists emerge to find themselves on a twisted version of the old Earth, with a nascent society besieged by vicious marauders, ferocious mutants, and the dreadful symptoms of a post-apocalyptic environment.", + "posterPath": "/qW10Tx8IQsDZRr7seAz2Ld8YRLy.jpg", + "backdropPath": "/36EhzLRQsUC6onzhKb2aeqcdRPs.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2014-09-27", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 2.833, + "voteCount": 21, + "popularity": 7.1729 + }, + { + "id": 123592, + "title": "Korkusuz Korkak", + "originalTitle": "Korkusuz Korkak", + "overview": "He is a civil servant in the bland state office. His whole life changes when his reports get mixed up in the hospital and he gets news that he's going to die very soon.", + "posterPath": "/6lGiT6xEoh423cASVv84NCug39C.jpg", + "backdropPath": "/eGXlkQsvMcRu45vh06gLUCcbEML.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1979-01-01", + "releaseYear": "1979", + "originalLanguage": "tr", + "voteAverage": 7.589, + "voteCount": 79, + "popularity": 7.1727 + }, + { + "id": 219811, + "title": "English Education", + "originalTitle": "Éducation anglaise", + "overview": "After losing both her parents, young Sylvie is enrolled in a strict boarding school of Victorian English education. The school readily and willingly resorts to a very strict regime of correction and corporal punishment to discipline its female pupils and the young girls compensate for the rigors of their education by devoting themselves to all kinds of kinky schoolgirl sexual encounters.", + "posterPath": "/xWglrXbQhhEdg1nGbsOLNyFHngX.jpg", + "backdropPath": "/nV0heRCF2xbQo2EECJ43KlFsEFK.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1983-06-07", + "releaseYear": "1983", + "originalLanguage": "fr", + "voteAverage": 4.1, + "voteCount": 14, + "popularity": 7.1721 + }, + { + "id": 1066262, + "title": "The Convert", + "originalTitle": "The Convert", + "overview": "Munro, a soldier turned lay preacher, comes to New Zealand to minister to the first British colonists, but he is converted by the powerful chief Maianui to serve a different purpose.", + "posterPath": "/44frNIZUfL8kYhxOGHeBJsyXUbW.jpg", + "backdropPath": "/tqSg1hHiSWhHAhnjDhhevaFGsP0.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2024-03-14", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.124, + "voteCount": 153, + "popularity": 7.1711 + }, + { + "id": 913604, + "title": "Renegades", + "originalTitle": "Renegades", + "overview": "When a retired Green Beret soldier is murdered by an Albanian drug gang in London, four of his veteran SAS comrades set out to avenge him, dispensing their own brand of justice on the streets of London.", + "posterPath": "/7QvhJsoFbcWsrY0iXGhZTKQaQAr.jpg", + "backdropPath": "/vYl59PvnUxyTRyFmruignuXLtyT.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2022-12-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.455, + "voteCount": 44, + "popularity": 7.171 + }, + { + "id": 278927, + "title": "The Jungle Book", + "originalTitle": "The Jungle Book", + "overview": "A man-cub named Mowgli fostered by wolves. After a threat from the tiger Shere Khan, Mowgli is forced to flee the jungle, by which he embarks on a journey of self discovery with the help of the panther, Bagheera and the free-spirited bear, Baloo.", + "posterPath": "/2Epx7F9X7DrFptn4seqn4mzBVks.jpg", + "backdropPath": "/8oYykF1Qhrb8fC2qZqD71EzRywg.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 12, + 14 + ], + "genres": [ + "Family", + "Adventure", + "Fantasy" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.867, + "voteCount": 8330, + "popularity": 7.1704 + }, + { + "id": 464052, + "title": "Wonder Woman 1984", + "originalTitle": "Wonder Woman 1984", + "overview": "A botched store robbery places Wonder Woman in a global battle against a powerful and mysterious ancient force that puts her powers in jeopardy.", + "posterPath": "/8UlWHLMpgZm9bx6QYh0NFoq67TZ.jpg", + "backdropPath": "/egg7KFi18TSQc1s24RMmR9i2zO6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2020-12-16", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 8844, + "popularity": 7.1667 + }, + { + "id": 419743, + "title": "Disobedience", + "originalTitle": "Disobedience", + "overview": "New York photographer Ronit flies to London after learning about the death of her estranged father. Ronit is returning to the same Orthodox Jewish community that shunned her decades earlier for her childhood attraction to Esti, a female friend. Their fortuitous and happy reunion soon reignites their burning passion as the two women explore the boundaries of faith and sexuality.", + "posterPath": "/skPT4ffWhlmmDOMNEdxOiP6Emfz.jpg", + "backdropPath": "/uTT0yYYgD5S4cDpNOJxuvCITAeC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2018-04-24", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.885, + "voteCount": 1255, + "popularity": 7.1667 + }, + { + "id": 9522, + "title": "Wedding Crashers", + "originalTitle": "Wedding Crashers", + "overview": "John and his buddy, Jeremy are emotional criminals who know how to use a woman's hopes and dreams for their own carnal gain. Their modus operandi: crashing weddings. Normally, they meet guests who want to toast the romantic day with a random hook-up. But when John meets Claire, he discovers what true love – and heartache – feels like.", + "posterPath": "/lFM3lk2zVzC1YFnKm0r6LbFPyRu.jpg", + "backdropPath": "/m1WSBzJ3uZ0WmxRBt1dpGUfNq7J.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2005-07-13", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.495, + "voteCount": 4569, + "popularity": 7.1667 + }, + { + "id": 13042, + "title": "Presto", + "originalTitle": "Presto", + "overview": "Dignity. Poise. Mystery. We expect nothing less from the great turn-of-the-century magician, Presto. But when Presto neglects to feed his rabbit one too many times, the magician finds he isn't the only one with a few tricks up his sleeve!", + "posterPath": "/1RMMyEkRPHvVxPDvhFmmw6xbcIb.jpg", + "backdropPath": "/aDMoJ8NlpyzWblxUnscHKCafvjP.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2008-06-27", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.785, + "voteCount": 1037, + "popularity": 7.1658 + }, + { + "id": 171298, + "title": "Goodbye Morocco", + "originalTitle": "Goodbye Morocco", + "overview": "Tangier. Dounia decides to sell on the black market the antiques uncovered on the building site she manages. She hopes to raise enough money to be able to leave Morocco with her son, who she hardly ever sees since her divorce. The death of a worker disrupts her plan...", + "posterPath": "/wD5BMYdO6B5Q5qlZq6OD4UPZDC.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-02-13", + "releaseYear": "2013", + "originalLanguage": "fr", + "voteAverage": 4.833, + "voteCount": 12, + "popularity": 7.1648 + }, + { + "id": 1114513, + "title": "Speak No Evil", + "originalTitle": "Speak No Evil", + "overview": "When an American family is invited to spend the weekend at the idyllic country estate of a charming British family they befriended on vacation, what begins as a dream holiday soon warps into a snarled psychological nightmare.", + "posterPath": "/dA4N6uWOnEMgbxXwFX7qX7adzs8.jpg", + "backdropPath": "/1fL2S8LKxCVE9KoPRBXeagmBtex.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-09-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.183, + "voteCount": 1808, + "popularity": 7.1629 + }, + { + "id": 65496, + "title": "Student Services", + "originalTitle": "Mes chères études", + "overview": "Nineteen-year-old Laura is stressed by her first year at college when money worries distract her from her studies and so, desperate for cash, she answers an online advertisement for intimate companionship that leads her down a dangerous path.", + "posterPath": "/vSpMWP1iX2KeRyIcHV3nINeBxlQ.jpg", + "backdropPath": "/kL1V6LpdI1nozZaqGbt8FvDzdTC.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-01-18", + "releaseYear": "2010", + "originalLanguage": "fr", + "voteAverage": 5.292, + "voteCount": 137, + "popularity": 7.1627 + }, + { + "id": 39514, + "title": "RED", + "originalTitle": "RED", + "overview": "After surviving an assault from a squad of hit men, retired CIA black ops agent Frank Moses reassembles his old team for an all-out war. Frank reunites with old Joe, crazy Marvin and wily Victoria to uncover a massive conspiracy that threatens their lives. Only their expert training will allow them to survive a near-impossible mission -- breaking into CIA headquarters.", + "posterPath": "/8eeK3OB5PeSRQD7BpZcGZKkehG.jpg", + "backdropPath": "/jlCMNcyqmHnsLe8AdhoTMg2kbDu.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 80, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Crime", + "Thriller" + ], + "releaseDate": "2010-10-13", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.703, + "voteCount": 6957, + "popularity": 7.1623 + }, + { + "id": 1357933, + "title": "The Cellar", + "originalTitle": "The Cellar", + "overview": "A young girl wakes up imprisoned underground, with amnesia. She must escape, unravel the mystery behind her captivity, and confront her personal struggles. A suspenseful tale of survival, truth, and inner turmoil unfolds.", + "posterPath": "/6Bf1xt1WhpoJjt8DvsBLM8Xj5iC.jpg", + "backdropPath": "/pMaUy5KhLydueZ4ybk9sKuqXQFI.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 14, + "popularity": 7.1622 + }, + { + "id": 959092, + "title": "Mayhem!", + "originalTitle": "Farang", + "overview": "Sam is a professional boxer about to get released from prison. While on parole, his past catches up with him and he has no choice but to flee. Five years later, he has rebuilt a simple life on an exotic island in Thailand with his wife and her daughter, but when he gets blackmailed by a dangerous local godfather, he must embark on a dangerous drug smuggling mission which results in a tragedy. Now he has only one purpose: to seek merciless vengeance.", + "posterPath": "/u9035lysUz3ccloQt0SeIp1Mu8a.jpg", + "backdropPath": "/dSbHiA9m62FhQxiSZoJmhzKlmZD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2023-06-28", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.7, + "voteCount": 208, + "popularity": 7.1617 + }, + { + "id": 1450599, + "title": "K.O.", + "originalTitle": "K.O.", + "overview": "A former fighter must find the missing son of an opponent he accidentally killed years ago, taking on a brutally violent crime gang in Marseille.", + "posterPath": "/qcM2sUiAeP4zXwx4ADSvgc9S58k.jpg", + "backdropPath": "/rU9kRB3rBU5O7AMReZCiuIy7zmE.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 12 + ], + "genres": [ + "Action", + "Drama", + "Adventure" + ], + "releaseDate": "2025-06-05", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.447, + "voteCount": 245, + "popularity": 7.1598 + }, + { + "id": 4964, + "title": "Knocked Up", + "originalTitle": "Knocked Up", + "overview": "A slacker and a career-driven woman accidentally conceive a child after a one-night stand. As they try to make the relationship work, they must navigate the challenges of parenthood and their differences in lifestyle and maturity.", + "posterPath": "/b4OaXw2MW97VvIiZE0Sbn1NfxSh.jpg", + "backdropPath": "/8uNx4YtClqB9duM4n6jOx8vWvvl.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2007-06-01", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 4131, + "popularity": 7.1584 + }, + { + "id": 34433, + "title": "Dragon Ball Z: Broly - The Legendary Super Saiyan", + "originalTitle": "ドラゴンボールZ 燃え尽きろ!!熱戦・烈戦・超激戦", + "overview": "While the Saiyan Paragus persuades Vegeta to rule a new planet, King Kai alerts Goku of the South Galaxy's destruction by an unknown Super Saiyan.", + "posterPath": "/6iO8TJCyLI4BiPYOvdwzPV2bhoV.jpg", + "backdropPath": "/c3GXGuf5zVSM1m4n63gwCkz24N9.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 28 + ], + "genres": [ + "Animation", + "Science Fiction", + "Action" + ], + "releaseDate": "1993-03-06", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 958, + "popularity": 7.1581 + }, + { + "id": 746036, + "title": "The Fall Guy", + "originalTitle": "The Fall Guy", + "overview": "Fresh off an almost career-ending accident, stuntman Colt Seavers has to track down a missing movie star, solve a conspiracy and try to win back the love of his life while still doing his day job.", + "posterPath": "/e7olqFmzcIX5c23kX4zSmLPJi8c.jpg", + "backdropPath": "/H5HjE7Xb9N09rbWn1zBfxgI8uz.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 10749 + ], + "genres": [ + "Action", + "Comedy", + "Romance" + ], + "releaseDate": "2024-04-24", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.982, + "voteCount": 3352, + "popularity": 7.156 + }, + { + "id": 13995, + "title": "Captain America", + "originalTitle": "Captain America", + "overview": "During World War II, a brave, patriotic American Soldier undergoes experiments to become a new supersoldier, \"Captain America\". Racing to Germany to sabotage the rockets of Nazi baddie \"Red Skull\", Captain America winds up frozen until the 1990s. He reawakens to find that the Red Skull has changed identities and is now planning to kidnap the President of the United States.", + "posterPath": "/vdHrLFfHcJX9nlvUfG3LK2a2hq4.jpg", + "backdropPath": "/a7nEljKws5sgtCndAkJtdpGz9pe.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 10752 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "War" + ], + "releaseDate": "1990-12-14", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 441, + "popularity": 7.1559 + }, + { + "id": 22288, + "title": "Honeysuckle Rose", + "originalTitle": "Honeysuckle Rose", + "overview": "Buck Bonham is a country singer on the road caught in a romantic triangle with Dyan Cannon and Amy Irving, the daughter of one of his longtime musical sidekick.", + "posterPath": "/k1SODZtlyJ66YyLL9gaqfFxQPnv.jpg", + "backdropPath": "/u2IdqAZziVoLCyzDZbJ7WFVpA7T.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 10749 + ], + "genres": [ + "Drama", + "Music", + "Romance" + ], + "releaseDate": "1980-07-18", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 5.185, + "voteCount": 27, + "popularity": 7.1546 + }, + { + "id": 917496, + "title": "Beetlejuice Beetlejuice", + "originalTitle": "Beetlejuice Beetlejuice", + "overview": "After a family tragedy, three generations of the Deetz family return home to Winter River. Still haunted by Betelgeuse, Lydia's life is turned upside down when her teenage daughter, Astrid, accidentally opens the portal to the Afterlife.", + "posterPath": "/kKgQzkUCnQmeTPkyIwHly2t6ZFI.jpg", + "backdropPath": "/kF8ljC7Y4p1UsmKBi2LxelZpqw.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 27 + ], + "genres": [ + "Comedy", + "Fantasy", + "Horror" + ], + "releaseDate": "2024-09-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.959, + "voteCount": 2864, + "popularity": 7.1544 + }, + { + "id": 6320, + "title": "Police", + "originalTitle": "Police", + "overview": "Mangin, a police inspector in Paris, leans hard on informants to get evidence on three Tunisian brothers who traffic in drugs. He arrests one, Simon, and his girl-friend Noria. Simon's brothers go to their lawyer. He springs Noria, who promptly steals 2 million francs that belong to the Tunisians. They suspect her of the theft; her life as well as the lawyer's is in danger. Meanwhile, Noria is playing with both the lawyer and Mangin's affections. Mangin is mercurial anyway: intimidating and bloodying suspects, falling for a police commission trainee before flipping for Noria, wearing his emotions on his sleeve. Can he save the lawyer and Noria, and can he convince her to love?", + "posterPath": "/rMBanDuFv1M3LrJgVlwJqVFEujx.jpg", + "backdropPath": "/ydNd3ZtWgvu4Fpsx1Vcg0x0igsj.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1985-09-04", + "releaseYear": "1985", + "originalLanguage": "fr", + "voteAverage": 6, + "voteCount": 122, + "popularity": 7.1539 + }, + { + "id": 64586, + "title": "Sleeping Beauty", + "originalTitle": "Sleeping Beauty", + "overview": "A haunting erotic fairytale about Lucy, a young University student drawn into a mysterious hidden world of beauty and desire.", + "posterPath": "/l1Lx8iRsml1JnPBY0qgn6IN5FQg.jpg", + "backdropPath": "/gLczEytN9xaib7BiagqQqxlZ6Hg.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2011-06-10", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 652, + "popularity": 7.1534 + }, + { + "id": 1104844, + "title": "BLUE LOCK THE MOVIE -EPISODE NAGI-", + "originalTitle": "劇場版ブルーロック -EPISODE 凪-", + "overview": "When apathetic gamer Nagi agrees to join his rich classmate Mikage in soccer, their partnership leads to the famous Blue Lock program — and to changes.", + "posterPath": "/yZYZqT1f6rddhiSdjl8NVVCoZKE.jpg", + "backdropPath": "/dJwclPgKPnV7hX3OSlvSBiCmuvB.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 18 + ], + "genres": [ + "Animation", + "Action", + "Drama" + ], + "releaseDate": "2024-04-19", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 214, + "popularity": 7.153 + }, + { + "id": 258086, + "title": "The Damned", + "originalTitle": "The Damned", + "overview": "After suffering the recent loss of his wife, David Reynolds decides to take his family on a cathartic trip to her home village in Columbia. While en route, they get into a car accident and seek refuge in a secluded inn. While there they find a mysterious young girl, Ana Maria, locked up with cryptic symbols painted on the walls of her cell. Shocked by the treatment of her caretaker, the family sets Ana free only to realize that she is possessed by an evil spirit from centuries past. What’s worse, the spirit can jump from person to person, creating a deadly dynamic amongst the once loving family. Now, David must figure out a way to lock the spirit up for good before it destroys him and his family.", + "posterPath": "/jtTlnB7jOfEBiK5eVSLUMWR6aKg.jpg", + "backdropPath": "/2sza8BjMdHUBmmzMKc0XET7C25z.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 9648 + ], + "genres": [ + "Thriller", + "Horror", + "Mystery" + ], + "releaseDate": "2014-06-20", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.544, + "voteCount": 260, + "popularity": 7.1515 + }, + { + "id": 965150, + "title": "Aftersun", + "originalTitle": "Aftersun", + "overview": "Sophie reflects on the shared joy and private melancholy of a holiday she took with her father twenty years earlier. Memories fill the gaps between camcorder footages as she tries to reconcile the father she knew with the troubled man she didn't.", + "posterPath": "/evKz85EKouVbIr51zy5fOtpNRPg.jpg", + "backdropPath": "/d5l2ITQvpgP0dcWCAG6PUvp8YZw.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-10-21", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 1678, + "popularity": 7.1508 + }, + { + "id": 28, + "title": "Apocalypse Now", + "originalTitle": "Apocalypse Now", + "overview": "At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, \"does not exist, nor will it ever exist.\" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.", + "posterPath": "/gQB8Y5RCMkv2zwzFHbUJX3kAhvA.jpg", + "backdropPath": "/eN5G8vTWLnZxJ0LTd4g27oPObcZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "1979-05-19", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 8.271, + "voteCount": 8751, + "popularity": 7.15 + }, + { + "id": 344854, + "title": "The Pack", + "originalTitle": "The Pack", + "overview": "Man’s best friend becomes his worst nightmare when a horde of bloodthirsty wild dogs descends upon a family’s farmhouse in a fang-bearing fight for survival.", + "posterPath": "/qe8Xue6kXAj4Cf42Phz7R165LAz.jpg", + "backdropPath": "/fhOjL0ArVthQNUueMkfs2AfkAQe.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2015-08-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.699, + "voteCount": 178, + "popularity": 7.1495 + }, + { + "id": 807196, + "title": "Boiling Point", + "originalTitle": "Boiling Point", + "overview": "A head chef balances multiple personal and professional crises at a popular restaurant in London.", + "posterPath": "/kdkk7OBnIL1peW2zwcAAp6O54Jo.jpg", + "backdropPath": "/he0XbwtxDiRnPERvboWMkvXFdAJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2021-07-05", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 683, + "popularity": 7.1472 + }, + { + "id": 83896, + "title": "Sand Sharks", + "originalTitle": "Sand Sharks", + "overview": "Just when you thought it was safe to go back to the beach, it appears that our large fishy friends have found a way to chomp on you when you're chilling out on the sand too!", + "posterPath": "/bhOBPEmtPPfwfTIbCF5CPMeEte6.jpg", + "backdropPath": "/cvasRBTNY1Wm9sgVdP6hZCB9BmV.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27, + 878 + ], + "genres": [ + "Comedy", + "Horror", + "Science Fiction" + ], + "releaseDate": "2011-12-20", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 3.654, + "voteCount": 149, + "popularity": 7.1462 + }, + { + "id": 140785, + "title": "Fairy in a Cage", + "originalTitle": "檻の中の妖精", + "overview": "During World War II a moral corrupt judge uses the military police to falsely accuse and imprison a high class business woman who captures his eye at a party. In his personal underground dungeon he subjects her to various humiliations and sexual abuse.", + "posterPath": "/4KBIMbG4kRHbVObkcGMQ4zCl0XO.jpg", + "backdropPath": "/ydC4vcPqBAMp65fWl210Ez01O8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "1977-06-04", + "releaseYear": "1977", + "originalLanguage": "ja", + "voteAverage": 5.318, + "voteCount": 22, + "popularity": 7.1461 + }, + { + "id": 603531, + "title": "Heartless", + "originalTitle": "Sem Coração", + "overview": "Summer 1996, north-east coast of Brazil. Tamara is enjoying her last weeks at the fishing village she lives in before departing to Brasilia for her studies. One day, she hears about a teenager nicknamed Heartless after a scar she has on her chest. Over the course of the summer, Tamara feels a growing attraction for this mysterious girl.", + "posterPath": "/wEF8qZfzdAS5N23UzShi9jBIw05.jpg", + "backdropPath": "/iBnZ533dLwTj2Q7YmCcBqLS5h0r.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-04-18", + "releaseYear": "2024", + "originalLanguage": "pt", + "voteAverage": 7, + "voteCount": 23, + "popularity": 7.1457 + }, + { + "id": 1092899, + "title": "The Siege", + "originalTitle": "The Siege", + "overview": "International assassin Walker is compromised during a mission and sent to a reassignment center for a new identity. During his stay at the facility, a ruthless assault team storms the compound searching for someone their boss has lost. Walker begrudgingly falls in with skilled hitwoman Elda and her mysterious ward Juliet in order to survive the night.", + "posterPath": "/hVh4hMzkXNLnScudbid6hDvjMPk.jpg", + "backdropPath": "/4eC0tsU9OxR3Adlo1yRJYUDraW9.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2023-03-10", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.457, + "voteCount": 58, + "popularity": 7.1456 + }, + { + "id": 892515, + "title": "Masquerade", + "originalTitle": "Mascarade", + "overview": "Adrien, an attractive dancer whose career was shattered by a motorcycle accident, squanders his youth in idleness. His life changes when he meets Margot, who lives off scams and amorous manipulations.", + "posterPath": "/31KgCTaOuLJsUm2cGN2OffripeD.jpg", + "backdropPath": "/ealKqQWhFkTebdxMv0IYSkTQSMd.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Crime", + "Drama", + "Romance" + ], + "releaseDate": "2022-11-01", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 6.767, + "voteCount": 453, + "popularity": 7.1448 + }, + { + "id": 364442, + "title": "Jimi Hendrix", + "originalTitle": "Jimi Hendrix", + "overview": "Made shortly after his death, this documentary explores the brief life and remarkable legacy of guitarist Jimi Hendrix. After finding fame in the U.K., Hendrix brought his act back to the U.S., where his influential playing style left a blazing imprint on a whole generation of musicians. Employing interviews with family and contemporaries, such as Eric Clapton, as well as scorching live performances from Woodstock and Isle of Wight, the film paints an indelible portrait of a rock 'n' roll legend.", + "posterPath": "/9oeGx5bfr4NbvIEF7t22yqshPU4.jpg", + "backdropPath": "/etHy3osaJBxRTDpDNw0jyJIlf5e.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 10402 + ], + "genres": [ + "Documentary", + "Music" + ], + "releaseDate": "1973-06-14", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 25, + "popularity": 7.1441 + }, + { + "id": 782474, + "title": "Kidnapped", + "originalTitle": "Kidnapped", + "overview": "Savannah Duke-Morgan realizes her lifetime dream to bring her husband Brad and her five-year-old daughter Aria back to her birthplace on the Gold Coast of Australia until it turns into her worst nightmare when Aria goes missing from the resort’s Kidz Klub.", + "posterPath": "/s9YfXjDp388djaEYPck7GAhwPUN.jpg", + "backdropPath": "/aK0J18f4KmrmLWWx4P49ykFw5F8.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 10770 + ], + "genres": [ + "Thriller", + "Drama", + "TV Movie" + ], + "releaseDate": "2021-03-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 21, + "popularity": 7.1437 + }, + { + "id": 1368, + "title": "First Blood", + "originalTitle": "First Blood", + "overview": "When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, he is forced to flee into the mountains and wage an escalating one-man war against his pursuers.", + "posterPath": "/a9sa6ERZCpplbPEO7OMWE763CLD.jpg", + "backdropPath": "/hCxxOJojCUFyuahDx167glJgp7E.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53, + 10752 + ], + "genres": [ + "Action", + "Adventure", + "Thriller", + "War" + ], + "releaseDate": "1982-10-22", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.496, + "voteCount": 6649, + "popularity": 7.1434 + }, + { + "id": 582309, + "title": "Antigone", + "originalTitle": "Antigone", + "overview": "Sophie Deraspe’s adaptation of the classic Greek tragedy of the same name reimagines the story of a woman’s quest for justice as a commentary on the immigrant experience in contemporary Montreal.", + "posterPath": "/whn30vLHgM5IyMorCVGAsXzB3Zp.jpg", + "backdropPath": "/7p8uiXXprRzbw7uyaER4AG86gLP.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-11-08", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.8, + "voteCount": 63, + "popularity": 7.1426 + }, + { + "id": 339403, + "title": "Baby Driver", + "originalTitle": "Baby Driver", + "overview": "After being coerced into working for a crime boss, a young getaway driver finds himself taking part in a heist doomed to fail.", + "posterPath": "/tYzFuYXmT8LOYASlFCkaPiAFAl0.jpg", + "backdropPath": "/oVD3ClJBoomSQHtnJPAlMfes8YD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2017-06-28", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.445, + "voteCount": 16399, + "popularity": 7.1416 + }, + { + "id": 929, + "title": "Godzilla", + "originalTitle": "Godzilla", + "overview": "French nuclear tests irradiate an iguana into a giant monster that viciously attacks freighter ships in the Pacific Ocean. A team of experts, including Niko Tatopoulos, conclude that the oversized reptile is the culprit. Before long, the giant lizard is loose in Manhattan as the US military races to destroy the monster before it reproduces and it's spawn takes over the world.", + "posterPath": "/xJVl1I95StraYAwaNbBkVoWE2qA.jpg", + "backdropPath": "/gT4XVSEmGKOJ0EgSEUTfCeqgEtc.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "1998-05-20", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 5.645, + "voteCount": 4089, + "popularity": 7.1413 + }, + { + "id": 434576, + "title": "Haunted", + "originalTitle": "Haunted", + "overview": "An aspiring writer pays a visit to his sister to look after her house while she is out of town, but what he finds there is more terrifying than any of the stories he writes.", + "posterPath": "/qx7D1V5fdsm2pqpG81TM1rwA155.jpg", + "backdropPath": "/6D5ObAlWdtcw7i8FVmHEYS6J3Vo.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2017-08-23", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 18, + "popularity": 7.1412 + }, + { + "id": 1072342, + "title": "Night Swim", + "originalTitle": "Night Swim", + "overview": "Forced into early retirement by a degenerative illness, former baseball player Ray Waller moves into a new house with his wife and two children. He hopes that the backyard swimming pool will be fun for the kids and provide physical therapy for himself. However, a dark secret from the home's past soon unleashes a malevolent force that drags the family into the depths of inescapable terror.", + "posterPath": "/gSkfBGdxdialBMM7P02V4hcI6Ij.jpg", + "backdropPath": "/aZ8dBIvpDFp9cp23MfBiY5mWfuy.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-01-03", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.527, + "voteCount": 786, + "popularity": 7.1411 + }, + { + "id": 565028, + "title": "Candyman", + "originalTitle": "Candyman", + "overview": "A Chicago artist's sanity starts to unravel, unleashing a terrifying wave of violence when he begins to explore the macabre history of the Candyman.", + "posterPath": "/qeV15PpR8jFJA9TF9JPXIoqEgp1.jpg", + "backdropPath": "/g1cMEQnEptUJ7Sv8SRjWBTTHyMv.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2021-08-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 1687, + "popularity": 7.1409 + }, + { + "id": 587996, + "title": "Below Zero", + "originalTitle": "Bajocero", + "overview": "When a prisoner transfer van is attacked, the cop in charge must fight those inside and outside while dealing with a silent foe: the icy temperatures.", + "posterPath": "/dWSnsAGTfc8U27bWsy2RfwZs0Bs.jpg", + "backdropPath": "/6TPZSJ06OEXeelx1U1VIAt0j9Ry.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2021-01-29", + "releaseYear": "2021", + "originalLanguage": "es", + "voteAverage": 6.352, + "voteCount": 941, + "popularity": 7.1395 + }, + { + "id": 53182, + "title": "300: Rise of an Empire", + "originalTitle": "300: Rise of an Empire", + "overview": "Greek general Themistocles attempts to unite all of Greece by leading the charge that will change the course of the war. Themistocles faces the massive invading Persian forces led by mortal-turned-god, Xerxes and Artemesia, the vengeful commander of the Persian navy.", + "posterPath": "/wYDdWN1McB1Sio4z1dPSkb40Z78.jpg", + "backdropPath": "/chjkfyo57JexWo1YeIZRMk8wA4m.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 10752 + ], + "genres": [ + "Action", + "Drama", + "War" + ], + "releaseDate": "2014-03-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.115, + "voteCount": 6773, + "popularity": 7.1395 + }, + { + "id": 13022, + "title": "Rogue", + "originalTitle": "Rogue", + "overview": "When a group of tourists stumble into the remote Australian river territory of an enormous crocodile, the deadly creature traps them on a tiny mud island with the tide quickly rising and darkness descending. As the hungry predator closes in, they must fight for survival against all odds.", + "posterPath": "/ebpGDRa8H6jyWq6eCNbMRGnAC7r.jpg", + "backdropPath": "/f1AwhrhefodXEBD5c5Z7zOyPnq9.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 53 + ], + "genres": [ + "Action", + "Horror", + "Thriller" + ], + "releaseDate": "2007-11-08", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 734, + "popularity": 7.1387 + }, + { + "id": 105485, + "title": "Mega Cyclone", + "originalTitle": "Mega Cyclone", + "overview": "Jupiter’s famous blemish, the Great Red Spot, has vanished. When massive storms are reported in North America, it quickly becomes apparent that the huge, high storm that has been swirling around Jupiter for hundreds of years has landed on Earth. Swallowing up everything in its path, the Great Red Spot threatens to transform Earth into another Jupiter-like gas giant in just a matter of days! aka Mega Cyclone", + "posterPath": "/zYT1ayJHcS8x0otYHJYZlr27Js.jpg", + "backdropPath": "/7zfjO6Ye3KSus2Ih0rwxHD3tLTC.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 878, + 28 + ], + "genres": [ + "TV Movie", + "Science Fiction", + "Action" + ], + "releaseDate": "2011-12-29", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 61, + "popularity": 7.137 + }, + { + "id": 127702, + "title": "The Signal", + "originalTitle": "La señal", + "overview": "During the last days of Eva Peron, a pair of low-ranking detectives are thrust into a case of corruption involving the Mafia.", + "posterPath": "/x7JFpxMSJHaKf9KmzU1iFYcAjda.jpg", + "backdropPath": "/v6LfAhJSYOHkKRpYDSOPLU6mCso.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 80, + 18 + ], + "genres": [ + "Mystery", + "Crime", + "Drama" + ], + "releaseDate": "2007-09-13", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 5.7, + "voteCount": 23, + "popularity": 7.1369 + }, + { + "id": 73454, + "title": "X", + "originalTitle": "X", + "overview": "A veteran call girl and a runaway prostitute witness a murder which sends them on an out-of-control roller coaster ride through the twilight zone of sex-for-sale.", + "posterPath": "/nvU6uTwSpMpitM6mnuYXb1LgxxX.jpg", + "backdropPath": "/qH82pGOalBudCVjrms2Ugzjrhrf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 10749 + ], + "genres": [ + "Action", + "Thriller", + "Romance" + ], + "releaseDate": "2011-11-23", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 312, + "popularity": 7.1367 + }, + { + "id": 833043, + "title": "The Consequences", + "originalTitle": "Las consecuencias", + "overview": "Since Fabiola saw her husband die in a diving accident, nothing has been the same again. Tired of not getting better, she decides to self-prescribe an unconventional therapy: together with her dad and her teenage daughter, she travels to a house her family owns in a small volcanic island. During this time of coexistence, each of them tries to protect their own privacy, and to safeguard their secrets. But all this secrecy triggers Fabiola’s paranoia. She has neither evidence nor certainty, but something tells her that things are not what they seem.", + "posterPath": "/e3ES94NIqbpMXaHZIYEb6CUMjom.jpg", + "backdropPath": "/gZeJ7kx9kA01mSP0RtCUDUA1xy5.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2021-09-17", + "releaseYear": "2021", + "originalLanguage": "es", + "voteAverage": 5.1, + "voteCount": 10, + "popularity": 7.136 + }, + { + "id": 58718, + "title": "Siren", + "originalTitle": "Siren", + "overview": "A group of friends escaping the city for a weekend away have a simple plan, to tour the coast for a relaxing weekend. Things hit a snag when one of the friends spots a seductive, sultry young woman waving for help off the shore of one of many secluded islands along the coast. Reaching out to rescue her turns deadly and they risk everything to get off the island alive.", + "posterPath": "/r7gfNhxv1XDnRCahmTo4dbxtYQ5.jpg", + "backdropPath": "/zHtf12JPaY514VwPv4FGCp4O8Py.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2010-11-11", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 4.13, + "voteCount": 77, + "popularity": 7.136 + }, + { + "id": 86331, + "title": "Desire", + "originalTitle": "Q", + "overview": "In a social context deteriorated by a countrywide economic crisis, the life of several people will be turned upside down after they meet Cécile, a character who symbolizes desire.", + "posterPath": "/wxvvNXY3n0637cOcdeC61eyVAnC.jpg", + "backdropPath": "/zbTaYrQzZaaEf1SZlv3RTZiUvZw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2011-10-06", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 1339, + "popularity": 7.1358 + }, + { + "id": 10830, + "title": "Matilda", + "originalTitle": "Matilda", + "overview": "Matilda Wormwood is an exquisite and intelligent little girl. Unfortunately, her parents, Harry and Zinnia misunderstand her because they think she is so different. As time passes, she finally starts school and has a kind teacher, loyal friends, and a sadistic headmistress. As she gets fed up with the constant cruelty, she begins to realize that she has a gift of telekinetic powers. After some days of practice, she suddenly turns the tables to stand up to Harry and Zinnia and outwit the headmistress.", + "posterPath": "/wYoDpWInsBEVSmWStnRH06ddoyk.jpg", + "backdropPath": "/iXlHfi9hq7nfSv31pBab8fpMfZh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 14 + ], + "genres": [ + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "1996-08-02", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.169, + "voteCount": 4659, + "popularity": 7.1354 + }, + { + "id": 85285, + "title": "The Empty Canvas", + "originalTitle": "La noia", + "overview": "An aspiring young artist breaks from his wealthy, possessive mother to live a bohemian existence in the artist's section of Rome and falls in love with a beautiful model who wants an uncommitted relationship.", + "posterPath": "/tN3gV6vkyc2XmdP6qoPAZ1JFUKp.jpg", + "backdropPath": "/fdCwGlr8so1ymJJI3VnBT8Qv4fX.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1963-12-04", + "releaseYear": "1963", + "originalLanguage": "it", + "voteAverage": 5.857, + "voteCount": 14, + "popularity": 7.1347 + }, + { + "id": 15591, + "title": "Black Swarm", + "originalTitle": "Black Swarm", + "overview": "A widow, Deputy Sheriff Jane Kozik, moves from Manhattan to Black Stone, New York, with her daughter Kelsey. There she expects to find a safe place to live. The day after moving, a homeless man is found dead in the tool shed of Jane's blind friend Beverly; an entomologist, Katherine is summoned to help with the investigation, along with Devin, Jane's brother-in-law and former boyfriend. Meanwhile, Kelsey befriends Eli, a scientist who has developed genetically modified wasps to the army as a weapon, and who is now trying to revert the process. When the wasps attack Black Stone, Jane, Devin and Eli team-up to attempt to destroy the swarm.", + "posterPath": "/8p4LZnanlJBIzEL2ZRX4cyo23dG.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 27, + 28 + ], + "genres": [ + "Horror", + "Action" + ], + "releaseDate": "2007-12-07", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.22, + "voteCount": 41, + "popularity": 7.1343 + }, + { + "id": 32043, + "title": "The Guardian", + "originalTitle": "The Guardian", + "overview": "Phil and Kate select the winsome young Camilla as a live-in nanny for their newborn child, but the seemingly lovely Camilla is not what she appears to be...", + "posterPath": "/yIVqiwhkWos3C9gt34ZeEQ0c3xm.jpg", + "backdropPath": "/pTDfAJRWLa8iMNd6GS9UNqGFzIL.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 27, + 9648, + 53 + ], + "genres": [ + "Drama", + "Fantasy", + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "1990-04-27", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 206, + "popularity": 7.1342 + }, + { + "id": 3164, + "title": "Frankenstein 1970", + "originalTitle": "Frankenstein 1970", + "overview": "The baron's grandson rents the family castle to a TV crew to fund his atomic revival of the family monster.", + "posterPath": "/pblxHVBjN7JJ5lz3Rdl3cjCvChp.jpg", + "backdropPath": "/4mfRUXiurkEzVSVxjYhpgA5Wg7J.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1958-07-20", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 5.298, + "voteCount": 42, + "popularity": 7.1331 + }, + { + "id": 41582, + "title": "Monkey Trouble", + "originalTitle": "Monkey Trouble", + "overview": "Dodger, a criminal monkey, belongs to a crooked street performer but escapes his life of crime only to end up in the arms of Eva, an innocent little girl whose mother has no idea that her daughter is harboring a fugitive.", + "posterPath": "/XnEXrR8SKWQmmvjtjRoAXROEj.jpg", + "backdropPath": "/78GU5jL4Mb5K6kEazDMDCI5RXQO.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1994-03-18", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 211, + "popularity": 7.1325 + }, + { + "id": 740903, + "title": "The Unhealer", + "originalTitle": "The Unhealer", + "overview": "A botched faith healing bestows supernatural Shaman powers on a bullied teenager. When his lifelong tormentors pull a prank that kills someone he loves, he uses his powers for revenge and goes on a bloody rampage to settle the score.", + "posterPath": "/jEuKhYfeS4dz0uQj1yTZ2Gl8yNH.jpg", + "backdropPath": "/rzchR1ZQQlj5bCfEUdrTZsC5CF2.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 53, + 27 + ], + "genres": [ + "Fantasy", + "Thriller", + "Horror" + ], + "releaseDate": "2020-10-09", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.951, + "voteCount": 103, + "popularity": 7.1323 + }, + { + "id": 423, + "title": "The Pianist", + "originalTitle": "The Pianist", + "overview": "The true story of pianist Władysław Szpilman's experiences in Warsaw during the Nazi occupation. When the Jews of the city find themselves forced into a ghetto, Szpilman finds work playing in a café; and when his family is deported in 1942, he stays behind, works for a while as a laborer, and eventually goes into hiding in the ruins of the war-torn city.", + "posterPath": "/2hFvxCCWrTmCYwfy7yum0GKRi3Y.jpg", + "backdropPath": "/1XqIhsqnAozznGhxlGdI0GPcCro.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "2002-09-17", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 8.38, + "voteCount": 9785, + "popularity": 7.1313 + }, + { + "id": 516834, + "title": "Mrs. Claus", + "originalTitle": "Mrs. Claus", + "overview": "Students attending a Christmas party at a sorority house with a sinister past are stalked by a bloodthirsty killer disguised as Mrs. Claus.", + "posterPath": "/t2FvsFuAzzdLpuIG4crc213ZEg4.jpg", + "backdropPath": "/cWn8VtOvi8Dy5PxvgBSSuwSwuqp.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2018-05-04", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.682, + "voteCount": 22, + "popularity": 7.131 + }, + { + "id": 7516, + "title": "Smokin' Aces", + "originalTitle": "Smokin' Aces", + "overview": "When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.", + "posterPath": "/nrdnN8WqvyOt8Bnl3hgWcZD6ZyM.jpg", + "backdropPath": "/p0uaaqE5XQ9TpICMir5axMfTYkg.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2006-12-09", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 1753, + "popularity": 7.13 + }, + { + "id": 52449, + "title": "Bad Teacher", + "originalTitle": "Bad Teacher", + "overview": "A lazy, incompetent middle school teacher who hates her job and her students is forced to return to her job to make enough money for a boob job after her rich fiancé dumps her.", + "posterPath": "/zpIY4qUSX91J9XpPgr0hFrk1eKr.jpg", + "backdropPath": "/ki6xo54bV6dGLROmAbdftTvxl1p.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-05-16", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.611, + "voteCount": 4837, + "popularity": 7.1297 + }, + { + "id": 121230, + "title": "The Virginian", + "originalTitle": "The Virginian", + "overview": "Arriving at Medicine Bow, eastern schoolteacher Molly Woods meets two cowboys, irresponsible Steve and the \"Virginian,\" who gets off on the wrong foot with her. To add to his troubles, the Virginian finds that his old pal Steve is mixed up with black-hatted Trampas and his rustlers...then finds himself at the head of a posse after said rustlers; and Molly hates the violent side of frontier life.", + "posterPath": "/nF1Oc6V9N4c3Dv0B2oojcFELKiA.jpg", + "backdropPath": "/dOxtXBFxpEuftXkgPI3GoJZdTlX.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1946-05-05", + "releaseYear": "1946", + "originalLanguage": "en", + "voteAverage": 6.05, + "voteCount": 20, + "popularity": 7.129 + }, + { + "id": 387773, + "title": "Little Bitches", + "originalTitle": "Little Bitches", + "overview": "A group of friends vow to open their college acceptance letters at the same time during the big end-of -year party.", + "posterPath": "/9qmyiAMBAF80DdNItPGdG5BcdZV.jpg", + "backdropPath": "/onwEnr8hTu5oUuPlC3pszKOE0pU.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2018-01-23", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 61, + "popularity": 7.1275 + }, + { + "id": 10908, + "title": "Inferno", + "originalTitle": "Inferno", + "overview": "Eddie Lomax is a drifter who has been in a suicidal funk since the death of his close friend Johnny. Riding his motorcycle into a small desert town where Johnny once lived, Lomax is confronted by a gang of toughs, who beat him and steal his bike. However, Lomax is not a man to take an injustice lying down, and soon he begins exacting a violent revenge on the men who stole his motorcycle, with local handyman Jubal Early lending a hand and several area ladies offering aid and comfort.", + "posterPath": "/n5C3PSYfjpUqBhyVWEWJQmM3Sr9.jpg", + "backdropPath": "/vRx6kzCItpqwnYCcj2z8qf70gv3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 10749 + ], + "genres": [ + "Action", + "Drama", + "Romance" + ], + "releaseDate": "1999-09-25", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 340, + "popularity": 7.126 + }, + { + "id": 39516, + "title": "The Fallen", + "originalTitle": "The Fallen", + "overview": "Northern Italy, Autumn 1944, the last days of World War II. Germans and Italians try to defend the Gothic Line and fight the partisans who support the inexorable advance of the US Army.", + "posterPath": "/lrTFGBECgZ77JeG8VXomBy4U0jD.jpg", + "backdropPath": "/tZV8hDayeHB5zG9LfW63s0tbwfF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "2004-01-01", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 3.833, + "voteCount": 12, + "popularity": 7.1258 + }, + { + "id": 38794, + "title": "Tosun Pasha", + "originalTitle": "Tosun Paşa", + "overview": "Late 19th century in Alexandria. Two traditionally rival Turkish families, \"Seferoglu\"s and \"Tellioglu\"s are competing for the \"Green Valley\". The winner will be determined by Daver Bey, who has a beautiful young daughter, Leyla. Both families try to arrange a marriage between a man from their family and Leyla, so that Daver Bey will be inclined to give the green valley to his \"relatives\". Tellioglus, who are behind in the race, desperately find a final solution: They will fake their idiotic butler, Saban, as the highest ranked Ottoman soldier in Egypt: Tosun Pasha.", + "posterPath": "/zqgB6E4yynfxkzzOurzC0VRObxf.jpg", + "backdropPath": "/kiu0xIcu9Rju9HTWSJOo8Svg9aW.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1976-02-01", + "releaseYear": "1976", + "originalLanguage": "tr", + "voteAverage": 8.028, + "voteCount": 124, + "popularity": 7.1248 + }, + { + "id": 597856, + "title": "Critters Attack!", + "originalTitle": "Critters Attack!", + "overview": "Mysterious alien Critters have crash-landed in a small college town, devouring every living thing they encounter. Drea and the kids she's babysitting must try desperately to save themselves from the ravenous, rolling beasts. Will Drea discover her inner badass, and will it be enough to stop the Critter onslaught?", + "posterPath": "/iQJQNElDQqQ3iXf46pyMmhReoyp.jpg", + "backdropPath": "/32HqRM2XTccuEpYuERTSLnbAeBZ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27, + 878 + ], + "genres": [ + "Comedy", + "Horror", + "Science Fiction" + ], + "releaseDate": "2020-11-06", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.081, + "voteCount": 135, + "popularity": 7.1217 + }, + { + "id": 274479, + "title": "Joy", + "originalTitle": "Joy", + "overview": "A story based on the life of a struggling Long Island single mom who became one of the country's most successful entrepreneurs.", + "posterPath": "/nZAs0HbW82TI1i4Xid83M941Pki.jpg", + "backdropPath": "/gwlx0r6NyWUuaI6MNajpYHPogZ1.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2015-12-24", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 4209, + "popularity": 7.1197 + }, + { + "id": 1127166, + "title": "The Tearsmith", + "originalTitle": "Fabbricante di lacrime", + "overview": "Adopted together after a tough childhood in an orphanage, Nica and Rigel realize that unexpected but irresistible feelings pull them together.", + "posterPath": "/uoBHsxSgfc3PQsSn98RfnbePHOy.jpg", + "backdropPath": "/e3gVl1gnxEFKLTF6pn6KRqUPi9K.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2024-04-03", + "releaseYear": "2024", + "originalLanguage": "it", + "voteAverage": 6.508, + "voteCount": 930, + "popularity": 7.1188 + }, + { + "id": 113407, + "title": "Bramadero", + "originalTitle": "Bramadero", + "overview": "The beautiful and erotic Bramadero finds Hassen and Jonás on the outskirts of Mexico City. Away from it all, they’ve found a spot where they can seduce one another and merge into one; where sex becomes desire, desire becomes love, and only death will separate them.", + "posterPath": "/u9NR05lh2x0C37BX9vTTG9t1rGK.jpg", + "backdropPath": "/p9cnltMB8NHxg5XxbkruBD4Xh9h.jpg", + "mediaType": "movie", + "genreIds": [ + 10749 + ], + "genres": [ + "Romance" + ], + "releaseDate": "2007-10-10", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 4.775, + "voteCount": 20, + "popularity": 7.1183 + }, + { + "id": 328901, + "title": "The Benefactor", + "originalTitle": "The Benefactor", + "overview": "A newly married couple are forced to navigate the all-consuming interest of a powerful, mysterious, and possessive philanthropist.", + "posterPath": "/uL0fCJuT0ERaKVM8ftduLlhObaM.jpg", + "backdropPath": "/adTfzw4tPdrPdLd8idOsepcP8mP.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-12-23", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 248, + "popularity": 7.1164 + }, + { + "id": 128, + "title": "Princess Mononoke", + "originalTitle": "もののけ姫", + "overview": "Ashitaka, a prince of the disappearing Emishi people, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", + "posterPath": "/cMYCDADoLKLbB83g4WnJegaZimC.jpg", + "backdropPath": "/gl0jzn4BupSbL2qMVeqrjKkF9Js.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 16 + ], + "genres": [ + "Adventure", + "Fantasy", + "Animation" + ], + "releaseDate": "1997-07-12", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 8619, + "popularity": 7.1145 + }, + { + "id": 661791, + "title": "The Grandmother", + "originalTitle": "La abuela", + "overview": "Susana leaves her life in Paris, where she works as a model, and returns to Madrid to take care of her grandmother Pilar.", + "posterPath": "/ri3KIjGp3Ek6iKUsTzMigmxTvdw.jpg", + "backdropPath": "/t6sTd4xrODKmAQiGUW3BWM60PzS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "2022-01-28", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 5.9, + "voteCount": 470, + "popularity": 7.1111 + }, + { + "id": 440374, + "title": "The Summit", + "originalTitle": "La cordillera", + "overview": "At a summit for Latin American presidents in Chile where the region's geopolitical strategies and alliances are in discussion, Argentine president Hernán Blanco endures political and family drama that will force him to face his own demons.", + "posterPath": "/gy2fvMbEuR1uJYGpM7oJ91HFRgl.jpg", + "backdropPath": "/mu3q8eeDc2NH112sKQbmrJFe0Vs.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2017-08-17", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 5.876, + "voteCount": 137, + "popularity": 7.1105 + }, + { + "id": 31225, + "title": "Paris Is Burning", + "originalTitle": "Paris Is Burning", + "overview": "Where does voguing come from, and what, exactly, is throwing shade? This landmark documentary provides a vibrant snapshot of the 1980s through the eyes of New York City's African American and Latinx Harlem drag-ball scene. Made over seven years, PARIS IS BURNING offers an intimate portrait of rival fashion \"houses,\" from fierce contests for trophies to house mothers offering sustenance in a world rampant with homophobia, transphobia, racism, AIDS, and poverty. Featuring legendary voguers, drag queens, and trans women — including Willi Ninja, Pepper LaBeija, Dorian Corey, and Venus Xtravaganza.", + "posterPath": "/90rCWH41mj9hjHUEy2SOHfuAOl3.jpg", + "backdropPath": "/8yJg7SOv0hbuOYhFwq3FW8GajuM.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1991-03-13", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 520, + "popularity": 7.1096 + }, + { + "id": 12662, + "title": "Psycho III", + "originalTitle": "Psycho III", + "overview": "When Maureen Coyle, a suicidal nun who resembles Norman's former victim, Marion Crane, arrives at the motel, all bets are off and \"Mother\" is less than happy.", + "posterPath": "/tgV4eeW0X7os7p3SYbNwDI0NYGa.jpg", + "backdropPath": "/vzkuGQe1596nXK5pluip9OHwFXF.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "1986-04-02", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 408, + "popularity": 7.1093 + }, + { + "id": 650498, + "title": "Twittering Birds Never Fly: The Clouds Gather", + "originalTitle": "囀る鳥は羽ばたかない The clouds gather", + "overview": "In the hyper-masculine criminal underworld, a masochistic high-ranking yakuza and his newly-assigned bodyguard become increasingly drawn to each other.", + "posterPath": "/rFfA75af7x1IVZq25IWVqvDhgN8.jpg", + "backdropPath": "/xC9s8cOWtojn5UAmrDvB7iaakrr.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2020-02-27", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.606, + "voteCount": 34, + "popularity": 7.109 + }, + { + "id": 1058694, + "title": "Radical", + "originalTitle": "Radical", + "overview": "In a Mexican border town plagued by neglect, corruption, and violence, a frustrated teacher tries an unorthodox new method to break through his students’ apathy and unlock their curiosity, their potential... and perhaps even their genius.", + "posterPath": "/lOAJYpX608aT0ApIv63ZTnol27Y.jpg", + "backdropPath": "/gutU32BiBxJvJdzLv5RWC9hQhNh.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-10-19", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 8.356, + "voteCount": 482, + "popularity": 7.1086 + }, + { + "id": 7364, + "title": "Sahara", + "originalTitle": "Sahara", + "overview": "Seasoned adventurer and treasure hunter Dirk Pitt, a former Navy SEAL, sets out for the African desert with his wisecracking buddy Al in search of a confederate ironclad battleship rumored to have vanished long ago, the main draw being the treasure supposedly hidden within the lost vessel. When the daring duo come across Dr. Eva Rojas, a beautiful scientist who is juggling an escape from a warlord and a mission to stop the spread of a powerful plague, their desert expedition begins to heat up.", + "posterPath": "/kyY1onYxkKBDlJsheRsVbMaoQEM.jpg", + "backdropPath": "/yV2XwKndgi2JI4R7U1eoLNyT5KF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 18, + 9648 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "2005-04-06", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.912, + "voteCount": 1572, + "popularity": 7.1081 + }, + { + "id": 1290432, + "title": "A Private Life", + "originalTitle": "Vie privée", + "overview": "Psychiatrist Lilian Steiner moonlights as an amateur sleuth following the death of Paula, one of her long-time patients. Convinced that Paula’s supposed death by suicide is actually an unsolved murder, Lilian pursues her nagging suspicions.", + "posterPath": "/autix2cGJ0w47Fabzr8axN9U8Jl.jpg", + "backdropPath": "/uApLc1aWuzPW6g0J6jWdmHyewHM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-09-27", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.4, + "voteCount": 25, + "popularity": 7.1055 + }, + { + "id": 24616, + "title": "Punk: Attitude", + "originalTitle": "Punk: Attitude", + "overview": "From London's 1970 mod scene to Sonic Youth, punk music has always been about attitude and anarchy. This comprehensive rockumentary traces the roots of punk, from The Velvet Underground and the New York Dolls to the Sex Pistols and The Clash.", + "posterPath": "/39JHwg6fahbtL2qSgfxcVLbYv1t.jpg", + "backdropPath": "/kzmJxrZLvLSIGvJT9CgksfEOtMB.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 10402 + ], + "genres": [ + "Documentary", + "Music" + ], + "releaseDate": "2005-07-04", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 36, + "popularity": 7.1048 + }, + { + "id": 39274, + "title": "The Challenge", + "originalTitle": "The Challenge", + "overview": "Rick, a down-and-out American boxer, is hired to transport a sword to Japan, unaware that the whole thing is a set up in a bitter blood-feud between two brothers, one who follows the traditional path of the samurai and the other a businessman. At the behest of the businessman, Rick undertakes samurai training from the other brother, but joins his cause. He also becomes romantically involved with the samurai's daughter.", + "posterPath": "/j91nghOu6UDRXGUHoxOwZXMqgo3.jpg", + "backdropPath": "/oRtZcgMPOalplWExLkW6wij2eW6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "1982-07-23", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 5.837, + "voteCount": 49, + "popularity": 7.1043 + }, + { + "id": 655363, + "title": "Post Mortem", + "originalTitle": "Post Mortem", + "overview": "A post mortem photographer and a little girl confront ghosts in a haunted village after the First World War.", + "posterPath": "/YRqKTFtMe2uLxYziumSva42RJ1.jpg", + "backdropPath": "/qYHM1QaR86eQeKX8qi8kFtqFAGd.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2020-10-28", + "releaseYear": "2020", + "originalLanguage": "hu", + "voteAverage": 6.691, + "voteCount": 230, + "popularity": 7.1041 + }, + { + "id": 346170, + "title": "The Chosen", + "originalTitle": "The Chosen", + "overview": "When a child-stealing demon attaches itself to a little girl, her family is thrust into a battle against time in order to save the girl and send the demon back to hell.", + "posterPath": "/ntc1h25jQiz1twYFcg1zJ0gkTYF.jpg", + "backdropPath": "/kHhrYao73oc5MqZVKQsJAczOy3X.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2015-07-23", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.311, + "voteCount": 61, + "popularity": 7.1039 + }, + { + "id": 5528, + "title": "The Chorus", + "originalTitle": "Les Choristes", + "overview": "In 1940s France, a new teacher at a school for disruptive boys gives hope and inspiration.", + "posterPath": "/hUl7gSvkGygyk9wt3zy5NqpC5bb.jpg", + "backdropPath": "/eWYrrdCKd4bjOKB9DB0HtRUhI1o.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-03-17", + "releaseYear": "2004", + "originalLanguage": "fr", + "voteAverage": 7.73, + "voteCount": 2525, + "popularity": 7.1039 + }, + { + "id": 913845, + "title": "Nothing Compares", + "originalTitle": "Nothing Compares", + "overview": "Since the beginning of her career, Sinéad O’Connor has used her powerful voice to challenge the narratives she was surrounded by while growing up in predominantly Roman Catholic Ireland. Despite her agency, depth and perspective, O’Connor’s unflinching refusal to conform means that she has often been patronized and unfairly dismissed as an attention-seeking pop star.", + "posterPath": "/2GndW8LtfOonZsqmV3XKgxvmNeY.jpg", + "backdropPath": "/yC2G6MoQEt628Fv8S3FMCfpIhtf.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 10402 + ], + "genres": [ + "Documentary", + "Music" + ], + "releaseDate": "2022-09-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 49, + "popularity": 7.1035 + }, + { + "id": 271746, + "title": "Clockwork Bananas", + "originalTitle": "Clockwork Banana", + "overview": "Gilles, who operates a money losing garage, teams up with his friends Max, who operates a scrap yard, and lawyer Xavier to open a brothel catering to women. They get the idea from Gilles' secretary Irma, a former prostitute. They are assisted in the implementation by Max's wife Juliette and Sabine who is mad for Gilles. Unfortunately Gilles has fallen for Florence the daughter of the conservative Prime Minister and his wife. When the Prime Minister tries to shut down the brothel Gilles decides to stand against him in the election.", + "posterPath": "/yBHmH9vm5GakDTjGVicRXYAX7AR.jpg", + "backdropPath": "/vyEIwGtYeAkgZthFODkZDRr28hw.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1974-08-09", + "releaseYear": "1974", + "originalLanguage": "fr", + "voteAverage": 6.23, + "voteCount": 61, + "popularity": 7.1023 + }, + { + "id": 750471, + "title": "Blue Ridge", + "originalTitle": "Blue Ridge", + "overview": "A murder in a sleepy town at the heart of the Blue Ridge Mountains shocks the community and refuels a longtime feud between two families. It’s up to the new sheriff, Justin Wise, to solve the case before the town takes the law into its own hands.", + "posterPath": "/h7drkR1su6G1puizLT1lpUJpKm9.jpg", + "backdropPath": "/mKZktSUg2t7O5cC081Us4j3Xn4D.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "2020-10-20", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.962, + "voteCount": 13, + "popularity": 7.1021 + }, + { + "id": 450487, + "title": "Fast Color", + "originalTitle": "Fast Color", + "overview": "A woman is forced to go on the run when her superhuman abilities are discovered. Years after having abandoned her family, the only place she has left to hide is home.", + "posterPath": "/1zZaZGMo23NsOGoGF5HRCPWwWN7.jpg", + "backdropPath": "/4ZIoJBeYRTrqxjJh9NP1Fi2AlWr.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878 + ], + "genres": [ + "Thriller", + "Science Fiction" + ], + "releaseDate": "2019-03-29", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.952, + "voteCount": 217, + "popularity": 7.1019 + }, + { + "id": 234004, + "title": "Ratchet & Clank", + "originalTitle": "Ratchet & Clank", + "overview": "When the galaxy comes under the threat of a nefarious space captain, a mechanic and his newfound robot ally join an elite squad of combatants to save the universe.", + "posterPath": "/649xP2LST4VIrZ5cLPw7Ys9movF.jpg", + "backdropPath": "/dmyWErK0752dyJnA0YT1Vfi9HzU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 16, + 10751 + ], + "genres": [ + "Action", + "Adventure", + "Animation", + "Family" + ], + "releaseDate": "2016-04-13", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 643, + "popularity": 7.0992 + }, + { + "id": 1230208, + "title": "Squad 36", + "originalTitle": "Bastion 36", + "overview": "Forced out of his elite unit, a troubled cop launches his own rogue investigation when mysterious killings claim the lives of his former colleagues.", + "posterPath": "/rfQi2JzENT5MNJhN1nkIZMNWm4M.jpg", + "backdropPath": "/8qXc6OLHoLHBxOFIjsfbZwWDFYH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2025-02-27", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.2, + "voteCount": 174, + "popularity": 7.0948 + }, + { + "id": 1356039, + "title": "Counterattack", + "originalTitle": "Contraataque", + "overview": "When a hostage rescue mission creates a new enemy, Capt. Guerrero and his elite soldiers must face an ambush by a criminal group.", + "posterPath": "/38I76hGcFY6xB47pjm7pZwkfuAF.jpg", + "backdropPath": "/deUWVEgNh2IGjShyymZhaYP40ye.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2025-02-27", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 8.269, + "voteCount": 767, + "popularity": 7.0942 + }, + { + "id": 1209217, + "title": "Case Closed: The Million-Dollar Pentagram", + "originalTitle": "名探偵コナン 100万ドルの五稜星(みちしるべ)", + "overview": "A message has arrived from Kid the Phantom Thief, that he will steal a Japanese sword belonging to wealthy Onoe Family in Hakodate, Hokkaido. Conan and Heiji Hattori, who happened to be in Hakodate, are on the case to capture Kid. Coincidentally the family lawyer of Onoe is found murdered in the warehouse district, apparently slaughtered by a Japanese sword. The suspect is an investor/arms dealer who is said to be after Onoe family’s hidden treasure. In the North among cherry blossoms, the exciting hunt for treasure begins!", + "posterPath": "/ctboIRYQHYJMge6M6fgcwrhREsj.jpg", + "backdropPath": "/4TMkOnI6rCYxqD059aeeQSBv5mc.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 80, + 9648, + 28 + ], + "genres": [ + "Animation", + "Crime", + "Mystery", + "Action" + ], + "releaseDate": "2024-04-12", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 63, + "popularity": 7.0934 + }, + { + "id": 30163, + "title": "The Fugitives", + "originalTitle": "Les Fugitifs", + "overview": "Coming out from jail, Lucas has decided to change his life and behave like a good citizen. But when he is taken hostage in a bank by a hare-brained robber, no cops can believe he is not part of the action.", + "posterPath": "/dmrVlsTFOW6RRUpEANVpiOytHFK.jpg", + "backdropPath": "/wWIwN6ze61z0eZ8lyswY4Ab8Iw.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1986-12-17", + "releaseYear": "1986", + "originalLanguage": "fr", + "voteAverage": 6.8, + "voteCount": 412, + "popularity": 7.0927 + }, + { + "id": 14267, + "title": "Female Trouble", + "originalTitle": "Female Trouble", + "overview": "Dawn Davenport progresses from a teenage nightmare hell-bent on getting cha-cha heels for Christmas to a fame monster whose egomaniacal impulses land her in the electric chair.", + "posterPath": "/cqhIufhoORDMuFKEinV1IIYUBxD.jpg", + "backdropPath": "/utsFSjBd6Ai56BwFB8s80S1a9bC.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "1974-10-11", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 6.895, + "voteCount": 210, + "popularity": 7.0927 + }, + { + "id": 1290190, + "title": "Lokah Chapter 1: Chandra", + "originalTitle": "ലോകഃ Chapter 1: ചന്ദ്ര", + "overview": "The story follows Chandra , a mysterious, goth-influenced woman who has just moved to Bangalore and begins working night shifts at a café. Across the road from her apartment live Sunny and Venu, two aimless bachelors. Sunny becomes infatuated with Chandra, observing her odd routines, strange visitors, and reclusive nature. Their dynamic changes when Sunny gets a glimpse of Chandra in her act.", + "posterPath": "/nRn6is4m5sikO1rSoCoRT2rYtXB.jpg", + "backdropPath": "/bvJSpW4D7P6LdM8JFBEpeDCvG6s.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2025-08-28", + "releaseYear": "2025", + "originalLanguage": "ml", + "voteAverage": 7.2, + "voteCount": 31, + "popularity": 7.0911 + }, + { + "id": 761548, + "title": "Pups Alone", + "originalTitle": "Pups Alone", + "overview": "After receiving an exciting new job opportunity at a cutting edge Pet Invention company, Robert, his teenage daughter Jenna and their trusty and special border collie Charlie make the move to the new neighborhood, right before Christmas. Upon arriving, Robert meets his gorgeous next door neighbor Holly, and her sassy and spunky border collie Gidget. Before the sparks can fly, they are set upon my Robert’s conniving and obnoxious next door neighbor and project manager Victor, his neighborhood bully bulldog “Vinnie P” and the sycophantic sidekick Chihuahua “Jose”.", + "posterPath": "/2MJo65VVurU1GKqr0oDHBim0as4.jpg", + "backdropPath": "/r5915umTdrFUD9VAdI3vHsal2LI.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2021-11-19", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.855, + "voteCount": 62, + "popularity": 7.0904 + }, + { + "id": 11163, + "title": "Satyricon", + "originalTitle": "Fellini – satyricon", + "overview": "After his young lover, Gitone, leaves him for another man, Encolpio decides to kill himself, but a sudden earthquake destroys his home before he has a chance to do so. Now wandering around Rome in the time of Nero, Encolpio encounters one bizarre and surreal scene after another.", + "posterPath": "/83urUMl04GtwuuGIFpezqzi7n6m.jpg", + "backdropPath": "/kPdvXDdXIbuKKAt9gEy13FNYgbm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14 + ], + "genres": [ + "Drama", + "Fantasy" + ], + "releaseDate": "1969-09-18", + "releaseYear": "1969", + "originalLanguage": "it", + "voteAverage": 6.7, + "voteCount": 352, + "popularity": 7.09 + }, + { + "id": 967847, + "title": "Ghostbusters: Frozen Empire", + "originalTitle": "Ghostbusters: Frozen Empire", + "overview": "When the discovery of an ancient artifact unleashes an evil force, Ghostbusters new and old must join forces to protect their home and save the world from a second Ice Age.", + "posterPath": "/e1J2oNzSBdou01sUvriVuoYp0pJ.jpg", + "backdropPath": "/5cCfqeUH2f5Gnu7Lh9xepY9TB6x.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 35 + ], + "genres": [ + "Fantasy", + "Adventure", + "Comedy" + ], + "releaseDate": "2024-03-20", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.481, + "voteCount": 1979, + "popularity": 7.0881 + }, + { + "id": 54476, + "title": "Femalien", + "originalTitle": "Femalien", + "overview": "In the pursuit of perfection, an alien civilization has evolved to become beings of pure light energy, unbound by the limitations of the mortal body. But they have lost something precious along the way: the ability to experience physical pleasure. They send a representative to Earth to record human sensory experiences. Taking the form of the perfect human female, \"Kara\" uses her powers to unlock the secrets of sensuality so long forgotten on her world.", + "posterPath": "/d6iAbFxuWA0eGOV3QssmVwojabM.jpg", + "backdropPath": "/zZLfMBM9kicCSZ9P8UVRxQJvup0.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 878 + ], + "genres": [ + "Romance", + "Science Fiction" + ], + "releaseDate": "1996-09-03", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 21, + "popularity": 7.0878 + }, + { + "id": 14943, + "title": "Crows Zero", + "originalTitle": "クローズZERO", + "overview": "The students of Suzuran High compete for the King of School title. An ex-graduate yakuza is sent to kill the son of a criminal group, but he can't make himself do it as he reminds him of his youth.", + "posterPath": "/so1E9wUAXJi9hqGRNPgoVQd7HaX.jpg", + "backdropPath": "/5YqGOBbYmxWFhZJFMiQfIZdAX5R.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2007-10-26", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 365, + "popularity": 7.0854 + }, + { + "id": 864, + "title": "Cool Runnings", + "originalTitle": "Cool Runnings", + "overview": "When a Jamaican sprinter is disqualified from the Olympic Games, he enlists the help of a dishonored coach to start the first Jamaican bobsled team.", + "posterPath": "/6fXuGEb7EqGmAeUodxm7l5ELPZ.jpg", + "backdropPath": "/ucFDgf7Nw6cEwPh5o4cacp3k1aW.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12, + 18 + ], + "genres": [ + "Comedy", + "Adventure", + "Drama" + ], + "releaseDate": "1993-10-01", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.01, + "voteCount": 2172, + "popularity": 7.0843 + }, + { + "id": 1411, + "title": "The Rapture", + "originalTitle": "The Rapture", + "overview": "A lonely telephone operator leading an empty, amoral life finds God – only to have her faith continually tested in ways beyond what she could have imagined.", + "posterPath": "/4EkFm13ecqO0eszr7OKT8vf1YjJ.jpg", + "backdropPath": "/ylXFsNIhzq8A5nEqLhPdDYPOnVo.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 18, + 14, + 53 + ], + "genres": [ + "Mystery", + "Drama", + "Fantasy", + "Thriller" + ], + "releaseDate": "1991-10-04", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 90, + "popularity": 7.0825 + }, + { + "id": 157289, + "title": "Curfew", + "originalTitle": "Curfew", + "overview": "At the lowest point of his life, Richie gets a call from his estranged sister asking him to look after his nine-year old niece, Sophia, for a few hours.", + "posterPath": "/yQ4AHeUd1hGhX7xKt8OUj9Gn3oc.jpg", + "backdropPath": "/ztlLXGHDXzTZChUs1ZmWyZvuR3U.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-03-28", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 135, + "popularity": 7.0817 + }, + { + "id": 396616, + "title": "The King's Choice", + "originalTitle": "Kongens nei", + "overview": "On 9 April 1940, German soldiers arrive in the city of Oslo. The King of Norway faces a choice that will change his country forever. The King's Choice is a story about the three most dramatic days in Norway's history, the royal family's escape and King Haakon's difficult choice after Nazi Germany's invasion of Norway.", + "posterPath": "/qulAxlraNWYrvtq2lIi6AakbeUs.jpg", + "backdropPath": "/7X2OUTjCpoY3JYVnoZgLY7OzKn7.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 28, + 18 + ], + "genres": [ + "War", + "Action", + "Drama" + ], + "releaseDate": "2016-09-29", + "releaseYear": "2016", + "originalLanguage": "no", + "voteAverage": 6.9, + "voteCount": 169, + "popularity": 7.0816 + }, + { + "id": 614208, + "title": "The Ascent", + "originalTitle": "The Ascent", + "overview": "Special ops squad \"Hell's Bastards\" are sent to infiltrate a civil war to retrieve intel. The unit soon find themselves trapped on a never-ending stairwell forced to climb or die. To survive, they must revisit their past sins if they ever want to get off.", + "posterPath": "/zBmrX48WnIy2fP2qrlnXfSF8Dp8.jpg", + "backdropPath": "/9clm1gYq46wqaBPjtTdkKVycHit.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 878 + ], + "genres": [ + "Horror", + "Action", + "Science Fiction" + ], + "releaseDate": "2019-10-17", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 25, + "popularity": 7.0793 + }, + { + "id": 10412, + "title": "Romper Stomper", + "originalTitle": "Romper Stomper", + "overview": "Nazi skinheads in Melbourne take out their anger on local Vietnamese, who are seen as threatening racial purity. Finally the Vietnamese have had enough and confront the skinheads in an all-out confrontation, sending the skinheads running. A woman who is prone to epileptic seizures joins the skins' merry band, and helps them on their run from justice, but is her affliction also a sign of impurity?", + "posterPath": "/urE3Jzl3zuz2XUmAq2rXubYn3SD.jpg", + "backdropPath": "/cfGKEah2uUli5HPG1Ry3QK3lwDh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "1992-03-05", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 541, + "popularity": 7.0791 + }, + { + "id": 1034662, + "title": "Showroom", + "originalTitle": "Showroom", + "overview": "Liezl, an ambitious agent, learns that her colleague, Susanah, uses her body to sell condo units; so she imitates her scheme. When the tables turn, Liezl begins to face her punishments one by one.", + "posterPath": "/rMtfinteQu34A9mGKBOW0BY7zT0.jpg", + "backdropPath": "/1N7IexWDCWRzMynWyjESakKg8Eb.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2022-11-11", + "releaseYear": "2022", + "originalLanguage": "tl", + "voteAverage": 4.9, + "voteCount": 10, + "popularity": 7.0782 + }, + { + "id": 18419, + "title": "Shooting Stars", + "originalTitle": "3 Zéros", + "overview": "A young Hungarian dreams of playing for the French football team and will get the help of a couple of friends.", + "posterPath": "/tYq9Ht0gSwiUn7O1XrLeXv65uEP.jpg", + "backdropPath": "/hvmuMRJ3cg1Xqz4AL6Jq4Fj51ue.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2002-04-24", + "releaseYear": "2002", + "originalLanguage": "fr", + "voteAverage": 4.6, + "voteCount": 127, + "popularity": 7.0777 + }, + { + "id": 170, + "title": "28 Days Later", + "originalTitle": "28 Days Later", + "overview": "Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.", + "posterPath": "/sQckQRt17VaWbo39GIu0TMOiszq.jpg", + "backdropPath": "/x085XrfEmU31QeXgMFttmuoGr0Y.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 878 + ], + "genres": [ + "Horror", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2002-10-31", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 7986, + "popularity": 7.0771 + }, + { + "id": 36351, + "title": "Light Sleeper", + "originalTitle": "Light Sleeper", + "overview": "John LeTour is a recovering drug user who suffers insomnia and still deals to a high-end New York clientele, even though he’s trying to move on from the business. John’s professional midlife crisis becomes something more acute — and dangerous — when he re-encounters an old flame while a string of seemingly drug-related murders rocks the city.", + "posterPath": "/9vOyeRXNIxosjL3lxWUAVmKmvBE.jpg", + "backdropPath": "/kTu8o04UGSB1n0OV8cXwenHzg2k.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1992-08-21", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 205, + "popularity": 7.0755 + }, + { + "id": 11832, + "title": "Babette's Feast", + "originalTitle": "Babettes gæstebud", + "overview": "A French housekeeper with a mysterious past brings quiet revolution in the form of one exquisite meal to a circle of starkly pious villagers in late 19th century Denmark.", + "posterPath": "/3ibptSbnAHd0SUBnOKapNZQBpCl.jpg", + "backdropPath": "/iFl8eN4vWcMNNozmJk8E7cLgeT9.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1987-08-11", + "releaseYear": "1987", + "originalLanguage": "da", + "voteAverage": 7.2, + "voteCount": 425, + "popularity": 7.075 + }, + { + "id": 365717, + "title": "The Audition", + "originalTitle": "The Audition", + "overview": "Robert De Niro and Leonardo DiCaprio must compete for the lead role in Martin Scorsese's next film.", + "posterPath": "/t1PDIeDpJGgI9JPqIRMuG7WDdId.jpg", + "backdropPath": "/r6R0n7aNgSeFX7SgLgU8cM4SZPy.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-10-03", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.214, + "voteCount": 147, + "popularity": 7.0744 + }, + { + "id": 626735, + "title": "Dog", + "originalTitle": "Dog", + "overview": "An army ranger and his dog embark on a road trip along the Pacific Coast Highway to attend a friend's funeral.", + "posterPath": "/zHQy4h36WwuCetKS7C3wcT1hkgA.jpg", + "backdropPath": "/cGnaZm6EQOJESde3Vv4v53Zk4gN.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-02-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.305, + "voteCount": 1697, + "popularity": 7.0743 + }, + { + "id": 39101, + "title": "Dragon Ball Z: The Tree of Might", + "originalTitle": "ドラゴンボールZ 地球まるごと超決戦", + "overview": "Goku and friends must stop a band of space pirates from consuming fruit from the Tree of Might before it's destructive powers drain Earth's energy.", + "posterPath": "/fDX4Dp8IKvjBAaEb5MOJrGkxWX0.jpg", + "backdropPath": "/s0XaJEApAfgMgKUBy6UfOnNTtwR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "1990-06-07", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 6.53, + "voteCount": 605, + "popularity": 7.0737 + }, + { + "id": 243270, + "title": "Bahia Blanca", + "originalTitle": "Bahía blanca", + "overview": "Pocho Martin's body is found dead on the shore of a fishing village. According to the forensic Ramiro, Pocho has been assassinated, which alerts the Commissioner Carlos. Young Silvia, Pocho's friend, receives the sad news but is more concerned about her impending wedding with Andy. Crackpot Oscar speaks to Carlos of the dangerous sirens of Deer Island, evil women who attract sailors and annihilate them. When Ramiro and Carlos go to the island, they find the sisters Lila and Mary, who run a tavern / brothel near the beach. Carlos and Lila are old acquaintances and celebrate the reunion, but the murder of Pocho remains unsolved.", + "posterPath": "/igQ6DhvjtVgCd4x1cD5ZGNWDOP2.jpg", + "backdropPath": "/nE2ay0we7ZTBZ6D4L80VXMfR1Uu.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "1984-01-01", + "releaseYear": "1984", + "originalLanguage": "es", + "voteAverage": 5.1, + "voteCount": 17, + "popularity": 7.0731 + }, + { + "id": 499338, + "title": "I Believe", + "originalTitle": "I Believe", + "overview": "A 9 year old boy experiences God's power in a supernatural way.", + "posterPath": "/7DVRR21ol8EojJxAlaNcLTzLBvI.jpg", + "backdropPath": "/5Tw3Z9vcu1Hwo1CijEPineKPkFO.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2019-06-06", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 145, + "popularity": 7.073 + }, + { + "id": 305127, + "title": "The Frame", + "originalTitle": "The Frame", + "overview": "Two strangers find their lives colliding in an impossible way. Alex is a methodical cargo thief working for a dangerous cartel. Sam is a determined paramedic trying to save the world while running from her past.", + "posterPath": "/i1xuWy0sHQ1s5UfNcwN2VYnbGhg.jpg", + "backdropPath": "/ipEGo7bzwQH5H5r10qko0yG9FoT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878 + ], + "genres": [ + "Drama", + "Science Fiction" + ], + "releaseDate": "2014-11-21", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 103, + "popularity": 7.0728 + }, + { + "id": 1149504, + "title": "Honey Don't!", + "originalTitle": "Honey Don't!", + "overview": "Honey O'Donahue, a small-town private investigator, delves into a series of strange deaths tied to a mysterious church.", + "posterPath": "/fJm3kmd9NLZWypMas7g34oNFgbk.jpg", + "backdropPath": "/1BpjcVIztlsk0mym7OLF6CW97eh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2025-08-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.656, + "voteCount": 225, + "popularity": 7.0715 + }, + { + "id": 516806, + "title": "Last Sentinel", + "originalTitle": "Last Sentinel", + "overview": "Set in the future on a war-ravaged Earth, four exhausted soldiers man Sentinel - a remote military base in a vast ocean that separates two warring continents. While their tour of duty ended three months ago, the relief crew still hasn't arrived and as the empty weeks turn to months, paranoia descends, testing relationships to breaking point...", + "posterPath": "/pD1o9B0ibENdNroYrBCQemG2jnr.jpg", + "backdropPath": "/lpARmzSzhb1g5wWpXjrldpAL3ew.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2023-03-17", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.445, + "voteCount": 209, + "popularity": 7.0715 + }, + { + "id": 1184495, + "title": "Joy", + "originalTitle": "Joy", + "overview": "A young nurse, a visionary scientist and an innovative surgeon face opposition from the church, state, media and medical establishment, in their pursuit of the world’s first ‘test tube baby’, Louise Joy Brown.", + "posterPath": "/gWcq6GZcpo8ULwB7FRCZ0Dw8L3F.jpg", + "backdropPath": "/6euea0NQBP5ZrCRJmXquj7bRRbX.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-15", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.811, + "voteCount": 143, + "popularity": 7.0713 + }, + { + "id": 52212, + "title": "Miranda", + "originalTitle": "Miranda", + "overview": "In 1950s Ferrara, a lonely innkeeper explores a series of relationships while awaiting her missing husband’s return from war.", + "posterPath": "/9RRu3jv01RpK73ABX1xdUl8uvFg.jpg", + "backdropPath": "/qYCSR5V7E6AupsLdifUW1txJUtT.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1985-10-15", + "releaseYear": "1985", + "originalLanguage": "it", + "voteAverage": 5.1, + "voteCount": 103, + "popularity": 7.0694 + }, + { + "id": 87421, + "title": "Riddick", + "originalTitle": "Riddick", + "overview": "Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.", + "posterPath": "/pUul9pGWOKT7X0smkTvsIEIQxcP.jpg", + "backdropPath": "/naGU49u4BXynQ1o5L755pfs8dom.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "2013-09-02", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.336, + "voteCount": 4278, + "popularity": 7.0679 + }, + { + "id": 586863, + "title": "Les Misérables", + "originalTitle": "Les Misérables", + "overview": "Stéphane has recently joined the Anti-Crime Squad in Montfermeil, in the suburbs of Paris, France, where Victor Hugo set his famed novel “Les Miserables”. Alongside his new colleagues Chris and Gwada – both experienced members of the team – he quickly discovers tensions running high between local gangs. When the trio finds themselves overrun during the course of an arrest, a drone captures the encounter, threatening to expose the reality of everyday life.", + "posterPath": "/pUc2ZaIxvPHROjT0Trd6tpSnTme.jpg", + "backdropPath": "/6K74rGGGjKGrblGTa7S9yRcUtnF.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2019-11-14", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 7.567, + "voteCount": 1575, + "popularity": 7.0666 + }, + { + "id": 763788, + "title": "Dangerous", + "originalTitle": "Dangerous", + "overview": "A reformed sociopath heads to a remote island after the death of his brother. Soon after his arrival, the island falls under siege from a deadly gang of mercenaries, and when he discovers their role in his brother’s demise, he sets out on a relentless quest for vengeance.", + "posterPath": "/8RqdjlPjyN59FnMkw5nnpaRXJde.jpg", + "backdropPath": "/mo57hzhW3BcZL1f7MNteWKHsmlN.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2021-11-05", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 493, + "popularity": 7.0658 + }, + { + "id": 20980, + "title": "Liquid Sky", + "originalTitle": "Liquid Sky", + "overview": "An alien creature invades New York's punk subculture in its search for an opiate released by the brain during an orgasm.", + "posterPath": "/jbpP3bmiyDMmEussO9tDOrogsiI.jpg", + "backdropPath": "/nsiats0DJC2Kyu37ZHYIMGp7N3K.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 35, + 53 + ], + "genres": [ + "Science Fiction", + "Comedy", + "Thriller" + ], + "releaseDate": "1982-08-01", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 129, + "popularity": 7.0655 + }, + { + "id": 23165, + "title": "Bone Dry", + "originalTitle": "Bone Dry", + "overview": "Eddie finds himself being forced at a gunpoint, by an unseen assailant, on a dark and brutal journey through the harsh terrain of the Mojave desert. His nemesis is Jimmy, a man with an aberrant agenda; armed with a rifle, a scope, walkie-talkies and a truck, he has organized a series of ambushes and mantraps designed to push Eddie to the limits of his humanity and beyond.", + "posterPath": "/3P5JdJBHAZRDtksicmGYZAnQxkK.jpg", + "backdropPath": "/2VUtjy87wkeFbfTFJdValx68atm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2007-05-17", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 24, + "popularity": 7.0646 + }, + { + "id": 199423, + "title": "Visitors", + "originalTitle": "Visitors", + "overview": "From the director of KOYAANISQATSI, an astonishing film that documents the drama of how we both live and witness what we experience. Shot in rich black and white Godfrey Reggio's latest film finds the full spectrum of emotion in human faces, gorgeous landscapes and even the behavior of an especially expressive gorilla.", + "posterPath": "/pvdo77M6Np1Jkrneczf7V2xFoKn.jpg", + "backdropPath": "/oWjpbnertrYlVkOsEqLohmnjIiu.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2013-09-08", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.233, + "voteCount": 30, + "popularity": 7.0643 + }, + { + "id": 1140648, + "title": "Double Blind", + "originalTitle": "Double Blind", + "overview": "After an experimental drug trial goes awry, the test subjects face a terrifying side effect: if you fall asleep you die. Trapped in an isolated facility, panic ensues as they try to escape and somehow stay awake.", + "posterPath": "/7JG4otyEyfTSECOq8VkFRdAA01M.jpg", + "backdropPath": "/pcjWAV4Iw7sl3dpV1dfIoxbbTuu.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 53 + ], + "genres": [ + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2024-02-09", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.003, + "voteCount": 155, + "popularity": 7.0595 + }, + { + "id": 198277, + "title": "Begin Again", + "originalTitle": "Begin Again", + "overview": "Gretta, a budding songwriter, finds herself alone after her boyfriend Dave ditches her. Her life gains purpose when Dan, a record label executive, notices her talent.", + "posterPath": "/qx4HXHXt528hS4rwePZbZo20xqZ.jpg", + "backdropPath": "/xrSRmL6pXnRfu9vKwayILkNgLP.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10402, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Music", + "Romance", + "Drama" + ], + "releaseDate": "2014-06-27", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.235, + "voteCount": 3909, + "popularity": 7.0592 + }, + { + "id": 118249, + "title": "Thriller Night", + "originalTitle": "Thriller Night", + "overview": "A Shrek parody of Michael Jackson's Thriller song and music video, with Donkey singing.", + "posterPath": "/mPQei2YUIY0Ljd3O5Wy7LDuvC8S.jpg", + "backdropPath": "/bF2KdequbcuOyR8ZKY52loVzKY1.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10402, + 27, + 35 + ], + "genres": [ + "Animation", + "Music", + "Horror", + "Comedy" + ], + "releaseDate": "2011-09-13", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.707, + "voteCount": 104, + "popularity": 7.0592 + }, + { + "id": 1408208, + "title": "Exit 8", + "originalTitle": "8番出口", + "overview": "A man gets lost in an underground passage. He follows the \"guide\" through the passage, but one after another, strange things happen to him. Is this space real? Or an illusion? Will the man be able to escape the passage?", + "posterPath": "/nQXYTvm6AY4WmtcPskroqC7Skh.jpg", + "backdropPath": "/f5csnjqQj5qdqc0EZchon94hXZ6.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2025-08-28", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5.994, + "voteCount": 85, + "popularity": 7.059 + }, + { + "id": 1472668, + "title": "Wick Is Pain", + "originalTitle": "Wick Is Pain", + "overview": "Witness the never-before-seen footage and true story behind the John Wick phenomenon – from independent film to billion-dollar franchise.", + "posterPath": "/ctZ9bjmCYyfFt3cUepc9axr0zHs.jpg", + "backdropPath": "/fog8Vbeg1KOZAucucPxgYpXJ0a0.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2025-05-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.469, + "voteCount": 81, + "popularity": 7.0584 + }, + { + "id": 624789, + "title": "Naked Singularity", + "originalTitle": "Naked Singularity", + "overview": "When a successful New York public defender loses his first case, he is pulled into a drug heist by a former client in an effort to beat the broken system at its own game.", + "posterPath": "/iJwnO2Tou9hwgy1olFn3JcCj7Sx.jpg", + "backdropPath": "/b87NZg2scULPhCgJxhx1nIxpczg.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2021-08-06", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 78, + "popularity": 7.0571 + }, + { + "id": 431, + "title": "Cube", + "originalTitle": "Cube", + "overview": "A group of strangers find themselves trapped in a maze-like prison. It soon becomes clear that each of them possesses the peculiar skills necessary to escape, if they don't wind up dead first.", + "posterPath": "/x4BTjxdrOKC27FcSkBh8KPEgnum.jpg", + "backdropPath": "/3TimUBrXMVblpnTsyg4HssGVbBv.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878, + 9648 + ], + "genres": [ + "Thriller", + "Science Fiction", + "Mystery" + ], + "releaseDate": "1998-07-11", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.808, + "voteCount": 5032, + "popularity": 7.0564 + }, + { + "id": 506464, + "title": "The Awakener", + "originalTitle": "O Doutrinador", + "overview": "Miguel is a federal agent, highly trained and skilled in weapons. After experiencing trauma in his personal life, he sets out on a journey of revenge, assuming the identity of a masked vigilante. The Awakener decides to do justice with his own hands by exterminating corrupt politicians.", + "posterPath": "/s9BXI7nQodknf2O9JDe3osSAPCl.jpg", + "backdropPath": "/gkeZ0OGJhzRYqZcbdyyidItjVC3.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 80, + 18 + ], + "genres": [ + "Thriller", + "Action", + "Crime", + "Drama" + ], + "releaseDate": "2018-11-01", + "releaseYear": "2018", + "originalLanguage": "pt", + "voteAverage": 6.5, + "voteCount": 151, + "popularity": 7.0559 + }, + { + "id": 458080, + "title": "Filmworker", + "originalTitle": "Filmworker", + "overview": "The story of Leon Vitali, who surrendered his promising acting career to become Stanley Kubrick's devoted right-hand man.", + "posterPath": "/qmZDdrb0nwrV6UMNQQWQh60t7pq.jpg", + "backdropPath": "/mMNamhKWDeddUOi4W1JqBMro1ng.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2018-05-11", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.099, + "voteCount": 76, + "popularity": 7.0554 + }, + { + "id": 931628, + "title": "A Sacrifice", + "originalTitle": "A Sacrifice", + "overview": "American social psychologist Ben Monroe investigates a local cult connected to a disturbing event. While he immerses himself into his work, his rebellious teenage daughter, Mazzy, gets involved with a mysterious local boy, who introduces her to the city’s underground party scene. As these two worlds head towards an intersection, Mazzy finds herself in great danger and Ben will need to race against the clock to save her.", + "posterPath": "/ihXINKQfzdaVKvZwZqmchy20uVD.jpg", + "backdropPath": "/ch0kqAxTI6VMgDNPWCiN0ZFCwfs.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2024-06-28", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 109, + "popularity": 7.0542 + }, + { + "id": 2153, + "title": "The Driver", + "originalTitle": "The Driver", + "overview": "The Driver specializes in driving getaway cars for robberies. His exceptional talent has prevented him from being caught yet. After another successful flight from the police a self-assured detective makes it his primary goal to catch the Driver. He promises pardons to a gang if they help to convict him in a set-up robbery. The Driver seeks help from The Player to mislead the detective.", + "posterPath": "/zSpk2OH4MCgLGB06XDv4YUfBTv6.jpg", + "backdropPath": "/qJiaKFJ25vElTeDgxOyU7QU5nGZ.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 28 + ], + "genres": [ + "Crime", + "Thriller", + "Action" + ], + "releaseDate": "1978-06-08", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.171, + "voteCount": 482, + "popularity": 7.0542 + }, + { + "id": 876911, + "title": "Parallel", + "originalTitle": "Parallel", + "overview": "Grief-stricken after the loss of her child, Vanessa takes refuge at a lake house only to be met with an aberration of herself from a parallel universe and realizes the multiverse gates hold the key to releasing her grief or trapping her forever.", + "posterPath": "/4RQ2xOgRjw00ge7f2srg3bBAwZp.jpg", + "backdropPath": "/zky1xbkgDwCMiNOLFoPRyjHMo2w.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 18 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Drama" + ], + "releaseDate": "2024-02-23", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.384, + "voteCount": 56, + "popularity": 7.0534 + }, + { + "id": 10910, + "title": "Moulin Rouge", + "originalTitle": "Moulin Rouge", + "overview": "In 1890 Paris, Moulin Rouge is a nightclub where crippled artist Toulouse-Lautrec feels like he fits in. In the following years, he meets two women who provide an opportunity for him to find true love.", + "posterPath": "/eNly1s5DXQUTyjvfmopJPwwPiMH.jpg", + "backdropPath": "/buWnLrkfAEOEo85CcfBWrS0ykY9.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1952-12-23", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 105, + "popularity": 7.0534 + }, + { + "id": 471493, + "title": "Ryde", + "originalTitle": "Ryde", + "overview": "Technology brings us closer. Or perhaps it brings strangers, a little too close. But how much can you really trust someone? With a new ride share service, you never know who will be getting in a car with. Or if you'll ever get out.", + "posterPath": "/9beQCY3w1GiqCSeAQeU4GBb7oZW.jpg", + "backdropPath": "/rMtxdxpt2f7HkWmYqR5jgDfE8Mb.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 80 + ], + "genres": [ + "Thriller", + "Horror", + "Crime" + ], + "releaseDate": "2017-09-15", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 95, + "popularity": 7.053 + }, + { + "id": 1047223, + "title": "The Vourdalak", + "originalTitle": "Le Vourdalak", + "overview": "The Marquis d’Urfé finds refuge in the home of a strange family after becoming lost in a hostile forest while working as an emissary for the King of France.", + "posterPath": "/sNyfKJUgabNcKSOw7C7hag4ANiU.jpg", + "backdropPath": "/4DZ9rYfdLvoehzGZ7wSjMfp3Uy2.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 18 + ], + "genres": [ + "Fantasy", + "Horror", + "Drama" + ], + "releaseDate": "2023-10-25", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.4, + "voteCount": 64, + "popularity": 7.0527 + }, + { + "id": 760099, + "title": "Living", + "originalTitle": "Living", + "overview": "London, 1953. Mr. Williams, a veteran civil servant, is an important cog within the city's bureaucracy as it struggles to rebuild in the aftermath of World War II. Buried under paperwork at the office and lonely at home, his life has long felt empty and meaningless. Then a devastating medical diagnosis forces him to take stock, and to try and grasp some fulfilment before it passes permanently beyond reach.", + "posterPath": "/zUJcp0rpUqp2GSk7t9jvAiZsXtM.jpg", + "backdropPath": "/vxxCUHZlPuwepCeZMYLmbXCdOP1.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-11-04", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 477, + "popularity": 7.0519 + }, + { + "id": 47261, + "title": "Carancho", + "originalTitle": "Carancho", + "overview": "Sosa is a lawyer who haunts hospital waiting rooms hoping to represent the victims of traffic accidents in insurance claims. When he falls in love with ambulance medic Luján, he tries to leave this dark business but the shady law firm that he works for won’t let him off that easily.", + "posterPath": "/gtj5lQwQiV3x6nAdRERQRm39ovm.jpg", + "backdropPath": "/vzhb18e8CVKhs3KAwhOb64XOM63.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 10749 + ], + "genres": [ + "Thriller", + "Drama", + "Romance" + ], + "releaseDate": "2010-05-06", + "releaseYear": "2010", + "originalLanguage": "es", + "voteAverage": 6.7, + "voteCount": 168, + "popularity": 7.0514 + }, + { + "id": 33326, + "title": "Phantom Racer", + "originalTitle": "Phantom Racer", + "overview": "Seventeen years after being killed in a fiery accident, a racing car driver returns from the dead to seek vengeance on his enemies.", + "posterPath": "/AiyTWEj4pVIVFM1ltM6T95Yrwi3.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 53, + 10770 + ], + "genres": [ + "Horror", + "Action", + "Thriller", + "TV Movie" + ], + "releaseDate": "2009-08-22", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 24, + "popularity": 7.051 + }, + { + "id": 176085, + "title": "White Reindeer", + "originalTitle": "White Reindeer", + "overview": "After an unexpected tragedy, Suzanne searches for the true meaning of Christmas during one sad, strange December in suburban Virginia.", + "posterPath": "/3uWOtVSd28oDwV1E7ZKTcfY3McV.jpg", + "backdropPath": "/7StVyZiKacQxHfuwsvnSDt8XK8B.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-12-06", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.948, + "voteCount": 29, + "popularity": 7.0498 + }, + { + "id": 39504, + "title": "Moolaadé", + "originalTitle": "Moolaadé", + "overview": "When a woman shelters a group of girls from suffering female genital mutilation, she starts a conflict that tears her village apart.", + "posterPath": "/9S7lWdLExHw6LP3Vq7smiyGY5MR.jpg", + "backdropPath": "/3v7Y2bx5gSSlQGBUz9O0QX9RyRB.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-08-04", + "releaseYear": "2004", + "originalLanguage": "bm", + "voteAverage": 7.158, + "voteCount": 73, + "popularity": 7.0496 + }, + { + "id": 982940, + "title": "Due Justice", + "originalTitle": "Due Justice", + "overview": "An attorney with a military past hunts down the gang who killed his wife and took his daughter.", + "posterPath": "/osUFKfa5D1wskPHahUM3GAm1HVh.jpg", + "backdropPath": "/y3A08SqEHqIvelH304qz4GUTLnx.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2023-11-24", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.033, + "voteCount": 76, + "popularity": 7.0491 + }, + { + "id": 365351, + "title": "Mr. Boogedy", + "originalTitle": "Mr. Boogedy", + "overview": "A novelty-salesman moves his family into a new house. Initially dismissing incidents as more of their father's practical jokes, the family soon learns that the house is haunted by people who lived in the house 300 years previously.", + "posterPath": "/afux5if8PYpWOMSlfQ3u2ca6Yqs.jpg", + "backdropPath": "/pg2r5Aya5YJaVXN8TAVGN4ZPZ0v.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 27, + 12, + 18 + ], + "genres": [ + "TV Movie", + "Horror", + "Adventure", + "Drama" + ], + "releaseDate": "1986-04-20", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 42, + "popularity": 7.049 + }, + { + "id": 175574, + "title": "Free Birds", + "originalTitle": "Free Birds", + "overview": "Two turkeys from opposite sides of the tracks must put aside their differences and team up to travel back in time to change the course of history—and get turkey off the holiday menu for good.", + "posterPath": "/gnSU2wUBq2gTkBEkxY8C1d1fXAQ.jpg", + "backdropPath": "/bYCYL5mVX4unStJy34wWuofVq2O.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2013-10-30", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.877, + "voteCount": 823, + "popularity": 7.0476 + }, + { + "id": 46645, + "title": "Querô", + "originalTitle": "Querô", + "overview": "Querô is an orphan teenager, living alone near the docks in Santos, Brazil. His mother, a prostitute, died when he was a baby, and he was raised in the bordello where she worked. Believing he rules his own destiny, he refuses to compromise with anyone else, the corrupt policemen always chasing him, the oppressive discipline in the juvenile institution Febem, or the drug dealers who try to lure him. But this independence has a price.", + "posterPath": "/gZXhCMSoapkSGqnYRhKcpxQfYA7.jpg", + "backdropPath": "/wHhluS1ZZ2ohZR5DIWGhDjTVbEQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2007-03-17", + "releaseYear": "2007", + "originalLanguage": "pt", + "voteAverage": 6.2, + "voteCount": 26, + "popularity": 7.0467 + }, + { + "id": 24655, + "title": "The Car", + "originalTitle": "The Car", + "overview": "The Utah community of Santa Ynez is being terrorized by a mysterious black coupe that appears out of nowhere and begins running people down. After the car kills off the town sheriff, Captain Wade Parent is determined to stop the murderous driver.", + "posterPath": "/gFM9yMrO4fQMiG440Lx6bazB517.jpg", + "backdropPath": "/4wmT2KQrxA6pT6R4mN6kx8cqdFI.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 53, + 9648 + ], + "genres": [ + "Horror", + "Action", + "Thriller", + "Mystery" + ], + "releaseDate": "1977-05-12", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 310, + "popularity": 7.0465 + }, + { + "id": 2024, + "title": "The Patriot", + "originalTitle": "The Patriot", + "overview": "After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.", + "posterPath": "/fWZd815QxUCUcrWQZwUkAp9ljG.jpg", + "backdropPath": "/jSHHUHRcShP6DJbg0H2lO4A8m9x.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752, + 28 + ], + "genres": [ + "Drama", + "History", + "War", + "Action" + ], + "releaseDate": "2000-06-28", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.187, + "voteCount": 4144, + "popularity": 7.0463 + }, + { + "id": 228445, + "title": "Stockholm Stories", + "originalTitle": "Stockholm Stories", + "overview": "The lives of five seemingly unrelated lost souls intertwine in Sweden’s chilly capital in this delicate and wryly funny ensemble film. A precocious yet untalented young writer, a friendless advertising genius, a tight-lipped workaholic, a shy upper-class boy with a secret crush, and a recently dumped young woman all come to realize hard truths about love and life over the course of several days.", + "posterPath": "/acav5g5CbrlyFs5PQSQBRWfsBeq.jpg", + "backdropPath": "/c5R8pKe7vVsabYQCjWBkQSW6hlD.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-10-12", + "releaseYear": "2013", + "originalLanguage": "sv", + "voteAverage": 6.1, + "voteCount": 14, + "popularity": 7.0433 + }, + { + "id": 1244492, + "title": "Look Back", + "originalTitle": "ルックバック", + "overview": "Popular, outgoing Fujino is celebrated by her classmates for her funny comics in the class newspaper. One day, her teacher asks her to share the space with Kyomoto, a truant recluse whose beautiful artwork sparks a competitive fervor in Fujino. What starts as jealousy transforms when Fujino realizes their shared passion for drawing.", + "posterPath": "/4f2EcNkp1Mvp9wE5w7HKxcmACWg.jpg", + "backdropPath": "/2okfik8YwzSfdETpT5cUClSiGFO.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-06-28", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.037, + "voteCount": 435, + "popularity": 7.0429 + }, + { + "id": 601796, + "title": "Alienoid", + "originalTitle": "외계+인 1부", + "overview": "Gurus in the late Goryeo dynasty try to obtain a fabled, holy sword, and humans in 2022 hunt down an alien prisoner that is locked in a human's body. The two parties cross paths when a time-traveling portal opens up.", + "posterPath": "/8QVDXDiOGHRcAD4oM6MXjE0osSj.jpg", + "backdropPath": "/7ZP8HtgOIDaBs12krXgUIygqEsy.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 14, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Fantasy", + "Adventure" + ], + "releaseDate": "2022-07-20", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 6.794, + "voteCount": 497, + "popularity": 7.0427 + }, + { + "id": 172385, + "title": "Rio 2", + "originalTitle": "Rio 2", + "overview": "It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.", + "posterPath": "/gVNTBrjxh2YRmQFjlaqrNbHVvrd.jpg", + "backdropPath": "/eg2jxQ1FFi6ENDfyMIMC5odpcU0.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2014-03-19", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 3655, + "popularity": 7.042 + }, + { + "id": 417004, + "title": "The Escape", + "originalTitle": "The Escape", + "overview": "After the controversial disappearance of their Chief Medical Officer, a shadowy bio genetics company is under siege by the FBI for secretly cloning humans. Amidst the chaos, Molgen’s head mercenary Holt is sneaking out the last living clone, a young woman named Lily to a mysterious buyer. Holt has hired The Driver, accompanied by a heavily armed squadron of fellow Molgen mercenaries, to evade the authorities and deliver Lily and himself to the buyer. The journey takes an unexpected turn and Holt is forced to take matters into his own hands, as the driver once again demonstrates his mettle and extraordinary driving skills.", + "posterPath": "/nKm8oOyjC88l0Iggwuye4ayMvWF.jpg", + "backdropPath": "/wi0pcBWcnvEz6fS3iU15kzX6f6D.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2016-10-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 48, + "popularity": 7.0415 + }, + { + "id": 975902, + "title": "Boudica", + "originalTitle": "Boudica", + "overview": "Inspired by events in A.D. 60, Boudica follows the eponymous Celtic warrior who rules the Iceni people alongside her husband Prasutagus. When he dies at the hands of Roman soldiers, Boudica’s kingdom is left without a male heir and the Romans seize her land and property. Driven to the edge of madness and determined to avenge her husband’s death, Boudica rallies the various tribes from the region and wages an epic war against the mighty Roman empire.", + "posterPath": "/g57hTF2TYytHMveoKDpUN8iFk1p.jpg", + "backdropPath": "/zhaMys3Ej1KK32zb5qEOZCi06IH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752 + ], + "genres": [ + "Action", + "War" + ], + "releaseDate": "2023-10-26", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.864, + "voteCount": 173, + "popularity": 7.0414 + }, + { + "id": 287649, + "title": "Scarlet Innocence", + "originalTitle": "마담 뺑덕", + "overview": "A university professor gradually succumbing to blindness is entranced by an obsessive love, in this modern-day adaptation of a classic Korean fairy tale.", + "posterPath": "/ejaHQQKp5J2tD6ubprDMmIRGKnE.jpg", + "backdropPath": "/4GgiMYynlzp5RmaYNzPHkhW12j7.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 10749 + ], + "genres": [ + "Thriller", + "Drama", + "Romance" + ], + "releaseDate": "2014-10-02", + "releaseYear": "2014", + "originalLanguage": "ko", + "voteAverage": 6.09, + "voteCount": 67, + "popularity": 7.0411 + }, + { + "id": 223365, + "title": "Anjali", + "originalTitle": "அஞ்சலி", + "overview": "After a few years, Chitra learns that her child, who was believed to be dead, is alive but is suffering from a mental illness. However, her family faces many challenges while looking after her child.", + "posterPath": "/sCIqLX6yNBmFgI4OSLklVJP0Umh.jpg", + "backdropPath": "/6IcgPtqOBQXp158CZxr3iGm9G2b.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "1990-07-12", + "releaseYear": "1990", + "originalLanguage": "ta", + "voteAverage": 7.1, + "voteCount": 22, + "popularity": 7.041 + }, + { + "id": 11148, + "title": "XXY", + "originalTitle": "XXY", + "overview": "Alex, an intersexed 15-year-old, is living as a girl, but she and her family begin to wonder whether she's emotionally a boy when another teenager's sexual advances bring the issue to a head. As Alex faces a final decision regarding her gender, she meets both hostility and compassion.", + "posterPath": "/4sgoignnXhqjxepHBi2inLFLhSz.jpg", + "backdropPath": "/w1USmlLq33AkiAEIry7k0Hy5GsE.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-06-14", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 6.9, + "voteCount": 309, + "popularity": 7.041 + }, + { + "id": 9281, + "title": "Witness", + "originalTitle": "Witness", + "overview": "While protecting an Amish boy – the sole witness to a brutal murder – and his mother, a detective is forced to seek refuge within their community when his own life comes under threat.", + "posterPath": "/kOymD1rChAMykmDVEzJpIh4OYS7.jpg", + "backdropPath": "/aDn3wL0ObbA5TCn5ZLri9xI2kUZ.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10749, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Romance", + "Thriller" + ], + "releaseDate": "1985-02-08", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 1803, + "popularity": 7.0409 + }, + { + "id": 20312, + "title": "Interstate 60", + "originalTitle": "Interstate 60", + "overview": "An aspiring painter meets various characters and learns valuable lessons while traveling across America.", + "posterPath": "/zZQt29qBWLoVVOo8HEFzFYRAgYQ.jpg", + "backdropPath": "/ppdgXQ7rE9Whf3rCzaawQzmLVnx.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 14, + 18 + ], + "genres": [ + "Adventure", + "Comedy", + "Fantasy", + "Drama" + ], + "releaseDate": "2002-04-13", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.383, + "voteCount": 742, + "popularity": 7.0405 + }, + { + "id": 518500, + "title": "Apocalypse After", + "originalTitle": "Ultra Pulpe", + "overview": "An abandoned seaside resort. The shooting for a fantasy film about the end of an era wraps up. Two women, both members of the film crew, one an actrice, the other a director, Apocalypse and Joy, are on the verge of concluding their love affair.", + "posterPath": "/iIONQOopvJ60wJ7OHUhhloiAIz5.jpg", + "backdropPath": "/rWAk7vErDYbuWE9PcCnv38bj1KN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 27 + ], + "genres": [ + "Comedy", + "Fantasy", + "Horror" + ], + "releaseDate": "2018-05-09", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 5.5, + "voteCount": 46, + "popularity": 7.0404 + }, + { + "id": 460508, + "title": "Munna Michael", + "originalTitle": "मुन्ना माइकल", + "overview": "An expert dancer Munna who idolizes the king of pop, reluctantly tutors a gangster until their developing bond gets disrupted by their common romantic interest towards the same woman.", + "posterPath": "/p1tdHXmGGLc8o8kTImZi5iPXcu3.jpg", + "backdropPath": "/omAcS3PpAhvrG10tE9qTLlw8qyh.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 28 + ], + "genres": [ + "Music", + "Action" + ], + "releaseDate": "2017-07-20", + "releaseYear": "2017", + "originalLanguage": "hi", + "voteAverage": 5.9, + "voteCount": 46, + "popularity": 7.0402 + }, + { + "id": 81005, + "title": "Jack the Giant Slayer", + "originalTitle": "Jack the Giant Slayer", + "overview": "The story of an ancient war that is reignited when a young farmhand unwittingly opens a gateway between our world and a fearsome race of giants. Unleashed on the Earth for the first time in centuries, the giants strive to reclaim the land they once lost, forcing the young man, Jack into the battle of his life to stop them. Fighting for a kingdom, its people, and the love of a brave princess, he comes face to face with the unstoppable warriors he thought only existed in legend–and gets the chance to become a legend himself.", + "posterPath": "/9jSI7saUX9Qz0JLh19jX2ulEwL7.jpg", + "backdropPath": "/djSAd6HUm66eVNC3PiZbYwOpD5A.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 12, + 18 + ], + "genres": [ + "Fantasy", + "Action", + "Adventure", + "Drama" + ], + "releaseDate": "2013-02-27", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.865, + "voteCount": 5074, + "popularity": 7.0398 + }, + { + "id": 91471, + "title": "Man Friday", + "originalTitle": "Man Friday", + "overview": "Englishman Robinson Crusoe, stranded alone on an island for years, is overjoyed to find a fellow man, a black islander whom he names Friday. But Crusoe cannot overcome the shackles of his own heritage and upbringing and is incapable of seeing Friday as anything other than a savage who needs Crusoe's brand of cultural and religious enlightenment. Friday attempts to share his own more generous and unashamed culture, but ultimately realizes that Crusoe can never see him as anything but an inferior being. With that awareness, Friday sets out to turn the tables on Crusoe.", + "posterPath": "/mUIEf2Zce3PXJz37pWsTezTHU8K.jpg", + "backdropPath": "/hqc9kL8mJsW5EFn6q9CeXRp0GgI.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35 + ], + "genres": [ + "Adventure", + "Comedy" + ], + "releaseDate": "1975-03-04", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 30, + "popularity": 7.0389 + }, + { + "id": 248774, + "title": "Obvious Child", + "originalTitle": "Obvious Child", + "overview": "An immature, newly unemployed comic must navigate the murky waters of adulthood after her fling with a graduate student results in an unplanned pregnancy.", + "posterPath": "/vAVuQuboHiqc6ClsFeWQXBHJkOX.jpg", + "backdropPath": "/7DsPcLMbybqpl7nNMcwzPCM4VKG.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2014-06-06", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.496, + "voteCount": 449, + "popularity": 7.0388 + }, + { + "id": 838240, + "title": "Robot Dreams", + "originalTitle": "Robot Dreams", + "overview": "A lonely dog's friendship with his robot companion takes a sad turn when an unexpected malfunction forces him to abandon Robot at the beach. Will Dog ever meet Robot again?", + "posterPath": "/ds402Qq09ybgBcXKiQNTZfzsP5o.jpg", + "backdropPath": "/hIeEpk2w1dnC9ly9ZJwwbunH2Cx.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 35, + 878 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Science Fiction" + ], + "releaseDate": "2023-12-06", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 8, + "voteCount": 728, + "popularity": 7.0381 + }, + { + "id": 83686, + "title": "The Words", + "originalTitle": "The Words", + "overview": "The Words follows young writer Rory Jansen who finally achieves long sought after literary success after publishing the next great American novel. There's only one catch - he didn't write it. As the past comes back to haunt him and his literary star continues to rise, Jansen is forced to confront the steep price that must be paid for stealing another man's work, and for placing ambition and success above life's most fundamental three words.", + "posterPath": "/aJtPLZS7tlpiQl6pEr8H42K565x.jpg", + "backdropPath": "/b0GGZbLB7P9r4klx1wUcz77WzE6.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2012-09-07", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.673, + "voteCount": 1251, + "popularity": 7.0375 + }, + { + "id": 20621, + "title": "Second Chance", + "originalTitle": "Second Chance", + "overview": "A prize-fighting boxer with a lethal right punch falls for a gangster's moll on the run in Mexico.", + "posterPath": "/fvq2UYh4CSUz6VJ7WMAxEqnOSHV.jpg", + "backdropPath": "/96Z4GUIYmgeUpvQ7qng4W491iTU.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 80 + ], + "genres": [ + "Thriller", + "Drama", + "Crime" + ], + "releaseDate": "1953-07-18", + "releaseYear": "1953", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 23, + "popularity": 7.0373 + }, + { + "id": 16866, + "title": "Planet 51", + "originalTitle": "Planet 51", + "overview": "When Earth astronaut Capt. Chuck Baker arrives on Planet 51 -- a world reminiscent of American suburbia circa 1950 -- he tries to avoid capture, recover his spaceship and make it home safely, all with the help of an empathetic little green being.", + "posterPath": "/x7Itcg3ZdExKwdKguy73WPEqosW.jpg", + "backdropPath": "/wk7R89u4l3AC3PRg7Abac2IJ5Ky.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 878, + 12 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2009-11-19", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 2095, + "popularity": 7.0371 + }, + { + "id": 90770, + "title": "The Vanquished", + "originalTitle": "I vinti", + "overview": "Three tales of privileged youth entangled in murder: French students kill for money, an Italian student smuggles cigarettes, and an English poet exploits a grim discovery.", + "posterPath": "/luIGHd6YIwIfs7woRAinM7ef637.jpg", + "backdropPath": "/1OCxbH2TTzTiar5iMAmOYGwr0kG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1953-10-22", + "releaseYear": "1953", + "originalLanguage": "it", + "voteAverage": 6.3, + "voteCount": 40, + "popularity": 7.037 + }, + { + "id": 270343, + "title": "Love at First Fight", + "originalTitle": "Les Combattants", + "overview": "Arnaud, facing an uncertain future and a dearth of choices in a small French coastal town, meets and falls for the apocalyptic-minded Madeleine, who joins an army boot camp to learn military and survival skills to prepare for the upcoming environmental collapse. Intrigued and excited by Madeleine’s wild ideas, Arnaud signs up for the boot camp himself. They soon realize that the boot camp is harder than they’d imagined, but the experience nonetheless cements them together as the couple continues to explore their young love.", + "posterPath": "/xC0QDynS4kQm2F3cQHWcR1Fx1lI.jpg", + "backdropPath": "/lfVwTozLK9hbMXPjZTaEZ74CpKh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2014-08-20", + "releaseYear": "2014", + "originalLanguage": "fr", + "voteAverage": 6.494, + "voteCount": 451, + "popularity": 7.0367 + }, + { + "id": 16179, + "title": "Breathing Room", + "originalTitle": "Breathing Room", + "overview": "Thrown naked into a desolate room with thirteen strangers, Tonya discovers that she is the final contestant in a deadly game. Restrained by lethal electronic collars, the players must utilize hints and tools from a box marked \"pieces\" to find both an exit and the reason for their abduction. One by one the players are eliminated as their \"curfew\" begins and the lights go out. With each dead body comes another clue, which they use to discover that one of them is the killer. The question is ... which one?", + "posterPath": "/aaz4rgsEjApkUz87OrFT6sNZDks.jpg", + "backdropPath": "/xWu4JOltqruhxRicgLutbAqkG5c.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2008-08-25", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 79, + "popularity": 7.0359 + }, + { + "id": 9737, + "title": "Bad Boys", + "originalTitle": "Bad Boys", + "overview": "Marcus Burnett is a henpecked family man. Mike Lowrey is a footloose and fancy free ladies' man. Both Miami policemen, they have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.", + "posterPath": "/x1ygBecKHfXX4M2kRhmFKWfWbJc.jpg", + "backdropPath": "/wOLTJxfv98miIQcn0oNXq9fIgXM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Thriller" + ], + "releaseDate": "1995-04-07", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.826, + "voteCount": 6716, + "popularity": 7.0327 + }, + { + "id": 204349, + "title": "Contracted", + "originalTitle": "Contracted", + "overview": "A young woman contracts what she believes to be an STD—but it ends up being a far worse disease.", + "posterPath": "/3Be1XlwkmJ9CLBND35ww2Pg3Qs.jpg", + "backdropPath": "/9ZU024IGapsV7Rle7haBIZy6eBh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2013-07-07", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 529, + "popularity": 7.0324 + }, + { + "id": 962192, + "title": "Halftime", + "originalTitle": "Halftime", + "overview": "Global superstar Jennifer Lopez reflects on her multifaceted career and the pressure of life in the spotlight in this intimate documentary.", + "posterPath": "/jUVglxBw7KSkcVEhvfJs1eipPnk.jpg", + "backdropPath": "/sVUj3GZ6qWCyaVyu4PpMlyYQbxd.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 10402 + ], + "genres": [ + "Documentary", + "Music" + ], + "releaseDate": "2022-06-08", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.87, + "voteCount": 150, + "popularity": 7.03 + }, + { + "id": 871547, + "title": "The Honeymoon", + "originalTitle": "The Honeymoon", + "overview": "Englishman Adam and his American bride Sarah are about to embark on the romantic honeymoon of a lifetime in Venice, Italy. But when the newlyweds’ trip is gatecrashed by Adam’s excessively needy best friend, Ed, it inadvertently turns their perfect lovers’ holiday into a complete disaster.", + "posterPath": "/vyT1SavljB1WLDutl0Bj0P1sCCj.jpg", + "backdropPath": "/lv0wzcRihZAyKRAYwEh09KL5YM5.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2022-12-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 4.641, + "voteCount": 32, + "popularity": 7.0287 + }, + { + "id": 32428, + "title": "Lonesome Ghosts", + "originalTitle": "Lonesome Ghosts", + "overview": "On a dark and stormy night, four bored ghosts decide to have some fun by calling the Ajax Ghost Exterminators.", + "posterPath": "/ydAWe33OKMxkwd4piuQdKDVr3qO.jpg", + "backdropPath": "/gWFk9VMolKPQTVfp7TQ0HzqwOGr.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 27 + ], + "genres": [ + "Animation", + "Comedy", + "Horror" + ], + "releaseDate": "1937-12-24", + "releaseYear": "1937", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 160, + "popularity": 7.0287 + }, + { + "id": 1114743, + "title": "The Curse of the Clown Motel", + "originalTitle": "The Curse of the Clown Motel", + "overview": "When Alma returns home to help her family get their Native American heritage recognized, all she finds is the World-Famous Clown Motel that has been erected on their land.", + "posterPath": "/6gOO4ot0iJDCWbDaksGOmfqMJbd.jpg", + "backdropPath": "/4mTi7xJO5BoeV4XbOk7wiEYlzXc.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28 + ], + "genres": [ + "Horror", + "Action" + ], + "releaseDate": "2023-12-07", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 4, + "voteCount": 18, + "popularity": 7.0279 + }, + { + "id": 297963, + "title": "Help! I’ve Shrunk the Family", + "originalTitle": "Wiplala", + "overview": "Nine-year-old Johannes Blom gets blown away when he discovers a little man in the kitchen cupboard, hidden behind the peanut butter jar. He’s even more astonished when he realizes that this little man, ‘Wiplala’, has magical powers. When Wiplala accidentally transforms the Blom family to little people, the adventure begins. Will they ever go back to normal-sized people?", + "posterPath": "/yBMNwRbITxs0sJaKNgLOlh2l7Wm.jpg", + "backdropPath": "/eySJhPRWhsZ6kL7ugyJlgBK3vBW.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy" + ], + "releaseDate": "2014-11-19", + "releaseYear": "2014", + "originalLanguage": "nl", + "voteAverage": 5.7, + "voteCount": 26, + "popularity": 7.027 + }, + { + "id": 41215, + "title": "Black Death", + "originalTitle": "Black Death", + "overview": "As the plague decimates medieval Europe, rumours circulate of a village immune from the plague. There is talk of a necromancer who leads the village and is able to raise the dead. A fearsome knight joined by a cohort of soldiers and a young monk are charged by the church to investigate. Their journey is filled with danger, but it's upon entering the village that their true horror begins.", + "posterPath": "/gXRERDpyT9s3m2yk6wNmrTWbZfG.jpg", + "backdropPath": "/dQhVu7ZSgvgAuYAEoD9mXvqpp1.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 27 + ], + "genres": [ + "Drama", + "History", + "Horror" + ], + "releaseDate": "2010-06-07", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 922, + "popularity": 7.0265 + }, + { + "id": 42968, + "title": "The Nun", + "originalTitle": "La monja", + "overview": "Years ago, a cruel and merciless nun turned a boarding school into a living hell for her students until they could no longer bear the abuse, and she mysteriously disappeared. Now the alumnae are being brutally murdered one by one.", + "posterPath": "/2bDojliSLzGFwxlqQZodJAXHy7H.jpg", + "backdropPath": "/xh1Xjiu7Q0ORz3DbJjlwfC2KwVM.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2005-11-03", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 5.6, + "voteCount": 264, + "popularity": 7.0245 + }, + { + "id": 1226578, + "title": "Longlegs", + "originalTitle": "Longlegs", + "overview": "FBI Agent Lee Harker is a gifted new recruit assigned to the unsolved case of an elusive serial killer. As the case takes complex turns, unearthing evidence of the occult, Harker discovers a personal connection to the merciless killer and must race against time to stop him before he claims the lives of another innocent family.", + "posterPath": "/1EwNyiiNFd863H4e8nWEzutnZD7.jpg", + "backdropPath": "/bizhlTVjifYQUu4Xrdt7m3TYr7d.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 27, + 53 + ], + "genres": [ + "Crime", + "Horror", + "Thriller" + ], + "releaseDate": "2024-07-10", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 2342, + "popularity": 7.0225 + }, + { + "id": 17179, + "title": "Two Weeks", + "originalTitle": "Two Weeks", + "overview": "In this bittersweet comedy, four adult siblings gather at their dying mother's house in North Carolina for what they expect to be a quick, last goodbye. Instead, they find themselves trapped — together — for two weeks.", + "posterPath": "/jO7tUjxEVpx4RPuO8lw3lS8P57g.jpg", + "backdropPath": "/6zZ47ilB3uQloFSV2XLiht0xxi6.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2006-10-20", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.03, + "voteCount": 33, + "popularity": 7.0223 + }, + { + "id": 13252, + "title": "Cleaner", + "originalTitle": "Cleaner", + "overview": "Single father and former cop Tom Cutler has an unusual occupation: he cleans up death scenes. But when he's called in to sterilize a wealthy suburban residence after a brutal shooting, Cutler is shocked to learn he may have unknowingly erased crucial evidence, entangling himself in a dirty criminal cover-up.", + "posterPath": "/8KhDbFg9STRlvrOLvaQ7PjOo7XT.jpg", + "backdropPath": "/z6ueaizIb3vH3l1l4xSr2bET2Am.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 9648 + ], + "genres": [ + "Crime", + "Thriller", + "Mystery" + ], + "releaseDate": "2007-09-11", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.071, + "voteCount": 882, + "popularity": 7.0209 + }, + { + "id": 473258, + "title": "Unwritten Obsession", + "originalTitle": "Unwritten Obsession", + "overview": "Bestselling author Skye Chaste hasn't had any success since her hit book, \"Maya's Fall\", was released years ago. Now desperate for cash, Skye accepts a job to mentor one of her young fans, Holly, who is writing a novel herself.", + "posterPath": "/zvRAT00Pbhr7PqE8JTyRFYhRy7Q.jpg", + "backdropPath": "/d1dzmvxXMtPfFNzj9rkRBVoBMCb.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10770 + ], + "genres": [ + "Thriller", + "TV Movie" + ], + "releaseDate": "2017-08-27", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 15, + "popularity": 7.0201 + }, + { + "id": 62734, + "title": "Paganini", + "originalTitle": "Paganini", + "overview": "Legendary \"devil violinist\" Niccolo Paganini sets all of 19th century Europe into frenzy.", + "posterPath": "/mDjPdNgI8xTvm2sjyYCcsJRgO35.jpg", + "backdropPath": "/qAdQ7ZmzlMSVOc2dPtNq5tjroEZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "1990-05-25", + "releaseYear": "1990", + "originalLanguage": "it", + "voteAverage": 5.2, + "voteCount": 27, + "popularity": 7.0199 + }, + { + "id": 15070, + "title": "Undisputed", + "originalTitle": "Undisputed", + "overview": "Monroe Hutchens is the heavyweight champion of Sweetwater, a maximum security prison. He was convicted to a life sentence due to a passionate crime. Iceman Chambers is the heavyweight champion, who lost his title due to a rape conviction to ten years in Sweetwater. When these two giants collide in the same prison, they fight against each other disputing who is the real champion.", + "posterPath": "/xgnCABtbMDaDqn9bt3ZFJTnpA3e.jpg", + "backdropPath": "/4uGL6J3XTw2vXJgWiMgyy1djkDA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 80 + ], + "genres": [ + "Action", + "Drama", + "Crime" + ], + "releaseDate": "2002-07-17", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.524, + "voteCount": 778, + "popularity": 7.0195 + }, + { + "id": 1319951, + "title": "40 Acres", + "originalTitle": "40 Acres", + "overview": "Hailey Freeman and her family are the last descendants of African American farmers who settled in rural Canada after the Civil War. In a famine-decimated near future, they now struggle to safeguard their farm, as they make one last stand against a vicious militia hell-bent on taking their 40 Acres.", + "posterPath": "/9ReRlClJZ5AAaXLu7zaEwWAXlZE.jpg", + "backdropPath": "/6m3K1hizm5yoguOsAcIjNSECn5b.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 18, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Drama", + "Science Fiction" + ], + "releaseDate": "2025-07-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.121, + "voteCount": 58, + "popularity": 7.0192 + }, + { + "id": 299400, + "title": "Santa Claws", + "originalTitle": "Santa Claws", + "overview": "Santa is allergic to cats, so he has a policy against delivering them as gifts, but little Tommy has been SO good, and all he wants is one small kitty. Santa says OK, but instead of one, the whole litter climbs into the sack. When Santa has a major allergic reaction, the kittens have to take over and deliver the presents on time.", + "posterPath": "/iZ2qC9apqTLpjmMiS5JHUgFHkOS.jpg", + "backdropPath": "/wpxwgTVogvGKxbcnr1uwU4e4qA3.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14 + ], + "genres": [ + "Family", + "Fantasy" + ], + "releaseDate": "2014-11-04", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.2, + "voteCount": 18, + "popularity": 7.0181 + }, + { + "id": 35429, + "title": "The Hive", + "originalTitle": "The Hive", + "overview": "When ants, displaying never-before-seen behavior, seize an island, the controversial Thorax Team is called in to stop the massive threat, only to discover that the ants are controlled by something beyond this world.", + "posterPath": "/yWiSAvc5QnjIrenvjlQJbnLrH8.jpg", + "backdropPath": "/rKpnClqDyYu8QWM07gzUyPqA7xB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 28 + ], + "genres": [ + "Horror", + "Science Fiction", + "Action" + ], + "releaseDate": "2008-02-17", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 4.1, + "voteCount": 38, + "popularity": 7.0181 + }, + { + "id": 983044, + "title": "The Arctic Convoy", + "originalTitle": "Konvoi", + "overview": "In 1942, a convoy of 35 civilian ships, carrying vital supplies from Iceland to the Soviet Union, faces deadly challenges in the Arctic. Despite Allied naval escort, catastrophic intelligence errors expose the convoy to relentless German air and naval attacks. In the brutal conditions, inexperienced civilian sailors fight for survival, with only 12 ships making it to their destination.", + "posterPath": "/7qtd6xschdz7GBnEMZfPfUir7cs.jpg", + "backdropPath": "/4BXIBNeYpKkOrYtRVXpGCwHj3Ve.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18 + ], + "genres": [ + "War", + "Drama" + ], + "releaseDate": "2023-12-25", + "releaseYear": "2023", + "originalLanguage": "no", + "voteAverage": 6.9, + "voteCount": 128, + "popularity": 7.0177 + }, + { + "id": 394269, + "title": "Lemonade", + "originalTitle": "Lemonade", + "overview": "The second \"visual album\" (a collection of short films) by Beyoncé, this time around she takes a piercing look at racial issues and feminist concepts through a sexualized, satirical, and solemn tone.", + "posterPath": "/m8Kr7GwRFKh7sdd9wy2tQYPGaOY.jpg", + "backdropPath": "/hlO3BN6KwNVHvMW9Q9z4dl02HsQ.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 10770 + ], + "genres": [ + "Music", + "TV Movie" + ], + "releaseDate": "2016-04-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 161, + "popularity": 7.0172 + }, + { + "id": 839033, + "title": "The Lord of the Rings: The War of the Rohirrim", + "originalTitle": "The Lord of the Rings: The War of the Rohirrim", + "overview": "A sudden attack by Wulf, a clever and traitorous lord of Rohan seeking vengeance for the death of his father, forces Helm Hammerhand, the King of Rohan, and his people to make a daring last stand in the ancient stronghold of the Hornburg.", + "posterPath": "/hE9SAMyMSUGAPsHUGdyl6irv11v.jpg", + "backdropPath": "/ie8OSgIHEl6yQiGJ90dsyBWOpQA.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 12, + 28 + ], + "genres": [ + "Animation", + "Fantasy", + "Adventure", + "Action" + ], + "releaseDate": "2024-12-05", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 735, + "popularity": 7.0168 + }, + { + "id": 40815, + "title": "On Guard", + "originalTitle": "Le Bossu", + "overview": "France, 17th century, during the reign of Louis XIII. When a dear friend, the Duke of Nevers, is treacherously assassinated by a powerful relative, a skilled swordsman, the noble Henri de Lagardère, seeks his rightful vengeance as he tries to protect the innocent life of the duke's last heir.", + "posterPath": "/3tNL0uM1SNSfN2d1mKSBB5Ih6FH.jpg", + "backdropPath": "/vQdHQip4YTxiOldOf2bhvNCMUJu.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 18 + ], + "genres": [ + "Adventure", + "Action", + "Drama" + ], + "releaseDate": "1997-12-03", + "releaseYear": "1997", + "originalLanguage": "fr", + "voteAverage": 6.668, + "voteCount": 197, + "popularity": 7.0166 + }, + { + "id": 142106, + "title": "Petunia", + "originalTitle": "Petunia", + "overview": "Brothers Charlie, Adrian and Michael try to unlearn everything their psychoanalyst parents have taught them about life, as their family unit teeters on the edge of a collapse.", + "posterPath": "/q9wlphvhKRhXFpdKvOvQTNwCoey.jpg", + "backdropPath": "/vJLkdjJdwbIdJnyhpkjSnPoEZBN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-06-28", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.722, + "voteCount": 18, + "popularity": 7.0161 + }, + { + "id": 107751, + "title": "Amy George", + "originalTitle": "Amy George", + "overview": "Thirteen-year-old Jesse wants to be an artist and believing that his mundane, middle-class life has left him unprepared, he sets out looking for wildness and women.", + "posterPath": "/70PP94pAEeS0MGmVEgYxyBcz2tR.jpg", + "backdropPath": "/idLDOiAhJmbfUbdrWp7QF1CbKvH.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 14, + "popularity": 7.0155 + }, + { + "id": 645886, + "title": "The Unforgivable", + "originalTitle": "The Unforgivable", + "overview": "A woman is released from prison after serving a sentence for a violent crime and re-enters a society that refuses to forgive her past.", + "posterPath": "/1b3dNFDuE7i05TJlXrIC571yR01.jpg", + "backdropPath": "/kbOB9DGl8qwhDRcXOmXfmcmadeD.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2021-11-24", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.414, + "voteCount": 1945, + "popularity": 7.0149 + }, + { + "id": 305937, + "title": "The Racer", + "originalTitle": "The Racer", + "overview": "Summer 1998 - the opening stages of Le Tour de France are relocated to Ireland. Belgian rider Dom Chabol (late 30s) has been one of the best “Domestiques” (support riders) on the Tour for the last 20 years. It’s a sacrificial role – setting pace, blocking wind, and providing support to enable the team’s sprinter to victory - winning is not an option. But Dom secretly harbours a desire to wear the yellow jersey - just once before his career is over. At the start of what will likely be his last Tour, Dom is unceremoniously dropped from the Team he has dedicated his life to. His best mate Sonny, the team masseur, fails to reassure him about his future. But a chance liaison with Lynn, a young Irish doctor, softens the blow, and Dom starts to accept - and even enjoy - the idea of civilian life. But as he gears up to go home and to face his estranged sister, a massive doping error knocks another teammate off the Tour and Dom is thrown back in the saddle…", + "posterPath": "/rwhlCAW285XyDdN0PRlKYxzp68g.jpg", + "backdropPath": "/39f8uDnF3O7njJPaTQYnKubp4Ug.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-09-09", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 45, + "popularity": 7.0146 + }, + { + "id": 375564, + "title": "Boundaries", + "originalTitle": "Pays", + "overview": "Emily Price tries to balance family life and leading crunch negotiations between a Canadian politician and the president of a country whose natural resources are being exploited.", + "posterPath": "/al5RS0SwHYcudacSaWkkelGKKFB.jpg", + "backdropPath": "/sA4y7udri3cXag2WpePjpKYN60o.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-11-18", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 12, + "popularity": 7.0144 + }, + { + "id": 46665, + "title": "Triple Dog", + "originalTitle": "Triple Dog", + "overview": "On the night of a sleepover, a group of teenage girls venture out in a competitive game of challenging dares. As the antics escalate, and the dares become more extreme, the girls unravel the truth behind a former student's rumored suicide.", + "posterPath": "/iqnTnSDrFb5rkzIFNWCkEgQgimj.jpg", + "backdropPath": "/u0lqlsS7lPDOFP2SyPRX3Lu6jLX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2010-09-21", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 129, + "popularity": 7.0144 + }, + { + "id": 1341123, + "title": "Christmas Under the Northern Lights", + "originalTitle": "Christmas Under the Northern Lights", + "overview": "Erin joins her dad Doug for a Christmas in the family’s former hometown of Aurora on a mission that is part business – selling the family home – and major bucket list item for Erin to see the Aurora Borealis light up the Northern sky. Realtor Lori and family friend and local tour guide Trevor create a Christmas inspired at every turn by faith, love, and hope, so much so that Christmas bells hung over decades in a forest grove ring an unbroken song, a harbinger of miracles to come.", + "posterPath": "/5GGWK9BTu3rMv4IxucJsvrELAXa.jpg", + "backdropPath": "/11CBYPBWNX4zvBPYlBP6VsSbDOj.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 10749, + 35 + ], + "genres": [ + "TV Movie", + "Romance", + "Comedy" + ], + "releaseDate": "2024-12-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 7.0122 + }, + { + "id": 14324, + "title": "Virgin Territory", + "originalTitle": "Virgin Territory", + "overview": "In Black Death era Tuscany, as in the Decameron, ten young Florentines take refuge from the plague. But instead of telling stories, they have lusty adventures, bawdy exchanges, romance, swordplay, randy nuns, Saracen pirates, and a sexy cow.", + "posterPath": "/zofWP7ZKhoVTh2VUltaDo4LRQXc.jpg", + "backdropPath": "/cRXcuLS1z0820eZ4mOXF08VEdZR.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 35, + 10749 + ], + "genres": [ + "Adventure", + "Action", + "Comedy", + "Romance" + ], + "releaseDate": "2007-12-17", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.886, + "voteCount": 355, + "popularity": 7.0098 + }, + { + "id": 365177, + "title": "Borderlands", + "originalTitle": "Borderlands", + "overview": "Returning to her home planet, an infamous bounty hunter forms an unexpected alliance with a team of unlikely heroes. Together, they battle monsters and dangerous bandits to protect a young girl who holds the key to unimaginable power.", + "posterPath": "/4JGoZu1ZKFpMJTWAP35PCfkMgu8.jpg", + "backdropPath": "/mKOBdgaEFguADkJhfFslY7TYxIh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 35 + ], + "genres": [ + "Action", + "Science Fiction", + "Comedy" + ], + "releaseDate": "2024-08-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.622, + "voteCount": 1344, + "popularity": 7.0081 + }, + { + "id": 809910, + "title": "Triumph", + "originalTitle": "Triumph", + "overview": "A bright and determined teen who has mild cerebral palsy strives to be a wrestler on his high school's team and to win over the heart of a classmate, the girl of his dreams.", + "posterPath": "/gZJGjvoXXvE76lFilVjleAIOKSi.jpg", + "backdropPath": "/iGtCjjV2bgUCO2Fes7qUEdKfXUK.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-04-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 53, + "popularity": 7.007 + }, + { + "id": 262504, + "title": "Allegiant", + "originalTitle": "Allegiant", + "overview": "Beatrice Prior and Tobias Eaton venture into the world outside of the fence and are taken into protective custody by a mysterious agency known as the Bureau of Genetic Welfare.", + "posterPath": "/faq9JlF8znUGQ5p3En1W61Fi5p0.jpg", + "backdropPath": "/qSP072apfe2EEcd5Qg9vGYy2OLw.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 878, + 28, + 9648 + ], + "genres": [ + "Adventure", + "Science Fiction", + "Action", + "Mystery" + ], + "releaseDate": "2016-03-09", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 6811, + "popularity": 7.0068 + }, + { + "id": 259018, + "title": "Behaving Badly", + "originalTitle": "Behaving Badly", + "overview": "Teenager Rick Stevens is willing to do whatever it takes to win the heart of Nina Pennington. He'll have to deal with his best friend's horny mom, a drug abusing boss and even the mob if he ever hopes to land the girl of his dreams. Love is never easy!", + "posterPath": "/vHPRAvYa4AT2KfORbpTlhNGtGEI.jpg", + "backdropPath": "/odjVFoEy7Qyko2qooWDbT5OuLUx.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-04-14", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.294, + "voteCount": 603, + "popularity": 7.0065 + }, + { + "id": 1310741, + "title": "A Brother and 7 Siblings", + "originalTitle": "1 Kakak 7 Ponakan", + "overview": "After the untimely death of his older sister and her husband, a struggling young architect suddenly becomes a \"single parent\" for his nieces and nephews. When the opportunity for a better life arises, he must choose between his love life, career, or his family.", + "posterPath": "/d8iIVE9KmkSITslMYD6WvHvbRFk.jpg", + "backdropPath": "/35PrpNA2NDFBUTn8KS3Qe8uFZli.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2025-01-23", + "releaseYear": "2025", + "originalLanguage": "id", + "voteAverage": 8.389, + "voteCount": 18, + "popularity": 7.0047 + }, + { + "id": 529981, + "title": "Bayou Caviar", + "originalTitle": "Bayou Caviar", + "overview": "Rodney is a former boxing champ who, after a deathbed visit to his trainer and mentor, is propelled into reclaiming victory for his now simple life as a nightclub bouncer. He partners with a no-nonsense, lesbian photographer and an aspiring starlet to make a compromising tape with Isaac—a married, devout, Orthodox Jewish real estate mogul—that sets off a chain of events that brings down an empire.", + "posterPath": "/up28fmhXm5eZjasXEZ352NdxDLq.jpg", + "backdropPath": "/w0q9xW1nekWkKVIkwEjB9mxjH23.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53 + ], + "genres": [ + "Crime", + "Thriller" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.698, + "voteCount": 43, + "popularity": 7.0043 + }, + { + "id": 426825, + "title": "The Confession", + "originalTitle": "La Confession", + "overview": "Under the German occupation, in a small French town, the arrival of a new priest arouses the interest of all women... Barny, a young communist and atheist woman, can not however be more indifferent. Driven by curiosity, the young skeptic went to the church in order to challenge this.", + "posterPath": "/qlycTqUoGGi3PJErvQTfogLb8ZY.jpg", + "backdropPath": "/6lbFwSieriufIDlhIVM98AJHnAR.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-03-08", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.495, + "voteCount": 94, + "popularity": 7.0038 + }, + { + "id": 22094, + "title": "Hard Times", + "originalTitle": "Hard Times", + "overview": "In the depression, Chaney, a strong silent streetfighter, joins with Speed, a promoter of no-holds-barred street boxing bouts. They go to New Orleans where Speed borrows money to set up fights for Chaney, but Speed gambles away any winnings.", + "posterPath": "/yWIh8cMGd9XubkdhJB2TJ7buGy3.jpg", + "backdropPath": "/cjA8bxjXcw3I63DlO3qa6uFwrH4.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 80 + ], + "genres": [ + "Drama", + "Action", + "Crime" + ], + "releaseDate": "1975-08-13", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.795, + "voteCount": 217, + "popularity": 7.0037 + }, + { + "id": 277396, + "title": "Three Sisters", + "originalTitle": "Three Sisters", + "overview": "Nearly a thousand miles away from their beloved Moscow, Chekhov's Three Sisters live in virtual exile. Olga , a schoolmistress, attempts to support her siblings and the home that is the sole legacy of their late father.", + "posterPath": "/quSYDoWth0qVTHafPdARrQN8MZU.jpg", + "backdropPath": "/tqyALK7PWjvdUb9BRyQ1C0703Tm.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1970-04-01", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 10, + "popularity": 7.0035 + }, + { + "id": 586351, + "title": "The Wolves", + "originalTitle": "Los lobos", + "overview": "Max and Leo are 8 and 5 years old and have just immigrated to the US with their mother. Their days pass inside a tiny apartment, while they wait for their mother to come back, as they hold on to the hope of traveling to Disney.", + "posterPath": "/7XRbBZXuTHD01SkUqwM42KbLul4.jpg", + "backdropPath": "/iM44QKZklRsfcZdOGBWHNKGRXMz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2020-06-19", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 7.3, + "voteCount": 62, + "popularity": 7.0021 + }, + { + "id": 332356, + "title": "Killing Jesus", + "originalTitle": "Killing Jesus", + "overview": "Jesus of Nazareth’s life and ministry were subject to seismic social and political events that led to his execution and changed the world forever.", + "posterPath": "/1Wr7apWkhqHSdzmxnQuzlKTzdK.jpg", + "backdropPath": "/q5CQZRXM5PBMNga9G1cErB6gOs8.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 18, + 14 + ], + "genres": [ + "TV Movie", + "Drama", + "Fantasy" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.298, + "voteCount": 99, + "popularity": 7.0013 + }, + { + "id": 427348, + "title": "Carbone", + "originalTitle": "Carbone", + "overview": "In danger of losing his business, Anthony Roca, an ordinary man, develops a scam that will become the heist of the century. Overtaken by the crime, he will have to deal with betrayal, murder and settling.", + "posterPath": "/gbFYXClD52Axdvo5h9XRVLDsBY.jpg", + "backdropPath": "/mBmxc4EQi8GlNAgtx7r9SRxOivK.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2017-11-01", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.7, + "voteCount": 438, + "popularity": 7.0007 + }, + { + "id": 74656, + "title": "Attention! Bandits!", + "originalTitle": "Achtung! Banditi!", + "overview": "During the winter of 1944, the partisans stationed in the Ligurian Apennines must go to a factory in Genoa, in order to pick up a delivery of weapons. Meanwhile, there's a strike in the city and the Nazis are trying to suppress it violently. The factory becomes the scene of fighting between the Germans and the partisans but the latter, aided by the workers, will be able to get the better.", + "posterPath": "/maJRFxQHilZIEHY2K7bhAOqRymo.jpg", + "backdropPath": "/tDY3m6XeLatCiCmEYscEKKlO8uT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "1951-11-10", + "releaseYear": "1951", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 27, + "popularity": 7.0004 + }, + { + "id": 72545, + "title": "Journey 2: The Mysterious Island", + "originalTitle": "Journey 2: The Mysterious Island", + "overview": "Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.", + "posterPath": "/uFm2vnp9LhHx5MNo1Ego6O3vUhl.jpg", + "backdropPath": "/fZvAroq9Vb5hhyKT6TxsjxJW7nm.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2012-01-19", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.147, + "voteCount": 4411, + "popularity": 6.9998 + }, + { + "id": 2057, + "title": "Original Sin", + "originalTitle": "Original Sin", + "overview": "A young man is plunged into a life of subterfuge, deceit and mistaken identity in pursuit of a femme fatale whose heart is never quite within his grasp.", + "posterPath": "/7wB76uteIjw95oygMdCkmcibJg3.jpg", + "backdropPath": "/6u4zm2EiOHbDS6A6VWaybdWkdNL.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 9648, + 10749 + ], + "genres": [ + "Thriller", + "Drama", + "Mystery", + "Romance" + ], + "releaseDate": "2001-05-08", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.132, + "voteCount": 870, + "popularity": 6.9987 + }, + { + "id": 589761, + "title": "Chernobyl: Abyss", + "originalTitle": "Чернобыль", + "overview": "The aftermath of a shocking explosion at the Chernobyl nuclear power station made hundreds of people sacrifice their lives to clean up the site of the catastrophe and to successfully prevent an even bigger disaster that could have turned a large part of the European continent into an uninhabitable exclusion zone. This is their story.", + "posterPath": "/AmJLuHjxPdIJO6vmymeWADG6jK5.jpg", + "backdropPath": "/snkRCV3ED99mYwo962fxohaTfrI.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 12, + 28, + 14, + 9648 + ], + "genres": [ + "Drama", + "History", + "Adventure", + "Action", + "Fantasy", + "Mystery" + ], + "releaseDate": "2021-04-15", + "releaseYear": "2021", + "originalLanguage": "ru", + "voteAverage": 6.226, + "voteCount": 551, + "popularity": 6.9968 + }, + { + "id": 69900, + "title": "Star Crystal", + "originalTitle": "Star Crystal", + "overview": "Crew members aboard a space ship encounter an alien life form intent on killing them.", + "posterPath": "/hPi0JjIctx5yo7pEJwkXdDJOeTT.jpg", + "backdropPath": "/hF59zEHvSWTbIJvhzeG6qhmVWHP.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1986-03-01", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 4.114, + "voteCount": 35, + "popularity": 6.9963 + }, + { + "id": 8292, + "title": "Four Brothers", + "originalTitle": "Four Brothers", + "overview": "Four adopted brothers return to their Detroit hometown when their mother is murdered and vow to exact revenge on the killers.", + "posterPath": "/8cO39cnWSZQi2ncPG5TxL3YRzKc.jpg", + "backdropPath": "/2pITFeesu6aikrEknoH6bNXOdhk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2005-08-11", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.81, + "voteCount": 2294, + "popularity": 6.9939 + }, + { + "id": 2701, + "title": "Abraham", + "originalTitle": "Abraham", + "overview": "Rather than choosing a great leader or king, God chooses Abraham, an elderly shepherd from Mesopotamia, as the way to establish his Covenant with mankind... A man of great faith, Abraham continues to believe in God even when He seems to have abandoned him.", + "posterPath": "/1MN3ly4bmzjUAlgW4alcIRpv77S.jpg", + "backdropPath": "/5wmhytSUzHDLeltjHEH9I7K99qT.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10770 + ], + "genres": [ + "Adventure", + "Drama", + "TV Movie" + ], + "releaseDate": "1993-12-12", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 48, + "popularity": 6.9938 + }, + { + "id": 251232, + "title": "Copenhagen", + "originalTitle": "Copenhagen", + "overview": "After weeks of traveling through Europe, the immature William finds himself in Copenhagen, the place of his father’s birth. He befriends the youthful Effy, who works in William’s hotel as part of an internship program, and they set off to find William’s last living relative. Effy’s mix of youthful exuberance and wisdom challenges William unlike any woman ever has. As the attraction builds, he must come to grips with destabilizing elements of his family’s sordid past.", + "posterPath": "/1MSFfjvgf9auNANWcaGTvzf1TcW.jpg", + "backdropPath": "/j5jPqb3h9wMGaXZtWwGfIMH5ykg.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10749, + 18 + ], + "genres": [ + "Adventure", + "Romance", + "Drama" + ], + "releaseDate": "2014-10-03", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.562, + "voteCount": 210, + "popularity": 6.9926 + }, + { + "id": 632318, + "title": "Alelí", + "originalTitle": "Alelí", + "overview": "The death of patriarch Alfredo sends his heirs into a downward spiral. With the pending sale of their beach house, a repository of childhood memories, three siblings’ long-simmering resentments are brought to a full boil.", + "posterPath": "/9gtcPLk0qEGghqIW1g7DJ4Jydf3.jpg", + "backdropPath": "/gOUzTAISBwvIs9Q8TbkPuCbjrLW.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-10-02", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 6.8, + "voteCount": 14, + "popularity": 6.9915 + }, + { + "id": 53023, + "title": "Happiness", + "originalTitle": "Le Bonheur", + "overview": "A young husband and father, perfectly content with his life, falls in love with another woman.", + "posterPath": "/r6UYog9MruOe4X71AS57EhuJrFq.jpg", + "backdropPath": "/wPliKFiYaUEYCWWIIFW9mxjiz0G.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1965-02-10", + "releaseYear": "1965", + "originalLanguage": "fr", + "voteAverage": 7.414, + "voteCount": 280, + "popularity": 6.9915 + }, + { + "id": 2675, + "title": "Signs", + "originalTitle": "Signs", + "overview": "A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.", + "posterPath": "/YtrIdrTxpRhvCnlw43dwOjfLqx.jpg", + "backdropPath": "/rsPjEr7o02mo8ex6wD2PbRwasUe.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 878, + 9648 + ], + "genres": [ + "Drama", + "Thriller", + "Science Fiction", + "Mystery" + ], + "releaseDate": "2002-08-02", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 6005, + "popularity": 6.9908 + }, + { + "id": 1078023, + "title": "The King of Snipers", + "originalTitle": "狙击之王:暗杀", + "overview": "The genius sniper Anna is forced to accept an assassination assignment. In the process, she gradually finds her true calling to fight for kindness and to defend a greater love. Tai, a special agent for the UN army, stands up for justice when drug lords try to harm innocent citizens. The two join forces to block the bill to legalize drug cultivation and distribution in Libiwala. They fight to the death with the drug lord Luo Jie and eventually foil his plans, protecting the people from the drugs. This is the exciting story of them working together to save a nation.", + "posterPath": "/r5C85R0Bc6RL51PnPv2HIvpSMJ7.jpg", + "backdropPath": "/lkOrEPIbNTt6s7I2qcYNtABjcaU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 35, + 10752 + ], + "genres": [ + "Action", + "Crime", + "Comedy", + "War" + ], + "releaseDate": "2023-01-24", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 5.6, + "voteCount": 10, + "popularity": 6.9907 + }, + { + "id": 631939, + "title": "The Legion", + "originalTitle": "The Legion", + "overview": "Noreno, a half-Roman, is entrusted with the mission of crossing the snowy mountains of Armenia, swarming with Parthian patrols, to seek help for his slowly dying men.", + "posterPath": "/6ssoBXQOxNhrsGJoM6Tcvm57V79.jpg", + "backdropPath": "/9NlswPRK5Kap6KVr59Feah9EBLP.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 36, + 28 + ], + "genres": [ + "Adventure", + "History", + "Action" + ], + "releaseDate": "2020-05-08", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.985, + "voteCount": 133, + "popularity": 6.9907 + }, + { + "id": 65296, + "title": "Humanité", + "originalTitle": "L'humanité", + "overview": "In a quiet little French town, two detectives are tasked with investigating the brutal rape and murder of a preteen girl.", + "posterPath": "/fEEVsOpI21ZDY64tKMh4T3FZzCp.jpg", + "backdropPath": "/x2n7x2ZfMocYkzEY75g4UxvQYSC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "1999-09-10", + "releaseYear": "1999", + "originalLanguage": "fr", + "voteAverage": 6.668, + "voteCount": 110, + "popularity": 6.9907 + }, + { + "id": 589018, + "title": "Savages", + "originalTitle": "Sauvages", + "overview": "In Borneo, near the tropical forest, Kéria rescues a baby orangutang in the palm oil plantation where her father works. Kéria's cousin Selaï comes to live with them seeking refuge from the conflict between his indigenous tribe and the logging companies. Kéria, Selaï and the little orangutang, now named Oshi, will have to fight against their forest’s destruction.", + "posterPath": "/qC6yrKvmIEnkFVjpp0U7u02SiDQ.jpg", + "backdropPath": "/hKmRJ4pWBjhVOhgLAFzXddpc69p.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 18, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Drama", + "Family" + ], + "releaseDate": "2024-10-16", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.935, + "voteCount": 31, + "popularity": 6.99 + }, + { + "id": 115874, + "title": "Second Origin", + "originalTitle": "Segon origen", + "overview": "After a massive destruction on Earth, a white girl Alba (14) and a black boy Didac (9), are the only survivors on the Earth. They must start a new world. A Second Origin. Population is over. There are only two survivors. Now, our future depends on them.", + "posterPath": "/6hHM8160Z5lK9eoFVduVd3S3o6b.jpg", + "backdropPath": "/iPhqE5qnyjeeR3w39zK07fj9xA9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878 + ], + "genres": [ + "Drama", + "Science Fiction" + ], + "releaseDate": "2015-10-09", + "releaseYear": "2015", + "originalLanguage": "ca", + "voteAverage": 4.8, + "voteCount": 19, + "popularity": 6.9893 + }, + { + "id": 412437, + "title": "Flowers of Evil", + "originalTitle": "Pahan kukat", + "overview": "Unrest breaks out in eastern Helsinki as a Finnish family man gets hospitalized in the summer of 2015. Gangs of young people are burning down cars and public buildings, confronting the security guards and the riot police. The narrative goes backwards, towards the riots which mark the end of our movie. As the story begins, the unrest is still bubbling under, ready to explode any time. Vandalism and robbery are not uncommon in the suburbs; neither is violence towards the police and the security guards. Frustration, alienation, isolation and poverty corrode the asphalt surface of the multicultured society, otherwise relatively harmonious.", + "posterPath": "/8jDNOXVEorc7ELwos0yQkiBbCGc.jpg", + "backdropPath": "/3pf7dcKIvPyLP9kSt5aDUIwTUAz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2016-09-30", + "releaseYear": "2016", + "originalLanguage": "fi", + "voteAverage": 5.1, + "voteCount": 20, + "popularity": 6.9887 + }, + { + "id": 16638, + "title": "El Cid", + "originalTitle": "El Cid", + "overview": "Epic film of the legendary Spanish hero, Rodrigo Diaz (\"El Cid\" to his followers), who, without compromising his strict sense of honour, still succeeds in taking the initiative and driving the Moors from Spain.", + "posterPath": "/a6DY3LDlXFUDuXm47zXTOfiisxP.jpg", + "backdropPath": "/sKXjExfASGAdRhqVWLScXyie4fY.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 36, + 10749, + 10752 + ], + "genres": [ + "Action", + "Drama", + "History", + "Romance", + "War" + ], + "releaseDate": "1961-10-24", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 288, + "popularity": 6.9884 + }, + { + "id": 992940, + "title": "The Critic", + "originalTitle": "The Critic", + "overview": "Jimmy Erskine is the most feared theatre critic of the age. He lives as flamboyantly as he writes and takes pleasure in savagely taking down any actor who fails to meet his standards. When the owner of the Daily Chronicle dies, and his son takes over, Jimmy quickly finds himself at odds with his new boss and his position under threat. In an attempt to preserve the power and influence he holds so sacred, Jimmy strikes a Faustian pact with a struggling actress, entangling them and the boss in a thrilling but deadly web of desire, blackmail, and betrayal.", + "posterPath": "/kVdN99IPZgQSUKVkAPWb9ZnCkhz.jpg", + "backdropPath": "/t07GHagzBuqJiMDFocMKWEraHYl.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18, + 9648 + ], + "genres": [ + "Thriller", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2024-09-13", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 96, + "popularity": 6.9878 + }, + { + "id": 3009, + "title": "The Trial", + "originalTitle": "Le Procès", + "overview": "The surreal tale of an unassuming man who is accused of a never-specified crime and shambles through bizarre encounters to escape this nightmare.", + "posterPath": "/4qDUe5HqB8pXNplSBlsoyVjNP3r.jpg", + "backdropPath": "/yhfHeIsR5Ki02b5SqBuLqAsLDCk.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1962-08-25", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7.411, + "voteCount": 536, + "popularity": 6.9878 + }, + { + "id": 43542, + "title": "The Rainmaker", + "originalTitle": "The Rainmaker", + "overview": "Lizzie Curry is on the verge of becoming a hopeless old maid. Her wit and intelligence and skills as a homemaker can't make up for the fact that she's just plain plain! Even the town sheriff, File, for whom she harbors a secrect yen, won't take a chance --- until the town suffers a drought and into the lives of Lizzie and her brothers and father comes one Bill Starbuck ... profession: Rainmaker!", + "posterPath": "/3E2dmfh3e2LOKq0psiNXAGwtZGl.jpg", + "backdropPath": "/djgaAIIFsAO18QQs1ofQ5fkH8OR.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 37 + ], + "genres": [ + "Romance", + "Western" + ], + "releaseDate": "1956-12-13", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 46, + "popularity": 6.9857 + }, + { + "id": 19967, + "title": "The Apocalypse", + "originalTitle": "The Apocalypse", + "overview": "A mother and a father search for their only child as a giant asteroid headed for Earth, triggering a series of apocalyptic events.", + "posterPath": "/vnz26kTBsxTEuR8bCOo5u7fyroe.jpg", + "backdropPath": "/qvRzZaMP26Xvz7oujgFzyobRelB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878 + ], + "genres": [ + "Action", + "Science Fiction" + ], + "releaseDate": "2007-05-22", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 3.711, + "voteCount": 19, + "popularity": 6.9852 + }, + { + "id": 1312157, + "title": "Somebody to Love", + "originalTitle": "FolleMente", + "overview": "How much do we really know about ourselves when we make a decision? What if there are multiple versions of our I within us, each with something to say?", + "posterPath": "/j0FOPkEflJN0nnyCvjENWZ116Mq.jpg", + "backdropPath": "/tOwffsVVkPWaQGmWDoZxKhGmrNi.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2025-02-20", + "releaseYear": "2025", + "originalLanguage": "it", + "voteAverage": 7.2, + "voteCount": 510, + "popularity": 6.9842 + }, + { + "id": 17813, + "title": "Alex & Emma", + "originalTitle": "Alex & Emma", + "overview": "Writer Alex Sheldon must finish his novel within a month. If he doesn't, he won't get paid. And, if that happens, angry Mafia types to whom he owes money will come looking for him. In order to expedite things, Alex hires typist Emma Dinsmore and begins dictating his novel. The book is about a doomed love affair between a character similar to Alex and a character named Polina Delacroix. But, as Alex falls for Emma, his work takes a different turn.", + "posterPath": "/1CVw4MMqeBdkUs3DfCDWkaP6O3U.jpg", + "backdropPath": "/7pHOjO5v4uQGZ9ggl5RrcRIUJYp.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2003-06-20", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.215, + "voteCount": 209, + "popularity": 6.9841 + }, + { + "id": 24405, + "title": "Chasers", + "originalTitle": "Chasers", + "overview": "Military men Rock Reilly and Eddie Devane are tasked with taking a prisoner, blonde bombshell Toni Johnson, on what becomes an unforgettable road trip. Toni, an enlistee who's in trouble for deserting her unit, soon proves that she's craftier than most inmates.", + "posterPath": "/mEG6fTyTjsA1vzTTqCXsiJzjdQ5.jpg", + "backdropPath": "/g6jT5XdfDN72THwXI01WtCSTA35.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1994-04-22", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 162, + "popularity": 6.984 + }, + { + "id": 28360, + "title": "Falling Hare", + "originalTitle": "Falling Hare", + "overview": "Relaxing with a carrot at a U.S. Army air field, Bugs is reading \"Victory Through Hare Power\" and scoffs at the notion of mentioned gremlins, little creatures who wreak havoc on planes with their diabolical sabotage.", + "posterPath": "/kTH9WxOPKAjUHNFQHsOyAeY9AVb.jpg", + "backdropPath": "/jC8ZBsCWiTj4zSr8xQdBcNb08GB.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 12 + ], + "genres": [ + "Animation", + "Comedy", + "Adventure" + ], + "releaseDate": "1943-10-30", + "releaseYear": "1943", + "originalLanguage": "en", + "voteAverage": 6.829, + "voteCount": 41, + "popularity": 6.9839 + }, + { + "id": 476046, + "title": "Birthmarked", + "originalTitle": "Birthmarked", + "overview": "Two scientists raise three children contrarily to their genetic tendencies in order to prove the ultimate power of nurture over nature.", + "posterPath": "/1OYW8gHVkZYmQs2pJ2sWj4pNSf7.jpg", + "backdropPath": "/3tYQHSuQiJUh9bPiMqyTtzo3tgW.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-03-30", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 88, + "popularity": 6.9836 + }, + { + "id": 130629, + "title": "One Desire", + "originalTitle": "One Desire", + "overview": "The \"one desire\" of ex-gambler Clint Saunders and bar woman Tacey Cromwell is to escape their shady former lives and settle down to respectability. With Clint's younger brother and an orphaned girl in tow, the couple moves to a Colorado mining town where their love is tested by Judith Watrous, daughter of the town banker, who has her sights on Clint.", + "posterPath": "/8NLRDKTZtW4wlUjSQQeob6sgWuo.jpg", + "backdropPath": "/pYZt2MuTs9uMyV7d4Whpo63M6JU.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1955-07-20", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 12, + "popularity": 6.9831 + }, + { + "id": 324325, + "title": "Twinsters", + "originalTitle": "Twinsters", + "overview": "Adopted from South Korea, raised on different continents & connected through social media, Samantha & Anaïs believe that they are twin sisters separated at birth.", + "posterPath": "/zU6hCAaOXj55xjJR6BeSZu3iWBo.jpg", + "backdropPath": "/1Bmx197oS7RELUYfgT2Alhroo1o.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 99 + ], + "genres": [ + "Family", + "Documentary" + ], + "releaseDate": "2015-07-17", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.327, + "voteCount": 139, + "popularity": 6.9829 + }, + { + "id": 530254, + "title": "The Witch: Part 1. The Subversion", + "originalTitle": "마녀", + "overview": "Ja-yoon is a high school student who struggles with memory loss after she endured some unknown trauma during her childhood. While trying to uncover the truth, she is unwittingly dragged into a world of crime and finds herself on a journey that will awaken many secrets hidden deep within.", + "posterPath": "/4i2wo2ja5g2PmUxWa1a2eYIboZf.jpg", + "backdropPath": "/f8ng3EDMLkuTMupe4TjgiJS1r0S.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 9648, + 878 + ], + "genres": [ + "Action", + "Mystery", + "Science Fiction" + ], + "releaseDate": "2018-06-27", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 7.9, + "voteCount": 683, + "popularity": 6.9825 + }, + { + "id": 510641, + "title": "Amin", + "originalTitle": "Amin", + "overview": "Amin has come from Senegal to work in France, leaving behind his wife Aïcha, and their three children. He leads a solitary life in France, where the only space he occupies is his home and the building sites on which he works. Most of his earnings are sent to Senegal. One day, he meets a woman, Gabrielle, and a relationship is born.", + "posterPath": "/uUlfkyjH2XQfJ7MyUO82ELaDUrs.jpg", + "backdropPath": "/majkgTlSm7NhrHtOhvV00KNoTXe.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-10-03", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 5.797, + "voteCount": 37, + "popularity": 6.9818 + }, + { + "id": 29963, + "title": "Bright Star", + "originalTitle": "Bright Star", + "overview": "In 1818, high-spirited young Fanny Brawne finds herself increasingly intrigued by the handsome but aloof poet John Keats, who lives next door to her family friends the Dilkes. After reading a book of his poetry, she finds herself even more drawn to the taciturn Keats. Although he agrees to teach her about poetry, Keats cannot act on his reciprocated feelings for Fanny, since as a struggling poet he has no money to support a wife.", + "posterPath": "/csN6y4nq2kaBiegHaGw0DGp4plf.jpg", + "backdropPath": "/nnyaQslEbd2ST1FAhuDyF4228mb.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2009-09-18", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 470, + "popularity": 6.9809 + }, + { + "id": 185755, + "title": "The Taking", + "originalTitle": "The Taking", + "overview": "Two strangers must discover a way to escape a sinister family who wishes to sacrifice their souls to an evil presence.", + "posterPath": "/plZoBNIJxhuf8DOBRgYZlGauXoG.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2013-04-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 2.5, + "voteCount": 34, + "popularity": 6.9805 + }, + { + "id": 8291, + "title": "Poetic Justice", + "originalTitle": "Poetic Justice", + "overview": "Still grieving after the murder of her boyfriend, hairdresser Justice writes poetry to deal with the pain of her loss. Unable to get to Oakland to attend a convention because of her broken-down car, Justice gets a lift with her friend, Iesha, and Iesha's postal worker boyfriend, Chicago. Along for the ride is Chicago's co-worker, Lucky, to whom Justice grows close after some initial problems. But is she ready to open her heart again?", + "posterPath": "/fOtMHxhYaCQcu3dwWpg7lz4Bqo0.jpg", + "backdropPath": "/lNvlerKoYwboltmK7hQfgxsYtNP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1993-07-23", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.799, + "voteCount": 268, + "popularity": 6.9799 + }, + { + "id": 80987, + "title": "Lovers and Other Relatives", + "originalTitle": "Peccato veniale", + "overview": "Sandro dreams about a woman older than himself. He works as a lifeguard at the beach and at the same time he's caring for a large number of sexually unsatisfied women who are coming for the weekend without their husbands.", + "posterPath": "/zyEIbaKesLdqVtzWLPPQhjKyky9.jpg", + "backdropPath": "/aODaXZl2IZo9xDluidSrVg7fkQ2.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1974-06-06", + "releaseYear": "1974", + "originalLanguage": "it", + "voteAverage": 5.5, + "voteCount": 25, + "popularity": 6.9798 + }, + { + "id": 886755, + "title": "The Substitute", + "originalTitle": "El suplente", + "overview": "Lucio, a prestigious university professor, takes the position of substitute teacher at a high school in the suburbs of Buenos Aires, where he grew up. Through tales, novels and poetry, he tries to distract his class from the harsh reality of their everyday lives. But soon, he must step out of his professional duties when Dilan, one of his students, is threatened by a local drug kingpin.", + "posterPath": "/iy1Q3aT2URQWhX1YeEB243FHizV.jpg", + "backdropPath": "/kCHImXJGEzD3ACuiNSRHsfKg6T0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-10-20", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 5.95, + "voteCount": 40, + "popularity": 6.9796 + }, + { + "id": 126963, + "title": "Dragon Ball Z: Battle of Gods", + "originalTitle": "ドラゴンボールZ 神と神", + "overview": "The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. After awakening from a long slumber, Beerus, the God of Destruction is visited by Whis, his attendant and learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai's advice and battles Beerus, but he is easily overwhelmed and defeated. Beerus leaves, but his eerie remark of \"Is there nobody on Earth more worthy to destroy?\" lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost.", + "posterPath": "/nxZEdYcHMuD8SSuwusDnK9CD2H1.jpg", + "backdropPath": "/pWNUpRESGnzKqweHCB77JShPZ2i.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction" + ], + "releaseDate": "2013-03-30", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.803, + "voteCount": 1594, + "popularity": 6.9791 + }, + { + "id": 52682, + "title": "Les Aristos", + "originalTitle": "Les Aristos", + "overview": "The Arbac de Neuvilles are one of the oldest families in France. They have inhabited their ancient château for fifty-two generations and are proud of their noble ancestry. But today they are stone broke. When a bailiff turns up notifying them that they owe two million euros in back taxes, these proud aristocrats are understandably shaken to the core of their ancestral seat. Just how are they to find this amount of money when none of them has any capacity for work?", + "posterPath": "/79VUP5QJKOqJiIGBlqVi0eEM5Et.jpg", + "backdropPath": "/11BoIFJtPFrtDW2xFJLGmYo7NMf.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-09-20", + "releaseYear": "2006", + "originalLanguage": "fr", + "voteAverage": 4.241, + "voteCount": 64, + "popularity": 6.9789 + }, + { + "id": 18882, + "title": "Man-Thing", + "originalTitle": "Man-Thing", + "overview": "Agents of an oil tycoon vanish while exploring a swamp marked for drilling. The local sheriff investigates and faces a Seminole legend come to life: Man-Thing, a shambling swamp-monster whose touch burns those who feel fear.", + "posterPath": "/kfPPnOygXSGaBFpsCUyu7xQdkoO.jpg", + "backdropPath": "/qgoqb6IkNYA7NE6bgBhAnP2FEQ5.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 12, + 878, + 10749 + ], + "genres": [ + "Action", + "Horror", + "Adventure", + "Science Fiction", + "Romance" + ], + "releaseDate": "2005-04-21", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 214, + "popularity": 6.9787 + }, + { + "id": 8983, + "title": "Felidae", + "originalTitle": "Felidae", + "overview": "A domestic house cat named Francis investigates the grisly feline murders taking place in his new neighborhood.", + "posterPath": "/bI9fGbmtQhtHRTNaZXnFjDzoxtI.jpg", + "backdropPath": "/vq5EcmEK3Bqsqq9cPINELCtnAUc.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 9648, + 53, + 27, + 14 + ], + "genres": [ + "Animation", + "Mystery", + "Thriller", + "Horror", + "Fantasy" + ], + "releaseDate": "1994-11-03", + "releaseYear": "1994", + "originalLanguage": "de", + "voteAverage": 6.7, + "voteCount": 142, + "popularity": 6.9786 + }, + { + "id": 1039066, + "title": "Team Bride", + "originalTitle": "Team Bride", + "overview": "Hardworking and dedicated seamstress, Hannah McKenzie, runs a side business making bespoke wedding dresses when she’s not busy with her day job at renowned bridal salon, Millington’s. Her operation is soon threatened, however, when Will Millington, heir to the bridal empire, comes in looking to revamp the brand. Along the way, the two manage to sort out their differences, work together and perhaps even fall in love…", + "posterPath": "/upNBhf9pO8Hxd0UKJ5SATUGL1VT.jpg", + "backdropPath": "/f72fvaJ6ywtGDnbbjs5hMkMuTvs.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 35, + 10749 + ], + "genres": [ + "TV Movie", + "Comedy", + "Romance" + ], + "releaseDate": "2023-04-22", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.682, + "voteCount": 22, + "popularity": 6.9785 + }, + { + "id": 286538, + "title": "Bokeh", + "originalTitle": "Bokeh", + "overview": "On a romantic getaway to Iceland, a young American couple wake up one morning to discover every person on Earth has disappeared. Their struggle to survive and to reconcile the mysterious event lead them to reconsider everything they know about themselves and the world.", + "posterPath": "/cedeEgSeKpsFZH9z9LgWbEqILlW.jpg", + "backdropPath": "/juRiTXkHfKaW5S4nZDkAleSWi4T.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 53 + ], + "genres": [ + "Drama", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2017-03-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.43, + "voteCount": 264, + "popularity": 6.9784 + }, + { + "id": 41431, + "title": "The Veterinarian's Adopted Children", + "originalTitle": "Dyrlægens plejebørn", + "overview": "Winnie's mother is going to Bangkok to settle an inheritance matter and is looking for a good boarding house for her child. She calls Dr. Linager, who tells her that he has a boarding house for \"expensive children,\" but the price is no object to Winnie's mother. When Winnie shows up, the good Dr. Linager is a little surprised. He is a veterinarian and thought he was going to be looking after a Siamese cat, but everyone in the house naturally welcomes the charming little Winnie.", + "posterPath": "/wkRwuIZKolON7sle4S57lnbNbLp.jpg", + "backdropPath": "/h29WUJKaRAU3vL1cPv7ecnvlUQB.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1968-11-29", + "releaseYear": "1968", + "originalLanguage": "da", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 6.9784 + }, + { + "id": 592984, + "title": "Hillbilly Elegy", + "originalTitle": "Hillbilly Elegy", + "overview": "An urgent phone call pulls a Yale Law student back to his Ohio hometown, where he reflects on three generations of family history and his own future.", + "posterPath": "/aA0D6DKIfLtXYNy94Qq2IW5NiGR.jpg", + "backdropPath": "/kCqWQ24m7TjA0RllQMn0JYrcy4a.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-11-09", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 985, + "popularity": 6.9783 + }, + { + "id": 1081196, + "title": "Four Mothers", + "originalTitle": "Four Mothers", + "overview": "Edward, a gay novelist saddled with caring for his elderly mother, finally finds himself on the brink of literary success. With pressure to go on a US book tour mounting, the last thing Edward needs is his friends jetting off to Spain for an impromptu Pride holiday, leaving their mothers on his doorstep! Over a chaotic weekend, he has to juggle his burgeoning career with the care of four eccentric, combative, and wildly different ladies.", + "posterPath": "/bvpXFlOuSYN0AOo9KAd0XOEs8mX.jpg", + "backdropPath": "/wiTEgZgmC312MLYHwyaWUEK1iHX.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-04-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 19, + "popularity": 6.977 + }, + { + "id": 616803, + "title": "Breaking Surface", + "originalTitle": "Breaking Surface", + "overview": "Two Swedish/Norwegian half sisters go on a winter diving trip in Northern Norway, when they get trapped after a rockslide.", + "posterPath": "/zlOvKg5WkXcwcmqy2KaiXoXLAky.jpg", + "backdropPath": "/mBijGSEEkIVt24ruvTxFuQWRKJm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2020-02-14", + "releaseYear": "2020", + "originalLanguage": "sv", + "voteAverage": 6.7, + "voteCount": 430, + "popularity": 6.9767 + }, + { + "id": 621, + "title": "Grease", + "originalTitle": "Grease", + "overview": "Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?", + "posterPath": "/hPBIursfYm5ziEmNPrJXkKIDrdI.jpg", + "backdropPath": "/pdhDFmVQSA0f5i5IL0gpWROjgZ5.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "1978-06-16", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.374, + "voteCount": 7509, + "popularity": 6.9755 + }, + { + "id": 467956, + "title": "The Professor", + "originalTitle": "The Professor", + "overview": "A world-weary college professor is given a life-changing diagnosis and decides to throw all pretense and conventions to the wind and live his life as boldly and freely as possible with a biting sense of humor, a reckless streak and a touch of madness.", + "posterPath": "/cypBSinhGuQaZ7VuOmGtcKMp91G.jpg", + "backdropPath": "/mkBgQ5eiI3ICqpXOoXipvMJ69Rl.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-05-17", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.844, + "voteCount": 1222, + "popularity": 6.9742 + }, + { + "id": 67314, + "title": "Prey", + "originalTitle": "La Traque", + "overview": "One night, several deer hurl themselves unexpectedly against the electric fence of a farm. Seeing deep signs of biting on the animals’ bodies, the farm owners realise that a predator is roaming about the neighbouring woods. Having determined to hunt it down, the farmer and his family penetrate deep into the surrounding forest. They look with bewilderment at the dying environment ravaged by a mysterious evil force. As the sun slowly sinks away, howling resounds through the forest. The hunters have become prey...", + "posterPath": "/45mP1YivLO5FnFrPGtbwBYwqR8t.jpg", + "backdropPath": "/pPD8bbXZs3h32ENRWICcmkdH4A1.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 27, + 9648, + 53 + ], + "genres": [ + "Adventure", + "Drama", + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2011-07-13", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 5.2, + "voteCount": 37, + "popularity": 6.974 + }, + { + "id": 121734, + "title": "Tad, the Lost Explorer", + "originalTitle": "Las aventuras de Tadeo Jones", + "overview": "Tad is a celebrity archaeologist and adventurer just like his hero Max Mordon... in his dreams! In reality, Tad is a Chicago construction worker. One day, however, he is mistaken for a real professor and takes his place on a flight to Peru in search of the lost city of Paititi.", + "posterPath": "/vmysxjUJkYmp6CmjNOKOeHMOzFA.jpg", + "backdropPath": "/rg10dfOmhP42jTmVs0jRTPQ0WUE.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 12, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Adventure", + "Family" + ], + "releaseDate": "2012-08-10", + "releaseYear": "2012", + "originalLanguage": "es", + "voteAverage": 6.3, + "voteCount": 593, + "popularity": 6.973 + }, + { + "id": 159037, + "title": "The Square", + "originalTitle": "The Square", + "overview": "The Square looks at the hard realities faced day-to-day by people working to build Egypt’s new democracy. Cairo’s Tahrir Square is the heart and soul of the film, which follows several young activists. Armed with values, determination, music, humor, an abundance of social media, and sheer obstinacy, they know that the thorny path to democracy only began with Hosni Mubarak’s fall. The life-and-death struggle between the people and the power of the state is still playing out.", + "posterPath": "/fbhmYUTdRgnFvumVewTCLgbvYm9.jpg", + "backdropPath": "/oMRyQ4xkqlW8W0HnVMg8IunALUy.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 18, + 36 + ], + "genres": [ + "Documentary", + "Drama", + "History" + ], + "releaseDate": "2013-06-07", + "releaseYear": "2013", + "originalLanguage": "ar", + "voteAverage": 7.624, + "voteCount": 157, + "popularity": 6.9726 + }, + { + "id": 639838, + "title": "Sinister Seduction", + "originalTitle": "Sinister Seduction", + "overview": "A recent widow is glad when her son finds a new friend, but it soon becomes clear that he's after a different type of companionship.", + "posterPath": "/1d7A66mMtoJ5TQ3UWJn26qUZEhQ.jpg", + "backdropPath": "/znEyxgB4nrJWUjtAC6AaObMRoOw.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2019-10-10", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 45, + "popularity": 6.9724 + }, + { + "id": 186929, + "title": "Borgman", + "originalTitle": "Borgman", + "overview": "An enigmatic vagrant cons himself into the home life of an arrogant upper-class family, turning their lives into a psychological nightmare in the process.", + "posterPath": "/kasPhXDk4BI4FUS3ku5Y4GrgBJY.jpg", + "backdropPath": "/d6ZaqMPzteFbvUvIZce9cTYUcn.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2013-08-29", + "releaseYear": "2013", + "originalLanguage": "nl", + "voteAverage": 6.494, + "voteCount": 340, + "popularity": 6.9719 + }, + { + "id": 25939, + "title": "Passenger", + "originalTitle": "Pasażerka", + "overview": "A German woman on a ship returning to Europe notices a face of another woman which brings recollections from the past. She tells her husband that she had been an overseer in Auschwitz during the war, but she has actually saved a woman's life.", + "posterPath": "/ux3lFO5AcyoFiO3hLXVNo133fDW.jpg", + "backdropPath": "/bRIbTIJHwyqQg1ijGU3qbl7YLMC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "1963-09-20", + "releaseYear": "1963", + "originalLanguage": "pl", + "voteAverage": 7.211, + "voteCount": 64, + "popularity": 6.9715 + }, + { + "id": 87101, + "title": "Terminator Genisys", + "originalTitle": "Terminator Genisys", + "overview": "The year is 2029. John Connor, leader of the resistance continues the war against the machines. At the Los Angeles offensive, John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future, and will ultimately change warfare forever.", + "posterPath": "/oZRVDpNtmHk8M1VYy1aeOWUXgbC.jpg", + "backdropPath": "/wvlIoof1FnKPLv9jAYanuP31V0C.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller", + "Adventure" + ], + "releaseDate": "2015-06-23", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 8741, + "popularity": 6.971 + }, + { + "id": 11450, + "title": "Quiz Show", + "originalTitle": "Quiz Show", + "overview": "Herbert Stempel's transformation into an unexpected television personality unfolds as he secures victory on the cherished American game show, 'Twenty-One.' However, when the show introduces the highly skilled contestant Charles Van Doren to replace Stempel, it compels Stempel to let out his frustrations and call out the show as rigged. Lawyer Richard Goodwin steps in and attempts to uncover the orchestrated deception behind the scenes.", + "posterPath": "/yoGJo1h3Hl2exXPVcG9UXWDENtX.jpg", + "backdropPath": "/R5yzaNz6IE2107lcmnzBSerCBP.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "1994-08-25", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.26, + "voteCount": 949, + "popularity": 6.9702 + }, + { + "id": 1530127, + "title": "Lookout", + "originalTitle": "Lookout", + "overview": "Seeking peace away from her turbulent life, a young woman accepts a job as a fire lookout at a remote wilderness tower. As she settles into her new role, eerie disturbances and strange occurrences begin to unfold, and she must uncover the chilling secrets that disrupt her isolation before it’s too late.", + "posterPath": "/puQMWEXZ9wpqwniz9ac3MTAe6BB.jpg", + "backdropPath": "/7U6sslMcPXPs9MIH5IvAl8ttTth.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878, + 27 + ], + "genres": [ + "Thriller", + "Science Fiction", + "Horror" + ], + "releaseDate": "2025-09-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.25, + "voteCount": 14, + "popularity": 6.9701 + }, + { + "id": 434203, + "title": "Newness", + "originalTitle": "Newness", + "overview": "In contemporary Los Angeles, two millennials navigating a social media–driven hookup culture begin a relationship that pushes both emotional and physical boundaries.", + "posterPath": "/vySlYPqOrI5s8Nu6bzpGKQbotVy.jpg", + "backdropPath": "/fvFrMDT1aKd1bap493IT2KqTLC7.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2017-11-03", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 614, + "popularity": 6.9697 + }, + { + "id": 10027, + "title": "Unleashed", + "originalTitle": "Unleashed", + "overview": "Raised as a slave, Danny is used to fighting for his survival. In fact, his \"master,\" Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart.", + "posterPath": "/gghvmS3UxtOw1UHIgYjpeZNxHil.jpg", + "backdropPath": "/leukkAoRu9rsa3s8oaLm8C10EWw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2005-02-02", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 2099, + "popularity": 6.9682 + }, + { + "id": 11001, + "title": "Blue Streak", + "originalTitle": "Blue Streak", + "overview": "Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as an LAPD detective.", + "posterPath": "/jek2osBtFhzU6Hjj7yp1egOtbqO.jpg", + "backdropPath": "/xDKuTzBVpJPqFc39H4hctrle87T.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "1999-09-17", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.491, + "voteCount": 1565, + "popularity": 6.9678 + }, + { + "id": 449020, + "title": "Petra", + "originalTitle": "Petra", + "overview": "Petra doesn’t know who her father is. Her entire life, it’s been hidden from her. After the death of her mother, she embarks on a search that leads her to Jaume, a famous artist and a powerful, ruthless man. On her path to uncovering the truth, Petra also meets Jaume’s son, Lucas, as well as Marisa, his mother and Jaume’s wife. That is when the story of these characters begins to intertwine in a spiral of malice, family secrets and violence that drives them all to the edge. But fate’s cruel logic is derailed by a twist that opens a path to hope and redemption.", + "posterPath": "/diWhCjEddiKR4NHiuriTteyynGu.jpg", + "backdropPath": "/pSPKYcNI2elvsV1j3MgqNwD2ceR.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-10-19", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 6.2, + "voteCount": 39, + "popularity": 6.9675 + }, + { + "id": 623634, + "title": "The Innocence", + "originalTitle": "La innòcencia", + "overview": "Lis is a teenager whose dream is to become a circus artist and leave her hometown, even if she knows that to do it she’ll have to fight her side against her parents. It’s summer and she spends her days playing with her friends and flirting with her boyfriend, a few years older than herself. The lack of privacy and the neighbours’ gossip force Lis to keep their relationship secret so that her parents won’t find out. A relationship which change her live forever.", + "posterPath": "/qOYf3L6eyCO027JoeM33pTJcNSR.jpg", + "backdropPath": "/iEaouDOkJ2w9t24vHf6KRhQ7Pw9.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-10-19", + "releaseYear": "2019", + "originalLanguage": "ca", + "voteAverage": 6.373, + "voteCount": 68, + "popularity": 6.9674 + }, + { + "id": 305638, + "title": "The Shamer's Daughter", + "originalTitle": "Skammerens datter", + "overview": "The Shamer's daughter, Dina, has unwillingly inherited her mother's supernatural ability. She can look straight into the soul of other people. When the sole heir to the throne is wrongfully accused of the horrible murders of his family, it is up to Dina to uncover the truth, but soon she finds herself whirled into a dangerous power struggle with her own life at risk.", + "posterPath": "/mFRbysvW0m1IcGFWT5FGVzRX3tr.jpg", + "backdropPath": "/1yFDezBuGNnzcKyYd0xpnA6HDW2.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 18 + ], + "genres": [ + "Fantasy", + "Adventure", + "Drama" + ], + "releaseDate": "2015-03-26", + "releaseYear": "2015", + "originalLanguage": "da", + "voteAverage": 5.8, + "voteCount": 182, + "popularity": 6.967 + }, + { + "id": 1276945, + "title": "Ferry 2", + "originalTitle": "Ferry 2", + "overview": "After losing his drug empire, Ferry Bouman has found a measure of peace away from Brabant's criminal underworld — until his past catches up to him.", + "posterPath": "/8pwdnL3pEISIN1EGmwZzU6hpNVk.jpg", + "backdropPath": "/A28EE0vgHrB0OdoxWWMfgfyEoYn.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 80, + 53 + ], + "genres": [ + "Action", + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "2024-12-19", + "releaseYear": "2024", + "originalLanguage": "nl", + "voteAverage": 5.9, + "voteCount": 119, + "popularity": 6.9665 + }, + { + "id": 839829, + "title": "Ben & Jody", + "originalTitle": "Ben & Jody", + "overview": "Two best friends band together with a group of villages to fight back against treacherous illegal loggers attempting to take away their land.", + "posterPath": "/1zpRGNnbeMoDs300hqwAL0awiq6.jpg", + "backdropPath": "/tHnTQgr8Yu03zELx64Ddd8W5iTA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2022-01-27", + "releaseYear": "2022", + "originalLanguage": "id", + "voteAverage": 5.9, + "voteCount": 15, + "popularity": 6.9665 + }, + { + "id": 135643, + "title": "Blood Red", + "originalTitle": "Blood Red", + "overview": "Set in the Napa Valley in 1895, an immigrant family struggles to keep their vineyards from industrialists.", + "posterPath": "/nqSNkrCfWAHstfBtdho31irY2pF.jpg", + "backdropPath": "/9gOp9zyoPZ6L1QchtOdVS29ldAf.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1989-08-18", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 14, + "popularity": 6.9665 + }, + { + "id": 23023, + "title": "Tooth Fairy", + "originalTitle": "Tooth Fairy", + "overview": "When minor-league hockey player Derek Thompson -- who has a penchant for knocking out his opponents' teeth every time he plays -- disillusions a fan, he is sentenced to a stint for one week as a bona fide, tutu-clad, real-life tooth fairy. Soon, Derek is inspired to rekindle his youthful dreams.", + "posterPath": "/cRZvw3bPomtucIUtMHZ3qPIYtYs.jpg", + "backdropPath": "/dfeCwxegv4rting4xftkHxmIdyu.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 14 + ], + "genres": [ + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2010-01-14", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.477, + "voteCount": 2064, + "popularity": 6.9664 + }, + { + "id": 20764, + "title": "Sleep Dealer", + "originalTitle": "Sleep Dealer", + "overview": "Set in a near-future, militarized world marked by closed borders, virtual labor and a global digital network that joins minds and experiences, three strangers risk their lives to connect with each other and break the barriers of technology.", + "posterPath": "/kFXQ4oMJkXAWjyo7Tr5GrLjmk61.jpg", + "backdropPath": "/kfBhgDnMzo050dJJq1NqDwWmAzf.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 53 + ], + "genres": [ + "Drama", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2008-12-10", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.906, + "voteCount": 128, + "popularity": 6.9645 + }, + { + "id": 729830, + "title": "The Automat", + "originalTitle": "The Automat", + "overview": "The 100-year story of the iconic restaurant chain Horn & Hardart, the inspiration for Starbucks, where generations of Americans ate and drank coffee together at communal tables. From the perspective of former customers, we watch a business climb to its peak success and then grapple with fast food in a forever changed America.", + "posterPath": "/7MVOSC8HTtPx9S3T7QeXCggUe1f.jpg", + "backdropPath": "/rb6FW2I8YEuywwQTSYauxCesZu4.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 36 + ], + "genres": [ + "Documentary", + "History" + ], + "releaseDate": "2021-09-02", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 18, + "popularity": 6.9643 + }, + { + "id": 11387, + "title": "Lord Jim", + "originalTitle": "Lord Jim", + "overview": "After being discredited as a coward, a 19th century seaman lives for only one purpose: to redeem himself. Preserved by the Academy Film Archive in partnership with Sony Pictures Entertainment in 2000.", + "posterPath": "/hgoxcPLJYYqDIlFDl7pnndcm9MT.jpg", + "backdropPath": "/ePEMEklx5d5ItZ1Cp5CDqJiP3Ms.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10749 + ], + "genres": [ + "Adventure", + "Drama", + "Romance" + ], + "releaseDate": "1965-02-15", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 6.844, + "voteCount": 81, + "popularity": 6.9641 + }, + { + "id": 16325, + "title": "Echelon Conspiracy", + "originalTitle": "Echelon Conspiracy", + "overview": "Mysterious cell phone messages promise a young American engineer untold wealth - then make him the target of a deadly international plot. Dangerous security operatives chase the engineer across the globe, while a powerful government official pursues a mysterious agenda that threatens the stability of the entire world.", + "posterPath": "/eQgT8kdjWJots3dX5Xy11le2vHk.jpg", + "backdropPath": "/rmJrzo3dXgEwS2Pgwsr8v2Jwsw8.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2009-02-27", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 471, + "popularity": 6.9629 + }, + { + "id": 42884, + "title": "Cinderella", + "originalTitle": "Cinderella", + "overview": "Cinderella chafes under the cruelty of her wicked stepmother and her evil stepsisters, until her Fairy Godmother steps in to change her life for one unforgettable night. At the ball, she falls for handsome Prince Christopher, whose parents, King Maximillian and Queen Constantina, are anxious for him to find a suitable paramour.", + "posterPath": "/54awQrtekrsI11bKg2NwQrBHLIe.jpg", + "backdropPath": "/y9OZCg6OUqtDMtedW9Pr6mSL09y.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 10751, + 14, + 10402, + 10749 + ], + "genres": [ + "TV Movie", + "Family", + "Fantasy", + "Music", + "Romance" + ], + "releaseDate": "1997-11-02", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 201, + "popularity": 6.9623 + }, + { + "id": 549514, + "title": "Fatale", + "originalTitle": "Fatale", + "overview": "After a wild one-night stand, successful sports agent Derrick Tyler watches his perfect life slowly disappear when he discovers the sexy and mysterious woman he risked everything for is determined police detective Valerie Quinlan who entangles him in her latest investigation. As he desperately tries to put the pieces together, he falls deeper into her trap, risking his family, his career, and even his life.", + "posterPath": "/tGFXEyESXIuei5tZWXRkSRSFSxi.jpg", + "backdropPath": "/tljkeU2y1dCvT51Sv4ciNf0VfmV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2020-12-18", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 368, + "popularity": 6.9616 + }, + { + "id": 48395, + "title": "Rare Exports: A Christmas Tale", + "originalTitle": "Rare Exports", + "overview": "Young Pietari lives with his reindeer-herding father in arctic Finland. On the eve of Christmas, a nearby excavation makes a frightening discovery and an evil Santa Claus is unleashed…", + "posterPath": "/jzaweEESl54ejxo3EE5uNL8lgTn.jpg", + "backdropPath": "/igFwEFRiEr0CzkQUNTcGYLxTpOi.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27 + ], + "genres": [ + "Fantasy", + "Horror" + ], + "releaseDate": "2010-12-03", + "releaseYear": "2010", + "originalLanguage": "fi", + "voteAverage": 6.2, + "voteCount": 623, + "popularity": 6.96 + }, + { + "id": 1134754, + "title": "172 Days", + "originalTitle": "172 Hari", + "overview": "A young woman with a troubled past turns to religion as she seeks purpose in life — and a chance at finding true love.", + "posterPath": "/pbeSOr5ODJMHMzR4hbLXhnHNs1S.jpg", + "backdropPath": "/sYKYfeJK83QlwL0ty5gOZ7MazCv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2023-11-23", + "releaseYear": "2023", + "originalLanguage": "id", + "voteAverage": 5.8, + "voteCount": 32, + "popularity": 6.9595 + }, + { + "id": 1358491, + "title": "Yoroï", + "originalTitle": "Yoroï", + "overview": "After a gruelling final tour, Aurélien decides to settle in Japan with his wife Nanako, who is pregnant with their first child. As the young couple move into a traditional house in the Japanese countryside, Aurélien discovers an ancient suit of armour in a well, which is about to awaken strange creatures known as Yokaïs.", + "posterPath": "/39DriTpvzihb8OYuL039IGPWNZ7.jpg", + "backdropPath": "/t9jGgUvyqs727IBoHrLuqr26l1M.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2025-10-18", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.578, + "voteCount": 45, + "popularity": 6.9582 + }, + { + "id": 884605, + "title": "No Hard Feelings", + "originalTitle": "No Hard Feelings", + "overview": "On the brink of losing her childhood home, Maddie discovers an intriguing job listing: wealthy helicopter parents looking for someone to “date” their introverted 19-year-old son, Percy, before he leaves for college. To her surprise, Maddie soon discovers the awkward Percy is no sure thing.", + "posterPath": "/gD72DhJ7NbfxvtxGiAzLaa0xaoj.jpg", + "backdropPath": "/rRcNmiH55Tz0ugUsDUGmj8Bsa4V.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2023-06-15", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.698, + "voteCount": 3592, + "popularity": 6.958 + }, + { + "id": 637693, + "title": "Spirit Untamed", + "originalTitle": "Spirit Untamed", + "overview": "Lucky Prescott's life is changed forever when she moves from her home in the city to a small frontier town and befriends a wild mustang named Spirit.", + "posterPath": "/fLE2mvuvhvzmSICOsqR9uE50Ave.jpg", + "backdropPath": "/fZkhO3JhRajayNejQUaIiBegayM.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751, + 37 + ], + "genres": [ + "Animation", + "Adventure", + "Family", + "Western" + ], + "releaseDate": "2021-05-20", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 538, + "popularity": 6.9579 + }, + { + "id": 6844, + "title": "The Ten Commandments", + "originalTitle": "The Ten Commandments", + "overview": "Escaping death, a Hebrew infant is raised in a royal household to become a prince. Upon discovery of his true heritage, Moses embarks on a personal quest to reclaim his destiny as the leader and liberator of the Hebrew people.", + "posterPath": "/3Ei59AR64x6dMZfWobPCkZjbqTL.jpg", + "backdropPath": "/3e3dVaVrla2GH6CWKbNRjTvk3s8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "1956-10-05", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 7.766, + "voteCount": 1769, + "popularity": 6.9579 + }, + { + "id": 134597, + "title": "The Collection", + "originalTitle": "The Collection", + "overview": "Arkin escapes with his life from the vicious grips of \"The Collector\" during an entrapment party where he adds beautiful Elena to his \"Collection.\" Instead of recovering from the trauma, Arkin is suddenly abducted from the hospital by mercenaries hired by Elena's wealthy father. Arkin is blackmailed to team up with the mercenaries and track down The Collector's booby trapped warehouse and save Elena.", + "posterPath": "/wxUasHKoR8dtInQiXNUknOqi6Ao.jpg", + "backdropPath": "/9wILyQxVRQZ7Ixfl1NGjKvcoC02.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2012-11-30", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.395, + "voteCount": 1092, + "popularity": 6.9564 + }, + { + "id": 72559, + "title": "G.I. Joe: Retaliation", + "originalTitle": "G.I. Joe: Retaliation", + "overview": "Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.", + "posterPath": "/3rWIZMzTKcCtV0eHJ70Z4Ru659f.jpg", + "backdropPath": "/pEhXq18GVe1dg2ltplcxtGWfSje.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure", + "Thriller" + ], + "releaseDate": "2013-03-27", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 5647, + "popularity": 6.9561 + }, + { + "id": 976576, + "title": "Emmanuelle", + "originalTitle": "Emmanuelle", + "overview": "While traveling, Emmanuelle meets Kei, a man who constantly eludes her. Though she indulges in the many alluring distractions, she can’t shake their chance encounter. Will she submit to her basest desires to forge a deeper relationship?", + "posterPath": "/s9gmKus9YPTDzdMKZQJYPh0VoGk.jpg", + "backdropPath": "/xqIstzB0ELbYyfzKcYaSwLb4Whs.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2024-09-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 84, + "popularity": 6.9548 + }, + { + "id": 388862, + "title": "Countdown", + "originalTitle": "Countdown", + "overview": "A madman captures a young boy and rigs him with explosives. Ray Fitzpatrick, still haunted by the loss of his own son, will defy orders to stop the clock and save a life", + "posterPath": "/qTzuFkYy0JKsiZtv3hdVB6pAHhv.jpg", + "backdropPath": "/xzTcVyCLqVUlNIZyPpICs80qoVr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 9648, + 53 + ], + "genres": [ + "Action", + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "2016-04-05", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 98, + "popularity": 6.9542 + }, + { + "id": 127533, + "title": "Rurouni Kenshin Part I: Origins", + "originalTitle": "るろうに剣心", + "overview": "In 1868, after the Bakumatsu war ends, the ex-assassin Kenshin Himura traverses Japan with an inverted sword, to defend the needy without killing.", + "posterPath": "/vo3Zs07PZfKNsTrU0pcPZONJcN5.jpg", + "backdropPath": "/2bHoj05gR7I5gp4oeoDCY6bU42d.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 14, + 10752, + 36 + ], + "genres": [ + "Adventure", + "Action", + "Fantasy", + "War", + "History" + ], + "releaseDate": "2012-08-25", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.529, + "voteCount": 868, + "popularity": 6.954 + }, + { + "id": 411201, + "title": "Dancer", + "originalTitle": "Dancer", + "overview": "Sergei Polunin is a breathtaking ballet talent who questions his existence and his commitment to dance just as he is about to become a legend.", + "posterPath": "/4PtRUBuAn2EX8HGX36LWR4PLeq6.jpg", + "backdropPath": "/pfpkKAVBHNoXuQH3bd6F1GuKqgu.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2016-09-16", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.264, + "voteCount": 70, + "popularity": 6.9532 + }, + { + "id": 284052, + "title": "Doctor Strange", + "originalTitle": "Doctor Strange", + "overview": "After his career is destroyed, a brilliant but arrogant surgeon gets a new lease on life when a sorcerer takes him under her wing and trains him to defend the world against evil.", + "posterPath": "/xf8PbyQcR5ucXErmZNzdKR0s8ya.jpg", + "backdropPath": "/3zvZ699gMW2RhWc0GisIukzq0Ls.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 28 + ], + "genres": [ + "Fantasy", + "Adventure", + "Action" + ], + "releaseDate": "2016-10-25", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.418, + "voteCount": 22942, + "popularity": 6.9526 + }, + { + "id": 1181538, + "title": "Crypto Boy", + "originalTitle": "Crypto Boy", + "overview": "Following a dispute with his father, a young man falls prey to cryptocurrency's allure and an entrepreneur's audacious promises of financial freedom.", + "posterPath": "/SVbLd0L1L611hWYGxSqyFyGu1f.jpg", + "backdropPath": "/wn8Jgn9nzyaINM3oIsBlpt8UuHr.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-10-19", + "releaseYear": "2023", + "originalLanguage": "nl", + "voteAverage": 6.375, + "voteCount": 40, + "popularity": 6.952 + }, + { + "id": 148151, + "title": "Dark Desire", + "originalTitle": "Dark Desire", + "overview": "A young man desperate to be connected to the people close to him resorts to devious measures to achieve that desire", + "posterPath": "/hVTVMneeykFcrWhWJQO2AYSf1X0.jpg", + "backdropPath": "/7V0HE4vWdSWOyZfyrpB8M7AJ2S7.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 80, + 9648, + 53 + ], + "genres": [ + "TV Movie", + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "2012-11-23", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 4.542, + "voteCount": 12, + "popularity": 6.9512 + }, + { + "id": 9032, + "title": "Big Daddy", + "originalTitle": "Big Daddy", + "overview": "A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn't go as planned and he becomes the unlikely foster father.", + "posterPath": "/cqFnFg6YS8urJT6YC95IDkn0VHz.jpg", + "backdropPath": "/1bLZdOPOctwFF2IBONf6KczIppS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1999-06-25", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.493, + "voteCount": 3424, + "popularity": 6.9512 + }, + { + "id": 45005, + "title": "The Monsters", + "originalTitle": "I mostri", + "overview": "The myths of the sixties are satirized in 20 episodes.", + "posterPath": "/6ojy9P8zp1Fz8byLqACux5H2cVP.jpg", + "backdropPath": "/ic3hMvpouz2sIDrrlEnMYSZ8Sl9.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1963-10-30", + "releaseYear": "1963", + "originalLanguage": "it", + "voteAverage": 7.3, + "voteCount": 193, + "popularity": 6.9498 + }, + { + "id": 768449, + "title": "American Badger", + "originalTitle": "American Badger", + "overview": "A seemingly cold-blooded hitman is assigned to befriend a call girl, but all hell breaks loose when he is assigned to kill her.", + "posterPath": "/xoNWf2GnEF87a8SbpB1NvhX2zr0.jpg", + "backdropPath": "/sw0mnuNrdSuO7QQNTZTtzTF3dEs.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2021-03-06", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 45, + "popularity": 6.9496 + }, + { + "id": 146047, + "title": "Emmanuelle 5", + "originalTitle": "Emmanuelle 5", + "overview": "Emmanuelle, the sexiest woman in the world, endures a streak of bad luck that begins when she's stripped by a mob of adoring fans at an international film festival. Emmanuelle's lousy luck continues when she's abducted from her yacht off the South of France and forced to submit to the erotic desires of an Arab sheik.", + "posterPath": "/anR5lxDx7RUKwV59RFSD3uF3fTj.jpg", + "backdropPath": "/AkEqu4uV0KGzhRtH8vAoQu3OnZJ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "1987-01-07", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 4.614, + "voteCount": 35, + "popularity": 6.9494 + }, + { + "id": 73245, + "title": "Bleach the Movie: Hell Verse", + "originalTitle": "劇場版 BLEACH 地獄篇", + "overview": "Hell – A place where beings that have committed mortal sins during their lifetime are sent. It is a realm where even Soul Reapers are forbidden to interfere. When a group of vicious Sinners plot to escape from this eternal prison, they discover that Substitute Soul Reaper Ichigo Kurosaki is the key to their freedom.", + "posterPath": "/pd7V5iCB19VBPJkihxFXFwSRW2M.jpg", + "backdropPath": "/nuQSpGRKJkxnLOMWzZD8UZ6E92B.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 14, + 12 + ], + "genres": [ + "Action", + "Animation", + "Fantasy", + "Adventure" + ], + "releaseDate": "2010-12-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 194, + "popularity": 6.9482 + }, + { + "id": 55567, + "title": "Standing Ovation", + "originalTitle": "Standing Ovation", + "overview": "A group of young girls is competing in a nation teen music video competition.", + "posterPath": "/tPd7dnvIgzkvM8XLyC4mQCq21T1.jpg", + "backdropPath": "/gKC9e9AaS6ay0Xf82Db8WSRhJ8v.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10402, + 10751 + ], + "genres": [ + "Comedy", + "Music", + "Family" + ], + "releaseDate": "2010-07-16", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 3.325, + "voteCount": 20, + "popularity": 6.948 + }, + { + "id": 2299, + "title": "The Light", + "originalTitle": "L'Équipier", + "overview": "Camille arrives in Ouessant, the island of her birth off the Brittany coast, to sell the family home. She spends a last night in the house during which she discovers a secret. In 1963 a man came to work with her father, who was the Jument lighthouse operator. He only stayed two months, but his presence proved to be a disturbing catalyst.", + "posterPath": "/l7fJ1TmyaNVLHBtjz4QbUW5qLVs.jpg", + "backdropPath": "/nX9KhYw8gwOIjeD078wtIPjs0Fd.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-11-03", + "releaseYear": "2004", + "originalLanguage": "fr", + "voteAverage": 6.716, + "voteCount": 44, + "popularity": 6.948 + }, + { + "id": 480410, + "title": "The Sandman", + "originalTitle": "The Sandman", + "overview": "A monster from a little girl's nightmares comes to life and attacks anyone who would harm her.", + "posterPath": "/iak7mWZNIoYYS6KI4bzcIKONX2w.jpg", + "backdropPath": "/7NUyoeR4UffRt206c9B9On9bkzV.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2017-10-14", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.559, + "voteCount": 110, + "popularity": 6.9467 + }, + { + "id": 1120628, + "title": "Hard Feelings", + "originalTitle": "Hammerharte Jungs", + "overview": "Teenagers Charly and Paula worry that sex could ruin their friendship, while their suddenly and surprisingly bossy private parts urge them to go for it.", + "posterPath": "/d2jU7XWkPjRN0LpakwShBH2FLZo.jpg", + "backdropPath": "/mqto2rCJcuXFHUkDNsLf3FF2qki.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-05-24", + "releaseYear": "2023", + "originalLanguage": "de", + "voteAverage": 5.868, + "voteCount": 170, + "popularity": 6.9458 + }, + { + "id": 336806, + "title": "The Here After", + "originalTitle": "Efterskalv", + "overview": "When John returns home to his father after serving time in prison, he is looking forward to starting his life afresh. However, in the local community his crime is neither forgotten nor forgiven.", + "posterPath": "/taRuclzevcoTBNlT72rlfdILxsd.jpg", + "backdropPath": "/2KBm2Q6NzwdtOH5Gav9WgkdHlpw.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-01-20", + "releaseYear": "2015", + "originalLanguage": "sv", + "voteAverage": 6.3, + "voteCount": 44, + "popularity": 6.944 + }, + { + "id": 808023, + "title": "The Virtuoso", + "originalTitle": "The Virtuoso", + "overview": "Danger, deception and murder descend upon a sleepy town when a professional assassin accepts a new assignment from his enigmatic boss.", + "posterPath": "/ufFbnDMa1XNJxWYxlYv2jEPxUcD.jpg", + "backdropPath": "/aSglK0vFI50etQENUq4EIcwfoMR.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 28 + ], + "genres": [ + "Thriller", + "Crime", + "Action" + ], + "releaseDate": "2021-04-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 411, + "popularity": 6.9439 + }, + { + "id": 43532, + "title": "Summer Holiday", + "originalTitle": "Summer Holiday", + "overview": "1960s musical showcasing Cliff Richard. Four bus mechanics working for London Transport strike up a deal with the company: they do up a one of the company's legendary red double decker buses and take it to southern Europe as a mobile hotel. If it succeeds, they will be put in charge of a whole fleet. While on the road in France they pick up three young British ladies whose car breaks down and offer to take them to their next singing job in Athens. They also pick up a stowaway, who hides the fact that she's a famous American pop star on the run, chased by the media and her parents.", + "posterPath": "/b4UwmZrb1ReyTXoAFRXhdgv05Hd.jpg", + "backdropPath": "/yD1631ZvQI5D8DlXDM9Cf0uVRhJ.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 10749 + ], + "genres": [ + "Music", + "Romance" + ], + "releaseDate": "1963-02-18", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 39, + "popularity": 6.9432 + }, + { + "id": 17483, + "title": "Shelter", + "originalTitle": "Shelter", + "overview": "Forced to give up his dreams of art school, Zach works dead-end jobs to support his sister and her son. Questioning his life, he paints, surfs and hangs out with his best friend, Gabe. When Gabe's older brother returns home for the summer, Zach suddenly finds himself drawn into a relationship he didn't expect.", + "posterPath": "/eYA8KiSnIAbxtoIgg4lpZjB0dfz.jpg", + "backdropPath": "/4cK3YaPMAnyfqrpfMXlB9qyQbAL.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2007-06-16", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.743, + "voteCount": 491, + "popularity": 6.943 + }, + { + "id": 545836, + "title": "Amundsen", + "originalTitle": "Amundsen", + "overview": "The story of Norwegian explorer Roald Amundsen, the leader of the first expedition to reach the South Pole in 1911, and the first person to reach both the North and South Poles in 1926. Follows his all-consuming drive as a polar explorer and the tragedy he brought on himself and others by sacrificing everything in the icy wastelands to achieve his dream.", + "posterPath": "/yvz9rsCnqq1F0MauURPzps11Y6S.jpg", + "backdropPath": "/dLaU69dwoBIlhEqKvdoYn0cMmJa.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 12 + ], + "genres": [ + "Drama", + "History", + "Adventure" + ], + "releaseDate": "2019-02-15", + "releaseYear": "2019", + "originalLanguage": "no", + "voteAverage": 6, + "voteCount": 186, + "popularity": 6.9424 + }, + { + "id": 949855, + "title": "Black Mold", + "originalTitle": "Black Mold", + "overview": "Photographers Brooke Konrad and Tanner Behlman travel to rural, abandoned buildings to capture the inherent beauty of long-forgotten locations, but far from forgotten are the traumatic memories that surface in Brooke when they meet The Man Upstairs, an unsuspecting squatter. As tensions and uncertainties arise, Brooke must determine if this mysterious stranger will provide her the closure she so desperately seeks or let the fears of the past consume her.", + "posterPath": "/tEN12WSxepFqZmWEknBnrXoHDvL.jpg", + "backdropPath": "/lOEdmapSjFaJBmxDU3aXQKnojZq.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18, + 10770 + ], + "genres": [ + "Horror", + "Thriller", + "Drama", + "TV Movie" + ], + "releaseDate": "2025-01-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.063, + "voteCount": 16, + "popularity": 6.9413 + }, + { + "id": 1372028, + "title": "Christmas in the Spotlight", + "originalTitle": "Christmas in the Spotlight", + "overview": "A pop star named Bowyn hasn’t found Mr. Right, until she meets Drew, a professional football player, backstage at one of her shows. When Drew publicly declares he has a crush on Bowyn, they decide to give dating a shot. Their feelings grow stronger, but can it last in the limelight?", + "posterPath": "/pfPagixv71PAF6r9PTCwuiLJS5h.jpg", + "backdropPath": "/jZfB1JCcVu8CNblxzZUQVaIMnK1.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 10770 + ], + "genres": [ + "Romance", + "TV Movie" + ], + "releaseDate": "2024-11-23", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 20, + "popularity": 6.9409 + }, + { + "id": 8012, + "title": "Get Shorty", + "originalTitle": "Get Shorty", + "overview": "Chili Palmer is a Miami mobster who gets sent to L.A. to collect a bad debt from Harry Zimm, a Hollywood producer who specializes in cheesy horror films. When Chili meets Harry's leading lady, the romantic sparks fly. After pitching his own life story as a movie idea, Chili learns that being a mobster and being a Hollywood producer really aren't all that different.", + "posterPath": "/r82SdPhg4fnIcLt0ogIjQxqjdcO.jpg", + "backdropPath": "/wiZT8DVmAZNwmqd8G3QjWZ1mpLB.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53, + 80 + ], + "genres": [ + "Comedy", + "Thriller", + "Crime" + ], + "releaseDate": "1995-10-20", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.506, + "voteCount": 1143, + "popularity": 6.9406 + }, + { + "id": 59210, + "title": "The Mother", + "originalTitle": "The Mother", + "overview": "A grandmother has a passionate affair with a man half her age, who is also sleeping with her daughter.", + "posterPath": "/orz4yFTLaovOvEn458e4kVd3spQ.jpg", + "backdropPath": "/nKg5kyHwYzJU7US64unJfCkjQEd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2003-11-14", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.96, + "voteCount": 63, + "popularity": 6.9403 + }, + { + "id": 224526, + "title": "Deceptions", + "originalTitle": "Deceptions", + "overview": "When a wealthy socialite kills her husband, she claims self-defense. The cop assigned to the case is suspicious but becomes obsessed with the sensual young woman.", + "posterPath": "/tHmLkeaj6KP5obCWKEN4EHzA9N6.jpg", + "backdropPath": "/nyWuUMgXGvQiAVI1r8ASqKMikmk.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 10770 + ], + "genres": [ + "Mystery", + "Thriller", + "TV Movie" + ], + "releaseDate": "1990-09-29", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 10, + "popularity": 6.9401 + }, + { + "id": 518158, + "title": "Leprechaun Returns", + "originalTitle": "Leprechaun Returns", + "overview": "A group of unwitting sorority sisters accidentally awaken the serial-killing Leprechaun after they build a sorority house on his hunting grounds.", + "posterPath": "/7kToQsV04Jel1ob7VJ471LDz7wD.jpg", + "backdropPath": "/bdF98wEoQupFimI4bEIbfpVLKM1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2018-12-11", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.126, + "voteCount": 653, + "popularity": 6.9395 + }, + { + "id": 669665, + "title": "Our Father", + "originalTitle": "PadreNostro", + "overview": "Two young boys, Valerio and Christian, form a powerful friendship over the summer.", + "posterPath": "/woa5t4LuiJ14Pl2Bqjn8DtLHne8.jpg", + "backdropPath": "/v285GDYJ6wKslA83nvgIZl7HQG4.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-09-24", + "releaseYear": "2020", + "originalLanguage": "it", + "voteAverage": 6.614, + "voteCount": 210, + "popularity": 6.9392 + }, + { + "id": 2605, + "title": "Short Circuit", + "originalTitle": "Short Circuit", + "overview": "After a lightning bolt zaps a robot named Number 5, the lovable machine starts to think he's human and escapes the lab. Hot on his trail is his designer, Newton, who hopes to get to Number 5 before the military does. In the meantime, a spunky animal lover mistakes the robot for an alien and takes him in, teaching her new guest about life on Earth.", + "posterPath": "/e3eimdUK6lLe0iaSlLrYVQF3yeL.jpg", + "backdropPath": "/q5bvUaw6xjPvsdnjaoPknXoxHur.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 35, + 10751 + ], + "genres": [ + "Science Fiction", + "Comedy", + "Family" + ], + "releaseDate": "1986-05-09", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1565, + "popularity": 6.9376 + }, + { + "id": 44945, + "title": "Trust", + "originalTitle": "Trust", + "overview": "A suburban family is torn apart when fourteen-year-old Annie meets her first boyfriend online. After months of communicating via online chat and phone, Annie discovers her friend is not who he originally claimed to be. Shocked into disbelief, her parents are shattered by their daughter's actions and struggle to support her as she comes to terms with what has happened to her once innocent life.", + "posterPath": "/rXoZYWd2G7pBh8N8Cp5ZO5Sjzbl.jpg", + "backdropPath": "/iqrjewqeGYVrjxkVmmlL6DcgBT9.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2010-09-10", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 1011, + "popularity": 6.9375 + }, + { + "id": 834742, + "title": "First Love", + "originalTitle": "First Love", + "overview": "A young man’s difficult entry into adulthood, who experiences the highs and lows of his first love, while dealing with the familial fallout spurred by the financial crisis of 2008.", + "posterPath": "/hqwSUWQcnd1cxpc6Gdx1X3t5v2O.jpg", + "backdropPath": "/3PIF0u6ulHX9Se0DED4TCGXG4U2.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2022-06-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.693, + "voteCount": 145, + "popularity": 6.9372 + }, + { + "id": 126565, + "title": "Freedom Force", + "originalTitle": "Los Ilusionautas", + "overview": "There is a plot under way to change the course of history. Four kids are chosen to be the Freedom Force—a gang of unlikely heroes who travel through time to change the outcome of sacred stories.", + "posterPath": "/vix3uo8gmocpuPdiNzM2E8Waptp.jpg", + "backdropPath": "/kZfNciEBBO4b1TI5cwdyQitY24O.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Family" + ], + "releaseDate": "2012-01-26", + "releaseYear": "2012", + "originalLanguage": "es", + "voteAverage": 3.9, + "voteCount": 24, + "popularity": 6.9372 + }, + { + "id": 10610, + "title": "The Medallion", + "originalTitle": "The Medallion", + "overview": "A Hong Kong detective suffers a fatal accident involving a mysterious medallion and is transformed into an immortal warrior with superhuman powers.", + "posterPath": "/lbjFWKfe8WdS8Pj6WVPlyEKeVEo.jpg", + "backdropPath": "/bfegQ8scwwEASEXZzdtTNQErY7F.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 14, + 28, + 35 + ], + "genres": [ + "Thriller", + "Fantasy", + "Action", + "Comedy" + ], + "releaseDate": "2003-08-15", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.611, + "voteCount": 1149, + "popularity": 6.937 + }, + { + "id": 92389, + "title": "Badge 373", + "originalTitle": "Badge 373", + "overview": "When his partner is killed, tough Irish detective Eddie Ryan vows to avenge the death, whatever the cost. As he begins unraveling clues, his behavior becomes so outrageous that he's obliged to turn in his badge, but the experience only emboldens him. Ryan eventually learns that his partner was caught up in a Puerto Rican gun-running scheme masterminded by a crook named Sweet Willie, who wants to foment revolutionary war.", + "posterPath": "/6U6YqtSSZr5HYt0DQijSentQVZc.jpg", + "backdropPath": "/k3z9ZMLv5KSsYAUCY5V4QYCCwEg.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18 + ], + "genres": [ + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "1973-07-25", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 5.534, + "voteCount": 29, + "popularity": 6.9366 + }, + { + "id": 70584, + "title": "Hellraiser: Revelations", + "originalTitle": "Hellraiser: Revelations", + "overview": "Two friends in Mexico discover the Lament Configuration and unleash Pinhead, but one decides to try to survive by swapping himself with someone else. Once they go missing, family members go in search of them, but find Pinhead instead.", + "posterPath": "/xvHvlulvXvGV6ouEsOesOEYX8Jk.jpg", + "backdropPath": "/qv5zpQSx8naAm8C59DGVLMdZxbp.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2011-10-18", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 3.6, + "voteCount": 347, + "popularity": 6.9363 + }, + { + "id": 184345, + "title": "A Haunted House 2", + "originalTitle": "A Haunted House 2", + "overview": "After exorcising the demons of his ex, Malcolm starts afresh with his new girlfriend and her two children. After moving into their dream home, Malcolm is once again plagued by bizarre paranormal events.", + "posterPath": "/oV7M00fPXy5P0nbdeMbSUjYv0vx.jpg", + "backdropPath": "/pW7ULLVJr0TXxxjDB6lZ4L07vfP.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27 + ], + "genres": [ + "Comedy", + "Horror" + ], + "releaseDate": "2014-04-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.179, + "voteCount": 1538, + "popularity": 6.9361 + }, + { + "id": 24870, + "title": "Viva", + "originalTitle": "Viva", + "overview": "Abandoned by her husband, Barbi is dragged into trouble by her girlfriend, who spouts women's lib as she gets Barbi to discard her bra and go out on the town. Barbi becomes a Red Riding Hood in a sea of wolves, and quickly learns a lot more than she wanted to about nudist camps, the hippie scene, orgies, bisexuality, sadism, drugs, and bohemia.", + "posterPath": "/6c8GlvDF71b1f62K8fapWAa8Qtv.jpg", + "backdropPath": "/pk05jSI6yQqK0duLEFOUAtvycYv.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2008-03-07", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.086, + "voteCount": 35, + "popularity": 6.9359 + }, + { + "id": 1256192, + "title": "Ari", + "originalTitle": "Ari", + "overview": "Right in the middle of a school inspector’s visit, Ari, a 27-year-old student teacher, collapses. Angry with him for being a failure, his father kicks him out of the house. Emotionally raw, and alone in the city, Ari reluctantly forces himself to rekindle his relationships with old friends. As his memories of the previous months successively ebb and flow, Ari discovers that other people aren’t doing as well as he imagined, and that perhaps he has been sleepwalking through his own life.", + "posterPath": "/knT2qs82x7tey0xOHgEkYua2bIs.jpg", + "backdropPath": "/mccHZJMj3pHfHtbmG48txYdgamR.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770 + ], + "genres": [ + "Drama", + "TV Movie" + ], + "releaseDate": "2025-02-15", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 6.9349 + }, + { + "id": 517324, + "title": "Yucatán", + "originalTitle": "Yucatán", + "overview": "Two white collar thieves compete fiercely against the other trying to steal to an old baker the millions he won on the lotto.", + "posterPath": "/6z3f3I2YLpaipyYGItOf7c7kqRK.jpg", + "backdropPath": "/xmfLkz196E6RC4YpZV0wJpEA5Af.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-08-31", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 5.6, + "voteCount": 150, + "popularity": 6.9334 + }, + { + "id": 16161, + "title": "Baby Boy", + "originalTitle": "Baby Boy", + "overview": "The story of Jody, a misguided, 20-year-old African-American who is really just a baby boy finally forced-kicking and screaming to face the commitments of real life. Streetwise and jobless, he has not only fathered two children by two different women-Yvette and Peanut but still lives with his own mother. He can't seem to strike a balance or find direction in his chaotic life.", + "posterPath": "/d9b5sDAY2q2u2fWFYZPmt0Cl2p7.jpg", + "backdropPath": "/wyMfhalkfbEjrAnvlqs9zOnDsCZ.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10749, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Romance", + "Thriller" + ], + "releaseDate": "2001-06-27", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.11, + "voteCount": 332, + "popularity": 6.9333 + }, + { + "id": 141733, + "title": "Cottage Country", + "originalTitle": "Cottage Country", + "overview": "When Todd takes his girlfriend Cammie up to the family cottage for a reclusive proposal, the last thing he expected to be doing was dealing with was his slacker brother and his hippie girlfriend. But in this comedy of errors, Todd and Cammie, have to deal with his accidentally murdered brother in order to live happily ever after.", + "posterPath": "/nbUTgFg6zJ1j47irmiivsDEI2rU.jpg", + "backdropPath": "/mGsVAfnZSTeAm2ny9FSjSrXx9xf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 10749, + 53, + 27 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Romance", + "Thriller", + "Horror" + ], + "releaseDate": "2013-03-13", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 169, + "popularity": 6.9331 + }, + { + "id": 51739, + "title": "The Secret World of Arrietty", + "originalTitle": "借りぐらしのアリエッティ", + "overview": "14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items \"borrowed\" from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.", + "posterPath": "/3lSRaSjDp2nkXMQkzzjpRi3035O.jpg", + "backdropPath": "/7Z7WVzJsSReG8B0CaPk0bvWD7tK.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 16, + 10751 + ], + "genres": [ + "Fantasy", + "Animation", + "Family" + ], + "releaseDate": "2010-07-16", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 3032, + "popularity": 6.932 + }, + { + "id": 1333100, + "title": "Attack on Titan: THE LAST ATTACK", + "originalTitle": "劇場版「進撃の巨人」完結編 THE LAST ATTACK", + "overview": "A colossal-sized omnibus film bringing together the last two episodes of Attack on Titan in the franchise's first-ever theatrical experience. After venturing beyond the walls and separated from his comrades, Eren finds himself inspired by this new truth and plots the \"Rumbling,\" a terrifying plan to eradicate every living thing in the world. With the fate of the world hanging in the balance, a motley crew of Eren's former comrades and enemies scramble to halt his deadly mission. The only question is, can they stop him?", + "posterPath": "/wgwldDDlTDDMrluOMkpSA8lyKjv.jpg", + "backdropPath": "/nB6IR9XfdRpVRKCz85uT97EjgwB.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 12, + 18 + ], + "genres": [ + "Animation", + "Action", + "Adventure", + "Drama" + ], + "releaseDate": "2024-11-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 134, + "popularity": 6.9302 + }, + { + "id": 72317, + "title": "True Blue", + "originalTitle": "True Blue", + "overview": "When a dismembered hand is found in a city pond, maverick cop Rembrandt Macy is drawn into a chilling investigation. His search for answers leads him into the secret life of the victim, guided by her roommate Nikki. As Macy uncovers a web of corruption, from shadowy dealings at City Hall to a ruthless gang of Asian drug traffickers, he realizes that nothing is as it seems, and that Nikki herself may be hiding dangerous secrets.", + "posterPath": "/wGKNSooidNSRhxx5h9ExGA926OF.jpg", + "backdropPath": "/4oCMj3Xb3Nr3R5qBD85SXR2K2y7.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 9648, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2001-11-29", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 4.82, + "voteCount": 25, + "popularity": 6.9296 + }, + { + "id": 96966, + "title": "Raggedy Man", + "originalTitle": "Raggedy Man", + "overview": "Nita, a divorced mother of two boys, is stuck working as a telephone operator in a small Texas town in World War II. Her friendship with a sailor on leave causes tongues to wag in town.", + "posterPath": "/nYYAq3645BZPwdmfw7rsSTp8HFE.jpg", + "backdropPath": "/rNkXQSZoslH70cI8o4QV88jFGCG.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1981-09-18", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 33, + "popularity": 6.929 + }, + { + "id": 244117, + "title": "Emily & Tim", + "originalTitle": "Emily & Tim", + "overview": "The movie is comprised of six vignettes. A look at the tumultuous marriage of Tim and Emily Hanratty over half a century.", + "posterPath": "/vnRbuZpESsiXY4cSpCNjZ9RrgjH.jpg", + "backdropPath": "/cll6hdaB3jNkZXUxrtsSqW4eTVk.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-08-29", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.636, + "voteCount": 11, + "popularity": 6.9277 + }, + { + "id": 714028, + "title": "Dustin", + "originalTitle": "Dustin", + "overview": "In an abandoned warehouse, a crowd is dancing as one on 145 BPM techno music. Among them is Dustin, a young transgender woman and crew: Felix, Raya and Juan. As the night draws on, collective hysteria morphs into sweet melancholy, and euphoria into yearning for tenderness.", + "posterPath": "/tLs0pw2FnIVGBWNOjjWiZiCRWLU.jpg", + "backdropPath": "/pev2zssCxIB0N2X2rVSFAJ6Unq6.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-10-20", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 5.933, + "voteCount": 15, + "popularity": 6.9272 + }, + { + "id": 499170, + "title": "Harmony", + "originalTitle": "Harmony", + "overview": "Born with an energetic power to absorb fear from others, a young woman must find love to balance the fears of her own and fight an ever growing storm of negative energy.", + "posterPath": "/4brb3rtSdafSXV1QMS75gbqcl3W.jpg", + "backdropPath": "/6S9XHLS7iSLcNMW1bNb09aBch78.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 10749, + 53, + 878 + ], + "genres": [ + "Fantasy", + "Romance", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.288, + "voteCount": 40, + "popularity": 6.9267 + }, + { + "id": 1277988, + "title": "Caramelo", + "originalTitle": "Caramelo", + "overview": "After a life-changing diagnosis, a promising chef finds hope and humor with the help of a fur-midable dog friend.", + "posterPath": "/c4ZEAah5a01cu27w7vT2IAoFogk.jpg", + "backdropPath": "/wBV11KLQcp5pyxl8JW1lBaDshqr.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "pt", + "voteAverage": 7.768, + "voteCount": 199, + "popularity": 6.9265 + }, + { + "id": 718012, + "title": "No. 10", + "originalTitle": "Nr. 10", + "overview": "A stubborn stage actor navigates single fatherhood, a strenuous theatre project, an adulterous love affair, and the confounding dreams awakened by a puzzling street encounter with a mysterious stranger.", + "posterPath": "/zbekRqTIW8KX0NKDxHMqTsslDbY.jpg", + "backdropPath": "/riD6TjIKgZujzqWdB6PQSg0MHrP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 53 + ], + "genres": [ + "Drama", + "Comedy", + "Thriller" + ], + "releaseDate": "2021-09-30", + "releaseYear": "2021", + "originalLanguage": "nl", + "voteAverage": 6.5, + "voteCount": 15, + "popularity": 6.9256 + }, + { + "id": 1735, + "title": "The Mummy: Tomb of the Dragon Emperor", + "originalTitle": "The Mummy: Tomb of the Dragon Emperor", + "overview": "Archaeologist Rick O'Connell travels to China, pitting him against an emperor from the 2,000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time, O'Connell enlists the help of his wife and son to quash the so-called 'Dragon Emperor' and his abuse of supernatural power.", + "posterPath": "/A3acM1lX5PNWQa6r5qeMAJOxbnT.jpg", + "backdropPath": "/W034dd7w2malON26KWyZm4y37W.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 14 + ], + "genres": [ + "Adventure", + "Action", + "Fantasy" + ], + "releaseDate": "2008-07-01", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.51, + "voteCount": 4657, + "popularity": 6.9239 + }, + { + "id": 107438, + "title": "The Crawlers", + "originalTitle": "The Crawlers", + "overview": "People from a small town are attacked by evil radioactive tree roots growing in the forest.", + "posterPath": "/yI5V7KFXGhHZl8TEfgaDZ8CVhaQ.jpg", + "backdropPath": "/oKQ3kSui8T5zYPu4FLOGsCsRa21.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1991-10-18", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 3.6, + "voteCount": 39, + "popularity": 6.9233 + }, + { + "id": 46556, + "title": "Black Venus", + "originalTitle": "Black Venus", + "overview": "Spanish actor Jose Antonio Ceinos stars as a down-and-out sculptor, whose inspiration returns with the strange appearance of a beautiful, mysterious black muse.", + "posterPath": "/rR07Oegct3UsvPvlAS0kKVycspX.jpg", + "backdropPath": "/hs8xt8osBWftyfUYdZcwzBMn3GQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1983-01-05", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 22, + "popularity": 6.9231 + }, + { + "id": 639720, + "title": "IF", + "originalTitle": "IF", + "overview": "After discovering she can see everyone's imaginary friends, a girl embarks on a magical adventure to reconnect forgotten imaginary friends with their kids.", + "posterPath": "/xbKFv4KF3sVYuWKllLlwWDmuZP7.jpg", + "backdropPath": "/nxxCPRGTzxUH8SFMrIsvMmdxHti.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 10751 + ], + "genres": [ + "Comedy", + "Fantasy", + "Family" + ], + "releaseDate": "2024-05-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.021, + "voteCount": 1475, + "popularity": 6.9227 + }, + { + "id": 529203, + "title": "The Croods: A New Age", + "originalTitle": "The Croods: A New Age", + "overview": "Searching for a safer habitat, the prehistoric Crood family discovers an idyllic, walled-in paradise that meets all of its needs. Unfortunately, they must also learn to live with the Bettermans -- a family that's a couple of steps above the Croods on the evolutionary ladder. As tensions between the new neighbors start to rise, a new threat soon propels both clans on an epic adventure that forces them to embrace their differences, draw strength from one another, and survive together.", + "posterPath": "/tbVZ3Sq88dZaCANlUcewQuHQOaE.jpg", + "backdropPath": "/fmIp40ev4VGquK2bMo52PQgaV2d.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 14, + 35 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Fantasy", + "Comedy" + ], + "releaseDate": "2020-11-25", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 4017, + "popularity": 6.9227 + }, + { + "id": 75903, + "title": "The Uncanny", + "originalTitle": "The Uncanny", + "overview": "Wilbur Gray, a horror writer, has stumbled upon a terrible secret, that cats are supernatural creatures who really call the shots. In a desperate attempt to get others to believe him, Wilbur spews three tales of feline horror.", + "posterPath": "/kLfcSCWIDQd48OGU1Xo5cYLi6Yq.jpg", + "backdropPath": "/objMOhldbBBqjj2hSJRyyBorqKz.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1977-08-24", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 62, + "popularity": 6.9226 + }, + { + "id": 48162, + "title": "Heatwave", + "originalTitle": "Heatwave", + "overview": "During a Christmas heatwave, a community activist attempts to stop a redevelopment project that is displacing residents in the Kings Cross section of Sydney.", + "posterPath": "/qJspkjxm2MtIqmLiC85Rm9iCFMk.jpg", + "backdropPath": "/pzMeTMF2vGYZDEk4YshEMFAWlNs.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1982-03-08", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 4.864, + "voteCount": 11, + "popularity": 6.9211 + }, + { + "id": 9678, + "title": "Little Nicky", + "originalTitle": "Little Nicky", + "overview": "After the lord of darkness decides he will not cede his throne to any of his three sons, the two most powerful of them escape to Earth to create a kingdom for themselves. This action closes the portal filtering sinful souls to Hell and causes Satan to wither away. He must send his most weak but beloved son, Little Nicky, to Earth to return his brothers to Hell.", + "posterPath": "/AudA8gnTWSBWXBHSBHnr3HHUXXM.jpg", + "backdropPath": "/fYKfPWArkWeMcril9JxhVRP9bYk.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2000-11-10", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 5.856, + "voteCount": 1911, + "popularity": 6.921 + }, + { + "id": 362057, + "title": "Martyrs", + "originalTitle": "Martyrs", + "overview": "A woman and her childhood friend seek out revenge on those who victimized and abused them.", + "posterPath": "/pkBWgdlFClVrr39iLpUTdzqvgz8.jpg", + "backdropPath": "/aMAIOGMVAtwNRtlMvGPDIkGchk9.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2015-10-09", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 318, + "popularity": 6.9205 + }, + { + "id": 1052939, + "title": "The Boat", + "originalTitle": "The Boat", + "overview": "The trip aboard a luxury yacht of three couples that will turn from an exciting experience to a terrible nightmare.", + "posterPath": "/kYkjQ5mTWXyHt2JFsu7sX5AjeMT.jpg", + "backdropPath": "/2UpBvMFiUD86b20Ds8VRqdNOgH1.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2023-05-26", + "releaseYear": "2023", + "originalLanguage": "it", + "voteAverage": 5.052, + "voteCount": 58, + "popularity": 6.9197 + }, + { + "id": 402100, + "title": "Late Summer", + "originalTitle": "Sensommer", + "overview": "An elderly woman has secluded herself in her remote home in the French countryside, when a young foreign couple on vacation suddenly intrudes on her isolated life.", + "posterPath": "/8Q6AqWzrOgvVwRb7Gw4MwsaUkRq.jpg", + "backdropPath": "/cmSP9aHXRpZ6Fxtop4OGMdXf5bv.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 18, + 53 + ], + "genres": [ + "Mystery", + "Drama", + "Thriller" + ], + "releaseDate": "2016-06-17", + "releaseYear": "2016", + "originalLanguage": "no", + "voteAverage": 4.119, + "voteCount": 21, + "popularity": 6.919 + }, + { + "id": 18549, + "title": "Flannel Pajamas", + "originalTitle": "Flannel Pajamas", + "overview": "A mismatched couple meet on a blind date in Manhattan... as Stuart and Nicole progress from love to marriage to discussions about starting a family, their relationship faces the challenges of critical friends, emotionally-demanding relatives, time-consuming careers, different religions and the stresses caused by the endless negotiations all couples wage daily.", + "posterPath": "/8IZ8mpR4FacxxBpUYQnqtIBKXq2.jpg", + "backdropPath": "/kLcFGRQXewNc44HkghCMDDjF4Nk.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2006-11-15", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 12, + "popularity": 6.9189 + }, + { + "id": 840705, + "title": "Blink Twice", + "originalTitle": "Blink Twice", + "overview": "When tech billionaire Slater King meets cocktail waitress Frida at his fundraising gala, he invites her to join him and his friends on a dream vacation on his private island. But despite the epic setting, beautiful people, ever-flowing champagne, and late-night dance parties, Frida can sense that there’s something sinister hiding beneath the island’s lush façade.", + "posterPath": "/lZGOK0I2DJSRlEPNOAFTSNxSjDD.jpg", + "backdropPath": "/NqqLef2ITlK8olXT4iFuUXFwSh.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53 + ], + "genres": [ + "Mystery", + "Thriller" + ], + "releaseDate": "2024-08-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 1682, + "popularity": 6.9162 + }, + { + "id": 1232546, + "title": "Until Dawn", + "originalTitle": "Until Dawn", + "overview": "One year after her sister Melanie mysteriously disappeared, Clover and her friends head into the remote valley where she vanished in search of answers. Exploring an abandoned visitor center, they find themselves stalked by a masked killer and horrifically murdered one by one...only to wake up and find themselves back at the beginning of the same evening.", + "posterPath": "/bLY5yN4MKVynZ2HMZWElTOGBgBe.jpg", + "backdropPath": "/vFJgEhYEjWWJ9JqmlMdDiKxE8JD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2025-04-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.392, + "voteCount": 1177, + "popularity": 6.9156 + }, + { + "id": 153509, + "title": "Zombie Massacre", + "originalTitle": "Zombie Massacre", + "overview": "A bacteriological weapon developed by the US Government to create a super soldier - spreads an epidemic in a quiet little town in the middle of Eastern Europe. All citizens have been turned into infected zombies. The plan is to bring an atomic bomb into the city's nuclear plant to pretend a terrible accident occurred. No one has to know the truth. A team of mercenaries is hired to complete the mission. The battle is on. Hordes of monsters against the team. Who will survive?", + "posterPath": "/iVAuzh1gMuqjCuLBaGajY4lAsgL.jpg", + "backdropPath": "/qsFQcYQV6shVoUMipW5mlBvHyvb.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27 + ], + "genres": [ + "Action", + "Horror" + ], + "releaseDate": "2013-06-06", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.991, + "voteCount": 113, + "popularity": 6.9138 + }, + { + "id": 543768, + "title": "Gwen", + "originalTitle": "Gwen", + "overview": "A mysterious — and suspicious — run of ill fortune plagues a teenage girl and her mother and sister on their hillside farm in this folk story set in the dark hills of Wales during the industrial revolution.", + "posterPath": "/3VeWyKSyWjZ3fMh2VX1UX2dviQw.jpg", + "backdropPath": "/xkliTZgHx042oDy4qJwCK1PvvUg.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 27, + 36 + ], + "genres": [ + "Drama", + "Mystery", + "Horror", + "History" + ], + "releaseDate": "2018-07-12", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 63, + "popularity": 6.9133 + }, + { + "id": 587, + "title": "Big Fish", + "originalTitle": "Big Fish", + "overview": "Throughout his life Edward Bloom has always been a man of big appetites, enormous passions and tall tales. In his later years, he remains a huge mystery to his son, William. Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures.", + "posterPath": "/tjK063yCgaBAluVU72rZ6PKPH2l.jpg", + "backdropPath": "/bLqUd0tBvKezDr9MEla7k34i3rp.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 18 + ], + "genres": [ + "Adventure", + "Fantasy", + "Drama" + ], + "releaseDate": "2003-12-25", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.753, + "voteCount": 7534, + "popularity": 6.9132 + }, + { + "id": 821510, + "title": "Ultrasound", + "originalTitle": "Ultrasound", + "overview": "After his car breaks down, Glen spends one hell of an odd night with a married couple, setting into motion a chain of events that alter their lives plus those of several random strangers.", + "posterPath": "/xef7fVF5vhDPQk7yQ0dJwKHIev2.jpg", + "backdropPath": "/o6UwCnhoezCWyTbZE76zipyjHKc.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 9648 + ], + "genres": [ + "Science Fiction", + "Drama", + "Mystery" + ], + "releaseDate": "2022-03-11", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 43, + "popularity": 6.9128 + }, + { + "id": 381719, + "title": "Peter Rabbit", + "originalTitle": "Peter Rabbit", + "overview": "Peter Rabbit's feud with Mr. McGregor escalates to greater heights than ever before as they rival for the affections of the warm-hearted animal lover who lives next door.", + "posterPath": "/lugOvdaNpbVGQK9TyMRDiUbLtY6.jpg", + "backdropPath": "/1wj8H9gdtkb98Tl3zu0hrHfW0qw.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Family" + ], + "releaseDate": "2018-02-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.695, + "voteCount": 1860, + "popularity": 6.9128 + }, + { + "id": 48843, + "title": "The Barber", + "originalTitle": "The Barber", + "overview": "In the small town of Revelstoke, Alaska, local barber Dexter is surprised to learn that the body of Lucy Waters has been discovered. Having killed this woman, days ago, he hoped her body wouldn't be found until spring. Through the eyes of a serial killer, we discover the chilling layer of a weary town whose only concern is another long, dark winter.", + "posterPath": "/31nvWEGvsi6K8An67wNdhuNcj2P.jpg", + "backdropPath": "/o08OqLyYZWVPksmJmDyr9TCM7hY.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 80, + 9648 + ], + "genres": [ + "Horror", + "Crime", + "Mystery" + ], + "releaseDate": "2002-12-31", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 46, + "popularity": 6.9126 + }, + { + "id": 158217, + "title": "Kamikaze Taxi", + "originalTitle": "KAMIKAZE TAXI", + "overview": "A young foot soldier in the yakuza seeks revenge when his prostitute girlfriend dies after a session with a high-ranking Japanese politician with a taste for torture. He sets out on a 'kamikaze' mission to kill his bosses and the politician; along the way, he acquires the aid of a taxi driver who has recently returned to Japan after living in South America for several decades and is struggling to cope with poverty and the prejudices of native-born Japanese.", + "posterPath": "/2PoqVj6zx5QCRHdUfFqtvxCbB8W.jpg", + "backdropPath": "/73FucIoQVAPF40Zrh1xhrfpQkWO.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 18 + ], + "genres": [ + "Crime", + "Action", + "Drama" + ], + "releaseDate": "1995-04-29", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 6.182, + "voteCount": 11, + "popularity": 6.9122 + }, + { + "id": 59861, + "title": "Larry Crowne", + "originalTitle": "Larry Crowne", + "overview": "When he suddenly finds himself without his long-standing blue-collar job, Larry Crowne enrolls at his local college to start over. There, he becomes part of an eclectic community of students and develops a crush on his teacher.", + "posterPath": "/8GDM7RqM6J1vNUdlU94rmtlNa3e.jpg", + "backdropPath": "/1kgIEwNkT5XxFgHy5glFHmNL7Dc.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2011-06-30", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.991, + "voteCount": 1374, + "popularity": 6.912 + }, + { + "id": 76492, + "title": "Hotel Transylvania", + "originalTitle": "Hotel Transylvania", + "overview": "Welcome to Hotel Transylvania, Dracula's lavish five-stake resort, where monsters and their families can live it up and no humans are allowed. One special weekend, Dracula has invited all his best friends to celebrate his beloved daughter Mavis's 118th birthday. For Dracula catering to all of these legendary monsters is no problem but the party really starts when one ordinary guy stumbles into the hotel and changes everything!", + "posterPath": "/eJGvzGrsfe2sqTUPv5IwLWXjVuR.jpg", + "backdropPath": "/5rARlA8beRAVXPYzSaF2NoS8Ry5.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2012-09-20", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 8960, + "popularity": 6.9116 + }, + { + "id": 8224, + "title": "8MM", + "originalTitle": "8MM", + "overview": "A small, seemingly innocuous plastic reel of film leads surveillance specialist Tom Welles down an increasingly dark and frightening path. With the help of the streetwise Max, he relentlessly follows a bizarre trail of evidence to determine the fate of a complete stranger. As his work turns into obsession, he drifts farther and farther away from his wife, family and simple life as a small-town PI.", + "posterPath": "/mhr9xRpjOBqlBjgDwtiOx6FsLvV.jpg", + "backdropPath": "/eEP8pyCmldfbnml0SFMvPK7kE4x.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 9648 + ], + "genres": [ + "Thriller", + "Crime", + "Mystery" + ], + "releaseDate": "1999-02-26", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.464, + "voteCount": 2158, + "popularity": 6.9115 + }, + { + "id": 21874, + "title": "Looker", + "originalTitle": "Looker", + "overview": "Plastic surgeon Larry Roberts performs a series of minor alterations on a group of models who are seeking perfection. The operations are a resounding success. But when someone starts killing his beautiful patients, Dr. Roberts becomes suspicious and starts investigating. What he uncovers are the mysterious - and perhaps murderous - activities of a high-tech computer company called Digital Matrix.", + "posterPath": "/dQtdfoA0HKyI3YDHCngx6Rp8ePy.jpg", + "backdropPath": "/xVcpaQwIoVPZq4zW1sNZdKa6nEQ.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "1981-10-30", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.06, + "voteCount": 124, + "popularity": 6.9112 + }, + { + "id": 395990, + "title": "Death Wish", + "originalTitle": "Death Wish", + "overview": "A mild-mannered father is transformed into a killing machine after his family is torn apart by a violent act.", + "posterPath": "/g0eEEZAqMf98ULQnoiORuazjOpn.jpg", + "backdropPath": "/uQqQvmptJLPTcWDrZXn22p7j7s3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53, + 18 + ], + "genres": [ + "Action", + "Crime", + "Thriller", + "Drama" + ], + "releaseDate": "2018-03-01", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.21, + "voteCount": 2685, + "popularity": 6.911 + }, + { + "id": 10155, + "title": "U Turn", + "originalTitle": "U Turn", + "overview": "When a desperate man’s car breaks down in a bizarre desert town while evading vengeful bookies, he becomes entangled in a dangerous love triangle. Caught between a married couple, he’s faced with deadly contracts to kill them both.", + "posterPath": "/lffvjJU8j7RLfz1SJVMfrn2wH6i.jpg", + "backdropPath": "/rq6duKhgffOtMs9LqgyhrJ9Y8EX.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53, + 10749 + ], + "genres": [ + "Crime", + "Drama", + "Thriller", + "Romance" + ], + "releaseDate": "1997-10-03", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.612, + "voteCount": 775, + "popularity": 6.9098 + }, + { + "id": 967, + "title": "Spartacus", + "originalTitle": "Spartacus", + "overview": "The rebellious Thracian Spartacus, born and raised a slave, is sold to Gladiator trainer Batiatus. After weeks of being trained to kill for the arena, Spartacus turns on his owners and leads the other slaves in rebellion. As the rebels move from town to town, their numbers swell as escaped slaves join their ranks. Under the leadership of Spartacus, they make their way to southern Italy, where they will cross the sea and return to their homes.", + "posterPath": "/r0Fgg1GyZgzokaiw2HFQv3oPaL2.jpg", + "backdropPath": "/aheSIG4h3JNxWeDvdb1NxKzgjaM.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 10752, + 18, + 12 + ], + "genres": [ + "History", + "War", + "Drama", + "Adventure" + ], + "releaseDate": "1960-10-13", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 7.533, + "voteCount": 2288, + "popularity": 6.9087 + }, + { + "id": 614, + "title": "Wild Strawberries", + "originalTitle": "Smultronstället", + "overview": "Crotchety retired doctor Isak Borg travels from Stockholm to Lund, Sweden, with his pregnant and unhappy daughter-in-law, Marianne, in order to receive an honorary degree from his alma mater. Along the way, they encounter a series of hitchhikers, each of whom causes the elderly doctor to muse upon the pleasures and failures of his own life. These include the vivacious young Sara, a dead ringer for the doctor's own first love.", + "posterPath": "/iyTD2QnySNMPUPE3IedZQipSWfz.jpg", + "backdropPath": "/BBVAUchYvkmPThVIqipgAfabfl.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1957-08-28", + "releaseYear": "1957", + "originalLanguage": "sv", + "voteAverage": 8.1, + "voteCount": 1747, + "popularity": 6.9087 + }, + { + "id": 695721, + "title": "The Hunger Games: The Ballad of Songbirds & Snakes", + "originalTitle": "The Hunger Games: The Ballad of Songbirds & Snakes", + "overview": "64 years before he becomes the tyrannical president of Panem, Coriolanus Snow sees a chance for a change in fortunes when he mentors Lucy Gray Baird, the female tribute from District 12.", + "posterPath": "/lrkOYL5GBTFW9cgs9RlojxAcZZF.jpg", + "backdropPath": "/8GnWDLn2AhnmkQ7hlQ9NJUYobSS.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "2023-11-15", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.002, + "voteCount": 3278, + "popularity": 6.9081 + }, + { + "id": 171337, + "title": "Siberian Education", + "originalTitle": "Educazione siberiana", + "overview": "The story of a gang of children growing up in a community of banished criminals, in a forgotten corner of the former Soviet Union. This community rejects the world outside. The only law it obeys… is its own. Against this backdrop two best friends, Kolyma and Gagarin, gradually become fierce enemies as they find themselves on opposite sides of the strict code of honour of the ‘honest criminal’ brotherhood.", + "posterPath": "/pSXguX0FmIvRr7r85uSZW96tLut.jpg", + "backdropPath": "/zTbvwjlQLA9v8fH6ju8AyWRXwaw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2013-02-27", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.795, + "voteCount": 554, + "popularity": 6.9081 + }, + { + "id": 10033, + "title": "Just Friends", + "originalTitle": "Just Friends", + "overview": "While visiting his hometown during Christmas, a man comes face-to-face with his old high school crush whom he was best friends with – a woman whose rejection of him turned him into a ferocious womanizer.", + "posterPath": "/lh2EUTVOcESkdEOcsjYEW6qS1U0.jpg", + "backdropPath": "/oAfxQnTlfTKmr61RjE3NM2DlzUN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2005-11-23", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.22, + "voteCount": 1719, + "popularity": 6.9067 + }, + { + "id": 4977, + "title": "Paprika", + "originalTitle": "パプリカ", + "overview": "When a machine that allows therapists to enter their patient's dreams is stolen, all hell breaks loose. Only a young female therapist can stop it and recover it before damage is done: Paprika.", + "posterPath": "/bLUUr474Go1DfeN1HLjE3rnZXBq.jpg", + "backdropPath": "/zfbuY4A9X5sTJ2bzTt84rtiDK9t.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 53 + ], + "genres": [ + "Animation", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2006-10-01", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 2697, + "popularity": 6.9046 + }, + { + "id": 484638, + "title": "15 Minutes of War", + "originalTitle": "L'Intervention", + "overview": "February 1976. Somalian rebels hijack a school bus carrying 21 French children and their teacher in Djibouti City. When the terrorists drive it to a no-man’s-land on the border between Somalia and French territory, the French Government sends out a newly formed elite squad to rescue the hostages. Within a few hours, the highly trained team arrives to the crisis area, where the Somalian National Army has taken position behind the barbed wire on the border. The French unit is left with very few options to rescue the hostages. As the volatile situation unravels, the French men quickly come up with a daring plan: carry out a simultaneous 5 men sniper attack to get the children and the teacher out safely. A true story.", + "posterPath": "/mHXzqCiAmgVhhJscGJIQH94vac0.jpg", + "backdropPath": "/u4PhTSMSvlE7dE45I7ktXlje2Ea.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 28, + 18, + 36 + ], + "genres": [ + "War", + "Action", + "Drama", + "History" + ], + "releaseDate": "2019-01-30", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.8, + "voteCount": 306, + "popularity": 6.9042 + }, + { + "id": 48688, + "title": "Pigsty", + "originalTitle": "Porcile", + "overview": "Two dramatic stories. In an undetermined past, a young cannibal (who killed his own father) is condemned to be torn to pieces by some wild beasts. In the second story, Julian, the young son of a post-war German industrialist, is on the way to lie down with his farm's pigs, because he doesn't like human relationships.", + "posterPath": "/9FZmcZ9EH4sk9WxLe90m0ddRpnC.jpg", + "backdropPath": "/y5iVIhe8WcGlOOSQu2K72wX7nvl.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1969-09-02", + "releaseYear": "1969", + "originalLanguage": "it", + "voteAverage": 7.1, + "voteCount": 160, + "popularity": 6.9033 + }, + { + "id": 146233, + "title": "Prisoners", + "originalTitle": "Prisoners", + "overview": "Keller Dover is facing every parent’s worst nightmare. His six-year-old daughter, Anna, is missing, together with her young friend, Joy, and as minutes turn to hours, panic sets in. The only lead is a dilapidated RV that had earlier been parked on their street.", + "posterPath": "/jsS3a3ep2KyBVmmiwaz3LvK49b1.jpg", + "backdropPath": "/n1ItmvzsDV5yLgDodSCLZpFlsP6.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80 + ], + "genres": [ + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2013-09-19", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 12591, + "popularity": 6.9019 + }, + { + "id": 18316, + "title": "Black Dog", + "originalTitle": "Black Dog", + "overview": "An ex-con takes a job driving a truck cross country. What he doesn't know is that the truck is filled with illegal weapons and now he must fight to survive and save his family.", + "posterPath": "/8hvt4L3EXWq3ANutok32ODQIGwV.jpg", + "backdropPath": "/g3OIqGPv36wGfe86NPjzWpAmQ7Y.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "1998-05-01", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 278, + "popularity": 6.9016 + }, + { + "id": 410119, + "title": "Yu Pui Tsuen II", + "originalTitle": "Fu shi feng qing hui", + "overview": "Before Michael Mak’s Sex And Zen became a cult favourite in the ’90s, there was Ho Fan’s Yu Pui Tsuen (The Carnal Prayer Mat, 1987). But without sex bomb Amy Yip, coarse humour or lesbian love affairs, Yu Pui Tsuen had to rely on the nudity and sex from his cast of relative unknowns to save the day. When a young man dreams that he drowns after a night of carnal passion, he asks a buddhist monk to translate the experience for him. The monk replies that the dream is a warning not to indulge the pleasures of the flesh to excess, but the man ignores his advice, marrying a virgin and making love to her constantly. However, after several torrid affairs, the man begins to realise the sagacity of the monk's warning.", + "posterPath": "/3NwBn6zPY6yXCqfxEHmEgGh8Jgc.jpg", + "backdropPath": "/lhHxiwtHq1GG5MhPyWaETvKjoGg.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 10749 + ], + "genres": [ + "Drama", + "Fantasy", + "Romance" + ], + "releaseDate": "1987-10-15", + "releaseYear": "1987", + "originalLanguage": "cn", + "voteAverage": 5.2, + "voteCount": 27, + "popularity": 6.9008 + }, + { + "id": 327331, + "title": "The Dirt", + "originalTitle": "The Dirt", + "overview": "The story of Mötley Crüe and their rise from the Sunset Strip club scene of the early 1980s to superstardom.", + "posterPath": "/xGY5rr8441ib0lT9mtHZn7e8Aay.jpg", + "backdropPath": "/lFLwxSd9JReOBBxoUwQFBANcyIl.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 35 + ], + "genres": [ + "Drama", + "Music", + "Comedy" + ], + "releaseDate": "2019-03-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.44, + "voteCount": 1276, + "popularity": 6.8999 + }, + { + "id": 139349, + "title": "The Premonition", + "originalTitle": "The Premonition", + "overview": "When a deranged woman and her carny boyfriend plot to abduct her biological daughter from the girl's foster parents, the foster mother is plagued by premonitions and psychic visions.", + "posterPath": "/sbvQlhEQGfR8DD20V3man8iSYD9.jpg", + "backdropPath": "/pJGIFTQZv6rgA5XriE5PSoofHLy.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878, + 27 + ], + "genres": [ + "Thriller", + "Science Fiction", + "Horror" + ], + "releaseDate": "1976-05-19", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 34, + "popularity": 6.8998 + }, + { + "id": 5559, + "title": "Bee Movie", + "originalTitle": "Bee Movie", + "overview": "Barry B. Benson, a recent college graduate who wants more out of his life than making honey, decides to sue the human race after learning about the exploitation of bees at the hands of mankind. What will happen next?", + "posterPath": "/aWe27GmvfVYAd7p0KEtJZWwLWk5.jpg", + "backdropPath": "/aPH0WpeZYkKynHNyXDUczLEwXlH.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 12, + 35 + ], + "genres": [ + "Family", + "Animation", + "Adventure", + "Comedy" + ], + "releaseDate": "2007-10-28", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 5093, + "popularity": 6.8996 + }, + { + "id": 68737, + "title": "Seventh Son", + "originalTitle": "Seventh Son", + "overview": "John Gregory, who is a seventh son of a seventh son and also the local spook, has protected the country from witches, boggarts, ghouls and all manner of things that go bump in the night. However John is not young anymore, and has been seeking an apprentice to carry on his trade. Most have failed to survive. The last hope is a young farmer's son named Thomas Ward. Will he survive the training to become the spook that so many others couldn't?", + "posterPath": "/7Q8DfXSjcFSSQDOxz1Sk865wNqI.jpg", + "backdropPath": "/2EyK8wpLdYFaS35o0worjqsiuZn.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "2014-12-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 2579, + "popularity": 6.8989 + }, + { + "id": 28289, + "title": "Cactus Flower", + "originalTitle": "Cactus Flower", + "overview": "A dentist pretends to be married to avoid commitment, but when he falls for his girlfriend and proposes, he must recruit his lovelorn nurse to pose as his wife.", + "posterPath": "/oabi6jdkxP3KHMNywKn6nQeDzQZ.jpg", + "backdropPath": "/1YJSwtDc7Tx2dypQRpuL4aRTcRS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1969-12-16", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 7.119, + "voteCount": 231, + "popularity": 6.8986 + }, + { + "id": 5653, + "title": "Luther", + "originalTitle": "Luther", + "overview": "During the early 16th century, idealistic German monk Martin Luther, disgusted by the materialism in the church, begins the dialogue that will lead to the Protestant Reformation.", + "posterPath": "/5Z3wlA8sKdd3tPTZW8N1q3YEd5f.jpg", + "backdropPath": "/5tsQ6QrKa7to3S2DCosSOYrJ6OE.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2003-10-29", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.443, + "voteCount": 325, + "popularity": 6.8979 + }, + { + "id": 1321439, + "title": "The Wrong Paris", + "originalTitle": "The Wrong Paris", + "overview": "Dawn thinks she's joining a dating show in Paris, France, only to land in Paris, Texas. She has an exit plan — until sparks fly with the cowboy bachelor.", + "posterPath": "/A0KRoR842OgNByCfw9iFHbWoeR9.jpg", + "backdropPath": "/i8QHgJKnsd8csNBo8fH9wYW2Y9E.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2025-09-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.648, + "voteCount": 237, + "popularity": 6.8971 + }, + { + "id": 21519, + "title": "Project A", + "originalTitle": "A計劃", + "overview": "In late 19th century Hong Kong, the British may rule the land, but the pirates rule the waters. Coast Guard officer Dragon Ma is determined that his beloved Coast Guard will not be made a fool of.", + "posterPath": "/c6OVzxnnz5D3xkb6THHNrtP8s26.jpg", + "backdropPath": "/q44ti4QwHJidHhqAUeU33QnUanR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35 + ], + "genres": [ + "Action", + "Adventure", + "Comedy" + ], + "releaseDate": "1983-12-22", + "releaseYear": "1983", + "originalLanguage": "cn", + "voteAverage": 7.2, + "voteCount": 514, + "popularity": 6.8969 + }, + { + "id": 49058, + "title": "Striking Poses", + "originalTitle": "Striking Poses", + "overview": "When a beautiful paparazzo for a tabloid magazine finds herself pursued by a ruthless stalker, she is determined to emerge from this deadly game alive, and independently wealthy.", + "posterPath": "/vuYd743OA8rK8rcnz5DAyMKfX0l.jpg", + "backdropPath": "/2f8Hh1uTh8xlQROCl42tzFrcpOd.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1999-04-27", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.808, + "voteCount": 13, + "popularity": 6.8964 + }, + { + "id": 2022, + "title": "Mr. Deeds", + "originalTitle": "Mr. Deeds", + "overview": "When Longfellow Deeds, a small-town pizzeria owner and poet, inherits $40 billion from his deceased uncle, he quickly begins rolling in a different kind of dough. Moving to the big city, Deeds finds himself besieged by opportunists all gunning for their piece of the pie. Babe, a television tabloid reporter, poses as an innocent small-town girl to do an exposé on Deeds.", + "posterPath": "/7gGk3pkpRsNlJ4PrJgEfgY9PG43.jpg", + "backdropPath": "/7P3VyWQTnZOYIQnk5seM0YQ9ucg.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2002-06-28", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 2431, + "popularity": 6.896 + }, + { + "id": 201937, + "title": "Prehysteria! 2", + "originalTitle": "Prehysteria! 2", + "overview": "A rich boy desperate for attention makes friends with the dinosaurs of \"Prehysteria!\". Prehysteria! 2", + "posterPath": "/u5QcTprkDyXvKC2exp9AyjMN4K5.jpg", + "backdropPath": "/4ZLYAgNd7SLJJ9ZAjxTAJnVTDU5.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1994-11-09", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 21, + "popularity": 6.8942 + }, + { + "id": 8355, + "title": "Ice Age: Dawn of the Dinosaurs", + "originalTitle": "Ice Age: Dawn of the Dinosaurs", + "overview": "Times are changing for Manny the moody mammoth, Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors – the mighty dinosaurs.", + "posterPath": "/cXOLaxcNjNAYmEx1trZxOTKhK3Q.jpg", + "backdropPath": "/o0zPARvs47f0UhAJuUqdQsyQaji.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 12 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Adventure" + ], + "releaseDate": "2009-06-26", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.763, + "voteCount": 8662, + "popularity": 6.8932 + }, + { + "id": 1014629, + "title": "The Fearway", + "originalTitle": "The Fearway", + "overview": "A young couple travelling down the freeway seem to be unable to get off the road after being hunted by someone intent on keeping them on the road.", + "posterPath": "/g0EOgZCk23b3n4uWGIVh9bh5U3q.jpg", + "backdropPath": "/v4A4YA1LgRtPTi79EoXTtxQ4ZEK.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2023-02-07", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 4.561, + "voteCount": 33, + "popularity": 6.8927 + }, + { + "id": 606146, + "title": "The Perfect Patient", + "originalTitle": "Quick", + "overview": "A true and captivating story about the biggest legal scandal in Swedish history, the story about the reporter who questioned an entire legal system. Hannes Råstam was dedicated to proving the innocence of Thomas Quick and unmask the legal chaos which sentenced Quick to a life in psychiatric prison.", + "posterPath": "/jLMTdvygnav436Y9TQ3aFcYCcCG.jpg", + "backdropPath": "/hLz8Uf0XHuJiMaEVBRbuxZIKcWA.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2019-09-20", + "releaseYear": "2019", + "originalLanguage": "sv", + "voteAverage": 6.333, + "voteCount": 114, + "popularity": 6.8923 + }, + { + "id": 45006, + "title": "Interceptor", + "originalTitle": "Interceptor", + "overview": "A U.S. Air Force officer tries to stop a murderous group of terrorists who are trying to steal two top secret F-117A Stealth Fighters from the cargo hold of a gigantic C-5 Galaxy Transport flying at 30,000 feet over the Atlantic Ocean.", + "posterPath": "/jCorLP59tBPmm8c4cBJhyzV1azo.jpg", + "backdropPath": "/tnL7b0jJspUtDfwNUXoeWFDPeRw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878, + 10770 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction", + "TV Movie" + ], + "releaseDate": "1992-10-13", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 23, + "popularity": 6.8919 + }, + { + "id": 765245, + "title": "Swan Song", + "originalTitle": "Swan Song", + "overview": "In the near future, Cameron Turner is diagnosed with a terminal illness. Presented with an experimental solution to shield his wife and son from grief, he grapples with altering their fate in this thought-provoking exploration of love, loss, and sacrifice.", + "posterPath": "/zzCdikGD9Qa5NT8lZtUv9dXNgsm.jpg", + "backdropPath": "/4iMURVQCxjyMH8Vr1Wd3GCsxE06.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878 + ], + "genres": [ + "Drama", + "Science Fiction" + ], + "releaseDate": "2021-12-17", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 558, + "popularity": 6.8901 + }, + { + "id": 531299, + "title": "Kill Chain", + "originalTitle": "Kill Chain", + "overview": "A hotel room shootout between two assassins kicks off a long night where bodies fall like dominoes, as we follow a chain of crooked cops, gangsters, hitmen, a femme Fatale and an ex-mercenary through a relay of murder, betrayal, revenge and redemption.", + "posterPath": "/bFfUDQkCh6Zxgs4qyVgVTuS2PXN.jpg", + "backdropPath": "/lACkr9PRjVfo199hjWOquMkKRHy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2020-02-20", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.166, + "voteCount": 169, + "popularity": 6.8901 + }, + { + "id": 572, + "title": "Next Door", + "originalTitle": "Naboer", + "overview": "After Ingrid leaves John, he allows himself to be pulled into a mystical and scary world where it is impossible to separate truth from lies.", + "posterPath": "/xqS5Y8f6EQy9i9YFuPuTlPRopV4.jpg", + "backdropPath": "/k0tUeAfV591707I9A5Irl702Q8L.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 27 + ], + "genres": [ + "Mystery", + "Thriller", + "Horror" + ], + "releaseDate": "2005-03-11", + "releaseYear": "2005", + "originalLanguage": "no", + "voteAverage": 6.344, + "voteCount": 225, + "popularity": 6.8899 + }, + { + "id": 177335, + "title": "Alamo Bay", + "originalTitle": "Alamo Bay", + "overview": "A despondent Vietnam veteran in danger of losing his livelihood is pushed to the edge when he sees Vietnamese immigrants moving into the fishing industry in a Texas bay town.", + "posterPath": "/1TYFizw8sdvoQVG79Ui8dytb3tR.jpg", + "backdropPath": "/55CKfZ4tFSWHKFGHEd2su6dllWI.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1985-04-03", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 26, + "popularity": 6.8896 + }, + { + "id": 873492, + "title": "Mahjong Nights", + "originalTitle": "Mahjong Nights", + "overview": "Alexa witnesses a simple mahjong night turned bloody when all the player's dark secrets are discovered - including Alexa's illicit affair with her stepfather.", + "posterPath": "/gDFaFRLg3tGE85xd3oBHIC2bwyR.jpg", + "backdropPath": "/wHTPvnm4mgNwnpyDb7R0mCfwa9R.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-11-12", + "releaseYear": "2021", + "originalLanguage": "tl", + "voteAverage": 5.308, + "voteCount": 13, + "popularity": 6.8891 + }, + { + "id": 81573, + "title": "Cyclone", + "originalTitle": "Cyclone", + "overview": "Rick has developed the ultimate motorcycle, the Cyclone. It is a $5 million bike equipped with rocket launchers and laser guns. Rick meets his fate and it is up to his girlfriend Teri to keep the Cyclone from falling into the wrong hands. Teri can trust no one but herself.", + "posterPath": "/9H2XnNehu3bGZyAvtd9RUzAdDT9.jpg", + "backdropPath": "/uETejbCQnrsY35l3cYcw3aTJeG7.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1987-06-05", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 3.941, + "voteCount": 34, + "popularity": 6.8886 + }, + { + "id": 33710, + "title": "Paris Blues", + "originalTitle": "Paris Blues", + "overview": "During the 1960s, two American jazz musicians living in Paris meet and fall in love with two American tourist girls and must decide between music and love.", + "posterPath": "/3yvlRKuzIkymNapRJxMQbJJkrhw.jpg", + "backdropPath": "/p5opuGbfMQFhYjEtWP80CZzG1QE.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 10402 + ], + "genres": [ + "Romance", + "Drama", + "Music" + ], + "releaseDate": "1961-09-27", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 68, + "popularity": 6.8878 + }, + { + "id": 362774, + "title": "El camino", + "originalTitle": "El camino", + "overview": "Shortly before leaving his small town to go to the big city to study, young Daniel recalls his childhood, surrounded by family and friends.", + "posterPath": "/jsI8MwGLa7yf3ZZtsHyT9mLkvTC.jpg", + "backdropPath": "/19kTnqtN3zg3Kd8q3DijUleN4sR.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1964-01-01", + "releaseYear": "1964", + "originalLanguage": "es", + "voteAverage": 6, + "voteCount": 15, + "popularity": 6.8862 + }, + { + "id": 259316, + "title": "Fantastic Beasts and Where to Find Them", + "originalTitle": "Fantastic Beasts and Where to Find Them", + "overview": "In 1926, Newt Scamander arrives at the Magical Congress of the United States of America with a magically expanded briefcase, which houses a number of dangerous creatures and their habitats. When the creatures escape from the briefcase, it sends the American wizarding authorities after Newt, and threatens to strain even further the state of magical and non-magical relations.", + "posterPath": "/fLsaFKExQt05yqjoAvKsmOMYvJR.jpg", + "backdropPath": "/8Qsr8pvDL3s1jNZQ4HK1d1Xlvnh.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12 + ], + "genres": [ + "Fantasy", + "Adventure" + ], + "releaseDate": "2016-11-16", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 19351, + "popularity": 6.8862 + }, + { + "id": 675445, + "title": "PAW Patrol: The Movie", + "originalTitle": "PAW Patrol: The Movie", + "overview": "Ryder and the pups are called to Adventure City to stop Mayor Humdinger from turning the bustling metropolis into a state of chaos.", + "posterPath": "/jXavWyam2VPR6bOhLwwuP3K2Hw4.jpg", + "backdropPath": "/wawIfsBlzgZYtHrBn8RUtGIZTgF.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2021-08-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 1248, + "popularity": 6.8846 + }, + { + "id": 15512, + "title": "Monsters vs Aliens", + "originalTitle": "Monsters vs Aliens", + "overview": "When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...", + "posterPath": "/hpHarddVj34j53T7NsoUGdKj4mP.jpg", + "backdropPath": "/vKnz2JYU5VlKry6siIXwuQjtq72.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 878 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2009-03-19", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.236, + "voteCount": 4834, + "popularity": 6.8846 + }, + { + "id": 465171, + "title": "Williams", + "originalTitle": "Williams", + "overview": "This sports documentary tells the story of the Williams Formula 1 team founded by the legendary Sir Frank Williams", + "posterPath": "/5YaJCo9A4ZwWZXsmYKSHysjqts3.jpg", + "backdropPath": "/zpeUSEb7ALBdTado5NOSx9m5qpD.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2017-08-14", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.372, + "voteCount": 94, + "popularity": 6.8838 + }, + { + "id": 212262, + "title": "Kamen Rider W Returns: Kamen Rider Eternal", + "originalTitle": "仮面ライダーW(ダブル)RETURNS 仮面ライダーエターナル", + "overview": "Set primarily before the events of Kamen Rider W Forever, Kamen Rider Eternal tells the story of Daido Katsumi, the formation of NEVER, the mission that led them to target Fuuto, and reveals just how Daido obtained his Lost Driver and got his first taste of the power of Kamen Rider Eternal. As a mysterious woman retells this story to Phillip and Shotaro, they realize that Daido may not have been the simple monster he first appeared to be…", + "posterPath": "/vzjKhUUeaTRX4quxtQWkI2RVb7r.jpg", + "backdropPath": "/nUar6o9nb9KCqSp3Nzt4rkNLGfe.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2011-07-21", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 110, + "popularity": 6.8833 + }, + { + "id": 9612, + "title": "Coneheads", + "originalTitle": "Coneheads", + "overview": "A pair of aliens arrive on Earth to prepare for invasion, but crash instead. With enormous cone-shaped heads, robotlike walks and an appetite for toilet paper, aliens Beldar and Prymatt don't exactly blend in with the population of Paramus, N.J. But for some reason, everyone believes them when they say they're from France.", + "posterPath": "/vlpQnf0rl0FpMjWLS0TNd8Bog2F.jpg", + "backdropPath": "/rZs0mp3P228o66dg6KljxSmJGJP.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878 + ], + "genres": [ + "Comedy", + "Science Fiction" + ], + "releaseDate": "1993-07-23", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 986, + "popularity": 6.8826 + }, + { + "id": 580431, + "title": "Point Man", + "originalTitle": "Point Man", + "overview": "A trio of soldiers vow revenge on their platoon when they are left behind enemy lines. When they come across a missing contingent in a Vietnamese village, alliances dissolve and each step forward will come with a price.", + "posterPath": "/uqAwrydyRh8HoUOVf79W2z2n43H.jpg", + "backdropPath": "/rmNXzt6shUQXJEQpKjxLkZwTZoV.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752 + ], + "genres": [ + "Action", + "War" + ], + "releaseDate": "2018-11-09", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 19, + "popularity": 6.8814 + }, + { + "id": 26748, + "title": "Lone Star", + "originalTitle": "Lone Star", + "overview": "When the skeleton of his murdered predecessor is found, Sheriff Sam Deeds unearths many other long-buried secrets in his Texas border town.", + "posterPath": "/lBxY8znsRoqa9Dy2NCe8I6GPsRm.jpg", + "backdropPath": "/vsxo1dkhRHd9YT9Um5IaxvnF8Yt.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 10749 + ], + "genres": [ + "Drama", + "Mystery", + "Romance" + ], + "releaseDate": "1996-06-21", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 389, + "popularity": 6.8813 + }, + { + "id": 400535, + "title": "Sicario: Day of the Soldado", + "originalTitle": "Sicario: Day of the Soldado", + "overview": "Agent Matt Graver teams up with operative Alejandro Gillick to prevent Mexican drug cartels from smuggling terrorists across the United States border.", + "posterPath": "/qcLYofEhNh51Sk1jUWjmKHLzkqw.jpg", + "backdropPath": "/tnwMCH4yLBY4qpe6Nr4n66u4U3f.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2018-06-27", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 3865, + "popularity": 6.8811 + }, + { + "id": 1000475, + "title": "River Wild", + "originalTitle": "River Wild", + "overview": "Follows a pair of siblings who love but distrust each other as they embark on a white-water rafting trip with a small group. One of their friends from childhood turns out to be more dangerous than he appears.", + "posterPath": "/bAKCbByXeZ9UyFKIR04ry4fCQX3.jpg", + "backdropPath": "/bxkDfZAdYZB8z13WAS4JbZyY3dy.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 12 + ], + "genres": [ + "Mystery", + "Thriller", + "Adventure" + ], + "releaseDate": "2023-10-30", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 71, + "popularity": 6.8799 + }, + { + "id": 60304, + "title": "Hansel & Gretel: Witch Hunters", + "originalTitle": "Hansel & Gretel: Witch Hunters", + "overview": "After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches... their past.", + "posterPath": "/j343Rpj3WeNvP0SV80zveve70io.jpg", + "backdropPath": "/mJSe5dxKu8Sq0GfdjdWVqdGvzfV.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 28 + ], + "genres": [ + "Fantasy", + "Horror", + "Action" + ], + "releaseDate": "2013-01-17", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.095, + "voteCount": 6948, + "popularity": 6.8792 + }, + { + "id": 49494, + "title": "The Eagle", + "originalTitle": "The Eagle", + "overview": "In 140 AD, twenty years after the unexplained disappearance of the entire Ninth Legion in the mountains of Scotland, young centurion Marcus Aquila arrives from Rome to solve the mystery and restore the reputation of his father, the commander of the Ninth. Accompanied only by his British slave Esca, Marcus sets out across Hadrian's Wall into the uncharted highlands of Caledonia - to confront its savage tribes, make peace with his father's memory, and retrieve the lost legion's golden emblem, the Eagle of the Ninth.", + "posterPath": "/e7rcJQWplGZWz57yGlP87rlPmI.jpg", + "backdropPath": "/k78NOxPHrWCDmBnVx0fux37Vv05.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18 + ], + "genres": [ + "Adventure", + "Drama" + ], + "releaseDate": "2011-02-08", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.253, + "voteCount": 1376, + "popularity": 6.8787 + }, + { + "id": 4247, + "title": "Scary Movie", + "originalTitle": "Scary Movie", + "overview": "A familiar-looking group of teenagers find themselves being stalked by a more-than-vaguely recognizable masked killer! As the victims begin to pile up and the laughs pile on, none of your favorite scary movies escape the razor-sharp satire of this outrageously funny parody!", + "posterPath": "/fVQFPRuw3yWXojYDJvA5EoFjUOY.jpg", + "backdropPath": "/uHZRTGMFb1RLmgWcqlIOZsGbDCT.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-07-07", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.381, + "voteCount": 7406, + "popularity": 6.8787 + }, + { + "id": 7518, + "title": "Over the Hedge", + "originalTitle": "Over the Hedge", + "overview": "A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating – and learns a lesson about family himself.", + "posterPath": "/jtZnymorbnHY7mOiBXR14ZDJseM.jpg", + "backdropPath": "/4BmZXt8Yty7F2He4KE05jqGidEz.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Animation" + ], + "releaseDate": "2006-05-17", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 4681, + "popularity": 6.8785 + }, + { + "id": 1267116, + "title": "Bad Man", + "originalTitle": "Bad Man", + "overview": "In Colt Lake, Tennessee, Sam Evans tackles a meth epidemic. He is side-lined on arrival of Bobby Gaines, an undercover agent. Despite Evans' local ties, Gaines is hailed as hero. Suspicions arise on Gaines which unravels a complex narrative.", + "posterPath": "/7vIccLLGDhCOkBUCqEEl3a1Yhc1.jpg", + "backdropPath": "/1vpYetmXPalRThqVpxMr02DDQEW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2025-09-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 16, + "popularity": 6.8783 + }, + { + "id": 844417, + "title": "Marlowe", + "originalTitle": "Marlowe", + "overview": "Private detective Philip Marlowe becomes embroiled in an investigation involving a wealthy Californian family after a beautiful blonde hires him to track down her former lover.", + "posterPath": "/vjAMj81oYBryzGBhJk4gcK0M636.jpg", + "backdropPath": "/1KpCjh3hedCEX8mvxtldU0Z2IiE.jpg", + "mediaType": "movie", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2023-02-15", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.726, + "voteCount": 416, + "popularity": 6.8778 + }, + { + "id": 856289, + "title": "Creation of the Gods I: Kingdom of Storms", + "originalTitle": "封神第一部:朝歌风云", + "overview": "Based on the most well-known classical fantasy novel of China, Fengshenyanyi, the trilogy is a magnificent eastern high fantasy epic that recreates the prolonged mythical wars between humans, immortals and monsters, which happened more than three thousand years ago.", + "posterPath": "/6VOV2wU3WEyN0H1QtrbAS6whXPc.jpg", + "backdropPath": "/cwsBDxvFn0pkxPOrQg8Koz2kMRM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 10752 + ], + "genres": [ + "Action", + "Fantasy", + "War" + ], + "releaseDate": "2023-07-15", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 7.101, + "voteCount": 452, + "popularity": 6.8774 + }, + { + "id": 978796, + "title": "Bagman", + "originalTitle": "Bagman", + "overview": "For centuries and across cultures, parents have warned their children of the legendary Bagman, who snatches innocent children and stuffs them into his vile, rotting bag—never to be seen again. Patrick McKee narrowly escaped such an encounter as a boy, which left him with lasting scars throughout his adulthood. Now, Patrick’s childhood tormentor has returned, threatening the safety of his wife Karina and son Jake.", + "posterPath": "/53IK9rlZJbwFYbNnJZiLq7UWxkT.jpg", + "backdropPath": "/gmYpUbSGOwmZnevCr0iwLEYdpVB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-09-20", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.151, + "voteCount": 406, + "popularity": 6.877 + }, + { + "id": 42748, + "title": "Bo", + "originalTitle": "Bo", + "overview": "Fifteen year old Deborah meets Jennifer who steers her into a career as an escort. Under the alias Bo she begins a new life that she cannot handle and starts a downward spiral that only she can end.", + "posterPath": "/ojA8O7KMIGeC1VPu34DxBecY17L.jpg", + "backdropPath": "/cpvvDqHtvSsPstsq9bnZi4NmQ70.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-02-10", + "releaseYear": "2010", + "originalLanguage": "nl", + "voteAverage": 5, + "voteCount": 37, + "popularity": 6.8767 + }, + { + "id": 316029, + "title": "The Greatest Showman", + "originalTitle": "The Greatest Showman", + "overview": "The story of American showman P.T. Barnum, founder of the circus that became the famous traveling Ringling Bros. and Barnum & Bailey Circus.", + "posterPath": "/b9CeobiihCx1uG1tpw8hXmpi7nm.jpg", + "backdropPath": "/lrNKm3HNvGdZoAfiBKu7b04FLHN.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-12-20", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.87, + "voteCount": 9810, + "popularity": 6.8761 + }, + { + "id": 81530, + "title": "Blackrock", + "originalTitle": "Blackrock", + "overview": "In New South Wales, Jared surfs with his mates and has a first girl. He hosts a beach party for his older pal, Ricko, and witnesses four of his mates gang-rape a 15 year old. He does nothing, and the next day, she's found murdered. At school, the boys and the girls react: the girls with anger at the perpetrators, the boys with jeering at the dead girl's morality. The students' parents have their own responses. Jared retreats into angry silence, disgusted that he did nothing to help the dead girl. Meanwhile, his mother wants to talk to him about her impending cancer surgery, the police want to know what he saw, and his friend Ricko wants an alibi. Jared's cracking under the pressure.", + "posterPath": "/36EyDOPw8tvGhvVqi3msNPDYSoY.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1997-05-01", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 5.346, + "voteCount": 13, + "popularity": 6.8758 + }, + { + "id": 661348, + "title": "Cow", + "originalTitle": "Cow", + "overview": "A close-up portrait of the daily lives of a pair of cows: told by way of some narrative-free, intimate POV photography, with plenty of close shot images, we follow the daily routine of these animals as they live what can only be described as mundane, boring lives - all with an ultimate purpose within the human food chain.", + "posterPath": "/faszRX0wSzGqjIzDXt79H9ibsXa.jpg", + "backdropPath": "/kCF4tIyvLN9BieEUzUOVFwgGUPM.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2022-01-14", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.377, + "voteCount": 61, + "popularity": 6.8753 + }, + { + "id": 1946, + "title": "eXistenZ", + "originalTitle": "eXistenZ", + "overview": "A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.", + "posterPath": "/kETKF0JhdTPn1knci8CAdYL0d79.jpg", + "backdropPath": "/epmwIWdQLouFJ8yx55quVvgnTKu.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1999-04-14", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.794, + "voteCount": 2083, + "popularity": 6.8739 + }, + { + "id": 665901, + "title": "Violet", + "originalTitle": "Violet", + "overview": "Violet realizes that her entire life is built on fear-based decisions, and must do everything differently to become her true self.", + "posterPath": "/h88HvuJGmbz6ABBFHoltN4Ratib.jpg", + "backdropPath": "/kE0G21t1ktp7pe9QrIcWtEl05RK.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-10-29", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 28, + "popularity": 6.8733 + }, + { + "id": 84203, + "title": "Goats", + "originalTitle": "Goats", + "overview": "Having a self-absorbed New Age mother and an estranged father has meant 15-year-old Ellis Whitman has grown up relying on an unconventional guardian: a goat-trekking, marijuana-growing sage called 'Goat Man'. When Ellis decides to leave the alternative ways of his desert homestead for a stuffy East Coast prep school, major changes are in store.", + "posterPath": "/sguv1tnaQjFWsbcpN0b08cWmsFJ.jpg", + "backdropPath": "/gWfv4i7xqgLoAE7eefyn6WDnml9.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-08-10", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.523, + "voteCount": 110, + "popularity": 6.8733 + }, + { + "id": 745, + "title": "The Sixth Sense", + "originalTitle": "The Sixth Sense", + "overview": "Following an unexpected tragedy, child psychologist Malcolm Crowe meets a nine year old boy named Cole Sear, who is hiding a dark secret.", + "posterPath": "/vOyfUXNFSnaTk7Vk5AjpsKTUWsu.jpg", + "backdropPath": "/paUKxrbN2ww0JeT2JtvgAuaGlPf.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 18 + ], + "genres": [ + "Mystery", + "Thriller", + "Drama" + ], + "releaseDate": "1999-08-06", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 12409, + "popularity": 6.8732 + }, + { + "id": 16859, + "title": "Kiki's Delivery Service", + "originalTitle": "魔女の宅急便", + "overview": "A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.", + "posterPath": "/Aufa4YdZIv4AXpR9rznwVA5SEfd.jpg", + "backdropPath": "/h5pAEVma835u8xoE60kmLVopLct.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "1989-07-29", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 4380, + "popularity": 6.8731 + }, + { + "id": 302699, + "title": "Central Intelligence", + "originalTitle": "Central Intelligence", + "overview": "Calvin Joyner, a mild-mannered accountant whose high school glory days are long behind him, reconnects with an awkward pal from high school through Facebook. After meeting up, Calvin’s mundane life takes an unexpectedly thrilling turn when he's thrust into the world of international espionage.", + "posterPath": "/hXQVMbRNpf7c93e8clMY4W5DRm6.jpg", + "backdropPath": "/12gfRwL8RuZUQ4kiGzq9kRYBK5J.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2016-06-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.417, + "voteCount": 6182, + "popularity": 6.8713 + }, + { + "id": 338107, + "title": "Chocolate City", + "originalTitle": "Chocolate City", + "overview": "Life for a struggling college student changes in an instant when he meets the owner of a male strip club who convinces him to give amateur night a whirl.", + "posterPath": "/y3IkOh4wtMvpQFeRqc6ej4pvGeK.jpg", + "backdropPath": "/wjHWDfgnUGAAJ8WYYloPiikyfwX.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-05-22", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 38, + "popularity": 6.8674 + }, + { + "id": 601744, + "title": "Loqueesha", + "originalTitle": "Loqueesha", + "overview": "A white guy pretends to be a black female talk radio host and becomes a huge hit.", + "posterPath": "/uwJiIxoNre4mih8F5ayRw2f7Vwb.jpg", + "backdropPath": "/zO185KGJRFJjtwHEGXxAo4SYGDv.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 2.85, + "voteCount": 20, + "popularity": 6.8672 + }, + { + "id": 4518, + "title": "Elizabeth", + "originalTitle": "Elizabeth", + "overview": "The story of the ascension to the throne and the early reign of Queen Elizabeth the First, the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley.", + "posterPath": "/qEk48VLOdibXFVIEzE9ETZUBcCs.jpg", + "backdropPath": "/LTjGvAf92YLudl5zqJP9tHLuSo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "1998-09-13", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.168, + "voteCount": 1454, + "popularity": 6.8669 + }, + { + "id": 468198, + "title": "The Place", + "originalTitle": "The Place", + "overview": "The fates of an apparently random group of strangers who each come into contact with a mysterious figure who they believe possesses the power to grant any wish, in return for which they must carry out a task he assigns them.", + "posterPath": "/bBs5CiFImWQLVWm7alzUwbHUOkz.jpg", + "backdropPath": "/gqeXM1H8hR9CX3kKWRMOxxbIstJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2017-11-04", + "releaseYear": "2017", + "originalLanguage": "it", + "voteAverage": 7.125, + "voteCount": 1225, + "popularity": 6.8663 + }, + { + "id": 425505, + "title": "Kin", + "originalTitle": "Kin", + "overview": "A young boy finds a powerful otherworldly weapon, which he uses to save his older adoptive brother from a crew of thugs. Before long, the two of them are also pursued by federal agents and mysterious mercenaries aiming to reclaim their asset.", + "posterPath": "/oPE5GXHaTlu5eRcd4USuOX3A1mf.jpg", + "backdropPath": "/7oZR0oaFOPrzGkg3ZntEKwMCLTe.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2018-08-29", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 865, + "popularity": 6.8662 + }, + { + "id": 32985, + "title": "Solomon Kane", + "originalTitle": "Solomon Kane", + "overview": "A nomadic 16th century warrior, condemned to hell for his brutal past, seeks redemption by renouncing violence, but finds some things are worth burning for as he fights to free a young Puritan woman from the grip of evil.", + "posterPath": "/jwwVNuGRUBXcudG6wOKP9U60BzU.jpg", + "backdropPath": "/5BqdQshlGWtn43YIFHIlYJzhFsR.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 28 + ], + "genres": [ + "Adventure", + "Fantasy", + "Action" + ], + "releaseDate": "2009-12-23", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.035, + "voteCount": 1478, + "popularity": 6.8659 + }, + { + "id": 18556, + "title": "Steel Trap", + "originalTitle": "Steel Trap", + "overview": "A who-is-it setting in the claustrophobic corridors of an abandoned and locked-off office building that has several guests invited to a party by their mysterious, unknown host. Only it is they who are the victims of their crimes. Suspense and mistrust are not the only stalker in this cat and mouse game of wits and fear. Who is the stalker? Why is he killing? And what is it exactly that everyone here has in common?", + "posterPath": "/fqbyYbURgpHyEr0ZXko5kZNDjhE.jpg", + "backdropPath": "/eMyC1vaYQzW27bLangjmtcf6SaH.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2007-11-07", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 58, + "popularity": 6.865 + }, + { + "id": 1225683, + "title": "Estomago 2: The Cookfather", + "originalTitle": "Estômago II: O Poderoso Chef", + "overview": "Sequel to the award-winning 2007 film, Stomach 2 tells the tasty and bloody dispute between a faction leader and an Italian boss for control of the prison where they are held and the privilege of being served by the talented cook Raimundo Nonato", + "posterPath": "/21zKw6hhZaJxFyCDRHcS3E3BUzd.jpg", + "backdropPath": "/1VsEw1q0K0ut98nkK4kuiOhAwOA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "2024-08-29", + "releaseYear": "2024", + "originalLanguage": "pt", + "voteAverage": 6.8, + "voteCount": 11, + "popularity": 6.8642 + }, + { + "id": 109335, + "title": "Woodland Café", + "originalTitle": "Woodland Café", + "overview": "Bugs of all kinds convene on a jazz club for an evening of fun.", + "posterPath": "/19Wtx5HVppbZUlonkxjKmZAsJbL.jpg", + "backdropPath": "/75SrHsD1XFsKIIU56K7P6cKKDQz.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10402 + ], + "genres": [ + "Animation", + "Music" + ], + "releaseDate": "1937-03-13", + "releaseYear": "1937", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 31, + "popularity": 6.8638 + }, + { + "id": 1218032, + "title": "Super Charlie", + "originalTitle": "Super Charlie", + "overview": "Wille has always dreamed of becoming a superhero and fight crime alongside his father. This dream is shattered when Wille's brother, Charlie, is born. Charlie gets all the attention, and on top of that – he has superpowers. When a supervillain and an evil scientist enact a plan to overthrow the city, Wille and Charlie must put their differences aside and work together as a team. Can an infant and his envious brother save the city?", + "posterPath": "/4iBMAGatx8aq7jTlYwUnM3GnsTA.jpg", + "backdropPath": "/o1j7fmpHPV38u0rkFOfPyRZjToZ.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 28, + 35 + ], + "genres": [ + "Animation", + "Family", + "Action", + "Comedy" + ], + "releaseDate": "2024-12-25", + "releaseYear": "2024", + "originalLanguage": "sv", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 6.8637 + }, + { + "id": 67606, + "title": "The Whalers", + "originalTitle": "The Whalers", + "overview": "Mickey, Donald, and Goofy are crewing a whaling ship. Their mishaps include Donald fighting off some hungry birds, Mickey and a bucket of water that keeps doing a boomerang impression, and Goofy firing the cannon and getting stuck high in the air, and ultimately inside a whale. And when he lands the whale well, let's just say they're gonna need a bigger boat.", + "posterPath": "/lIi833E5TKsAXfEtTjXXmryxisX.jpg", + "backdropPath": "/u3zVq1GNnUZwqCSRzd2qIQsfz7S.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1938-08-19", + "releaseYear": "1938", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 31, + "popularity": 6.863 + }, + { + "id": 39861, + "title": "Corruption", + "originalTitle": "Corruption", + "overview": "A surgeon discovers that he can restore the beauty to his girlfriend's scarred face by murdering other women and extracting fluids from their pituitary gland. However, the effects only last for a short time, so he has to kill more and more women. It is ultimately a killing spree which ends with considerable death and disaster.", + "posterPath": "/tPDKxaK0GEj62RdY4ONCXVjcezV.jpg", + "backdropPath": "/7CETzDYJ7JUPRIGQ2nmyw37VPKz.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1968-07-19", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 5.761, + "voteCount": 44, + "popularity": 6.8629 + }, + { + "id": 25726, + "title": "Cry Danger", + "originalTitle": "Cry Danger", + "overview": "After serving five years of a life sentence, Rocky Mulloy hopes to clear his friend who's still in prison for the same crime.", + "posterPath": "/dZuzzGR6Ibha4Kgb4U8ExmizoUU.jpg", + "backdropPath": "/77bqtctwEUF1WQ3zyvMUHHipMUu.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53 + ], + "genres": [ + "Crime", + "Thriller" + ], + "releaseDate": "1951-02-23", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 53, + "popularity": 6.8626 + }, + { + "id": 9270, + "title": "Brick", + "originalTitle": "Brick", + "overview": "A teenage loner pushes his way into the underworld of a high school crime ring to investigate the disappearance of his ex-girlfriend.", + "posterPath": "/5WVk8JpNIxepn4fpZzQeCumkOL5.jpg", + "backdropPath": "/sDr2KjWpEbJ8M1F88rEmhoczLkX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2006-03-31", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 1322, + "popularity": 6.8622 + }, + { + "id": 11975, + "title": "The Rainmaker", + "originalTitle": "The Rainmaker", + "overview": "Fresh out of law school and desperate for work, idealistic rookie Rudy Baylor takes on a powerful insurance company accused of denying a dying boy’s claim. Teaming up with a scrappy, unlicensed paralegal, he finds himself in a David-versus-Goliath courtroom battle that tests his ethics, courage, and belief in justice.", + "posterPath": "/twLGHXPjQtS8UyVGp5GXmhJiTM7.jpg", + "backdropPath": "/c9RwZm40IizTKwWPO933SyDufHS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "1997-11-18", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.023, + "voteCount": 1406, + "popularity": 6.8613 + }, + { + "id": 9441, + "title": "Stepmom", + "originalTitle": "Stepmom", + "overview": "Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackie’s ex-husband Luke, forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance.", + "posterPath": "/wMPv2Yz6QDzv6YhSbaqM48Medl1.jpg", + "backdropPath": "/iteE4cNHQm8PWmWDuKcCCnMLhS3.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 35 + ], + "genres": [ + "Drama", + "Romance", + "Comedy" + ], + "releaseDate": "1998-12-25", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 1508, + "popularity": 6.8601 + }, + { + "id": 42911, + "title": "Skyscraper", + "originalTitle": "Skyscraper", + "overview": "A helicopter charter turns deadly when the pilot finds that she is on a building held by terrorists. It is up to her and her husband to save the hostages.", + "posterPath": "/u3bovjQgkXryuo5dyegS0ImEzfz.jpg", + "backdropPath": "/Cm0Aox90KCxkAsaSfVmqGOgmWs.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "1996-02-29", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 4.164, + "voteCount": 64, + "popularity": 6.8595 + }, + { + "id": 51442, + "title": "American Gothic", + "originalTitle": "American Gothic", + "overview": "When six friends fly off on a weekend getaway and are suddenly plagued by engine trouble, they're forced to land on a remote island. Looking for shelter, they're grateful to encounter Ma and Pa and their children - an eccentric family living in the island's backwoods. But what begins as simple hospitality turns into a terrifying race for survival as the friends start disappearing one by one ... and turning up dead.", + "posterPath": "/rKal4piPoNlIGC0swuiHb7QfCiA.jpg", + "backdropPath": "/z4BeLiuYm9pFzAPzf4Fkx12odDu.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1987-08-17", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 5.855, + "voteCount": 117, + "popularity": 6.8587 + }, + { + "id": 487297, + "title": "What Men Want", + "originalTitle": "What Men Want", + "overview": "Magically able to hear what men are thinking, a sports agent uses her newfound ability to turn the tables on her overbearing male colleagues.", + "posterPath": "/30IiwvIRqPGjUV0bxJkZfnSiCL.jpg", + "backdropPath": "/pmVBOsh8TBvvtFKIo6QS5dE6tTs.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2019-02-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.211, + "voteCount": 1552, + "popularity": 6.8584 + }, + { + "id": 75963, + "title": "Going Ape!", + "originalTitle": "Going Ape!", + "overview": "When his father - who owned a circus - dies, Oscar inherits 5 million dollars - and 3 orangutans. However there's a condition connected to the money: if he gives away the apes or just one gets sick or dies during the next 3 years, the zoologic society will get all the money. So he not only has to deal with 3 apes and an annoyed girlfriend, but also with a greedy zoologic society's president.", + "posterPath": "/ykjlb8pWz3j0R4EV1wGVxdBeXOy.jpg", + "backdropPath": "/fEP0mlXyLgeioIsBR4Fd7hFoO7y.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 10751 + ], + "genres": [ + "Comedy", + "Crime", + "Family" + ], + "releaseDate": "1981-04-10", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 18, + "popularity": 6.8574 + }, + { + "id": 387892, + "title": "A.C.O.R.N.S.: Operation Crackdown", + "originalTitle": "Get Squirrely", + "overview": "After breaking out of a rehabilitation zoo, Frankie, a squirrel with all the angles, returns to his forest. He learns from his dim-witted best friend, Cody, a porcupine and street-con, that while he was in lock-up, the entire forest was picked clean by The A.C.O.R.N.S. Institute (Alternative Cosmetic Oils for Regenerative Natural Skin-care). No acorn was left behind. With winter just around the corner, it's a potentially devastating blow to all forest critters. So, Frankie has no choice but to bust into the brand new, state-of-the-art, rodent-proof A.C.O.R.N.S. Processing Plant and take back all of the acorns! Though a seemingly impossible heist, success would not only save the lives of his forest friends, but it would also give Frankie a chance to win back the love of his life, Lola, a local \"show squirrel.\" Sadly, Lola has been burnt by too many of Frankie's false promises in the past.", + "posterPath": "/lf3sDJKPknEivxb4B4YV2KiuTzq.jpg", + "backdropPath": "/7wEdPYkefe8Jfdusdq07CNAKpl5.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 16, + 35 + ], + "genres": [ + "Family", + "Animation", + "Comedy" + ], + "releaseDate": "2015-03-01", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.694, + "voteCount": 18, + "popularity": 6.8559 + }, + { + "id": 83957, + "title": "Rapture", + "originalTitle": "Rapture", + "overview": "Agnes, a lonely teenage girl, and her father befriend an escaped convict, named Joseph, who arrives at their farm in Brittany, France. When Joseph develops an attraction to Agnes, her father threatens to break up the union.", + "posterPath": "/3W1cDAKWIYs45Rt0j5EJCjZt8Ev.jpg", + "backdropPath": "/bBnQhsxFp2T9o2Sj9RU6HbbH2rG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1965-08-23", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 35, + "popularity": 6.8541 + }, + { + "id": 892113, + "title": "Death Valley", + "originalTitle": "Death Valley", + "overview": "Mercenaries with nothing to lose are hired to rescue a bioengineer imprisoned in a cold war bunker. Upon entering the ominous facility, they find themselves in a fight for their lives when they come under attack from an unknown and deadly creature.", + "posterPath": "/lVVBypE10jInpy2lYurWT8lyOXs.jpg", + "backdropPath": "/6v4JNim6vJQ7JljMxxCANqHDe1n.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 28 + ], + "genres": [ + "Horror", + "Science Fiction", + "Action" + ], + "releaseDate": "2021-11-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 78, + "popularity": 6.8536 + }, + { + "id": 8882, + "title": "Gomorrah", + "originalTitle": "Gomorra", + "overview": "An inside look at Italy's modern-day crime families, the Camorra in Naples and Caserta. Based on a book by Roberto Saviano. Power, money and blood: these are the \"values\" that the residents of the Province of Naples and Caserta have to face every day. They hardly ever have a choice and are forced to obey the rules of the Camorra. Only a lucky few can even think of leading a normal life.", + "posterPath": "/3XcCTqSovFZE5GRebJmh1kHwziw.jpg", + "backdropPath": "/dmxAEDURAwfz6iTXTWu1GCYcOR3.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2008-05-16", + "releaseYear": "2008", + "originalLanguage": "it", + "voteAverage": 6.9, + "voteCount": 1259, + "popularity": 6.8534 + }, + { + "id": 172415, + "title": "Captain Tsubasa Movie 04: The Great World Competition!! The Junior World Cup", + "originalTitle": "キャプテン翼 世界大決戦!! Jr.ワールドカップ", + "overview": "Japan and Europe goes continental! This time, they arrange a tournament with 4 teams: Japan, USA, \"All-Europe\", and \"All-South America\". South America is rising to the tops of the bracket with their hidden weapon, Carlos Santana, who manages to avoid the tricks of his international opponents. How will Team Japan counter this impressive player?", + "posterPath": "/lI4qsvm7UXlQHwrzJkGMMuqiBnj.jpg", + "backdropPath": "/5zY9Cbropf44GrqE4MhJp66IUyZ.jpg", + "mediaType": "movie", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1986-07-11", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 60, + "popularity": 6.8531 + }, + { + "id": 71750, + "title": "Sleeping Beauty", + "originalTitle": "Sleeping Beauty", + "overview": "Feature-length, live-action musical version of the classic fairy tale by Charles Perrault.", + "posterPath": "/yaIJMVA8RffAHQif4CruOUcmC4q.jpg", + "backdropPath": "/6h44xhiFTjx1pORzTTMzbohxptx.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14 + ], + "genres": [ + "Family", + "Fantasy" + ], + "releaseDate": "1987-06-12", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 10, + "popularity": 6.8529 + }, + { + "id": 128452, + "title": "Tulpa - Demon of Desire", + "originalTitle": "Tulpa", + "overview": "Lisa Boeri is at the top of her corporate career. At night she frequents the notorious Club Tulpa, owned by a mysterious Tibetan guru. Unshackled from repression and guilt, Lisa will do anything with any stranger to attain a higher consciousness. However, when her lovers start getting murdered in shocking ways, Lisa can’t go to the police because the scandal would impact her day job. Foolishly she tries to unmask the assassin herself, with truly nightmarish consequences.", + "posterPath": "/9C2toUczEoSYhdWIRBPYxEY714W.jpg", + "backdropPath": "/pKNgzF5IJHkluNG6rZgVbRXvAIz.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2012-08-25", + "releaseYear": "2012", + "originalLanguage": "it", + "voteAverage": 4.617, + "voteCount": 47, + "popularity": 6.8523 + }, + { + "id": 21610, + "title": "Nighthawks", + "originalTitle": "Nighthawks", + "overview": "When one of Europe's most lethal terrorists shows up in New York, an elite undercover cop is assigned to take him down by any means necessary.", + "posterPath": "/EuWOvbS7GdbXuYhRwFXgUGIRFd.jpg", + "backdropPath": "/sbCQ5uuQ9Y4fkWR8NR3x41rvFvF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "1981-03-17", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 466, + "popularity": 6.8523 + }, + { + "id": 9367, + "title": "El Mariachi", + "originalTitle": "El Mariachi", + "overview": "El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor, a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake el Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case.", + "posterPath": "/zRh7K4SV1xQ419m8gzGITak51vc.jpg", + "backdropPath": "/zERY2aaCrLExpR6NQ1ceIs0WG8S.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "1993-02-22", + "releaseYear": "1993", + "originalLanguage": "es", + "voteAverage": 6.742, + "voteCount": 1224, + "popularity": 6.8523 + }, + { + "id": 119292, + "title": "Virus", + "originalTitle": "Virus", + "overview": "A United States Presidential bodyguard risks everything to save the day when a truck chock full of biological weapons contrives to crash in a National Park.", + "posterPath": "/lvzboCEMvEH3wnY82ghEnyIWLzE.jpg", + "backdropPath": "/7QkuoAjVRLqps7gcMSMOy9gqm3X.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1996-12-10", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 2.7, + "voteCount": 12, + "popularity": 6.8508 + }, + { + "id": 9353, + "title": "Nacho Libre", + "originalTitle": "Nacho Libre", + "overview": "Ignacio, a disrespected cook at a Mexican monastery, can barely afford to feed the orphans who live there. Inspired by a local wrestling hero, he decides to moonlight as the not-so-famous Luchador \"Nacho Libre\" to earn money for the monastery -- not to mention the admiration of beautiful nun Sister Encarnación.", + "posterPath": "/kh7B91bMl2lZ0mH9WhPfaNUIEQH.jpg", + "backdropPath": "/3rRNO4mmzzcAEbBe1pwpSzMvDPc.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-06-16", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.501, + "voteCount": 1768, + "popularity": 6.8501 + }, + { + "id": 117767, + "title": "Eroica", + "originalTitle": "Eroica. Symfonia bohaterska w dwóch częściach", + "overview": "Tells two tales set during WWII: A seemingly feckless and selfish man finally takes up arms in the national struggle against the Nazis. Set in a POW camp, Polish inmates cling to their hopes for an eventual escape, encouraged by the legendary escape of one of their own.", + "posterPath": "/uWiEsDfapHS1F3gLh6VUUywo0q.jpg", + "backdropPath": "/pkSTm0EmVHNwSmzP8JodHCRE7AM.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1958-01-04", + "releaseYear": "1958", + "originalLanguage": "pl", + "voteAverage": 6.9, + "voteCount": 24, + "popularity": 6.8496 + }, + { + "id": 290619, + "title": "Hot Spirits", + "originalTitle": "Bollenti spiriti", + "overview": "Giovanni is a rich Italian aristocrat. He inherit a castle occupied by the ghost of an ancestor. Part of the inheritance is of a young beautiful blonde tourist, far relative of Giovanni. The two have to pay a ticket to the ghost to be free to own the castle. Guess what?", + "posterPath": "/yhIpTD3tvH1oT9g6yygFsShpxSq.jpg", + "backdropPath": "/5N5oDPIhNK0AEiU1XAptqqhv9IF.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 14, + 9648 + ], + "genres": [ + "Horror", + "Comedy", + "Fantasy", + "Mystery" + ], + "releaseDate": "1981-12-30", + "releaseYear": "1981", + "originalLanguage": "it", + "voteAverage": 3.8, + "voteCount": 18, + "popularity": 6.8495 + }, + { + "id": 504148, + "title": "The Serpent", + "originalTitle": "The Serpent", + "overview": "Top special agent Lucinda Kavsky works for a secret part of the CIA. She's given a special assignment but then set up by her own agency.", + "posterPath": "/5OSfx8jJrjHWO9SU3Wtfd7Rs8PF.jpg", + "backdropPath": "/hRPKfuotMeyRiXXGPKmmrVXD5DG.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2021-01-28", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 50, + "popularity": 6.8494 + }, + { + "id": 505941, + "title": "Frankie", + "originalTitle": "Frankie", + "overview": "About three generations of a family grappling with a life-changing experience during one day of a vacation in the historic town of Sintra, Portugal.", + "posterPath": "/sbfrPcVHhKU6sPUP7ZVPsy7li4o.jpg", + "backdropPath": "/4QiWZ9SGNKJnRxz93L6AI4n2bCk.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-08-28", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 4.8, + "voteCount": 60, + "popularity": 6.8488 + }, + { + "id": 313, + "title": "Snow Cake", + "originalTitle": "Snow Cake", + "overview": "A drama focused on the friendship between a high-functioning autistic woman and a man who is traumatized after a fatal car accident.", + "posterPath": "/dzKNKUqaDu9JCUmjhuoDd8KQBBs.jpg", + "backdropPath": "/aN5soKp3KMT5Z0LmA9lAu44V3R9.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2006-09-08", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.135, + "voteCount": 185, + "popularity": 6.848 + }, + { + "id": 637014, + "title": "Tango Shalom", + "originalTitle": "Tango Shalom", + "overview": "When a Tango dancer asks a Rabbi to enter a dance competition, there’s one big problem—due to his Orthodox beliefs, he’s not allowed to touch her! But the prize money would save his school from bankruptcy, so they develop a plan to enter the competition without sacrificing his faith, and the bonds of family and community are tested one dazzling dance step at a time in this lighthearted fable.", + "posterPath": "/hybBNFFBAVBZiCyDPeqNbGsgg9p.jpg", + "backdropPath": "/cTvM1dDarWqouXFl1mJvfD0boAc.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-09-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 12, + "popularity": 6.8474 + }, + { + "id": 616827, + "title": "Rare Beasts", + "originalTitle": "Rare Beasts", + "overview": "Mandy is a mother, a writer, a nihilist. Mandy is a modern woman in a crisis. Raising a son in the midst of a female revolution, mining the pain of her parents' separation and professionally writing about a love that no longer exists, she falls upon a troubled man, Pete, who’s searching for a sense of worth, belonging and ‘restored’ Male identity.", + "posterPath": "/fnxlaEzzFe1dJPqcgOjGS1oM2dJ.jpg", + "backdropPath": "/ggHEdlGBoUxdKpFbcsyBU9MoRga.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 18 + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ], + "releaseDate": "2021-05-21", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 29, + "popularity": 6.8467 + }, + { + "id": 31142, + "title": "Jet Boy", + "originalTitle": "Jet Boy", + "overview": "A coming-of-age story of a reluctant 13-year-old hustler named Nathan who will do whatever it takes to feel loved.", + "posterPath": "/d31LKiVdfztUlY8MF1oE30wl4iO.jpg", + "backdropPath": "/iNDvNf2JUJasIUC3AR5xb3bfWq0.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-09-30", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 43, + "popularity": 6.8464 + }, + { + "id": 10022, + "title": "The Pacifier", + "originalTitle": "The Pacifier", + "overview": "Navy SEAL Shane Wolfe is handed a new assignment: Protect the five Plummer kids from enemies of their recently deceased father -- a government scientist whose top-secret experiment remains hidden in the kids' house.", + "posterPath": "/ayVLPibrtazh7U5FliWRLDMmG3d.jpg", + "backdropPath": "/2OQkSOyC5HuCNpq0XO5EEPEdazX.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 28 + ], + "genres": [ + "Comedy", + "Family", + "Action" + ], + "releaseDate": "2005-03-04", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.073, + "voteCount": 3158, + "popularity": 6.8461 + }, + { + "id": 8363, + "title": "Superbad", + "originalTitle": "Superbad", + "overview": "Two co-dependent high school seniors are forced to deal with separation anxiety after their plan to stage a booze-soaked party goes awry.", + "posterPath": "/ek8e8txUyUwd2BNqj6lFEerJfbq.jpg", + "backdropPath": "/giYuvpmpZbwkT3NtX4WdNYqGhxw.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-08-17", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.258, + "voteCount": 7765, + "popularity": 6.8458 + }, + { + "id": 601643, + "title": "Ghost Stories", + "originalTitle": "Ghost Stories", + "overview": "An anthology of four short horror tales.", + "posterPath": "/wszWo7WJwh8AdTZjK7yfljejjBU.jpg", + "backdropPath": "/dKSykSoV8eGWYqgmVJwBpBvTPzz.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2020-01-01", + "releaseYear": "2020", + "originalLanguage": "hi", + "voteAverage": 5.161, + "voteCount": 84, + "popularity": 6.8457 + }, + { + "id": 835504, + "title": "Lullaby", + "originalTitle": "Cinco lobitos", + "overview": "Amaia has just become a mother, and the challenge is even more significant than she imagined. So when her partner has to leave for several weeks because of his job, she decides to spend time with her parents in a lovely coastal village in the Basque Country and hopefully share the responsibility of looking after her baby. However, she forgot that even when one becomes a parent, one never stops being a daughter.", + "posterPath": "/4Zt8sVMHNq83C80OsABQIcW3fK5.jpg", + "backdropPath": "/7ewBir8AIg2b0r4gOceCWUOyKNF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-05-17", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 7.2, + "voteCount": 117, + "popularity": 6.8421 + }, + { + "id": 45779, + "title": "Mindwarp", + "originalTitle": "Mindwarp", + "overview": "Revolting mutants hunt human outcasts and underground fighters (Bruce Campbell, Marta Alicia) in a future world of mind control.", + "posterPath": "/fNUdqTW2oZfpNoPcpQLiD4wsFpY.jpg", + "backdropPath": "/x8OJVenhG32UNd27otRDlA5xDcb.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 53 + ], + "genres": [ + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "1992-05-25", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.245, + "voteCount": 92, + "popularity": 6.8412 + }, + { + "id": 1058537, + "title": "Angels Fallen: Warriors of Peace", + "originalTitle": "Angels Fallen: Warriors of Peace", + "overview": "When an Iraq War veteran receives a calling from a higher power, he embarks on a mission to stop a fallen angel from raising an army of the dead to take over the world.", + "posterPath": "/dKdKUSGQ9E0G73WPr9xIHrofpkT.jpg", + "backdropPath": "/xVcffNU61CclEGgtiWP7KLIE2dm.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 14, + 12 + ], + "genres": [ + "Horror", + "Action", + "Fantasy", + "Adventure" + ], + "releaseDate": "2024-07-09", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.092, + "voteCount": 65, + "popularity": 6.841 + }, + { + "id": 44607, + "title": "The Serpent", + "originalTitle": "Le Serpent", + "overview": "Vlassov is a Soviet spy who defects in France. He is whisked to the U.S, where Allan Davies takes over the case. After polygraph tests and cross-examinations, Vlassov names several Western European agents who are also spying for the Soviets. Davies wants to take the listed agents into custody; meanwhile, those on the list start dying under mysterious circumstances.", + "posterPath": "/smqx8XlZSJzezGEfcI9ySIetzpS.jpg", + "backdropPath": "/jFhT7ZXtEFyTPBRJ9Ftx32AQ9Eu.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1973-04-07", + "releaseYear": "1973", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 46, + "popularity": 6.8409 + }, + { + "id": 1195506, + "title": "Novocaine", + "originalTitle": "Novocaine", + "overview": "When the girl of his dreams is kidnapped, everyman Nate turns his inability to feel pain into an unexpected strength in his fight to get her back.", + "posterPath": "/xmMHGz9dVRaMY6rRAlEX4W0Wdhm.jpg", + "backdropPath": "/lyBH2mFFU6qrHwD5QKotL2JnEb6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Thriller" + ], + "releaseDate": "2025-03-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.863, + "voteCount": 1278, + "popularity": 6.8402 + }, + { + "id": 753342, + "title": "Napoleon", + "originalTitle": "Napoleon", + "overview": "An epic that details the checkered rise and fall of French Emperor Napoleon Bonaparte and his relentless journey to power through the prism of his addictive, volatile relationship with his wife, Josephine.", + "posterPath": "/ytFOXyghxLzAM4KZyazDdEkM66q.jpg", + "backdropPath": "/8dR0DXJ24BwWXRuMrFH1hbVLC5X.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 10752, + 10749 + ], + "genres": [ + "History", + "War", + "Romance" + ], + "releaseDate": "2023-11-22", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.317, + "voteCount": 2913, + "popularity": 6.8401 + }, + { + "id": 250766, + "title": "Life Itself", + "originalTitle": "Life Itself", + "overview": "The surprising and entertaining life of renowned film critic and social commentator Roger Ebert (1942-2013): his early days as a freewheeling bachelor and Pulitzer Prize winner, his famously contentious partnership with Gene Siskel, his life-altering marriage, and his brave and transcendent battle with cancer.", + "posterPath": "/nK4cYTEO2eHLMgMII0Ux0kBOGhG.jpg", + "backdropPath": "/hfBVcLWjvL9ZCEPDLcbGYsBvor1.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2014-07-04", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 361, + "popularity": 6.8396 + }, + { + "id": 79698, + "title": "The Lovers", + "originalTitle": "The Lovers", + "overview": "The Lovers is an epic romance time travel adventure film. Helmed by Roland Joffé from a story by Ajey Jhankar, the film is a sweeping tale of an impossible love set against the backdrop of the first Anglo-Maratha war across two time periods and continents and centred around four characters — a British officer in 18th century colonial India, the Indian woman he falls deeply in love with, an American present-day marine biologist and his wife.", + "posterPath": "/6esL8UH2sXXqbfbaV6bFEUBCDOr.jpg", + "backdropPath": "/bHDQPPXx5hxkrg7oE9TJXrFHUSg.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 10749 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "Romance" + ], + "releaseDate": "2015-03-13", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.787, + "voteCount": 75, + "popularity": 6.8396 + }, + { + "id": 643065, + "title": "The Fall", + "originalTitle": "The Fall", + "overview": "A mob's punishment of a lone man proves cruel and unusual.", + "posterPath": "/ltZj6zkzsTjKOA6XK1mlW0bxGrs.jpg", + "backdropPath": "/i8WHMVgsF6FRnoXVA3l3ryjgHMZ.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2019-11-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.722, + "voteCount": 100, + "popularity": 6.8394 + }, + { + "id": 54597, + "title": "Blood Out", + "originalTitle": "Blood Out", + "overview": "When big city detectives refuse to further investigate his kid brother's gang related murder, small town Sheriff Michael Spencer drops the badge and goes undercover to find his brother's killer and avenge his death.", + "posterPath": "/e7KebNqtudY3zRUSklwf8CqsEn.jpg", + "backdropPath": "/fpSprErzCUH1XzfCyNIxUk4XKS0.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2011-04-25", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.208, + "voteCount": 113, + "popularity": 6.8393 + }, + { + "id": 493922, + "title": "Hereditary", + "originalTitle": "Hereditary", + "overview": "Following the death of the Leigh family matriarch, Annie and her children uncover disturbing secrets about their heritage. Their daily lives are not only impacted, but they also become entangled in a chilling fate from which they cannot escape, driving them to the brink of madness.", + "posterPath": "/hjlZSXM86wJrfCv5VKfR5DI2VeU.jpg", + "backdropPath": "/gJbTXKNTL6O7r7PzF6ZRkJGBlPp.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2018-06-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.291, + "voteCount": 8245, + "popularity": 6.8382 + }, + { + "id": 332212, + "title": "Robo-Dog", + "originalTitle": "Robo-Dog", + "overview": "When Tyler's furry best friend dies tragically, his inventor Dad creates a new dog to take his place - complete with mechanical powers and robotic abilities to keep everyone on their toes.", + "posterPath": "/qqkAFKidHuEVwxsDtqygqgHEQBI.jpg", + "backdropPath": "/mjw5mUJGJ8aswNw8iQwmOCJGVcE.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 878, + 35 + ], + "genres": [ + "Family", + "Science Fiction", + "Comedy" + ], + "releaseDate": "2015-10-14", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 25, + "popularity": 6.8373 + }, + { + "id": 258435, + "title": "Paris Follies", + "originalTitle": "La Ritournelle", + "overview": "Long married 50-somethings Brigitte and Xavier are prize cattle breeders in regional France. Life is good, but the departure of their children from home has thrown Brigitte’s world into flux, as she finds herself locked into routine. She keeps hoping for something else, something more. A party held by students on the adjoining property accelerates this latent crisis and Brigitte impulsively sets off for Paris under the guise of a doctor’s appointment. The city immediately invigorates her, and when she meets a charming Danish gentleman, she impulsively allows herself to be flattered by his attentions…", + "posterPath": "/mUgESB67BfeiEpF3R7RukVEU6xf.jpg", + "backdropPath": "/sjbAA6jwLBfZ47RbpJbikF2tHdS.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-03-08", + "releaseYear": "2014", + "originalLanguage": "fr", + "voteAverage": 5.9, + "voteCount": 41, + "popularity": 6.8371 + }, + { + "id": 26141, + "title": "Fatal Instinct", + "originalTitle": "Fatal Instinct", + "overview": "Ned Ravine is a police officer and lawyer who occasionally defends the delinquents he arrests. He crosses paths with seductive Lola Cain during an assignment and promptly begins an affair with her. Meanwhile, Ned's wife, Lana, is deep in an affair of her own. Lana and her lover are planning to murder Ned in an elaborate fashion so they can collect on his triple indemnity life insurance policy.", + "posterPath": "/syewFnehGbbya5BdxoHLzrcm5Ne.jpg", + "backdropPath": "/mTJHunR5Fr62OsPcTrPrw3YWTAS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "1993-10-29", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 160, + "popularity": 6.8367 + }, + { + "id": 1061656, + "title": "Perpetrator", + "originalTitle": "Perpetrator", + "overview": "Jonny Baptiste is a reckless teen sent to live with her estranged Aunt Hildie. On the event of her eighteenth birthday, she experiences a radical metamorphosis: a family spell that redefines her called Forevering. When several teen girls go missing at her new school, a mythically feral Jonny goes after the Perpetrator.", + "posterPath": "/fjTI6czy62GCsoI7G7fKghSrH2x.jpg", + "backdropPath": "/3VjhZz7CrNSdKUIMYg4dVcyrRbb.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2023-09-01", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 4.326, + "voteCount": 46, + "popularity": 6.8354 + }, + { + "id": 22744, + "title": "Jane Eyre", + "originalTitle": "Jane Eyre", + "overview": "After a bleak childhood, Jane Eyre goes out into the world to become a governess. As she lives happily in her new position at Thornfield Hall, she meet the dark, cold, and abrupt master of the house, Mr. Rochester. Jane and her employer grow close in friendship and she soon finds herself falling in love with him. Happiness seems to have found Jane at last, but could Mr. Rochester's terrible secret be about to destroy it forever?", + "posterPath": "/stD4BQiN4TLNf6P5ju95AVRPdto.jpg", + "backdropPath": "/sAk9UwRR9eeFkAT2vKK7k6vAOPQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1943-12-24", + "releaseYear": "1943", + "originalLanguage": "en", + "voteAverage": 6.882, + "voteCount": 144, + "popularity": 6.8352 + }, + { + "id": 10215, + "title": "Sliding Doors", + "originalTitle": "Sliding Doors", + "overview": "London publicist Helen, effortlessly slides between parallel storylines that show what happens when she does or does not catch a train back to her apartment. Love. Romantic entanglements. Deception. Trust. Friendship. Comedy. All come into focus as the two stories shift back and forth, overlap and surprisingly converge.", + "posterPath": "/s8VOVTywXZIIHqdEjkCZziH0ebq.jpg", + "backdropPath": "/1dApwEEMrk7QnUb1EpyYWrG6nRh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 14, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Fantasy", + "Romance" + ], + "releaseDate": "1998-04-23", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.563, + "voteCount": 1379, + "popularity": 6.8342 + }, + { + "id": 234256, + "title": "Blinder", + "originalTitle": "Blinder", + "overview": "An ex footballer, embroiled in a scandal, returns to his hometown to clear his name and reignite an old flame.", + "posterPath": "/4C65Uc8BSai4vmVJVrynC9TT9jX.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2013-03-07", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.769, + "voteCount": 13, + "popularity": 6.8335 + }, + { + "id": 638045, + "title": "The Toll", + "originalTitle": "The Toll", + "overview": "A socially awkward driver and a weary passenger try to make it to their destination while being haunted by a supernatural threat.", + "posterPath": "/q6vV6sSWz9cytmc8L9IEBjjyFmV.jpg", + "backdropPath": "/tFOGNL5e7IcOmifu57PTsJMlGl6.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2020-07-13", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.492, + "voteCount": 131, + "popularity": 6.8333 + }, + { + "id": 630913, + "title": "Double Holiday", + "originalTitle": "Double Holiday", + "overview": "Rebecca must throw the company holiday party with office rival, Chris. It coincides with Hanukkah, so she must juggle her work, family traditions, and nemesis to make the party a success.", + "posterPath": "/ttPyvPt3mRED5EUJTIoRPYzz5N5.jpg", + "backdropPath": "/zeghU2KVQUo7eFI2YkQi5smbUDK.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 10770 + ], + "genres": [ + "Romance", + "TV Movie" + ], + "releaseDate": "2019-12-21", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 38, + "popularity": 6.8329 + }, + { + "id": 34583, + "title": "The Final", + "originalTitle": "The Final", + "overview": "A group of high school outcasts get revenge on the students that torment them.", + "posterPath": "/ff7UI8q51sOArKafaaAOQnnfpne.jpg", + "backdropPath": "/c0W5mAgFMBMhb1MIuFlUh04zQxO.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2010-01-28", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.04, + "voteCount": 298, + "popularity": 6.8327 + }, + { + "id": 51360, + "title": "The Goat", + "originalTitle": "The Goat", + "overview": "A series of misadventures occur when Buster is mistaken for a criminal on the lam.", + "posterPath": "/wwyhlEIHW79y2NqNQ79Xc6LHRVZ.jpg", + "backdropPath": "/eziqblxAI8YNrMCVmCZml6Daibv.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1921-05-15", + "releaseYear": "1921", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 159, + "popularity": 6.8318 + }, + { + "id": 230415, + "title": "The Basilisks", + "originalTitle": "I basilischi", + "overview": "The uneventful lives of three young men who live in a small, poverty-stricken village in southern Italy.", + "posterPath": "/pEfzpwwH8W9kGpovI6h7Flz0UtN.jpg", + "backdropPath": "/q7OP3Y7hkYvVyX6Vzzf87496rKr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1963-09-02", + "releaseYear": "1963", + "originalLanguage": "it", + "voteAverage": 7.567, + "voteCount": 53, + "popularity": 6.8311 + }, + { + "id": 84628, + "title": "The Survivor", + "originalTitle": "The Survivor", + "overview": "When a 747 crashes shortly after take-off, the sole survivor is the pilot. Virtually unhurt, he and the investigators look for the answers to the disaster. Meanwhile mysterious deaths occur in the community and only a psychic, in touch with the supernatural, can help the pilot unravel the mystery surrounding the doomed plane.", + "posterPath": "/htgPAKGUIGCYjU6OyBKecXxhmWV.jpg", + "backdropPath": "/aEoM160Ceio05T74XPxGbTwguzA.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "1981-07-09", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 36, + "popularity": 6.8302 + }, + { + "id": 39938, + "title": "Little Women", + "originalTitle": "Little Women", + "overview": "Four sisters come of age in America in the aftermath of the Civil War.", + "posterPath": "/6jbBsk4uDuSkO2Uxv5YxoPNmVVj.jpg", + "backdropPath": "/vDaoVHc9Y2aKnpi5BBkpPGWbWfM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "1933-11-24", + "releaseYear": "1933", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 144, + "popularity": 6.8292 + }, + { + "id": 292834, + "title": "Brother Nature", + "originalTitle": "Brother Nature", + "overview": "Roger, a straight-laced politician has big plans to propose to his dream girl at her family's lake house. But everything goes awry when he meets his potential brother-in-law Todd: a full-time camp counselor with a heart of gold and a wild sense of fun, pining to be Roger's best friend, and ultimately catapulting him into a series of unfortunate events. As Roger tries to take a stand amidst outrageous fishing excursions, propulsive water jetpacks and American history-themed musicals, he realizes that being a part of a new family may be more difficult than he'd thought.", + "posterPath": "/jEaUqbtlOvg0bfnPaPh1Bd0MoAu.jpg", + "backdropPath": "/nPrNWHY7Oqa3PGsfS9i4R8haQ5S.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-09-09", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 50, + "popularity": 6.8291 + }, + { + "id": 776654, + "title": "Bergen", + "originalTitle": "Bergen", + "overview": "Bergen, a valuable Turkish arabesque singer, fights to stay afloat despite all the difficulties in her life.", + "posterPath": "/mxGDZUBAP5bsEONiiYvMhc4GJS5.jpg", + "backdropPath": "/oJgGtVqdI6z06TQ4ZFzDS1lgDT9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "2022-03-04", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 5.955, + "voteCount": 44, + "popularity": 6.8258 + }, + { + "id": 553608, + "title": "DJ Cinderella", + "originalTitle": "Cinderela Pop", + "overview": "Cintia is modern princess, she's connected, decided and loves music. This \"pop\" princess used to live with their parents in a huge castle with a nice view to the city. Every night she looked through the window and watch the view dreaming with a prince she didn't met yet. But one day her castle crumbles with everything around her, after her parents divorce she went to live with her aunt and stops believing in love. What she didn't knew was that there was a charming prince in her history, that wanted to break the ice around our modern day cinderella.", + "posterPath": "/rhEMGSlmtfvUYdGuE3M1dB0SmOA.jpg", + "backdropPath": "/3tt3tp81aGboViMplQItugAI2RO.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2019-02-28", + "releaseYear": "2019", + "originalLanguage": "pt", + "voteAverage": 6.5, + "voteCount": 348, + "popularity": 6.8253 + }, + { + "id": 8986, + "title": "Milk Money", + "originalTitle": "Milk Money", + "overview": "Three young boys pool their money and pay V, a kindhearted prostitute, to strip for them. Afterward, she drives them home to the suburbs -- but then her car breaks down. It's just as well, though, because a mobster named Waltzer is after her, and V realizes the suburbs are the perfect place to hide. But things get a lot more complicated when V falls in love with Tom, a single father who is unaware of her real profession.", + "posterPath": "/od8SCOMLDq4iRYaHNqihQVn1SNE.jpg", + "backdropPath": "/A0rgmDhySzeYibyjUzC6NjtML7f.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "1994-08-31", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.391, + "voteCount": 299, + "popularity": 6.8252 + }, + { + "id": 26969, + "title": "8 Dates", + "originalTitle": "8 citas", + "overview": "Men and women deal with different stages of love. Desire, jealousy, longing and melancholy are part of the romantic story of each of the characters, including a teacher, a middle-aged couple and a jealous boyfriend.", + "posterPath": "/72GJrAcO1ktIXusioMntAhkJsFQ.jpg", + "backdropPath": "/mjlECd8tuqZNoH0U7nBby0SUZg2.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2008-04-18", + "releaseYear": "2008", + "originalLanguage": "es", + "voteAverage": 5.1, + "voteCount": 15, + "popularity": 6.8247 + }, + { + "id": 10744, + "title": "The Cooler", + "originalTitle": "The Cooler", + "overview": "Bernie works at a Las Vegas casino, where he uses his innate ability to bring about misfortune in those around him to jinx gamblers into losing. His imposing boss, Shelly Kaplow, is happy with the arrangement. But Bernie finds unexpected happiness when he begins dating attractive waitress Natalie Belisario.", + "posterPath": "/gq3cZxo7SS6HAXdaxObLIyw9N1r.jpg", + "backdropPath": "/7oVJSFrqARW4jRRimEqEpHKAp1Z.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2003-11-26", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 376, + "popularity": 6.8244 + }, + { + "id": 1294698, + "title": "Case 137", + "originalTitle": "Dossier 137", + "overview": "Stéphanie, a police officer working for Internal Affairs, is assigned to a case involving a young man severely wounded during a tense and chaotic demonstration in Paris. While she finds no evidence of illegitimate police violence, the case takes a personal turn when she discovers the victim is from her hometown.", + "posterPath": "/t93h1ptV098Q6vzl9gfEymJQ6Qp.jpg", + "backdropPath": "/kjKxmpuPIvXjDP4reWCkMaeK2Es.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-11-19", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.821, + "voteCount": 54, + "popularity": 6.8236 + }, + { + "id": 492188, + "title": "Marriage Story", + "originalTitle": "Marriage Story", + "overview": "A stage director and an actress struggle through a grueling, coast-to-coast divorce that pushes them to their personal extremes.", + "posterPath": "/2JRyCKaRKyJAVpsIHeLvPw5nHmw.jpg", + "backdropPath": "/wDwQXLDUuiEaaiuWIDBpbqnwYGX.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-09-28", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 7218, + "popularity": 6.8235 + }, + { + "id": 1001925, + "title": "Collide", + "originalTitle": "Collide", + "overview": "A gripping chronicle of three couples over the course of one fateful night in an LA restaurant named Collide. Hunter finds himself on an awkward blind date with the captivating Tamira, while a busboy and his waitress girlfriend hope to score a big payday, and outside, Peter sits in his car observing his wife Angie meet with the restaurant’s manager. Though all strangers, their stories are weaved together as they hurl towards an explosive end.", + "posterPath": "/xdoOkjtC6BLZGdVBfLCKVXrKOcO.jpg", + "backdropPath": "/aB7lSaNEpRUckaexlrvhGEFgpDf.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 9648 + ], + "genres": [ + "Drama", + "Thriller", + "Mystery" + ], + "releaseDate": "2022-08-05", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 4.818, + "voteCount": 33, + "popularity": 6.8224 + }, + { + "id": 50014, + "title": "The Help", + "originalTitle": "The Help", + "overview": "Aibileen Clark is a middle-aged African-American maid who has spent her life raising white children and has recently lost her only son; Minny Jackson is an African-American maid who has often offended her employers despite her family's struggles with money and her desperate need for jobs; and Eugenia \"Skeeter\" Phelan is a young white woman who has recently moved back home after graduating college to find out her childhood maid has mysteriously disappeared. These three stories intertwine to explain how life in Jackson, Mississippi revolves around \"the help\"; yet they are always kept at a certain distance because of racial lines.", + "posterPath": "/3kmfoWWEc9Vtyuaf9v5VipRgdjx.jpg", + "backdropPath": "/k2ZdjMXmqnw4RJeh8cwxCvcznJZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-08-09", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 8760, + "popularity": 6.8207 + }, + { + "id": 701510, + "title": "Delivered", + "originalTitle": "Delivered", + "overview": "A pregnant woman’s life is upended when she realizes someone close to her has darker plans for her and the baby.", + "posterPath": "/idyJnDXMiETp8fyiyakv388C1WS.jpg", + "backdropPath": "/gmstl6FTq74UcTiaNZDoAH1DTfj.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2020-05-08", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 26, + "popularity": 6.8181 + }, + { + "id": 24070, + "title": "Mixed Nuts", + "originalTitle": "Mixed Nuts", + "overview": "The events of a crisis hotline business on one crazy night during the Christmas holidays.", + "posterPath": "/xPdQMqxWnFwCKOIto8dBEorTtGR.jpg", + "backdropPath": "/8Ba82CvjOKcmb9ghBIXN5rFW88B.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1994-12-21", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 213, + "popularity": 6.8172 + }, + { + "id": 968051, + "title": "The Nun II", + "originalTitle": "The Nun II", + "overview": "In 1956 France, a priest is violently murdered, and Sister Irene begins to investigate. She once again comes face-to-face with a powerful evil.", + "posterPath": "/5gzzkR7y3hnY8AD1wXjCnVlHba5.jpg", + "backdropPath": "/aX3Od8NVLgM7pMYgRpTPkwSrbSC.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2023-09-06", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.674, + "voteCount": 2359, + "popularity": 6.8167 + }, + { + "id": 501630, + "title": "Summer '03", + "originalTitle": "Summer '03", + "overview": "16-year-old Jamie Winkle and her extended family are left reeling after her calculating grandmother unveils an array of secrets on her deathbed. As her family deals with her grandmother's surprising dying messages, Jamie sets out to make the most of her summer and explores her sexuality.", + "posterPath": "/rZhUcUkDzgvF0pjEjMZvUsvcUqH.jpg", + "backdropPath": "/uizKLYfBnhERKnOULV8GjuJKCLd.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2018-09-28", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 222, + "popularity": 6.8159 + }, + { + "id": 715239, + "title": "Triggered", + "originalTitle": "Triggered", + "overview": "Nine friends, all harboring a dark secret, go camping in the woods. After a wild night of partying, they wake up with suicide bombs strapped to their chests, all with varying times on their countdown clocks. They decide to work out how to disarm the bombs or find help - until they discover they can 'take' one another's time by killing each other.", + "posterPath": "/aqcCIyvVYa5BnmtCL7NVB2Ifn2C.jpg", + "backdropPath": "/tI3cI6cixizFm5IAB6V5KlzqzYf.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28 + ], + "genres": [ + "Horror", + "Action" + ], + "releaseDate": "2020-08-28", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.248, + "voteCount": 123, + "popularity": 6.8151 + }, + { + "id": 58195, + "title": "Almost Blue", + "originalTitle": "Almost Blue", + "overview": "A police inspector suspects a serial killer is afoot in the university city of Bologna, luring in his victims through online video chats before murdering them and assuming their identity.", + "posterPath": "/2e2Rtg711Z5C3uzJyVV9nWHKyc3.jpg", + "backdropPath": "/aQmEWUPeZ8r9pHRai4qPystWjKb.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "2000-11-17", + "releaseYear": "2000", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 65, + "popularity": 6.8142 + }, + { + "id": 30691, + "title": "Yahşi Batı", + "originalTitle": "Yahşi Batı", + "overview": "Aziz and Lemi must recover a diamond gifted by the Sultan of the Ottoman Empire to the U.S. President which has been stolen by bandits in the American wild west.", + "posterPath": "/mk1HYwHQnHWeiRQ2UqY7Frjub05.jpg", + "backdropPath": "/ytEM935ESHPFuOQ30R2uMiSUYiB.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 37, + 12 + ], + "genres": [ + "Comedy", + "Western", + "Adventure" + ], + "releaseDate": "2009-12-31", + "releaseYear": "2009", + "originalLanguage": "tr", + "voteAverage": 6.941, + "voteCount": 211, + "popularity": 6.8134 + }, + { + "id": 24020, + "title": "Johnny Tsunami", + "originalTitle": "Johnny Tsunami", + "overview": "A Hawaiian teenage surfer shows off his skills when he takes to the snow slopes in Vermont.", + "posterPath": "/d2jnJHWVJc8D5ms1xhJ2yRkyV3U.jpg", + "backdropPath": "/nNlpfmdvwYXuxP52ll7dFTkhr2E.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 10770, + 18 + ], + "genres": [ + "Family", + "TV Movie", + "Drama" + ], + "releaseDate": "1999-07-24", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.934, + "voteCount": 144, + "popularity": 6.8127 + }, + { + "id": 11484, + "title": "Rollerball", + "originalTitle": "Rollerball", + "overview": "In a corporate-controlled future, an ultra-violent sport known as Rollerball represents the world, and one of its powerful athletes is out to defy those who want him out of the game.", + "posterPath": "/cmcipEfexlhVLYQXqeSWp1YcsPY.jpg", + "backdropPath": "/qV4zzpe4mfXnmFIOL6uugnUcM9R.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "1975-06-25", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 580, + "popularity": 6.8127 + }, + { + "id": 268297, + "title": "The Film Critic", + "originalTitle": "El crítico", + "overview": "Víctor Tellez is an intellectual, world-weary film critic who prefers to think in French and eschew the clichés of romantic movies...until he finds himself living a sappy, feel-good love story of his own.", + "posterPath": "/tAlElHCIIFkF99f5xUjkYQIHGoo.jpg", + "backdropPath": "/cxbNLCsoYdhFNf6ni4lCcS9AcS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2014-04-17", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 6.5, + "voteCount": 13, + "popularity": 6.8124 + }, + { + "id": 4808, + "title": "Charade", + "originalTitle": "Charade", + "overview": "After Regina Lampert falls for the dashing Peter Joshua on a skiing holiday in the French Alps, she discovers upon her return to Paris that her husband has been murdered. Soon, she and Peter are giving chase to three of her late husband's World War II cronies, Tex, Scobie and Gideon, who are after a quarter of a million dollars the quartet stole while behind enemy lines.", + "posterPath": "/ijJ73UgR6nOqjSP8MO0Z7hawCdm.jpg", + "backdropPath": "/1Q1yTxHjadsLMf7yy9xABUH6zaT.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 9648, + 10749 + ], + "genres": [ + "Comedy", + "Mystery", + "Romance" + ], + "releaseDate": "1963-12-01", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 1471, + "popularity": 6.8115 + }, + { + "id": 695089, + "title": "Onoda: 10,000 Nights in the Jungle", + "originalTitle": "Onoda", + "overview": "Japan, 1944. Trained for intelligence work, Hiroo Onoda, 22 years old, discovers a philosophy contrary to the official line: no suicide; stay alive whatever happens; the mission is more important than anything else. Sent to Lubang, a small island in the Philippines where the Americans are about to land, this role will be to wage a guerrilla war until the return of the Japanese troops. The Empire will surrender soon after; Onoda, 10,000 days later.", + "posterPath": "/tKzFwiEm86AVRsefgqODTBjjh98.jpg", + "backdropPath": "/6Ogax4OJwTmY69cN2u0laFdXU15.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 12, + 10752, + 36 + ], + "genres": [ + "Drama", + "Adventure", + "War", + "History" + ], + "releaseDate": "2021-07-21", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 153, + "popularity": 6.8113 + }, + { + "id": 1024, + "title": "Heavenly Creatures", + "originalTitle": "Heavenly Creatures", + "overview": "Precocious teenager Juliet moves to New Zealand with her family and soon befriends the quiet, brooding Pauline through their shared love of fantasy and literature. This friendship gradually develops into an intense and obsessive bond.", + "posterPath": "/uvb86wVCIqD3Rlbr0GTNgWDF7Zo.jpg", + "backdropPath": "/jHjOY9vgE7maH2HRk2fd9lOPg8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14 + ], + "genres": [ + "Drama", + "Fantasy" + ], + "releaseDate": "1994-09-12", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.97, + "voteCount": 988, + "popularity": 6.8108 + }, + { + "id": 16132, + "title": "Twin Sisters", + "originalTitle": "De Tweeling", + "overview": "1920s Germany. Two sisters aged six years, no sooner see their remaining parent buried when they are torn apart. Lotte goes to live with her upper middle class Dutch aunt in Holland, Anna to work as a farm hand on her German uncle's rural farm. The World War II impacts each of their lives and finally in old age they meet again.", + "posterPath": "/wYVApv3A8cbQ6cIp04Su02nCvZ2.jpg", + "backdropPath": "/mO1j0lsFaAsOW3uGSNwH6Bz3z60.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 36 + ], + "genres": [ + "Romance", + "Drama", + "History" + ], + "releaseDate": "2002-12-12", + "releaseYear": "2002", + "originalLanguage": "nl", + "voteAverage": 6.8, + "voteCount": 79, + "popularity": 6.8106 + }, + { + "id": 14742, + "title": "Night Shift", + "originalTitle": "Night Shift", + "overview": "A nebbish of a morgue attendant gets shunted back to the night shift where he is shackled with an obnoxious neophyte partner who dreams of the \"one great idea\" for success. His life takes a bizarre turn when a prostitute neighbor complains about the loss of her pimp. His partner, upon hearing the situation, suggests that they fill that opening themselves using the morgue at night.", + "posterPath": "/iS78MFtMDwWDP748juZQBK57C9o.jpg", + "backdropPath": "/1ohSQFrdDRVntlkgNqHxRVX3Xzj.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1982-07-30", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 223, + "popularity": 6.8099 + }, + { + "id": 1738, + "title": "Next", + "originalTitle": "Next", + "overview": "Las Vegas showroom magician Cris Johnson has a secret which torments him: he can see a few minutes into the future. Sick of the examinations he underwent as a child and the interest of the government and medical establishment in his power, he lies low under an assumed name in Vegas, performing cheap tricks and living off small-time gambling \"winnings.\" But when a terrorist group threatens to detonate a nuclear device in Los Angeles, government agent Callie Ferris must use all her wiles to capture Cris and convince him to help her stop the cataclysm.", + "posterPath": "/wtBOCJBCP0MWNjmBwjMAzbwgtTK.jpg", + "backdropPath": "/8OAuQm5Bxg4k4HIYfmcga5rYSzU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2007-04-25", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.116, + "voteCount": 3138, + "popularity": 6.8091 + }, + { + "id": 758336, + "title": "Love Again", + "originalTitle": "Love Again", + "overview": "Mira Ray, dealing with the loss of her fiancé, John, sends a series of romantic texts to his old cell phone number… not realizing the number was reassigned to Rob Burns' new work phone. Rob, a journalist, is captivated by the honesty in the beautifully confessional texts. When he’s assigned to write a profile of megastar Céline Dion, he enlists her help in figuring out how to meet Mira in person and win her heart.", + "posterPath": "/koswMk0y7jGcyofV1sBccnNtY0B.jpg", + "backdropPath": "/jv9WTuEk7kW8JxgpjQ872CyiifP.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "2023-05-04", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.739, + "voteCount": 446, + "popularity": 6.809 + }, + { + "id": 524840, + "title": "Friendsgiving", + "originalTitle": "Friendsgiving", + "overview": "Newly-divorced actress Molly, her recently-dumped lesbian best friend Abby and Molly’s mother Helen host a dysfunctional, comical and chaotic Thanksgiving dinner for their motley crew of close friends and strange acquaintances.", + "posterPath": "/s9CGTv4AFmrVkgoydnYFwXPaxGx.jpg", + "backdropPath": "/kgGfBsMIID51FZ0JTiBfaK56n4K.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2020-10-23", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 4.573, + "voteCount": 89, + "popularity": 6.8087 + }, + { + "id": 257442, + "title": "Almost Married", + "originalTitle": "Almost Married", + "overview": "When Kyle returns from his stag-do with a sexually transmitted disease, he's left unable to have sex with his fiancée Lydia in the run-up to their wedding.", + "posterPath": "/x3EkLzskWgWm0ijKKYZ8ULuIpkV.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-03-28", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 15, + "popularity": 6.8075 + }, + { + "id": 340601, + "title": "Delirium", + "originalTitle": "Delirium", + "overview": "A man recently released from a mental institute inherits a mansion after his parents die. After a series of disturbing events, he comes to believe it is haunted.", + "posterPath": "/j2jIkjrASnjtwCmCNDwh9LDWvq9.jpg", + "backdropPath": "/gpWErHeuasppId2voOWkSDb4bzT.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2018-05-10", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.736, + "voteCount": 312, + "popularity": 6.8069 + }, + { + "id": 130747, + "title": "The Guardians", + "originalTitle": "Schutzengel", + "overview": "15-year-old Nina witnesses a terrible crime that puts her life in danger. Being an orphan, she has nobody she can trust. When corrupt businessman Thomas Backer sends five killers after Nina, witness protection officer, Max, a former special-forces soldier, is responsible for her safety. They soon overcome their initial distance to find common ground. While on the run from the ruthless Backer, Rudi, one of Max’s former comrades, comes to their rescue – and continues to help the two out of some precarious situations. Even Max’s ex-girlfriend Sara is not just there to help him as a federal prosecutor. Nevertheless, Nina and Max face ever-increasing danger, and soon the teenager is not the only one in need of a guardian angel – Max could use one too.", + "posterPath": "/dQGAy7RVgGXdejRgLP8NzC2Op9Z.jpg", + "backdropPath": "/sQGHdkl0dnHRnA6EpFXlq1R0T78.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53, + 80 + ], + "genres": [ + "Drama", + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2012-09-18", + "releaseYear": "2012", + "originalLanguage": "de", + "voteAverage": 6.103, + "voteCount": 116, + "popularity": 6.8069 + }, + { + "id": 842675, + "title": "The Wandering Earth II", + "originalTitle": "流浪地球2", + "overview": "Humans built huge engines on the surface of the earth to find a new home. But the road to the universe is perilous. In order to save earth, young people once again have to step forward to start a race against time for life and death.", + "posterPath": "/jAZzFYS36UFT0SKhKVmEY7qShal.jpg", + "backdropPath": "/94cS0mzODEoNIXFT7nhPcI8V4IJ.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "2023-01-22", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 7.293, + "voteCount": 672, + "popularity": 6.806 + }, + { + "id": 78083, + "title": "Boggy Creek", + "originalTitle": "Boggy Creek", + "overview": "Following the death of her father in a terrible accident, sweet, yet troubled Jennifer and her friends decide to check out her dad's cabin that's located in the deep woods of Boggy Creek, Texas. While staying at said cabin for a week, Jennifer and company run afoul of an evil and vicious monster of local legend that kills men and abducts women.", + "posterPath": "/bBlz82WQ7tHVqY9yH5ZYFe2Lveq.jpg", + "backdropPath": "/ikGDzY5cbSpLpQTae2xqtajdhKt.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2010-07-01", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 3.444, + "voteCount": 27, + "popularity": 6.8058 + }, + { + "id": 24264, + "title": "Sheena", + "originalTitle": "Sheena", + "overview": "Sheena's parents are killed while on Safari. She is raised by the mystical witch woman of an African tribe. When her foster mother is framed for the murder of a political leader, Sheena and a newsman, Vic Casey, are forced to flee while pursued by the mercenaries hired by the real killer, who hopes to assume power. Sheena's ability to talk to the animals and knowledge of jungle lore give them a chance against the high tech weapons of the mercenaries.", + "posterPath": "/g3MC1eYoW1Se9fQzCOZ5tfyMatl.jpg", + "backdropPath": "/bIgSbKHjCXEijKPwE0lJuXUWPiw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "1984-08-17", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 156, + "popularity": 6.8056 + }, + { + "id": 502164, + "title": "Operation Odessa", + "originalTitle": "Operation Odessa", + "overview": "The stranger-than-fiction true story of a Russian mobster, a Miami playboy, and a Cuban spy who teamed up in the early '90s to sell a Soviet submarine to the Cali Cartel.", + "posterPath": "/cvCbbNy5NOTQGfDNFwGyh7NtnJi.jpg", + "backdropPath": "/pgujMfdn33ir7UbBanRWIzV8Xik.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2018-03-10", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 88, + "popularity": 6.8049 + }, + { + "id": 927107, + "title": "The Bricklayer", + "originalTitle": "The Bricklayer", + "overview": "Someone is blackmailing the CIA by assassinating foreign journalists and making it look like the agency is responsible. As the world begins to unite against the U.S., the CIA must lure its most brilliant – and rebellious – operative out of retirement, forcing him to confront his checkered past while unraveling an international conspiracy.", + "posterPath": "/36pYugctLa70NmwMEgXTR1G31Kq.jpg", + "backdropPath": "/47SVqaO02doJ06tOmrjiWDkwU3T.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2023-12-14", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.803, + "voteCount": 358, + "popularity": 6.8047 + }, + { + "id": 380764, + "title": "Valentine", + "originalTitle": "Valentine", + "overview": "A cafe waitress with dreams of stardom becomes an unexpected vigilante, fighting to save Batavia City from rampant crime.", + "posterPath": "/jcoaZNyoN2l8G2RCTgcogaj525G.jpg", + "backdropPath": "/h0nvoyS3EYP4Kw3E9UnP1DBJcKr.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 80, + 53, + 28 + ], + "genres": [ + "Science Fiction", + "Crime", + "Thriller", + "Action" + ], + "releaseDate": "2017-11-23", + "releaseYear": "2017", + "originalLanguage": "id", + "voteAverage": 5.567, + "voteCount": 97, + "popularity": 6.8043 + }, + { + "id": 542164, + "title": "Groupers", + "originalTitle": "Groupers", + "overview": "A grad student kidnaps two homophobic high-school bullies to use as her subjects in an experiment performed at the bottom of an empty swimming pool.", + "posterPath": "/jdtUBpSkaaiH8VKwi6rMPpwgvKc.jpg", + "backdropPath": "/n6LxemiPrLtIL33BxKIMO1jJkGj.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-03-09", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 22, + "popularity": 6.8019 + }, + { + "id": 543, + "title": "Blackmail", + "originalTitle": "Blackmail", + "overview": "London, 1929. Frank Webber, a very busy Scotland Yard detective, seems to be more interested in his work than in Alice White, his girlfriend. Feeling herself ignored, Alice agrees to go out with an elegant and well-mannered artist who invites her to visit his fancy apartment.", + "posterPath": "/7ioNEKouUkkWyv5tUDwVUd7BDRR.jpg", + "backdropPath": "/3fWwpoAVj3mhgQxTnv2O0F1ElAM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 80 + ], + "genres": [ + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "1929-07-11", + "releaseYear": "1929", + "originalLanguage": "en", + "voteAverage": 6.536, + "voteCount": 265, + "popularity": 6.8019 + }, + { + "id": 683311, + "title": "Castle Falls", + "originalTitle": "Castle Falls", + "overview": "Rival gangs seek out millions of dollars hidden inside a luxury condominium that's scheduled to be demolished, but first they have to deal with the demolition prep crewman who found the loot first.", + "posterPath": "/g918jDm2NxYtnOQ83nda82otfdG.jpg", + "backdropPath": "/ver27ON3Yo5GfvR1VNHO9tTtOdT.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53, + 18 + ], + "genres": [ + "Action", + "Crime", + "Thriller", + "Drama" + ], + "releaseDate": "2021-12-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.159, + "voteCount": 132, + "popularity": 6.8017 + }, + { + "id": 1214527, + "title": "Porcelain War", + "originalTitle": "Porcelain War", + "overview": "Under roaring fighter jets and missile strikes, Ukrainian artists Slava, Anya, and Andrey choose to stay behind and fight, contending with the soldiers they have become. Defiantly finding beauty amid destruction, they show that although it’s easy to make people afraid, it’s hard to destroy their passion for living.", + "posterPath": "/qaj6qrQOHHW7mm914ML32v7UcY.jpg", + "backdropPath": "/xybpplsyjNPpP9tr9uQb5PvwWWy.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2024-11-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 14, + "popularity": 6.8011 + }, + { + "id": 75802, + "title": "Hysteria", + "originalTitle": "Hysteria", + "overview": "Two doctors in Victorian England use manual stimulation of female genitalia to cure their patients' ills, leading to the invention of the vibrator.", + "posterPath": "/ziWnXi2VyNDD9qPi5wmOuolOCIu.jpg", + "backdropPath": "/8DPxvLQGXXd96q59rd5mllgOqVo.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2011-06-06", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.674, + "voteCount": 837, + "popularity": 6.8008 + }, + { + "id": 2034, + "title": "Training Day", + "originalTitle": "Training Day", + "overview": "On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.", + "posterPath": "/bUeiwBQdupBLQthMCHKV7zv56uv.jpg", + "backdropPath": "/nuO8o9ltxhI7AZQxePavEZ4TyHa.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "2001-10-05", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.508, + "voteCount": 6325, + "popularity": 6.8006 + }, + { + "id": 1116488, + "title": "The Shepherd", + "originalTitle": "The Shepherd", + "overview": "On Christmas Eve, a fighter pilot on his way home becomes while lost flying over water and needs a miracle to land safely.", + "posterPath": "/f2YbkFMN27uqAWqmWZmfj3CE1tF.jpg", + "backdropPath": "/sJh7EmHNjj6Wt2qgbNc5ig7cEJm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 28 + ], + "genres": [ + "Drama", + "Fantasy", + "Action" + ], + "releaseDate": "2023-08-10", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.823, + "voteCount": 111, + "popularity": 6.7998 + }, + { + "id": 1094605, + "title": "The Duel", + "originalTitle": "The Duel", + "overview": "When a friend group is torn apart by betrayal, they decide to settle their differences in the most old school of ways. Leaving their modern home of Los Angeles, they embark on a bizarre adventure that seemingly takes them back in time across an underground cave river. Cocaine. Existentialism. A four hundred and fifty pound pig. True love. Cosmic jokes. Mexico?", + "posterPath": "/dwh0Z4sxzItQpNVoPeevQqqNTqL.jpg", + "backdropPath": "/70lDh4u0mc44dBw661qWg1kwJmv.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-07-31", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.483, + "voteCount": 29, + "popularity": 6.7985 + }, + { + "id": 44896, + "title": "Rango", + "originalTitle": "Rango", + "overview": "When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.", + "posterPath": "/A5MP1guV8pbruieG0tnpPIbaJtt.jpg", + "backdropPath": "/mOtKQlXdL5J4lwqcSFlkZmgmFeZ.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 37, + 12 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Western", + "Adventure" + ], + "releaseDate": "2011-03-02", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 6875, + "popularity": 6.7969 + }, + { + "id": 36630, + "title": "Zandalee", + "originalTitle": "Zandalee", + "overview": "Bored with her marriage to burnt out poet turned corporate executive Thierry, Zandalee falls prey to an old friend of her husband, the manipulative and egotistical Johnny and becomes enmeshed in a sensual, passionate and destructive affair.", + "posterPath": "/sW7nX30z07kmmstuI9S9s5ZSSAb.jpg", + "backdropPath": "/lG236SGLln8fov2Przpbb8pL3Em.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 53 + ], + "genres": [ + "Drama", + "Romance", + "Thriller" + ], + "releaseDate": "1991-05-09", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 91, + "popularity": 6.7964 + }, + { + "id": 381356, + "title": "Five", + "originalTitle": "Five", + "overview": "A young man paying the rent for himself and his lifelong friends ends up flat-broke and resorts to selling marijuana to pay the bills – only to get caught up in the dangerous world of drugs.", + "posterPath": "/qs4tQK0gLpwNmz2gmCYZQ3RQSpr.jpg", + "backdropPath": "/o8Z7sdmZXAGYkLXoIn4tfTSu3Qw.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-03-30", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 7, + "voteCount": 1318, + "popularity": 6.7945 + }, + { + "id": 30508, + "title": "Berlin Calling", + "originalTitle": "Berlin Calling", + "overview": "A man tours clubs around the globe with his manager and girlfriend. On the eve of their largest album release he is admitted to a psychiatric clinic after overdosing at a gig.", + "posterPath": "/oxEZwuBATJbAdS2JVrALQDnP0Cu.jpg", + "backdropPath": "/8ZoW4hwuTWxKWDezkoUGBVvyxj5.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10402 + ], + "genres": [ + "Comedy", + "Drama", + "Music" + ], + "releaseDate": "2008-10-01", + "releaseYear": "2008", + "originalLanguage": "de", + "voteAverage": 6.8, + "voteCount": 351, + "popularity": 6.7943 + }, + { + "id": 1244953, + "title": "Trust", + "originalTitle": "Trust", + "overview": "A Hollywood starlet seeks refuge in a secluded Airbnb following a high-profile scandal, only to find herself at the mercy of hardened criminals on the hunt for a score.", + "posterPath": "/n9GS1mUAVMiC3gBn9rb8jrDoK4D.jpg", + "backdropPath": "/aJgTPBIkB5rovcF9FjUMl05W10D.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2025-08-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 59, + "popularity": 6.7935 + }, + { + "id": 298077, + "title": "Ambition", + "originalTitle": "Ambition", + "overview": "A young apprentice struggles to master nanotechnology on an alien world and prove herself to her enigmatic master. Will her herculean goals remain tantalizingly out of reach, or will she fulfill them and in the process, change life as we know it?", + "posterPath": "/42WGSYe1jVTf2EucWPaT1ykVW1V.jpg", + "backdropPath": "/wBAGBQ0Pp0iy9lmQQRry7b2NvIc.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 36, + 9648 + ], + "genres": [ + "Science Fiction", + "History", + "Mystery" + ], + "releaseDate": "2014-10-24", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 50, + "popularity": 6.7925 + }, + { + "id": 10836, + "title": "Dagon", + "originalTitle": "Dagon", + "overview": "A boating accident off the coast of Spain sends Paul and his girlfriend Barbara to the decrepit fishing village of Imboca. As night falls, people start to disappear and things not quite human start to appear. Paul is pursued by the entire town. Running for his life, he uncovers Imboca's secret..they worship Dagon, a monstrous god of the sea...and Dagon's unholy offspring are on the loose...", + "posterPath": "/8S648eMKObi8ERFS7cSYDocxSaZ.jpg", + "backdropPath": "/nO8lpaJLo1UVIXL7eM5ewwudvtY.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 53 + ], + "genres": [ + "Fantasy", + "Horror", + "Thriller" + ], + "releaseDate": "2001-10-12", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.153, + "voteCount": 453, + "popularity": 6.7919 + }, + { + "id": 1083412, + "title": "On the Pulse", + "originalTitle": "Vivants", + "overview": "Gabrielle has just joined a prestigious news program. With no formal training, she must prove herself and find her place among an experienced team of special correspondents. In the heat of the action, she will learn the language and the code of these reporters, who are always passionate, often funny, and sometimes scarred by life and their profession. And then there’s Vincent, the program’s editor-in-chief, who she can’t help challenging...", + "posterPath": "/yuAfn2ZxfXP9GHpdFqvziWVYWXA.jpg", + "backdropPath": "/frKiawSOkx1M2tyOWxGzEikPVw4.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-02-14", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 5.582, + "voteCount": 67, + "popularity": 6.7915 + }, + { + "id": 23629, + "title": "Sucker Punch", + "originalTitle": "Sucker Punch", + "overview": "A young woman, institutionalized by her abusive stepfather, retreats into a vivid fantasy world where she envisions a plan to escape. Gathering a group of fellow inmates, she embarks on a quest to collect five mystical items, blurring the lines between reality and imagination.", + "posterPath": "/jtaUDnvIiHUd2ranDcjB5AbPx6o.jpg", + "backdropPath": "/cnWVCPDrX29kX7AwA9sfNlLx5vn.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 53 + ], + "genres": [ + "Action", + "Fantasy", + "Thriller" + ], + "releaseDate": "2011-03-24", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 4926, + "popularity": 6.7912 + }, + { + "id": 13990, + "title": "The Wackness", + "originalTitle": "The Wackness", + "overview": "Set in New York City in the sweltering summer, The Wackness tells the story of a troubled teenage drug dealer, who trades pot for therapy sessions with a drug-addled psychiatrist. Things get more complicated when he falls for one of his classmates, who just happens to be the doctor's daughter. This is a coming-of-age story about sex, drugs, music and what it takes to be a man.", + "posterPath": "/gmtlqHZs8YBXcpMw4BgA3SGJfg8.jpg", + "backdropPath": "/5GlBEqiG0vpnnRWc7Vi5O4ao6Yi.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "2008-07-03", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.412, + "voteCount": 300, + "popularity": 6.7911 + }, + { + "id": 36102, + "title": "The Swindle", + "originalTitle": "Il bidone", + "overview": "Aging small-time conman Augusto works with two younger men: Roberto, who desires to become the Italian Johnny Ray, and Carlo, nicknamed Picasso. Through a series of mishaps and personal entanglements, things go badly for Augusto.", + "posterPath": "/kpo4sZyeOX3dIY0l8uZ2f214mK8.jpg", + "backdropPath": "/tzb3epsqaSJMiBwKtK4GtW25ryq.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1955-10-07", + "releaseYear": "1955", + "originalLanguage": "it", + "voteAverage": 7.306, + "voteCount": 211, + "popularity": 6.7908 + }, + { + "id": 1155739, + "title": "3391 Kilometers", + "originalTitle": "3391 Kilometre", + "overview": "Would you fall in love with a person whose voice you haven't heard for months, whose face you haven't touched, you can't smell, you don't even have the chance to pass by the same street, you can't even be in the same photo, who is miles away from you, even by seas, islands and cities?", + "posterPath": "/wQp5H2QxaTVdyYZhcDMSk4tdAdb.jpg", + "backdropPath": "/oUsHMyRdKX0RqApHeC0Dt2h07o3.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2024-01-12", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 6, + "voteCount": 15, + "popularity": 6.7907 + }, + { + "id": 779782, + "title": "The School for Good and Evil", + "originalTitle": "The School for Good and Evil", + "overview": "Best friends Sophie and Agatha navigate an enchanted school for young heroes and villains — and find themselves on opposing sides of the battle between good and evil.", + "posterPath": "/6oZeEu1GDILdwezmZ5e2xWISf1C.jpg", + "backdropPath": "/tSxbUnrnWlR5dQvUgqMI7sACmFD.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 12, + 18 + ], + "genres": [ + "Fantasy", + "Comedy", + "Adventure", + "Drama" + ], + "releaseDate": "2022-10-19", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 1330, + "popularity": 6.7904 + }, + { + "id": 271983, + "title": "A Man Amidst Bees", + "originalTitle": "Entre Abelhas", + "overview": "Bruno is a young film editor who has just broke up his marriage with Regina, and returned living in his mother's house. Drowned in deep sorrow, something very weird happens in his life: people around him are gradually disappearing. But only for him. Some kind of blindness.", + "posterPath": "/dGZNN70ffCyOsYqqMTYFeMySxjB.jpg", + "backdropPath": "/bPuFzw67NRWYMP6LvjY6s0nHdUK.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 14 + ], + "genres": [ + "Comedy", + "Drama", + "Fantasy" + ], + "releaseDate": "2015-04-30", + "releaseYear": "2015", + "originalLanguage": "pt", + "voteAverage": 6.807, + "voteCount": 119, + "popularity": 6.7903 + }, + { + "id": 9340, + "title": "The Goonies", + "originalTitle": "The Goonies", + "overview": "Young teen Mikey Walsh and his friends set off on a quest to find Pirate One-Eyed Willie's treasure in hopes of saving their homes from demolition.", + "posterPath": "/eBU7gCjTCj9n2LTxvCSIXXOvHkD.jpg", + "backdropPath": "/5qsyqA7FeYRymBmNbPBqBgqWPO4.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 10751 + ], + "genres": [ + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "1985-06-07", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 6006, + "popularity": 6.7903 + }, + { + "id": 9515, + "title": "The Matador", + "originalTitle": "The Matador", + "overview": "The life of Danny Wright, a salesman forever on the road, veers into dangerous and surreal territory when he wanders into a Mexican bar and meets a mysterious stranger, Julian, who's very likely a hit man. Their meeting sets off a chain of events that will change their lives forever, as Wright is suddenly thrust into a far-from-mundane existence that he takes to surprisingly well … once he gets acclimated to it.", + "posterPath": "/oJnlAGmrhsg4QrlVKGgP91J6WPu.jpg", + "backdropPath": "/jBxIfffFWY69oAx6CLQtKZ3xtYO.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2005-05-12", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 497, + "popularity": 6.79 + }, + { + "id": 474764, + "title": "The Lodge", + "originalTitle": "The Lodge", + "overview": "When a father is forced to abruptly depart for work, he leaves his children, Aidan and Mia, at their holiday home in the care of his new girlfriend, Grace. Isolated and alone, a blizzard traps them inside the lodge as terrifying events summon specters from Grace's dark past.", + "posterPath": "/yake2myhbW7c6dKbmwYDy1i40bm.jpg", + "backdropPath": "/2hV2clTCW55dwTLCZcOvvidjjrV.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 9648, + 53 + ], + "genres": [ + "Horror", + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2020-01-16", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.111, + "voteCount": 1348, + "popularity": 6.7886 + }, + { + "id": 444291, + "title": "I Got Life!", + "originalTitle": "Aurore", + "overview": "Aurore has separated, just lost her job, and learns that she is going to be a grandmother.", + "posterPath": "/gxMK7webO1uaoMWgGDfCqlbnLpr.jpg", + "backdropPath": "/dJILgUxIis6x8JwmLhHKC4voFSz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2017-04-26", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 137, + "popularity": 6.7883 + }, + { + "id": 360339, + "title": "Eden", + "originalTitle": "Eden", + "overview": "After their plane crashes off the coast of a deserted Pacific island, the surviving members of an American soccer team find themselves in the most dire of circumstances with limited resources, dwindling food supply and no rescue coming any time soon. Team spirit evaporates as disagreements cause the group to separate into factions - a violent one lead by an unbalanced ruler, and a compassionate one led by a selfless player.", + "posterPath": "/nVtCuhdg1mYjMMFdUKqijgrAWAS.jpg", + "backdropPath": "/xlkojbJMcuEPoZlBEciH36wQcze.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2015-09-18", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.091, + "voteCount": 66, + "popularity": 6.7872 + }, + { + "id": 298830, + "title": "The Dorm", + "originalTitle": "The Dorm", + "overview": "Vivian begins college as a shy, self-consciousness freshman, but she begins a complete transformation after becoming a dorm mate of the popular Sarah.", + "posterPath": "/17MnEeivM6yqCFe30U7ITpH8ep7.jpg", + "backdropPath": "/mIf7LH1YxZXfFZcYwh3KYwwadX3.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 10770, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "TV Movie", + "Mystery" + ], + "releaseDate": "2014-10-26", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 27, + "popularity": 6.7872 + }, + { + "id": 21407, + "title": "The Collector", + "originalTitle": "The Collector", + "overview": "Desperate to repay his debt to his ex-wife, an ex-con plots a heist at his new employer's country home, unaware that a second criminal has also targeted the property, and rigged it with a series of deadly traps.", + "posterPath": "/e33HSokiAxhj8ptpAr2xAU4jnd8.jpg", + "backdropPath": "/pEfM9UCuCwoUtXWm8pZab7uQTuu.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2009-07-09", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.613, + "voteCount": 1588, + "popularity": 6.7867 + }, + { + "id": 259611, + "title": "Frontera", + "originalTitle": "Frontera", + "overview": "After crossing the border illegally for work, Miguel, a hard-working father and devoted husband, finds himself wrongfully accused of murdering a former sheriff’s wife. After learning of his imprisonment, Miguel’s pregnant wife tries to come to his aid and lands in the hands of corrupt coyotes who hold her for ransom. Dissatisfied with the police department’s investigation, the former sheriff tries to uncover the truth about his wife’s death and discovers disturbing evidence that will destroy one family’s future, or tear another’s apart.", + "posterPath": "/rjdJN48tBaLB7HdmyzBnlypXvPj.jpg", + "backdropPath": "/lful604LALERvWWvGGziMngzNUa.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "2014-07-31", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 200, + "popularity": 6.786 + }, + { + "id": 11694, + "title": "Cat Ballou", + "originalTitle": "Cat Ballou", + "overview": "A woman seeking revenge for her murdered father hires a famous gunman, but he's very different from what she expects.", + "posterPath": "/3WJmB1F5z4mLwt84i1FuIrSYEe.jpg", + "backdropPath": "/vITHhBDV2t4QIT9UBcLl4zEa7Zy.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 35 + ], + "genres": [ + "Western", + "Comedy" + ], + "releaseDate": "1965-06-24", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 6.401, + "voteCount": 269, + "popularity": 6.786 + }, + { + "id": 18446, + "title": "Swing Shift", + "originalTitle": "Swing Shift", + "overview": "In 1941 America, Kay and her husband are happy enough until he enlists after Pearl Harbor. Against his wishes, she takes a job at the local aircraft plant where she meets Hazel, the singer from across the way. The two soon become firm friends and with the other girls become increasingly expert workers. As the war drags on, Kay finally dates her trumpet-playing foreman and life gets more complicated.", + "posterPath": "/1Q8YQ35rqzJmZ6tQDPXkT9WATZQ.jpg", + "backdropPath": "/25IS5nIui0pzRFrDMHGOm5E9uQP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10752 + ], + "genres": [ + "Drama", + "Romance", + "War" + ], + "releaseDate": "1984-04-13", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 83, + "popularity": 6.7854 + }, + { + "id": 993145, + "title": "Bullet Proof", + "originalTitle": "Bullet Proof", + "overview": "The Thief pulls off the robbery of a lifetime when he robs the psychotic drug lord, Temple. The plan goes off without a hitch until the Thief discovers a stowaway in his getaway car - Temple's pregnant wife, Mia.", + "posterPath": "/v0AvbfHcoHKGfAgfsEMGGN4Myw.jpg", + "backdropPath": "/5EzpTMkpg3DecNoP2DAOBlh0Fi6.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2022-08-19", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.348, + "voteCount": 69, + "popularity": 6.7852 + }, + { + "id": 10376, + "title": "The Legend of 1900", + "originalTitle": "La leggenda del pianista sull'oceano", + "overview": "The story of a virtuoso piano player who lives his entire life aboard an ocean liner. Born and raised on the ship, 1900 learned about the outside world through interactions with passengers, never setting foot on land, even for the love of his life. Years later, the ship may be destroyed, and a former band member fears that 1900 may still be aboard, willing to go down with the ship.", + "posterPath": "/iOcbJ5pxokOPDRgieVDbsFMrCc6.jpg", + "backdropPath": "/muSeX7fnNw0pv4zHK7RSwZln6Hk.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "1998-10-28", + "releaseYear": "1998", + "originalLanguage": "it", + "voteAverage": 8.247, + "voteCount": 2367, + "popularity": 6.7849 + }, + { + "id": 22683, + "title": "Gifted Hands: The Ben Carson Story", + "originalTitle": "Gifted Hands: The Ben Carson Story", + "overview": "Gifted Hands: The Ben Carson Story is a movie based on the life story of world-renowned neurosurgeon Ben Carson from 1961 to 1987.", + "posterPath": "/4NxxtiqezjUmUxoDTOjO5FeJvFt.jpg", + "backdropPath": "/xkaeirZBfs9nfz2TJoFHxyOLCcC.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-02-07", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 758, + "popularity": 6.7834 + }, + { + "id": 38575, + "title": "The Karate Kid", + "originalTitle": "The Karate Kid", + "overview": "12-year-old Dre Parker could've been the most popular kid in Detroit, but his mother's latest career move has landed him in China. Dre immediately falls for his classmate Mei Ying but the cultural differences make such a friendship impossible. Even worse, Dre's feelings make him an enemy of the class bully, Cheng. With no friends in a strange land, Dre has nowhere to turn but maintenance man Mr. Han, who is a kung fu master. As Han teaches Dre that kung fu is not about punches and parries, but maturity and calm, Dre realizes that facing down the bullies will be the fight of his life.", + "posterPath": "/b1RBy3l297N0c7PHjlz35cClWju.jpg", + "backdropPath": "/v8DepuF6gizphLzIyNZeQiB0hij.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18, + 10751 + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "Family" + ], + "releaseDate": "2010-06-10", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 6378, + "popularity": 6.7831 + }, + { + "id": 455476, + "title": "Knights of the Zodiac", + "originalTitle": "Knights of the Zodiac", + "overview": "When a headstrong street orphan, Seiya, in search of his abducted sister unwittingly taps into hidden powers, he discovers he might be the only person alive who can protect a reincarnated goddess, sent to watch over humanity. Can he let his past go and embrace his destiny to become a Knight of the Zodiac?", + "posterPath": "/qW4crfED8mpNDadSmMdi7ZDzhXF.jpg", + "backdropPath": "/fLEsa5SKTFgrdUGMHbsWomniak6.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 12, + 878 + ], + "genres": [ + "Fantasy", + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2023-04-27", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.312, + "voteCount": 1248, + "popularity": 6.7819 + }, + { + "id": 3981, + "title": "What Women Want", + "originalTitle": "What Women Want", + "overview": "Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women's thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.", + "posterPath": "/eqkBEMDk1316Yx5wVoabWY07JAi.jpg", + "backdropPath": "/xXHtSqFx8mLjzNGX9oCKQEx2yTa.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2000-12-15", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.445, + "voteCount": 4187, + "popularity": 6.7819 + }, + { + "id": 37265, + "title": "All Ladies Do It", + "originalTitle": "Così fan tutte", + "overview": "After five years of marriage, Diana discovers the joys of adultery, claiming that she can save her failing relationship through betrayal.", + "posterPath": "/fVLwjwThhwvxSNGYu2rFO47yaQ9.jpg", + "backdropPath": "/hpcrX3mqu5WGM9r5aDlukU86ucS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1992-02-21", + "releaseYear": "1992", + "originalLanguage": "it", + "voteAverage": 5, + "voteCount": 407, + "popularity": 6.7817 + }, + { + "id": 32305, + "title": "Simon Sez", + "originalTitle": "Simon Sez", + "overview": "A tattooed Interpol agent helps an old classmate find the kidnapped daughter of a computer software tycoon.", + "posterPath": "/uJG7oSRQxacXC2GvzPF2nDoWXIW.jpg", + "backdropPath": "/gFDmoSH4tpe911zZD9iU5ke1ZZi.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Thriller" + ], + "releaseDate": "1999-09-24", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 2.753, + "voteCount": 75, + "popularity": 6.7812 + }, + { + "id": 55784, + "title": "Grizzly", + "originalTitle": "Grizzly", + "overview": "An eighteen-foot grizzly bear figures out that humans make for a tasty treat. As a park ranger tries rallying his men to bring about the bear's capture or destruction, his efforts are thwarted by the introduction of dozens of drunken hunters into the area.", + "posterPath": "/sqZK6sL7T2agJeeiM7jWvBxmDgB.jpg", + "backdropPath": "/bEQvtYBX4en0TpMJ8qItNu4cZPk.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 12, + 53 + ], + "genres": [ + "Horror", + "Adventure", + "Thriller" + ], + "releaseDate": "1976-05-21", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 5.078, + "voteCount": 148, + "popularity": 6.7809 + }, + { + "id": 1051896, + "title": "Arcadian", + "originalTitle": "Arcadian", + "overview": "In the near future, on a decimated Earth, Paul and his twin sons face terror at night when ferocious creatures awaken. When Paul is nearly killed, the boys come up with a plan for survival, using everything their father taught them to keep him alive.", + "posterPath": "/h4T8Xeydkw53h9uIbulYsss25UF.jpg", + "backdropPath": "/9s9o9RT9Yj6nDuRJjnJm78WFoFl.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 53 + ], + "genres": [ + "Action", + "Horror", + "Thriller" + ], + "releaseDate": "2024-04-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.047, + "voteCount": 779, + "popularity": 6.7797 + }, + { + "id": 373471, + "title": "The Land", + "originalTitle": "The Land", + "overview": "Four teenage boys devote their summer to escaping the streets of Cleveland, Ohio, by pursuing a dream life of professional skateboarding. But when they get caught in the web of the local queenpin, their motley brotherhood is tested, threatening to make this summer their last.", + "posterPath": "/oKcPcffgFfEDsEGVUq2eVqvEQnb.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-07-29", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 28, + "popularity": 6.777 + }, + { + "id": 47645, + "title": "Locked Up", + "originalTitle": "Gefangen", + "overview": "Dennis is a new inmate. Mike is an older black inmate. Together the two face hostile prison officals and inmates in their attempts to become a loving couple.", + "posterPath": "/wT84VDo47hvfQc8NtQhJ2XnMfRW.jpg", + "backdropPath": "/i9l8ByQq2CmQ2pqjtrT8JkNJyN7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 80 + ], + "genres": [ + "Drama", + "Romance", + "Crime" + ], + "releaseDate": "2005-05-26", + "releaseYear": "2005", + "originalLanguage": "de", + "voteAverage": 4.803, + "voteCount": 33, + "popularity": 6.7764 + }, + { + "id": 437291, + "title": "Savage Dog", + "originalTitle": "Savage Dog", + "overview": "A story set in Indochina in 1959, a lawless land controlled by the criminal class: Vietnamese warlords and European war-criminals. Den-Dhin-Chan Labor Camp is run by four such dangerous men. The worst prison in the land, it is here that an Irish, former-champion boxer Martin Tillman has made a name for himself fighting tournaments, on which wealthy criminals gamble in high stakes events. When Tillman is due for release, he just wants to return home, but the corrupt forces running the jail will do everything in their power to keep him locked down. When all that Tillman holds dear is taken away in a vicious act of violence, he is forced to confront the men responsible and take his revenge. The birth of a legend.", + "posterPath": "/yY2MV8dYotYtLYMiTcMvdxpNX5I.jpg", + "backdropPath": "/4RFYwgJmo9dTnJ6AUNE3l7MFFLz.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2017-08-04", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 126, + "popularity": 6.7759 + }, + { + "id": 470610, + "title": "Endless", + "originalTitle": "Endless", + "overview": "When madly in love high school graduates Riley and Chris are separated by a tragic car accident, Riley blames herself for her boyfriend's death while Chris is stranded in limbo. Miraculously, the two find a way to connect. In a love story that transcends life and death, both Riley and Chris are forced to learn the hardest lesson of all: letting go.", + "posterPath": "/1ZViaX2oRnI0uM3Gf87Z7eCZ3hE.jpg", + "backdropPath": "/o71u8V1u8uB4mL1kZjMjBGQU14M.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 14 + ], + "genres": [ + "Romance", + "Drama", + "Fantasy" + ], + "releaseDate": "2020-04-09", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 216, + "popularity": 6.7747 + }, + { + "id": 214074, + "title": "October November", + "originalTitle": "Oktober November", + "overview": "Director Gotz Spielmann follows his acclaimed thriller Revanche with this visually captivating character study, in which a family reunion at a mountainside inn lays bare old wounds and reveals long-held secrets.", + "posterPath": "/4FyYNcu4KvtYrp5lPSAgzwrs0Wn.jpg", + "backdropPath": "/eiqMu2OMYDM9X7LS1fHNASha7nC.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-03-25", + "releaseYear": "2014", + "originalLanguage": "de", + "voteAverage": 5.921, + "voteCount": 19, + "popularity": 6.7744 + }, + { + "id": 19794, + "title": "Labor Pains", + "originalTitle": "Labor Pains", + "overview": "A young woman pretends to be pregnant in order to avoid being fired from her job. When that gets her a bunch of special treatment by everyone involved in her life, she tries to keep up the lie for nine months.", + "posterPath": "/mIjFpM6pPaGAXSaf2rhvxdj9uhV.jpg", + "backdropPath": "/6epafgrlSnOJrNakHgY7pbYr513.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-06-19", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 443, + "popularity": 6.7738 + }, + { + "id": 11652, + "title": "Invincible", + "originalTitle": "Invincible", + "overview": "Inspired by the true story of Vince Papale, a man with nothing to lose who ignored the staggering odds and made his dream come true. When the coach of Papale's beloved hometown football team hosted an unprecedented open tryout, the public consensus was that it was a waste of time – no one good enough to play professional football was going to be found this way.", + "posterPath": "/oEaUMn5POAiMLnU6hKOBKoZbDpo.jpg", + "backdropPath": "/tw9FDRM2x6A85JnU88dHKWsf5o7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2006-08-25", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.014, + "voteCount": 991, + "popularity": 6.7731 + }, + { + "id": 1271, + "title": "300", + "originalTitle": "300", + "overview": "Based on Frank Miller's graphic novel, \"300\" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.", + "posterPath": "/h7Lcio0c9ohxPhSZg42eTlKIVVY.jpg", + "backdropPath": "/e78Lby7BSFnr8IBDg81sGlYZUCH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 10752 + ], + "genres": [ + "Action", + "Adventure", + "War" + ], + "releaseDate": "2007-03-07", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.192, + "voteCount": 14333, + "popularity": 6.7721 + }, + { + "id": 539565, + "title": "Zola", + "originalTitle": "Zola", + "overview": "A waitress agrees to accompany an exotic dancer, her put-upon boyfriend, and her mysterious and domineering roommate on a road trip to Florida to seek their fortune at a high-end strip club.", + "posterPath": "/bJLCPROp9bmNndurwZpVnOioVpB.jpg", + "backdropPath": "/zL7CozbpAbGSdhBsuTI847tu5Fo.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2021-06-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 256, + "popularity": 6.7718 + }, + { + "id": 10876, + "title": "Quills", + "originalTitle": "Quills", + "overview": "In early 19th-century France, the Marquis de Sade is confined to an asylum where his forbidden writings continue to circulate beyond its walls. As the authorities tighten control, a clash unfolds between the Marquis’ unyielding imagination, the reformist ideals of the Abbé in charge, and the repressive measures of a doctor sent to silence him. Desire, power, and censorship collide in a battle over freedom of expression.", + "posterPath": "/AvGdw3BpvJV2wHmK2qY0N7XHqET.jpg", + "backdropPath": "/o4p4joAAFETuUFCHJe2XYJcnCdi.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2000-11-22", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.137, + "voteCount": 694, + "popularity": 6.771 + }, + { + "id": 23544, + "title": "The Point", + "originalTitle": "The Point", + "overview": "Years ago, there was a place called The Land of Point, because everything in The Land of Point had one: the barns, the houses, the cars, everything, even the people. Everyone in The Land of Point had a point at the top of its head. Everyone, that is, except Oblio, who was born round-headed. Since he had no point, Oblio, along with his trusty dog, Arrow, was banished to the Pointless Forest. Join them to see what wonders await these two intrepid travelers as they make their way on their amazing, song-filled journey of discovery!", + "posterPath": "/aKeEBYEvbpGarecszr4MyOxgjPo.jpg", + "backdropPath": "/m8RL50mhMJv2aXAQYIS3K4T490K.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 12 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Adventure" + ], + "releaseDate": "1971-02-02", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 63, + "popularity": 6.7694 + }, + { + "id": 1299372, + "title": "The Wailing", + "originalTitle": "El llanto", + "overview": "Andrea, in search of her biological family, feels stalked by an invisible threat. Other women before them have suffered the same fate. Twenty years earlier, on the other side of the world, Camille, fascinated by Marie, tries to warn her of a threat hanging over her.", + "posterPath": "/wB5fVj1Se9TFt9q1CHAtoPiuMyZ.jpg", + "backdropPath": "/77kMh12hJtPI8pHQZfyn6TtzfSx.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-10-25", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.011, + "voteCount": 92, + "popularity": 6.7692 + }, + { + "id": 1276035, + "title": "Beacon", + "originalTitle": "Beacon", + "overview": "After an ambitious solo trip leaves her shipwrecked on a remote island, a young sailor is rescued by its lone inhabitant: a lighthouse keeper. As the walls of reality begin to vanish and the trust between them unravels, survival becomes a test of grueling proportions.", + "posterPath": "/4AB3bHhsNBpnhMDThJP6RI0tery.jpg", + "backdropPath": "/4gwrR8kIHIkhOd79Su59uPOExyC.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2024-06-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.487, + "voteCount": 38, + "popularity": 6.7668 + }, + { + "id": 65588, + "title": "Killing Birds", + "originalTitle": "Killing Birds", + "overview": "A group of students goes into the woods to study birds, and soon the dead begin to rise to devour the living.", + "posterPath": "/khdLWItOdgfrvCCpNq2hA7ziXca.jpg", + "backdropPath": "/vypveK2NHcpzQOON33xKtYeOnbX.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1988-08-19", + "releaseYear": "1988", + "originalLanguage": "it", + "voteAverage": 3.5, + "voteCount": 50, + "popularity": 6.7653 + }, + { + "id": 736228, + "title": "Electric Jesus", + "originalTitle": "Electric Jesus", + "overview": "Alabama preacher’s daughter runs off with a touring Xian hair metal band during the summer of 1986.", + "posterPath": "/wujSil05Q3EWWqcOJS9KisEWd2J.jpg", + "backdropPath": "/iqhAYNrDAWhG5kQxtLUlLXzkf5T.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 35 + ], + "genres": [ + "Music", + "Comedy" + ], + "releaseDate": "2020-10-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 13, + "popularity": 6.7646 + }, + { + "id": 369892, + "title": "CSI: Immortality", + "originalTitle": "CSI: Immortality", + "overview": "An explosion inside a casino brings Catherine Willows back to Las Vegas to investigate. And when the crime is tied to Lady Heather, Gil Grissom is brought back as well to aid the investigation. This is a 2 part TV Special. Series Finale", + "posterPath": "/4HeYrGHsBNrgxYChaztHKrfzy03.jpg", + "backdropPath": "/8v7Hxt2Gc3yMzoctRHBe9ZJYfcU.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 10770 + ], + "genres": [ + "Crime", + "Mystery", + "TV Movie" + ], + "releaseDate": "2015-09-27", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.194, + "voteCount": 67, + "popularity": 6.7629 + }, + { + "id": 28667, + "title": "The Gorgon", + "originalTitle": "The Gorgon", + "overview": "In the early 20th century a village experienced a series of inexplicable murders. All the victims were young men who had been turned to stone. The perpetrator of these deaths was a being so repulsive that she transformed the onlooker using the power of her deadly stare. Much of the time the creature took the form of a beautiful and seductive woman, but during periods of the full moon she becomes a living horror, vicious and deadly. A professor has come to investigate the deaths, bringing with him his beautiful assistant whose knowledge of the Gorgon is more intimate than anyone would ever realise.", + "posterPath": "/yk0hJB3hy3o6cAzv5tjcPoKQd9p.jpg", + "backdropPath": "/9wHU06KHxsbfZXFYP0CfZJlLyDr.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14 + ], + "genres": [ + "Horror", + "Fantasy" + ], + "releaseDate": "1964-10-18", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 160, + "popularity": 6.7623 + }, + { + "id": 9882, + "title": "The Siege", + "originalTitle": "The Siege", + "overview": "The secret US abduction of a suspected terrorist from his Middle East homeland leads to a wave of terrorist attacks in New York. An FBI senior agent and his team attempt to locate and decommission the enemy cells, but must also deal with an Army General gone rogue and a female CIA agent of uncertain loyalties.", + "posterPath": "/gbeeWu8rYaIYMyq9ayN1AepjNxP.jpg", + "backdropPath": "/c2B8gl2ZLbelWxS0ZODPKGJxdWX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53, + 80 + ], + "genres": [ + "Drama", + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "1998-11-06", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 1418, + "popularity": 6.7612 + }, + { + "id": 29817, + "title": "Fairy Tales", + "originalTitle": "Fairy Tales", + "overview": "On his twenty-first birthday, the Prince goes on a quest that takes him across the land searching for the one woman that gets him sexually excited, Princess Sleeping Beauty.", + "posterPath": "/jhxka3yzJoany3DXIYs7EYDNbRk.jpg", + "backdropPath": "/w1igYrjpz11XZ2iB57nG0SPezEG.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 10749 + ], + "genres": [ + "Adventure", + "Comedy", + "Romance" + ], + "releaseDate": "1978-08-01", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 49, + "popularity": 6.7605 + }, + { + "id": 10494, + "title": "Perfect Blue", + "originalTitle": "PERFECT BLUE", + "overview": "Rising pop star Mima quits singing to pursue a career as an actress. After she takes up a role on a popular detective show, her handlers and collaborators begin turning up murdered. Harboring feelings of guilt and haunted by visions of her former self, Mima's reality and fantasy meld into a frenzied paranoia.", + "posterPath": "/6WTiOCfDPP8XV4jqfloiVWf7KHq.jpg", + "backdropPath": "/1YRtgjLb5xxUb2rsNRnr54Oc0B2.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 53 + ], + "genres": [ + "Animation", + "Thriller" + ], + "releaseDate": "1998-02-28", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.297, + "voteCount": 2991, + "popularity": 6.7604 + }, + { + "id": 47796, + "title": "Mamma Roma", + "originalTitle": "Mamma Roma", + "overview": "After years spent working as a prostitute in her Italian village, middle-aged Mamma Roma has saved enough money to buy herself a fruit stand so that she can have a respectable middle-class life and reestablish contact with the 16-year-old son she abandoned when he was an infant. But her former pimp threatens to expose her sordid past, and her troubled son seems destined to fall into a life of crime and violence.", + "posterPath": "/aMPxSiapchjZb73Lz7yNMdTi1cc.jpg", + "backdropPath": "/4OqoSolfhNesDAfv2zluIDVXiPR.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1962-09-22", + "releaseYear": "1962", + "originalLanguage": "it", + "voteAverage": 7.87, + "voteCount": 424, + "popularity": 6.7599 + }, + { + "id": 983768, + "title": "Black Warrant", + "originalTitle": "Black Warrant", + "overview": "A semi-retired special ops assassin and a DEA agent cross paths on separate missions to stop a cyber terrorist organization that has built a dangerous machine threatening to attack the power grid and bring catastrophe to the world.", + "posterPath": "/A7vFFZHbDyxfjuYKzJwruTnwwjT.jpg", + "backdropPath": "/uNK5dHo6HJpwk1BPcDHHyvX7ZLz.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 9648, + 53 + ], + "genres": [ + "Action", + "Mystery", + "Thriller" + ], + "releaseDate": "2022-12-09", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 56, + "popularity": 6.7591 + }, + { + "id": 976720, + "title": "Vesper", + "originalTitle": "Vesper", + "overview": "After the collapse of Earth's ecosystem, Vesper, a 13-year-old girl struggling to survive with her paralyzed Father, meets a mysterious Woman with a secret that forces Vesper to use her wits, strength and bio-hacking abilities to fight for the possibility of a future.", + "posterPath": "/etvK8ni1adjXU8obDpdUxTTQT6n.jpg", + "backdropPath": "/uczbEzBD4jJ7EYxySarXeh2liF5.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 12, + 14 + ], + "genres": [ + "Science Fiction", + "Drama", + "Adventure", + "Fantasy" + ], + "releaseDate": "2022-08-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.321, + "voteCount": 655, + "popularity": 6.7589 + }, + { + "id": 2486, + "title": "Eragon", + "originalTitle": "Eragon", + "overview": "In his homeland of Alagaesia, a farm boy happens upon a dragon's egg -- a discovery that leads him on a predestined journey where he realized he's the one person who can defend his home against an evil king.", + "posterPath": "/mNu6QLUnKqPIjRA3pgEb5dkJye6.jpg", + "backdropPath": "/2GB3sdsWn3drlkwGMMNQ3KFNbIV.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 12, + 10751 + ], + "genres": [ + "Fantasy", + "Action", + "Adventure", + "Family" + ], + "releaseDate": "2006-12-14", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.127, + "voteCount": 3379, + "popularity": 6.7588 + }, + { + "id": 1147400, + "title": "Miraculous World: Paris, Tales of Shadybug and Claw Noir", + "originalTitle": "Miraculous World : Paris, Les Aventures de Toxinelle et Griffe Noire", + "overview": "Miraculous holders from another world appear in Paris. They come from a parallel universe where everything is reversed: the holders of Ladybug and Black Cat Miraculouses, Shadybug and Claw Noir, are the bad guys, and the holder of the Butterfly Miraculous, Betterfly, is a superhero. Ladybug and Cat Noir will have to help Betterfly counter the attacks of their evil doubles and prevent them from seizing the Butterfly Miraculous. Can our heroes also help Betterfly make Shadybug and Claw Noir better people?", + "posterPath": "/nydROKumZe9oFZNiSn792MDDA1v.jpg", + "backdropPath": "/hU1Q9YVzdYhokr8a9gLywnSUMlN.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14, + 10751, + 10770 + ], + "genres": [ + "Animation", + "Action", + "Fantasy", + "Family", + "TV Movie" + ], + "releaseDate": "2023-10-21", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 7.3, + "voteCount": 617, + "popularity": 6.758 + }, + { + "id": 1235431, + "title": "Oshi no Ko -The Final Act-", + "originalTitle": "【推しの子】-The Final Act-", + "overview": "Goro is a gynecologist and idol fan who’s in shock after his favorite star, Ai, announces an impromptu hiatus. Little does Goro realize that he’s about to forge a bond with her that defies all common sense! Lies are an idol’s weapon!", + "posterPath": "/29BjXB8dPvLvJJgZFetd8PvwYiw.jpg", + "backdropPath": "/cb1hZXieb4npx0F2K4yL1WL6NQQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 14 + ], + "genres": [ + "Drama", + "Music", + "Fantasy" + ], + "releaseDate": "2024-12-20", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 10, + "popularity": 6.7578 + }, + { + "id": 32071, + "title": "War Hunt", + "originalTitle": "War Hunt", + "overview": "Dispatched to the front lines during the Korean War, an idealistic American soldier discovers the horrors of combat and comes at odds with a psychopathic member of his platoon.", + "posterPath": "/31b3W1v8MOeOpYuk3dBSXFNpiHG.jpg", + "backdropPath": "/oDkBxSBH3zPvcVjkFb1Nn3Xx3EL.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "1962-05-01", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 23, + "popularity": 6.7578 + }, + { + "id": 16174, + "title": "Snow Queen", + "originalTitle": "Snow Queen", + "overview": "Since a bitter winter storm stole the life of Gerda's mother, she and her father have sadly continued to run the remote hotel they call home. Lonely and isolated, Gerda's only joy is Kai, the handsome bellboy. A mysterious guest with an icy stare arrives at the hotel one night, wrapped in fur and diamonds. By daybreak, the \"Snow Queen\" has vanished with Kai! Gerda embarks on a journey of morphing seasons, fantastical creatures, and long-frozen mysteries in a desperate quest to find her stolen love.", + "posterPath": "/qufo7G0OTQs1hMtO7B5axnCdm4E.jpg", + "backdropPath": "/cHSWE4nW0VyoTDHGgTEwFIDuEUq.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14, + 878, + 10770 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy", + "Science Fiction", + "TV Movie" + ], + "releaseDate": "2002-12-07", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.95, + "voteCount": 74, + "popularity": 6.7577 + }, + { + "id": 530023, + "title": "Blue Kids", + "originalTitle": "Blue Kids", + "overview": "A brother and a sister live on the borderline between awareness of their actions and total unconsciousness, until they commit a sin from which there is no return.", + "posterPath": "/4SLZh0E5TEmggYHy5ciF3zRdYsO.jpg", + "backdropPath": "/hqfheJFTQhK3vEQlclFlJ490aJR.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-06-14", + "releaseYear": "2018", + "originalLanguage": "it", + "voteAverage": 4.808, + "voteCount": 13, + "popularity": 6.7558 + }, + { + "id": 67753, + "title": "Heartbeat", + "originalTitle": "Le Schpountz", + "overview": "A pompous grocer’s assistant in Marseille annoys a visiting film crew so much that they prank him with a phony acting contract; believing it to be real, the “schpountz” heads to Paris for his new career.", + "posterPath": "/434zwQQAKAGzVL7Lr1nEHQtQUgy.jpg", + "backdropPath": "/lZxHykSrsHepw9AApsvMDUJ9U3d.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1938-04-15", + "releaseYear": "1938", + "originalLanguage": "fr", + "voteAverage": 6.867, + "voteCount": 49, + "popularity": 6.7553 + }, + { + "id": 1079310, + "title": "Holy Cow", + "originalTitle": "Vingt Dieux", + "overview": "In the western part of the French Alps:\r After the drunk driving death of his father, 18-year-old Totone must look after his younger sister. He pursues a €30k Comté cheese award he has no hope of winning. Good thing Marie-Lise takes a liking for him!", + "posterPath": "/k4LIwOO1GvvHcJOHXsynZsQrNYe.jpg", + "backdropPath": "/AllcXFGjhy3NbZSLCnb55LFlNQo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-12-11", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.97, + "voteCount": 287, + "popularity": 6.7549 + }, + { + "id": 11037, + "title": "Iron Eagle", + "originalTitle": "Iron Eagle", + "overview": "When Doug's father, an Air Force Pilot, is shot down by MiGs belonging to a radical Middle Eastern state, no one seems able to get him out. Doug finds Chappy, an Air Force Colonel who is intrigued by the idea of sending in two fighters piloted by himself and Doug to rescue Doug's father after bombing the MiG base.", + "posterPath": "/8NJrLRX1RdKUNU4mhRQ8nLr6bMX.jpg", + "backdropPath": "/mz4ozla1GGt2jgYNdqiS6lcNeTu.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "1986-01-17", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 322, + "popularity": 6.7541 + }, + { + "id": 928358, + "title": "Grand Jete", + "originalTitle": "Grand Jeté", + "overview": "Dance teacher and mother Nadja left her son Mario with her own mother when he was little. Now she has reappeared on his doorstep, seeking a closeness that knows fewer and fewer boundaries. An uncompromising film about family relationships.", + "posterPath": "/awpPWrE5kqIURHotysiR2yBg9Ty.jpg", + "backdropPath": "/D2ppnImxdDinPEYJzmW2dZmnjA.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-09-20", + "releaseYear": "2022", + "originalLanguage": "de", + "voteAverage": 4.9, + "voteCount": 39, + "popularity": 6.754 + }, + { + "id": 777443, + "title": "The Electric State", + "originalTitle": "The Electric State", + "overview": "An orphaned teen hits the road with a mysterious robot to find her long-lost brother, teaming up with a smuggler and his wisecracking sidekick.", + "posterPath": "/sI2NiMU8o65hmIMY0JI9CjJ0p7f.jpg", + "backdropPath": "/2n7lYEeIbucsEQCswRcVB6ZYmMP.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 28 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "releaseDate": "2025-03-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.51, + "voteCount": 1447, + "popularity": 6.754 + }, + { + "id": 89931, + "title": "Oddballs", + "originalTitle": "Oddballs", + "overview": "A Canadian sex comedy about saving a summer camp from becoming a shopping mall.", + "posterPath": "/cammKd0lgmzV2HB3PyMuYFtfT2m.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1984-04-06", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 3.115, + "voteCount": 13, + "popularity": 6.7526 + }, + { + "id": 41488, + "title": "The Statement", + "originalTitle": "The Statement", + "overview": "The film is set in France in the 1990s, the French were defeated by the Germans early in World War II, an armistice was signed in 1940 which effectively split France into a German occupied part in the North and a semi-independent part in the south which became known as Vichy France. In reality the Vichy government was a puppet regime controlled by the Germans. Part of the agreement was that the Vichy Government would assist with the 'cleansing' of Jews from France. The Vichy government formed a police force called the Milice, who worked with the Germans...", + "posterPath": "/a7IvoBJ70dp6U1fjRlvB04ZtxvF.jpg", + "backdropPath": "/uHFZdbtLAaAaVFKBowN1RTDD0oC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2003-12-12", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 76, + "popularity": 6.7526 + }, + { + "id": 828588, + "title": "The Turning Point", + "originalTitle": "La svolta", + "overview": "A slacker who does his best to avoid confrontation strikes up an unlikely friendship with a dangerous thug who suddenly forces his way into his life.", + "posterPath": "/ge7URX8RFL4zAiJ76dprYqs3HEt.jpg", + "backdropPath": "/jVsMdZDGmWVkSAuAFOIfWnXiXzq.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-12-02", + "releaseYear": "2021", + "originalLanguage": "it", + "voteAverage": 6.171, + "voteCount": 82, + "popularity": 6.7525 + }, + { + "id": 3603, + "title": "Black Sheep", + "originalTitle": "Black Sheep", + "overview": "After a childhood prank by his brother Angus causes Henry to develop a phobia of sheep, he must step up to the onslaught of a genetically-mutated man-eating flock with the help of his friend and a young environmentalist.", + "posterPath": "/b6Spp82Tg8rv4YUSHGWFqFbgp0q.jpg", + "backdropPath": "/c3md9NhdIT9P9aLd2ESF68i0BvT.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2006-09-10", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.778, + "voteCount": 793, + "popularity": 6.7512 + }, + { + "id": 146216, + "title": "RED 2", + "originalTitle": "RED 2", + "overview": "Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.", + "posterPath": "/tbksijr6g340yFWRgI4JfwrtM9h.jpg", + "backdropPath": "/gd2vQT8uMf1FAsiC0OdewL7XUFR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 53 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Thriller" + ], + "releaseDate": "2013-07-18", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.529, + "voteCount": 4200, + "popularity": 6.7495 + }, + { + "id": 133931, + "title": "Zambezia", + "originalTitle": "Zambezia", + "overview": "Set in a bustling bird city on the edge of the majestic Victoria Falls, \"Zambezia\" is the story of Kai - a naïve, but high-spirited young falcon who travels to the bird city of \"Zambezia\" where he discovers the truth about his origins and, in defending the city, learns how to be part of a community.", + "posterPath": "/7aJl440TlbyqthklVrvCnSbjKYe.jpg", + "backdropPath": "/34Xi4ZYsmRgO4JEpDzSMrHF5JEY.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 16, + 12, + 10751 + ], + "genres": [ + "Comedy", + "Animation", + "Adventure", + "Family" + ], + "releaseDate": "2012-06-05", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.211, + "voteCount": 315, + "popularity": 6.7495 + }, + { + "id": 1573, + "title": "Die Hard 2", + "originalTitle": "Die Hard 2", + "overview": "One year after his heroics in Los Angeles, John McClane is an off-duty cop who is the wrong guy in the wrong place at the wrong time. On a snowy Christmas Eve, as he waits for his wife's plane to land at Washington Dulles International Airport, terrorists take over the air traffic control system in a plot to free a South American army general and drug smuggler being flown into the US to face drug charges. It's now up to McClane to take on the terrorists, while coping with an inept airport police chief, an uncooperative anti-terrorist squad, and the life of his wife and everyone else trapped in planes circling overhead.", + "posterPath": "/lDFO7D4MdbhjOwaPwe18QG69Rt0.jpg", + "backdropPath": "/cDtefl7KGnKrDziEUXetMnztvqr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1990-07-03", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.96, + "voteCount": 6150, + "popularity": 6.7495 + }, + { + "id": 615656, + "title": "Meg 2: The Trench", + "originalTitle": "Meg 2: The Trench", + "overview": "An exploratory dive into the deepest depths of the ocean of a daring research team spirals into chaos when a malevolent mining operation threatens their mission and forces them into a high-stakes battle for survival.", + "posterPath": "/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg", + "backdropPath": "/zN41DPmPhwmgJjHwezALdrdvD0h.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 27 + ], + "genres": [ + "Action", + "Science Fiction", + "Horror" + ], + "releaseDate": "2023-08-02", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.405, + "voteCount": 3788, + "popularity": 6.7489 + }, + { + "id": 29649, + "title": "Sunset Park", + "originalTitle": "Sunset Park", + "overview": "A school teacher takes over a talented, but undisciplined high school basketball team and turns them into a winning team.", + "posterPath": "/rkt8cYfOV6vcqlDbut7jak9qaPh.jpg", + "backdropPath": "/2s4PRABzR5INckMIVurdRrNCzF6.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1996-04-26", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 18, + "popularity": 6.7486 + }, + { + "id": 13408, + "title": "The Wash", + "originalTitle": "The Wash", + "overview": "With the rent due and his car booted, Sean has to come up with some ends...and fast. When his best buddy and roommate Dee Loc, suggests that Sean get a job busting suds down at the local car wash.", + "posterPath": "/xb63VT8E4Q2RjLT7qnzvc5jRFAQ.jpg", + "backdropPath": "/dp2o4hCdHOxCRjoDj1jqTYsezQ1.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2001-11-14", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 124, + "popularity": 6.7485 + }, + { + "id": 626332, + "title": "Flamin' Hot", + "originalTitle": "Flamin' Hot", + "overview": "The inspiring true story of Richard Montañez, the Frito Lay janitor who channeled his Mexican American heritage and upbringing to turn the iconic Flamin' Hot Cheetos into a snack that disrupted the food industry and became a global pop culture phenomenon.", + "posterPath": "/a7KyFMPXj0iY4EoLq1PIGU1WJPw.jpg", + "backdropPath": "/yYEOYzgqPB31mkSsuPdCvXH3zHv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2023-03-11", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.968, + "voteCount": 776, + "popularity": 6.7483 + }, + { + "id": 380754, + "title": "Isolation", + "originalTitle": "Isolation", + "overview": "Inspired by the true events of a couple vacationing on a remote island in the Bahamas who are hunted by a group of modern-day pirates, after their identities and their lives.", + "posterPath": "/2yTUJ2rKlcRaWAlATHU4fclL9YB.jpg", + "backdropPath": "/GJEsypKc4bZZiyIyW1c9lcKzoO.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2016-05-11", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 34, + "popularity": 6.7483 + }, + { + "id": 264397, + "title": "The Incident", + "originalTitle": "El Incidente", + "overview": "Two parallel stories about people trapped in illogical endless spaces: two brothers and a detective locked on an infinite staircase, and a family locked on an infinite road... for over 35 years.", + "posterPath": "/idb1ACZCQAsYJCFMfs9vgyBIbP1.jpg", + "backdropPath": "/anvabdHa1iP70ywR1TH0F5g5A8H.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878, + 27 + ], + "genres": [ + "Thriller", + "Science Fiction", + "Horror" + ], + "releaseDate": "2014-05-17", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 6.907, + "voteCount": 178, + "popularity": 6.7482 + }, + { + "id": 842942, + "title": "Bandit", + "originalTitle": "Bandit", + "overview": "After escaping a Michigan prison, a charming career criminal assumes a new identity in Canada and goes on to rob a record 59 banks and jewellery stores while being hunted by a rogue task force. Based on the true story of The Flying Bandit.", + "posterPath": "/yph9PAbmjYPvyvbeZvdYIhCZHEu.jpg", + "backdropPath": "/oeBom7DLr85lixEkWOGmhCPEfuY.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2022-09-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.248, + "voteCount": 385, + "popularity": 6.7479 + }, + { + "id": 977506, + "title": "The Crime Is Mine", + "originalTitle": "Mon crime", + "overview": "In 1930s Paris, Madeleine, a pretty, young, penniless, and talentless actress, is accused of murdering a famous producer. Helped by her best friend, Pauline, a young, unemployed lawyer, she is acquitted on the grounds of self-defense. A new life of fame and success begins, until the truth comes out.", + "posterPath": "/hcvhE2JWsidOxHL7yXk3MXs4vyt.jpg", + "backdropPath": "/czVIuIXqDPgCBHI3vLYQcRtzAo7.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 9648, + 18 + ], + "genres": [ + "Crime", + "Comedy", + "Mystery", + "Drama" + ], + "releaseDate": "2023-02-24", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.469, + "voteCount": 437, + "popularity": 6.7468 + }, + { + "id": 10872, + "title": "The Ref", + "originalTitle": "The Ref", + "overview": "A cat burglar is forced to take a bickering, dysfunctional family hostage on Christmas Eve.", + "posterPath": "/ym7Kx3iDmalK8kXKvVQwnFYABEV.jpg", + "backdropPath": "/jRFC2W21pWAwKUqbEmvG5mVbcle.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "1994-03-09", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 358, + "popularity": 6.7468 + }, + { + "id": 276906, + "title": "Apartment Troubles", + "originalTitle": "Apartment Troubles", + "overview": "Two codependent roommates, on the verge of eviction, flee New York for the promise of sunshine in Los Angeles where their friendship is tested by a chance at fame, a fortune teller and an amorous wealthy aunt.", + "posterPath": "/i89e3C3c0EfJYPpCO1CCpm35E3v.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2014-06-15", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.972, + "voteCount": 18, + "popularity": 6.7467 + }, + { + "id": 210052, + "title": "Wolf Children", + "originalTitle": "Wolfskinder", + "overview": "The story of a boy who, driven by the search for his lost brother in the turmoil of WWII, joins a group of children in order to survive the chaos of post-war anarchy in the haunted forests of Lithuania.", + "posterPath": "/5FyJ3rMjsMSnbzW6iM5ZxOtPFp2.jpg", + "backdropPath": "/8NFEVNLzqP5yu5NzW1K7n5vefxM.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 10752 + ], + "genres": [ + "History", + "Drama", + "War" + ], + "releaseDate": "2013-08-28", + "releaseYear": "2013", + "originalLanguage": "de", + "voteAverage": 6.8, + "voteCount": 22, + "popularity": 6.7457 + }, + { + "id": 605499, + "title": "Monsoon", + "originalTitle": "Monsoon", + "overview": "Kit can’t remember much of his native Vietnam. When he returns to the Land of the Golden Star for the first time in over thirty years, he takes in his local surroundings as any Western tourist would, and the environment is as exotic as the language is incomprehensible. The aim of Kit’s travels – to find a place to scatter his parents’ ashes – thus becomes part of a journey back to his roots and to the discovery of his identity, which external circumstances have rendered ambiguous and complex.", + "posterPath": "/xIKVeH1iAKJOYYh9lvObD3hYIaf.jpg", + "backdropPath": "/t0cz6pkGO14e1YwjhjfaOwYy6WG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2020-09-25", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.351, + "voteCount": 37, + "popularity": 6.7455 + }, + { + "id": 241071, + "title": "Brightest Star", + "originalTitle": "Brightest Star", + "overview": "A recent college graduate sets out to win back the girl of his dreams.", + "posterPath": "/4YpVVVdLmL8ZxM7JxcyQehP5gqa.jpg", + "backdropPath": "/i47OnMHp1wuwROe6WD7lrCorW4u.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2013-10-26", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.271, + "voteCount": 24, + "popularity": 6.7448 + }, + { + "id": 73532, + "title": "Le Havre", + "originalTitle": "Le Havre", + "overview": "In the French harbor city of Le Havre, fate throws young African refugee Idrissa into the path of Marcel Marx, a well-spoken bohemian who works as a shoe-shiner. With innate optimism and the tireless support of his community, Marcel stands up to officials pursuing the boy for deportation.", + "posterPath": "/zCoGiKr8hn9fPYnxECjUhpaP8TI.jpg", + "backdropPath": "/eAtg0bP9vySbT8pGs14yLJU6Jwf.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2011-09-08", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 7.005, + "voteCount": 458, + "popularity": 6.7441 + }, + { + "id": 8489, + "title": "Ali", + "originalTitle": "Ali", + "overview": "In 1964, a brash, new pro boxer, fresh from his Olympic gold medal victory, explodes onto the scene: Cassius Clay. Bold and outspoken, he cuts an entirely new image for African Americans in sport with his proud public self-confidence and his unapologetic belief that he is the greatest boxer of all time. Yet at the top of his game, both Ali's personal and professional lives face the ultimate test.", + "posterPath": "/3VIZRakftZZFys2ee9S7ufNNNyR.jpg", + "backdropPath": "/bot4HZT2FWmq8IEcq7MhIVJSj1I.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-12-10", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.76, + "voteCount": 1808, + "popularity": 6.7441 + }, + { + "id": 74747, + "title": "The Curse", + "originalTitle": "The Curse", + "overview": "Nathan Hayes is a religious man trying to hold onto his farm and keep his family in line. A real estate developer is trying to buy most of the farm property in the area, including Mr. Hayes family farm, in the hope that the Tennesse Valley Authority will choose the town for the site of a new dam and recreational area. The night of a terrible storm, an unidentified, glowing object crashes on the Hayes farm and with it comes a horrible curse for the Hayes family and the members of the community.", + "posterPath": "/zTvk4P1JJLE7amgXSFse8sIBT6s.jpg", + "backdropPath": "/8f3tYue2JR2NIUarLW82Ny4pddp.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1987-09-11", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 5.035, + "voteCount": 129, + "popularity": 6.744 + }, + { + "id": 31942, + "title": "Midnight Ride", + "originalTitle": "Midnight Ride", + "overview": "A house wife just left her cop husband, when she picks up Justin McKay she'll wish she never did as she's plunged into a nightmare and the grip of a psychotic killer.", + "posterPath": "/c9RpMH0z5gILV9iAf6Z5ijtfv14.jpg", + "backdropPath": "/ye6cY4qhz5dXkqJgn9jifOKMjqW.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 27 + ], + "genres": [ + "Thriller", + "Action", + "Horror" + ], + "releaseDate": "1990-07-20", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 33, + "popularity": 6.7433 + }, + { + "id": 425751, + "title": "The Hero", + "originalTitle": "The Hero", + "overview": "Lee, a former Western film icon, is living a comfortable existence lending his golden voice to advertisements and smoking weed. After receiving a lifetime achievement award and unexpected news, Lee reexamines his past, while a chance meeting with a sardonic comic has him looking to the future.", + "posterPath": "/7on6mTMVrE893E0mSwO4ZRAAD8A.jpg", + "backdropPath": "/hzbncGu3g4T6sD6R0f7NKol4etP.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-06-09", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 244, + "popularity": 6.7414 + }, + { + "id": 752, + "title": "V for Vendetta", + "originalTitle": "V for Vendetta", + "overview": "In a world in which Great Britain has become a fascist state, a masked vigilante known only as “V” conducts guerrilla warfare against the oppressive British government. When V rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.", + "posterPath": "/piZOwjyk1g51oPHonc7zaQY3WOv.jpg", + "backdropPath": "/5EKplo61HbA5sMGAN0XAvzdo1MX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2006-02-23", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.899, + "voteCount": 15150, + "popularity": 6.7401 + }, + { + "id": 1690, + "title": "Hostel", + "originalTitle": "Hostel", + "overview": "Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.", + "posterPath": "/dDrtuWUKhgUGp12kgUWuP0NpTdF.jpg", + "backdropPath": "/dF6GNQ0TnZkr1t4wBt36Xc0Pccd.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2006-01-06", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 3813, + "popularity": 6.74 + }, + { + "id": 715253, + "title": "Phantom", + "originalTitle": "유령", + "overview": "In 1933, when Korea was under Japanese occupation, five people in Gyeongseong are suspected to be \"Phantom\" spies of the anti-Japanese organization.", + "posterPath": "/n1rxZ4wovf7BYhLNwCqde8I3I2N.jpg", + "backdropPath": "/wFzI8o0jEMYfNugglP4wjFIr647.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2023-01-18", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 6.9, + "voteCount": 63, + "popularity": 6.7399 + }, + { + "id": 9077, + "title": "Tarantula", + "originalTitle": "Tarantula", + "overview": "A rogue scientist near a small desert town arouses the suspicion of the town's doctor when his lab assistant is found dead from a case of acromegaly, which took only four days to develop. As the doctor investigates, aided by the scientist's new female assistant, they discover that something is devouring local cattle and humans in increasingly large quantities.", + "posterPath": "/gPjlVSys2CJP1aQKXnhj4kKDxrB.jpg", + "backdropPath": "/mJhEzR254JifF0wjKj48hcqabus.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27 + ], + "genres": [ + "Science Fiction", + "Horror" + ], + "releaseDate": "1955-12-14", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 6.478, + "voteCount": 298, + "popularity": 6.7378 + }, + { + "id": 86973, + "title": "Disappearance", + "originalTitle": "Disappearance", + "overview": "A family driving through Nevada decides to take some snapshots at an out-of-the-way ghost town named Weaver, and horrible things start happening.", + "posterPath": "/9PUmvxONOrKnHHPIJ75gRXopRpS.jpg", + "backdropPath": "/b6HMSKwA8tBdWYRl8Nr5UAN4w1b.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 27, + 53, + 10770 + ], + "genres": [ + "Mystery", + "Horror", + "Thriller", + "TV Movie" + ], + "releaseDate": "2002-04-21", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 29, + "popularity": 6.7371 + }, + { + "id": 638574, + "title": "Not Knowing", + "originalTitle": "Bilmemek", + "overview": "Selma and Sinan are a couple who now find it difficult to endure each other. At the end of high school, rumors start circulating about their son Umut, who is gay. While Selma and Sinan are trying to cope with their tiring marriage, Umut suddenly disappears.", + "posterPath": "/9bcAvDv0JOFynr5i7DjC5brPrqN.jpg", + "backdropPath": "/r67XwSpy7fdTJxGwU0fAfsDRxpG.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-10-27", + "releaseYear": "2019", + "originalLanguage": "tr", + "voteAverage": 5.079, + "voteCount": 19, + "popularity": 6.7369 + }, + { + "id": 106355, + "title": "Captain America", + "originalTitle": "Captain America", + "overview": "Superhero Captain America battles the evil forces of the archvillain called The Scarab, who poisons his enemies and steals a secret device capable of destroying buildings by sound vibrations.", + "posterPath": "/nBRcChS66NohR3x6KVYMp6Obutt.jpg", + "backdropPath": "/hKVwvPUwMXcVqTJXOkPXUTQ7GMU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "1944-02-05", + "releaseYear": "1944", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 32, + "popularity": 6.7366 + }, + { + "id": 306838, + "title": "Magallanes", + "originalTitle": "Magallanes", + "overview": "Magallanes sees his humdrum life turn upside down the day Celina, a women he met in the violent years when he was a soldier with the Peruvian Army, jumps into his taxi in a Lima street. This unexpected re-encounter after 25 years with the dark past that unites them prompts Magallanes to embark on a daring plan to help Celina get money and find his own redemption.", + "posterPath": "/bVzC42W7RLWJIOXxRJPgYDTovKF.jpg", + "backdropPath": "/kc9zPrERZlU7Afgf5Mtu8TXL3m2.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-08-20", + "releaseYear": "2015", + "originalLanguage": "es", + "voteAverage": 7.6, + "voteCount": 22, + "popularity": 6.7362 + }, + { + "id": 629015, + "title": "Shut In", + "originalTitle": "Shut In", + "overview": "A young single mother is held captive along with her two children by a violent ex and must plot their escape before it’s too late.", + "posterPath": "/b5ug4LyLQFeR6azAJyIPBQz5ur9.jpg", + "backdropPath": "/ufagam4FwlIcgPqJlr21EshNkNd.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 18 + ], + "genres": [ + "Thriller", + "Horror", + "Drama" + ], + "releaseDate": "2022-03-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 378, + "popularity": 6.7357 + }, + { + "id": 146227, + "title": "Getaway", + "originalTitle": "Getaway", + "overview": "Former race car driver Brent Magna is pitted against the clock. Desperately trying to save the life of his kidnapped wife, Brent commandeers a custom Ford Shelby GT500 Super Snake, taking it and its unwitting owner on a high-speed race against time, at the command of the mysterious villain holding his wife hostage.", + "posterPath": "/z4sEWm1ykf9WX5WJU4XMD4oI5sI.jpg", + "backdropPath": "/7FmaBXCV2CS6pQn6g6irigk5c6J.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2013-08-29", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 653, + "popularity": 6.7354 + }, + { + "id": 1008430, + "title": "Neneh Superstar", + "originalTitle": "Neneh Superstar", + "overview": "Born to dance, Neneh is a 12-year-old black girl who dreams of entering the Paris Opera Ballet School. Despite her enthusiasm, she will have to redouble her efforts to escape from her condition and be accepted by the director of the school, Marianne Bellage, the guarantor of traditions and the bearer of a secret that links her to the little ballerina.", + "posterPath": "/f7hstgJPoSnxcE2cpfOmO2tjpoV.jpg", + "backdropPath": "/lADUZr0NEokwDuQhZkSpnUs7WkI.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2023-01-25", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 5.813, + "voteCount": 24, + "popularity": 6.7353 + }, + { + "id": 73146, + "title": "Deathrow Gameshow", + "originalTitle": "Deathrow Gameshow", + "overview": "Chuck Toedan hosts the most controversial show on TV: Live or Die, where deathrow inmates compete against each other for a chance to beat the executioner. However, when he accidentally kills a mob boss of the most feared mafia in the city, a hit man tries to put an end to him and his show once and for all. As a battle of wits and survival ensues, Chuck is forced to engage in the very tactics he uses on his contestants, or die trying.", + "posterPath": "/p7944iQqgowLOGKAVgEtnSiHoOH.jpg", + "backdropPath": "/ijgGGCaX7koL9L7QtNNIGFivQto.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35 + ], + "genres": [ + "Crime", + "Comedy" + ], + "releaseDate": "1987-12-04", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 27, + "popularity": 6.7345 + }, + { + "id": 797815, + "title": "Martyrs Lane", + "originalTitle": "Martyrs Lane", + "overview": "Leah, 10, has terrible nightmares. Her mother seems distant somehow, lost in her thoughts. A small, nightly visitor brings Leah comfort, but soon Leah will realize that her little visitor offers knowledge that might be very, very dangerous.", + "posterPath": "/2p9ATFUEiXT75LmMsSCBicnpX8e.jpg", + "backdropPath": "/ajMcljj65tARAfMbyHTfAhcT4cD.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2021-08-19", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.092, + "voteCount": 130, + "popularity": 6.7339 + }, + { + "id": 8886, + "title": "Palermo Shooting", + "originalTitle": "Palermo Shooting", + "overview": "After the wild lifestyle of a famous young German photographer almost gets him killed, he goes to Palermo, Sicily to take a break. Can the beautiful city and a beautiful local woman calm him down?", + "posterPath": "/hDTuyypuDHngXat0tt49wYoBBXg.jpg", + "backdropPath": "/afi32ruadygPhNfhgwgAO4jXOvL.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-11-20", + "releaseYear": "2008", + "originalLanguage": "de", + "voteAverage": 6.2, + "voteCount": 60, + "popularity": 6.7332 + }, + { + "id": 115446, + "title": "Divorce Invitation", + "originalTitle": "Divorce Invitation", + "overview": "'Divorce Invitation' centers on Mike Christian, a happily married man who runs into his high school sweetheart Alex, and after all these years, sparks still fly. When Mike is determined Alex is his true soul mate, he realizes he has a huge problem-he signed an iron-clad pre-nuptial agreement and his wife will not let him out of the marriage", + "posterPath": "/1Au4jGHUKvckHAbuZd9bgchFetY.jpg", + "backdropPath": "/w7ot5UbHVM6ANPCpzpodinJVxiR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2012-11-14", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 31, + "popularity": 6.7326 + }, + { + "id": 9909, + "title": "Dangerous Minds", + "originalTitle": "Dangerous Minds", + "overview": "Former Marine Louanne Johnson lands a gig teaching in a pilot program for bright but underachieving teens at a notorious inner-city high school. After having a terrible first day, she decides she must throw decorum to the wind. When Johnson returns to the classroom, she does so armed with a no-nonsense attitude informed by her military training and a fearless determination to better the lives of her students -- no matter what the cost.", + "posterPath": "/yWHWC8fJRp2kLgiFrEa8o3krOH9.jpg", + "backdropPath": "/k28lTv01nuncbs9Y2WZh6FQunqv.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1995-08-11", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.961, + "voteCount": 1219, + "popularity": 6.7325 + }, + { + "id": 29079, + "title": "Happy End", + "originalTitle": "Happy End", + "overview": "Val is 23 years old and full of dreams. She travels to New York to become an actress. She is lonely in a strange country, in a strange city, with little money and no friends. In her path, she meets weird people who they, also, seek their dreams but everyday life gets in the way. Tired and hungry she sits on the corner of a building. Across the street a writer whose fantasy has dry out. In an instant she becomes his muse... At the Oscar's night she will be the one with the Golden Globe in her hands.", + "posterPath": "/jbLxetPVJH03a8CZPpa0bw4E2tI.jpg", + "backdropPath": "/sQLAF4RGTgOBwscrHEKHD4Qnrfv.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2003-12-24", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 24, + "popularity": 6.732 + }, + { + "id": 122126, + "title": "The Concubine", + "originalTitle": "후궁: 제왕의 첩", + "overview": "Living a torturous life of poverty and barely able to survive, Hwa-yeon decides to offer herself as one of the king’s concubines. Once inside the royal palace, two men are immediately seized by the woman - the Grand Prince Seong-won, a megalomaniacal ruler drunk with power and lust, and Kwon-yoo, who has everything to lose if his desire for Hwa-yeon is exposed.", + "posterPath": "/cLT2eYXoDSXWkqJQcDqVinxIkf0.jpg", + "backdropPath": "/zgx6bBaVLAsFO5ip7gwndOjhE7U.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-06-06", + "releaseYear": "2012", + "originalLanguage": "ko", + "voteAverage": 5.9, + "voteCount": 104, + "popularity": 6.7304 + }, + { + "id": 204681, + "title": "Taking Off", + "originalTitle": "Grand Départ", + "overview": "Romain, a handsome young man in his thirties, only thinks about his work and never reveals his emotions. He can't manage to \"flirt\" with girls. His older brother Luc, who has become a screenwriter, is homosexual and never stops putting his brother down. However, the two brothers get along better than they seem to. Their father has a neurodegenerative disease and must be placed in a specialized institution. This ordeal will allow Romain to better understand himself as a man.", + "posterPath": "/sIYtTVepD4kP6SccH19QPqVB7XR.jpg", + "backdropPath": "/y6KbQzNUxRxyeBlpbPmYvgGbqxK.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-09-04", + "releaseYear": "2013", + "originalLanguage": "fr", + "voteAverage": 5, + "voteCount": 17, + "popularity": 6.7297 + }, + { + "id": 635731, + "title": "Pig", + "originalTitle": "Pig", + "overview": "A truffle hunter who lives alone in the Oregon wilderness must visit Portland to find the mysterious person who stole his beloved foraging pig.", + "posterPath": "/1InMm4Mbjx8wCKvIy5gglo5i3HN.jpg", + "backdropPath": "/uFvueAhlKsXQacjiKxGBgnBqarf.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2021-07-16", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1617, + "popularity": 6.7292 + }, + { + "id": 201811, + "title": "Crazy Underwear", + "originalTitle": "Mutande Pazze", + "overview": "Alessia, a TV showgirl, tries to win the favor of an official. Amalia, a morning show host, satisfies the masochistic director in order to go to prime time. Stefania \"works hard\" to act in a risqué film by a famous director, but the part is stolen from her by her friend Beatrice, apparently only devoted to her studies.", + "posterPath": "/qxTgtsgNPUaiAJEeXcz4IeDENj.jpg", + "backdropPath": "/kDu650ppvdUMsOpz9Zp3Pa8mRsV.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1992-02-04", + "releaseYear": "1992", + "originalLanguage": "it", + "voteAverage": 3, + "voteCount": 12, + "popularity": 6.7286 + }, + { + "id": 9323, + "title": "Ghost in the Shell", + "originalTitle": "GHOST IN THE SHELL", + "overview": "In the year 2029, the barriers of our world have been broken down by the net and by cybernetics, but this brings new vulnerability to humans in the form of brain-hacking. When a highly-wanted hacker known as 'The Puppetmaster' begins involving them in politics, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop the Puppetmaster.", + "posterPath": "/9gC88zYUBARRSThcG93MvW14sqx.jpg", + "backdropPath": "/gTRXgigmgKpeJjW07iq686HZyBD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "1995-11-18", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.924, + "voteCount": 3685, + "popularity": 6.7284 + }, + { + "id": 1323753, + "title": "Child Star", + "originalTitle": "Child Star", + "overview": "Explore the highs and lows of growing up in the spotlight through the lens of some of the world’s most famous former child stars. Through celebrity interviews, verite scenes, and archival footage, this film deconstructs the stages of earlier stardom and looks at the entertainment system over the last century.", + "posterPath": "/qonoT25IHa7v2j82IkYQwyxZUb6.jpg", + "backdropPath": "/yjLbhu654CZkrusJ3VMuzrGNZp8.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2024-09-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 25, + "popularity": 6.7281 + }, + { + "id": 336882, + "title": "The Wave", + "originalTitle": "Bølgen", + "overview": "Although theorised, no one is really ready when a mountain pass above the scenic and narrow Geiranger fjord in Norway collapses and creates a tsunami over 300 feet high. A geologist is one of those caught in the middle of it.", + "posterPath": "/nUra0UF9MLlTRZH9LCA8xYvhd6D.jpg", + "backdropPath": "/9W0aXF5HhGilDHloymf7sTCne8z.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 18 + ], + "genres": [ + "Action", + "Thriller", + "Drama" + ], + "releaseDate": "2015-08-28", + "releaseYear": "2015", + "originalLanguage": "no", + "voteAverage": 6.692, + "voteCount": 1353, + "popularity": 6.7272 + }, + { + "id": 376004, + "title": "Adulterers", + "originalTitle": "Adulterers", + "overview": "A man who returns home to find his wife cheating on him on their anniversary. He holds her and her naked and humiliated lover captive at gunpoint while he decides whether or not he's going to kill them. The story, inspired by true events, takes place over one day and is set in New Orleans during a stifling heat wave.", + "posterPath": "/pJLmZBruOmn2c9mYWe3h1xcXaA0.jpg", + "backdropPath": "/vdFTbTjjEptBiOrCYgk2K6AiOiE.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18 + ], + "genres": [ + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2016-01-05", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 101, + "popularity": 6.727 + }, + { + "id": 44435, + "title": "Trauma", + "originalTitle": "Trauma", + "overview": "A young Romanian woman and a recovering drug addict launch an unlikely investigation after her parents are murdered by a vicious serial killer known as The Headhunter.", + "posterPath": "/A9lheNDXPb4HS0g2RQu2rUD98V5.jpg", + "backdropPath": "/78XMuCvwtCRLFUbZNd5qbM0oaO3.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 9648 + ], + "genres": [ + "Thriller", + "Horror", + "Mystery" + ], + "releaseDate": "1993-03-12", + "releaseYear": "1993", + "originalLanguage": "it", + "voteAverage": 5.795, + "voteCount": 237, + "popularity": 6.727 + }, + { + "id": 480623, + "title": "Christmas Getaway", + "originalTitle": "Christmas Getaway", + "overview": "When a reservation mix-up at a mountain resort forces a newly-single travel writer to share a cabin with a handsome widower and his precocious daughter over the holidays, their lives are transformed by the magic of Christmas and the unexpected power of love.", + "posterPath": "/ohBJhAI7YJrlYmnr4czCvZj1FW7.jpg", + "backdropPath": "/sKoEKXA2OFdw8oDY6sv5wGygC0N.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 10770 + ], + "genres": [ + "Romance", + "TV Movie" + ], + "releaseDate": "2017-12-23", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 148, + "popularity": 6.7269 + }, + { + "id": 29833, + "title": "Brain Dead", + "originalTitle": "Brain Dead", + "overview": "A sleepy fishing port town is consumed with terror when a small crater crash-lands nearby and releases a slimy parasitic agent that transforms the residents into brain-eating zombies. Cornered in an abandoned fishing lodge, six strangers are forced to band together to stave off the blood-sucking monsters clawing the walls outside.", + "posterPath": "/wqur2OKhF31Xirjb95NYvljx9Qm.jpg", + "backdropPath": "/dBSPaJYQE1phin82QdOLDGRULyZ.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2007-10-17", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 36, + "popularity": 6.7269 + }, + { + "id": 507, + "title": "Killing Zoe", + "originalTitle": "Killing Zoe", + "overview": "Zed is an American vault-cracker who travels to Paris to meet up with his old friend Eric. Eric and his gang have planned to raid the only bank in the city which is open on Bastille day. After offering his services, Zed soon finds himself trapped in a situation beyond his control when heroin abuse, poor planning and a call-girl named Zoe all conspire to turn the robbery into a very bloody siege.", + "posterPath": "/k3UEKMVnkljOlsO5sLmz87YGlaG.jpg", + "backdropPath": "/3yoyioAdnZNrhDv2eQwflfqm7b7.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1993-10-01", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.196, + "voteCount": 358, + "popularity": 6.7267 + }, + { + "id": 79, + "title": "Hero", + "originalTitle": "英雄", + "overview": "During China's Warring States period, a district prefect arrives at the palace of Qin Shi Huang, claiming to have killed the three assassins who had made an attempt on the king's life three years ago.", + "posterPath": "/vxgZto2Cz7ILHAlmRXt50I2brB2.jpg", + "backdropPath": "/jDz6RYN3nKYtlo7J9IMvGoJit7B.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 12, + 28, + 36 + ], + "genres": [ + "Drama", + "Adventure", + "Action", + "History" + ], + "releaseDate": "2002-07-22", + "releaseYear": "2002", + "originalLanguage": "zh", + "voteAverage": 7.502, + "voteCount": 2391, + "popularity": 6.726 + }, + { + "id": 831405, + "title": "Injustice", + "originalTitle": "Injustice", + "overview": "When Lois Lane is killed, an unhinged Superman decides to take control of the Earth. Determined to stop him, Batman creates a team of freedom-fighting heroes. But when superheroes go to war, can the world survive?", + "posterPath": "/rzrSeqqpm1BwJ3tcTznztBtLLSD.jpg", + "backdropPath": "/4gWUlxECoziJ9TrGNfymNYxZf6Z.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 14, + 28 + ], + "genres": [ + "Animation", + "Science Fiction", + "Fantasy", + "Action" + ], + "releaseDate": "2021-10-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 816, + "popularity": 6.7251 + }, + { + "id": 439079, + "title": "The Nun", + "originalTitle": "The Nun", + "overview": "A priest with a dark past and a novice nearing her final vows are sent by the Vatican to Romania to investigate a nun's death and face a demonic force.", + "posterPath": "/sFC1ElvoKGdHJIWRpNB3xWJ9lJA.jpg", + "backdropPath": "/cMnVmutb5mVgIBeiMOncAbwNjvG.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2018-09-05", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 7030, + "popularity": 6.7248 + }, + { + "id": 1383089, + "title": "Safe House", + "originalTitle": "Før mørket", + "overview": "The civil war rages in the Central African Republic, Linn (35) leads a team of aid workers who are working tirelessly to save lives in a field hospital outside a massive refugee camp. When a Muslim man, persecuted and in mortal danger, seeks refuge, Linn faces a critical decision. A growing mob and Christian militia demand his handover. As the head of security, Linn must act quickly, brutally balancing the safety of her team with the value of a single life. Based on the true events that unfolded during 15 tense hours at a Doctors Without Borders hospital in Bangui on Christmas Eve, 2013.", + "posterPath": "/gWfTs2h3WaN2xGsxWMz1iRnpWeu.jpg", + "backdropPath": "/tazODpKqjPRW7KurV3A5u5DjvvD.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10752 + ], + "genres": [ + "Drama", + "Thriller", + "War" + ], + "releaseDate": "2025-02-28", + "releaseYear": "2025", + "originalLanguage": "no", + "voteAverage": 6.308, + "voteCount": 13, + "popularity": 6.7239 + }, + { + "id": 17898, + "title": "Silver Bullet", + "originalTitle": "Silver Bullet", + "overview": "The small city of Tarker's Mills is startled by a series of sadistic murders. The population fears the work of a maniac, but sightings of a mysterious, hairy creature soon spread. People lock themselves up at night, but there's one boy who's still outside…", + "posterPath": "/52CvWYuJyWcMTPvsfcmsxaVHi7f.jpg", + "backdropPath": "/gKzc9XgLqJwSGZliZE5VjuYR6g9.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1985-10-10", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 661, + "popularity": 6.723 + }, + { + "id": 140607, + "title": "Star Wars: The Force Awakens", + "originalTitle": "Star Wars: The Force Awakens", + "overview": "Thirty years after defeating the Galactic Empire, Han Solo and his allies face a new threat from the evil Kylo Ren and his army of Stormtroopers.", + "posterPath": "/wqnLdwVXoBjKibFRR5U3y0aDUhs.jpg", + "backdropPath": "/8BTsTfln4jlQrLXUBquXJ0ASQy9.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2015-12-15", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.255, + "voteCount": 20104, + "popularity": 6.7226 + }, + { + "id": 1076897, + "title": "Kaamelott: The Second Chapter (Part I)", + "originalTitle": "Kaamelott - Deuxième volet, partie 1", + "overview": "After reclaiming Kaamelott from Lancelot's tyrannical rule, Arthur spares his life, defying Celtic gods. Knights must prove themselves for Table Round seats while Arthur faces new threats as king.", + "posterPath": "/wcyCxRZ9XLoQYQigV33egY7dQgR.jpg", + "backdropPath": "/A2p2U0oBfmZ8zDwxjgDEDC9KfxH.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 35, + 36 + ], + "genres": [ + "Adventure", + "Fantasy", + "Comedy", + "History" + ], + "releaseDate": "2025-10-22", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.352, + "voteCount": 61, + "popularity": 6.7215 + }, + { + "id": 9408, + "title": "Surf's Up", + "originalTitle": "Surf's Up", + "overview": "A young surfer enters his first contest, hoping a win will earn him respect. But an encounter with a laid-back local forces him to rethink his values.", + "posterPath": "/lenJ0hOmlks0dyxzNJoNVQlR3qR.jpg", + "backdropPath": "/Y50RfoNVKIj9dSJavE8uBdN377.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2007-06-08", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.477, + "voteCount": 2648, + "popularity": 6.7215 + }, + { + "id": 1073079, + "title": "Kill Her Goats", + "originalTitle": "Kill Her Goats", + "overview": "Audra's graduation gift is her dream house, but it soon becomes a living nightmare when some uninvited guests come to her homecoming party who aren't very subtle about the fact they don't approve of the home's new owner.", + "posterPath": "/mFzyMEQvKwf2rXxB1GsSocJfL11.jpg", + "backdropPath": "/zKopRgnuZ9tdaOrMwi7DarcJBWs.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2023-04-28", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 3, + "voteCount": 24, + "popularity": 6.7204 + }, + { + "id": 654028, + "title": "The Christmas Chronicles: Part Two", + "originalTitle": "The Christmas Chronicles: Part Two", + "overview": "Kate Pierce is reluctantly spending Christmas with her mom’s new boyfriend and his son Jack. But when the North Pole and Christmas are threatened to be destroyed, Kate and Jack are unexpectedly pulled into a new adventure with Santa Claus.", + "posterPath": "/6sG0kbEvAi3RRLcGGU5h8l3qAPa.jpg", + "backdropPath": "/mxVpkHclXPgWxo62SJ0a0YcUzgC.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 12, + 35 + ], + "genres": [ + "Family", + "Fantasy", + "Adventure", + "Comedy" + ], + "releaseDate": "2020-11-18", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.486, + "voteCount": 1112, + "popularity": 6.7204 + }, + { + "id": 434471, + "title": "Body Electric", + "originalTitle": "Corpo Elétrico", + "overview": "Elias is a handsome young deputy manager in a garment factory in São Paulo. When he’s not working, he enjoys casual encounters in the big city. The arrival of a young African, Fernando, on the production line piques his interest and Elias finds himself increasingly drawn into socialising with his work colleagues.", + "posterPath": "/d9MfxX2eHRBI3c7XZSMfYI0bTYg.jpg", + "backdropPath": "/2XQVl60pMoGSpOymhBh2o7obhqf.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-08-17", + "releaseYear": "2017", + "originalLanguage": "pt", + "voteAverage": 6.1, + "voteCount": 45, + "popularity": 6.7201 + }, + { + "id": 1001736, + "title": "Meet the Barbarians", + "originalTitle": "Les Barbares", + "overview": "The municipality of a small Breton village has decided to welcome a family of Ukrainian refugees. To their surprise, they receive Fayad family – coming from Syria. They thwart all the clichés that the French expected: they are friendly, refined, educated… So much so that, in this small, humming village, it is no longer clear which side the barbarians are on…", + "posterPath": "/xGacUz5IkYrRtp6MEiiy3hKOte.jpg", + "backdropPath": "/pfslsIEGkNNkm88N4O0z8cNUH8a.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-09-18", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 64, + "popularity": 6.7191 + }, + { + "id": 294741, + "title": "The Falling", + "originalTitle": "The Falling", + "overview": "England, 1969. The fascinating Abbie and the troubled Lydia are great friends. After an unexpected tragedy occurs in the strict girls' school they attend, a mysterious epidemic of fainting breaks out that threatens the mental sanity and beliefs of the tormented people involved, both teachers and students.", + "posterPath": "/hjlU6vSDD5fdJenWhUKE5l672rb.jpg", + "backdropPath": "/pvn9CqsQFIzK4j1rrgQcpV3T6UJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 53 + ], + "genres": [ + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2015-04-24", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 193, + "popularity": 6.7181 + }, + { + "id": 912802, + "title": "Superworm", + "originalTitle": "Superworm", + "overview": "Superworm is super-long and super-strong, and is always saving the day. But who can save him when he gets too full of himself and is captured by the evil Wizard Lizard?", + "posterPath": "/hzvZDTb9r9Yceomz2GCHn2eneiD.jpg", + "backdropPath": "/i258RQovDRatmVONIqY4oDaKYjY.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2021-12-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.409, + "voteCount": 11, + "popularity": 6.7179 + }, + { + "id": 556574, + "title": "Hamilton", + "originalTitle": "Hamilton", + "overview": "Presenting the tale of American founding father Alexander Hamilton, this filmed version of the original Broadway smash hit is the story of America then, told by America now.", + "posterPath": "/h1B7tW0t399VDjAcWJh8m87469b.jpg", + "backdropPath": "/uWVkEo9PWHu9algZsiLPi6sRU64.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2025-09-05", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.422, + "voteCount": 51, + "popularity": 6.7178 + }, + { + "id": 40978, + "title": "Emmanuelle 4", + "originalTitle": "Emmanuelle 4", + "overview": "In order to escape from her former lover Marc, Sylvia goes to Brazil where Dr. Santamo transforms her into the beautiful Emmanuelle...", + "posterPath": "/vAtkVmsxR1jWoMWMm07loHgW0bU.jpg", + "backdropPath": "/23qbrvlNPgR6s7RykEIWzONddpp.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1984-02-15", + "releaseYear": "1984", + "originalLanguage": "fr", + "voteAverage": 4.7, + "voteCount": 62, + "popularity": 6.7175 + }, + { + "id": 87267, + "title": "The Fixer", + "originalTitle": "The Fixer", + "overview": "Set in tsarist Russia around the turn of the century and based on a true story of a Russian Jewish peasant Yakov Bog who was wrongly imprisoned for a most unlikely crime - the “ritual murder” of a Gentile child in Kyiv. We witness the unrelenting detail of the peasant handyman's life in prison and see him gain in dignity as the efforts to humiliate him and make him confess fail.", + "posterPath": "/pLcke8F7THAxtEHtN8Tg6IaZ9if.jpg", + "backdropPath": "/9tg0OSfvyU4sZ0QXc8w0pk0ONpI.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1968-12-08", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 25, + "popularity": 6.7166 + }, + { + "id": 888097, + "title": "Slayers", + "originalTitle": "Slayers", + "overview": "A group of superstar influencers are drawn to a reclusive billionaire's mansion only to find themselves trapped in the lair of an evil vampire. The only way out is to be saved by a famous online gamer and an old school vampire hunter.", + "posterPath": "/1dgNc7FB5RMm6w4D6S0UpZhsUbW.jpg", + "backdropPath": "/nKdCl2roOng0DiLRgk4W3P4RTSi.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 14 + ], + "genres": [ + "Horror", + "Comedy", + "Fantasy" + ], + "releaseDate": "2022-10-21", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 4.055, + "voteCount": 82, + "popularity": 6.7163 + }, + { + "id": 10870, + "title": "Lucky Luke and the Daltons", + "originalTitle": "Les Dalton", + "overview": "Joe and Averell are the eldest and youngest of the four Dalton brothers, the worst outlaws in Wild West history...", + "posterPath": "/mWQR9eGbf9dTiceypaGKmVXzRVE.jpg", + "backdropPath": "/vTO1NvWhOR3CxrsnzZ1V8LwBjmC.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 37, + 12 + ], + "genres": [ + "Comedy", + "Western", + "Adventure" + ], + "releaseDate": "2004-11-08", + "releaseYear": "2004", + "originalLanguage": "fr", + "voteAverage": 3.67, + "voteCount": 358, + "popularity": 6.7162 + }, + { + "id": 646385, + "title": "Scream", + "originalTitle": "Scream", + "overview": "Twenty-five years after a streak of brutal murders shocked the quiet town of Woodsboro, a new killer has donned the Ghostface mask and begins targeting a group of teenagers to resurrect secrets from the town’s deadly past.", + "posterPath": "/1m3W6cpgwuIyjtg5nSnPx7yFkXW.jpg", + "backdropPath": "/ifUfE79O1raUwbaQRIB7XnFz5ZC.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2022-01-12", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.69, + "voteCount": 3627, + "popularity": 6.716 + }, + { + "id": 293167, + "title": "Kong: Skull Island", + "originalTitle": "Kong: Skull Island", + "overview": "Explore the mysterious and dangerous home of the king of the apes as a team of explorers ventures deep inside the treacherous, primordial island.", + "posterPath": "/r2517Vz9EhDhj88qwbDVj8DCRZN.jpg", + "backdropPath": "/nVodCGKYLpqNC8YwQAbivKlWCgZ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2017-03-08", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.55, + "voteCount": 10882, + "popularity": 6.7154 + }, + { + "id": 101299, + "title": "The Hunger Games: Catching Fire", + "originalTitle": "The Hunger Games: Catching Fire", + "overview": "After surviving the Hunger Games, Katniss and Peeta struggle with the consequences of their victory as unrest spreads across Panem. Forced back into the spotlight, they become symbols of hope and resistance while the Capitol prepares a new and deadly challenge that will change the future of the nation forever.", + "posterPath": "/vrQHDXjVmbYzadOXQ0UaObunoy2.jpg", + "backdropPath": "/eHaazLxM5LRMh0ySkVy7SK6wUWt.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2013-11-15", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 18028, + "popularity": 6.715 + }, + { + "id": 60308, + "title": "Moneyball", + "originalTitle": "Moneyball", + "overview": "The story of Oakland Athletics general manager Billy Beane's successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.", + "posterPath": "/4yIQq1e6iOcaZ5rLDG3lZBP3j7a.jpg", + "backdropPath": "/y5PH2cM3mHt2Q74lMzhuqQi93sh.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-09-23", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.285, + "voteCount": 5521, + "popularity": 6.715 + }, + { + "id": 332411, + "title": "I Am Wrath", + "originalTitle": "I Am Wrath", + "overview": "A man is out for justice after a group of corrupt police officers are unable to catch his wife's killer.", + "posterPath": "/6NvLA3BP5ktLaZ1qdLY0oHsaqwD.jpg", + "backdropPath": "/ox6qOu33CSE48bNcArrqqCp4NUB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2016-04-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.686, + "voteCount": 698, + "popularity": 6.7145 + }, + { + "id": 13313, + "title": "Beauty and the Beast: The Enchanted Christmas", + "originalTitle": "Beauty and the Beast: The Enchanted Christmas", + "overview": "Astonished to find the Beast has a deep-seeded hatred for the Christmas season, Belle endeavors to change his mind on the matter.", + "posterPath": "/l1Tb0fvnj9wnCgm5qnTRoO6OxDT.jpg", + "backdropPath": "/cJb3cXT8Zx3VdXTKDyR3O5SbVKv.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "1997-11-11", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 1068, + "popularity": 6.7141 + }, + { + "id": 979275, + "title": "Mob Land", + "originalTitle": "Mob Land", + "overview": "A sheriff tries to keep the peace when a desperate family man violently robs a pill mill with his brother-in-law, alerting an enforcer for the New Orleans mafia.", + "posterPath": "/mcz8oi9oCgq1wkA3Wz2kluE94pE.jpg", + "backdropPath": "/3mrli3xsGrAieQks7KsBUm2LpCg.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2023-08-04", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.561, + "voteCount": 90, + "popularity": 6.7114 + }, + { + "id": 101838, + "title": "Game Over", + "originalTitle": "Game Over", + "overview": "A movie inspired by a true crime - the coldblooded Heino double murder, committed by a group of teenagers - that shocked Finland in 2001.", + "posterPath": "/wynAEJiRerXCIMt2rAsC3rF8GMV.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2005-08-26", + "releaseYear": "2005", + "originalLanguage": "fi", + "voteAverage": 3.545, + "voteCount": 11, + "popularity": 6.7114 + }, + { + "id": 73, + "title": "American History X", + "originalTitle": "American History X", + "overview": "Derek Vineyard is paroled after serving 3 years in prison for killing two African-American men. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.", + "posterPath": "/x2drgoXYZ8484lqyDj7L1CEVR4T.jpg", + "backdropPath": "/6qHI1IYj7QlLSCwHRzkL62X175s.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1998-07-01", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 12186, + "popularity": 6.7104 + }, + { + "id": 1419027, + "title": "Attack 13", + "originalTitle": "วิญญาณเลขที่ 13", + "overview": "Bussaba, a volleyball player who enjoyed bullying others, was found dead by hanging in a gym, causing chaos and horror among other team members.", + "posterPath": "/o0xLAwiQzrVrizykDKWeaqMj38E.jpg", + "backdropPath": "/rC6ldrOrQGcCqgMOvAUV2Mi1Iw1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-06-13", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 5.2, + "voteCount": 15, + "popularity": 6.7091 + }, + { + "id": 795230, + "title": "Trust", + "originalTitle": "Trust", + "overview": "Set in the glamour of the New York and Paris art scenes, gallery owner Brooke Gatwick and her newscaster husband Owen Shore, face temptation, jealousy, twists and mystery when two seductive newcomers enter their lives.", + "posterPath": "/tVmymE4f7QgekI0Cp59lXtERspf.jpg", + "backdropPath": "/8sqvC5hU5QOkYHUnhZIoFKz87BA.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10749, + 18 + ], + "genres": [ + "Thriller", + "Romance", + "Drama" + ], + "releaseDate": "2021-03-12", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 231, + "popularity": 6.7087 + }, + { + "id": 2707, + "title": "Saint Paul", + "originalTitle": "Saint Paul", + "overview": "A biblical epic from the Book of Acts and Paul's epistles covering his conversion from Saul of Tarsus to his ministry to the Gentiles.", + "posterPath": "/fwrmEhATq607piAftxjkbixUuJa.jpg", + "backdropPath": "/nifNDMkncTF3uFmkav4BZrd4Mg.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10770 + ], + "genres": [ + "Adventure", + "Drama", + "TV Movie" + ], + "releaseDate": "2000-12-03", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 31, + "popularity": 6.7085 + }, + { + "id": 36648, + "title": "Blade: Trinity", + "originalTitle": "Blade: Trinity", + "overview": "For years, Blade has fought against the vampires in the cover of the night. But now, after falling into the crosshairs of the FBI, he is forced out into the daylight, where he is driven to join forces with a clan of human vampire hunters he never knew existed—The Nightstalkers. Together with Abigail and Hannibal, two deftly trained Nightstalkers, Blade follows a trail of blood to the ancient creature that is also hunting him—the original vampire, Dracula.", + "posterPath": "/6f7iXvPOnf83MaLB1JmPzUor1rr.jpg", + "backdropPath": "/63eAFgJtN6ZTyFFzlAOoZLhlYqc.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 878 + ], + "genres": [ + "Action", + "Horror", + "Science Fiction" + ], + "releaseDate": "2004-12-08", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 4149, + "popularity": 6.7074 + }, + { + "id": 17907, + "title": "The Raven", + "originalTitle": "The Raven", + "overview": "A brilliant but deranged neurosurgeon becomes obsessively fixated on a judge's daughter. With the help of an escaped criminal whose face he has surgically deformed, the mad man lures her, her father, and her fiancé to his isolated, castle-like home.", + "posterPath": "/iVMNfBvKe4XXxi4zrMytZ1c6ejO.jpg", + "backdropPath": "/lEmvsrSbOvmCj0c2iu2XA5p4NPx.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1935-07-08", + "releaseYear": "1935", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 149, + "popularity": 6.707 + }, + { + "id": 200395, + "title": "Ninpuu Sentai Hurricaneger Shushuuto: The Movie", + "originalTitle": "忍風戦隊ハリケンジャー シュシュッと THE MOVIE", + "overview": "The second film outing of the Hurricaneger team. Hurricaneger the theatrical movie introduces new, original hardware and characters, including \"Tenrai Senpuujin,\" the Gattai Robot. Sayaka Yoshino guest stars!", + "posterPath": "/iwbwABFVMzq3DRQa8L8o87tU3g.jpg", + "backdropPath": "/u8d5TAVprQGke6fZvAqvsKvU31Q.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "Fantasy" + ], + "releaseDate": "2002-08-17", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 6.7068 + }, + { + "id": 402331, + "title": "Hard Target 2", + "originalTitle": "Hard Target 2", + "overview": "Forced into a deadly cat-and-mouse game, a disgraced mixed martial arts fighter is hunted through the jungles of Southeast Asia.", + "posterPath": "/jO8C2AIIdFyi5ceI6whev0RYt0k.jpg", + "backdropPath": "/jMLvLxu1nc26mRoJg5Hka0NJcNd.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2016-07-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.213, + "voteCount": 296, + "popularity": 6.7067 + }, + { + "id": 12230, + "title": "One Hundred and One Dalmatians", + "originalTitle": "One Hundred and One Dalmatians", + "overview": "When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.", + "posterPath": "/kSlYq6FrBUviGSEh8v4L9nrSnBT.jpg", + "backdropPath": "/cZgUATpU4NDlsfGj7sRriKJEiLB.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 35, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1961-01-25", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 7.175, + "voteCount": 6513, + "popularity": 6.7067 + }, + { + "id": 167693, + "title": "Kamen Rider Fourze The Movie: It’s Space Time, Everybody!", + "originalTitle": "仮面ライダーフォーゼ THE MOVIE みんなで宇宙キターッ!", + "overview": "The Earth is threatened by the mysterious Space Ironmen brothers, and the Kamen Rider Club goes to the space to avoid them to be awakened. However, an agent of the Alicia Federation, Inga Blink, tries to stop them. Kamen Rider Forze and Meteor fight for the destiny of the Earth and for the friendship of all beings.", + "posterPath": "/GK4kMKI06G9QCiMfOFuoVyq58B.jpg", + "backdropPath": "/mXlj2m222WzKpB0YIROV8lPrKhj.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2012-08-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 10, + "popularity": 6.7066 + }, + { + "id": 159824, + "title": "Hotel Transylvania 2", + "originalTitle": "Hotel Transylvania 2", + "overview": "When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together, Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.", + "posterPath": "/3nFnrivNgipSKZ8LZJJbRSlAcTR.jpg", + "backdropPath": "/ymHTXJabZagpXvXIR0litdXC8BT.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2015-09-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 5978, + "popularity": 6.7052 + }, + { + "id": 574451, + "title": "Turtles All the Way Down", + "originalTitle": "Turtles All the Way Down", + "overview": "Aza confronts her potential for love, happiness, friendship, and hope while navigating an endless barrage of invasive, obsessive thoughts.", + "posterPath": "/tDKlFXWCvIkP2Xl2nMdI49kzwZx.jpg", + "backdropPath": "/yt5LbZJkZdnSQiLo3t892l7Rhr7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2024-04-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.307, + "voteCount": 197, + "popularity": 6.705 + }, + { + "id": 537406, + "title": "Love Jacked", + "originalTitle": "Love Jacked", + "overview": "Maya, a headstrong 28-year-old with artistic ambitions – a strong contrast to what her father Ed wants: a dutiful daughter to run the family store. Ed is shocked when Maya takes her assertions of independence a step further and decides to travel to Africa for inspiration and returns with a fiancé who is not quite what he seems.", + "posterPath": "/quGrtVer6MPfAY6gEDm0JA1ugZ5.jpg", + "backdropPath": "/vwwjjJqmle15BnkGqAvwDnkphA7.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2018-12-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 155, + "popularity": 6.7047 + }, + { + "id": 408873, + "title": "Kings", + "originalTitle": "Kings", + "overview": "A foster family in South Central a few weeks before the city erupts in violence following the verdict of the Rodney King trial in 1992.", + "posterPath": "/sEQIshX0y64hYjjDbE1KqevW04e.jpg", + "backdropPath": "/f55oVptYgeiJMUfKSGlgrrkeJox.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 80 + ], + "genres": [ + "Romance", + "Drama", + "Crime" + ], + "releaseDate": "2017-11-11", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 157, + "popularity": 6.7046 + }, + { + "id": 688, + "title": "The Bridges of Madison County", + "originalTitle": "The Bridges of Madison County", + "overview": "Photographer Robert Kincaid wanders into the life of housewife Francesca Johnson for four days in the 1960s.", + "posterPath": "/teGMLWvCnJqvtPYCSuUKRM9MvFe.jpg", + "backdropPath": "/4TnGcUsyd6ixuLWHaaEG5BGkAIp.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1995-06-02", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.71, + "voteCount": 2281, + "popularity": 6.7043 + }, + { + "id": 281957, + "title": "The Revenant", + "originalTitle": "The Revenant", + "overview": "In the 1820s, a frontiersman, Hugh Glass, sets out on a path of vengeance against those who left him for dead after a bear mauling.", + "posterPath": "/ji3ecJphATlVgWNY0B0RVXZizdf.jpg", + "backdropPath": "/mNQtUJv1F3u0uSKILFrGjIHqkxx.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 18, + 12 + ], + "genres": [ + "Western", + "Drama", + "Adventure" + ], + "releaseDate": "2015-12-25", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.538, + "voteCount": 18814, + "popularity": 6.704 + }, + { + "id": 39446, + "title": "At Risk", + "originalTitle": "At Risk", + "overview": "Detective Win Garano is asked to reopen a twenty-year-old murder case, and soon finds himself endangered by the political ambitions of a district attorney.", + "posterPath": "/wDNQd71WIGBBSK62UEUMzye0Py3.jpg", + "backdropPath": "/8zoyL9tUn87raaNuusKbAFUwKuB.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 10770 + ], + "genres": [ + "Crime", + "Mystery", + "TV Movie" + ], + "releaseDate": "2010-05-19", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 4.447, + "voteCount": 19, + "popularity": 6.7033 + }, + { + "id": 757750, + "title": "Maria Chapdelaine", + "originalTitle": "Maria Chapdelaine", + "overview": "In 1910, Maria Chapdelaine, a young girl of seventeen, lived with her family on the banks of the Péribonka River, north of Lake Saint-Jean. The Chapdelaines work tirelessly to push the limits of the forest. In a home where even physical exhaustion cannot dampen the warmth of family life, Maria, strong and full of hope, finds herself faced with major dilemmas. Thrust into the world of adults, Maria will suddenly be forced to decide on her future as a woman.", + "posterPath": "/vkdITEw7yrL6EV16Uxzdpt1HUbi.jpg", + "backdropPath": "/6PpJNFydxwV8giI9MVZjqWI22UZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2021-09-24", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 19, + "popularity": 6.7031 + }, + { + "id": 615777, + "title": "Babylon", + "originalTitle": "Babylon", + "overview": "A tale of outsized ambition and outrageous excess, tracing the rise and fall of multiple characters in an era of unbridled decadence and depravity during Hollywood's transition from silent films to sound films in the late 1920s.", + "posterPath": "/wjOHjWCUE0YzDiEzKv8AfqHj3ir.jpg", + "backdropPath": "/5fxTB08O7CW1hAcN2MWOKodp1h1.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-12-22", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.371, + "voteCount": 3546, + "popularity": 6.7031 + }, + { + "id": 528091, + "title": "The Furies", + "originalTitle": "The Furies", + "overview": "A young woman faces her darkest fears with seven other unwilling participants in a deadly game — a game that can only have one winner.", + "posterPath": "/az3rk3vp1DmhM3KmpPNfDWW6mhN.jpg", + "backdropPath": "/xplBg3eJlww2uOxdnnPwwe1LPPn.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 53 + ], + "genres": [ + "Horror", + "Action", + "Thriller" + ], + "releaseDate": "2019-04-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 193, + "popularity": 6.703 + }, + { + "id": 92180, + "title": "The Game Is Over", + "originalTitle": "La Curée", + "overview": "Renee Saccard is a pampered, selfish young wife of a middle-aged Parisian businessman who falls in love with her stepson but is driven to the point of madness when her husband tricks the stepson into betraying her.", + "posterPath": "/ibMcsIw2Bv8y3c6Rz9mDLJvv0hb.jpg", + "backdropPath": "/ihy700oymuKXqvyd0Io7RlICqcC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1966-06-22", + "releaseYear": "1966", + "originalLanguage": "fr", + "voteAverage": 4.933, + "voteCount": 15, + "popularity": 6.703 + }, + { + "id": 12413, + "title": "Gods", + "originalTitle": "Dioses", + "overview": "A Peruvian teen lusts after his wild sister while the new wife of their difficult, wealthy father tries to hide her lower-class background.", + "posterPath": "/b2aiTi7Dk4SRgePmXE6tgqFyvGZ.jpg", + "backdropPath": "/1sJOQSaI8Bp2jjteg1tT5akVf9B.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-08-10", + "releaseYear": "2008", + "originalLanguage": "es", + "voteAverage": 4.9, + "voteCount": 16, + "popularity": 6.703 + }, + { + "id": 34125, + "title": "Vampire Journals", + "originalTitle": "Vampire Journals", + "overview": "A 19th century vampire stalks a more powerful vampire lord in his quest to gain revenge over the death of his mistress. In his search for the vampire lord in Eastern Europe he kills many of his servants and fellow vampires while cursing another to vampirism as well.", + "posterPath": "/1j65WMTXupjxmHatl7sFMqHStio.jpg", + "backdropPath": "/qEAZDexknZWPpcNlrfJll6MYSTI.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14, + 53 + ], + "genres": [ + "Horror", + "Fantasy", + "Thriller" + ], + "releaseDate": "1997-02-25", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 4.859, + "voteCount": 64, + "popularity": 6.7027 + }, + { + "id": 34012, + "title": "The Appaloosa", + "originalTitle": "The Appaloosa", + "overview": "A man tries to recover a horse stolen from him by a Mexican bandit.", + "posterPath": "/uCxvQAKOltwQ7vPIocW6CVe2cxO.jpg", + "backdropPath": "/3p3yFs26AVDE8RP6ANT0NOETrlx.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1966-09-15", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 6.29, + "voteCount": 69, + "popularity": 6.7026 + }, + { + "id": 9820, + "title": "The Parent Trap", + "originalTitle": "The Parent Trap", + "overview": "Hallie Parker and Annie James are identical twins who were separated at a young age due to their parents' divorce. Unbeknownst to their parents, the girls are sent to the same summer camp, where they meet, discover the truth about their relationship, and come up with a plan to switch places in an effort to reunite their mother and father.", + "posterPath": "/dNqgjqxHIdfsQRQL5XTujNfX9pj.jpg", + "backdropPath": "/y3zUOMWRoI2vC4ck2GBJyFWhzyA.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 10749 + ], + "genres": [ + "Comedy", + "Family", + "Romance" + ], + "releaseDate": "1998-07-28", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.216, + "voteCount": 4391, + "popularity": 6.7021 + }, + { + "id": 41280, + "title": "Private Lessons", + "originalTitle": "Private Lessons", + "overview": "Phillip Filmore is a naive, 15-year-old, preoccupied with sex, who develops a crush on Nicole Mallow, the new 30-something, French housekeeper and sitter to look after him when Phillip's father is out of town for the summer on a \"business\" trip. But Mr. Filmore's unscrupulous chauffeur, Lester Lewis, takes advantage of Phillip's crush on Nicole to hire her to seduce the youth, then draws her into a plot to fake her own death in a blackmail scheme aimed to drain Phillip's trust fund.", + "posterPath": "/dTkBOgOv3tpCnfMY6kX2MCYibo3.jpg", + "backdropPath": "/oKg3E47uyDdN5MLUlJEdvRw6Hat.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1981-05-01", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 127, + "popularity": 6.7017 + }, + { + "id": 846250, + "title": "Fire Island", + "originalTitle": "Fire Island", + "overview": "A group of queer best friends gather in the Fire Island Pines for their annual week of love and laughter. However, desires, dramas, drink and drugs push their bonds to the limits.", + "posterPath": "/2vVUdYoqUX5rK8plxPGERGGjQLI.jpg", + "backdropPath": "/4uwOKYaySkczmZ5C4EO50Ay3IoT.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2022-06-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 266, + "popularity": 6.7006 + }, + { + "id": 14913, + "title": "Boogeyman 2", + "originalTitle": "Boogeyman 2", + "overview": "A young woman attempts to cure her phobia of the boogeyman by checking herself into a mental health facility, only to realize too late that she is now helplessly trapped with her own greatest fear.", + "posterPath": "/zPtDUBYzbbTnTsLXIfoOHGg8Gux.jpg", + "backdropPath": "/tu0ci5qZNsozmMvGpLU3SX0Vyz1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2007-10-20", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.47, + "voteCount": 288, + "popularity": 6.7005 + }, + { + "id": 9104, + "title": "Buffalo Soldiers", + "originalTitle": "Buffalo Soldiers", + "overview": "A criminal subculture operates among U.S. soldiers stationed in West Germany just before the fall of the Berlin wall.", + "posterPath": "/qNl4T8xxC0xDeX8JFJVCBzH4Kg8.jpg", + "backdropPath": "/7Pw5NOv7aUtmHyh1yASEldOlAz0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10752, + 80, + 53 + ], + "genres": [ + "Drama", + "Comedy", + "War", + "Crime", + "Thriller" + ], + "releaseDate": "2002-10-31", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.26, + "voteCount": 340, + "popularity": 6.6998 + }, + { + "id": 351339, + "title": "Anthropoid", + "originalTitle": "Anthropoid", + "overview": "In December 1941, Czech soldiers Jozef Gabčík and Jan Kubiš parachute into their occupied homeland to assassinate Nazi officer Reinhard Heydrich.", + "posterPath": "/5hUghRVVkBYufftfNQkGevY5AmE.jpg", + "backdropPath": "/lTjRJ18JzsSfpwIdhCjv5BAMs03.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 53, + 10752 + ], + "genres": [ + "History", + "Thriller", + "War" + ], + "releaseDate": "2016-08-12", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 1100, + "popularity": 6.6996 + }, + { + "id": 76163, + "title": "The Expendables 2", + "originalTitle": "The Expendables 2", + "overview": "Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.", + "posterPath": "/74rTIGyGoIu5KSxDVMdr8H3MtMo.jpg", + "backdropPath": "/ihKsZZYMbyHXC1L7s90WDLITdC5.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2012-08-08", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 6977, + "popularity": 6.6993 + }, + { + "id": 51578, + "title": "Happy End", + "originalTitle": "Happy End", + "overview": "A dark comedy about a murder and its consequences presented in a backwards manner, where death is actually a rebirth. The film starts with an \"execution\" of the main protagonist and goes back to explore his previous actions and motivations.", + "posterPath": "/ikM5PK5fahvlAfZhQdUINqBqboJ.jpg", + "backdropPath": "/mp9mPkuVZL382O8Xq9Bu295QSgW.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1967-09-01", + "releaseYear": "1967", + "originalLanguage": "cs", + "voteAverage": 7.481, + "voteCount": 54, + "popularity": 6.6992 + }, + { + "id": 583268, + "title": "Someone, Somewhere", + "originalTitle": "Deux moi", + "overview": "Rémy and Mélanie live next door to each other in Paris but have never met. The two thirty-year-old Parisians search for connections online, but never have much success. Falling deeper into loneliness and depression, both decide to start attending regular therapy. With the help of their therapists, they uncover the real roots of their issues, and find that the connection they were both searching for is much closer than they thought.", + "posterPath": "/fvLIx12fkIbroJ6mPIFdOryfFzG.jpg", + "backdropPath": "/vMgpILNM1lMfGgYlNrQUF67fU9x.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 35 + ], + "genres": [ + "Drama", + "Romance", + "Comedy" + ], + "releaseDate": "2019-09-11", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.402, + "voteCount": 692, + "popularity": 6.6991 + }, + { + "id": 26198, + "title": "The Keep", + "originalTitle": "The Keep", + "overview": "Set during World War II, a German army garrison is sent to guard a mountain pass in a village in Romania's Carpathian mountains and sets up barracks in an ancient stone fortress. Two of the soldiers unwittingly release a mysterious entity that kills or corrupts those within its influence, drawing the attention of a Gestapo commander, a Jewish scholar, and a mysterious traveller.", + "posterPath": "/yd9wU3oajNxwaFHQ02rtTBuSFJD.jpg", + "backdropPath": "/iQYwVxXDSBMfZB4JTW5LRi7sBZR.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14 + ], + "genres": [ + "Horror", + "Fantasy" + ], + "releaseDate": "1983-12-16", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 294, + "popularity": 6.6985 + }, + { + "id": 11044, + "title": "Arizona Dream", + "originalTitle": "Arizona Dream", + "overview": "An Inuit hunter races his sled home with a fresh-caught halibut. This fish pervades the entire film, in real and imaginary form. Meanwhile, Axel tags fish in New York as a naturalist's gofer. He's happy there, but a messenger arrives to bring him to Arizona for his uncle's wedding. It's a ruse to get Axel into the family business. In Arizona, Axel meets two odd women: vivacious, needy, and plagued by neuroses and familial discord. He gets romantically involved with one, while the other, rich but depressed, plays accordion tunes to a gaggle of pet turtles.", + "posterPath": "/jNhRjc1Q9l6tFo5aHdl8UZJPdKy.jpg", + "backdropPath": "/i4VUKbHE2XFwX5LRkTg3oRE9opN.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 18, + 10749 + ], + "genres": [ + "Fantasy", + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1993-01-06", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.164, + "voteCount": 733, + "popularity": 6.6985 + }, + { + "id": 5333, + "title": "Apartment Zero", + "originalTitle": "Apartment Zero", + "overview": "In a rundown area of Buenos Aires, at the dawn of the 1980s, Adrian LeDuc owns both a struggling movie theater and a shabby apartment building filled with eccentric, squabbling tenants. To make ends meet, Adrian takes in a roommate, Jack Carney, but soon begins to suspect that the quiet American is responsible for a series of political assassinations that are rocking the city.", + "posterPath": "/cVXGyReSl955Wr2c8ythuxRmJRK.jpg", + "backdropPath": "/jjyP7XNS6JZMsgZHukU8RHtEPo5.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 27 + ], + "genres": [ + "Thriller", + "Drama", + "Horror" + ], + "releaseDate": "1989-09-02", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 54, + "popularity": 6.698 + }, + { + "id": 11667, + "title": "Street Fighter", + "originalTitle": "Street Fighter", + "overview": "Colonel Guile and various other martial arts heroes fight against the tyranny of dictator M. Bison and his cohorts.", + "posterPath": "/6yh95dD2Y6uWAlPfWCZZygBM1ec.jpg", + "backdropPath": "/vmXRiIs6alZFDtlHlUT3Tx5rHww.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Thriller" + ], + "releaseDate": "1994-12-23", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 4.659, + "voteCount": 1562, + "popularity": 6.6972 + }, + { + "id": 36885, + "title": "Schoolgirls Growing Up", + "originalTitle": "Schulmädchen-Report 3. Teil: Was Eltern nicht mal ahnen", + "overview": "A group of teenage girls at camp discuss their various sexual escapades while they read a new journal about sex has been published to help teenagers understand the consequences of sex.", + "posterPath": "/1inpIEseO6Hy1PST01sSs7VbGoO.jpg", + "backdropPath": "/15N98I8Hct39Tek2CtWbTgsy34a.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1972-02-17", + "releaseYear": "1972", + "originalLanguage": "de", + "voteAverage": 4.2, + "voteCount": 28, + "popularity": 6.6955 + }, + { + "id": 27711, + "title": "Killjoy", + "originalTitle": "Killjoy", + "overview": "Deep in an inner city hell, a ghastly figure is killing off the bad guys. A vigilante, or a demon? For the beautiful high school student, Jada, that's the question that will bring her face to face with the killer clown Killjoy.", + "posterPath": "/3oN0u5ok4spH5g4ZkwjcNcwfUzy.jpg", + "backdropPath": "/hvc6BJdcDo9FxxHu8cUkil4oQx1.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2000-10-24", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 3.089, + "voteCount": 62, + "popularity": 6.6954 + }, + { + "id": 45556, + "title": "Arctic Blast", + "originalTitle": "Arctic Blast", + "overview": "When a solar eclipse sends a colossal blast of super chilled air towards the earth, it then sets off a catastrophic chain of events that threatens to engulf the world in ice and begin a new Ice Age.", + "posterPath": "/54JrDQq3ISxwTAHz0yfbFNhBC7f.jpg", + "backdropPath": "/w5V2vQLPPugskBbB20A5HAS5f9z.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28 + ], + "genres": [ + "Science Fiction", + "Action" + ], + "releaseDate": "2010-08-04", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 199, + "popularity": 6.6953 + }, + { + "id": 54129, + "title": "Shadow Fury", + "originalTitle": "Shadow Fury", + "overview": "Madsen, a bounty hunter with a bad liver and an even worse attitude, with the help of the lovely Dr. Forster, must stop Dr. Oh and Takeru and restore order to the world.", + "posterPath": null, + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 53, + 878 + ], + "genres": [ + "Fantasy", + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2001-10-30", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 13, + "popularity": 6.6951 + }, + { + "id": 40140, + "title": "Marooned", + "originalTitle": "Marooned", + "overview": "After spending several months in an orbiting lab, three astronauts prepare to return to Earth only to find their de-orbit thrusters won't activate. After initially thinking they might have to abandon them in orbit, NASA decides to launch a daring rescue. Their plans are complicated by a hurricane headed towards the launch site—and a shrinking air supply in the astronauts' capsule.", + "posterPath": "/lFnHHKGzTXg4TND5YiS2KYs8AMJ.jpg", + "backdropPath": "/d5agxNrduE1LdnXmgN8QNRiSlL9.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 878 + ], + "genres": [ + "Adventure", + "Drama", + "Science Fiction" + ], + "releaseDate": "1969-12-11", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 100, + "popularity": 6.6933 + }, + { + "id": 11223, + "title": "Coma", + "originalTitle": "Coma", + "overview": "When relatively healthy patients begin having 'complications' during simple operations and ending up in comas, a concerned doctor defies her male superiors when she suspects a secret plot.", + "posterPath": "/kNMfXPm1f8OgVYFU4aEhmP9TJzO.jpg", + "backdropPath": "/vU6ZnOUcuP4RgB5esrWinzxWZUW.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "1978-01-06", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 437, + "popularity": 6.6918 + }, + { + "id": 1361253, + "title": "All I Need for Christmas", + "originalTitle": "All I Need for Christmas", + "overview": "Struggling singer/songwriter Maggie is worried she's unable to compete with such a tech-savvy world. Upon returning home to help her parents on their farm she meets Archer, an entrepreneur who has come back to town to spend the holidays alone.", + "posterPath": "/qH9VoUVO2rOVT3BrzP2SHOHtwrL.jpg", + "backdropPath": "/xXJ2KWQeC8PPHVOBsyRVXxYLi3D.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 35, + 10749 + ], + "genres": [ + "TV Movie", + "Comedy", + "Romance" + ], + "releaseDate": "2024-12-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 23, + "popularity": 6.6911 + }, + { + "id": 14169, + "title": "Arizona Colt", + "originalTitle": "Arizona Colt", + "overview": "Arizona Colt heads for Blackstone City where Gordon is planning a robbery. When one of Gordon's henchmen murders a saloon girl, Arizona offers to hunt down the killer.", + "posterPath": "/i184Iiiyid7dqquZjk7XPj7v6QZ.jpg", + "backdropPath": "/f6dX7CoSTWG4nKeogfv67WbLHCg.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1966-08-27", + "releaseYear": "1966", + "originalLanguage": "it", + "voteAverage": 6.2, + "voteCount": 22, + "popularity": 6.6904 + }, + { + "id": 141914, + "title": "Stella Dallas", + "originalTitle": "Stella Dallas", + "overview": "An eccentric lower class woman struggles to gain respect in high society after marrying a wealthy man, and the problem gets worse when their daughter starts growing up.", + "posterPath": "/3daY70jvLemQLQDugD1C8spUBoP.jpg", + "backdropPath": "/2Bq05WTbg7GhYjPPQTNz5cCDNQ1.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1925-11-16", + "releaseYear": "1925", + "originalLanguage": "en", + "voteAverage": 7.115, + "voteCount": 14, + "popularity": 6.6895 + }, + { + "id": 16081, + "title": "Doctor Dolittle", + "originalTitle": "Doctor Dolittle", + "overview": "A veterinarian who can communicate with animals travels abroad to search for a giant sea snail.", + "posterPath": "/rViuZo27U8wcZHGuRliv9LfmhjV.jpg", + "backdropPath": "/6zuQ0AbgMqPvyldXz82NKvYtYqU.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 10751, + 35, + 14 + ], + "genres": [ + "Music", + "Family", + "Comedy", + "Fantasy" + ], + "releaseDate": "1967-12-05", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 6.238, + "voteCount": 193, + "popularity": 6.6894 + }, + { + "id": 1329336, + "title": "The Bad Guys: Haunted Heist", + "originalTitle": "The Bad Guys: Haunted Heist", + "overview": "The crafty Bad Guys crew embarks on a high-stakes Halloween heist to swipe a priceless amulet from a spooky mansion. What could go wrong?", + "posterPath": "/oEJC05CqPugMxC4rFu9r6r6vg6m.jpg", + "backdropPath": "/rI9Mh0Q0XAtqTiSgKI0M2fflO1X.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-10-02", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.952, + "voteCount": 146, + "popularity": 6.6889 + }, + { + "id": 730047, + "title": "Cyrano", + "originalTitle": "Cyrano", + "overview": "A man ahead of his time, Cyrano de Bergerac dazzles whether with ferocious wordplay at a verbal joust or with brilliant swordplay in a duel. But, convinced that his appearance renders him unworthy of the love of a devoted friend, the luminous Roxanne, Cyrano has yet to declare his feelings for her—and Roxanne has fallen in love, at first sight, with Christian.", + "posterPath": "/e4koV8iC2cCM57bqUnEnIL2a2zH.jpg", + "backdropPath": "/cfDQh8STZvzXtyr1iyb4cXzkLju.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2021-12-17", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.33, + "voteCount": 318, + "popularity": 6.6882 + }, + { + "id": 18570, + "title": "Food, Inc.", + "originalTitle": "Food, Inc.", + "overview": "Documentary filmmaker Robert Kenner examines how mammoth corporations have taken over all aspects of the food chain in the United States, from the farms where our food is grown to the chain restaurants and supermarkets where it's sold. Narrated by author and activist Eric Schlosser, the film features interviews with average Americans about their dietary habits, commentary from food experts like Michael Pollan and unsettling footage shot inside large-scale animal processing plants.", + "posterPath": "/zdwN4o7OGAZGJw9T64lRAGTEP8b.jpg", + "backdropPath": "/1xMMkeXynf8w11eXqEC3HCLhzt5.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2008-09-07", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.344, + "voteCount": 632, + "popularity": 6.688 + }, + { + "id": 15506, + "title": "Agnes Browne", + "originalTitle": "Agnes Browne", + "overview": "Set in Dublin in 1967, the story of feisty woman, who along with her seven children, learns to cope with adversity after the unexpected death of her husband.", + "posterPath": "/bgZ0lDvN0W8OLjPki1Me1JhtBrH.jpg", + "backdropPath": "/ylWm0EQNIrcIbjpeUhHKTfD1Ugw.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1999-11-08", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.197, + "voteCount": 32, + "popularity": 6.688 + }, + { + "id": 1001030, + "title": "Her Difference", + "originalTitle": "Différente", + "overview": "Katia, a 35-year-old researcher in a documentary production company, has a chaotic way of navigating her relationship with Fred, her boyfriend. When she takes part in a new project, she finally puts her difference into words – and this revelation will turn their life upside down.", + "posterPath": "/dMkYKdYFbVEu7CteaBPlWSORI0K.jpg", + "backdropPath": "/7VN39E3vcM4q9XBFOfH3PfdCZOP.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2025-06-11", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 7, + "voteCount": 10, + "popularity": 6.6877 + }, + { + "id": 183392, + "title": "Capturing Avatar", + "originalTitle": "Capturing Avatar", + "overview": "Capturing Avatar is a feature length behind-the-scenes documentary about the making of Avatar. It uses footage from the film's development, as well as stock footage from as far back as the production of Titanic in 1995. Also included are numerous interviews with cast, artists, and other crew members. The documentary was released as a bonus feature on the extended collector's edition of Avatar.", + "posterPath": "/26SMEXJl3978dn2svWBSqHbLl5U.jpg", + "backdropPath": "/axSaeKvV5xF3zGYwXaSF8rUxaO1.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2010-11-16", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 96, + "popularity": 6.6877 + }, + { + "id": 615761, + "title": "Undine", + "originalTitle": "Undine", + "overview": "Undine is a historian and tour guide at the Berlin City Museum specializing in urban development, while Christoph is an industrial diver. Linked by a love of the water, the two form an intense bond, which can only do so much to help Undine overcome the considerable baggage of her former affair.", + "posterPath": "/7PeaXj2EKef84zEZazxiGL8bXRH.jpg", + "backdropPath": "/laoolYvTVis3Ld5tVm8ACdBgdG7.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 10749 + ], + "genres": [ + "Fantasy", + "Drama", + "Romance" + ], + "releaseDate": "2020-07-01", + "releaseYear": "2020", + "originalLanguage": "de", + "voteAverage": 6.4, + "voteCount": 262, + "popularity": 6.6875 + }, + { + "id": 310568, + "title": "The Summer of Sangaile", + "originalTitle": "Sangailės vasara", + "overview": "Seventeen-year-old Sangaile is fascinated by stunt planes. She meets a girl her age at the summer aeronautical show, nearby her parents' lakeside villa. Sangaile allows Auste to discover her most intimate secret and in the process finds in her teenage love, the only person that truly encourages her to fly.", + "posterPath": "/uZbVPLFhUS2YgNRnQ5lFQp56io7.jpg", + "backdropPath": "/vKLoL2a3qM0vSh8aKx7K2mJVaPF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2015-07-29", + "releaseYear": "2015", + "originalLanguage": "lt", + "voteAverage": 6.4, + "voteCount": 107, + "popularity": 6.6875 + }, + { + "id": 9877, + "title": "Urban Legend", + "originalTitle": "Urban Legend", + "overview": "A college campus is plagued by a vicious serial killer murdering students in ways that correspond to various urban legends.", + "posterPath": "/dUvZDNU9G0njhM628NA5phASntq.jpg", + "backdropPath": "/sWYtXkNr4iGDd2khTqBxtoAM555.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "1998-09-25", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 5.727, + "voteCount": 1398, + "popularity": 6.686 + }, + { + "id": 439015, + "title": "Slender Man", + "originalTitle": "Slender Man", + "overview": "In a small town in Massachusetts, four high school girls perform a ritual in an attempt to debunk the lore of Slender Man. When one of the girls goes mysteriously missing, they begin to suspect that she is, in fact, his latest victim.", + "posterPath": "/huSncs4RyvQDBmHjBBYHSBYJbSJ.jpg", + "backdropPath": "/tQPDwl1jNZi59KoFT2oxDDnlqhG.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2018-05-17", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.299, + "voteCount": 2113, + "popularity": 6.684 + }, + { + "id": 60095, + "title": "Burke & Hare", + "originalTitle": "Burke & Hare", + "overview": "Two men go into business supplying medical colleges with cadavers by robbing graves.", + "posterPath": "/uNPB0L6sxkxPP5liyxh7jd2S3HF.jpg", + "backdropPath": "/aW1Cyu0Fi1ybO88hH3lfOxyqNDD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 36 + ], + "genres": [ + "Horror", + "Comedy", + "History" + ], + "releaseDate": "1972-02-03", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 5.025, + "voteCount": 20, + "popularity": 6.6837 + }, + { + "id": 845890, + "title": "Righteous Thieves", + "originalTitle": "Righteous Thieves", + "overview": "Annabel, the leader of a secret organization engaged in the recovery of priceless artwork, assembles a ragtag crew of art thieves to recover a Monet, Picasso, Degas, and Van Gogh stolen by Nazis during WWII and now in the possession of neo-Nazi billionaire oligarch Otto Huizen. As the planned heist approaches, loyalties are tested when the crew learns the real reason behind Annabel’s search for the long-lost paintings.", + "posterPath": "/lVDlngnmhQiG8GbnQBnFOAzpXLh.jpg", + "backdropPath": "/4pcBm5stZGXZiqhS57T9ekQi8mj.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2023-03-10", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.226, + "voteCount": 42, + "popularity": 6.6835 + }, + { + "id": 9656, + "title": "Black Christmas", + "originalTitle": "Black Christmas", + "overview": "As the residents of sorority house Pi Kappa Sigma prepare for the festive season, a stranger begins a series of obscene phone calls with dubious intentions...", + "posterPath": "/ggxi18MGqi0lucWvfsdYkzSdGUJ.jpg", + "backdropPath": "/zhRCgJJqNyMV3GZjk5YX61IV7SU.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2006-12-15", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.165, + "voteCount": 587, + "popularity": 6.6832 + }, + { + "id": 422619, + "title": "Jonathan", + "originalTitle": "Jonathan", + "overview": "Jonathan is a young man with a strange condition that only his brother understands. But when he begins to yearn for a different life, their unique bond becomes increasingly tested.", + "posterPath": "/nTd0PBJkA1HLM9yImDnRZDzGAwb.jpg", + "backdropPath": "/dCSmuAoO7NMkDkkuMQA0J48Ba9E.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878 + ], + "genres": [ + "Drama", + "Science Fiction" + ], + "releaseDate": "2018-11-08", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.891, + "voteCount": 206, + "popularity": 6.683 + }, + { + "id": 593395, + "title": "Diabolik", + "originalTitle": "Diabolik", + "overview": "1960s, the city of Clerville. The forthcoming visit of heiress Eva Kant, who'll be bringing a famous pink diamond with her, catches the attention of Diabolik, the infallible and elusive thief whose real identity is unknown: while trying to steal the jewel, he finds himself bewitched by Eva's charm, a feeling she may be reciprocating. But the police, led by relentless Inspector Ginko, is rapidly closing in on him...", + "posterPath": "/9bOwV2V9r6LikmKHMDgmu9jcE92.jpg", + "backdropPath": "/6H1D7eAHNae6omWLGJBcUtoEkXo.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 9648, + 53 + ], + "genres": [ + "Crime", + "Action", + "Mystery", + "Thriller" + ], + "releaseDate": "2021-12-16", + "releaseYear": "2021", + "originalLanguage": "it", + "voteAverage": 6.1, + "voteCount": 609, + "popularity": 6.6816 + }, + { + "id": 96599, + "title": "Eden", + "originalTitle": "Eden", + "overview": "After a night out with friends, Hyun Jae accepts a late night ride home from a young fire fighter. What begins as a night of promise quickly turns into a nightmare when she is abducted and imprisoned outside Las Vegas as a sex slave.", + "posterPath": "/6MWSeVg9KESHpS3wXz4uwSlpd3f.jpg", + "backdropPath": "/phUPfeWUxoaW5AylEby4kcuva1r.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 80 + ], + "genres": [ + "Thriller", + "Drama", + "Crime" + ], + "releaseDate": "2013-03-20", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 223, + "popularity": 6.68 + }, + { + "id": 10679, + "title": "Iron Sky", + "originalTitle": "Iron Sky", + "overview": "In the last moments of World War II, a secret Nazi space program evaded destruction by fleeing to the Dark Side of the Moon. During 70 years of utter secrecy, the Nazis construct a gigantic space fortress with a massive armada of flying saucers.", + "posterPath": "/hVDJM29BSbET4FzI24xLuWSmDUR.jpg", + "backdropPath": "/bMVhgI3jFvsoDeCseRsaxYR1nUA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 878 + ], + "genres": [ + "Action", + "Comedy", + "Science Fiction" + ], + "releaseDate": "2012-04-04", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.735, + "voteCount": 1700, + "popularity": 6.6793 + }, + { + "id": 256040, + "title": "Bāhubali: The Beginning", + "originalTitle": "బాహుబలి:ద బిగినింగ్", + "overview": "The young Shivudu is left as a foundling in a small village by his mother. By the time he’s grown up, it has become apparent that he possesses exceptional gifts. He meets the beautiful warrior princess Avanthika and learns that her queen has been held captive for the last 25 years. Shividu sets off to rescue her, discovering his own origins in the process.", + "posterPath": "/9BAjt8nSSms62uOVYn1t3C3dVto.jpg", + "backdropPath": "/e9ZEuHGHZ06AToHlfN1L7nejJ7W.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2015-07-10", + "releaseYear": "2015", + "originalLanguage": "te", + "voteAverage": 7.526, + "voteCount": 884, + "popularity": 6.6782 + }, + { + "id": 257, + "title": "Oliver Twist", + "originalTitle": "Oliver Twist", + "overview": "When 9-year-old orphan Oliver Twist dares to ask his cruel taskmaster, Mr. Bumble, for a second serving of gruel, he's hired out as an apprentice. Escaping that dismal fate, young Oliver falls in with the street urchin known as the Artful Dodger and his criminal mentor, Fagin. When kindly Mr. Brownlow takes Oliver in, Fagin's evil henchman Bill Sikes plots to kidnap the boy.", + "posterPath": "/zhPdYZ3x2uanhM1SyBj4CuL6hSa.jpg", + "backdropPath": "/s4H3XiCwHrjtMP4cBCO5L5tDVg3.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10751 + ], + "genres": [ + "Crime", + "Drama", + "Family" + ], + "releaseDate": "2005-09-23", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.743, + "voteCount": 1210, + "popularity": 6.6779 + }, + { + "id": 55615, + "title": "Burn Up", + "originalTitle": "BURN-UP", + "overview": "To the unsuspecting eye Maki, Reimi and Yuka may not look like ace crime fighters, which might explain why they're stuck on traffic patrol instead of more \"exciting\" police duties. All that changes when Yuka gets herself kidnapped by a white slave organization run by a politically connected businessman who's got the rest of the police cowed. Now it's up to Maki and Reimi to don skin-tight battle armor, liberate a tank, and make sure that a certain slaver learns that when you play with fire, you're going to get your ass burned!", + "posterPath": "/4v0rgZK5DtoE2UZ4dpwAcmTMQPO.jpg", + "backdropPath": "/ve2k73LkEfG1OTdS9mNIBArmQ1X.jpg", + "mediaType": "movie", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1991-03-21", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 15, + "popularity": 6.6772 + }, + { + "id": 145433, + "title": "Eyewitness", + "originalTitle": "Eyewitness", + "overview": "A boy who cries wolf witnesses a political assassination on the island of Malta. But will anyone other than his granddad believe him?", + "posterPath": "/q9DL4TxQi9Kxi3YAgWfQHjf4g76.jpg", + "backdropPath": "/cIeWrUyAtQBmt7VaUCSplabgZr0.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1970-06-05", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 17, + "popularity": 6.6762 + }, + { + "id": 623034, + "title": "The Haunted", + "originalTitle": "The Haunted", + "overview": "In a rambling, isolated house, Emily’s first night-shift as carer to an elderly dementia patient turns into a nightmare as she is tormented by a vengeful spirit and uncovers the house's dark secrets.", + "posterPath": "/1MSE3VYrosSTLL6Mze6hvKrIRyo.jpg", + "backdropPath": "/evHBqnuov1n2g6qCWboMOWs0Cvb.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "2018-10-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 75, + "popularity": 6.6759 + }, + { + "id": 194, + "title": "Amélie", + "originalTitle": "Le Fabuleux Destin d'Amélie Poulain", + "overview": "At a tiny Parisian café, the adorable yet painfully shy Amélie accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?", + "posterPath": "/vZ9NhNbQQ3yhtiC5sbhpy5KTXns.jpg", + "backdropPath": "/6n53UI4mX9QMfe2S0Pgt8mGebY1.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2001-04-25", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 7.913, + "voteCount": 12037, + "popularity": 6.6757 + }, + { + "id": 239573, + "title": "Unfinished Business", + "originalTitle": "Unfinished Business", + "overview": "A hard-working small business owner and his two associates travel to Europe to close the most important deal of their lives. But what began as a routine business trip goes off the rails in every imaginable – and unimaginable – way, including unplanned stops at a massive sex fetish event and a global economic summit.", + "posterPath": "/eVWVZf3fkx9eNqbHyn9xNlmC2h4.jpg", + "backdropPath": "/fPIuhCBHyAqZp93spcTTcABz13g.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-03-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 838, + "popularity": 6.6755 + }, + { + "id": 45657, + "title": "The Ward", + "originalTitle": "The Ward", + "overview": "Kristen, a troubled young woman, is captured by the police after burning down a farmhouse and is locked in the North Bend Psychiatric Hospital. Soon, she begins to suspect that the place has a dark secret at its core and she's determined to find out what it is.", + "posterPath": "/x2dqoY5cYop46SKebNXRNL5EXEM.jpg", + "backdropPath": "/qrcS0uQYNZrMdf0sOSN7Wt454fm.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2010-09-13", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.765, + "voteCount": 1262, + "popularity": 6.6752 + }, + { + "id": 138199, + "title": "Bellicher: Cel", + "originalTitle": "Bellicher: Cel", + "overview": "Michael Bellicher wakes up one morning to find out that his identity has been stolen. Soon he learns that the perpetrator is using his stolen ID for all kinds of illegal action. Michael tries to find out who is behind all this, when, to his horror, his credentials show up at the scene of a big terrorist attack. Suddenly he is public enemy number one…", + "posterPath": "/b32cw4LXhMIBD8xVe9gN3FiWGNv.jpg", + "backdropPath": "/i6UmPGz6rFFkT67iPf4TKdGP4SA.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2012-10-04", + "releaseYear": "2012", + "originalLanguage": "nl", + "voteAverage": 5.912, + "voteCount": 17, + "popularity": 6.675 + }, + { + "id": 8645, + "title": "The Happening", + "originalTitle": "The Happening", + "overview": "When a deadly airborne virus threatens to wipe out the northeastern United States, teacher Elliot Moore and his wife Alma flee from contaminated cities into the countryside in a fight to discover the truth. Is it terrorism, the accidental release of some toxic military bio weapon -- or something even more sinister?", + "posterPath": "/fP4nBrtmc0teSDDHzYmDE7TLQBT.jpg", + "backdropPath": "/6moXpp6y1EZ6pfnSxnKFMrbFnWv.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878 + ], + "genres": [ + "Thriller", + "Science Fiction" + ], + "releaseDate": "2008-06-11", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.395, + "voteCount": 3816, + "popularity": 6.6745 + }, + { + "id": 535265, + "title": "Killers Anonymous", + "originalTitle": "Killers Anonymous", + "overview": "A failed attempt to murder a Senator is connected to a group meeting secretly to discuss their darkest urges—to take lives.", + "posterPath": "/wpFabJf2J82j4qJyYIMFexmJ8BT.jpg", + "backdropPath": "/ahNBewkTuhp1ckP42MkKSit0ajX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80, + 9648 + ], + "genres": [ + "Action", + "Thriller", + "Crime", + "Mystery" + ], + "releaseDate": "2019-06-27", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.63, + "voteCount": 219, + "popularity": 6.673 + }, + { + "id": 64720, + "title": "Take Shelter", + "originalTitle": "Take Shelter", + "overview": "Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.", + "posterPath": "/dldIX0q5jewe8rSyCh8d5I1RYx3.jpg", + "backdropPath": "/7HtE5hLVTEvFKQC33wK7XAnIdFk.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 27 + ], + "genres": [ + "Thriller", + "Drama", + "Horror" + ], + "releaseDate": "2011-09-30", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.044, + "voteCount": 1892, + "popularity": 6.6724 + }, + { + "id": 9343, + "title": "Fitzcarraldo", + "originalTitle": "Fitzcarraldo", + "overview": "Fitzcarraldo is a dreamer who plans to build an opera house in Iquitos, in the Peruvian Amazon, so, in order to finance his project, he embarks on an epic adventure to collect rubber, a very profitable product, in a remote and unexplored region of the rainforest.", + "posterPath": "/oBCnYEKcg1rMhr5JjDnrRpilvDd.jpg", + "backdropPath": "/46iMqI1qzAtnXJxGRNCFwYNYqOo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 12 + ], + "genres": [ + "Drama", + "Adventure" + ], + "releaseDate": "1982-03-02", + "releaseYear": "1982", + "originalLanguage": "de", + "voteAverage": 7.6, + "voteCount": 838, + "popularity": 6.6717 + }, + { + "id": 42536, + "title": "Napoleon", + "originalTitle": "Napoléon", + "overview": "A biopic of Napoleon Bonaparte, tracing the Corsican's career from his schooldays (where a snowball fight is staged like a military campaign) to his flight from Corsica, through the French Revolution (where a real storm is intercut with a political storm) and the Terror, culminating in his triumphant invasion of Italy in 1797.", + "posterPath": "/x0duTwP9rjVpa2O13r1GK8j61qG.jpg", + "backdropPath": "/oO536cHICKUzvFQTdcymPBUaz9f.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752 + ], + "genres": [ + "Drama", + "History", + "War" + ], + "releaseDate": "1927-01-10", + "releaseYear": "1927", + "originalLanguage": "fr", + "voteAverage": 7.8, + "voteCount": 206, + "popularity": 6.6716 + }, + { + "id": 668489, + "title": "Havoc", + "originalTitle": "Havoc", + "overview": "When a drug heist swerves lethally out of control, a jaded cop fights his way through a corrupt city's criminal underworld to save a politician's son.", + "posterPath": "/ubP2OsF3GlfqYPvXyLw9d78djGX.jpg", + "backdropPath": "/7rKyFSg6SdLoCRCVoWLjL5k658k.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2025-04-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 1073, + "popularity": 6.6715 + }, + { + "id": 508830, + "title": "Kamen Rider Amazons The Movie: The Final Judgment", + "originalTitle": "仮面ライダーアマゾンズ THE MOVIE 最後ノ審判", + "overview": "The “Amazon Livestock Project,” a mysterious care facility, the Amazon extermination organization 4C (Competitive Creatures Control Center) pursuing Haruka Misuzawa . . . all come together in a tale of symbiosis and competition; the mortal combat between the carnivore and herbivore. And, finally, an end to the troubles and conflicts of the Riders, two beings confronting a fierce fate.", + "posterPath": "/x3bYKdMMMsHbR9BHINAlfHUFXeT.jpg", + "backdropPath": "/svfhFuGk7RgoYgZorB3QaqFA5a3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 27, + 9648 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "Horror", + "Mystery" + ], + "releaseDate": "2018-05-19", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 10, + "popularity": 6.6713 + }, + { + "id": 12508, + "title": "Rock Star", + "originalTitle": "Rock Star", + "overview": "A wannabe rock star who fronts a Pennsylvania-based tribute band is devastated when his bandmates kick him out of the group he founded. Things begin to look up for Izzy when he is asked to join Steel Dragon, the heavy metal rockers he had been imitating for so long. This film is loosely based on the true story of the band Judas Priest.", + "posterPath": "/8pRMweo9WA1MvYOLsD2hWyFpZ1V.jpg", + "backdropPath": "/oImvpyBfpXQgFevXWrh1adswdOn.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18, + 35 + ], + "genres": [ + "Music", + "Drama", + "Comedy" + ], + "releaseDate": "2001-09-04", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.724, + "voteCount": 790, + "popularity": 6.671 + }, + { + "id": 265195, + "title": "Wild Tales", + "originalTitle": "Relatos salvajes", + "overview": "Injustice and the demands of the world can cause stress for many people. Some of them, however, explode. This includes a waitress serving a grouchy loan shark, an altercation between two motorists, an ill-fated wedding reception, and a wealthy businessman who tries to buy his family out of trouble.", + "posterPath": "/ucFsh8uU0Lsw7zouQFaRrs2ElOs.jpg", + "backdropPath": "/dHnki2Dh6lbOtfksrh8H5lg08f5.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 35 + ], + "genres": [ + "Drama", + "Thriller", + "Comedy" + ], + "releaseDate": "2014-08-21", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 7.866, + "voteCount": 3599, + "popularity": 6.6705 + }, + { + "id": 345937, + "title": "Unleashed", + "originalTitle": "Unleashed", + "overview": "When a cosmic event turns Emma's dog and cat into two perfect guys, Emma reconsiders her outlook on dating, hilariously works out her trust issues, and ultimately learns to love herself.", + "posterPath": "/zpTg32caIadhYln2cLRKHWDkGHQ.jpg", + "backdropPath": "/23p68n4rJP8O3gve2ecRBJNL9MT.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 878 + ], + "genres": [ + "Romance", + "Comedy", + "Science Fiction" + ], + "releaseDate": "2017-08-25", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.116, + "voteCount": 69, + "popularity": 6.6704 + }, + { + "id": 954388, + "title": "Quicksand", + "originalTitle": "Arenas Mortales", + "overview": "A married couple on the brink of divorce becomes trapped in quicksand while hiking through a Colombian rainforest. It’s a struggle for survival as they battle the elements of the jungle and must work together in order to escape.", + "posterPath": "/cVLfO3CbVg8p5Qcaifq6AidOe2w.jpg", + "backdropPath": "/nKOutYdpjpxdeftoXcDnSAaD2z8.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 9648, + 18 + ], + "genres": [ + "Thriller", + "Horror", + "Mystery", + "Drama" + ], + "releaseDate": "2023-08-31", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.276, + "voteCount": 105, + "popularity": 6.6701 + }, + { + "id": 140846, + "title": "Company", + "originalTitle": "Company", + "overview": "Set in modern upper-crust Manhattan, an exploration of love and commitment as seen through the eyes of a charming perpetual bachelor questioning his single state and his enthusiastically married, slightly envious friends.", + "posterPath": "/kpvvHmWTnVAl9oEiGouQ1GZKvmf.jpg", + "backdropPath": "/2j9rtueSUQZdz5rEzfeMSgrDpl9.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2011-06-15", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 32, + "popularity": 6.6697 + }, + { + "id": 47007, + "title": "Deep Crimson", + "originalTitle": "Profundo carmesí", + "overview": "Driven by desire and desperate for self-love, Coral and Nicolás will abandon their past lives in a journey surrounded by murder.", + "posterPath": "/wxfwz8uObOEUyd5ECMAGl9aFYUj.jpg", + "backdropPath": "/yt89UgjbVUK021vK5prZDNO1ZZG.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1996-09-09", + "releaseYear": "1996", + "originalLanguage": "es", + "voteAverage": 6.8, + "voteCount": 46, + "popularity": 6.6692 + }, + { + "id": 12278, + "title": "Soul Man", + "originalTitle": "Soul Man", + "overview": "A white prospective grad student's affluent family won't pay his way through law school, so he takes tanning pills to darken his skin in order to qualify for an African-American scholarship at Harvard. He soon gets more than he bargained for, as he begins to learn what life is really like for blacks in America.", + "posterPath": "/d6jh6qiowC4QHePBgpy7Zrytbba.jpg", + "backdropPath": "/1lzCgkvj10jSMK3aXopNNAETTXH.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1986-10-24", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5.283, + "voteCount": 157, + "popularity": 6.6686 + }, + { + "id": 877703, + "title": "Teen Wolf: The Movie", + "originalTitle": "Teen Wolf: The Movie", + "overview": "The wolves are howling once again, as a terrifying ancient evil emerges in Beacon Hills. Scott McCall, no longer a teenager yet still an Alpha, must gather new allies and reunite trusted friends to fight back against this powerful and deadly enemy.", + "posterPath": "/wAkpPm3wcHRqZl8XjUI3Y2chYq2.jpg", + "backdropPath": "/yCGCtDRIaEHSPd5pO8NPfTML6Jh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 14, + 10770 + ], + "genres": [ + "Action", + "Fantasy", + "TV Movie" + ], + "releaseDate": "2023-01-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.493, + "voteCount": 916, + "popularity": 6.6685 + }, + { + "id": 288694, + "title": "La trattativa", + "originalTitle": "La trattativa", + "overview": "What are we talking about when we talk about negotiations? About the state's concessions to the Mafia in exchange for ending the massacres? About who assassinated Falcone and Borsellino? Of the eternal coexistence between the Mafia and politics? Between the mafia and the church? Between the Mafia and law enforcement? Or is there more? A group of actors enacts the most relevant episodes of the affair known as the Mafia-state negotiation, impersonating mobsters, secret service agents, high officials, magistrates, victims and murderers, Freemasons, honest and courageous people, and courageous people up to a point. Thus one of the most intricate events in our history becomes an exciting tale.", + "posterPath": "/ta8xdOBNhytQM409QWr8etJ9KIz.jpg", + "backdropPath": "/aa3ptpaJNz4wnn4oyixXUzCjO3k.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 99 + ], + "genres": [ + "Crime", + "Documentary" + ], + "releaseDate": "2014-10-02", + "releaseYear": "2014", + "originalLanguage": "it", + "voteAverage": 7.5, + "voteCount": 82, + "popularity": 6.6683 + }, + { + "id": 1244244, + "title": "Cloud", + "originalTitle": "Cloud クラウド", + "overview": "Ryōsuke Yoshii, an ordinary reseller, carelessly earns grudges by people and becomes entangled in a life-threatening struggle.", + "posterPath": "/bmUTHMmqiLWBo19U2y5kk2uqJbA.jpg", + "backdropPath": "/sAnpF9jooAGWA8pwuMK4aX2uLvA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 80, + 53, + 27 + ], + "genres": [ + "Action", + "Drama", + "Crime", + "Thriller", + "Horror" + ], + "releaseDate": "2024-09-27", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.861, + "voteCount": 72, + "popularity": 6.6679 + }, + { + "id": 801691, + "title": "Hellblazers", + "originalTitle": "Hellblazers", + "overview": "An evil cult unleashes a monster on a small south-western town that refuses to go down without a fight.", + "posterPath": "/7lAA0ANkfCzNwTsFjENAHM8PK3I.jpg", + "backdropPath": "/hsTjn0Z3m0jJ888GEvwKT4LnPq1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28 + ], + "genres": [ + "Horror", + "Action" + ], + "releaseDate": "2022-01-21", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 4.764, + "voteCount": 36, + "popularity": 6.6677 + }, + { + "id": 568160, + "title": "Weathering with You", + "originalTitle": "天気の子", + "overview": "The summer of his high school freshman year, Hodaka runs away from his remote island home to Tokyo, and quickly finds himself pushed to his financial and personal limits. The weather is unusually gloomy and rainy every day, as if taking its cue from his life. After many days of solitude, he finally finds work as a freelance writer for a mysterious occult magazine. Then, one day, Hodaka meets Hina on a busy street corner. This bright and strong-willed girl possesses a strange and wonderful ability: the power to stop the rain and clear the sky.", + "posterPath": "/qgrk7r1fV4IjuoeiGS5HOhXNdLJ.jpg", + "backdropPath": "/ize3ZieqSy0TCWljmVoEiy8fSFS.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 14, + 10749 + ], + "genres": [ + "Animation", + "Drama", + "Fantasy", + "Romance" + ], + "releaseDate": "2019-07-19", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.992, + "voteCount": 2507, + "popularity": 6.6672 + }, + { + "id": 11045, + "title": "Taxi", + "originalTitle": "Taxi", + "overview": "A mouthy and feisty taxicab driver has hot tips for a green and inept cop set on solving a string of New York City bank robberies committed by a quartet of female Brazilian bank robbers.", + "posterPath": "/eLDoNLJHZPcavTT1vJqZoGydoWB.jpg", + "backdropPath": "/tX9QP4WciyzzGlXlYFf5a8Q7w6V.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 53, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Thriller", + "Crime" + ], + "releaseDate": "2004-10-06", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.579, + "voteCount": 1120, + "popularity": 6.6669 + }, + { + "id": 7988, + "title": "The Island", + "originalTitle": "The Island", + "overview": "David Nau leads a band of modern day pirates who raid yachts and sail boats of people on vacation in the Caribbean. When reporter Blair Maynard and his son arrive to investigate the mystery of the disappearing boats, Nau and his band of raiders decide to induct them into their tribe.", + "posterPath": "/1sRdwKeWAfXEThF8v3Oz9qMUhIM.jpg", + "backdropPath": "/9MVGH5OR9DzWu7foCSHQBWcGztv.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 9648 + ], + "genres": [ + "Thriller", + "Horror", + "Mystery" + ], + "releaseDate": "1980-06-13", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 5.212, + "voteCount": 99, + "popularity": 6.6667 + }, + { + "id": 25884, + "title": "Feds!", + "originalTitle": "Feds!", + "overview": "Ellie DeWitt and Janis Zuckermann are admitted to the very strict FBI Training Academy. They get a hard course, in which they learn to deal with guns and to recognise crimes. They also get a physical training. It appears that Ellie is a real fighting- machine, in contrast with Janis, the great student. They have to help each other, all the way to graduation.", + "posterPath": "/6qMNwjNEOahviSeEGIWPEJ4NMM8.jpg", + "backdropPath": "/jaF13pAPK9ro4114R5ryixlTWfh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "1988-10-28", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 83, + "popularity": 6.6658 + }, + { + "id": 624, + "title": "Easy Rider", + "originalTitle": "Easy Rider", + "overview": "Wyatt and Billy, two Harley-riding hippies, complete a drug deal in Southern California and decide to travel cross-country in search of spiritual truth.", + "posterPath": "/mmGEB6ly9OG8SYVfvAoa6QqHNvN.jpg", + "backdropPath": "/qvTmYyYsv71qTq5syAq24k1kGk.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18 + ], + "genres": [ + "Adventure", + "Drama" + ], + "releaseDate": "1969-06-26", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 2084, + "popularity": 6.6632 + }, + { + "id": 335787, + "title": "Uncharted", + "originalTitle": "Uncharted", + "overview": "A young street-smart, Nathan Drake and his wisecracking partner Victor “Sully” Sullivan embark on a dangerous pursuit of “the greatest treasure never found” while also tracking clues that may lead to Nathan’s long-lost brother.", + "posterPath": "/rJHC1RUORuUhtfNb4Npclx0xnOf.jpg", + "backdropPath": "/fwrqW8Lp5VQuppFrODd4iJ8LySE.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12 + ], + "genres": [ + "Action", + "Adventure" + ], + "releaseDate": "2022-02-10", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.884, + "voteCount": 6505, + "popularity": 6.6627 + }, + { + "id": 834027, + "title": "Val", + "originalTitle": "Val", + "overview": "For over 40 years Val Kilmer, one of Hollywood’s most mercurial and/or misunderstood actors has been documenting his own life and craft through film and video. He has amassed thousands of hours of footage, from 16mm home movies made with his brothers, to time spent in iconic roles for blockbuster movies like Top Gun, The Doors, Tombstone, and Batman Forever. This raw, wildly original and unflinching documentary reveals a life lived to extremes and a heart-filled, sometimes hilarious look at what it means to be an artist and a complex man.", + "posterPath": "/vWJKmfmjpkFeTbUGep6t7w5TexA.jpg", + "backdropPath": "/gV2wSIlNMIUxEArKYrTF2NX4tjb.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2021-07-23", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.21, + "voteCount": 212, + "popularity": 6.6618 + }, + { + "id": 1359, + "title": "American Psycho", + "originalTitle": "American Psycho", + "overview": "A wealthy New York investment banking executive hides his alternate psychopathic ego from his co-workers and friends as he escalates deeper into his illogical, gratuitous fantasies.", + "posterPath": "/9uGHEgsiUXjCNq8wdq4r49YL8A1.jpg", + "backdropPath": "/alWtP7JwoanQyqXzg3PCbEFrfwS.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 80 + ], + "genres": [ + "Thriller", + "Drama", + "Crime" + ], + "releaseDate": "2000-04-13", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.408, + "voteCount": 11761, + "popularity": 6.6609 + }, + { + "id": 1427, + "title": "Perfume: The Story of a Murderer", + "originalTitle": "Perfume: The Story of a Murderer", + "overview": "Jean-Baptiste Grenouille, born in the stench of 18th century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. However, his work takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.", + "posterPath": "/2wrFrUej8ri5EpjgIkjKTAnr686.jpg", + "backdropPath": "/kvdy0Ijjo2r9qsnWV4Dzx07qwnc.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 14, + 18 + ], + "genres": [ + "Crime", + "Fantasy", + "Drama" + ], + "releaseDate": "2006-09-13", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 4827, + "popularity": 6.6607 + }, + { + "id": 241254, + "title": "The Prince", + "originalTitle": "The Prince", + "overview": "A family man who turns out to be a retired mob enforcer must travel across the country to find his daughter who has gone missing.", + "posterPath": "/22b2fmxhZveWSyWkgUz2y94fp3w.jpg", + "backdropPath": "/axZ5RVlDACxVz7YJE7IE43ABIvw.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2014-08-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 501, + "popularity": 6.6605 + }, + { + "id": 429197, + "title": "Vice", + "originalTitle": "Vice", + "overview": "George W. Bush picks Dick Cheney, the CEO of Halliburton Co., to be his Republican running mate in the 2000 presidential election. No stranger to politics, Cheney's impressive résumé includes stints as White House chief of staff, House Minority Whip and Defense Secretary. When Bush wins by a narrow margin, Cheney begins to use his newfound power to help reshape the country and the world.", + "posterPath": "/1gCab6rNv1r6V64cwsU4oEr649Y.jpg", + "backdropPath": "/aHcNu3tYihvkL45CrXTFY4YfrfF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-12-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.016, + "voteCount": 3489, + "popularity": 6.6598 + }, + { + "id": 44297, + "title": "Besieged", + "originalTitle": "L'assedio", + "overview": "While in exile in Italy, an African woman finds herself trying to get back home and free her imprisoned husband. But the only man that can help her do so is in love with her.", + "posterPath": "/ZV18CMRVkUT119mmkGCz6mj6AD.jpg", + "backdropPath": "/r9843pYwbf2NtyeJfqnlra19cTt.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1998-02-05", + "releaseYear": "1998", + "originalLanguage": "it", + "voteAverage": 6.602, + "voteCount": 64, + "popularity": 6.6594 + }, + { + "id": 10958, + "title": "Flight 93", + "originalTitle": "Flight 93", + "overview": "Flight 93 is a 2006 made-for-TV film, directed by Peter Markle, which chronicles the events aboard United Airlines Flight 93 during the September 11 attacks. It premiered January 30, 2006 on the A&E Network and was re-broadcast several times throughout 2006. The film focused heavily on eight passengers, namely Todd Beamer, Mark Bingham, Tom Burnett, Jeremy Glick, Lauren Grandcolas, Donald Greene, Nicole Miller, and Honor Elizabeth Wainio. It features small appearances from many other passengers, namely Donald Peterson and his wife, Jean, and also from flight attendant Sandra Bradshaw.", + "posterPath": "/q2jz1F7u4u4jID3xaFjuUBFEpxl.jpg", + "backdropPath": "/sx4255jeBRwZuU6MBytkhvNLTsZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10770 + ], + "genres": [ + "Drama", + "Thriller", + "TV Movie" + ], + "releaseDate": "2006-01-30", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 185, + "popularity": 6.658 + }, + { + "id": 396263, + "title": "GANTZ:O", + "originalTitle": "GANTZ:O", + "overview": "After being brutally murdered in a subway station, a teen boy awakens to find himself resurrected by a strange computer named Gantz, and forced to fight a large force of invading aliens in Osaka.", + "posterPath": "/9yTuw6ddf28lItHwgeqFSNtXsaG.jpg", + "backdropPath": "/wyDNiOVWwviCFzWITuxs9CnjmAW.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 28 + ], + "genres": [ + "Animation", + "Science Fiction", + "Action" + ], + "releaseDate": "2016-10-14", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.315, + "voteCount": 797, + "popularity": 6.6566 + }, + { + "id": 758724, + "title": "The Cellar", + "originalTitle": "The Cellar", + "overview": "When Keira Woods' daughter mysteriously vanishes in the cellar of their new house in the country, she soon discovers there is an ancient and powerful entity controlling their home that she will have to face or risk losing her family's souls forever.", + "posterPath": "/rtfGeS5WMXA6PtikIYUmYTSbVdg.jpg", + "backdropPath": "/cK6M84mqSwbjzwFAinrANbdZyln.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2022-03-25", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.508, + "voteCount": 480, + "popularity": 6.6556 + }, + { + "id": 595867, + "title": "On a Magical Night", + "originalTitle": "Chambre 212", + "overview": "After 20 years of marriage, Maria decides to leave her husband. She moves into room 212 at the hotel across the street, with a bird’s-eye view of her apartment, her husband and the life she shared with him. While she wonders if she made the right decision, many of the people in her life offer their opinions on the matter. They intend to let her know, whether she likes it or not, on what proves to be a life-changing evening.", + "posterPath": "/l44RScRCr5AJJtonRatFgmOFRZ0.jpg", + "backdropPath": "/lOV2UeXh9Q4VVc7oqCtctu8LD34.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-10-09", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.22, + "voteCount": 252, + "popularity": 6.6553 + }, + { + "id": 283384, + "title": "The Calling", + "originalTitle": "The Calling", + "overview": "Detective Hazel Micallef hasn't had much to worry about in the sleepy town of Port Dundas until a string of gruesome murders in the surrounding countryside brings her face to face with a serial killer driven by a higher calling.", + "posterPath": "/kqJGIh2mZVwTD20GeDVTUNOwd5p.jpg", + "backdropPath": "/e8TJ0DWMUSGv0ZUi2k457FNSrvP.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2014-08-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.869, + "voteCount": 217, + "popularity": 6.6551 + }, + { + "id": 14641, + "title": "Homo Erectus", + "originalTitle": "Homo Erectus", + "overview": "Ishbo is a caveman living in the prehistoric age who thinks there's more to life than hunting and gathering. He tries to better the lives of those in his tribe by inventing things like spoons and the toothbrush, which leave everyone, including his parents, unimpressed. He also has a thing for cavewoman Fardart, but she only has eyes for his brother Thudnik. Can Ishbo prove his worth when a rival clan attacks?", + "posterPath": "/xSq1sUbExLnA6WY2FDyDTBzz2By.jpg", + "backdropPath": "/km5IWSqSjU2WtRUITnVyIIDKdW.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-07-10", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 3.943, + "voteCount": 35, + "popularity": 6.655 + }, + { + "id": 30069, + "title": "Vision Quest", + "originalTitle": "Vision Quest", + "overview": "After deciding he needs to do something meaningful with his life, high school wrestler Louden Swain sets out on a mission to drop weight and challenge the area's undefeated champion, which creates problems with his teammates and health. Matters are complicated further when Louden's father takes in an attractive female drifter who's on her way to San Francisco.", + "posterPath": "/l3g4e6ocqGA8aNL1hIrIVWLkljL.jpg", + "backdropPath": "/waUvIPIUxDRZOigwjEEOWGVIPDX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1985-02-15", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 135, + "popularity": 6.6539 + }, + { + "id": 256771, + "title": "The Pool", + "originalTitle": "De Poel", + "overview": "Two families go camping illegally in a forest, and set up their tents near a beautiful pond, far away from the daily hubbub. However, they soon discover that the pond contains a mysterious force, which will not allow them to leave. Rot and decay strike, and madness follows.", + "posterPath": "/hMs4qW5EWOqKiv1CrSd2nizCMyH.jpg", + "backdropPath": "/NuInEJcmZtt2edyUR1EYgNn1QI.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2014-05-01", + "releaseYear": "2014", + "originalLanguage": "nl", + "voteAverage": 4.684, + "voteCount": 38, + "popularity": 6.6534 + }, + { + "id": 1098160, + "title": "The Tank", + "originalTitle": "The Tank", + "overview": "In 1978 Oregon, Ben and Jules inherit an abandoned coastal property from Ben's late mother, who's never mentioned it. The untouched house has been kept a secret for 40 years and comes with a beautiful private cove and beach. Jules searches for answers while Ben unwittingly awakens a fiercely protective creature.", + "posterPath": "/2VxEtwgzOUukatl2IKGn4borpgE.jpg", + "backdropPath": "/33zjdLdGC28kad8Htn8Mo6wEYjx.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2023-04-21", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.107, + "voteCount": 117, + "popularity": 6.6529 + }, + { + "id": 833393, + "title": "La Civil", + "originalTitle": "La Civil", + "overview": "Cielo is a mother whose teenage daughter is kidnapped in Northern Mexico. When the authorities offer no support in the search, Cielo takes matters into her own hands and transforms from housewife into a vengeful militant.", + "posterPath": "/mP9EMrwJRxj7O4P4v2xsNyWWA1f.jpg", + "backdropPath": "/bq5U9148k5yZXmO0yfa5vfNJl2z.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "2021-07-08", + "releaseYear": "2021", + "originalLanguage": "es", + "voteAverage": 7.7, + "voteCount": 86, + "popularity": 6.6527 + }, + { + "id": 161056, + "title": "8-Ball", + "originalTitle": "8-pallo", + "overview": "8-Ball tells the story of single mother Pike who, having just been released from prison, is trying to start her life anew. When her former boyfriend Lalli comes back from abroad, it opens a window into a past that Pike wants to put behind her.", + "posterPath": "/5gQWtVYRrveoUw6ipyGmseXLnXb.jpg", + "backdropPath": "/2WtvKiCl7ncYJxc9oodEF9mPqmd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2013-02-22", + "releaseYear": "2013", + "originalLanguage": "fi", + "voteAverage": 5.833, + "voteCount": 36, + "popularity": 6.6525 + }, + { + "id": 41843, + "title": "Surviving Picasso", + "originalTitle": "Surviving Picasso", + "overview": "The passionate Merchant-Ivory drama tells the story of Francoise Gilot, the only lover of Pablo Picasso who was strong enough to withstand his ferocious cruelty and move on with her life.", + "posterPath": "/olcQOdg54uBYDUkZbgw2FFTBaZI.jpg", + "backdropPath": "/zabeClnzpQldGd3TaUpqiufMBwT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1996-09-04", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 100, + "popularity": 6.6524 + }, + { + "id": 43824, + "title": "Waterloo Bridge", + "originalTitle": "Waterloo Bridge", + "overview": "On the eve of World War II, a British officer revisits Waterloo Bridge and recalls the young man he was at the beginning of World War I and the young ballerina he met just before he left for the front.", + "posterPath": "/2XgYKd5tr5b9W5Yfq80yTZqf3hy.jpg", + "backdropPath": "/7hVg5V8SVIRNyAkivKkOC5LbKIG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1940-05-17", + "releaseYear": "1940", + "originalLanguage": "en", + "voteAverage": 7.476, + "voteCount": 168, + "popularity": 6.6509 + }, + { + "id": 145561, + "title": "Force: Five", + "originalTitle": "Force: Five", + "overview": "A martial-arts expert leads a team of fellow martial artists to rescue a senator's daughter from an island ruled by the evil leader of a fanatical religious cult.", + "posterPath": "/8OOlrRi0jF5L2r4pEZoEoJqLM3l.jpg", + "backdropPath": "/6qCe8s4ZWGp8Vf1s8JtL0rztIdb.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Drama" + ], + "releaseDate": "1981-07-24", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 4, + "voteCount": 17, + "popularity": 6.6507 + }, + { + "id": 134374, + "title": "Pain & Gain", + "originalTitle": "Pain & Gain", + "overview": "Daniel Lugo, manager of the Sun Gym in 1990s Miami, decides that there is only one way to achieve his version of the American dream: extortion. To achieve his goal, he recruits musclemen Paul and Adrian as accomplices. After several failed attempts, they abduct rich businessman Victor Kershaw and convince him to sign over all his assets to them. But when Kershaw makes it out alive, authorities are reluctant to believe his story.", + "posterPath": "/9WqA0Ry9wmTzFvom8mNbcyKZQgP.jpg", + "backdropPath": "/86rDAqR5oDu29qZTGyk88VdB2lI.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 28 + ], + "genres": [ + "Comedy", + "Crime", + "Action" + ], + "releaseDate": "2013-04-18", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.28, + "voteCount": 4661, + "popularity": 6.6504 + }, + { + "id": 612089, + "title": "Love Unleashed", + "originalTitle": "Love Unleashed", + "overview": "Hailey throws puppy parties and meets Ryan, whose daughter wants a dog and her dad to remarry. Though smitten with each other, Ryan and Hailey are at odds since he’s developing a mall where she wants a dog park. Still, they grow close, and Ryan even helps when Hailey’s neighbor tries to shut down her business. But soon Hailey fears she’s barking up the wrong romantic tree when Ryan grows distant. Refocusing her efforts on a dog sanctuary, Hailey is suddenly asked to throw a puppy party that might result in a forever home for her dogs and her heart.", + "posterPath": "/9e6WUvcqNdvWNWXd3aamOG9miPg.jpg", + "backdropPath": "/sJoEEMEt86CT7AA2NWaQqzieYO.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 10749 + ], + "genres": [ + "TV Movie", + "Romance" + ], + "releaseDate": "2019-07-06", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 26, + "popularity": 6.6491 + }, + { + "id": 45937, + "title": "Uninvited", + "originalTitle": "Uninvited", + "overview": "A sinister corporation loses control of a house cat infected with a genetically-engineered virus. The death-toll rises during the mutant feline's rampage, and eventually, it finds its way on board a ship of a criminal king-pin.", + "posterPath": "/kdnJ6EpVm2NHdDEk1UlC0PFQalC.jpg", + "backdropPath": "/iOcs1YXhaqQnK8AU8eOjWZaKwcz.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1988-08-24", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 4.753, + "voteCount": 83, + "popularity": 6.6481 + }, + { + "id": 430826, + "title": "Casting JonBenet", + "originalTitle": "Casting JonBenet", + "overview": "Twenty years after the modern world's most notorious child murder, the legacy of the crime and its impact are explored.", + "posterPath": "/aHDr48Zq4IojCHRMxzGaS1EMaDB.jpg", + "backdropPath": "/hEBBtwQ4ZU0pjrXbKbRTU1IQOrj.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 80, + 18 + ], + "genres": [ + "Documentary", + "Crime", + "Drama" + ], + "releaseDate": "2017-04-28", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.676, + "voteCount": 170, + "popularity": 6.6474 + }, + { + "id": 13337, + "title": "Broken English", + "originalTitle": "Broken English", + "overview": "Nora Wilder is freaking out. Everyone around her is either in a relationship, married, or has children. Nora is in her thirties, alone with job she's outgrown and a mother who constantly reminds her of it all. Not to mention her best friend Audrey's \"perfect marriage\". But after a series of disastrous dates, Nora unexpectedly meets Julien, a quirky Frenchman who opens her eyes to a lot more than love.", + "posterPath": "/7xxZH98y9kIesh5OpFauu7GXKBh.jpg", + "backdropPath": "/2UKq6hSZokwSxKrpkzzM80qVYQS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2007-11-22", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 70, + "popularity": 6.647 + }, + { + "id": 489763, + "title": "The Keeper", + "originalTitle": "Trautmann", + "overview": "The story of a man whose love for football, for England and for the love of his life, Margaret, saw him rise from Nazi 'villain' to British hero. Bert Trautmann, the German goalkeeper won over even his harshest opponents by winning the FA Cup Final for Manchester City in 1956 - playing on with a broken neck to secure victory.", + "posterPath": "/nNPsc5USXEr90FoFaXXljaC1O3r.jpg", + "backdropPath": "/8n4aiFihHkFLsezZIY4Rp34jH9r.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752, + 36 + ], + "genres": [ + "Drama", + "War", + "History" + ], + "releaseDate": "2018-12-05", + "releaseYear": "2018", + "originalLanguage": "de", + "voteAverage": 7.434, + "voteCount": 228, + "popularity": 6.6466 + }, + { + "id": 24449, + "title": "Gruesome School Trip", + "originalTitle": "De Griezelbus", + "overview": "The sensitive Onnoval is the best student in his class and he loves Liselore, who was the girlfriend of the bully Gino. His teacher Meester de Vriend believes he is a promising writer and poet. Gino picks on Onnoval all the time, but Onnoval does not fight against Gino because he believes he is a werewolf. When the successful writer of horror tales Nol van Paulo comes for a lecture in his class, he advises Onnonval to never write a story for the evil Ferluci. However, Onnoval is humiliated by Gino and very upset and jealous he writes a story about a class excursion in a horror bus to a horror park, where Gino is killed by a vampire, and gives his story to Ferluci. Later he regrets, but Nol van Paulo tells him that the only way to fix the situation would be stealing his note book and rewriting the conclusion.", + "posterPath": "/dvRehIG20VXtwHVaLZbGRguEfuc.jpg", + "backdropPath": "/aotenDXa3d9mhEW9mnH60qgWDTm.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy" + ], + "releaseDate": "2005-12-07", + "releaseYear": "2005", + "originalLanguage": "nl", + "voteAverage": 5.1, + "voteCount": 18, + "popularity": 6.6452 + }, + { + "id": 33214, + "title": "Bad Timing", + "originalTitle": "Bad Timing", + "overview": "Alex Linden is a psychiatrist living in Vienna who meets Milena Flaherty though a mutual friend. Though Alex is quite a bit older than Milena, he's attracted to her young, carefree spirit. Despite the fact that Milena is already married, their friendship quickly turns into a deeply passionate love affair that threatens to overtake them both. When Milena ends up in the hospital from an overdose, Alex is taken into custody by Inspector Netusil.", + "posterPath": "/raLS93dykOabizFuguWZ9KeCKAS.jpg", + "backdropPath": "/9h8BMejQk2eJSvs1TmTFD8XZJzg.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 18, + 53 + ], + "genres": [ + "Mystery", + "Drama", + "Thriller" + ], + "releaseDate": "1980-03-02", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 160, + "popularity": 6.645 + }, + { + "id": 799583, + "title": "The Ministry of Ungentlemanly Warfare", + "originalTitle": "The Ministry of Ungentlemanly Warfare", + "overview": "During World War II, the British Army assigns a group of competent soldiers to carry out a mission against the Nazi forces behind enemy lines... A true story about a secret British WWII organization — the Special Operations Executive. Founded by Winston Churchill, their irregular warfare against the Germans helped to change the course of the war, and gave birth to modern black operations.", + "posterPath": "/8aF0iAKH9MJMYAZdi0Slg77RYa2.jpg", + "backdropPath": "/AfKwzRBXyzcalN5Kaw6hhEZj7cl.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 10752 + ], + "genres": [ + "Action", + "Comedy", + "War" + ], + "releaseDate": "2024-04-18", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.03, + "voteCount": 1686, + "popularity": 6.6448 + }, + { + "id": 490033, + "title": "Holiday", + "originalTitle": "Holiday", + "overview": "Sascha, the young and beautiful trophy girlfriend of a Danish drug lord, arrives at his holiday villa in the seaside town of Bodrum, on the Turkish Riviera, where she is welcomed into his inner circle. Under the summer sun, she lives a carefree dream of luxury and fun until she meets Tomas, a Dutch traveler trying to discover himself.", + "posterPath": "/5NU063sVE2Y3zNg8isOIG5RSrDL.jpg", + "backdropPath": "/ou0QMbeDPVY3wDsf3vLNaT7Y5ac.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2018-10-11", + "releaseYear": "2018", + "originalLanguage": "da", + "voteAverage": 5.4, + "voteCount": 137, + "popularity": 6.6445 + }, + { + "id": 26444, + "title": "Death Hunt", + "originalTitle": "Death Hunt", + "overview": "Yukon Territory, Canada, November 1931. Albert Johnson, a trapper who lives alone in the mountains, buys a dog almost dead after a brutal dogfight, a good deed that will put him in trouble.", + "posterPath": "/j9nVLvOv2Sz3KekD7elwGZII8F9.jpg", + "backdropPath": "/ySOUNwHkQtI2lexrX4oC6cUmsd2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 37 + ], + "genres": [ + "Action", + "Adventure", + "Western" + ], + "releaseDate": "1981-04-15", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 193, + "popularity": 6.6419 + }, + { + "id": 1196134, + "title": "The Medium", + "originalTitle": "Le Médium", + "overview": "Michael, a young medium, falls in love with Alice, who is shaken by the recent death of her life companion. The two are forced to confront their \"ghosts\" in order to get their lives back on track.", + "posterPath": "/6ow7N8NXC83dobCrNONpZQQPeHm.jpg", + "backdropPath": "/47w2sfjWYi0JsbYp996K0MlxGRC.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2024-07-10", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 4.5, + "voteCount": 19, + "popularity": 6.6407 + }, + { + "id": 336811, + "title": "Les Cowboys", + "originalTitle": "Les Cowboys", + "overview": "Drama about a father and son who set out to find their missing daughter/sister with the help of an American headhunter.", + "posterPath": "/8pi1CLkSGSQyUC0gBjIYtUkyDRG.jpg", + "backdropPath": "/7O4RcjTNHLFuogbjbF7sWPIxIXX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 37 + ], + "genres": [ + "Drama", + "Thriller", + "Western" + ], + "releaseDate": "2015-11-25", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 6.414, + "voteCount": 133, + "popularity": 6.6396 + }, + { + "id": 12244, + "title": "9", + "originalTitle": "9", + "overview": "When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.", + "posterPath": "/3uqXGOH4BQ2CLJWkDJZ0PzbUzOn.jpg", + "backdropPath": "/t4V34FTYzZl0ZMdAXAK0T7DE3ie.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 16, + 878, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Animation", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2009-08-19", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 3751, + "popularity": 6.6395 + }, + { + "id": 959101, + "title": "The Gravity", + "originalTitle": "La Gravité", + "overview": "As a mysterious planetary alignment sets the sky on fire, two brothers are reunited with a childhood friend.", + "posterPath": "/o4zo2KNJWFdrtUIZhMOv62e7EPr.jpg", + "backdropPath": "/bg90JoyG0e5BL0C4VkOGtru43iW.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 878 + ], + "genres": [ + "Drama", + "Action", + "Science Fiction" + ], + "releaseDate": "2023-05-03", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 5.3, + "voteCount": 21, + "popularity": 6.6391 + }, + { + "id": 29800, + "title": "Deadly Target", + "originalTitle": "Deadly Target", + "overview": "A Chinese gangster in Los Angeles escapes on the eve of his deportation to Hong Kong. A martial-arts master detective and his ragtag team get caught up in the action as they track down this ruthless killer.", + "posterPath": "/3fjoGOMPV958hC95MaZdbzk5Hx6.jpg", + "backdropPath": "/8i856WkYNNXSyNJ9hjHaF2PT0JX.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "1994-01-01", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 17, + "popularity": 6.639 + }, + { + "id": 426257, + "title": "Roxanne Roxanne", + "originalTitle": "Roxanne Roxanne", + "overview": "The most feared battle emcee in the early 1980s in Queens, New York, was a fierce teenager from the Queensbridge projects. At the age of 14, Roxanne Shanté was well on her way to becoming a hip-hop legend, as she hustled to provide for her family while defending herself from the dangers of the street.", + "posterPath": "/4WHkXS4828gKrhZg4Tje5gj5QVs.jpg", + "backdropPath": "/9XZJKaQS4LaZMLB8xxJ0UJvBe5Q.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-01-22", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 122, + "popularity": 6.6374 + }, + { + "id": 6057, + "title": "Futureshock: Comet", + "originalTitle": "Comet Impact", + "overview": "A comet hits Ireland, and a bigger one is on its way towards the U.S. where 900 million people have to be evacuated.", + "posterPath": "/vyrsks2S9juntjoULJoTYPJ3SGc.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-01-02", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 14, + "popularity": 6.6367 + }, + { + "id": 266433, + "title": "Ejecta", + "originalTitle": "Ejecta", + "overview": "Two men witness an unexplainable event in the sky as a historic solar storm approaches, and they try to survive as a terrifying life form hunts them.", + "posterPath": "/wMF7hBnoUhVjjDZcTZqaO1iZ378.jpg", + "backdropPath": "/Ao1qigOI0ekNYaxDwndivAhzLei.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2014-09-24", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 3.7, + "voteCount": 41, + "popularity": 6.6361 + }, + { + "id": 207177, + "title": "Wounded", + "originalTitle": "Wounded", + "overview": "After a grizzly-bear poacher named Hanaghan kills her fiance and fellow Fish & Wildlife Deptartment officer, Julie Clayton sets out to track the killer down and discover why the FBI is keeping its case secret from her. She is joined in her quest by Rollins, a police detective fresh out of alcohol-dependency rehabilitation.", + "posterPath": "/oQ9kkDciXjdFxcvlSjgQKvjrhmr.jpg", + "backdropPath": "/9jeGvaALDyvwssLssW7zKIm0TzN.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1997-02-13", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 13, + "popularity": 6.6359 + }, + { + "id": 61716, + "title": "Killjoy 3", + "originalTitle": "Killjoy 3", + "overview": "The demon clown Killjoy is resurrected once again, but this time he is not given the name of his victim and is trapped in his realm. Using a magic mirror he lures four unsuspecting college students into his realm where he can have his macabre fun! A mysterious man returns and we finally discover who Killjoy's true target is!", + "posterPath": "/1REiK9txfmBclXIGSrxGHWvEg1K.jpg", + "backdropPath": "/7iGMrhlduVsrNTcqKpXJSDDm0kr.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2010-12-14", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 4.514, + "voteCount": 35, + "popularity": 6.6357 + }, + { + "id": 380088, + "title": "Asteroid: Final Impact", + "originalTitle": "Meteor Assault", + "overview": "A deadly meteor storm has been labeled a one-time celestial occurrence, but astrophysicist Steve Thomas believes something worse is yet to come. After discovering his asteroid tracking satellite is secretly being used for military surveillance, Steve leaks the truth to the press, and it costs him his reputation, his job, and his friends. With the backlash of being a whistle-blower, the pressure threatens to tear his family apart, just when Steve discovers a threat to the entire planet: a giant dark asteroid invisible to current detection systems will soon strike the Earth. Barred from using his own satellite to prove the asteroid's existence, Steve is forced to work in the shadows in a desperate attempt to save humanity.", + "posterPath": "/qQwvL9kK28XX1bYvTsU8hSdUURD.jpg", + "backdropPath": "/1iwB1lwerWCjUwUR24zoR7qZFaR.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2015-09-19", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 74, + "popularity": 6.6346 + }, + { + "id": 4244, + "title": "The Kid", + "originalTitle": "The Kid", + "overview": "Powerful businessman Russ Duritz is self-absorbed and immersed in his work. But by the magic of the moon, he meets Rusty, a chubby, charming 8-year-old version of himself who can't believe he could turn out so badly – with no life and no dog. With Rusty's help, Russ is able to reconcile the person he used to dream of being with the man he's actually become.", + "posterPath": "/kMRZhiF08nDiO5aRb81Np5a4d6p.jpg", + "backdropPath": "/jEMYEoQw7jF0aoKRgaa1TbHojUT.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 10751 + ], + "genres": [ + "Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "2000-07-07", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.749, + "voteCount": 1073, + "popularity": 6.6345 + }, + { + "id": 500860, + "title": "The Mustang", + "originalTitle": "The Mustang", + "overview": "While participating in a rehabilitation program training wild mustangs, a convict at first struggles to connect with the horses and his fellow inmates, but he learns to confront his violent past as he soothes an especially feisty horse.", + "posterPath": "/sXQzQcjNAYYosymYPVaXh1nYKaJ.jpg", + "backdropPath": "/fsobXtw2DfNvv8XRFGJUu95H9bU.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-03-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.888, + "voteCount": 406, + "popularity": 6.6341 + }, + { + "id": 75638, + "title": "Red Lights", + "originalTitle": "Red Lights", + "overview": "Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.", + "posterPath": "/sukxYMaUTNizM7bcEJ4YeH80e8h.jpg", + "backdropPath": "/qrTDCybpf9vSg8RupxbwSd9SBcG.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2012-03-02", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.173, + "voteCount": 1342, + "popularity": 6.6341 + }, + { + "id": 161502, + "title": "Tornado Warning", + "originalTitle": "Tornado Warning", + "overview": "A scientist (Gerald McRaney) perfects a tornado-warning system and tries to convince residents of a nearby town that a deadly twister is approaching.", + "posterPath": "/sSO3il16x8X3c21NfyC1ivCcfIx.jpg", + "backdropPath": "/o7iPPVUmgfG0smeNNw3aaIxhXgS.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 28 + ], + "genres": [ + "TV Movie", + "Action" + ], + "releaseDate": "2002-09-13", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 13, + "popularity": 6.6328 + }, + { + "id": 594290, + "title": "The Husband", + "originalTitle": "The Husband", + "overview": "Concerned her widowed mother Tracy will be lonely when she leaves for college, kind-natured Ashley secretly creates an online dating profile for her mom and meets Jared, who seems like the perfect match. When Tracy \"accidentally\" meets Jared and they fall in love, Ashley is comforted to see her mother happy until Jared moves in and begins doing whatever he can do to shut her out of their new life. It quickly becomes apparent that Jared's hold on Tracy will lead to devastating consequences if Ashley doesn't do something about it and must find a way to take Jared down.", + "posterPath": "/9GNGnQJEBtPOy9WoCklagFmufMa.jpg", + "backdropPath": "/efpBbh8tyHRzHxI6LWDd3IJG4n8.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10770 + ], + "genres": [ + "Thriller", + "TV Movie" + ], + "releaseDate": "2019-04-19", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 13, + "popularity": 6.6319 + }, + { + "id": 8961, + "title": "Bad Boys II", + "originalTitle": "Bad Boys II", + "overview": "Detectives Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force are tasked with stopping the flow of the drug Ecstasy into Miami. They track the drugs to the whacked-out Cuban drug lord Johnny Tapia, who is also involved in a bloody war with Russian and Haitian mobsters. If that isn't bad enough, there's tension between the two detectives when Marcus discovers that playboy Mike is secretly romancing Marcus’ sister, Syd.", + "posterPath": "/yCvB5fG5aEPqa1St7ihY6KEAsHD.jpg", + "backdropPath": "/gxSVZCUlDd8upT1G2wdrUdz2hxG.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 35 + ], + "genres": [ + "Action", + "Crime", + "Comedy" + ], + "releaseDate": "2003-07-18", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 5749, + "popularity": 6.6306 + }, + { + "id": 3036, + "title": "Mary Shelley's Frankenstein", + "originalTitle": "Mary Shelley's Frankenstein", + "overview": "Victor Frankenstein is a promising young doctor who, devastated by the death of his mother during childbirth, becomes obsessed with bringing the dead back to life. His experiments lead to the creation of a monster, which Frankenstein has put together with the remains of corpses. It's not long before Frankenstein regrets his actions.", + "posterPath": "/bOwCAQsZlEKrwhPi1ejY6BS8jpL.jpg", + "backdropPath": "/qhZgRQB6ExVcbFXXGL3ISvshfJm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 878, + 10749 + ], + "genres": [ + "Drama", + "Horror", + "Science Fiction", + "Romance" + ], + "releaseDate": "1994-11-04", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.439, + "voteCount": 1316, + "popularity": 6.6303 + }, + { + "id": 381284, + "title": "Hidden Figures", + "originalTitle": "Hidden Figures", + "overview": "The untold story of Katherine G. Johnson, Dorothy Vaughan and Mary Jackson – brilliant African-American women working at NASA and serving as the brains behind one of the greatest operations in history – the launch of astronaut John Glenn into orbit. The visionary trio crossed all gender and race lines to inspire generations to dream big.", + "posterPath": "/9lfz2W2uGjyow3am00rsPJ8iOyq.jpg", + "backdropPath": "/rfkIeCaIHhN3K5wjJJqKmfUjYp8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2016-12-10", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.05, + "voteCount": 10179, + "popularity": 6.6302 + }, + { + "id": 9745, + "title": "Jack Frost", + "originalTitle": "Jack Frost", + "overview": "A father, who can't keep his promises, dies in a car accident. One year later, he returns as a snowman, who has the final chance to put things right with his son before he is gone forever.", + "posterPath": "/tdSyQJe7vEDcH9kEVqzVcr0O9lS.jpg", + "backdropPath": "/kVM45FdWgirD08xJAwnRRWMC3QL.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 18, + 14 + ], + "genres": [ + "Comedy", + "Family", + "Drama", + "Fantasy" + ], + "releaseDate": "1998-11-15", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 1190, + "popularity": 6.6301 + }, + { + "id": 146852, + "title": "The Brain", + "originalTitle": "The Brain", + "overview": "A millionaire businessman's brain is kept alive after a fatal accident, and communicates clues to a doctor on the trail of the killer.", + "posterPath": "/m4DJn97E7NF1zj9q6surMBWRb4e.jpg", + "backdropPath": "/iamAX245PKA2fI60LgzwlM7wqEz.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 80, + 27 + ], + "genres": [ + "Science Fiction", + "Crime", + "Horror" + ], + "releaseDate": "1962-09-05", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 15, + "popularity": 6.6285 + }, + { + "id": 25793, + "title": "Precious", + "originalTitle": "Precious", + "overview": "In Harlem in 1987, Claireece \"Precious\" Jones is a 16-year-old African American girl born into a life no one would want. She's pregnant for the second time by her absent father, and at home she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret – she can't read.", + "posterPath": "/d4ltLIDbvZskSwbzXqi0Hfv5ma4.jpg", + "backdropPath": "/81ME78JndOYu7IluTi1rxh0cLY2.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-11-06", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.32, + "voteCount": 1710, + "popularity": 6.6283 + }, + { + "id": 572404, + "title": "Port Authority", + "originalTitle": "Port Authority", + "overview": "Paul, a 20 year old midwesterner, arrives at the central bus station and quickly catches eyes with Wye, a 22 year old girl voguing on the sidewalk. After Paul seeks her out in secret, an intense love between them blossoms. But when Paul discovers Wye is trans, he is forced to confront his own identity and what it means to belong.", + "posterPath": "/SXkZMR3zue7FeOvsLGVeQq2z0R.jpg", + "backdropPath": "/8fodptokLS15t13AGPOEJcyepx3.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-09-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 45, + "popularity": 6.6278 + }, + { + "id": 14008, + "title": "Cadet Kelly", + "originalTitle": "Cadet Kelly", + "overview": "Hyperactive teenager Kelly is enrolled into a military school when her new stepfather becomes the Commandant. At first she has problems fitting in and taking orders until she tries out for the drill team.", + "posterPath": "/eKtznndgJoVG9S9UENc7kHqmhgM.jpg", + "backdropPath": "/m57sjSxbsPt1Y9H5IjujsMdsBmK.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 18 + ], + "genres": [ + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "2002-03-07", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.214, + "voteCount": 606, + "popularity": 6.6277 + }, + { + "id": 39467, + "title": "Still Breathing", + "originalTitle": "Still Breathing", + "overview": "Two lost souls: she a con-artist in L.A.; he a puppeteer in San Antonio have the same dream linking each with the other. He travels to L.A. to find this woman he has become obsessed with. She resists, afraid of his kooky ideas until she travels with him to San Antonio and meets his wise grandmother. Story of two disparate people linked by \"fate\" gets increasingly interesting as it rolls along.", + "posterPath": "/s1IKvPLuwIxNUUXJ1q24fUR2nOV.jpg", + "backdropPath": "/fe1MtZSdbJ6iper1QjpjHOujvRp.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1997-09-01", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.415, + "voteCount": 41, + "popularity": 6.6274 + }, + { + "id": 207774, + "title": "The Borderlands", + "originalTitle": "The Borderlands", + "overview": "Vatican investigators are sent to the British West Country to investigate paranormal activity, and they find the events are more disturbing than they first imagined.", + "posterPath": "/dNtkysYSyE3FcUGbdkooDckD16Y.jpg", + "backdropPath": "/j6xyaXJO4oaE99QJGxggpeLbJ7j.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2014-03-28", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.543, + "voteCount": 268, + "popularity": 6.6267 + }, + { + "id": 301845, + "title": "Barcelona sur", + "originalTitle": "Barcelona sur", + "overview": "Obsessed with finding her old boyfriend, Gumer, a 25-year-old girl, is released from jail in Barcelona, one of Europe's most sought-after port cities for drug trafficking and prostitution. Charo, her best friend, tries to help her, although she is not free, since depends on her pimp \"Toni\". But Gumer will persuade Charo to abandon Toni and form, along with other friends, a band to start businesses on their own.", + "posterPath": "/jRKMPTQjXX3qKBYrNtnvQMrhCr2.jpg", + "backdropPath": "/fpB6mNdhTG8vX3vjPLHGO6lKbiF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1981-03-26", + "releaseYear": "1981", + "originalLanguage": "es", + "voteAverage": 4.273, + "voteCount": 11, + "popularity": 6.6264 + }, + { + "id": 1019404, + "title": "The Wasp", + "originalTitle": "The Wasp", + "overview": "Heather bumps into Carla, having not spoken to her in years, and presents her with a very unexpected proposition that could change both of their lives forever.", + "posterPath": "/cLsQbDGHGaR8R6pBZac8V9Ui130.jpg", + "backdropPath": "/xEWdrd6l1B5Tz3RTUaBVRCYkDJh.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2024-08-29", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.252, + "voteCount": 111, + "popularity": 6.6261 + }, + { + "id": 499930, + "title": "Black Circle", + "originalTitle": "Svart cirkel", + "overview": "The lives of two sisters change dramatically, since they were hypnotized by a mystical vinyl record from the 1970s.", + "posterPath": "/tH5ifDu2gqF3kW8p7CGgcNT7NTW.jpg", + "backdropPath": "/mOeCRuBOHPvDF0a7vU62gIOBk2E.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 27 + ], + "genres": [ + "Mystery", + "Horror" + ], + "releaseDate": "2019-08-23", + "releaseYear": "2019", + "originalLanguage": "sv", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 6.6254 + }, + { + "id": 29204, + "title": "American Pop", + "originalTitle": "American Pop", + "overview": "The history of American popular music runs parallel with the history of a Russian Jewish immigrant family, with each male descendant possessing different musical abilities.", + "posterPath": "/9SQqCFZH8ziWuGY02DVUgj1YxqU.jpg", + "backdropPath": "/n82OZ74V3KBDQKrSVqgVzE8nnjs.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10402, + 18, + 36 + ], + "genres": [ + "Animation", + "Music", + "Drama", + "History" + ], + "releaseDate": "1981-02-13", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 115, + "popularity": 6.6253 + }, + { + "id": 378932, + "title": "Antboy 3", + "originalTitle": "Antboy 3", + "overview": "Antboy is challenged by the release of archenemy Loppen from prison, the new super villain, Alicia Dufort, and competition from an all new vigilante; the Hero Without a Name.", + "posterPath": "/b0pxLqYkEifszG3aelMnyNd5BWx.jpg", + "backdropPath": "/vEulFW7Zeqei3frwOT8xuupZQBs.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 10751 + ], + "genres": [ + "Action", + "Adventure", + "Family" + ], + "releaseDate": "2016-02-11", + "releaseYear": "2016", + "originalLanguage": "da", + "voteAverage": 6.932, + "voteCount": 59, + "popularity": 6.6252 + }, + { + "id": 107311, + "title": "Crackerjack", + "originalTitle": "Crackerjack", + "overview": "A cop on vacation at a mountain resort comes to the rescue when the resort is taken over by violent criminals.", + "posterPath": "/nnM6fgrUz9T1LdWmS4yXm86PpcB.jpg", + "backdropPath": "/lH3fkxOU9HVTzaDqDXeg6Ykzl8u.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1994-08-18", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 3.842, + "voteCount": 19, + "popularity": 6.6252 + }, + { + "id": 15566, + "title": "Surviving Christmas", + "originalTitle": "Surviving Christmas", + "overview": "A wealthy executive, Drew Latham (Ben Affleck) has no close relationships and becomes nostalgic for his childhood home as Christmas approaches. When he visits the house and finds another family living there, he offers the residents, Tom Valco (James Gandolfini) and his wife, Christine (Catherine O'Hara), a large sum of money to pretend they are his parents. Soon Drew tests the couple's patience, and, when their daughter, Alicia (Christina Applegate), arrives, things get increasingly tense.", + "posterPath": "/8jHtvFpCOOqp2U2qwI3L3h10cUv.jpg", + "backdropPath": "/7aRm8GSxrPhJK671kVADYgmJy7w.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2004-09-21", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.703, + "voteCount": 564, + "popularity": 6.625 + }, + { + "id": 604532, + "title": "School Spirit", + "originalTitle": "School Spirit", + "overview": "A group of social outcasts, stuck in weekend detention, find themselves stalked by their school’s urban legend who is set on killing bad students.", + "posterPath": "/olwNITXsRtF9rgp05Lx6h7GRKWx.jpg", + "backdropPath": "/rrVc6iss52pEG3wPbHMVzJK39iH.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2019-08-02", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 58, + "popularity": 6.6241 + }, + { + "id": 480572, + "title": "Bullet Head", + "originalTitle": "Bullet Head", + "overview": "A group of career criminals finds itself trapped in a warehouse with the law – and an Attack Dog named DeNiro closing in.", + "posterPath": "/ySmKQPjWnNzuZ5YliQaOVEnWn2.jpg", + "backdropPath": "/dghqiKjqZwFXTz5OCFYORflLAJO.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2017-12-07", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.001, + "voteCount": 538, + "popularity": 6.6239 + }, + { + "id": 59108, + "title": "Tower Heist", + "originalTitle": "Tower Heist", + "overview": "A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million they’re sure is hidden in the penthouse.", + "posterPath": "/jQrroNwP8hbFiUlNMs20emauwPE.jpg", + "backdropPath": "/7BtEvieL4QRNW3j7OAw6Zv2CDap.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2011-11-02", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.115, + "voteCount": 3081, + "popularity": 6.6235 + }, + { + "id": 925943, + "title": "Saint Omer", + "originalTitle": "Saint Omer", + "overview": "A novelist attends the trial of a woman accused of killing her 15-month-old daughter by abandoning her to the rising tide on a beach in northern France. But as the trial continues, her own family history, doubts, and fears about motherhood are steadily dislodged as the life story of the accused is gradually revealed.", + "posterPath": "/ekr25uuxlH7kg3KLhLLZcDZ15xd.jpg", + "backdropPath": "/aX1VH6SowCM3IezI09VqZjIuWiS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-11-23", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 6.161, + "voteCount": 192, + "popularity": 6.6234 + }, + { + "id": 12797, + "title": "Ghost Town", + "originalTitle": "Ghost Town", + "overview": "Bertram Pincus, a cranky, people-hating Manhattan dentist, develops the unwelcome ability to see dead people. Really annoying dead people. Even worse, they all want something from him, particularly Frank Herlihy, a smooth-talking ghost, who pesters him into a romantic scheme involving his widow Gwen. They are soon entangled in a hilarious predicament between the now and the hereafter!", + "posterPath": "/b8VS14DwpLlugTxVWSllYU0Gjn5.jpg", + "backdropPath": "/iDgK5UFgXKVqegWYc5tl58qfGOw.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18, + 14 + ], + "genres": [ + "Comedy", + "Romance", + "Drama", + "Fantasy" + ], + "releaseDate": "2008-09-19", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.529, + "voteCount": 1024, + "popularity": 6.6232 + }, + { + "id": 417320, + "title": "Descendants 2", + "originalTitle": "Descendants 2", + "overview": "When the pressure to be royal becomes too much for Mal, she returns to the Isle of the Lost where her archenemy Uma, Ursula's daughter, has taken her spot as self-proclaimed queen.", + "posterPath": "/qoNlGfQmFZ37Gf5fRBaCTLlOZtx.jpg", + "backdropPath": "/mLihPIodzSenkZtiUauDy4e9hRs.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 10770, + 12, + 10402 + ], + "genres": [ + "Family", + "Fantasy", + "TV Movie", + "Adventure", + "Music" + ], + "releaseDate": "2017-07-21", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.348, + "voteCount": 1735, + "popularity": 6.623 + }, + { + "id": 1035048, + "title": "Elevation", + "originalTitle": "Elevation", + "overview": "Post-apocalyptic survivors find refuge in the Rocky Mountains to hide from giant, insect-like creatures that can't live above 8,000 feet. However, when one of them needs life-saving supplies, they risk it all to venture into the danger zone.", + "posterPath": "/tnfc0NJ3BzhJrGJhkkEd6MHBdq5.jpg", + "backdropPath": "/au3o84ub27qTZiMiEc9UYzN74V3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2024-11-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.461, + "voteCount": 838, + "popularity": 6.6229 + }, + { + "id": 10796, + "title": "The One", + "originalTitle": "The One", + "overview": "A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.", + "posterPath": "/gcr3t71KmeXINemMrhaGBGVJPwW.jpg", + "backdropPath": "/yZzPTih3HQZUBghrWirt0Rk17uE.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2001-11-02", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 1665, + "popularity": 6.6219 + }, + { + "id": 392058, + "title": "Fear, Inc.", + "originalTitle": "Fear, Inc.", + "overview": "Horror junkie Joe Foster gets to live out his ultimate scary movie fantasy courtesy of Fear Inc., a company that specializes in giving you the fright of your life. But as lines blur between what is and is not part of the game, Joe's dream come true begins to look more like a nightmare.", + "posterPath": "/rmmGwE7PuTcHMny6Dq0gRtIj4Pr.jpg", + "backdropPath": "/142LhIHGG9yOUsVnkwzvhLkbJ0C.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 53 + ], + "genres": [ + "Horror", + "Comedy", + "Thriller" + ], + "releaseDate": "2016-04-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.679, + "voteCount": 201, + "popularity": 6.6212 + }, + { + "id": 21208, + "title": "Orphan", + "originalTitle": "Orphan", + "overview": "After losing their baby, a married couple adopt 9-year old Esther, who may not be as innocent as she seems.", + "posterPath": "/lCGpOgoTOGLtZnBiGY9HRg5Xnjd.jpg", + "backdropPath": "/9zqgOKXnXVyD7UOqIudAoMmK8r7.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2009-07-24", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 5483, + "popularity": 6.6212 + }, + { + "id": 734265, + "title": "Love Hard", + "originalTitle": "Love Hard", + "overview": "An LA girl, unlucky in love, falls for an East Coast guy on a dating app and decides to surprise him for Christmas, only to discover that she's been catfished. But the object of her affection actually lives in the same town, and the guy who duped her offers to set them up if she pretends to be his own girlfriend for the holidays.", + "posterPath": "/oTkAFDZRLnqrXOrOwuy3Tvul0v5.jpg", + "backdropPath": "/pa0Mq5rGm2QnzdpFmugTu4Mghf.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2021-11-05", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 1554, + "popularity": 6.6208 + }, + { + "id": 413417, + "title": "The Matchbreaker", + "originalTitle": "The Matchbreaker", + "overview": "When an idealistic romantic gets fired from his day job, he is offered a \"one-time gig\" to break up a girl's relationship for her disapproving parents. This \"one-time\" gig spreads through word-of-mouth and he ends up becoming a professional match-breaker. However, he ends up falling for one of his clients and must figure out how to balance his secret job with his love-life.", + "posterPath": "/m9RWMUNtaFZpYKtB8HH5Yg11P5G.jpg", + "backdropPath": "/msgEmGD3xIgvLBVAfLnQakPeLFE.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.94, + "voteCount": 67, + "popularity": 6.6203 + }, + { + "id": 35642, + "title": "Dr. Caligari", + "originalTitle": "Dr. Caligari", + "overview": "Mrs. Van Houten has shown signs of losing touch with reality, and her husband discusses possible treatment with Dr. Caligari, who says Mrs. Van Houten has a disease of the libido.", + "posterPath": "/wdHFzsyPWl9Qk6nAkSDeZdfsC6A.jpg", + "backdropPath": "/mlYzA8xjGlUS8FBvMaxtd3sttCP.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 878, + 35 + ], + "genres": [ + "Fantasy", + "Horror", + "Science Fiction", + "Comedy" + ], + "releaseDate": "1989-12-01", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 63, + "popularity": 6.6203 + }, + { + "id": 1645, + "title": "A Time to Kill", + "originalTitle": "A Time to Kill", + "overview": "A young lawyer defends a black man accused of murdering two white men who raped his 10-year-old daughter, sparking a rebirth of the KKK.", + "posterPath": "/w8UCke112E9jrhjKcwG32kyhTx5.jpg", + "backdropPath": "/bwLQCW6LqmrJ6aJsevypcg93JCU.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1996-07-24", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.386, + "voteCount": 2775, + "popularity": 6.6203 + }, + { + "id": 801335, + "title": "Girl in the Basement", + "originalTitle": "Girl in the Basement", + "overview": "Sara is a teen girl who is looking forward to her 18th birthday to move away from her controlling father Don. But before she could even blow out the candles, Don imprisons her in the basement of their home.", + "posterPath": "/tPP9n6r5QrIKPnshnJqE7klptj2.jpg", + "backdropPath": "/vDR2h5uQNgWyx3fsEVnEOcNFibZ.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 10770 + ], + "genres": [ + "Thriller", + "Crime", + "TV Movie" + ], + "releaseDate": "2021-02-27", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.574, + "voteCount": 801, + "popularity": 6.6196 + }, + { + "id": 103112, + "title": "Olé", + "originalTitle": "Olé", + "overview": "Two quarreling teachers vie for the same woman. In the same time the two will have to accompany a class on a trip in Spain.", + "posterPath": "/bYomOfi50vsrxfQmPeKubLO6ZhX.jpg", + "backdropPath": "/tN7oA9zSQQICIPxBr3xS1ekFrLR.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-12-15", + "releaseYear": "2006", + "originalLanguage": "it", + "voteAverage": 4.137, + "voteCount": 313, + "popularity": 6.6195 + }, + { + "id": 337730, + "title": "French Blood", + "originalTitle": "Un Français", + "overview": "Marco Lopez, a former Neo-Nazi and skinhead, tries to leave his violent, racist and hateful past behind him.", + "posterPath": "/eflY76R1AkWwWwv5n7Y3JLzHxvM.jpg", + "backdropPath": "/9ECYLVLFTGyAg8gqOC8tk8apM3w.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-06-10", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 5.981, + "voteCount": 104, + "popularity": 6.6192 + }, + { + "id": 444424, + "title": "Les Misérables", + "originalTitle": "Les Misérables", + "overview": "With a gun at his belt and a truncheon in his hand, Pento has just joined the Seine-Saint-Denis anti-crime brigade. With his teammates, he develops specific methods.", + "posterPath": "/2mntqRLjyJxMcHou2Ue1Il6jT1Y.jpg", + "backdropPath": "/uPjWYTJP6KYx6Ec1BL7zaHJOfil.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2017-02-03", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 7.1, + "voteCount": 41, + "popularity": 6.6179 + }, + { + "id": 1062372, + "title": "Sand Land", + "originalTitle": "SAND LAND", + "overview": "In a far future, war has destroyed the entire Earth, leaving only a barren wasteland where the supply of water is controlled by a greedy king.", + "posterPath": "/3twLQJ9XkKZHGB82JdRA84tw8Cx.jpg", + "backdropPath": "/6gGtjJLo7F7W5J4sYDNspkYbdZW.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Fantasy" + ], + "releaseDate": "2023-07-22", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 12, + "popularity": 6.6177 + }, + { + "id": 1091, + "title": "The Thing", + "originalTitle": "The Thing", + "overview": "A research team in Antarctica is hunted by a shape-shifting alien that assumes the appearance of its victims.", + "posterPath": "/tzGY49kseSE9QAKk47uuDGwnSCu.jpg", + "backdropPath": "/jaO8WurWoUBE55nskqtFqPZFFaO.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 878 + ], + "genres": [ + "Horror", + "Mystery", + "Science Fiction" + ], + "releaseDate": "1982-06-25", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 8.071, + "voteCount": 7568, + "popularity": 6.6177 + }, + { + "id": 64688, + "title": "21 Jump Street", + "originalTitle": "21 Jump Street", + "overview": "When cops Schmidt and Jenko join the secret Jump Street unit, they use their youthful appearances to go undercover as high school students. They trade in their guns and badges for backpacks, and set out to shut down a dangerous drug ring. But, as time goes on, Schmidt and Jenko discover that high school is nothing like it was just a few years earlier -- and, what's more, they must again confront the teenage terror and anxiety they thought they had left behind.", + "posterPath": "/8v3Sqv9UcIUC4ebmpKWROqPBINZ.jpg", + "backdropPath": "/d1ACwtoBygLKkGjCq9LUXnmcki.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2012-03-14", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.883, + "voteCount": 10700, + "popularity": 6.6175 + }, + { + "id": 11247, + "title": "A Cinderella Story", + "originalTitle": "A Cinderella Story", + "overview": "Routinely exploited by her wicked stepmother, the downtrodden Samantha Montgomery is excited about the prospect of meeting her Internet beau at the school's Halloween dance.", + "posterPath": "/ukwP7gDPWxj1R1dW5iN3mnxkL3D.jpg", + "backdropPath": "/aGmkdYMadabH1rNpKVWtmT7rCGh.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 10749 + ], + "genres": [ + "Comedy", + "Family", + "Romance" + ], + "releaseDate": "2004-07-16", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 3311, + "popularity": 6.6174 + }, + { + "id": 489176, + "title": "The Birdcatcher", + "originalTitle": "The Birdcatcher", + "overview": "Norway, 1942, during World War II. After being separated from her family, Esther, a young Jewish girl from Trondheim, arrives at an isolated farm where she must assume a new identity in order to survive the Nazi persecution.", + "posterPath": "/oYRWp7S9gpERJFvVt9TaTDWRPQV.jpg", + "backdropPath": "/6j1c5yEOPVI7UjEcDvooL5ZvnuE.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10752 + ], + "genres": [ + "Drama", + "Thriller", + "War" + ], + "releaseDate": "2019-03-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 63, + "popularity": 6.6171 + }, + { + "id": 127372, + "title": "Emperor", + "originalTitle": "Emperor", + "overview": "As the Japanese surrender at the end of WWII, Gen. Fellers is tasked with deciding if Emperor Hirohito will be hanged as a war criminal. Influencing his ruling is his quest to find Aya, an exchange student he met years earlier in the U.S.", + "posterPath": "/lKcRXcffQM2KxNruljrd7H3gUe5.jpg", + "backdropPath": "/yjxbplcGynDo3qTHNKyQblUdzYX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752 + ], + "genres": [ + "Drama", + "History", + "War" + ], + "releaseDate": "2012-09-14", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 269, + "popularity": 6.6169 + }, + { + "id": 26659, + "title": "Hanover Street", + "originalTitle": "Hanover Street", + "overview": "Margaret is a nurse in England during WW2, and married to a secret agent. Things get complicated when she falls for David, an American pilot.", + "posterPath": "/8esk5JZ2ARFF7YFGVgyFalJL86M.jpg", + "backdropPath": "/bWIWAIFxQedGNKISR1DoqXUCm8c.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10752, + 28, + 12 + ], + "genres": [ + "Drama", + "Romance", + "War", + "Action", + "Adventure" + ], + "releaseDate": "1979-05-18", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 103, + "popularity": 6.6164 + }, + { + "id": 335925, + "title": "Cocktail Molotov", + "originalTitle": "Cocktail Molotov", + "overview": "\"Cocktail Molotov\" is the story of the adventures of this threesome, who reach Venice only to learn of the outbreak of the May 1968 disturbances at home. Once again, Anne, Frederic and Bruno realize that the important things of their time are happening somewhere where they are not. Swindled out of their car and virtually broke, they hitchhike back to Paris, hoping to arrive in time for some of the excitement.", + "posterPath": "/aYaeXGbMVSMCKF7167f8AWEaVYF.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1980-02-06", + "releaseYear": "1980", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 13, + "popularity": 6.6155 + }, + { + "id": 9266, + "title": "Blue Crush", + "originalTitle": "Blue Crush", + "overview": "Nothing gets between Anne Marie and her board. Living in a beach shack with three roommates, she is up before dawn every morning to conquer the waves and count the days until the Pipe Masters competition. Having transplanted herself to Hawaii with no one's blessing but her own, Anne Marie finds all she needs in the adrenaline-charged surf scene - until pro quarterback Matt Tollman comes along...", + "posterPath": "/iZSw0JVG0cIFuZoTHuQU3nmGT4k.jpg", + "backdropPath": "/xsVMKdSndUKid3Xm3Tudf5bcOlv.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10749, + 18 + ], + "genres": [ + "Adventure", + "Romance", + "Drama" + ], + "releaseDate": "2002-08-16", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.994, + "voteCount": 555, + "popularity": 6.6153 + }, + { + "id": 6971, + "title": "Harlow", + "originalTitle": "Harlow", + "overview": "Jean Harlow arrives in Los Angeles as a teenager, pushed into showbiz by her mother and stepfather. Kindhearted agent Arthur Landau becomes Jean's mentor, while a devious Howard Hughes-like mogul grows infatuated with the beautiful young actress. Harlow herself falls for producer Paul Bern before tragedy strikes.", + "posterPath": "/q2sPkI179LpW5l4UMyAJfAtpMUF.jpg", + "backdropPath": "/amxpyBU4rY74lQ3xe7xv2mco9jU.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1965-06-23", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 18, + "popularity": 6.6134 + }, + { + "id": 152259, + "title": "Phantom", + "originalTitle": "Phantom", + "overview": "The haunted Captain of a Soviet submarine holds the fate of the world in his hands. Forced to leave his family behind, he is charged with leading a covert mission cloaked in mystery.", + "posterPath": "/lA1CRLLy3mA5bbut4g3u3CKBrZX.jpg", + "backdropPath": "/cnBhrJb2gCBJdrV2DlCbwCLDLEe.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2013-01-03", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 337, + "popularity": 6.6132 + }, + { + "id": 11423, + "title": "Memories of Murder", + "originalTitle": "살인의 추억", + "overview": "During the late 1980s, two detectives in rural South Korea attempt to solve a series of gruesome rape-and-murders of young women that leave the community terrified using limited resources and outdated methods. But when the murderer strikes several more times with the same pattern, the detectives realize that they are chasing the country's first documented serial killer. They then attempt to piece together the clues in this thriller based on true events.", + "posterPath": "/jcgUjx1QcupGzjntTVlnQ15lHqy.jpg", + "backdropPath": "/2NArMoObkAbnIPvqlHC3gRGsfBb.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2003-04-25", + "releaseYear": "2003", + "originalLanguage": "ko", + "voteAverage": 8.052, + "voteCount": 4309, + "popularity": 6.6131 + }, + { + "id": 161143, + "title": "Madly Madagascar", + "originalTitle": "Madly Madagascar", + "overview": "Your favorite Madagascar pals are back in an all-new adventure! Alex's favorite holiday, Valentine's Day, brings hilarious surprises and excitement for the entire gang. Melman plans a big surprise for Gloria, Marty tries to impress a new friend and everyone wants to get their hands on King Julien's love potion. You'll fall in LOVE with Madly Madagascar!", + "posterPath": "/1M8J7tpy5Vnkewp1BFS82abGOFD.jpg", + "backdropPath": "/rmB13CFLNFJIML8VLTnzDjMcmsC.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2013-01-29", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 237, + "popularity": 6.6116 + }, + { + "id": 158739, + "title": "Blue Caprice", + "originalTitle": "Blue Caprice", + "overview": "A narrative feature film inspired by the events known as the Beltway sniper attacks.", + "posterPath": "/cb26MlJHJkgXXsBMYTURhrJ0vB2.jpg", + "backdropPath": "/qjXyAWVOYp8t6x22OtTTz6misK4.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2013-09-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.741, + "voteCount": 108, + "popularity": 6.6113 + }, + { + "id": 13824, + "title": "Superstar", + "originalTitle": "Superstar", + "overview": "Orphan Mary Katherine Gallagher, an ugly duckling at St. Monica High School, has a dream: to be kissed soulfully. She decides she can realize this dream if she becomes a superstar, so her prayers, her fantasies and her conversations with her only friend focus on achieving super-stardom.", + "posterPath": "/vfBUCPe6wgt3SwNP7dKlqh8xeyO.jpg", + "backdropPath": "/iTjl4y7ZOP79GBMAiNtqz6mpAxq.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1999-10-08", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.299, + "voteCount": 306, + "popularity": 6.6108 + }, + { + "id": 9063, + "title": "The Element of Crime", + "originalTitle": "Forbrydelsens element", + "overview": "Fisher, an ex-detective, decides to take one final case when a mysterious serial killer claims the lives of several young girls. Fisher, unable to find the culprit, turns to Osbourne, a writer who was once respected for his contributions to the field of criminology. Fisher begins to use Osbourne's technique, which involves empathizing with serial killers; however, as the detective becomes increasingly engrossed in this method, things take a disturbing turn.", + "posterPath": "/sfg5KUOdR4bfoPiDf63LVG7mlfw.jpg", + "backdropPath": "/zpkSkHXm81jlFgXmTmmGQ4TuUzo.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 878 + ], + "genres": [ + "Crime", + "Drama", + "Science Fiction" + ], + "releaseDate": "1984-05-14", + "releaseYear": "1984", + "originalLanguage": "da", + "voteAverage": 6.4, + "voteCount": 214, + "popularity": 6.6108 + }, + { + "id": 653569, + "title": "Save Yourselves!", + "originalTitle": "Save Yourselves!", + "overview": "A young Brooklyn couple head upstate to disconnect from their phones and reconnect with themselves. Cut off from their devices, they miss the news that the planet is under attack.", + "posterPath": "/bvNwVJ3Wh6KeE28TMIczJD6OEPm.jpg", + "backdropPath": "/2vJewgdaf0N8BnAgHZ8R7y3w5qQ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878 + ], + "genres": [ + "Comedy", + "Science Fiction" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.781, + "voteCount": 211, + "popularity": 6.61 + }, + { + "id": 623305, + "title": "The Acrobat", + "originalTitle": "L'acrobate", + "overview": "In an ever-expanding but nondescript North American city, Christophe, a middle-aged businessman, unexpectedly encounters Micha, a Russian acrobat recovering from an injury, while house-hunting. An instant attraction is quickly consummated and they embark on a torrid affair that helps each of them cope with their respective trials. A provocative, poignant drama about intimacy in an age of anonymity.", + "posterPath": "/e3L6gL2ywVIP1o2R9jaLBSRlP4c.jpg", + "backdropPath": "/8k0gIcmvrPGyLS3EzHRhONvVE9D.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-02-07", + "releaseYear": "2020", + "originalLanguage": "fr", + "voteAverage": 6.114, + "voteCount": 22, + "popularity": 6.6093 + }, + { + "id": 63502, + "title": "The Outsider", + "originalTitle": "The Outsider", + "overview": "Montana sheep farmer Rebecca Yoder offers sanctuary to an on-the-lam outlaw, Johnny Gault, who is suffering from a gunshot wound. Yoder is a recent widow, and her decision to help the outsider doesn't sit well with her Quaker community. As a romance brews between her and Gault, it puts in jeopardy her standing among her devout neighbors. But when an evil rancher makes a play for the community's land, Gault's sharpshooting skills might prove his worth after all.", + "posterPath": "/3q7uQgeLRIcTaQxwc8GkBPY72NU.jpg", + "backdropPath": "/dSIy7gDVvHiPDI9qmX9NwE5Q3NV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 37, + 10770 + ], + "genres": [ + "Drama", + "Romance", + "Western", + "TV Movie" + ], + "releaseDate": "2002-11-10", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.724, + "voteCount": 38, + "popularity": 6.6088 + }, + { + "id": 4837, + "title": "La Collectionneuse", + "originalTitle": "La Collectionneuse", + "overview": "A bombastic, womanizing art dealer and his painter friend go to a seventeenth-century villa on the Riviera for a relaxing summer getaway. But their idyll is disturbed by the presence of the bohemian Haydée, accused of being a “collector” of men.", + "posterPath": "/zErPp680oDKX3IILQqOgkeeaxWr.jpg", + "backdropPath": "/lEamKAOMyENqc97bEuwLFMvie8x.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1967-03-02", + "releaseYear": "1967", + "originalLanguage": "fr", + "voteAverage": 6.865, + "voteCount": 259, + "popularity": 6.6088 + }, + { + "id": 23128, + "title": "The Cove", + "originalTitle": "The Cove", + "overview": "The Cove tells the amazing true story of how an elite team of individuals, films makers and free divers embarked on a covert mission to penetrate the hidden cove in Japan, shining light on a dark and deadly secret. The shocking discoveries were only the tip of the iceberg.", + "posterPath": "/miodcVtQv2YxpKjjHJWcV0EDfSP.jpg", + "backdropPath": "/gpyu3jQeMQeUFAVjCSrVCrYYK3f.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2009-07-31", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.933, + "voteCount": 639, + "popularity": 6.607 + }, + { + "id": 22828, + "title": "Homicide", + "originalTitle": "Homicide", + "overview": "A Jewish homicide detective investigates a seemingly minor murder and falls in with a Zionist group as a result.", + "posterPath": "/1CywcTyQ2Dbh7LA0Lcf13iaC1ig.jpg", + "backdropPath": "/7GoQaUpyJPL7WaDQSBMrCXemUFF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 9648, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "1991-05-28", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.234, + "voteCount": 143, + "popularity": 6.6069 + }, + { + "id": 477042, + "title": "Virus Tropical", + "originalTitle": "Virus tropical", + "overview": "Paola grows up in a Colombian family full of appearances: her father is a priest, her mother a psychic, and her sisters don’t live up to their parents’ expectations. She seeks independence in a world full of stereotypes and learns to live on her own terms, as a series of experiences gradually shape her personality.", + "posterPath": "/b77pw8SCyceUbAJzMTAVadGfu8X.jpg", + "backdropPath": "/vBhGE0afBW7G4RkNfSCq50BZMIe.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-05-17", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 6.8, + "voteCount": 48, + "popularity": 6.6065 + }, + { + "id": 1221415, + "title": "Brute 1976", + "originalTitle": "Brute 1976", + "overview": "In 1976 a group of people in the desert for a photo shoot, stumble upon an abandoned town called Savage. But they are not alone. A family of masked psychopaths have claimed Savage as their own and are hell bent on living up to its name.", + "posterPath": "/jrbYuJNMRPzdQ5RZ2FGKfQbD1Qz.jpg", + "backdropPath": "/pJg0uCexeVKmr24x9OFvs7lwRlp.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-03-13", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 4.457, + "voteCount": 23, + "popularity": 6.6064 + }, + { + "id": 57517, + "title": "First Dog", + "originalTitle": "First Dog", + "overview": "A foster boy is befriended by a lost dog who turns out to belong to the President of the United States. The boy decides to run away from the foster home to return the canine to the White House -- \"Because it's the right thing to do!\"", + "posterPath": "/sDNJBqwrfZg02CHjRQOy0sodasG.jpg", + "backdropPath": "/x45GSrgZ1B9SgoBDCT0xFG56Ayk.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 18 + ], + "genres": [ + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "2010-10-22", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 49, + "popularity": 6.6064 + }, + { + "id": 937287, + "title": "Challengers", + "originalTitle": "Challengers", + "overview": "Tennis player turned coach Tashi has taken her husband, Art, and transformed him into a world-famous Major champion. To jolt him out of his recent losing streak, she signs him up for a \"Challenger\" event — close to the lowest level of pro tournament — where he finds himself standing across the net from his former best friend and Tashi's former boyfriend.", + "posterPath": "/H6vke7zGiuLsz4v4RPeReb9rsv.jpg", + "backdropPath": "/4CcUgdiGe83MeqJW1NyJVmZqRrF.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2024-04-18", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.936, + "voteCount": 2451, + "popularity": 6.6063 + }, + { + "id": 29923, + "title": "Detour", + "originalTitle": "Snarveien", + "overview": "Driving back to Norway, Lina and Martin reach a roadblock where a policeman tells them to take a detour deep into the Swedish forest. But soon one creepy incident after another leaves them stranded in the dark woods and everything seems much too bizarre to be accidental.", + "posterPath": "/uPH2kfWPTLGeRKJK2mDkDt9oMI.jpg", + "backdropPath": "/bnRlmCPCGfQp5Uow6W31KN5CsTB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2009-07-31", + "releaseYear": "2009", + "originalLanguage": "no", + "voteAverage": 5.2, + "voteCount": 29, + "popularity": 6.6055 + }, + { + "id": 17654, + "title": "District 9", + "originalTitle": "District 9", + "overview": "Thirty years ago, aliens arrive on Earth. Not to conquer or give aid, but to find refuge from their dying planet. Separated from humans in a South African area called District 9, the aliens are managed by Multi-National United, which is unconcerned with the aliens' welfare but will do anything to master their advanced technology. When a company field agent contracts a mysterious virus that begins to alter his DNA, there is only one place he can hide: District 9.", + "posterPath": "/tuGlQkqLxnodDSk6mp5c2wvxUEd.jpg", + "backdropPath": "/jhM3wgWUrrOkz9r4xwV5cV5RhI4.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2009-08-05", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.456, + "voteCount": 10001, + "popularity": 6.6044 + }, + { + "id": 14156, + "title": "Impact Point", + "originalTitle": "Impact Point", + "overview": "Pro Beach Volleyball star, Kelly Reyes, faces challenges everyday, fierce competitors, the press, but nothing could prepare her for him.", + "posterPath": "/p2SeFLxPU0fZno9XTYgx3w8IZAX.jpg", + "backdropPath": "/zlfAxrhFXR8qVyzLre1BksxmhbN.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10749, + 18 + ], + "genres": [ + "Thriller", + "Romance", + "Drama" + ], + "releaseDate": "2008-06-13", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 4.182, + "voteCount": 22, + "popularity": 6.6041 + }, + { + "id": 80520, + "title": "Second Nature", + "originalTitle": "Second Nature", + "overview": "Everything is not as it seems for a man who recovers from a plane crash in which his family is killed. After plastic surgery and rehabilitation, he determines that he worked for a secret agency for which he was an assassin. His former boss puts him back to work to assassinate a political leader, but when he proves unable to pull the trigger, it is he who becomes the target for assassins. As he avoids capture, the story unfolds about his true past and the reason why he has a tattoo of \"chilly willy\" inside his lip.", + "posterPath": "/aTBlCu349qp1cJ9UZteEao81QOU.jpg", + "backdropPath": "/j3xP7OA4lA3abtSwP6mXqrkk4Dn.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 9648, + 878, + 53, + 10752, + 10770 + ], + "genres": [ + "Action", + "Mystery", + "Science Fiction", + "Thriller", + "War", + "TV Movie" + ], + "releaseDate": "2003-06-22", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 4.714, + "voteCount": 14, + "popularity": 6.6039 + }, + { + "id": 1159518, + "title": "Black Noise", + "originalTitle": "Black Noise", + "overview": "Members of an elite security team deployed to rescue a VIP on an exclusive island.The rescue mission becomes a desperate attempt to survive, escape the island and elude the sinister presence that seeks to harm them.", + "posterPath": "/snKpXexv5dtWqEKEmXrJtp8QGQC.jpg", + "backdropPath": "/dbtGinhWWKgQLQ0hjZHMFWxBJcJ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 27, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Horror", + "Thriller" + ], + "releaseDate": "2023-11-03", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 36, + "popularity": 6.6031 + }, + { + "id": 374973, + "title": "The Texan", + "originalTitle": "The Texan", + "overview": "Outlaw Llano Kid poses as a rich Mexican widow's son and falls in love with a cousin.", + "posterPath": "/k6UHxF7ippal0MPm23an3BOYMtB.jpg", + "backdropPath": "/rDnascPyjYKCeLfPYRNqs6z5DgE.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1930-05-10", + "releaseYear": "1930", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 10, + "popularity": 6.603 + }, + { + "id": 466282, + "title": "To All the Boys I've Loved Before", + "originalTitle": "To All the Boys I've Loved Before", + "overview": "Lara Jean's love life goes from imaginary to out of control when her secret letters to every boy she's ever fallen for are mysteriously mailed out.", + "posterPath": "/hKHZhUbIyUAjcSrqJThFGYIR6kI.jpg", + "backdropPath": "/xXhta1NIKn09IXy0mfp68cabdWS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2018-08-17", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.595, + "voteCount": 8612, + "popularity": 6.6028 + }, + { + "id": 10269, + "title": "Yentl", + "originalTitle": "Yentl", + "overview": "In a time when girls were forbidden to study religious scriptures, a Jewish girl masquerades as a boy to enter religious training and unexpectedly finds love along the way.", + "posterPath": "/4pxpLRvtoJrFQqXhQsHgPrLE0SC.jpg", + "backdropPath": "/oMRr5B0OkOJ8vjwR2w5Xw7YNp9W.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18, + 10749 + ], + "genres": [ + "Music", + "Drama", + "Romance" + ], + "releaseDate": "1983-11-18", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 254, + "popularity": 6.6025 + }, + { + "id": 481848, + "title": "The Call of the Wild", + "originalTitle": "The Call of the Wild", + "overview": "Buck is a big-hearted dog whose blissful domestic life is turned upside down when he is suddenly uprooted from his California home and transplanted to the exotic wilds of the Yukon during the Gold Rush of the 1890s. As the newest rookie on a mail delivery dog sled team—and later its leader—Buck experiences the adventure of a lifetime, ultimately finding his true place in the world and becoming his own master.", + "posterPath": "/33VdppGbeNxICrFUtW2WpGHvfYc.jpg", + "backdropPath": "/1GZCV0dwIoAn6jpWPfVAbeMTVC2.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 18 + ], + "genres": [ + "Adventure", + "Family", + "Drama" + ], + "releaseDate": "2020-02-19", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 3870, + "popularity": 6.6019 + }, + { + "id": 14370, + "title": "Real Genius", + "originalTitle": "Real Genius", + "overview": "When teenage geniuses Mitch Taylor and Chris Knight, working on an advanced laser project, learn that the military wants to use it as a weapon, they decide to thwart the plan.", + "posterPath": "/8az0Tr8hEGDmrUH9WlFz1QIKsMy.jpg", + "backdropPath": "/5gx3ZkoETzszwhEgdFW6M3roasH.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 878 + ], + "genres": [ + "Comedy", + "Romance", + "Science Fiction" + ], + "releaseDate": "1985-08-07", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 474, + "popularity": 6.6002 + }, + { + "id": 341392, + "title": "Lolo", + "originalTitle": "Lolo", + "overview": "On holiday in the south of France, chic Parisian sophisticate Violette meets life-loving IT geek Jean-René. Against all odds, there’s a real chemistry between them and at the end of the summer, Jean-René wastes no time in joining his beloved in Paris. But there’s trouble in paradise, and a third party swiftly appears to shatter the couple’s idyll: Lolo, Violette’s ultra-possessive 19-year-old son, who is determined to get rid of his mother’s lover, whatever it takes…", + "posterPath": "/eqwW3WwOPks9vnf17EXkuYDbASB.jpg", + "backdropPath": "/54HGdqkzVjbnGyeWWQlGzvwEmMJ.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-09-03", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 5.316, + "voteCount": 384, + "popularity": 6.5995 + }, + { + "id": 651571, + "title": "Breach", + "originalTitle": "Breach", + "overview": "A hardened mechanic must stay awake and maintain an interstellar ark fleeing the dying planet Earth with a few thousand lucky souls on board... the last of humanity. Unfortunately, humans are not the only passengers. A shapeshifting alien creature has taken residence, its only goal is to kill as many people as possible. The crew must think quickly to stop this menace before it destroys mankind.", + "posterPath": "/13B6onhL6FzSN2KaNeQeMML05pS.jpg", + "backdropPath": "/nz8xWrTKZzA5A7FgxaM4kfAoO1W.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 27 + ], + "genres": [ + "Science Fiction", + "Action", + "Horror" + ], + "releaseDate": "2020-12-17", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 4.176, + "voteCount": 676, + "popularity": 6.5983 + }, + { + "id": 14239, + "title": "Cool World", + "originalTitle": "Cool World", + "overview": "A bizarre accident lands Frank Harris in Cool World, a realm of cartoons. Years later, cartoonist Jack Deebs, who's been drawing Cool World, crosses over as well. He sets his lustful sights on animated femme fatale Holli Would, but she's got plans of her own to become real, and it's up to Frank to stop her.", + "posterPath": "/mqzRUHNtFwmgJCmSnvq3JnX0xgZ.jpg", + "backdropPath": "/uRUAwzXOU75vmO0CD1RzY0CaZ8d.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 14 + ], + "genres": [ + "Animation", + "Comedy", + "Fantasy" + ], + "releaseDate": "1992-07-10", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.637, + "voteCount": 775, + "popularity": 6.5983 + }, + { + "id": 642684, + "title": "Operation Portugal", + "originalTitle": "Opération Portugal", + "overview": "Hakim, 35, a friendly neighborhood cop, must infiltrate the Portuguese community for the purpose of an investigation. But can one become Portuguese in three days? Especially when we know that Hakim is a walking disaster at undercover operations. His clumsiness and bad luck turn his many infiltrations into cataclysms. The case is clearly too big for him. Quickly trapped between his feelings and his mission, Hakim, who lives alone with his mother, will discover a community, but also a family.", + "posterPath": "/lzTNmjQuF6yFIFVhfp9n3z1Ebm6.jpg", + "backdropPath": "/cthCF9Me0LViWbKYTd06DKm9WIH.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-06-23", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 5, + "voteCount": 104, + "popularity": 6.5977 + }, + { + "id": 55492, + "title": "Second Sight", + "originalTitle": "Second Sight", + "overview": "Wills is an ex-cop who pairs up with Bobby, a wacky psychic, to form the \"Second Sight Detective Agency.\" Bobby's clairvoyant abilities come in handy during their investigations. When a nun recruits them for a case involving car theft, they suddenly find themselves dealing with the abduction of a prominent cardinal who has a chance of becoming the next pope. Bobby's psychic powers go haywire as they pursue the case.", + "posterPath": "/rml1HBcC7lmRhyK1IgPDI1zl9k6.jpg", + "backdropPath": "/yvHVfbb55uKmk3wPAR8Ea9yIh6Z.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1989-11-03", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 33, + "popularity": 6.5977 + }, + { + "id": 13197, + "title": "10th & Wolf", + "originalTitle": "10th & Wolf", + "overview": "A former street thug returns to his Philadelphia home after a stint in the military. Back on his home turf, he once again finds himself tangling with the mob boss who was instrumental in his going off to be a soldier.", + "posterPath": "/2OBZth9rnSyMzZR8M0WwGj8ivDG.jpg", + "backdropPath": "/vzXp9ayYUfSZQVdslIbAqc2MFoS.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 9648, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2006-02-19", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.859, + "voteCount": 110, + "popularity": 6.5976 + }, + { + "id": 14249, + "title": "Revenge", + "originalTitle": "Revenge", + "overview": "Michael ‘Jay’ Cochran has just left the Navy after 12 years and he's not quite sure what he's going to do, except that he knows he wants a holiday. He decides to visit Tiburon Mendez, a powerful but shady Mexican businessman who he once flew to Alaska for a hunting trip. Arriving at the Mendez mansion in Mexico, he is immediately surprised by the beauty and youth of Mendez’s wife, Miryea.", + "posterPath": "/83diOZcg6ZiY8voNy2k4BX9TsMf.jpg", + "backdropPath": "/meFIsiR4XiQpFCL1YfDpLWgXYvG.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10749, + 18 + ], + "genres": [ + "Thriller", + "Romance", + "Drama" + ], + "releaseDate": "1990-02-16", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 466, + "popularity": 6.5975 + }, + { + "id": 515353, + "title": "Funan", + "originalTitle": "Funan", + "overview": "Cambodia, once the ancient kingdom of Funan, April 17th, 1975. The entire country falls under the tyranny of Angkar, the communist party of the Khmer Rouge. The cities are abandoned, the population is thrown to the roads and forced to walk towards an uncertain future…", + "posterPath": "/3qYbFI52dvNpfAtfvYP13iGIXez.jpg", + "backdropPath": "/u5X866QieA2Y2umcgcpPCiXit87.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 36 + ], + "genres": [ + "Animation", + "Drama", + "History" + ], + "releaseDate": "2019-03-06", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.9, + "voteCount": 71, + "popularity": 6.5973 + }, + { + "id": 605, + "title": "The Matrix Revolutions", + "originalTitle": "The Matrix Revolutions", + "overview": "The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.", + "posterPath": "/bkkS61w94ZVMNVd8KEyyJl2tnY5.jpg", + "backdropPath": "/kJYPag1YrA4PsXIftFdq3QEaanV.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 53, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2003-11-05", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 10441, + "popularity": 6.5969 + }, + { + "id": 20504, + "title": "The Book of Eli", + "originalTitle": "The Book of Eli", + "overview": "A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.", + "posterPath": "/1H1y9ZiqNFaLgQiRDDZLA55PviW.jpg", + "backdropPath": "/aPrrrGtSjXbw8XnpzsVJgF0ioq3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2010-01-14", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.796, + "voteCount": 6450, + "popularity": 6.5962 + }, + { + "id": 139575, + "title": "Bitch Hug", + "originalTitle": "Bitchkram", + "overview": "Kristin counts down the days to her high school graduation, when she'll finally get to leave her small town and her manipulative sister behind, for the New York of her dreams. Everything is perfect, and the local paper has promised to publish Kristin's columns about the city that never sleeps. But Kristin misses her flight and, to escape total humiliation, instead ends up hiding out at the house of the peculiar young girl Andrea, far out on the countryside. In this house of Nowhere, Kristin brings Andrea along to the pulsating heart of New York on a big virtual adventure which she chronicles for everyone at home to follow. But then reality comes knocking.", + "posterPath": "/kkEdsZXhQTENPZF1KlzLYUq8sqt.jpg", + "backdropPath": "/xAShY62NKSS0pamjk6v26VB3Fqe.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-10-19", + "releaseYear": "2012", + "originalLanguage": "sv", + "voteAverage": 6, + "voteCount": 12, + "popularity": 6.5961 + }, + { + "id": 770, + "title": "Gone with the Wind", + "originalTitle": "Gone with the Wind", + "overview": "The spoiled daughter of a Georgia plantation owner conducts a tumultuous romance with a cynical profiteer during the American Civil War and Reconstruction Era.", + "posterPath": "/lNz2Ow0wGCAvzckW7EOjE03KcYv.jpg", + "backdropPath": "/4FHcxMtVruMr7ltU2cItWssLjTP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752, + 10749 + ], + "genres": [ + "Drama", + "War", + "Romance" + ], + "releaseDate": "1939-12-15", + "releaseYear": "1939", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 4234, + "popularity": 6.596 + }, + { + "id": 408, + "title": "Snow White and the Seven Dwarfs", + "originalTitle": "Snow White and the Seven Dwarfs", + "overview": "A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as \"the fairest in the land,\" and Snow White's beauty surpasses her own.", + "posterPath": "/3VAHfuNb6Z7UiW12iYKANSPBl8m.jpg", + "backdropPath": "/wmSxNVGZOV1A51Yx6ChDXk3NVVi.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 16, + 10751 + ], + "genres": [ + "Fantasy", + "Animation", + "Family" + ], + "releaseDate": "1938-01-14", + "releaseYear": "1938", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 7798, + "popularity": 6.596 + }, + { + "id": 11967, + "title": "Young Guns", + "originalTitle": "Young Guns", + "overview": "A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.", + "posterPath": "/3AgCq7xY1rHRAAn0iVcnNr2OWL.jpg", + "backdropPath": "/AoFo9HeJU7jiHAUNawpwhs3zQbd.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 28, + 12 + ], + "genres": [ + "Western", + "Action", + "Adventure" + ], + "releaseDate": "1988-08-12", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 984, + "popularity": 6.5951 + }, + { + "id": 7553, + "title": "Waiting...", + "originalTitle": "Waiting...", + "overview": "Employees at a Bennigan's-like restaurant (called, creatively enough, Shenanigan's), kill time before their real lives get started. But while they wait, they'll have to deal with picky customers who want their steak cooked to order and enthusiastic managers who want to build the perfect wait staff. Luckily, these employees have effective revenge tactics.", + "posterPath": "/uyZ11F0ZdUWR29wx8pS9CMCNyse.jpg", + "backdropPath": "/jaegX6b1InnSSUAagdr0NE2ABBS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2005-10-07", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.215, + "voteCount": 947, + "popularity": 6.5932 + }, + { + "id": 64293, + "title": "Global Heresy", + "originalTitle": "Global Heresy", + "overview": "A rock band bursts onto the scene and then their frontman disappears on the eve of a European tour.", + "posterPath": "/wvPRRiM2W4Qa4M6nAkvfHfEY22u.jpg", + "backdropPath": "/4tpZ1LV2GucYokTRA2vyxfpEmTn.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2002-09-03", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 4.885, + "voteCount": 26, + "popularity": 6.593 + }, + { + "id": 1487, + "title": "Hellboy", + "originalTitle": "Hellboy", + "overview": "In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before they summon a baby demon who is rescued by Allied forces and dubbed \"Hellboy\". Sixty years later, Hellboy serves the cause of good rather than evil as an agent in the Bureau of Paranormal Research & Defense, along with Abe Sapien - a merman with psychic powers, and Liz Sherman - a woman with pyrokinesis, protecting America against dark forces.", + "posterPath": "/lbaTEneOofwvAyg77R8HbFML2zT.jpg", + "backdropPath": "/avwEj8wiywFH6FZ6h2wzvyJpiH7.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28 + ], + "genres": [ + "Fantasy", + "Action" + ], + "releaseDate": "2004-04-02", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 7205, + "popularity": 6.5926 + }, + { + "id": 133382, + "title": "Lackawanna Blues", + "originalTitle": "Lackawanna Blues", + "overview": "In a story fueled by rhythm and blues, a young boy's life is shaped by love and the stories of a cast of characters in the boarding house where he lives in 1960s Lackawanna, New York.", + "posterPath": "/r96EgKcTtNUzwH5mZp7I6yYlppW.jpg", + "backdropPath": "/1PJi26CSVmRDdbHRkkjwgX5FdTw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 10770 + ], + "genres": [ + "Drama", + "Music", + "TV Movie" + ], + "releaseDate": "2005-02-12", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.732, + "voteCount": 28, + "popularity": 6.5922 + }, + { + "id": 110415, + "title": "Snowpiercer", + "originalTitle": "설국열차", + "overview": "In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer; a train that travels around the globe via a perpetual-motion engine.", + "posterPath": "/9JPx09Rr0Txq2eSQfjq1DEBR5cx.jpg", + "backdropPath": "/33dV6HAnXBmwKl640gO3U4auqUN.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 18 + ], + "genres": [ + "Action", + "Science Fiction", + "Drama" + ], + "releaseDate": "2013-08-01", + "releaseYear": "2013", + "originalLanguage": "ko", + "voteAverage": 6.909, + "voteCount": 10094, + "popularity": 6.5921 + }, + { + "id": 70981, + "title": "Prometheus", + "originalTitle": "Prometheus", + "overview": "A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.", + "posterPath": "/qsYQflQhOuhDpQ0W2aOcwqgDAeI.jpg", + "backdropPath": "/qDG5SlGkWNsjSJWiGTBMFI8DpzA.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 9648 + ], + "genres": [ + "Science Fiction", + "Adventure", + "Mystery" + ], + "releaseDate": "2012-05-30", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.589, + "voteCount": 12869, + "popularity": 6.592 + }, + { + "id": 13920, + "title": "Radio", + "originalTitle": "Radio", + "overview": "In the racially divided town of Anderson, South Carolina in 1976, football coach Harold Jones spots a mentally disabled African-American young man nicknamed Radio near his practice field and is inspired to befriend him. Soon, Radio is Jones' loyal assistant, and he becomes a student at T.L. Hanna High School. But things start to sour when Coach Jones begins taking guff from parents and fans who feel that his devotion to Radio is getting in the way of the team's quest for a championship.", + "posterPath": "/uQ6ci4iFHhB6TWB2f4wftR7AEly.jpg", + "backdropPath": "/wDln5edQPFYMeKvakkYCLUXOPRP.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-10-24", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.303, + "voteCount": 805, + "popularity": 6.592 + }, + { + "id": 745589, + "title": "Villa Caprice", + "originalTitle": "Villa Caprice", + "overview": "Famous lawyer, Luc Germon adds Gilles Fontaine, one of the most powerful bosses in France, to his clients. He is suspected of having acquired a magnificent property, Villa Caprice, under questionable conditions.", + "posterPath": "/ka3xS8EVSEYtESJnROIxHKgwa2M.jpg", + "backdropPath": "/f3IyeNjIuOXJqT3gsqoVTmiTKqL.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2021-06-02", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 5.5, + "voteCount": 53, + "popularity": 6.5916 + }, + { + "id": 180876, + "title": "Submission", + "originalTitle": "Scandalo", + "overview": "In wartime France, Pharmacist Eliane begins a torrid affair with her shop assistant Armand, but she soon becomes dominated by him. He demands more and more from her, humiliating her and putting her family at risk.", + "posterPath": "/lnguAENmqRGnbdoPeseI0RKdkHZ.jpg", + "backdropPath": "/oJjZSgcZK8iTXjqSOC5zhq7C3XR.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1976-03-26", + "releaseYear": "1976", + "originalLanguage": "it", + "voteAverage": 6.111, + "voteCount": 27, + "popularity": 6.5913 + }, + { + "id": 1187762, + "title": "Stories of Samba", + "originalTitle": "Saudosa Maloca", + "overview": "At a bar table, old samba singer and composer Adoniran Barbosa tells a young waiter stories about a São Paulo that no longer exists. He fondly remembers the maloca where he lived with Joca and Mato Grosso, their passion for Iracema and other characters eternalized in his sambas, chronicles of a metropolis swallowed up by the voracious appetite of progress.", + "posterPath": "/iSVc6JY8DHKphcYhS3dJwMK1NPu.jpg", + "backdropPath": "/tvfy5mNIGXNEdBLgQQIbmyr5Maw.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-03-21", + "releaseYear": "2024", + "originalLanguage": "pt", + "voteAverage": 6.6, + "voteCount": 17, + "popularity": 6.5905 + }, + { + "id": 10527, + "title": "Madagascar: Escape 2 Africa", + "originalTitle": "Madagascar: Escape 2 Africa", + "overview": "Alex, Marty, and other zoo animals find a way to escape from Madagascar when the penguins reassemble a wrecked airplane. The precariously repaired craft stays airborne just long enough to make it to the African continent. There the New Yorkers encounter members of their own species for the first time. Africa proves to be a wild place, but Alex and company wonder if it is better than their Central Park home.", + "posterPath": "/agRbLOHgN46TQO4YdKR462iR7To.jpg", + "backdropPath": "/3yXLkSTrVhG66MIAr3X6C4gjccw.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 35, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2008-10-30", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 7205, + "popularity": 6.5903 + }, + { + "id": 412471, + "title": "Dark Silence", + "originalTitle": "Dark Silence", + "overview": "Craig moves with his daughter, Jennifer, into a new home after the death of his wife. It’s not long before the pair discover the house is haunted by a dark presence that wants to take over the child. One day Jennifer disappears and Craig must face a terrible truth in order to find his daughter.", + "posterPath": "/pBP8eWb66SGbWtDMAMYghrqrJId.jpg", + "backdropPath": "/sR4Dpt2T0Zo0U9fFj0pT2H1XiFn.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2016-10-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 3.9, + "voteCount": 30, + "popularity": 6.5894 + }, + { + "id": 18029, + "title": "Dying Breed", + "originalTitle": "Dying Breed", + "overview": "An extinct species, the Tasmanian tiger.\r A long-forgotten legend, “The Pieman” aka Alexander Pearce, who was hanged for cannibalism in 1824.\r Both had a desperate need to survive; both could have living descendants within the Tasmanian bush. Four hikers venture deep into isolated territory to find one of these legends, but which one will they come upon first?", + "posterPath": "/x8PQSt7nHAbMEbHX0nSLaUIPj4Z.jpg", + "backdropPath": "/4KbFv3dnhS0SURJcpZjWanf6oBo.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2008-04-26", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.135, + "voteCount": 115, + "popularity": 6.5892 + }, + { + "id": 39916, + "title": "Contamination", + "originalTitle": "Contamination", + "overview": "A former astronaut helps a government agent and a police detective track the source of mysterious alien pod spores, filled with lethal flesh-dissolving acid, to a South American coffee plantation controlled by alien pod clones.", + "posterPath": "/eCUSieEikP6vt0dBbIKnEGpyEK2.jpg", + "backdropPath": "/qIIOgtvJ4NaLjrtCzqnrFzhT5Ko.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27 + ], + "genres": [ + "Science Fiction", + "Horror" + ], + "releaseDate": "1980-08-02", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 140, + "popularity": 6.5885 + }, + { + "id": 1018, + "title": "Mulholland Drive", + "originalTitle": "Mulholland Drive", + "overview": "Blonde Betty Elms has only just arrived in Hollywood to become a movie star when she meets an enigmatic brunette with amnesia. Meanwhile, as the two set off to solve the second woman's identity, filmmaker Adam Kesher runs into ominous trouble while casting his latest project.", + "posterPath": "/x7A59t6ySylr1L7aubOQEA480vM.jpg", + "backdropPath": "/y1giivdsGLyo1LCvlsL6mLKyTZ7.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 9648 + ], + "genres": [ + "Thriller", + "Drama", + "Mystery" + ], + "releaseDate": "2001-06-06", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.804, + "voteCount": 6753, + "popularity": 6.5883 + }, + { + "id": 276908, + "title": "Comet", + "originalTitle": "Comet", + "overview": "When a chance encounter brings together the cynical Dell and the quick-witted Kimberly, the stage is set for a tempestuous love affair that unfolds like a puzzle. As the film zigzags back and forth in time — from a meteor shower in LA, to an encounter in a Paris hotel room, to a fateful phone call — an unforgettable portrait of a relationship emerges.", + "posterPath": "/4zOOSa5zyJDvqDDKFwUQVMK6eDe.jpg", + "backdropPath": "/znDbUAz0uPgc329iHBiobnnYA2P.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 35, + 10749 + ], + "genres": [ + "Science Fiction", + "Comedy", + "Romance" + ], + "releaseDate": "2014-12-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.663, + "voteCount": 450, + "popularity": 6.5881 + }, + { + "id": 1257957, + "title": "Bison Kaalamaadan", + "originalTitle": "பைசன் காளமாடன்", + "overview": "A young man fights to overcome violence plaguing his village and succeed as a professional kabaddi player.", + "posterPath": "/5IPFJ2XFbYjdIw4912ZufCMolX.jpg", + "backdropPath": "/6xEk8ZbqCgmicmeICyYGospXU7R.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2025-10-17", + "releaseYear": "2025", + "originalLanguage": "ta", + "voteAverage": 8, + "voteCount": 11, + "popularity": 6.5879 + }, + { + "id": 79080, + "title": "Presence of Mind", + "originalTitle": "El celo", + "overview": "A governess, caring for two children at a remote estate, becomes convinced that the grounds are haunted and the children are under an evil influence.", + "posterPath": "/v0DDI1Fjk8jFmWMjLfaNRbmCQky.jpg", + "backdropPath": "/ptxrvJXr5Yoc2gcDMYF2MQ60Stc.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2000-09-24", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 4.444, + "voteCount": 18, + "popularity": 6.5878 + }, + { + "id": 67220, + "title": "Hard Contract", + "originalTitle": "Hard Contract", + "overview": "A cold hearted American hit man goes to Europe for \"one last score\". His encounter with a beautiful young woman casts self doubt on his lifeblood, and influences him to resist carrying out the contract.", + "posterPath": "/e5xeWDPyCUKzktgxl4IX8TZ95Js.jpg", + "backdropPath": "/r9MAXqPapRjxjRrPPGt6IFom2Nv.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 10749 + ], + "genres": [ + "Crime", + "Romance" + ], + "releaseDate": "1969-04-30", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 11, + "popularity": 6.587 + }, + { + "id": 412302, + "title": "Gemini", + "originalTitle": "Gemini", + "overview": "A heinous crime tests the complex relationship between a tenacious personal assistant and her Hollywood starlet boss. As the assistant travels across Los Angeles to unravel the mystery, she must stay one step ahead of a determined policeman and confront her own understanding of friendship, truth and celebrity.", + "posterPath": "/oIltQs7MPk7VQFG3DJfgC63mShU.jpg", + "backdropPath": "/eReiiUBlDgF2dAtKkpxzzK6H8t2.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 80, + 18, + 53 + ], + "genres": [ + "Mystery", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2017-06-14", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.402, + "voteCount": 143, + "popularity": 6.5868 + }, + { + "id": 568091, + "title": "Fractured", + "originalTitle": "Fractured", + "overview": "Driving cross-country, Ray and his wife and daughter stop at a highway rest area where his daughter falls and breaks her arm. After a frantic rush to the hospital and a clash with the check-in nurse, Ray is finally able to get her to a doctor. While the wife and daughter go downstairs for an MRI, Ray, exhausted, passes out in a chair in the lobby. Upon waking up, they have no record or knowledge of Ray's family ever being checked in.", + "posterPath": "/paZNRffT3kUckuRFKbeDBuX1YcZ.jpg", + "backdropPath": "/6y4748yU4dnrI7jF2loGscmiVXQ.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2019-09-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.749, + "voteCount": 2767, + "popularity": 6.5867 + }, + { + "id": 433726, + "title": "Kamen Rider × Super Sentai: Ultra Super Hero Wars", + "originalTitle": "仮面ライダー×スーパー戦隊 超スーパーヒーロー大戦", + "overview": "The Game World launches an attack on the real world. In front of Kamen Rider Ex-Aid and the Uchu Sentai Kyuranger appears the \"Arena of Death\" where the destruction of the Earth will be decided. Trapped in this inescapable dimension, generations of Super Sentai and Kamen Riders must engage in a battle royale, an unprecedented battlefield of many puzzles connecting the real and game worlds. And then, \"Those Heroes\" revive... Everything is scaled up, all rules are broken! And when it seems like the real world will fall into a disaster, imagination brings forth unimaginable new heroes!", + "posterPath": "/ufgZ4J3cs5TYN8zFHeMJQXR7OT2.jpg", + "backdropPath": "/3MmSTpxijdczhgqncXgXMlyHD7x.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2017-03-25", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 18, + "popularity": 6.5859 + }, + { + "id": 470390, + "title": "The Atoning", + "originalTitle": "The Atoning", + "overview": "Vera, Ray, and Sam, a seemingly normal family, are haunted by more than mere ghosts. The lingering horror of their past threatens their ability to function as a loving family until they become enlightened by a mystical encounter. From that moment on, they're thrust into a horror worse than anything they've ever experienced. Personal demons manifest and tear the family apart from the inside out as they come to terms with their past.", + "posterPath": "/h8TucRd6IaqaHp0uVzPmKJFO6jn.jpg", + "backdropPath": "/3rDrNWejOwdiLrcZqBQQMOAo5Zo.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 53 + ], + "genres": [ + "Drama", + "Horror", + "Thriller" + ], + "releaseDate": "2017-02-18", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.541, + "voteCount": 61, + "popularity": 6.5856 + }, + { + "id": 717930, + "title": "Kandahar", + "originalTitle": "Kandahar", + "overview": "After his mission is exposed, an undercover CIA operative stuck deep in hostile territory in Afghanistan must fight his way out, alongside his Afghan translator, to an extraction point in Kandahar, all whilst avoiding elite enemy forces and foreign spies tasked with hunting them down.", + "posterPath": "/lCanGgsqF4xD2WA5NF8PWeT3IXd.jpg", + "backdropPath": "/igXrblWrU1uaC09VKyquHHSebr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 10752 + ], + "genres": [ + "Action", + "Thriller", + "War" + ], + "releaseDate": "2023-05-25", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 1169, + "popularity": 6.5852 + }, + { + "id": 156659, + "title": "Lolida 2000", + "originalTitle": "Lolida 2000", + "overview": "Sex is banned but Lolita becomes a sexual rebel and broadcasts erotic adventures throughout the universe while satisfying her own forbidden fantasies.", + "posterPath": "/jAbNmF13b8WFjGSlU6eSzCUkuJH.jpg", + "backdropPath": "/9SutflaCgqxH7mMHXZ0740OctCW.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "1998-02-03", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 4.318, + "voteCount": 22, + "popularity": 6.5844 + }, + { + "id": 45272, + "title": "Country Strong", + "originalTitle": "Country Strong", + "overview": "Soon after the rising young singer-songwriter Beau Williams gets involved with a fallen, emotionally unstable country star Kelly Canter, the pair embark on a career resurrection tour helmed by her husband/manager James and featuring a beauty queen-turned-singer Chiles Stanton. Between concerts, romantic entanglements and old demons threaten to derail them all.", + "posterPath": "/6C95tD92E9xm5poyyzs37bYemM0.jpg", + "backdropPath": "/hJgamYy7QSELC3UZSW9a3f0mjfe.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10402 + ], + "genres": [ + "Drama", + "Romance", + "Music" + ], + "releaseDate": "2010-12-22", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.118, + "voteCount": 261, + "popularity": 6.5842 + }, + { + "id": 43654, + "title": "Edward II", + "originalTitle": "Edward II", + "overview": "England, 14th century. King Edward II falls in love with Piers Gaveston, a young man of humble origins, whom he honors with favors and titles of nobility. The cold and jealous Queen Isabella conspires with the evil Mortimer to get rid of Gaveston, overthrow her husband and take power…", + "posterPath": "/sB3ktIeyCoudoRMJgzo9goA9k1v.jpg", + "backdropPath": "/47t1CrvgO1ZnNAwZN5L2gB1eLpo.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 10749, + 18 + ], + "genres": [ + "History", + "Romance", + "Drama" + ], + "releaseDate": "1991-09-11", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 61, + "popularity": 6.5833 + }, + { + "id": 992638, + "title": "Catching Dust", + "originalTitle": "Catching Dust", + "overview": "A criminal husband and his wife hide in a lone trailer. Exhausted by her husbands controlling ways, she decides to leave. But then a trailer arrives with a couple which creates dangerous consequences for them all.", + "posterPath": "/w7LTgu7kiwvBgoKLhtc9vP1IDgr.jpg", + "backdropPath": "/uvgqWe8wFRmZlHLoZ6iKW0eb4r2.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-08-23", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 17, + "popularity": 6.5831 + }, + { + "id": 259416, + "title": "Tommy", + "originalTitle": "Tommy", + "overview": "After a year abroad Estelle returns home to collect her husband's share of the loot from a major robbery.", + "posterPath": "/slzDmA4mMA1mj28JX594ogdtZ1.jpg", + "backdropPath": "/1SBxhDcfrblXYJ5mUwgFP6PUOGH.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53, + 9648 + ], + "genres": [ + "Crime", + "Thriller", + "Mystery" + ], + "releaseDate": "2014-03-14", + "releaseYear": "2014", + "originalLanguage": "sv", + "voteAverage": 5, + "voteCount": 21, + "popularity": 6.5827 + }, + { + "id": 49046, + "title": "All Quiet on the Western Front", + "originalTitle": "Im Westen nichts Neues", + "overview": "Paul Baumer and his friends Albert and Muller, egged on by romantic dreams of heroism, voluntarily enlist in the German army. Full of excitement and patriotic fervour, the boys enthusiastically march into a war they believe in. But once on the Western Front, they discover the soul-destroying horror of World War I.", + "posterPath": "/2IRjbi9cADuDMKmHdLK7LaqQDKA.jpg", + "backdropPath": "/zbOlpFM306PHE7EP1OELCH5qSmS.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 36, + 18 + ], + "genres": [ + "War", + "History", + "Drama" + ], + "releaseDate": "2022-10-07", + "releaseYear": "2022", + "originalLanguage": "de", + "voteAverage": 7.722, + "voteCount": 4397, + "popularity": 6.5826 + }, + { + "id": 663566, + "title": "Timeless Love", + "originalTitle": "Timeless Love", + "overview": "Megan seems to have the perfect life with a wonderful husband named Thomas and 2 adorable children. Then she finds herself awakening from a coma - and discovers she is not and has never been married. But when she meets Thomas for real, she seizes the chance to help him fall in love with her, again-for the first time.", + "posterPath": "/owH4AZj42ME7WIGDbBS9rnBdeiU.jpg", + "backdropPath": "/lTIdLqVSxQdavRq00HlofE15ZyC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10770, + 53 + ], + "genres": [ + "Drama", + "Romance", + "TV Movie", + "Thriller" + ], + "releaseDate": "2019-12-26", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.786, + "voteCount": 42, + "popularity": 6.5824 + }, + { + "id": 1043565, + "title": "Mindcage", + "originalTitle": "Mindcage", + "overview": "Detectives Jake Doyle and Mary Kelly seek the help of an incarcerated serial killer named The Artist when a copycat killer strikes. While Mary searches for clues in The Artist's brilliant but twisted psyche, she and Jake are lured into a diabolical game of cat and mouse, racing against time to stay one step ahead of The Artist and his copycat.", + "posterPath": "/fUi9vNYQaB8QtrbEyS9J6vbKJJt.jpg", + "backdropPath": "/ekZUWo5XtSrfe10RKWrL0YKkq9b.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 80 + ], + "genres": [ + "Mystery", + "Thriller", + "Crime" + ], + "releaseDate": "2022-12-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.912, + "voteCount": 398, + "popularity": 6.582 + }, + { + "id": 17379, + "title": "Last Holiday", + "originalTitle": "Last Holiday", + "overview": "The discovery that she has a terminal illness prompts introverted department store saleswoman Georgia Byrd to reflect on what she realizes has been an overly cautious life. With weeks to live, she withdraws her life savings, sells all her possessions and jets off to Europe where she lives it up at a posh hotel. Upbeat and passionate, Georgia charms everybody she meets, including renowned Chef Didier. The only one missing from her new life is her longtime crush Sean Matthews.", + "posterPath": "/hRNZszPHjIpYGlrMN3o4f6f6cVd.jpg", + "backdropPath": "/7D1v3y0RPoyJBZAx4eGdjcqJUuD.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 35, + 18 + ], + "genres": [ + "Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2006-01-13", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.234, + "voteCount": 826, + "popularity": 6.5817 + }, + { + "id": 84361, + "title": "Hell River", + "originalTitle": "Partizani", + "overview": "Yugoslav partisans battle Nazi invaders in a series of bloody confrontations which eventually culminate in the Battle at Hell River.", + "posterPath": "/9KADDF0xM0r6FYhe6d52DVgrafo.jpg", + "backdropPath": "/uyXkPsZ1nGm3pFSnHBEhRFM4ht2.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18, + 53 + ], + "genres": [ + "War", + "Drama", + "Thriller" + ], + "releaseDate": "1974-07-17", + "releaseYear": "1974", + "originalLanguage": "sh", + "voteAverage": 6.1, + "voteCount": 11, + "popularity": 6.5816 + }, + { + "id": 25234, + "title": "Evil Ed", + "originalTitle": "Evil Ed", + "overview": "Edward is a friendly, harmless film editor in the splatter and gore department of a horror film company. Ed is assigned to work on the new Loose Limbs series of horror films after the previous editor killed himself with a hand grenade. Later his reality begins to twist and distort into a horrifying world where nothing is as it seems. Soon enough this turns Ed into Evil Ed!", + "posterPath": "/xnfYoAaNVFM4XZbpEN7MtI5R4Hp.jpg", + "backdropPath": "/r9UT8rRCAy2WG2Qg5jQz2H1jQ4c.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "1995-11-01", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 5.327, + "voteCount": 75, + "popularity": 6.5815 + }, + { + "id": 22023, + "title": "The Border", + "originalTitle": "The Border", + "overview": "A corrupted border agent decides to clean up his act when an impoverished woman's baby is put up for sale on the black market.", + "posterPath": "/73yotjKSU8QCxlhoPm1hATrFHvT.jpg", + "backdropPath": "/hLmWC3yKPye34MA8HFrqUalEsse.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1982-01-29", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 138, + "popularity": 6.5802 + }, + { + "id": 980489, + "title": "Gran Turismo", + "originalTitle": "Gran Turismo", + "overview": "The ultimate wish-fulfillment tale of a teenage Gran Turismo player whose gaming skills won him a series of Nissan competitions to become an actual professional racecar driver.", + "posterPath": "/51tqzRtKMMZEYUpSYkrUE7v9ehm.jpg", + "backdropPath": "/xFYpUmB01nswPgbzi8EOCT1ZYFu.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 18 + ], + "genres": [ + "Adventure", + "Action", + "Drama" + ], + "releaseDate": "2023-08-09", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 3179, + "popularity": 6.5798 + }, + { + "id": 17317, + "title": "Urban Justice", + "originalTitle": "Urban Justice", + "overview": "Seagal plays a man with a dark and violent past, who seeks revenge for the murder of his son.", + "posterPath": "/owBmON7qbru3VvV6AaorgtXhMmF.jpg", + "backdropPath": "/wNnrNmZe3GBmZnCIroFXPWOMhL4.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 53 + ], + "genres": [ + "Crime", + "Action", + "Thriller" + ], + "releaseDate": "2007-10-21", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.07, + "voteCount": 123, + "popularity": 6.5795 + }, + { + "id": 914668, + "title": "Cabin Connection", + "originalTitle": "Cabin Connection", + "overview": "When lifestyle writer and committed bachelorette Hannah Monroe inherits her late-grandmother's cabin, she hires her widowed neighbour, local handyman Cole to help get it in shape to sell. But as Hannah and Cole spend time together, Hannah can't help but feel her faith in love and relationships being restored- and she questions whether or not she should sell the cabin at all.", + "posterPath": "/bPz39HxsNWhdiztOUfc9l593HeA.jpg", + "backdropPath": "/tYHQ2f7hSMBNJwchlaXWLRjMCX8.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 10770, + 18 + ], + "genres": [ + "Romance", + "TV Movie", + "Drama" + ], + "releaseDate": "2022-01-15", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 14, + "popularity": 6.5781 + }, + { + "id": 40095, + "title": "Dead Heat", + "originalTitle": "Dead Heat", + "overview": "Detective Roger Mortis is killed in action while investigating a string of mysterious robberies: until he's brought back from the dead with a chemical company's secret re-animation technology. Now he has twelve hours to solve the case of his own death before he dies: And stays dead.", + "posterPath": "/7jBtDMQrXpHlyuJImTAs6Oexv7H.jpg", + "backdropPath": "/pJeJe04rwt32YT4tQlpJ8DNEV7b.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 878, + 53, + 35 + ], + "genres": [ + "Action", + "Horror", + "Science Fiction", + "Thriller", + "Comedy" + ], + "releaseDate": "1988-05-06", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.184, + "voteCount": 223, + "popularity": 6.5776 + }, + { + "id": 752623, + "title": "The Lost City", + "originalTitle": "The Lost City", + "overview": "Reclusive author Loretta Sage writes about exotic places in her popular adventure novels that feature a handsome cover model named Alan. While on tour promoting her new book with Alan, Loretta gets kidnapped by an eccentric billionaire who hopes she can lead him to the ancient city's lost treasure that featured in her latest story. Alan, determined to prove he can be a hero in real life and not just on the pages of her books, sets off to rescue her.", + "posterPath": "/rnheO8cFvCYcmZsDrBoabJbKLFE.jpg", + "backdropPath": "/1Ds7xy7ILo8u2WWxdnkJth1jQVT.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35 + ], + "genres": [ + "Action", + "Adventure", + "Comedy" + ], + "releaseDate": "2022-03-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 3842, + "popularity": 6.5771 + }, + { + "id": 156129, + "title": "The Reunion", + "originalTitle": "La Rimpatriata", + "overview": "Two members of a former group of friends find themselves after many years by chance through the streets of Milan; after a moment, memories of the past resurface.", + "posterPath": "/ve0yqgVHMsGTRv24Xg2j1aLby58.jpg", + "backdropPath": "/7oWiaD979MR9HRF03tNe3D4LQgI.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1963-09-19", + "releaseYear": "1963", + "originalLanguage": "it", + "voteAverage": 5.706, + "voteCount": 17, + "popularity": 6.5762 + }, + { + "id": 162284, + "title": "Guilty Hands", + "originalTitle": "Guilty Hands", + "overview": "A district attorney commits the perfect murder when he kills his daughter's womanizing fiancé and then tries framing the fiancé's lover.", + "posterPath": "/nhS05fuQJ2lbtEZKkAXd2vOikY8.jpg", + "backdropPath": "/f1O5CG13obfJfiE8tV1lvIgGYK2.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1931-08-22", + "releaseYear": "1931", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 13, + "popularity": 6.5746 + }, + { + "id": 27265, + "title": "Mother", + "originalTitle": "Mother", + "overview": "A neurotic, twice-divorced sci-fi writer moves back in with his mother to solve his personal problems.", + "posterPath": "/mxJJ0IEOOdvMo5yO7rcJBqyZ11n.jpg", + "backdropPath": "/aViC67Gyp0BzAQjBcGJsRv2HlB0.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1996-12-25", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 88, + "popularity": 6.5746 + }, + { + "id": 821859, + "title": "A Girl Returned", + "originalTitle": "L'arminuta", + "overview": "A 13 years old girl is forced to go living with another family for reasons unknown.", + "posterPath": "/8awEniT6lQt78FQNBhxk85Ipgvn.jpg", + "backdropPath": "/kA2HOCEXBD4XU7akp17Cx4s2sVe.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-10-21", + "releaseYear": "2021", + "originalLanguage": "it", + "voteAverage": 7.2, + "voteCount": 79, + "popularity": 6.5745 + }, + { + "id": 16804, + "title": "Departures", + "originalTitle": "おくりびと", + "overview": "Daigo, a cellist, is laid off from his orchestra and moves with his wife back to his small hometown where the living is cheaper. Thinking he’s applying for a job at a travel agency he finds he’s being interviewed for work with departures of a more permanent nature – as an undertaker’s assistant.", + "posterPath": "/mms4nMZuPYOyEengRxCaEk7SXMd.jpg", + "backdropPath": "/AoWW2J4PoDe0IPuCVQOk50QFS4D.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-09-13", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 880, + "popularity": 6.5745 + }, + { + "id": 1083420, + "title": "Adulthood", + "originalTitle": "Adulthood", + "overview": "The lives of two siblings are completely upended when they discover a dead body, long buried in their parent’s basement, sending them down a rabbit hole of crime and murder.", + "posterPath": "/a40Gi0Zq4Ecqu3obmOp6TSgEne1.jpg", + "backdropPath": "/7MEi8dOoQKz6no668dZDQgotOPD.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 18, + 9648 + ], + "genres": [ + "Comedy", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 61, + "popularity": 6.5743 + }, + { + "id": 33506, + "title": "Indian Summer", + "originalTitle": "Indian Summer", + "overview": "A group of childhood friends, now in their thirties, reunite at Camp Tamakwa. Only a few of the original campers show up, but they still have a good time reminiscing. The people share experiences and grow while at the camp. They are dismayed to discover that the camp's owner, Unca Lou, is going to close the camp down.", + "posterPath": "/A1gUvZbQ25wsnj7HD8bDwTxOSWy.jpg", + "backdropPath": "/4ZRyBQI9clbKxb9rsCqJkXdRIut.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1993-04-23", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 72, + "popularity": 6.5741 + }, + { + "id": 868, + "title": "Tsotsi", + "originalTitle": "Tsotsi", + "overview": "A young South African boy from the Johannesburg ghetto named Tsotsi, meaning Gangster, leaves home as a child to get away from his helpless parents. Now a teenage thug, Tsotsi finds a baby in the back seat of a car he's just stolen. He decides that it is his responsibility to care for the infant and in the process learns that maybe the criminal life isn’t the best way.", + "posterPath": "/r3ebTJFcDZ35GaKcuUQQe243z4f.jpg", + "backdropPath": "/gLxgqHpJcMvB6cMTA4hUBxoOMJ1.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2005-12-23", + "releaseYear": "2005", + "originalLanguage": "tn", + "voteAverage": 6.9, + "voteCount": 334, + "popularity": 6.5739 + }, + { + "id": 201938, + "title": "Prehysteria! 3", + "originalTitle": "Prehysteria! 3", + "overview": "The dinosaurs help young Ella and her family save their mini-putt business.", + "posterPath": "/nBTW3ME6IQuzuq6puvOhN0IQpQn.jpg", + "backdropPath": "/yOYwoqktnzonLpeGvC0takDFNrh.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751, + 878, + 14, + 35 + ], + "genres": [ + "Drama", + "Family", + "Science Fiction", + "Fantasy", + "Comedy" + ], + "releaseDate": "1995-09-26", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 18, + "popularity": 6.5736 + }, + { + "id": 196184, + "title": "Slaves", + "originalTitle": "Die Sklavinnen", + "overview": "A brothel owner is questioned in the disappearance of the daughter of a wealthy man after she is still not returned, or told of her possible whereabouts, after the $5,000,000 ransom was paid.", + "posterPath": "/aN6Fxu8w0T1yphZVWQgiadFV2kr.jpg", + "backdropPath": "/h70VW1P0gHPaGH9xVrboW0tQ7zy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 9648 + ], + "genres": [ + "Action", + "Thriller", + "Mystery" + ], + "releaseDate": "1977-04-15", + "releaseYear": "1977", + "originalLanguage": "de", + "voteAverage": 5, + "voteCount": 21, + "popularity": 6.5736 + }, + { + "id": 325358, + "title": "Superfast!", + "originalTitle": "Superfast!", + "overview": "Undercover cop Lucas White joins Vin Serento's gang of illegal street racers. They are fast and they are furious and they plan to double cross Los Angeles kingpin Juan Carlos de la Sol, who hides his cash in a downtown Taco Bell.", + "posterPath": "/iuIWl90qCpoxv6g775JB6Kg0m86.jpg", + "backdropPath": "/v7JSw9XCkdv533TP7VabRZJ63PC.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 28 + ], + "genres": [ + "Comedy", + "Action" + ], + "releaseDate": "2015-03-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.088, + "voteCount": 486, + "popularity": 6.5725 + }, + { + "id": 176983, + "title": "One Piece Film: Z", + "originalTitle": "ONE PIECE FILM Z", + "overview": "Zephyr, now known as Z, rides the seas with only one goal: Destroy all pirates and their dreams at becoming King of Pirates. When Luffy and his crew encounter him at sea, not only are they utterly defeated by the man with an arm made of Seastone, Nami, Robin, and Chopper are turned 10 years younger due to Z's minion Ain. Luffy is so determined to win against him that he does not even notice Z's master plan that could sacrifice thousands of lives.", + "posterPath": "/dd0HwfxstffjRgbBcQvtw3uqS6O.jpg", + "backdropPath": "/cHc7wnX6AIo71gUhwTo6IsAFirO.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 28, + 12 + ], + "genres": [ + "Animation", + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2012-12-15", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.491, + "voteCount": 541, + "popularity": 6.5725 + }, + { + "id": 78013, + "title": "Gokusen: The Movie", + "originalTitle": "ごくせん THE MOVIE", + "overview": "A passionate teacher, Kumiko Yamaguchi, a.k.a. Yankumi, is now overseeing the new students of Class 3D of Akado High School, who still have not opened up to her and are giving her a hard time. Current and former Class 3D students collide in this epic finale to the Japanese TV series.", + "posterPath": "/2MaWPFMVGkCijyaNHDFzyxBJ6k1.jpg", + "backdropPath": "/ajGwxxRhbtvmZtWCyQCdmGph1lD.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2009-07-11", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 23, + "popularity": 6.5725 + }, + { + "id": 776565, + "title": "Knocking", + "originalTitle": "Knackningar", + "overview": "After suffering a traumatic incident, Molly moves into a new apartment to begin her path to recovery, but it’s not long after her arrival that a series of persistent knocks and screams begin to wake her up at night.", + "posterPath": "/blpgrB5znnSSMl1qISj98C3i4Dl.jpg", + "backdropPath": "/xzvLxtxJOSP0PI4Tbda3RuHVQjd.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 27 + ], + "genres": [ + "Thriller", + "Drama", + "Horror" + ], + "releaseDate": "2021-10-08", + "releaseYear": "2021", + "originalLanguage": "sv", + "voteAverage": 5.5, + "voteCount": 42, + "popularity": 6.5724 + }, + { + "id": 52475, + "title": "Young Goethe in Love", + "originalTitle": "Goethe!", + "overview": "After aspiring poet Johann Wolfgang von Goethe fails his law exams, he's sent to a sleepy provincial court to reform. Instead, he falls for Lotte, a young woman who is promised to another man.", + "posterPath": "/5oyq7zDxGjq5qUdxY9KL7RLSpXL.jpg", + "backdropPath": "/zmYsI8P1yAEroRHyQe2uOWOK9D.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2010-10-14", + "releaseYear": "2010", + "originalLanguage": "de", + "voteAverage": 6, + "voteCount": 61, + "popularity": 6.5718 + }, + { + "id": 66737, + "title": "Emerald City", + "originalTitle": "Emerald City", + "overview": "A couple move to Sydney from Melbourne, and soon become lured by the bright lights of the big city. Colin, the scriptwriter husband, is corrupted by his editor and then falls for the girlfriend of his writing partner, while Colin's wife Kate begins to lose sight of her ideals in a new world of hustlers and cynics.", + "posterPath": "/2Cg7riuGHtke7Od8ywr7HJqSAG6.jpg", + "backdropPath": "/2ORhwFXLjXnFMcgH4IwPKA2snV7.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1988-12-09", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.643, + "voteCount": 14, + "popularity": 6.5713 + }, + { + "id": 54381, + "title": "Magnifico", + "originalTitle": "Magnifico", + "overview": "A boy builds a coffin for his terminally ill grandmother, while raising money to buy a wheelchair for his sister.", + "posterPath": "/gbmqUFm609fJoqoiwc4Bj9st0lA.jpg", + "backdropPath": "/ttGGNzD2CTHQHKZ5EIGehDnb31L.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-01-29", + "releaseYear": "2003", + "originalLanguage": "tl", + "voteAverage": 7.607, + "voteCount": 14, + "popularity": 6.5696 + }, + { + "id": 338797, + "title": "Spanish Western", + "originalTitle": "Spanish Western", + "overview": "A vindication of the role of the technicians and artists who made spaghetti western genre possible, and a walk through the landscapes that made it possible to recreate in Spain, mainly in the desert of Almería, hundreds of adventures set in the remote American Far West.", + "posterPath": "/pmryi5NJAvWeFIfoPY6vos2YDew.jpg", + "backdropPath": "/spDh83JhKW7ZGfGTHCcRk6rYUvR.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2015-05-04", + "releaseYear": "2015", + "originalLanguage": "es", + "voteAverage": 6.2, + "voteCount": 16, + "popularity": 6.5663 + }, + { + "id": 785199, + "title": "Tokyo Shaking", + "originalTitle": "Tokyo Shaking", + "overview": "March 11, 2011. The biggest tsunami Japan has ever experienced triggers the Fukushima disaster. Risks are being downplayed but the foreign community in Tokyo is terrified by this tragic event and the fact that no one is capable of assessing its scope. Among them, Alexandra, a French executive newly arrived from Hong Kong to work in a bank, has to face this nuclear crisis. Torn apart between fol- lowing the company’s instructions and going back to her husband and children who are still in Hong Kong, she will find herself defending honor and given word, despite the pervading terror and chaos.", + "posterPath": "/1cF3DiUX4DYRbNtbRrUuX8WTmm9.jpg", + "backdropPath": "/iiXFCjJtKEDFpgl8y24eO7BW2C9.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-06-23", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 44, + "popularity": 6.5662 + }, + { + "id": 227094, + "title": "The Returned", + "originalTitle": "The Returned", + "overview": "In a post-zombie world, where the infected live normal lives, their retroviral drug is running out.", + "posterPath": "/gMdNeOFGmYXdan1ov835HOio1Qn.jpg", + "backdropPath": "/oPfD5GVMDTWEzER8PwQY9k7eQZv.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2013-11-15", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 219, + "popularity": 6.5656 + }, + { + "id": 63876, + "title": "Circle of Love", + "originalTitle": "La Ronde", + "overview": "In a chain reaction of romantic adventures, various people play musical beds in a remake of Max Ophul's \"La Ronde.\"", + "posterPath": "/gYxlOHY9abUPvvWXrgh13DmXWNx.jpg", + "backdropPath": "/lRGY9actn0iDAMGbzks6SBHBxaw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "1964-10-16", + "releaseYear": "1964", + "originalLanguage": "fr", + "voteAverage": 5.5, + "voteCount": 16, + "popularity": 6.5654 + }, + { + "id": 581392, + "title": "Peninsula", + "originalTitle": "반도", + "overview": "A soldier and his team battle hordes of post-apocalyptic zombies in the wastelands of the Korean Peninsula.", + "posterPath": "/eeqvAzCccAZOhU3RfbvHB3s44S6.jpg", + "backdropPath": "/gEjNlhZhyHeto6Fy5wWy5Uk3A9D.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 53, + 12 + ], + "genres": [ + "Horror", + "Action", + "Thriller", + "Adventure" + ], + "releaseDate": "2020-07-15", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 6.744, + "voteCount": 2496, + "popularity": 6.5648 + }, + { + "id": 355254, + "title": "De Palma", + "originalTitle": "De Palma", + "overview": "An intimate conversation between filmmakers, chronicling De Palma’s 55-year career, his life, and his filmmaking process, with revealing anecdotes and, of course, a wealth of film clips.", + "posterPath": "/uYYxSGwKWrnN86Uyuk0NyDzCLwh.jpg", + "backdropPath": "/grVKCMGxeQlungQskzxEWQq8VE9.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2016-06-10", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.048, + "voteCount": 168, + "popularity": 6.5636 + }, + { + "id": 76493, + "title": "The Dictator", + "originalTitle": "The Dictator", + "overview": "The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.", + "posterPath": "/n0W7kajF4GFMRk2c0wWwMQqTaDM.jpg", + "backdropPath": "/jWq20KNbg5txb28tLxJl0yLYuxp.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-05-15", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.215, + "voteCount": 6191, + "popularity": 6.5636 + }, + { + "id": 1083862, + "title": "Resident Evil: Death Island", + "originalTitle": "バイオハザード:デスアイランド", + "overview": "In San Francisco, Jill Valentine is dealing with a zombie outbreak and a new T-Virus, Leon Kennedy is on the trail of a kidnapped DARPA scientist, and Claire Redfield is investigating a monstrous fish that is killing whales in the bay. Joined by Chris Redfield and Rebecca Chambers, they discover the trail of clues from their separate cases all converge on the same location, Alcatraz Island, where a new evil has taken residence and awaits their arrival.", + "posterPath": "/qayga07ICNDswm0cMJ8P3VwklFZ.jpg", + "backdropPath": "/7drO1kYgQ0PnnU87sAnBEphYrSM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878, + 27 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction", + "Horror" + ], + "releaseDate": "2023-06-22", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.312, + "voteCount": 1067, + "popularity": 6.5634 + }, + { + "id": 893370, + "title": "Virus: 32", + "originalTitle": "Virus: 32", + "overview": "A virus is unleashed and a chilling massacre runs through the streets of Montevideo.", + "posterPath": "/wjV7Cf46oiWtz9eVN07dhiwkv8i.jpg", + "backdropPath": "/jg0xZc6S8f5OVUiTDXMYd9YOl4J.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2022-04-21", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 6.863, + "voteCount": 303, + "popularity": 6.563 + }, + { + "id": 901511, + "title": "2nd Chance", + "originalTitle": "2nd Chance", + "overview": "In 1969, bankrupt pizzeria owner Richard Davis invented the modern-day bulletproof vest. To prove that it worked, he shot himself — point-blank — 192 times.", + "posterPath": "/wncHoaN0SRxQbO5a5jFkrqYzwfG.jpg", + "backdropPath": "/gx6K5gEB64ubThq2EvzqX0gSusA.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 36 + ], + "genres": [ + "Documentary", + "History" + ], + "releaseDate": "2022-12-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 10, + "popularity": 6.5629 + }, + { + "id": 45695, + "title": "A Wedding", + "originalTitle": "A Wedding", + "overview": "Muffin's wedding to Dino Corelli is to be a big affair. Except the ageing priest isn't too sure of the ceremony, only the families actually turn up as the Corelli Italian connection is suspect, security guards watch the gifts rather over-zealously, and Dino's grandma expires in bed just as the reception starts. Could be quite an occasion.", + "posterPath": "/4qNtQEInMF1d0IMoSCytHu8LCyA.jpg", + "backdropPath": "/jZDD1orkxLkTBllVqV8IboeDi3v.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1978-08-29", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 58, + "popularity": 6.5624 + }, + { + "id": 649392, + "title": "Rev", + "originalTitle": "Rev", + "overview": "A young thief with a history of grand theft auto becomes an informant and helps police bring down a criminal enterprise involved in the smuggling of hundreds of exotic super cars.", + "posterPath": "/xuVIP2qlto0tCRwrNt5PqPxPscQ.jpg", + "backdropPath": "/eMI53B3SJFj4r7k5t5evaXARhmw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2020-08-20", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.028, + "voteCount": 72, + "popularity": 6.5619 + }, + { + "id": 526034, + "title": "Lez Bomb", + "originalTitle": "Lez Bomb", + "overview": "A closeted young woman brings her girlfriend home for Thanksgiving, only to have her coming-out efforts thwarted by the unexpected arrival of her male roommate.", + "posterPath": "/tBiZAkXngPoT80iWxUI9ebSBXli.jpg", + "backdropPath": "/m9voXhtc1BM2Opa07co9iNQQHEA.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-11-09", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 53, + "popularity": 6.5615 + }, + { + "id": 2385, + "title": "Agent Trouble", + "originalTitle": "Agent Trouble", + "overview": "Amanda Weber is a museum employee. Her nephew, Victorien, who feels that wild animals should not be kept in zoos, while hitchhiking saw a mysterious bus with 50 dead tourists that later was found by autorities at the bottom of a lake. When Victorien gets in very serious problems due to what he saw Amanda seeks to find out what happened and soon also becomes a target.", + "posterPath": "/sPDNkFmobtHIfjmliFdixeImfz7.jpg", + "backdropPath": "/up66iQSWUlCLPlsWxS7OqqWpe5X.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1987-08-19", + "releaseYear": "1987", + "originalLanguage": "fr", + "voteAverage": 5.6, + "voteCount": 25, + "popularity": 6.5595 + }, + { + "id": 1153020, + "title": "Herd", + "originalTitle": "Herd", + "overview": "When a woman trying to outrun her past ends up trapped between a zombie outbreak and warring militia groups, she is caught in a world where some fight for survival but others fight for control.", + "posterPath": "/6vvTeeXeD7rjS8DaZRGIaQR2NNK.jpg", + "backdropPath": "/5MiRiEPUi8E2y21L4nusfn8Kwu1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28 + ], + "genres": [ + "Horror", + "Action" + ], + "releaseDate": "2023-10-13", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 3.9, + "voteCount": 16, + "popularity": 6.5594 + }, + { + "id": 70812, + "title": "Redeemer", + "originalTitle": "Redentor", + "overview": "Célio Rocha believes he was assigned by God Himself a difficult mission: to persuade his childhood friend Otávio Sabóia, a corrupt entrepeneur in the construction business, to give away all his possessions to the poor.", + "posterPath": "/vM2G6np4vcgdwtQNykWXxYjXJ6y.jpg", + "backdropPath": "/kb5gXeSwXefxsTQeWGHOuWLUvEe.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14 + ], + "genres": [ + "Drama", + "Fantasy" + ], + "releaseDate": "2004-09-10", + "releaseYear": "2004", + "originalLanguage": "pt", + "voteAverage": 7, + "voteCount": 25, + "popularity": 6.5591 + }, + { + "id": 612654, + "title": "Fantastic Fungi", + "originalTitle": "Fantastic Fungi", + "overview": "A vivid journey into the mysterious subterranean world of mycelium and its fruit— the mushroom. A story that begins 3.5 billion years ago, fungi makes the soil that supports life, connecting vast systems of roots from plants and trees all over the planet, like an underground Internet. Through the eyes of renowned mycologist Paul Stamets, professor of forest ecology Suzanne Simard, best selling author Michael Pollan, food naturalist Eugenia Bone and others, we experience the power, beauty and complexity of the fungi kingdom.", + "posterPath": "/giIGfFqirPk3I2azp8Ow98oOnzG.jpg", + "backdropPath": "/bGJ7t4JX99ejbfVmNL1ZZvsBvkb.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2019-08-30", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.233, + "voteCount": 178, + "popularity": 6.5585 + }, + { + "id": 25563, + "title": "Marked Woman", + "originalTitle": "Marked Woman", + "overview": "In the underworld of Manhattan, a woman dares to stand up to one of the city's most powerful gangsters.", + "posterPath": "/rJHNkbEnyjQUl8DXWxk127hNEhD.jpg", + "backdropPath": "/mBL8qkSJKjAOdm3r14PtVV1Hf5L.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1937-04-10", + "releaseYear": "1937", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 74, + "popularity": 6.5583 + }, + { + "id": 661374, + "title": "Glass Onion: A Knives Out Mystery", + "originalTitle": "Glass Onion: A Knives Out Mystery", + "overview": "World-famous detective Benoit Blanc heads to Greece to peel back the layers of a mystery surrounding a tech billionaire and his eclectic crew of friends.", + "posterPath": "/vDGr1YdrlfbU9wxTOdpf3zChmv9.jpg", + "backdropPath": "/pUbtZzMm1G2j1pfWn1V6StdTCmU.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 9648 + ], + "genres": [ + "Comedy", + "Crime", + "Mystery" + ], + "releaseDate": "2022-11-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 6214, + "popularity": 6.5571 + }, + { + "id": 5734, + "title": "Biohazard", + "originalTitle": "Biohazard", + "overview": "A group of skeptical government officials headed by General Randolph are brought to a remote laboratory for a demonstration in \"Psychic Materialization\", a successful side effect of an experimental drug. But the project scientists had warned that not enough testing had been completed to access safety concerns. In a freak accident during the demonstration to the politicians, a vicious creature is created! Unable to contain the monster, it unleashes unbelievable havoc & destruction against mankind! Reproducing itself at an alarming rate, and all known weapons seemingly powerless against the creature, the scientists are gravely concerned for the survival of mankind!", + "posterPath": "/6nPxykXfrfTxRLpRdgshgNvZ0bk.jpg", + "backdropPath": "/areRi1MjYzEm9nShIDhvTHab2wW.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1985-08-03", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 3.2, + "voteCount": 36, + "popularity": 6.5565 + }, + { + "id": 430406, + "title": "Running Wild", + "originalTitle": "Running Wild", + "overview": "Stella Davis is a widow who saves her ranch by working with convicts to rehabilitate a herd of wild horses that wandered on to her property. Stella must fight prejudice, greed, bureaucracy and vanity (including her own) to finally understand that there is no better remedy to misfortune than helping another living creature.", + "posterPath": "/v5K2odrXNvbZLYl7gFB9WCimN8S.jpg", + "backdropPath": "/p8fKTEXw3PDvKSnrFTmyMWmRQXF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-02-10", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 56, + "popularity": 6.5557 + }, + { + "id": 994138, + "title": "Dark Nature", + "originalTitle": "Dark Nature", + "overview": "While recovering from an abusive relationship, Joy joins her friend's therapy group on an isolated mountainous retreat. Led by a doctor with experimental methods, the group is soon forced to confront a monstrous entity.", + "posterPath": "/n77eq3pzs8sVzWUFgcreggohNZ5.jpg", + "backdropPath": "/yQ47vUuYiVOWsrwI3XaA2QHUhBy.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2023-05-19", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 4.744, + "voteCount": 41, + "popularity": 6.5555 + }, + { + "id": 19199, + "title": "Rampage at Apache Wells", + "originalTitle": "Der Ölprinz", + "overview": "'The Oilprince' is an unscrupulous businessman. He looks forward to a lucrative deal with the \"Western Arizona Bank'. He sells the bank oil wells at Shelly Lake that do actually not exist. The Oilprince learns that the colonists would like to settle at Shelly Lake. So The Oilprince exchanges the scout of the settlers by one of his minions to give them another route. But soon The Oilprince has to recognize that he has not counted on Winnetou, the righteous leader of the Apaches, and his blood brother Old Surehand.", + "posterPath": "/nfqEVP55iiL8aqeNjWc1ci1c9nA.jpg", + "backdropPath": "/3pDUmvySpZ9NcDGsNfZdaLYjabi.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 37 + ], + "genres": [ + "Adventure", + "Western" + ], + "releaseDate": "1965-08-25", + "releaseYear": "1965", + "originalLanguage": "de", + "voteAverage": 6.3, + "voteCount": 77, + "popularity": 6.5555 + }, + { + "id": 1268749, + "title": "Kromoleo: The Haunting", + "originalTitle": "Kromoleo", + "overview": "Zia heads home for her mother's funeral. Little does she know that her arrival triggers the haunting of spirits seeking revenge for her father's death.", + "posterPath": "/88b6aFvoLyl4uNJeRxLp4iIJd4o.jpg", + "backdropPath": "/dUSO0Zg3cztQSagmpVvGahxvogp.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-08-22", + "releaseYear": "2024", + "originalLanguage": "id", + "voteAverage": 4.2, + "voteCount": 12, + "popularity": 6.5554 + }, + { + "id": 74539, + "title": "Killer Mountain", + "originalTitle": "Killer Mountain", + "overview": "A team of climbers is assembled by a rich and eccentric man to rescue a missing expedition he sent up to a forbidden mountain who disappeared after sending out one last disturbing radio message.", + "posterPath": "/8mSprWxYCAugD1cyK2NCqmLiikp.jpg", + "backdropPath": "/yh6pkHkubZiLgMHlCcV8MP4PEs9.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10770, + 27 + ], + "genres": [ + "Adventure", + "TV Movie", + "Horror" + ], + "releaseDate": "2011-08-01", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 4.992, + "voteCount": 64, + "popularity": 6.5554 + }, + { + "id": 118665, + "title": "Decalogue V", + "originalTitle": "Dekalog, pięć", + "overview": "Jacek, an angry drifter, murders a taxi driver, brutally and without motive. His case is assigned to Piotr, an idealistic young lawyer who is morally opposed to the death penalty, and their interactions take on an emotional honesty that throws into stark relief for Piotr the injustice of killing of any kind.", + "posterPath": "/tZktBR66C8WIJHJkqMlj6MgowDK.jpg", + "backdropPath": "/evnpe85hZ9ZUh2b8lOGskPpY30e.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770, + 80 + ], + "genres": [ + "Drama", + "TV Movie", + "Crime" + ], + "releaseDate": "1989-05-16", + "releaseYear": "1989", + "originalLanguage": "pl", + "voteAverage": 7.9, + "voteCount": 150, + "popularity": 6.5547 + }, + { + "id": 323366, + "title": "Pod", + "originalTitle": "Pod", + "overview": "A family intervention goes horrifically awry within the snowy confines of an isolated lake house.", + "posterPath": "/bL3wnFJ9mbsEsYyFC5bHhuJCft9.jpg", + "backdropPath": "/gyF9fCmphLbP19fhkli1L3jEj7F.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2015-03-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.29, + "voteCount": 119, + "popularity": 6.5537 + }, + { + "id": 436270, + "title": "Black Adam", + "originalTitle": "Black Adam", + "overview": "Nearly 5,000 years after he was bestowed with the almighty powers of the Egyptian gods—and imprisoned just as quickly—Black Adam is freed from his earthly tomb, ready to unleash his unique form of justice on the modern world.", + "posterPath": "/rCtreCr4xiYEWDQTebybolIh6Xe.jpg", + "backdropPath": "/bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2022-10-19", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 6781, + "popularity": 6.5523 + }, + { + "id": 5473, + "title": "De Dominee", + "originalTitle": "De Dominee", + "overview": "Amsterdam, 1970s. A wealthy grammar school student Klaas and his friend start trafficking hash and become entangled in the brutal criminal scene.", + "posterPath": "/stSHfy0JaA6FGslxgv5KcWdPqyR.jpg", + "backdropPath": "/1VKzDyry0hxHAmpFSiTCSi3a5vS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2004-09-02", + "releaseYear": "2004", + "originalLanguage": "nl", + "voteAverage": 5.969, + "voteCount": 32, + "popularity": 6.5521 + }, + { + "id": 43030, + "title": "Cash McCall", + "originalTitle": "Cash McCall", + "overview": "Wealthy hotshot Cash McCall makes his money by purchasing unsuccessful businesses, whipping them into shape and then selling them for a huge profit. When Cash comes across Austen Plastics, a small manufacturing corporation on its last legs, he realizes it might be a gamble to buy the company. But when Cash finds out that the company's owner is the father of his old flame, Lory, he buys the business just to get a second chance at romance.", + "posterPath": "/quzE14JpJ4hNMjgbM2mJBK0QO9O.jpg", + "backdropPath": "/mLmD1H0CfFiVOoO3tATjMsH3b5R.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1960-01-20", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 13, + "popularity": 6.552 + }, + { + "id": 10010, + "title": "Brother Bear 2", + "originalTitle": "Brother Bear 2", + "overview": "Kenai finds his childhood human friend Nita and the two embark on a journey to burn the amulet he gave to her before he was a bear, much to Koda's dismay.", + "posterPath": "/yaA8q2zHHUgFWdJNxXyAdU71SzM.jpg", + "backdropPath": "/dMqbyB5GQvDujXiKdKPhWT0VTRw.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Family" + ], + "releaseDate": "2006-08-17", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.651, + "voteCount": 1535, + "popularity": 6.5518 + }, + { + "id": 664413, + "title": "365 Days", + "originalTitle": "365 dni", + "overview": "A woman falls victim to a dominant mafia boss, who imprisons her and gives her one year to fall in love with him.", + "posterPath": "/6KwrHucIE3CvNT7kTm2MAlZ4fYF.jpg", + "backdropPath": "/29mZ5bR5m2w3xuvwJH7BHMFQQwH.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2020-02-07", + "releaseYear": "2020", + "originalLanguage": "pl", + "voteAverage": 7.008, + "voteCount": 9352, + "popularity": 6.5509 + }, + { + "id": 176, + "title": "Saw", + "originalTitle": "Saw", + "overview": "Two men wake up to find themselves shackled in a grimy, abandoned bathroom. As they struggle to comprehend their predicament, they discover a disturbing tape left behind by the sadistic mastermind known as Jigsaw. With a chilling voice and cryptic instructions, Jigsaw informs them that they must partake in a gruesome game in order to secure their freedom.", + "posterPath": "/rLNSOudrayDBo1uqXjrhxcjODIC.jpg", + "backdropPath": "/ok4ot3YbfDYZcINXf91JUfq3maB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 80 + ], + "genres": [ + "Horror", + "Mystery", + "Crime" + ], + "releaseDate": "2004-10-01", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 9748, + "popularity": 6.5508 + }, + { + "id": 2470, + "title": "Belle Époque", + "originalTitle": "Belle Époque", + "overview": "In 1931, a young soldier deserts from the army and falls into a country farm, where he is welcomed by the owner due to his political ideas. Manolo has four daughters, Fernando likes all of them and they like him, so he has to decide which one to love.", + "posterPath": "/2pb7i9pI6wMH5dlyjbVTXdfSKun.jpg", + "backdropPath": "/1HOO7m6NeK3wFw22xGBLdwvim51.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1992-12-04", + "releaseYear": "1992", + "originalLanguage": "es", + "voteAverage": 6.6, + "voteCount": 197, + "popularity": 6.5502 + }, + { + "id": 174671, + "title": "Dark Touch", + "originalTitle": "Dark Touch", + "overview": "Niamh is the lone survivor of a mysterious massacre in which the furniture and objects in her family’s isolated house took on a monstrous life of their own. The police ignore her wild stories, and the neighbours and social worker who take her into their care try to introduce her to a new life. But Niamh is unable to leave her violent past behind her, endangering everyone who crosses her path.", + "posterPath": "/uwcBBgIdgEYJyQYYEtbKVKUpjU1.jpg", + "backdropPath": "/qicPCfnJBLwfbDigA5Qw4SP1TUj.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2013-09-27", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.067, + "voteCount": 120, + "popularity": 6.5501 + }, + { + "id": 488508, + "title": "Die Tomorrow", + "originalTitle": "Die Tomorrow", + "overview": "Die Tomorrow entails six short segments about the impermanence of life, all inspired by deaths reported in Thai daily newspapers.", + "posterPath": "/dLkLHVK1Tx3P13ikc3wzB2TWIKV.jpg", + "backdropPath": "/s8hkH5yclvFzLSpTyXGej6wTBob.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-11-23", + "releaseYear": "2017", + "originalLanguage": "th", + "voteAverage": 6.8, + "voteCount": 23, + "popularity": 6.5498 + }, + { + "id": 554761, + "title": "Falling", + "originalTitle": "Falling", + "overview": "John Peterson lives with his partner Eric and their adopted daughter in Southern California. When he is visited by his aging father Willis from Los Angeles who is searching for a place to retire, their two very different worlds collide.", + "posterPath": "/x1W0y61gDv3gcc0E5NDoM0rclTu.jpg", + "backdropPath": "/rb6nReu1dXI2PrZCcVlLJ1lWaw9.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 202, + "popularity": 6.5494 + }, + { + "id": 315880, + "title": "Correspondence", + "originalTitle": "La corrispondenza", + "overview": "The relationship between Ed, a married astronomer and Amy, his lover, who spend their years apart, is based only on phone calls and texts. One day Amy begins noticing something strange in Ed's messages.", + "posterPath": "/juvp46Hjpz0FksOXvV28pYM11BK.jpg", + "backdropPath": "/aJDWjM71k7pujvzoaN3U7VfhW09.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2016-01-14", + "releaseYear": "2016", + "originalLanguage": "it", + "voteAverage": 6.4, + "voteCount": 409, + "popularity": 6.5469 + }, + { + "id": 64622, + "title": "Hidden 3D", + "originalTitle": "Hidden 3D", + "overview": "Following the death of celebrated scientist Susan Carter, her son Brian is surprised to inherit her controversial experimental addiction treatment center. When he and some friends visit the property, they uncover a terrifying and deadly secret.", + "posterPath": "/mVJuiBgeHygy6JLh6KVtJTdPeAH.jpg", + "backdropPath": "/43U82uXEsPd0fchBT49nSUSXHMz.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2011-04-21", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 3.431, + "voteCount": 58, + "popularity": 6.5465 + }, + { + "id": 61101, + "title": "Flying Pigs", + "originalTitle": "Skrzydlate świnie", + "overview": "A wealthy guy hires Oscar to cheer for his team which happens to be arch rival of the team he previously supported along with his brother. Oscar accepts the offer and fight kicks off between him and his brother along with other supporters. The fight costs a arm fracture for Oscar, wile his wife is leaving him because of his hooligan nature...", + "posterPath": "/wByvTiy5NurWVKslOrRjZG4I1RW.jpg", + "backdropPath": "/nOOJsEuEpprRorxzzFnm0ScPvHX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2010-11-05", + "releaseYear": "2010", + "originalLanguage": "pl", + "voteAverage": 5.5, + "voteCount": 30, + "popularity": 6.5461 + }, + { + "id": 763164, + "title": "Apex", + "originalTitle": "Apex", + "overview": "Ex-cop Thomas Malone is serving a life sentence for a crime he didn’t commit. He is offered a chance at freedom if he can survive a deadly game of Apex, in which six hunters pay for the pleasure of hunting another human on a remote island. He accepts, and once he arrives, all hell breaks loose.", + "posterPath": "/chTkFGToW5bsyw3hgLAe4S5Gt3.jpg", + "backdropPath": "/4gKxQIW91hOTELjY5lzjMbLoGxB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2021-11-12", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 590, + "popularity": 6.5454 + }, + { + "id": 1083968, + "title": "Locked", + "originalTitle": "Locked", + "overview": "When Eddie breaks into a luxury SUV, he steps into a deadly trap set by William, a self-proclaimed vigilante delivering his own brand of twisted justice. With no means of escape, Eddie must fight to survive in a ride where escape is an illusion, survival is a nightmare, and justice shifts into high gear.", + "posterPath": "/hhkiqXpfpufwxVrdSftzeKIANl3.jpg", + "backdropPath": "/r4X2xRrWleVgx0kahP27xRmm3ia.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2025-03-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.252, + "voteCount": 434, + "popularity": 6.5448 + }, + { + "id": 916, + "title": "Bullitt", + "originalTitle": "Bullitt", + "overview": "Senator Walter Chalmers is aiming to take down mob boss Pete Ross with the help of testimony from the criminal's hothead brother Johnny, who is in protective custody in San Francisco under the watch of police lieutenant Frank Bullitt. When a pair of mob hitmen enter the scene, Bullitt follows their trail through a maze of complications and double-crosses. This thriller includes one of the most famous car chases ever filmed.", + "posterPath": "/2ffzF1WmeXtH420fSUoCrecFvDA.jpg", + "backdropPath": "/iKO7UEnXJUumjbjNwP4719n7vds.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "1968-10-17", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 1226, + "popularity": 6.5444 + }, + { + "id": 59099, + "title": "Hollywood & Wine", + "originalTitle": "Hollywood & Wine", + "overview": "Diane Blaine has the face of a movie star. Unfortunately, fallen star/tabloid queen Jamie Stephens already made it famous. Hollywoods constant rejection due to what Diane refers to as \"TJS\" (\"Too Jamie Stephens\") has made her bitter, frustrated....and, yes, whiny. Co-worker/boyfriend Jack Sanders doesn't help matters. His idea of ambition is letting it ride. Now he's in major debt to a trigger-happy mobster who, interestingly enough, has a thing for Jamie Stephens. Jack's only way out? Convince Diane to be Jamie and wipe out the debt having one meal with a made man. It's literally the performance of her life. With Jack's on the line.", + "posterPath": "/kvJewsaWPfl0qpWhcGwygAe6dZ1.jpg", + "backdropPath": "/Aj7vBNYY4pO5UnB3jttHNEi4h1V.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53 + ], + "genres": [ + "Comedy", + "Thriller" + ], + "releaseDate": "2011-05-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 3.357, + "voteCount": 15, + "popularity": 6.5443 + }, + { + "id": 36635, + "title": "Danger Signal", + "originalTitle": "Danger Signal", + "overview": "After robbing and murdering his married lover and then making her death look like suicide, conniving philanderer Ronnie Mason relocates to Los Angeles. Under a new identity and claiming to be a writer, Ronnie finds lodging at the home of Hilda Fenchurch and her mother. He woos Hilda, knowing she has money, but when he discovers that Hilda's sister, Anne, has just inherited $25,000, he switches his attentions to her.", + "posterPath": "/dTMfktEGDOxBd10wC2KnnWXJ2rs.jpg", + "backdropPath": "/riq9JCA8opQ31vl484ddfrgYaij.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10749 + ], + "genres": [ + "Crime", + "Drama", + "Romance" + ], + "releaseDate": "1945-11-21", + "releaseYear": "1945", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 15, + "popularity": 6.5429 + }, + { + "id": 559969, + "title": "El Camino: A Breaking Bad Movie", + "originalTitle": "El Camino: A Breaking Bad Movie", + "overview": "In the wake of his dramatic escape from captivity, Jesse Pinkman must come to terms with his past in order to forge some kind of future.", + "posterPath": "/ePXuKdXZuJx8hHMNr2yM4jY2L7Z.jpg", + "backdropPath": "/uLXK1LQM28XovWHPao3ViTeggXA.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2019-10-11", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.044, + "voteCount": 5400, + "popularity": 6.5421 + }, + { + "id": 14012, + "title": "Flicka", + "originalTitle": "Flicka", + "overview": "Katy McLaughlin desires to work on her family's mountainside horse ranch, although her father insists she finish boarding school. Katy finds a mustang in the hills near her ranch. The headstrong 16 year old then sets her mind to tame a mustang and prove to her father she can run the ranch. But when tragedy happens, it will take all the love and strength the family can muster to restore hope.", + "posterPath": "/nhJlXSmiHnlVxea5J5l3wfuATwY.jpg", + "backdropPath": "/8cpaUuYwSG24rOJZKyKOSdlcgY4.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2006-10-20", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 306, + "popularity": 6.5411 + }, + { + "id": 63311, + "title": "The Skin I Live In", + "originalTitle": "La piel que habito", + "overview": "A brilliant plastic surgeon creates a synthetic skin that withstands any kind of damage. His guinea pig: a mysterious and volatile woman who holds the key to his obsession.", + "posterPath": "/xa7uCwGYykrf8MMI8iF5dZvNlrG.jpg", + "backdropPath": "/qn8NzshtQmJD7Nm06sAp5yOtexH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 9648, + 53 + ], + "genres": [ + "Drama", + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2011-08-17", + "releaseYear": "2011", + "originalLanguage": "es", + "voteAverage": 7.5, + "voteCount": 4479, + "popularity": 6.5406 + }, + { + "id": 289232, + "title": "The Goob", + "originalTitle": "The Goob", + "overview": "We’re in the middle of a heat-wave in Fenland England. Goob Taylor has spent each of his sixteen summers helping Mum run the transport cafe and harvest the surrounding beet fields. When Mum shacks up with swarthy stock-car supremo and ladies’ man gene Womack, Goob becomes an unwelcome side thought. However Goob’s world turns when exotic beet picker Eva arrives. Fuelled by her flirtatious comments, Goob dreams of better things.", + "posterPath": "/uzUYKSKATm4ZGACN3KAsckqhh1S.jpg", + "backdropPath": "/5O1hCdLLaor0bo2bjHgU9JIp02J.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2014-09-25", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.135, + "voteCount": 37, + "popularity": 6.5399 + }, + { + "id": 264992, + "title": "Captain Tsubasa Movie 02: Danger! All Japan Junior Team", + "originalTitle": "キャプテン翼 危うし! 全日本Jr.", + "overview": "The return match between the All-Europe and All-Japan Junior teams comes home to Japan, but what sort of problems will occur with the game on Tsubasa's home turf?", + "posterPath": "/sMlQD13v8vjzqIt1pN0Bj4fsirR.jpg", + "backdropPath": "/gWaH6sOoEmggZb5aDQltRbi8OtV.jpg", + "mediaType": "movie", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1985-12-21", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 38, + "popularity": 6.5398 + }, + { + "id": 10220, + "title": "Rounders", + "originalTitle": "Rounders", + "overview": "Poker addict Mike McDermott knows the game inside out, but loses his money one night in a game to Russian-American gangster Teddy KGB. Promising his partner Jo he'll give up, he meets up with best friend Lester 'Worm' Murphy, just out of prison and owing lots of money to the wrong kind of people. McDermott becomes his co-guarantor and now there's only one way to raise the money, the pair have to get back into the game.", + "posterPath": "/mqbMwYGwIChnaCO55h7v8DG8Wwy.jpg", + "backdropPath": "/tgRQsrjBKdic7llxhI7pqLJb8kS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1998-09-11", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.008, + "voteCount": 1839, + "popularity": 6.5395 + }, + { + "id": 46581, + "title": "Immoral Tales", + "originalTitle": "Contes immoraux", + "overview": "Four erotic tales from in various historical eras. The first, 'The Tide', is set in the present day, and concerns a student and his young female cousin stranded on the beach by the tide, secluded from prying eyes. 'Therese Philosophe' is set in the nineteenth century, and concerns a girl being locked in her bedroom, where she contemplates the erotic potential of the objects contained within it. 'Erzsebet Bathory' is a portrait of the sixteenth-century countess who allegedly bathed in the blood of virgins, while 'Lucrezia Borgia' concerns an incestuous fifteenth-century orgy involving Lucrezia, her brother, and her father the Pope.", + "posterPath": "/dFPQD3e5uonv7bKTYsi7TqtKxYx.jpg", + "backdropPath": "/lv7bRurrhBo3vjcwJNztb2ZkDu9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1974-08-28", + "releaseYear": "1974", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 268, + "popularity": 6.5393 + }, + { + "id": 163883, + "title": "Bandits", + "originalTitle": "Attention bandits !", + "overview": "On the day Jean Gabin dies, a kidnaper who also takes a fortune in jewels heisted from Cartiers murders Simon Verini's wife. (Simon was fencing the jewels for a youthful gang who robbed Cartiers; he suspects them of the murder.) He's framed for the theft and spends ten years in prison, writing to his daughter, Marie-Sophie, who's 11 when he's sent away. Released, he reconnects to Marie-Sophie and to the young thieves, seeks revenge, and is quickly arrested again. She doesn't know what to make of her father, retreats to her Swiss fiancé, and is flummoxed when one of the young thieves falls for her. Is resolution possible when crime cuts across families and romance?", + "posterPath": "/rYLObQ8eSN7Eqf8WomwyQjsnGyU.jpg", + "backdropPath": "/87nrZ2BPY6ntTr7wf5mt40sPZ3g.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1987-06-03", + "releaseYear": "1987", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 14, + "popularity": 6.5384 + }, + { + "id": 1410189, + "title": "Kontinental '25", + "originalTitle": "Kontinental '25", + "overview": "Orsolya is a bailiff in Cluj, the main city in Transylvania. One day she has to evict a homeless man from a cellar, an action with tragic consequences that triggers a moral crisis which Orsolya must weather as best she can.", + "posterPath": "/zilOI4BxPxKK3BbyJSHEdOTiTaJ.jpg", + "backdropPath": "/1FOSov1BN00fJAWl3fF91Bihykr.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-09-24", + "releaseYear": "2025", + "originalLanguage": "ro", + "voteAverage": 6.731, + "voteCount": 13, + "popularity": 6.5383 + }, + { + "id": 521029, + "title": "Annabelle Comes Home", + "originalTitle": "Annabelle Comes Home", + "overview": "Determined to keep Annabelle from wreaking more havoc, demonologists Ed and Lorraine Warren bring the possessed doll to the locked artifacts room in their home, placing her “safely” behind sacred glass and enlisting a priest’s holy blessing. But an unholy night of horror awaits as Annabelle awakens the evil spirits in the room, who all set their sights on a new target—the Warrens' ten-year-old daughter, Judy, and her friends.", + "posterPath": "/qWsHMrbg9DsBY3bCMk9jyYCRVRs.jpg", + "backdropPath": "/jB98SrdXAYSbiprjIwc7WfVCuCV.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2019-06-26", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 3747, + "popularity": 6.5378 + }, + { + "id": 26571, + "title": "Downtown '81", + "originalTitle": "Downtown '81", + "overview": "The film is a day in the life of a young artist, Jean-Michel Basquiat, who needs to raise money to reclaim the apartment from which he has been evicted. He wanders the downtown streets carrying a painting he hopes to sell, encountering friends, whose lives (and performances) we peek into.", + "posterPath": "/lAWr0YaC1PaflYT08GBLToqYhW9.jpg", + "backdropPath": "/l6LAf2uXdLAjiKr98uNHK8CDDL9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10402 + ], + "genres": [ + "Drama", + "Comedy", + "Music" + ], + "releaseDate": "2001-07-13", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.661, + "voteCount": 28, + "popularity": 6.5361 + }, + { + "id": 60505, + "title": "Blind Side", + "originalTitle": "Blind Side", + "overview": "A couple visits Mexico to scout a new location for their furniture manufacturing business, and hit a cop with their car on the way back stateside. Realizing that if they report it they could land in a Mexican jail (guilty until proven innocent), they clean up the car and return home. A few days later, an insistent man shows up wanting a job -- and insinuating that he saw something in Mexico that he would not want to report -- the couple must make a decision about how far they will allow themselves to be blackmailed.", + "posterPath": "/fx6Ex4wtLCzH18BzNP6QT7LSjVQ.jpg", + "backdropPath": "/6JqU0XuZSfHhWx47uUQzw2iXMbX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10770 + ], + "genres": [ + "Drama", + "Thriller", + "TV Movie" + ], + "releaseDate": "1993-01-30", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 38, + "popularity": 6.5353 + }, + { + "id": 352187, + "title": "Boomerang", + "originalTitle": "Boomerang", + "overview": "When Antoine returns to the island of Noirmoutier, secrets kept in the past resurfaces and threatens to change his family’s present.", + "posterPath": "/nmca3IeMIe3DLD8WOyvnmvGanIo.jpg", + "backdropPath": "/5UeGMsjIE4UTZnAEjcPVodXBBqn.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-09-23", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 6.212, + "voteCount": 139, + "popularity": 6.535 + }, + { + "id": 15912, + "title": "The Square", + "originalTitle": "The Square", + "overview": "Ray, a construction worker trapped in an unhappy marriage, pursues an affair with his neighbor, Carla. Carla's husband, Greg, is a mobster who keeps large sums of drug money in their home. With this in mind, Carla comes up with a plan: She and Ray will steal Greg's money, burn down her house, convince Greg the money was lost in the fire and then run away together. Carla's scheme, however, doesn't go off as planned.", + "posterPath": "/kLed7chodgFBAC2hUFqtVt9KyGk.jpg", + "backdropPath": "/th91qSRruUjA7sKbcMhNCT7JosG.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2008-06-30", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 110, + "popularity": 6.5348 + }, + { + "id": 1153110, + "title": "Bookworm", + "originalTitle": "Bookworm", + "overview": "Eleven-year-old Mildred’s life is turned upside down when her mother lands in hospital and estranged, American magician father, Strawn Wise, comes to look after her. Hoping to entertain the bookish tween, Strawn takes Mildred camping in the notoriously rugged New Zealand wilderness, and the pair embark on the ultimate test of family bonding – a quest to find the mythological beast known as the Canterbury Panther.", + "posterPath": "/260GDjmYf2A9W09RRo5FwUueQ3Y.jpg", + "backdropPath": "/wDfpKEENIW5j65n08LHorrfItk.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 35, + 18 + ], + "genres": [ + "Adventure", + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "2024-07-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 74, + "popularity": 6.5345 + }, + { + "id": 76412, + "title": "The Track", + "originalTitle": "La Traque", + "overview": "Somewhere in rural France, a young English female tourist is sexually assaulted by two men in the countryside. After she manages to escape, a party of local hunters agree to track her in order to cover up the scandal.", + "posterPath": "/xQ0OAxYE2gHCTgDAfp5JdL1lyuD.jpg", + "backdropPath": "/mrN3oGUtViidqPyK54LzBl7NLdQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1975-05-14", + "releaseYear": "1975", + "originalLanguage": "fr", + "voteAverage": 6.8, + "voteCount": 47, + "popularity": 6.5344 + }, + { + "id": 283749, + "title": "Ninja Apocalypse", + "originalTitle": "Ninja Apocalypse", + "overview": "Framed for assassinating the Grandmaster, the Lost Ninja Clan must battle their way up an underground nuclear bunker filled with hordes of supernatural enemies, mutants and flesh eating zombies. Trapped a thousand feet below the earth's crust, these ninjas will face hell.", + "posterPath": "/8ZCkOcGitidZs6KSL4EIFNnuTEe.jpg", + "backdropPath": "/bdcilbtyoovfDTZSI0f7SgGUYxz.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 14, + 878 + ], + "genres": [ + "Horror", + "Action", + "Fantasy", + "Science Fiction" + ], + "releaseDate": "2014-08-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 3.434, + "voteCount": 38, + "popularity": 6.5342 + }, + { + "id": 103568, + "title": "Crusader", + "originalTitle": "Crusader", + "overview": "A gripping action thriller about a reporter who steals a murdered colleague's news story, and becomes an unwitting pawn in a conspiracy that could cost him his life.", + "posterPath": "/kwFS6tLzWmswDOMCZupLNaHfhZ9.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 10770 + ], + "genres": [ + "Action", + "Thriller", + "TV Movie" + ], + "releaseDate": "2005-08-23", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 4.273, + "voteCount": 11, + "popularity": 6.5339 + }, + { + "id": 1158874, + "title": "Sugarcane", + "originalTitle": "Sugarcane", + "overview": "An investigation into abuse and missing children at an Indian residential school in Canada ignites a reckoning on the nearby Sugarcane Reserve.", + "posterPath": "/9Xx4o4MVSDv0pojOzoHMH5y85hB.jpg", + "backdropPath": "/xoguYBNxXhyiQasTZyIxaYMjcUq.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2024-08-09", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.917, + "voteCount": 48, + "popularity": 6.5336 + }, + { + "id": 296178, + "title": "Posthumous", + "originalTitle": "Posthumous", + "overview": "After false reports of his demise put him and his work on the map, an artist decides to continue the charade by posing as his own brother. Soon, a reporter enters his life and has a profound effect on him.", + "posterPath": "/1hdmv4WobFEvsV7C3wdeLcOJSrU.jpg", + "backdropPath": "/h42eBCUIFXa474jp0KlchcT4HB8.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2014-10-04", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 56, + "popularity": 6.5334 + }, + { + "id": 336016, + "title": "Ruben Guthrie", + "originalTitle": "Ruben Guthrie", + "overview": "The story of one man not only battling the bottle, but the city that won’t let him put it down.", + "posterPath": "/4A1j72rWGC01aajRB58n8bN3JHd.jpg", + "backdropPath": "/ujV9zhJc5N4x3XhEkCa3jBlhUBT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "2015-07-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 17, + "popularity": 6.533 + }, + { + "id": 87428, + "title": "That's My Boy", + "originalTitle": "That's My Boy", + "overview": "While in his teens, Donny fathered a son, Todd, and raised him as a single parent up until Todd's 18th birthday. Now, after not seeing each other for years, Todd's world comes crashing down when Donny resurfaces just before Todd's wedding.", + "posterPath": "/ati7KTjMaYtinjU0xDaxKp15vzN.jpg", + "backdropPath": "/vG6JxKspnlub1Ue3xhktOtE5FVJ.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-06-14", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.816, + "voteCount": 2093, + "popularity": 6.5328 + }, + { + "id": 121873, + "title": "Hannah Arendt", + "originalTitle": "Hannah Arendt", + "overview": "A portrait of the genius that shook the world with her discovery of “the banality of evil.” After she attends the Nazi Adolf Eichmann’s trial in Jerusalem, Arendt dares to write about the Holocaust in terms no one has ever heard before. Her work instantly provokes a furious scandal, and Arendt stands strong as she is attacked by friends and foes alike. But as the German-Jewish émigré also struggles to suppress her own painful associations with the past, the film exposes her beguiling blend of arrogance and vulnerability — revealing a soul defined and derailed by exile.", + "posterPath": "/kB4hUbhIYmx7Xdpo1DGn15pstO3.jpg", + "backdropPath": "/li3pr2ZQjmrYuX4YWAPKvU8JaWc.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-09-11", + "releaseYear": "2012", + "originalLanguage": "de", + "voteAverage": 6.9, + "voteCount": 280, + "popularity": 6.5318 + }, + { + "id": 35611, + "title": "Assignment: Outer Space", + "originalTitle": "Space Men", + "overview": "Interplanetary News reporter Ray Peterson is assigned aboard a space station in the 21st Century.", + "posterPath": "/ydvdYJqw0p3KJP1pvouU0SHGWgl.jpg", + "backdropPath": "/pVD8I1yvXUTGaiTdYwURc8pPmYU.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12 + ], + "genres": [ + "Science Fiction", + "Adventure" + ], + "releaseDate": "1960-08-25", + "releaseYear": "1960", + "originalLanguage": "it", + "voteAverage": 3.731, + "voteCount": 26, + "popularity": 6.5314 + }, + { + "id": 400547, + "title": "Hurricane Bianca", + "originalTitle": "Hurricane Bianca", + "overview": "A teacher from New York moves to a small town in Texas, gets fired for being gay, and returns disguised in drag to get revenge on the people who were nasty to him.", + "posterPath": "/4KowccwdLWybppaZjR9fZMKbuHo.jpg", + "backdropPath": "/w9Q0LJoRhvKR5h8EschGzOWHax3.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-06-03", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 270, + "popularity": 6.5311 + }, + { + "id": 24799, + "title": "Wolvesbayne", + "originalTitle": "Wolvesbayne", + "overview": "A supernatural thriller that follows Russel Bayne who quickly finds himself in the middle of a supernatural war between vampires, werewolves, and human hunters after being bitten by a werewolf. To make matters worse, it seems a civil war has erupted among the vampires, with a clan breaking from the others in a quest to return a vampire goddess back to power.", + "posterPath": "/pY6mkRIZnU1qUWxPx26u2uJdLgz.jpg", + "backdropPath": "/loobxGIdU3yswNNlR2mCR940GxW.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 14, + 27 + ], + "genres": [ + "TV Movie", + "Fantasy", + "Horror" + ], + "releaseDate": "2009-10-12", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 36, + "popularity": 6.5307 + }, + { + "id": 865, + "title": "The Running Man", + "originalTitle": "The Running Man", + "overview": "By 2017, the global economy has collapsed and U.S. society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where “runners” attempt to evade “stalkers” and certain death for a chance to be pardoned and set free.", + "posterPath": "/v9TEnGUNNDAmueoiE55ny4k4zH6.jpg", + "backdropPath": "/yMhdCF0fRp0NuBDU19JSbmU744w.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1987-11-13", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.535, + "voteCount": 2635, + "popularity": 6.5302 + }, + { + "id": 1280672, + "title": "One of Them Days", + "originalTitle": "One of Them Days", + "overview": "Best friends and roommates Dreux and Alyssa are about to have One of Them Days. When they discover Alyssa’s boyfriend has blown their rent money, the duo finds themselves going to extremes in a comical race against the clock to avoid eviction and keep their friendship intact.", + "posterPath": "/ccn6bFUA5DECjA3Lo0CuJqGNQCv.jpg", + "backdropPath": "/t25z4ggC2Uvs3EhI66lxVO2jDp5.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-01-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.656, + "voteCount": 232, + "popularity": 6.53 + }, + { + "id": 46441, + "title": "Mirrors 2", + "originalTitle": "Mirrors 2", + "overview": "When Max, who is recovering from a traumatic accident, takes a job as a nighttime security guard, he begins to see visions of a young mysterious woman in the store's mirror.", + "posterPath": "/gDr5TaM129kUNwXkUUZ7Cha2CNn.jpg", + "backdropPath": "/tGpJAfSwqpXjARSRrAWUiouUSnr.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 14 + ], + "genres": [ + "Horror", + "Mystery", + "Fantasy" + ], + "releaseDate": "2010-10-18", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.52, + "voteCount": 426, + "popularity": 6.5293 + }, + { + "id": 46219, + "title": "Noah's Ark", + "originalTitle": "El arca", + "overview": "An animated comedy that recreates the misadventures of the passengers of the Ark built by Noah as per God’s request. It’s just that living together does not seem to come easy for the passengers on board.", + "posterPath": "/mNc9O7Y35pbyWIjnkfYKr95db9B.jpg", + "backdropPath": "/cCE0KNx6egCqTuOl9dUHbp9IgFq.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Family" + ], + "releaseDate": "2007-11-17", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 4.8, + "voteCount": 35, + "popularity": 6.5293 + }, + { + "id": 57283, + "title": "Häxan", + "originalTitle": "Häxan", + "overview": "Grave robbing, torture, possessed nuns, and a satanic Sabbath: Benjamin Christensen's legendary film uses a series of dramatic vignettes to explore the scientific hypothesis that the witches of the Middle Ages suffered the same hysteria as turn-of-the-century psychiatric patients. But the film itself is far from serious-- instead it's a witches' brew of the scary, gross, and darkly humorous.", + "posterPath": "/3LtaPLlwlA5HX2FjqAb8lsaBI8P.jpg", + "backdropPath": "/gZwQip2KQRDNZZOEDe0Yi25tW9Z.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 27, + 36 + ], + "genres": [ + "Documentary", + "Horror", + "History" + ], + "releaseDate": "1922-09-18", + "releaseYear": "1922", + "originalLanguage": "sv", + "voteAverage": 7.639, + "voteCount": 418, + "popularity": 6.5289 + }, + { + "id": 438348, + "title": "Knock", + "originalTitle": "Knock", + "overview": "Doctor Knock is a former thug who has become a doctor and arrives in the small village of Saint-Maurice to make his fortune according to a particular method. It will make the villagers believe that they are not as healthy as they might think. It is thus that he will find in each one an imaginary symptom, or not, and thus will be able to exercise his profession lucratively. Under his seductive looks and after gaining the confidence of the village, Knock is on the verge of achieving his ends. But his past catches up with him and an old acquaintance disrupts the doctor's plans.", + "posterPath": "/2JhwA8uxxb5ZKjMH6eDHLuJLVUw.jpg", + "backdropPath": "/lSHVojy2zwL5AzwIqwY1CmgRVde.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-10-18", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.376, + "voteCount": 470, + "popularity": 6.5288 + }, + { + "id": 45192, + "title": "El profe", + "originalTitle": "El profe", + "overview": "Mario Moreno portrays a professor in this movie. A small town in the middle of no where requests the school Mario Moreno is working in for a teacher. He ends up going to give the town a hand. When he arrives he comes to know the corrupt leaders who through out the movie try to make him leave. Although he is being harassed you can see how much he cares for the kids and their circumstances. He deals with problems by using his hilarious comments.", + "posterPath": "/sAJj6tXAJo5b9igYsVz7duIUgFJ.jpg", + "backdropPath": "/3wGH8zyy8mZTJbklkjI3iyncomW.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1971-04-07", + "releaseYear": "1971", + "originalLanguage": "es", + "voteAverage": 7.8, + "voteCount": 111, + "popularity": 6.5285 + }, + { + "id": 17918, + "title": "Swamp Thing", + "originalTitle": "Swamp Thing", + "overview": "Mutated by his own secret formula, Dr. Alec Holland becomes Swamp Thing; a half-human, half-plant superhero who will stop at nothing to rescue government agent Alice Cable and defeat his evil arch nemesis...Even if it costs him his life.", + "posterPath": "/7BGaE9A7UeyxH29aeFbQfzEmIi0.jpg", + "backdropPath": "/hrncwfarry7nGH2TyAQaCuOIpko.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1982-01-01", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 5.399, + "voteCount": 439, + "popularity": 6.5284 + }, + { + "id": 285135, + "title": "Zodiac", + "originalTitle": "Zodiac", + "overview": "Global disasters begin to occur after archaeologists unearth a 2,000-year-old astrology artifact. A rogue scientist is the key to deciphering the artifact to avert the end of the world.", + "posterPath": "/sczgdIDuzYZqZOoQ29BRM3O5nU8.jpg", + "backdropPath": "/hUH2J6XNG8nFXAAidHqKEIGbREp.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 10770 + ], + "genres": [ + "Science Fiction", + "TV Movie" + ], + "releaseDate": "2014-08-16", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 95, + "popularity": 6.5281 + }, + { + "id": 103551, + "title": "Hirokin: The Last Samurai", + "originalTitle": "Hirokin", + "overview": "In a planet where humans must scavenge the post-apocalyptic barren wasteland, Hirokin – a reluctant warrior with a dark past – sets off on mission to fulfill his destiny. Having fought to the death to save his wife and son from the planets evil dictator – Griffin – and his elite army of hunters, the lone warrior is left for dead in the vast desert. Armed with his samurai blade, Hirokin is forced to choose between avenging the murder of his family and fighting for the freedom his people. In a twist of fate and with a small rebellion by his side Hirokin s vision finally becomes clear.", + "posterPath": "/2N6NDtxSPSKM4q1KRqNILNf8ZvH.jpg", + "backdropPath": "/4UxTRmFEZO6iLdRnSUR5bXqMwvF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "Science Fiction" + ], + "releaseDate": "2012-04-23", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 3.5, + "voteCount": 44, + "popularity": 6.5281 + }, + { + "id": 1233575, + "title": "Black Bag", + "originalTitle": "Black Bag", + "overview": "When intelligence agent Kathryn Woodhouse is suspected of betraying the nation, her husband – also a legendary agent – faces the ultimate test of whether to be loyal to his marriage, or his country.", + "posterPath": "/hHPovtU4b96LHcoeEwRkGHI5btw.jpg", + "backdropPath": "/gxO51FVgADhYGGnnRPIlutVqb30.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 53 + ], + "genres": [ + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2025-03-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.34, + "voteCount": 974, + "popularity": 6.528 + }, + { + "id": 524434, + "title": "Eternals", + "originalTitle": "Eternals", + "overview": "The Eternals are a team of ancient aliens who have been living on Earth in secret for thousands of years. When an unexpected tragedy forces them out of the shadows, they are forced to reunite against mankind’s most ancient enemy, the Deviants.", + "posterPath": "/lFByFSLV5WDJEv3KabbdAF959F2.jpg", + "backdropPath": "/c6H7Z4u73ir3cIoCteuhJh7UCAR.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "releaseDate": "2021-11-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 8843, + "popularity": 6.5279 + }, + { + "id": 140354, + "title": "Earth II", + "originalTitle": "Earth II", + "overview": "In the near future, a space station dubbed Earth II is built for the purpose of scientific research and world peace. However, that peace is shattered when the Chinese send up a nuclear bomb that is orbiting just a few miles away from the station. Can the crew disarm the bomb before it detonates, not only destroying the station but setting off World War III?", + "posterPath": "/qvwZlb0WG3VJtJIkg7yQSygCJN7.jpg", + "backdropPath": "/vdDEPRpYw8F88VWjlWw1DnMoLlc.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 878 + ], + "genres": [ + "TV Movie", + "Science Fiction" + ], + "releaseDate": "1971-11-28", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 5.115, + "voteCount": 13, + "popularity": 6.5268 + }, + { + "id": 812225, + "title": "Black Clover: Sword of the Wizard King", + "originalTitle": "映画 ブラッククローバー 魔法帝の剣", + "overview": "As a lionhearted boy who can't wield magic strives for the title of Wizard King, four banished Wizard Kings of yore return to crush the Clover Kingdom.", + "posterPath": "/9YEGawvjaRgnyW6QVcUhFJPFDco.jpg", + "backdropPath": "/rogeBJK44LtWynOqzMFmEF30T80.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 28, + 12 + ], + "genres": [ + "Animation", + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2023-06-16", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.128, + "voteCount": 336, + "popularity": 6.5266 + }, + { + "id": 42023, + "title": "Heat", + "originalTitle": "Heat", + "overview": "Reynolds plays an ex-soldier-of-fortunish character in Vegas, taking \"Chaperone\" jobs, fighting with the mob, and trying to get enough money together to move to Venice, Italy.", + "posterPath": "/wsfL3kmdCbf34r2lykibFjavqVT.jpg", + "backdropPath": "/7p49jW6e6diUbghblqecoKv8zIF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1986-10-16", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 56, + "popularity": 6.5266 + }, + { + "id": 10877, + "title": "Exit Wounds", + "originalTitle": "Exit Wounds", + "overview": "Maverick cop Orin Boyd always brings down the domestic terrorists he tracks, but he ruffles feathers with his unorthodox techniques -- and soon finds himself reassigned to the toughest district in Detroit. When he discovers a group of detectives secretly operating a drug ring, Boyd joins forces with an unlikely ally -- gangster Latrell Walker -- to bring down the rotten cops.", + "posterPath": "/tGIJhBejmredgUZRNdteZyiahag.jpg", + "backdropPath": "/4oYN6hr7AjMhmgaZ0tWjVOkfX75.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2001-03-16", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.792, + "voteCount": 528, + "popularity": 6.5262 + }, + { + "id": 173727, + "title": "The Cave of the Golden Rose 2", + "originalTitle": "Fantaghirò 2", + "overview": "Fantaghiro and Romualdo are preparing their marriage when the Black Queen disgusted by their deep love captures Fantaghiro's father. Romualdo and his soldiers go on their journey to free him. But the insidious Black Queen transforms herself into Fantaghiro, makes Romualdo her slave by kissing him and captures the rest of his army. Fantaghiro follows Romualdo although she promised him to stay home, finds the camp deserted and enters the near castle of the Black Queen. When she asks for a duel to free her people she is very surprised to face Romualdo who has forgot her completely due to the magic of the Black Queen.", + "posterPath": "/9eNx0yBUOgKJmTvXmAkaMRNBWa2.jpg", + "backdropPath": "/cRJr0mkrUayr42Z8qNlsprWqL3Z.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14, + 10749 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy", + "Romance" + ], + "releaseDate": "1992-12-20", + "releaseYear": "1992", + "originalLanguage": "it", + "voteAverage": 6.146, + "voteCount": 103, + "popularity": 6.5245 + }, + { + "id": 345323, + "title": "Unity", + "originalTitle": "Unity", + "overview": "Despite the advent of science, literature, technology, philosophy, religion, and so on -- none of these has assuaged humankind from killing one another, the animals, and nature. UNITY is a film about why we can't seem to get along, even after thousands and thousands of years.", + "posterPath": "/pXskMoxwrtGdPXqB9AJgWzjWaIR.jpg", + "backdropPath": "/pSCWUEDAbImkSxjQjWMOKvhPDN4.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2015-08-12", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 33, + "popularity": 6.5244 + }, + { + "id": 589885, + "title": "Eminence Hill", + "originalTitle": "Eminence Hill", + "overview": "A trail of revenge leads a notorious killer and a lawman to a town of fanatics.", + "posterPath": "/4MhhBKtMDjIEE942AFg7hVqwvSv.jpg", + "backdropPath": "/nS0MqsEucHusa77hEdsXB8RsqMo.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 27, + "popularity": 6.5234 + }, + { + "id": 42084, + "title": "Cal", + "originalTitle": "Cal", + "overview": "Cal, a young man on the fringes of the IRA, falls in love with Marcella, a Catholic woman whose husband, a Protestant policeman, was killed one year earlier by the IRA.", + "posterPath": "/gpyM3J9HeQQ8JSO3RxhoxLEA6kN.jpg", + "backdropPath": "/hczAdfGHC1sjl9FOjMaoaTIfp3T.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10749 + ], + "genres": [ + "Drama", + "Thriller", + "Romance" + ], + "releaseDate": "1984-08-24", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 37, + "popularity": 6.5233 + }, + { + "id": 1449951, + "title": "Snow White", + "originalTitle": "Snow White", + "overview": "When the Queen’s jealousy turns deadly, Snow White must join forces with gnomes to fight back against her stepmother’s wrath.", + "posterPath": "/ilFLHU1OxUS1YDvUMCr8K3hW28r.jpg", + "backdropPath": "/9ayjPfWtDyooj4ErcgZcoC22dVJ.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14 + ], + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "2025-03-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 22, + "popularity": 6.5225 + }, + { + "id": 274857, + "title": "King Arthur: Legend of the Sword", + "originalTitle": "King Arthur: Legend of the Sword", + "overview": "When the child Arthur’s father is murdered, Vortigern, Arthur’s uncle, seizes the crown. Robbed of his birthright and with no idea who he truly is, Arthur comes up the hard way in the back alleys of the city. But once he pulls the sword Excalibur from the stone, his life is turned upside down and he is forced to acknowledge his true legacy... whether he likes it or not.", + "posterPath": "/9kKXH6eJpzoFGhCbTN3FVwSQK3n.jpg", + "backdropPath": "/sVkjgKq8cwKm95LCyfrLldLbQIG.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 14 + ], + "genres": [ + "Action", + "Drama", + "Fantasy" + ], + "releaseDate": "2017-05-10", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.55, + "voteCount": 5905, + "popularity": 6.5215 + }, + { + "id": 36983, + "title": "Tornado!", + "originalTitle": "Tornado!", + "overview": "An accountant sent to produce an evaluation of a tornado research project, and the scientist running the project pursue tornadoes and each other.", + "posterPath": "/kzQNHyfqdbUdpJqHyqtZSQYxq5F.jpg", + "backdropPath": "/pArPMLvKOKfF2waNpkhOPncxPo1.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10770 + ], + "genres": [ + "Action", + "TV Movie" + ], + "releaseDate": "1996-05-06", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 5.774, + "voteCount": 42, + "popularity": 6.5215 + }, + { + "id": 2454, + "title": "The Chronicles of Narnia: Prince Caspian", + "originalTitle": "The Chronicles of Narnia: Prince Caspian", + "overview": "One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.", + "posterPath": "/qxz3WIyjZiSKUhaTIEJ3c1GcC9z.jpg", + "backdropPath": "/bb5syHBUEsqL9PguV8kKf3noTFl.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10751, + 14 + ], + "genres": [ + "Adventure", + "Family", + "Fantasy" + ], + "releaseDate": "2008-05-15", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 6606, + "popularity": 6.5202 + }, + { + "id": 776536, + "title": "El Planeta", + "originalTitle": "El Planeta", + "overview": "Amidst the devastation of post-crisis Spain, mother and daughter bluff and grift to keep up the lifestyle they think they deserve, bonding over common tragedy and an impending eviction.", + "posterPath": "/fsjc9edVdY7kxuC3889h1XWxTsv.jpg", + "backdropPath": "/ckP7tL0mkRWSnFXSb3FLZs75SEn.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-09-24", + "releaseYear": "2021", + "originalLanguage": "es", + "voteAverage": 6.1, + "voteCount": 29, + "popularity": 6.52 + }, + { + "id": 6957, + "title": "The 40 Year Old Virgin", + "originalTitle": "The 40 Year Old Virgin", + "overview": "Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.", + "posterPath": "/mVeoqL37gzhMXQVpONi9DGOQ3tZ.jpg", + "backdropPath": "/3Wej7JW8Ikrzbm6h0lmSdeOYMmu.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2005-08-11", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.415, + "voteCount": 7018, + "popularity": 6.5195 + }, + { + "id": 436285, + "title": "Serpent", + "originalTitle": "Serpent", + "overview": "A romantic escape into nature turns into the ultimate moment of reckoning when a husband and wife are trapped in a tent with a deadly snake. Unable to escape and with certain death looming, the tent becomes a heated confessional to a cataclysmic truth. Betrayed, the couple finds themselves spiraling into a dark and dangerous space of which only one can survive.", + "posterPath": "/h3GRtHasWEQV04LuoS22UHVpJfA.jpg", + "backdropPath": "/lq15xQuW66mGikgf7ea2lQamv9v.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2017-06-17", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 35, + "popularity": 6.5192 + }, + { + "id": 507441, + "title": "Sea Fever", + "originalTitle": "Sea Fever", + "overview": "The crew of a West of Ireland trawler—marooned at sea—struggle for their lives against a growing parasite in their water supply.", + "posterPath": "/h4cPVVNPZUHVeoF6dH2grBvSEKs.jpg", + "backdropPath": "/uBknPio2qglByZRxJX4EUAhkESV.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 18, + 878, + 9648 + ], + "genres": [ + "Thriller", + "Horror", + "Drama", + "Science Fiction", + "Mystery" + ], + "releaseDate": "2020-03-06", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.112, + "voteCount": 598, + "popularity": 6.5189 + }, + { + "id": 818356, + "title": "Growing Fangs", + "originalTitle": "Growing Fangs", + "overview": "Val Garcia, a Mexican-American teen who is half human/half vampire, has had to keep her identity a secret from both worlds. But when her human best friend shows up at her monster-infested school, she has to confront her truth, her identity, and herself.", + "posterPath": "/4aOSsGy8Pal5VgtiBkhw27boVk1.jpg", + "backdropPath": "/fFLUSFjT0WqPn0ubbU9Er3X4QoC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10751, + 14 + ], + "genres": [ + "Drama", + "Romance", + "Family", + "Fantasy" + ], + "releaseDate": "2021-05-28", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 17, + "popularity": 6.5187 + }, + { + "id": 1260594, + "title": "Sumala", + "originalTitle": "Sumala", + "overview": "An evil spirit seeking vengeance returns to plague the town that wronged her sister. Based on a chilling urban legend.", + "posterPath": "/poWfzIn8bBh21wR3oGA8Oqmq4ie.jpg", + "backdropPath": "/q4sUaE27mE07aGVlM2u9l0TgN4c.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-09-26", + "releaseYear": "2024", + "originalLanguage": "id", + "voteAverage": 7.4, + "voteCount": 29, + "popularity": 6.5182 + }, + { + "id": 531145, + "title": "Boarding School", + "originalTitle": "Boarding School", + "overview": "When troubled 12-year-old Jacob Felsen is sent away to boarding school, he enters every kid’s worst nightmare: a creepy old mansion, deserted except for six other teenage misfits and two menacing and mysterious teachers. As events become increasingly horrific, Jacob must conquer his fears to find the strength to survive.", + "posterPath": "/lun3G1IU6AYgXlXP649amULMPpv.jpg", + "backdropPath": "/f0eeCDOR8VkyKYtKSLpMWtxtec6.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2018-08-30", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.343, + "voteCount": 230, + "popularity": 6.5174 + }, + { + "id": 1485, + "title": "Get Carter", + "originalTitle": "Get Carter", + "overview": "Jack Carter is a small-time hood working in London. When word reaches him of his brother's death, he travels to Newcastle to attend the funeral. Refusing to accept the police report of suicide, Carter seeks out his brother’s friends and acquaintances to learn who murdered his sibling and why.", + "posterPath": "/sc35sDbREB1Yv509jfbirOjtEUC.jpg", + "backdropPath": "/1jUECFiy3gNvXL6x010VQnkqrZ2.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53 + ], + "genres": [ + "Crime", + "Thriller" + ], + "releaseDate": "1971-02-03", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 536, + "popularity": 6.5172 + }, + { + "id": 963116, + "title": "Classico", + "originalTitle": "Classico", + "overview": "Sami works in a children's home which is set to be closed. The young man is an enthusiastic stadium usher and has convinced the president of the Olympique de Marseille football club to help them keep it open.", + "posterPath": "/zq7B2VrFcBZa6YyMHV9C1iggmWm.jpg", + "backdropPath": "/nA9gaGfSb0cD8DJo9PEN5fbAjEs.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2022-10-28", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 4.862, + "voteCount": 76, + "popularity": 6.5168 + }, + { + "id": 58098, + "title": "The Way We Laughed", + "originalTitle": "Così ridevano", + "overview": "Studying to become a teacher in 1950s Northern Italy, Sicilian immigrant Pietro is joined by his big brother Giovanni. Pietro shows considerable promise in his field, prompting illiterate Giovanni to take on even the toughest jobs in order to support his sibling's academic pursuits.", + "posterPath": "/axL1q2ctgUaRG2ek2lZijRqb9Vw.jpg", + "backdropPath": "/65VNZCMIKp2c5JMIQgL0MIqIwE5.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1998-10-02", + "releaseYear": "1998", + "originalLanguage": "it", + "voteAverage": 6.9, + "voteCount": 40, + "popularity": 6.5159 + }, + { + "id": 548925, + "title": "A Colony", + "originalTitle": "Une colonie", + "overview": "Camille wanders through the countryside talking with frogs and chickens: she sails through life as a carefree soul. But for her older sister, the introverted Mylia, things are more complicated. Mylia is lost between the uncertainty in her family life, the superficial atmosphere at her new school and her first experiences at house parties. It is Camille who eventually introduces Mylia to Jimmy. The boy from the nearby Abenaki reserve is different and he encourages her to break free.", + "posterPath": "/5ZDrOxMhCoxL4Shm1POFeSmiS1l.jpg", + "backdropPath": "/6NcsKE9DFP0Faha5ybi6HkoydO4.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-02-01", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.855, + "voteCount": 38, + "popularity": 6.5158 + }, + { + "id": 623521, + "title": "The Dare", + "originalTitle": "The Dare", + "overview": "A rare family night for Jay takes a brutal twist when he awakens in a basement with three other prisoners. As their vengeful captor runs riot, Jay engages in a twisted battle to solve the puzzle to his past and save his family's future.", + "posterPath": "/iJYPBa2EA6UIsXdrlOXkpnqbeQW.jpg", + "backdropPath": "/dK8euZJgT5CNM8BYE255bCd0Xao.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2019-08-09", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.84, + "voteCount": 144, + "popularity": 6.5157 + }, + { + "id": 86971, + "title": "Miami Magma", + "originalTitle": "Miami Magma", + "overview": "Antoinette Vitrini, a volcanologist, confirms her theory of a long-dormant underground volcano after an offshore-drilling rig bursts into flames. Now, she must stop catastrophic amounts of magma from pumping out right under Miami, Florida.", + "posterPath": "/uNc3FLV28bGCWXxuLIFCrwcncz.jpg", + "backdropPath": "/jxdJXmFT0kUuD6vvBxiW8MKhUaX.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 10770 + ], + "genres": [ + "Science Fiction", + "Action", + "TV Movie" + ], + "releaseDate": "2011-12-01", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.865, + "voteCount": 85, + "popularity": 6.5151 + }, + { + "id": 222700, + "title": "Double Door", + "originalTitle": "Double Door", + "overview": "In 1910 Manhattan, Victoria Van Brett, a bitter spinster heiress lives an isolated life with her sister Caroline. Her domineering urges go into overdrive when their half-brother Rip brings a new bride home to the family’s gloomy Fifth Avenue mansion, built by their late industrialist father. The title refers to a secret soundproofed chamber that the villainess uses to entrap her enemies.", + "posterPath": "/47pnQENUOsh1dE8FPru9c1IfRoR.jpg", + "backdropPath": "/6Gk8ymfbfsHDhlEbFCUoOQ4rY3M.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1934-05-04", + "releaseYear": "1934", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 14, + "popularity": 6.5146 + }, + { + "id": 591, + "title": "The Da Vinci Code", + "originalTitle": "The Da Vinci Code", + "overview": "A murder in Paris’ Louvre Museum and cryptic clues in some of Leonardo da Vinci’s most famous paintings lead to the discovery of a religious mystery. For 2,000 years a secret society closely guards information that — should it come to light — could rock the very foundations of Christianity.", + "posterPath": "/9ejKfNk0LBhSI9AahH4f9NJNZNM.jpg", + "backdropPath": "/vlnSG1EQi0ez2A6MkFfjovPfkES.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "2006-05-17", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.728, + "voteCount": 9784, + "popularity": 6.5146 + }, + { + "id": 474051, + "title": "Calibre", + "originalTitle": "Calibre", + "overview": "Two lifelong friends head up to an isolated Scottish Highlands village for a weekend hunting trip that descends into a never-ending nightmare as they attempt to cover up a horrific hunting accident.", + "posterPath": "/gCVOQzV7Z556WnJFNeX7y8BFhyW.jpg", + "backdropPath": "/9YJqI5vudysYgU21YHfC2JHKG6t.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2018-06-22", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.478, + "voteCount": 739, + "popularity": 6.5139 + }, + { + "id": 59189, + "title": "Phase IV", + "originalTitle": "Phase IV", + "overview": "Arizona ants mock the food chain on their way to a desert lab to get two scientists and a woman.", + "posterPath": "/x6fQtAmCD4JlAcUnTfYoinPp1zz.jpg", + "backdropPath": "/qMxhl5NeeXj4Rs0stsGgC7GsB9C.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1974-09-13", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 279, + "popularity": 6.5138 + }, + { + "id": 141669, + "title": "Bullwhip", + "originalTitle": "Bullwhip", + "overview": "In order to avoid the hangman's noose, a cowboy agrees to marry a beautiful but fiery redhead.", + "posterPath": "/pGYVsGSPxqXxsipqAyS6sR7Ihiu.jpg", + "backdropPath": "/5zd01OCzO8v562DIePGVHmc8t43.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1958-05-25", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 10, + "popularity": 6.5134 + }, + { + "id": 2289, + "title": "Cold Mountain", + "originalTitle": "Cold Mountain", + "overview": "In this classic story of love and devotion set against the backdrop of the American Civil War, a wounded Confederate soldier named W.P. Inman deserts his unit and travels across the South, aiming to return to his young wife, Ada, who he left behind to tend their farm. As Inman makes his perilous journey home, Ada struggles to keep their home intact with the assistance of Ruby, a mysterious drifter sent to help her by a kindly neighbor.", + "posterPath": "/j0AJeeR5CQPDFh0otyWyCWREHO8.jpg", + "backdropPath": "/xjJz025MAPrSeNj18LPjcyu4xFM.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 36, + 12, + 10749 + ], + "genres": [ + "War", + "History", + "Adventure", + "Romance" + ], + "releaseDate": "2003-12-24", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.935, + "voteCount": 1896, + "popularity": 6.5132 + }, + { + "id": 12623, + "title": "Suspect", + "originalTitle": "Suspect", + "overview": "When a Supreme Court judge commits suicide and his secretary is found murdered, all fingers point to Carl Anderson, a homeless veteran who's deaf and mute. But when public defender Kathleen Riley is assigned to his case, she begins to believe that Anderson may actually be innocent. Juror Eddie Sanger, a Washington lobbyist, agrees, and together the pair begins their own investigation of events.", + "posterPath": "/hL79lrrMgRZO21otWbTTiljufeU.jpg", + "backdropPath": "/b2vMEdoIYcySuE5a5y1xe643zAI.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1987-10-23", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 238, + "popularity": 6.5125 + }, + { + "id": 602198, + "title": "Saving Zoë", + "originalTitle": "Saving Zoë", + "overview": "A year after the murder of her sister Zoë, Echo is determined to uncover the truth. With Zoë's diary as her guide, Echo finds herself pulled into the darkness of her sister's secret life and she uncovers how one small decision can lead to tragic consequences.", + "posterPath": "/7M3KQLBDkNrbLD1UHA6cvGkqa5k.jpg", + "backdropPath": "/7tkspZXnSdgisaJOTTrj44WqexS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 53 + ], + "genres": [ + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.17, + "voteCount": 182, + "popularity": 6.5108 + }, + { + "id": 13640, + "title": "Superman: Doomsday", + "originalTitle": "Superman: Doomsday", + "overview": "When LexCorp accidentally unleashes a murderous creature, Superman meets his greatest challenge as a champion. Based on the \"The Death of Superman\" storyline that appeared in DC Comics' publications in the 1990s.", + "posterPath": "/itvuWm7DFWWzWgW0xgiaKzzWszP.jpg", + "backdropPath": "/oTPSjQyETTFYDehdbiG8yi2oDmL.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "releaseDate": "2007-09-18", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 683, + "popularity": 6.5107 + }, + { + "id": 31002, + "title": "Ticker", + "originalTitle": "Ticker", + "overview": "Ray Nettles, a detective of San Francisco, and his partner Fuzzy must take up to one of the most dangerous terrorist gangs of the city. When one of the terrorists, the beautiful scientist Claire Manning is arrested, Swan, the leader of the terrorists, claims he will detonate bombs throughout the city if she is not released. Because of the possible bloodshed, Nettles calls for the help of explosive expert Frank Glass...", + "posterPath": "/qHuAAGikw2bTaam7K5B8btwUECM.jpg", + "backdropPath": "/zIaoDdptaMCjjEwG3jO08WfkQfJ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 80, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Crime", + "Thriller" + ], + "releaseDate": "2001-06-23", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 3.677, + "voteCount": 127, + "popularity": 6.5106 + }, + { + "id": 15831, + "title": "Cecilie", + "originalTitle": "Cecilie", + "overview": "Cecilie sees and hears things no one else does; places suddenly change appearance, people aren´t really there. One night she experiences a rape, but no traces are to be found. Her husband Mads commits her to a psychiatric hospital. With the help of a psychiatrist, Per, she begins to see a frightening connection between her condition and a brutal murder that happened more than 30 years before.", + "posterPath": "/qqeHl0GpPlmVYi75Axd5JpfWc0F.jpg", + "backdropPath": "/AoXJtxOpA5hUUPpT29x0CiflYah.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 9648 + ], + "genres": [ + "Thriller", + "Horror", + "Mystery" + ], + "releaseDate": "2007-06-01", + "releaseYear": "2007", + "originalLanguage": "da", + "voteAverage": 5.767, + "voteCount": 15, + "popularity": 6.5103 + }, + { + "id": 61048, + "title": "The Swan", + "originalTitle": "The Swan", + "overview": "Princess Beatrice's days of enjoying the regal life are numbered unless her only daughter, Princess Alexandra, makes a good impression on a distant cousin when he pays a surprise visit to their palace. Prince Albert has searched all over Europe for a bride and he's bored by the whole courtship routine. He is more interested in the estate's dairy than Alexandra's rose garden. And then he starts playing football with the tutor and Alexandra's brothers. Invite the tutor to the ball that night and watch how gracefully Alexandra dances with him.", + "posterPath": "/cCk7UhSLafu1hdBVMPy7nzHSSH2.jpg", + "backdropPath": "/zhsvcOzjwYslYZJsAw9gqrvBuSQ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 35 + ], + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "releaseDate": "1956-04-26", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 31, + "popularity": 6.51 + }, + { + "id": 618746, + "title": "Tragic Jungle", + "originalTitle": "Selva Trágica", + "overview": "Deep in the jungle, a group of Mexican gum workers crosses their path with Agnes, a mysterious Belizean woman. Her presence enlivens the fantasies and desires of those men, without knowing that they have woken up an ancient Mayan legend.", + "posterPath": "/2ZVuB2IhHTBo7LTGTPs0Pzfb6H8.jpg", + "backdropPath": "/ciFpP7Gb4ZlH6qNCMGftU0weWIJ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2020-09-09", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 6.163, + "voteCount": 43, + "popularity": 6.5092 + }, + { + "id": 295748, + "title": "Coming Soon", + "originalTitle": "Pek Yakında", + "overview": "Pirated DVD seller Zafer who is formerly an extra in movies, swore to give up illegal works when his wife wanted to get divorce. To win his family back, he and his old-fashioned crew decided to make a movie called \"Summit - The End Of Evil\" which is a fantastic science fiction movie and couldn't be shot since 1977. A funny, entertaining and emotional journey awaits him who waded into this adventure with his unqualified crew.", + "posterPath": "/93eekzUdzg6NuLmqEVHL6tDNxKZ.jpg", + "backdropPath": "/kzj8i8vgXScxtINrdufHQ39A1w6.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2014-10-02", + "releaseYear": "2014", + "originalLanguage": "tr", + "voteAverage": 6.667, + "voteCount": 147, + "popularity": 6.5088 + }, + { + "id": 200383, + "title": "North Star", + "originalTitle": "North Star", + "overview": "Set during the Alaskan gold rush of the late 1800s. In his efforts to gain control of a small mining town, Sean McLennon is buying up every claim that becomes available, usually after the deaths of the previous owners at the hands of McLennon's 'assistants'. One of the miners targeted by McLennon, a half-Indian hunter named Hudson Saanteek, manages to escape his hired thugs and comes back into town looking to re-establish his claim and get revenge. McLennon and his men have the advantage of numbers and weapons, but Saanteek has his survival skills and knowledge of the Alaskan wilderness.", + "posterPath": "/iuai9NBKZX0RmGDwTuGvpyPV8mx.jpg", + "backdropPath": "/vlVU8j57wGsYX9uMNd4e8aps9Rk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18, + 37 + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "Western" + ], + "releaseDate": "1996-01-03", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 4.722, + "voteCount": 45, + "popularity": 6.5086 + }, + { + "id": 646473, + "title": "Dear Zoe", + "originalTitle": "Dear Zoe", + "overview": "Tess enlists her biological father – a lovable slacker from the wrong side of the tracks – and the charming juvenile delinquent next door to help her come to grips with the death of her little sister.", + "posterPath": "/rqAhYRbOjgPSVzxKYXV9t6gm5fi.jpg", + "backdropPath": "/dGnnnlUM1wjlDT5KGimglSpTc2n.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-11-04", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 65, + "popularity": 6.5076 + }, + { + "id": 128826, + "title": "Roadhouse 66", + "originalTitle": "Roadhouse 66", + "overview": "Beckman driving a '55 Thunderbird on Route 66 hooks up with Johnny after hoodlum Hoot and his gang shoot his car. Continuous conflicts between Hoot and Beckman make Beckman and Johnny determant to teach him a lesson.", + "posterPath": "/pesakl0gFiXaeOSCa5FMGv7ZWBb.jpg", + "backdropPath": "/vPkv7QDDa6sVHYOORP0ux7F1Ix2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "1984-08-31", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 20, + "popularity": 6.5076 + }, + { + "id": 47916, + "title": "Red Dawn", + "originalTitle": "Rojo amanecer", + "overview": "On October 2, 1968, a student uprising descends into violence after the Mexican government begins to use lethal force against the protesters.", + "posterPath": "/e64pw9gmbQJik2H6C4buiX1ilB7.jpg", + "backdropPath": "/k0tWymmZyaTxnkenSe6576awvuM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 36 + ], + "genres": [ + "Drama", + "Thriller", + "History" + ], + "releaseDate": "1990-10-18", + "releaseYear": "1990", + "originalLanguage": "es", + "voteAverage": 8.132, + "voteCount": 140, + "popularity": 6.5066 + }, + { + "id": 21026, + "title": "The Belgrade Phantom", + "originalTitle": "beogradski fantom", + "overview": "Belgrade, Yugoslavia, 1979; a mysterious \"Phantom\" occupies the attention and hearts of Belgrade. Every night, he exhibits spectacular driving maneuvers using a stolen white Porsche car through the city streets.", + "posterPath": "/hA7nYyg6he3sf23FtwDSSvclfpD.jpg", + "backdropPath": "/t42vyDCkReeiWLLkW1yaPgw36iP.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "2009-03-27", + "releaseYear": "2009", + "originalLanguage": "sh", + "voteAverage": 5.567, + "voteCount": 15, + "popularity": 6.5062 + }, + { + "id": 254126, + "title": "Blood Shed", + "originalTitle": "Blood Shed", + "overview": "Loosely based on the true events of a homeless loner who moves into a self-storage facility inhabited by a community of bizarre squatters until they are locked in for the night with a deranged female who hunts them down in search of her lost child.", + "posterPath": "/5UJd7nNQWbKsj7g2wYDtV8RbLWJ.jpg", + "backdropPath": "/8OGnkgmRSo7IK00gvxle8ocdXVO.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2014-02-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 3.4, + "voteCount": 24, + "popularity": 6.504 + }, + { + "id": 29224, + "title": "The Jönsson Gang & Dynamite Harry", + "originalTitle": "Jönssonligan & DynamitHarry", + "overview": "Sickan, Vanheden and Rocky try to rob the Berns nightclub one night, but Vanheden has made the mistake to invite his constantly drunk cousin, the old dynamiter Dynamite-Harry and he ruins the plan. Sickan is arrested, and has to spend 10 months in a small, locked room. When he is released, he has a new plan, but Rocky and Vanheden have decided to go straight. Together with Dynamite-Harry, Sickan plans to rob a cold store, managed by their arch-enemy, Wall-Enberg.", + "posterPath": "/rnwoaPImq7OJBUuIAxbEH0tpllC.jpg", + "backdropPath": "/srtEAbZSG6mDlretmXAiCjaxUcJ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "1982-09-17", + "releaseYear": "1982", + "originalLanguage": "sv", + "voteAverage": 5.9, + "voteCount": 66, + "popularity": 6.5036 + }, + { + "id": 4415, + "title": "Les Misérables", + "originalTitle": "Les Misérables", + "overview": "In 19th century France, Jean Valjean, a man imprisoned for stealing bread, must flee a relentless policeman named Javert. The pursuit consumes both men's lives, and soon Valjean finds himself in the midst of the student revolutions in France.", + "posterPath": "/3TOgmlIY8X3WjIjvU7Z0jqeNkyU.jpg", + "backdropPath": "/g1J3SBqxbeHLTatlzHp8bGhaAwO.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 36, + 10749 + ], + "genres": [ + "Crime", + "Drama", + "History", + "Romance" + ], + "releaseDate": "1998-05-01", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 665, + "popularity": 6.5031 + }, + { + "id": 857598, + "title": "Pushpa 2 - The Rule", + "originalTitle": "పుష్పా 2 - The Rule", + "overview": "As his smuggling empire grows, a brazen Pushpa longs for power and respect on his vengeful journey, while facing old rivals and new.", + "posterPath": "/759mIIerY4Njb8uPoj7AIXGSNh3.jpg", + "backdropPath": "/keC82cQ8q0ZHthrbvzWq04kGnbv.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53, + 80 + ], + "genres": [ + "Action", + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2024-12-04", + "releaseYear": "2024", + "originalLanguage": "te", + "voteAverage": 6.4, + "voteCount": 105, + "popularity": 6.5028 + }, + { + "id": 22796, + "title": "Simon Birch", + "originalTitle": "Simon Birch", + "overview": "Simon Birch and Joe Wenteworth are boys who have a reputation for being oddballs. Joe never knew his father, and his mother, Rebecca, is keeping her lips sealed no matter how much he protests. Simon, meanwhile, is an 11-year-old dwarf whose outsize personality belies his small stature. Indeed, he often assails the local reverend with thorny theological questions and joins Joe on his quest to find his biological father.", + "posterPath": "/vRJcV9l3tLFoUWZel9RikS3nfJ6.jpg", + "backdropPath": "/woldnmHWqYpUYoGzTQkiXtaLQxT.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1998-09-11", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.83, + "voteCount": 253, + "popularity": 6.5027 + }, + { + "id": 22490, + "title": "The Women", + "originalTitle": "The Women", + "overview": "A happily married woman lets her catty friends talk her into divorce when her husband strays.", + "posterPath": "/wMTbDI60uvt7ecLZ301XEE8mAOo.jpg", + "backdropPath": "/v7d5LDcIhNn9j3wWeSWp1mesgBe.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1939-09-01", + "releaseYear": "1939", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 168, + "popularity": 6.5024 + }, + { + "id": 475007, + "title": "The Escape", + "originalTitle": "The Escape", + "overview": "An ordinary woman makes an extraordinary decision which will change her life forever.", + "posterPath": "/e31ZIcE0vIyhc3BzRng7HMZKlnt.jpg", + "backdropPath": "/8uiGnZU7k5oCo1N9gM8ewx4c3Ar.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-04-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 75, + "popularity": 6.5016 + }, + { + "id": 9683, + "title": "Bubble Boy", + "originalTitle": "Bubble Boy", + "overview": "Jimmy is a young man who was born without an immune system and has lived his life within a plastic bubble in his bedroom... who pines for the sweet caresses of girl-next-door Chloe. But when Chloe decides to marry her high school boyfriend, Jimmy – bubble suit and all – treks cross-country to stop her.", + "posterPath": "/tFwvUSc8g0HHvDOBQ2rvC9LWVSj.jpg", + "backdropPath": "/vUq8oKAnONAbYxIDNw4CQcEuADd.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12, + 10749 + ], + "genres": [ + "Comedy", + "Adventure", + "Romance" + ], + "releaseDate": "2001-08-24", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.748, + "voteCount": 610, + "popularity": 6.5014 + }, + { + "id": 1022690, + "title": "Ricky Stanicky", + "originalTitle": "Ricky Stanicky", + "overview": "When three childhood best friends pull a prank gone wrong, they invent the imaginary Ricky Stanicky to get them out of trouble. Twenty years later, the trio still uses the nonexistent Ricky as a handy alibi for their immature behavior. But when their spouses and partners get suspicious and demand to finally meet the fabled Mr. Stanicky, the guilty trio decide to hire a washed-up actor and raunchy celebrity impersonator to bring him to life.", + "posterPath": "/oJQdLfrpl4CQsHAKIxd3DJqYTVq.jpg", + "backdropPath": "/wfdHCilp8cNPK7tK4jLgdUT7703.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-03-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.532, + "voteCount": 725, + "popularity": 6.5 + }, + { + "id": 227159, + "title": "Horrible Bosses 2", + "originalTitle": "Horrible Bosses 2", + "overview": "Dale, Kurt and Nick decide to start their own business but things don't go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.", + "posterPath": "/boBOkwIqgrs8noxBUSDkkicKa4K.jpg", + "backdropPath": "/5CUtGZASj2UqomudRG1RZOt5QbG.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-11-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.179, + "voteCount": 4281, + "popularity": 6.4998 + }, + { + "id": 896499, + "title": "Fruits Basket -prelude-", + "originalTitle": "フルーツバスケット-prelude-", + "overview": "Kyoko, who couldn't believe anything in the world and lived a desolate life, meets Katsuya Honda, who has been assigned as an educational trainee. She is at the mercy of Katsuya, who is rude and has a strong habit, and she is gradually attracted to her. However, she is disowned by her parents in the wake of an incident with her bad fellow. It's a punishment that I've been doing as much as I like. Katsuya appears in front of Kyoko who thinks so...", + "posterPath": "/gt7radvJj8UI8C8mvmtWX5uiqQB.jpg", + "backdropPath": "/9OUohsezE4kZr74oy9DA8Dt4jXo.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 10749 + ], + "genres": [ + "Animation", + "Drama", + "Romance" + ], + "releaseDate": "2022-02-18", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 35, + "popularity": 6.4997 + }, + { + "id": 72400, + "title": "La Bandera", + "originalTitle": "La Bandera", + "overview": "Pierre Gilieth has committed a murder in Paris. He flees to Barcelona, where he runs out of money. So he joins the Spanish Foreign Legion. He meets there two fellow countrymen, Mulot and Lucas. He tries to forget his fault... but Lucas's friendship soon appears to be less unselfish...", + "posterPath": "/qPJd23tHFXIA8LWpJeSpk0KtUTR.jpg", + "backdropPath": "/jPixwjcImLUY62kbYOh3DCucXvk.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1935-09-25", + "releaseYear": "1935", + "originalLanguage": "fr", + "voteAverage": 5.6, + "voteCount": 21, + "popularity": 6.4997 + }, + { + "id": 435, + "title": "The Day After Tomorrow", + "originalTitle": "The Day After Tomorrow", + "overview": "After paleoclimatologist Jack Hall is largely ignored by UN officials when presenting his environmental concerns about the beginning of a new Ice Age, his research proves true when a superstorm develops, setting off catastrophic natural disasters throughout the world. Trying to get to his son, Sam, who is trapped in New York City with his friend Laura and others, Jack and his crew must travel to get to Sam before it's too late.", + "posterPath": "/Wr4HeYQRvwVCxzOV5TmGE7UkXq.jpg", + "backdropPath": "/smqQ71MIn1DSdSiQzCzCOV6rgRq.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 12 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Adventure" + ], + "releaseDate": "2004-05-26", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 8560, + "popularity": 6.4997 + }, + { + "id": 437033, + "title": "Toc Toc", + "originalTitle": "Toc Toc", + "overview": "A group of patients meet at a prestigious psychologist's office. Apart from the day and time of the appointment, something else unites them all: all six suffer from OCD. But the plane bringing the doctor is unexpectedly delayed, which forces them to spend an endless wait until the doctor shows up. Will they be able to keep their manias, impulses, convulsions, obsessions and rituals at bay during the wait?", + "posterPath": "/qKrYZOXuayCcqJri6vwfzA8kCxu.jpg", + "backdropPath": "/oA4n3fCEW86QoLTDDlAfik9eOq9.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-09-01", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 7.103, + "voteCount": 1245, + "popularity": 6.4994 + }, + { + "id": 251321, + "title": "Aloft", + "originalTitle": "Aloft", + "overview": "As we follow a mother and her son, we delve into a past marred by an accident that tears them apart. She will become a renowned artist and healer, and he will grow into his own and a peculiar falconer who bears the marks of a double absence. In the present, a young journalist will bring about an encounter between the two that puts the very meaning of life and art into question, so that we may contemplate the possibility of living life to its fullest, despite the uncertainties littering our paths.", + "posterPath": "/fxwJywCV6XLAFi0FcqVyduw0Fu.jpg", + "backdropPath": "/61DzNcUduoqVDooSEhOHvkXOI7L.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-02-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 133, + "popularity": 6.4993 + }, + { + "id": 46448, + "title": "Charleston", + "originalTitle": "Charleston", + "overview": "Charleston is a 1977 Italian comedy film written and directed by Marcello Fondato. It reprises the style of the film The Sting.", + "posterPath": "/5S8Uygm5hRbMQuQ9w5DE9CF11BU.jpg", + "backdropPath": "/r5xE5fYiRfTg4tipG9eMrPBgpuV.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1977-03-05", + "releaseYear": "1977", + "originalLanguage": "it", + "voteAverage": 5.4, + "voteCount": 46, + "popularity": 6.4992 + }, + { + "id": 114255, + "title": "Tunnel Vision", + "originalTitle": "Tunnel Vision", + "overview": "A committee investigating TV's first uncensored network examines a typical day's programming, which includes shows, commercials, news programs, you name it. What they discover will surely crack you up! This outrageous and irreverent spoof of television launched the careers of some of the greatest comedians of all time.", + "posterPath": "/hD83vq9BuQ0dmsLnLpUmOClNlPE.jpg", + "backdropPath": "/5WP8iZHNBtqp3KP46U2fm9sFU13.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1976-03-12", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 4.438, + "voteCount": 16, + "popularity": 6.4989 + }, + { + "id": 28665, + "title": "Fame", + "originalTitle": "Fame", + "overview": "At New York's High School of Performing Arts, students from all walks of life get the chance to hone their skills as singers, actors, dancers, and more. Over four years, these young men and women will see if they truly have the dedication and talent to achieve success, while still juggling regular schoolwork, feelings of self-doubt, and budding romances.", + "posterPath": "/hm7f9a0BdjV9OLOJ5wFWQq55Jfd.jpg", + "backdropPath": "/kEU7Bbd9ANvziXlyD0dbN6l31Ht.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 35, + 18, + 10749 + ], + "genres": [ + "Music", + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2009-09-23", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 372, + "popularity": 6.4984 + }, + { + "id": 975511, + "title": "The Return", + "originalTitle": "The Return", + "overview": "After twenty years away, Odysseus washes up on the shores of Ithaca, haggard and unrecognizable. The king has finally returned home, but much has changed in his kingdom since he left to fight in the Trojan war.", + "posterPath": "/xSj6EbdwHs3MFT2tRj9L3I7TE5j.jpg", + "backdropPath": "/vgT0kAaWU88do5RrCfHhXRVPnXM.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 12 + ], + "genres": [ + "History", + "Drama", + "Adventure" + ], + "releaseDate": "2024-11-28", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.525, + "voteCount": 361, + "popularity": 6.4967 + }, + { + "id": 47119, + "title": "The Son Of...", + "originalTitle": "Le Garçu", + "overview": "A self-centered man (Gérard Depardieu) with many diversions occasionally visits his 4-year-old son (Antoine Pialat) and the boy's mother (Géraldine Pailhas).", + "posterPath": "/5JUEy8sDkzKp0Ok2G5KW2TCqYF4.jpg", + "backdropPath": "/nsETBUnauJ5Owoz4xVFX5SxXuPM.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1995-10-31", + "releaseYear": "1995", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 28, + "popularity": 6.496 + }, + { + "id": 33454, + "title": "Scaramouche", + "originalTitle": "Scaramouche", + "overview": "In 18th-century France, a young man masquerades as an actor to avenge his friend's murder.", + "posterPath": "/yALSC7jqOsmMtfSPp6ThCuNGjiR.jpg", + "backdropPath": "/cvvgW32yPZbVSsZmQgVxyULEpHe.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10749 + ], + "genres": [ + "Adventure", + "Romance" + ], + "releaseDate": "1952-05-08", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 7.026, + "voteCount": 96, + "popularity": 6.4959 + }, + { + "id": 258942, + "title": "Beatriz", + "originalTitle": "Beatriz", + "overview": "A child is witness to an assault on a monk by the gang of Lorenzo the Fifth. The monk escapes and takes refuge in the estate of Doña Carlota, a countess who lives with her son Juan and daughter Beatriz. Basilisa, the maid, conjures the devil to free her son from an irreversible illness, but to do so the evil must be transmitted to an innocent soul, and for that she chooses Beatriz. The child begins to be the victim of a possession, for which everyone blames the monk.", + "posterPath": "/ogeK65OH06UIUmPLfDHnBWp4QcC.jpg", + "backdropPath": "/wBagEOXPxUTzbqiseZW90cOha7g.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "1976-12-06", + "releaseYear": "1976", + "originalLanguage": "es", + "voteAverage": 3.692, + "voteCount": 13, + "popularity": 6.4958 + }, + { + "id": 3640, + "title": "Mostly Martha", + "originalTitle": "Bella Martha", + "overview": "Martha is a single woman who lives for one passion: cooking. The head chef at a chic restaurant, Martha has no time for anything - or anyone - else. But Martha's solitary life is shaken when a fateful accident brings her sister's eight-year-old daughter, Lina, to her doorstep.", + "posterPath": "/7nimF1VFLbcQ4juFfLdAN9czTJr.jpg", + "backdropPath": "/8o2RxrXLrfE9KnBA3Jgay7bAgF8.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2001-09-09", + "releaseYear": "2001", + "originalLanguage": "de", + "voteAverage": 6.7, + "voteCount": 107, + "popularity": 6.4948 + }, + { + "id": 578671, + "title": "White Lie", + "originalTitle": "White Lie", + "overview": "Katie Arneson is faking cancer. A university dance major, Katie's falsified diagnosis and counterfeit fundraising have transformed her into a campus celebrity surrounded by the supportive community she's always dreamed of. But now dependent on a bursary for sick students to maintain her ruse, Katie learns the funding is in jeopardy unless she can provide copies of her medical records within the week.", + "posterPath": "/c36SFlCl8wxDNWjsPNZyTUvvTBv.jpg", + "backdropPath": "/ckNsQR0NcjQVEw1eJEmRjzT00sv.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-09-07", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 39, + "popularity": 6.4946 + }, + { + "id": 19126, + "title": "Even Money", + "originalTitle": "Even Money", + "overview": "Gambling addiction bring the stories of three otherwise unconnected people together as it destroys each of their lives.", + "posterPath": "/63SdrM8TZbAi4R1Ju7yiIqBmpY3.jpg", + "backdropPath": "/5IokXOZYTeUhoNyZ2YIg01qrO6P.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2007-03-13", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 76, + "popularity": 6.4938 + }, + { + "id": 28100, + "title": "Carousel", + "originalTitle": "Carousel", + "overview": "Billy Bigelow has been dead for 15 years. Now outside the pearly gates, he long ago waived his right to go back to Earth for a day. He has heard that there is a problem with his family: namely with his wife Julie Bigelow, née Jordan, and his child he hasn't met. He would now like to head back to Earth to assist in rectifying the problem; but before he may go, he has to get permission from the gatekeeper by telling him his story. Adapted from the Rodgers and Hammerstein hit Broadway musical.", + "posterPath": "/1W7X2rHPTqzfYG5dZbvWcR5MzUs.jpg", + "backdropPath": "/s4wIZuM5NV0GRJONVPyXarcjWp1.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 10749 + ], + "genres": [ + "Music", + "Romance" + ], + "releaseDate": "1956-02-16", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 82, + "popularity": 6.4937 + }, + { + "id": 37144, + "title": "True Crime", + "originalTitle": "True Crime", + "overview": "Mary Giordano is a bright, intelligent student who goes to a catholic school. She also has an addiction to mystery novels and detective magazines, which inspire her to do her own detective work. When she starts snooping around on the case of a murderer of teenage girls, it gets her in hot water with her mentor Detective Jerry Gunn. But it also starts a team up with police cadet Tony Campbell. The two work together to find the murderer. But the closer Mary gets to solving the murder, the more danger she puts herself in of being the next victim.", + "posterPath": "/nPYe83tWVSwVFRyWa6f5aaE7bbu.jpg", + "backdropPath": "/bWQ73Pn7WhkT4Ba7xaeG3tcXLlt.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 53 + ], + "genres": [ + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "1996-03-12", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 5.661, + "voteCount": 84, + "popularity": 6.4916 + }, + { + "id": 24330, + "title": "Seventh Moon", + "originalTitle": "Seventh Moon", + "overview": "Melissa and Yul, Americans honeymooning in China, come across the exotic 'Hungry Ghost' festival. When night falls, the couple end up in a remote village, and soon realize the legend is all too real. Plunged into an ancient custom they cannot comprehend, the couple must find a way to survive the night of the Seventh Moon.", + "posterPath": "/pQKMYjCjBvnjhjNIuYG0oODH1h3.jpg", + "backdropPath": "/wvVIUJF8IXSzKNj2L6X8Iv2LbTG.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2008-09-20", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 4.404, + "voteCount": 79, + "popularity": 6.4898 + }, + { + "id": 48266, + "title": "Ma mère", + "originalTitle": "Ma mère", + "overview": "After his father's death, a young man is introduced to a world of hedonism and depravity by his amoral mother.", + "posterPath": "/uYWyC1jjcEkjR3aKFZ4ruNWM1io.jpg", + "backdropPath": "/qTZAaHBjdhupfodsMIj4xZrzek0.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-05-19", + "releaseYear": "2004", + "originalLanguage": "fr", + "voteAverage": 4.4, + "voteCount": 168, + "popularity": 6.4892 + }, + { + "id": 126712, + "title": "Superman", + "originalTitle": "Superman", + "overview": "Superman comes to Earth as a child and grows up to be his home's first superhero with his first major challenge being to oppose The Spider Lady.", + "posterPath": "/vLvSA6HLaldOBOCeKw8jJejXV8J.jpg", + "backdropPath": "/sfWWu2Nf6FuGinullL4FD1QldnW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 878 + ], + "genres": [ + "Action", + "Crime", + "Science Fiction" + ], + "releaseDate": "1948-07-15", + "releaseYear": "1948", + "originalLanguage": "en", + "voteAverage": 6.018, + "voteCount": 28, + "popularity": 6.489 + }, + { + "id": 48579, + "title": "My Sister in Law", + "originalTitle": "La pretora", + "overview": "Intransigent magistrate Viola Orlando is targeted by her rivals who set her twin sister Rosa — a high-class prostitute and pornographic photo-novel star — up to impersonate Viola and demolish her reputation. To complicate things even further, Viola is torn between enforcing the law or giving up her seat on the bench to marry her childhood friend.", + "posterPath": "/1C73JoBvAryD2mwA3wqdajfJb22.jpg", + "backdropPath": "/ntsZ4FwUbbt8tXS0fJpTiV6lFnU.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1976-11-05", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 34, + "popularity": 6.489 + }, + { + "id": 471616, + "title": "Indian Horse", + "originalTitle": "Indian Horse", + "overview": "Follows the life of Native Canadian Saul Indian Horse as he survives residential school and life amongst the racism of the 1970s. A talented hockey player, Saul must find his own path as he battles stereotypes and alcoholism.", + "posterPath": "/6PRmK9svHolvZ2CLNoBkmViYlrB.jpg", + "backdropPath": "/3An5TOYitpGnZWU3GhLGVKI4vcA.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-04-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 75, + "popularity": 6.4885 + }, + { + "id": 477657, + "title": "My Zoe", + "originalTitle": "My Zoe", + "overview": "Isabelle, a geneticist recovering from a toxic marriage, is raising her only daughter, Zoe, with her contentious ex-husband. Zoe means everything to her mother and so when tragedy strikes the fractured family, Isabelle travels to Russia in seeking the help of a world-renowned fertility physician who Isabelle believes can help bring back her little girl.", + "posterPath": "/nLhNcVOXWfYLP6XpUSPvtVdU4UP.jpg", + "backdropPath": "/sEA0Ov9xr6kCUeABqVqCbUMGuBu.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878 + ], + "genres": [ + "Drama", + "Science Fiction" + ], + "releaseDate": "2019-11-14", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 66, + "popularity": 6.4883 + }, + { + "id": 124972, + "title": "Generation Um...", + "originalTitle": "Generation Um...", + "overview": "A drama that follows three adults during a single day in New York, one filled with sex, drugs, and indecision.", + "posterPath": "/8n1Ww3FZQ3VE8OU7vhHClFLzxZG.jpg", + "backdropPath": "/7e0yLpOR1HeRnLa44XceSRQWYav.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-07-11", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 3.9, + "voteCount": 95, + "popularity": 6.4875 + }, + { + "id": 539985, + "title": "Drew Michael", + "originalTitle": "Drew Michael", + "overview": "Comedian Drew Michael is taking the stage and is holding nothing back in his first HBO stand-up special, in which he navigates his fears, anxieties and insecurities in an unconventional stand-up setting. Michael’s darkly comic, stream-of-consciousness monologue raises questions of identity, narrative, self-awareness and the limits of the medium itself.", + "posterPath": "/3MrxmKU0qweUnf9G1Z4hpFDF0cj.jpg", + "backdropPath": "/48XZdtsqsz5eeqnYJBZMwHijHko.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10770 + ], + "genres": [ + "Comedy", + "TV Movie" + ], + "releaseDate": "2018-08-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 10, + "popularity": 6.4868 + }, + { + "id": 31416, + "title": "The Wind", + "originalTitle": "The Wind", + "overview": "When Letty Mason relocates to West Texas, she finds herself unsettled by the ever-present wind and sand. Arriving at her new home at the ranch of her cousin, Beverly, she receives a surprisingly cold welcome from his wife, Cora. Soon tensions in the family and unwanted attention from a trio of suitors leave Letty increasingly disturbed.", + "posterPath": "/11ySoycM3ARm66RLiYE9yRcrg5b.jpg", + "backdropPath": "/mieB1ghpEBgTdGiYvewlLPN24jZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 37, + 10749, + 53 + ], + "genres": [ + "Drama", + "Western", + "Romance", + "Thriller" + ], + "releaseDate": "1928-09-15", + "releaseYear": "1928", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 127, + "popularity": 6.4868 + }, + { + "id": 100257, + "title": "Quartet", + "originalTitle": "Quartet", + "overview": "Somerset Maugham introduces four of his tales in this anthology film: \"The Facts of Life,\" \"The Alien Corn,\" \"The Kite,\" and \"The Colonel's Lady.\"", + "posterPath": "/hCPWlJus4LXWigzsRtJpJwlmD9o.jpg", + "backdropPath": "/rZBPCvuVlxtkFwCnQLEco0ScjHy.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1948-10-26", + "releaseYear": "1948", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 15, + "popularity": 6.4861 + }, + { + "id": 500003, + "title": "Funny Story", + "originalTitle": "Funny Story", + "overview": "Aging TV star Walter Campbell's attempts to break up with younger girlfriend Lucy are thwarted by the announcement of her pregnancy. Looking for space, Walter resolves to visit his estranged daughter Nic, currently residing in Big Sur, resentful of her father's neglectful parenting and womanizing ways. He agrees to give a lift to Nic's friend Kim, who having recently attended the funeral of her estranged mother, is dealing with her own emotional baggage. Upon arriving in Big Sur, Walter discovers that Nic is living on a lesbian commune, and is in fact due to get married. Nic is appreciative of Walter's acceptance of her sexuality, which sees the pair's relationship begin to repair, but this newly formed bond is at risk of being destroyed once and for all.", + "posterPath": "/rBOHMDmUqa5EvyIS7toLPhURIJM.jpg", + "backdropPath": "/j1gLGTZx9Jy8TDJpR250IAwp3Gg.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-01-21", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.75, + "voteCount": 36, + "popularity": 6.485 + }, + { + "id": 61638, + "title": "Don Giovanni", + "originalTitle": "Don Giovanni", + "overview": "Screen adapatation of Mozart's greatest opera. Don Giovanni, the infamous womanizer, makes one conquest after another until the ghost of Donna Anna's father, the Commendatore, (whom Giovanni killed) makes his appearance. He offers Giovanni one last chance to repent for his multitudinious improprieties. He will not change his ways So, he is sucked down into hell by evil spirits. High drama, hysterical comedy, magnificent music!", + "posterPath": "/t4avKNH3REZtyZiCHBwq8TvRKNu.jpg", + "backdropPath": "/iduLybl59XhwnvyA4Fu1WXMkUy0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "1979-11-06", + "releaseYear": "1979", + "originalLanguage": "it", + "voteAverage": 6.789, + "voteCount": 38, + "popularity": 6.4842 + }, + { + "id": 42392, + "title": "Bail Out", + "originalTitle": "Bail Out", + "overview": "A bail bondman hires three L.A. bounty hunters to protect a wealthy heiress, after her ex-boyfriend with connections to a drug cartel is murdered. When the heiress is abducted and taken to the cartel's Mexican hideout, the trio heads south to rescue her in time for her to testify against her ex-boyfriend's killers.", + "posterPath": "/rEyIuGNJOjFG6unA68UtB2uRqCF.jpg", + "backdropPath": "/gy7sosrZ2EAmYYfYSjKgpQC2sLt.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 35 + ], + "genres": [ + "Adventure", + "Action", + "Comedy" + ], + "releaseDate": "1989-09-22", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 3.667, + "voteCount": 18, + "popularity": 6.4839 + }, + { + "id": 75994, + "title": "Klondike Annie", + "originalTitle": "Klondike Annie", + "overview": "A San Francisco singer flees Chinatown on murder charges and poses as a missionary in Alaska.", + "posterPath": "/uxgpQ3aTFxyX0ywBmTHYblzM4TQ.jpg", + "backdropPath": "/ylUYTVZwR93PzwqFUnEuehZTXAD.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 37 + ], + "genres": [ + "Comedy", + "Drama", + "Western" + ], + "releaseDate": "1936-02-21", + "releaseYear": "1936", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 16, + "popularity": 6.4833 + }, + { + "id": 535308, + "title": "Hala", + "originalTitle": "Hala", + "overview": "Seventeen-year-old Pakistani American teenager Hala struggles to balance desire with her family, cultural, and religious obligations. As she comes into her own, she grapples with a secret that threatens to unravel her family.", + "posterPath": "/oMC0S5kpUq5AFIf4e5bZSEVRB7u.jpg", + "backdropPath": "/afFHOWMMMCji7T3mhZJdL77N0Gh.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-11-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.201, + "voteCount": 77, + "popularity": 6.483 + }, + { + "id": 343611, + "title": "Jack Reacher: Never Go Back", + "originalTitle": "Jack Reacher: Never Go Back", + "overview": "Years after resigning command of an elite military police unit, the nomadic, righter-of-wrongs Reacher is drawn back into the life he left behind when his friend and successor, Major Susan Turner is framed for espionage. Reacher will stop at nothing to prove her innocence and to expose the real perpetrators behind the killings of his former soldiers.", + "posterPath": "/cOg3UT2NYWHZxp41vpxAnVCOC4M.jpg", + "backdropPath": "/ww1eIoywghjoMzRLRIcbJLuKnJH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53, + 80 + ], + "genres": [ + "Action", + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2016-10-19", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.995, + "voteCount": 5148, + "popularity": 6.4826 + }, + { + "id": 774752, + "title": "The Guardians of the Galaxy Holiday Special", + "originalTitle": "The Guardians of the Galaxy Holiday Special", + "overview": "On a mission to make Christmas unforgettable for Quill, the Guardians head to Earth in search of the perfect present.", + "posterPath": "/8dqXyslZ2hv49Oiob9UjlGSHSTR.jpg", + "backdropPath": "/nJbWAc8wakV3BncyF4643SyFWPr.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878, + 12 + ], + "genres": [ + "Comedy", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2022-11-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.101, + "voteCount": 2233, + "popularity": 6.4818 + }, + { + "id": 974453, + "title": "Absolution", + "originalTitle": "Absolution", + "overview": "An aging ex-boxer gangster working as muscle for a Boston crime boss receives an upsetting diagnosis. Despite a faltering memory, he attempts to rectify the sins of his past and reconnect with his estranged children. He is determined to leave a positive legacy for his grandson, but the criminal underworld isn’t done with him and won’t loosen their grip willingly.", + "posterPath": "/gt70JOD9xsPlpJnuBJAWdOT4yRg.jpg", + "backdropPath": "/7bIWKyWdT04HTY3PqLETT8CH7jo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53, + 9648 + ], + "genres": [ + "Action", + "Crime", + "Thriller", + "Mystery" + ], + "releaseDate": "2024-10-31", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.874, + "voteCount": 479, + "popularity": 6.4812 + }, + { + "id": 9361, + "title": "The Last of the Mohicans", + "originalTitle": "The Last of the Mohicans", + "overview": "In war-torn colonial America, in the midst of a bloody battle between British, the French and Native American allies, the aristocratic daughter of a British Colonel and her party are captured by a group of Huron warriors. Fortunately, a group of three Mohican trappers comes to their rescue.", + "posterPath": "/qzJMPWRtZveBkxXOv3ucWhoJuyj.jpg", + "backdropPath": "/fUYxUbxnDH5r6vLc6eqkHhPltYv.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 36, + 10749, + 10752 + ], + "genres": [ + "Action", + "History", + "Romance", + "War" + ], + "releaseDate": "1992-08-26", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 3283, + "popularity": 6.4809 + }, + { + "id": 71147, + "title": "The Triangle", + "originalTitle": "The Triangle", + "overview": "This made-for-TV movie follows a group of friends as they try to find a boat lost for 50 years in the Bermuda Triangle.", + "posterPath": "/sQ9tlzw13zAoUfyDrwXMSKvhEZg.jpg", + "backdropPath": "/681awPuRWfx0fqhThfRzCprAJbl.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10770, + 27 + ], + "genres": [ + "Thriller", + "TV Movie", + "Horror" + ], + "releaseDate": "2001-08-13", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 40, + "popularity": 6.4804 + }, + { + "id": 613504, + "title": "After We Collided", + "originalTitle": "After We Collided", + "overview": "Tessa finds herself struggling with her complicated relationship with Hardin; she faces a dilemma that could change their lives forever.", + "posterPath": "/kiX7UYfOpYrMFSAGbI6j1pFkLzQ.jpg", + "backdropPath": "/6hgItrYQEG33y0I7yP2SRl2ei4w.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2020-09-02", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.163, + "voteCount": 5416, + "popularity": 6.4802 + }, + { + "id": 159137, + "title": "Anita", + "originalTitle": "Anita", + "overview": "The story of young, brilliant African-American Anita Hill who accuses the Supreme Court nominee Clarence Thomas of unwanted sexual advances during explosive Senate Hearings in 1991 and ignites a political firestorm about sexual harassment, race, power and politics that resonates today.", + "posterPath": "/6zGvZKGvXP2dL2lnONRAkG4gvy3.jpg", + "backdropPath": "/8IDYUeUXjrDCga7rJB4NvARP5ZM.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2013-03-25", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 14, + "popularity": 6.4799 + }, + { + "id": 1775, + "title": "Canadian Bacon", + "originalTitle": "Canadian Bacon", + "overview": "The U.S. President, low in the opinion polls, gets talked into raising his popularity by trying to start a cold war with Canada.", + "posterPath": "/bzK2aQ8xUB67kwCR5LHTSY99HtT.jpg", + "backdropPath": "/c4vkEcwWiRAg5TAb4sbuIElSR4T.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1995-06-08", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 235, + "popularity": 6.4796 + }, + { + "id": 498162, + "title": "Before the Frost", + "originalTitle": "Før frosten", + "overview": "A struggling farmer in 19th-century Denmark must go against his morals and make a deal with a wealthy neighbour in order to secure his family’s survival over a harsh winter.", + "posterPath": "/cg31OdcRWfJSfTyfTFEAuc5z3uR.jpg", + "backdropPath": "/eCcnLmmFjCPayKKZa3yaM7PYFKC.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-01-10", + "releaseYear": "2019", + "originalLanguage": "da", + "voteAverage": 6.167, + "voteCount": 30, + "popularity": 6.4793 + }, + { + "id": 33817, + "title": "Satanás - Profile of a Killer", + "originalTitle": "Satanás", + "overview": "Based on the Mario Mendoza's book and inspired by true events, tells three interconnected stories happening in the eve of the infamous Pozzetto Massacre.", + "posterPath": "/ruw3QrxGpHLlCr9lcgmncSvYpXT.jpg", + "backdropPath": "/jpIMFSCugevSN5jnZqDvVq7T5x7.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2007-03-04", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 7.033, + "voteCount": 45, + "popularity": 6.4791 + }, + { + "id": 528502, + "title": "Aporia", + "originalTitle": "Aporia", + "overview": "Since losing her husband, Sophie has struggled to manage grief, a full-time job, and parenting her devastated daughter, but when a former physicist reveals a secret time-bending machine, Sophie will be faced with an impossible choice.", + "posterPath": "/zYt35YGKoc85LXULzMKDfJ8qX1C.jpg", + "backdropPath": "/oRKhpvCZGa27uJgcmMEZUPMhe25.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18 + ], + "genres": [ + "Science Fiction", + "Drama" + ], + "releaseDate": "2023-08-11", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 97, + "popularity": 6.479 + }, + { + "id": 1134055, + "title": "Kill Shot", + "originalTitle": "Kill Shot", + "overview": "Posing as hunters, a group of terrorists are in search of $100 million that was stolen and lost in a plane crash en route from Afghanistan.", + "posterPath": "/5kCEHZnUeAZFJvE3l8K5OYjIwjj.jpg", + "backdropPath": "/gTydwZInr9ncMVFdYUzTcXtiTiT.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2023-08-15", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.256, + "voteCount": 211, + "popularity": 6.4789 + }, + { + "id": 982620, + "title": "Maneater", + "originalTitle": "Maneater", + "overview": "A group of friends on vacation in a seeming island paradise are stalked by an unrelenting great white after an accident leaves them stranded and left for dead.", + "posterPath": "/pwf3DGuWB1AptvIzHhlGxDUNnQX.jpg", + "backdropPath": "/jHKNqz0LjM2dOUv5XDPmcSoYPEW.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 27 + ], + "genres": [ + "Mystery", + "Thriller", + "Horror" + ], + "releaseDate": "2022-08-26", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 4.526, + "voteCount": 114, + "popularity": 6.4781 + }, + { + "id": 150434, + "title": "Futari wa Precure Splash☆Star the Movie: Tic-Tac Crisis Hanging by a Thin Thread!", + "originalTitle": "映画ふたりはプリキュアSplash☆Star チクタク危機一髪!", + "overview": "In the middle of a karaoke contest, Saki and Mai find that time has suddenly stopped. Following some spirits, they wind up in the Land of Clocks where they find Sirloin, a warrior from Dark Fall who is keeping the Infinite Clock hostage. Naturally, Pretty Cure won't stand for this, and they begin to battle. But can they stop fighting with each other first?", + "posterPath": "/4LNhz62BIwfDwQ5xoSWwz8EUJEq.jpg", + "backdropPath": "/w9HSDuenuTKKhYTs7wYVqKdGVqf.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 14, + 35, + 28, + 12, + 10751 + ], + "genres": [ + "Animation", + "Fantasy", + "Comedy", + "Action", + "Adventure", + "Family" + ], + "releaseDate": "2006-12-09", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 18, + "popularity": 6.4781 + }, + { + "id": 673228, + "title": "Is There a Killer in My Family?", + "originalTitle": "Is There a Killer in My Family?", + "overview": "True-crime author, Carly, and her husband Kevin take a vacation at a historical mansion on Crawford Island. Kevin thinks it will be a chance for them to reconnect, but Carly plans to research the puzzling unsolved murder of Diana Crawford.", + "posterPath": "/zk7fYRNr063kggg9Coy4zdHtaa0.jpg", + "backdropPath": "/1Sm3tcqZr6aLtmwt2vuv18douCC.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10770, + 9648 + ], + "genres": [ + "Thriller", + "TV Movie", + "Mystery" + ], + "releaseDate": "2020-02-14", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.524, + "voteCount": 41, + "popularity": 6.478 + }, + { + "id": 1170824, + "title": "American Star", + "originalTitle": "American Star", + "overview": "An assassin on a final assignment in Fuerteventura, to kill a man he has never met. When his target is delayed, he finds himself drawn to the island, people and a ghostly shipwreck. Instead of following protocol he stays. But when the target returns, the world has shifted. Before everything was simple, now nothing is.", + "posterPath": "/aFjxI9yMd142au1O74JlUttG4Ki.jpg", + "backdropPath": "/dkPi08aPgRrOTB8OLrdSpt6zfa3.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648, + 18 + ], + "genres": [ + "Thriller", + "Mystery", + "Drama" + ], + "releaseDate": "2024-01-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.63, + "voteCount": 54, + "popularity": 6.4772 + }, + { + "id": 21362, + "title": "High Spirits", + "originalTitle": "High Spirits", + "overview": "When a hotelier attempts to fill the chronic vacancies at his castle by launching an advertising campaign that falsely portrays the property as haunted, two actual ghosts show up and end up falling for two guests.", + "posterPath": "/88sqqQrltIok7ayhs21mAHoSrcK.jpg", + "backdropPath": "/pBCeeGfLmpJGtfQgik62xI0Bnej.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 27 + ], + "genres": [ + "Fantasy", + "Comedy", + "Horror" + ], + "releaseDate": "1988-11-18", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.762, + "voteCount": 235, + "popularity": 6.4762 + }, + { + "id": 975225, + "title": "Spinal Tap II: The End Continues", + "originalTitle": "Spinal Tap II: The End Continues", + "overview": "The now estranged bandmates of Spinal Tap are forced to reunite for one final concert, hoping it will solidify their place in the pantheon of rock 'n' roll.", + "posterPath": "/h6DGrDHlDm6gVOiy3YeOb737jB4.jpg", + "backdropPath": "/czmBLRl98O2nTIzU0td3wDS78pN.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 35 + ], + "genres": [ + "Music", + "Comedy" + ], + "releaseDate": "2025-09-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 30, + "popularity": 6.4751 + }, + { + "id": 504253, + "title": "I Want to Eat Your Pancreas", + "originalTitle": "君の膵臓をたべたい", + "overview": "After his classmate and crush is diagnosed with a pancreatic disease, an average high schooler sets out to make the most of her final days.", + "posterPath": "/qDWA7fB4cZ4sBP6YgwlxvraDHi7.jpg", + "backdropPath": "/YLyORLsYIjC0d1TFBSpJKk7piP.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 10749 + ], + "genres": [ + "Animation", + "Drama", + "Romance" + ], + "releaseDate": "2018-09-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.241, + "voteCount": 1688, + "popularity": 6.4748 + }, + { + "id": 45535, + "title": "Fatal", + "originalTitle": "Fatal", + "overview": "Fatal... a diminutive for Fatal Bazooka, a bling-bling and hardcore rapper. A huge music star. Millions of fans, tens of hits, 4 « Artist of the year » Music Awards of Music, a range of fashion, a magazine, and soon his own amusement park : Fataland. He is the undisputed number one, until...", + "posterPath": "/36bGGHNevGu8R7uq0dFxSdbSlqb.jpg", + "backdropPath": "/4bnTKD6Mp0toKLdisdz4X8BOUsS.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2010-06-16", + "releaseYear": "2010", + "originalLanguage": "fr", + "voteAverage": 5.967, + "voteCount": 645, + "popularity": 6.474 + }, + { + "id": 278924, + "title": "Mechanic: Resurrection", + "originalTitle": "Mechanic: Resurrection", + "overview": "Arthur Bishop thought he had put his murderous past behind him when his most formidable foe kidnaps the love of his life. Now he is forced to travel the globe to complete three impossible assassinations, and do what he does best, make them look like accidents.", + "posterPath": "/bG3Q6EFcngpPn7uPuQTzTuq9DgV.jpg", + "backdropPath": "/3f5rBEc6ioRBO2CATDt4sKjEJnY.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2016-08-25", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.032, + "voteCount": 3532, + "popularity": 6.4738 + }, + { + "id": 21811, + "title": "Ski School", + "originalTitle": "Ski School", + "overview": "Rival groups in a skiing school do battle on and off the piste. One gang are rich and serious, the other group are party animals.", + "posterPath": "/tRgkoCVw7W1e1ghMEtDlguzrSsa.jpg", + "backdropPath": "/7aYB9InOnhTiL62jjm3zmr3ruQw.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1991-01-11", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 99, + "popularity": 6.4734 + }, + { + "id": 11349, + "title": "Cape Fear", + "originalTitle": "Cape Fear", + "overview": "Sam Bowden witnesses a rape committed by Max Cady and testifies against him. When released after 8 years in prison, Cady begins stalking Bowden and his family but is always clever enough not to violate the law.", + "posterPath": "/xDqaHjMbnebtB05QWgAR8wW86sb.jpg", + "backdropPath": "/gPqtCp55HWsJ2f3fEPsoXD77KQx.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "1962-04-12", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 601, + "popularity": 6.4728 + }, + { + "id": 9918, + "title": "Glory Road", + "originalTitle": "Glory Road", + "overview": "In 1966, Texas Western coach Don Haskins led the first all-black starting line-up for a college basketball team to the NCAA national championship.", + "posterPath": "/bGRSV5tStxDNPRLCewnOeeiZzrY.jpg", + "backdropPath": "/bWN6ZBr6nJNEuHigL9fQWhZ78hd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2006-01-13", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.424, + "voteCount": 765, + "popularity": 6.4724 + }, + { + "id": 337339, + "title": "The Fate of the Furious", + "originalTitle": "The Fate of the Furious", + "overview": "When a mysterious woman seduces Dom into the world of crime and a betrayal of those closest to him, the crew face trials that will test them as never before.", + "posterPath": "/dImWM7GJqryWJO9LHa3XQ8DD5NH.jpg", + "backdropPath": "/3IJ8kG8i84PncXkSovu0PaZQfjM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2017-04-12", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.861, + "voteCount": 10612, + "popularity": 6.4719 + }, + { + "id": 58129, + "title": "The Phantom Carriage", + "originalTitle": "Körkarlen", + "overview": "An alcoholic, abusive ne'er-do-well is shown the error of his ways through a legend that dooms the last person to die on New Year's Eve before the clock strikes twelve to take the reins of Death's chariot and work tirelessly collecting fresh souls for the next year.", + "posterPath": "/vmhMEj2d8JnKS5jzqJf4kYypKWN.jpg", + "backdropPath": "/xgiGMef3A2aFAFktYyFu1juDvcI.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 27 + ], + "genres": [ + "Drama", + "Fantasy", + "Horror" + ], + "releaseDate": "1921-01-01", + "releaseYear": "1921", + "originalLanguage": "sv", + "voteAverage": 7.8, + "voteCount": 342, + "popularity": 6.4716 + }, + { + "id": 60740, + "title": "Game", + "originalTitle": "Game", + "overview": "Four strangers are invited by the reclusive Kabir Malhotra, to his private island of Samos, Greece. They don't know each other and they don't know him ... and by the next morning they will wish they had never come.", + "posterPath": "/nB8jtWGzFuYGRY1Dkbtf23dxbap.jpg", + "backdropPath": "/dvHGj3iLiBaQyc5a1VMm3KsVIsa.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53 + ], + "genres": [ + "Mystery", + "Thriller" + ], + "releaseDate": "2011-04-01", + "releaseYear": "2011", + "originalLanguage": "hi", + "voteAverage": 5.849, + "voteCount": 43, + "popularity": 6.4711 + }, + { + "id": 47327, + "title": "Drive Angry", + "originalTitle": "Drive Angry", + "overview": "Milton is a hardened felon who has broken out of Hell, intent on finding the vicious cult who brutally murdered his daughter and kidnapped her baby. He joins forces with a sexy, tough-as-nails waitress, who's also seeking redemption of her own. Caught in a deadly race against time, Milton has three days to avoid capture, avenge his daughter's death, and save her baby before she's mercilessly sacrificed by the cult.", + "posterPath": "/nx2pChi41Xv4dsXsfSG3gnKcWaY.jpg", + "backdropPath": "/63QcB4IQpvoyROk9dLgcbHo9LYT.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 53, + 28, + 80 + ], + "genres": [ + "Fantasy", + "Thriller", + "Action", + "Crime" + ], + "releaseDate": "2011-02-24", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.535, + "voteCount": 1960, + "popularity": 6.4701 + }, + { + "id": 1144681, + "title": "Armand", + "originalTitle": "Armand", + "overview": "Armand, a 6-year-old boy, is accused of crossing boundaries against his best friend at elementary school. While no one knows what actually happened between the two boys, the incident triggers a series of events, forcing parents and school staff into a captivating battle of redemption where madness, desire and obsession arise.", + "posterPath": "/toW7qhFaO3VvuoRXFNpjs55PXMZ.jpg", + "backdropPath": "/yC26uOPaXcyAj44nXsw4jGIuHSj.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2024-09-27", + "releaseYear": "2024", + "originalLanguage": "no", + "voteAverage": 6.4, + "voteCount": 86, + "popularity": 6.4695 + }, + { + "id": 41253, + "title": "Damn Yankees", + "originalTitle": "Damn Yankees", + "overview": "Film adaptation of the George Abbott Broadway musical about a Washington Senators fan who makes a pact with the Devil to help his baseball team win the league pennant.", + "posterPath": "/iSw0Fb4pdXDqm9Bl8iqsSwfn5u7.jpg", + "backdropPath": "/jfGgCSFMUlf8DklzUkpz1GfieHA.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 35 + ], + "genres": [ + "Music", + "Comedy" + ], + "releaseDate": "1958-09-26", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 6.39, + "voteCount": 41, + "popularity": 6.4693 + }, + { + "id": 16938, + "title": "Black Christmas", + "originalTitle": "Black Christmas", + "overview": "As the residents of the Pi Kappa Sigma sorority house prepare for the festive season, a stranger begins to harass them with a series of obscene phone calls.", + "posterPath": "/qqO98sdPgptFgCua3Z4uZDuPcmP.jpg", + "backdropPath": "/s46nIyQQtZZPI8kw7A71Iuauk57.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "1974-10-11", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 6.924, + "voteCount": 886, + "popularity": 6.469 + }, + { + "id": 372234, + "title": "The Sea", + "originalTitle": "Il mare", + "overview": "A well known actor comes to off-season Capri to unwind and meets a young man. The attraction is immediate and mutual but before their relationship can get off the ground, an alluring woman with a spontaneous sexuality and care free attitude joins the triangle and the boy is slowly pushed out of the picture.", + "posterPath": "/UJoWZ8dmmqiJe9PszrjJ0I1He1.jpg", + "backdropPath": "/p222OnssgeWTR9BvFOefy1IqRJ5.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1962-03-08", + "releaseYear": "1962", + "originalLanguage": "it", + "voteAverage": 5.9, + "voteCount": 15, + "popularity": 6.4683 + }, + { + "id": 175541, + "title": "Black Nativity", + "originalTitle": "Black Nativity", + "overview": "A street-wise teen from Baltimore who has been raised by a single mother travels to New York City to spend the Christmas holiday with his estranged relatives, where he embarks on a surprising and inspirational journey.", + "posterPath": "/dIOk8uCYZMP69D6WhiRCZAGX9kE.jpg", + "backdropPath": "/62p194Ai0TzmDabuDsVT9McJdIN.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18 + ], + "genres": [ + "Music", + "Drama" + ], + "releaseDate": "2013-11-27", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.073, + "voteCount": 62, + "popularity": 6.4682 + }, + { + "id": 81880, + "title": "You Really Got Me", + "originalTitle": "Amatørene", + "overview": "Jan's fastfood-business is going bankrupt, his girlfriend has left him, and he is being exploited by his live-in father. Therefore, he has nothing to lose when he gets mixed up in the kidnapping of famous rock star Iver Mo. But Jan has never been able to do anything right his whole life, and there are others who want to get their hands on the ransom money.", + "posterPath": "/z34EslKiu36XqPSARUe9VVVGb6q.jpg", + "backdropPath": "/dyorcWfiIpy5dq7oMUpqfsTG6fY.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2001-03-02", + "releaseYear": "2001", + "originalLanguage": "no", + "voteAverage": 6.5, + "voteCount": 10, + "popularity": 6.4681 + }, + { + "id": 20053, + "title": "Dead Heat", + "originalTitle": "Dead Heat", + "overview": "Boston cop Pally is forced into early retirement, putting a strain on his marriage. Pally's stepbrother, Ray, attempts to lift his spirits by tipping him off to a sure-bet racehorse. But their attempts to secure the champion equine are thwarted by a local mob boss, who steals the horse as repayment for a gambling debt. With their investment on the line, Pally and Ray become entangled in a web of underworld crime and murder.", + "posterPath": "/oRFKEQ67NuFPTYMqsGTKtlSQ9Pb.jpg", + "backdropPath": "/ozN3eNz6bOBm35VFxfKo8WOY3b7.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2002-07-23", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 22, + "popularity": 6.468 + }, + { + "id": 50506, + "title": "Mrs. Miracle", + "originalTitle": "Mrs. Miracle", + "overview": "Overwhelmed widower Seth Webster is searching for a housekeeper to help him with his unruly six year old twin sons. \"Mrs. Miracle\" mysteriously appears and quickly becomes an irreplaceable nanny, chef, friend... and matchmaker.", + "posterPath": "/x4bgbJqRaiDC8wSPQNzVtn4iEsq.jpg", + "backdropPath": "/fMCkkqpAVfFmbf009flydh7gQY4.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 35, + 10751, + 14, + 10749 + ], + "genres": [ + "TV Movie", + "Comedy", + "Family", + "Fantasy", + "Romance" + ], + "releaseDate": "2009-12-05", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 111, + "popularity": 6.4679 + }, + { + "id": 15052, + "title": "The Lodger", + "originalTitle": "The Lodger", + "overview": "Follows a seasoned detective on the trail of a ruthless killer intent on slaughtering prostitutes along West Hollywood's Sunset Strip. It appears that the murderer's grisly methods are identical to that of London's infamous 19th century psychopath Jack the Ripper – a relentless serial killer who was never caught by police. To make matters worse, the detective soon notices the parallels between the crimes committed by the West Hollywood stalker and those of a serial murderer incarcerated years ago. Could the wrong man be behind bars?", + "posterPath": "/prfQla0ZriFC9PecssAiladiby4.jpg", + "backdropPath": "/roePaYv9lb1h5lYqEKmL0iXPhTL.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53, + 18 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller", + "Drama" + ], + "releaseDate": "2009-01-14", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 142, + "popularity": 6.4672 + }, + { + "id": 81450, + "title": "Love Begins", + "originalTitle": "Love Begins", + "overview": "Clark Davis adventurous dreams of seeing the world are put into jeopardy after he and a friend start a fight which damages a local cafe. Through a plea deal with the Sheriff and café owner Millie, Clark works off his sentence as a farmhand for the Barlow sisters, Ellen and Cassie. Older sister Ellen doesnt understand Cassies friendly nature with Clark; she agreed to the Sheriffs offer only because the farm has become too much to maintain alone. Clark is slowing winning Ellen over, but suddenly suffers a traumatic head injury in a fall. After Ellen nurses him back to health, her former fiancé returns to win her back. Will Clark travel on or stay behind where love begins?", + "posterPath": "/b0JiPlWEZ8cnhhgVOWo0rnbGuvh.jpg", + "backdropPath": "/aT7HV3yKvnXbp4o126pf5gAU0Na.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10751, + 10770 + ], + "genres": [ + "Drama", + "Romance", + "Family", + "TV Movie" + ], + "releaseDate": "2011-09-17", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 27, + "popularity": 6.4671 + }, + { + "id": 1232827, + "title": "The Girl with the Needle", + "originalTitle": "Pigen med nålen", + "overview": "Struggling to survive in post-WWI Copenhagen, a newly unemployed and pregnant young woman is taken in by a charismatic elder to help run an underground adoption agency. The two form an unexpected bond, until a sudden discovery changes everything.", + "posterPath": "/2xkyx8v9G3ePxe1IcFugFQkXHzQ.jpg", + "backdropPath": "/uwACVNL5OpiI3oT72DVGxnU4SRV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2024-09-06", + "releaseYear": "2024", + "originalLanguage": "da", + "voteAverage": 7.6, + "voteCount": 294, + "popularity": 6.4666 + }, + { + "id": 9885, + "title": "Wolf Creek", + "originalTitle": "Wolf Creek", + "overview": "Stranded backpackers in remote Australia fall prey to a murderous bushman, who offers to fix their car, then takes them captive.", + "posterPath": "/545PYpfCeDwVgdgydHCQqXFr168.jpg", + "backdropPath": "/315xehapBIRk5XCHbcTxjgUmvdx.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2005-09-16", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.229, + "voteCount": 1238, + "popularity": 6.4664 + }, + { + "id": 27817, + "title": "Orion's Belt", + "originalTitle": "Orions belte", + "overview": "Live to tell the truth. What can one man do against the most lethal army on earth? Local fishermen/smugglers/tourist guides Tom, Lars and Sverre discover the Soviet Union aren't just mining for coal in the arctic archipelago of Svalbard. This is a secret too big for any of them, and soon they find themselves hunted down by Soviet forces and secret agents.", + "posterPath": "/kXLZJiSoMEJVq1x9s99zxd0Y7b1.jpg", + "backdropPath": "/gduEO5xWcVbtrmJn1FJE1uPSnTc.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "1985-02-08", + "releaseYear": "1985", + "originalLanguage": "no", + "voteAverage": 5.696, + "voteCount": 23, + "popularity": 6.4657 + }, + { + "id": 85186, + "title": "Demented", + "originalTitle": "Demented", + "overview": "A woman is gang-raped in a horse's stable, and even though the rapists are caught and imprisoned, she is harassed many moons later by ghastly visions of her tormentors, while her husband philanders and every little thing frightens her out of her wits.", + "posterPath": "/5tA0N5GDiQvUtUrKH9EPCdXTUWY.jpg", + "backdropPath": "/sILXGYzCRj1dgIY4L0yrGvFVQgQ.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 27, + 53 + ], + "genres": [ + "Crime", + "Horror", + "Thriller" + ], + "releaseDate": "1980-06-01", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 28, + "popularity": 6.465 + }, + { + "id": 84308, + "title": "Madrid, 1987", + "originalTitle": "Madrid, 1987", + "overview": "In 1987 Madrid, the unexpected encounter between a seasoned journalist and a young student leads to a profound exploration of love, desire, politics, power, and discovery of each other.", + "posterPath": "/aCfIPBTn9xX6kZ6miyObL03fMeg.jpg", + "backdropPath": "/38FD40S9kAYxJ5SRZjViLhWC1Nz.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-04-13", + "releaseYear": "2012", + "originalLanguage": "es", + "voteAverage": 6.4, + "voteCount": 68, + "popularity": 6.4649 + }, + { + "id": 928270, + "title": "Heatwave", + "originalTitle": "Heatwave", + "overview": "A woman's life takes an unexpected turn when she falls for her boss's wife. She must soon defend herself as she becomes entangled in a web of malice.", + "posterPath": "/rtbZAMcriHlHmB24GhBRlLa29dA.jpg", + "backdropPath": "/wdcSkdKRwiABA5SdNth1uAnErzw.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2022-01-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 155, + "popularity": 6.4644 + }, + { + "id": 1175351, + "title": "Bosco", + "originalTitle": "Bosco", + "overview": "Based on the true story of Quawntay “Bosco” Adams. Sentenced to 35 years for attempted possession of marijuana, Adams miraculously escaped from a Federal maximum-security prison while under 24-hour surveillance in solitary confinement with the help of an older woman he met through a lonely-hearts ad.", + "posterPath": "/dXjSeS3w97setnrNv4m6tlqqXzn.jpg", + "backdropPath": "/hHw7qug8ka3eppjwTm2aDpOKAUd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2024-02-02", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.75, + "voteCount": 48, + "popularity": 6.4643 + }, + { + "id": 22515, + "title": "Death Racers", + "originalTitle": "Death Racers", + "overview": "In a dystopian future, contestants compete in a cross-country road race in which killing is part of the game.", + "posterPath": "/tgbTNDNH60x5xDkGgMR3eceiyix.jpg", + "backdropPath": "/qI7fv6W4Ym9MdndVZ5lkUCrR77H.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 878, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2008-09-28", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 2.7, + "voteCount": 28, + "popularity": 6.4641 + }, + { + "id": 140491, + "title": "Alienate", + "originalTitle": "Alienate", + "overview": "A couple on the brink of ending their marriage spend a weekend in different cities. After a cataclysmic event strikes, the husband embarks on a physical and emotional quest to return home as a nation prepares for the worst.", + "posterPath": "/xVr05pfnYZoZvXr4WZKToaMHq5o.jpg", + "backdropPath": "/tJ0PLzVnSb4jdORkpZ8HGrtJC8L.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 878 + ], + "genres": [ + "Drama", + "Horror", + "Science Fiction" + ], + "releaseDate": "2016-02-22", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 4.039, + "voteCount": 38, + "popularity": 6.4635 + }, + { + "id": 468690, + "title": "Mobile Suit Gundam Thunderbolt: Bandit Flower", + "originalTitle": "機動戦士ガンダム サンダーボルト Bandit Flower", + "overview": "The second movie of the long-awaited fan favorite Thunderbolt Series. Earth, eight months after the end of the One Year War. Captain Monica launches a secret mission, \"Operation Thunderbolt,\" and selects Io to pilot the Atlas Gundam. She leads the assault landing ship Spartan into a part of the ocean effectively controlled by the South Seas Alliance. Their objective is to secure or destroy the data of the Psycho Zaku, which the Alliance now possesses. Daryl, who took the upper hand in his battle with Io, has descended to Earth as part of the remnant forces of the Principality of Zeon. He has also been given the mission of obtaining information on the Psycho Zaku. Fighting alongside his new comrades, Io encounters Commander Peer, the South Seas Alliance's border garrison commander. In the sea, on the ice field, and among the thick jungle, the mobile suits of Zeon, the Federation, and the South Seas Alliance battle each other. \"The war is not over yet.\"", + "posterPath": "/lYqwIyGFBltNrUzM5QYyH4vbNxE.jpg", + "backdropPath": "/vCSUw7bsk85V7euRWx0gzy3aY9U.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 878, + 10752 + ], + "genres": [ + "Action", + "Animation", + "Science Fiction", + "War" + ], + "releaseDate": "2017-11-18", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 20, + "popularity": 6.4633 + }, + { + "id": 598, + "title": "City of God", + "originalTitle": "Cidade de Deus", + "overview": "In the poverty-stricken favelas of Rio de Janeiro in the 1970s, two young men choose different paths. Rocket is a budding photographer who documents the increasing drug-related violence of his neighborhood, while José “Zé” Pequeno is an ambitious drug dealer diving into a dangerous life of crime.", + "posterPath": "/k7eYdWvhYQyRQoU2TB2A2Xu2TfD.jpg", + "backdropPath": "/uvitbjFU4JqvMwIkMWHp69bmUzG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2002-08-30", + "releaseYear": "2002", + "originalLanguage": "pt", + "voteAverage": 8.427, + "voteCount": 7890, + "popularity": 6.4629 + }, + { + "id": 70193, + "title": "Hazard", + "originalTitle": "HAZARD", + "overview": "Shin is a Japanese university student living a boring and meaningless life. One day, he spots a book titled Dangerous Ways to Walk the World, in which he finds a page written about hazards in New-York. Eager to get out, he jets off to New-York to find this inspiration.", + "posterPath": "/37UiCE8LyyRLlg9p50LL2QvBmzz.jpg", + "backdropPath": "/hS0IOeV0ghqiv1WcsjdKgYop9JT.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2005-11-11", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.609, + "voteCount": 23, + "popularity": 6.4625 + }, + { + "id": 324670, + "title": "Spectral", + "originalTitle": "Spectral", + "overview": "A special-ops team is dispatched to fight supernatural beings that have taken over a European city.", + "posterPath": "/b38TATFWkb3TRNUIPcvGiErRzrw.jpg", + "backdropPath": "/cBrzOqgAJv1YG4Jww9dt1B54Sv8.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 28 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Action" + ], + "releaseDate": "2016-12-09", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.524, + "voteCount": 1875, + "popularity": 6.4606 + }, + { + "id": 11561, + "title": "Sleeper", + "originalTitle": "Sleeper", + "overview": "Miles Monroe, a clarinet-playing health food store proprietor, is revived out of cryostasis 200 years into a future world in order to help rebels fight an oppressive government regime.", + "posterPath": "/YTYSziZZP5aXt5CDvdEMwKDzme.jpg", + "backdropPath": "/uVTEJPLof6fizkWvmhxEprut9oQ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878 + ], + "genres": [ + "Comedy", + "Science Fiction" + ], + "releaseDate": "1973-12-17", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 6.874, + "voteCount": 815, + "popularity": 6.4602 + }, + { + "id": 1352774, + "title": "Piglet", + "originalTitle": "Piglet", + "overview": "On Kate's 21st birthday camping trip, her friends encounter Piglet, a monstrous human-pig hybrid who brutally murders one of them. They uncover Piglet's origins and Kate must confront her past to survive the relentless killer.", + "posterPath": "/mW7PYDUeWYwTdbtzThqLMfdNa56.jpg", + "backdropPath": "/tehewlwOPFDDf4syutyopaY23AY.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2025-05-29", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.545, + "voteCount": 44, + "popularity": 6.4601 + }, + { + "id": 89899, + "title": "The Players", + "originalTitle": "Les infidèles", + "overview": "Eight short films explore the subject of male infidelity. Serial cheaters, Fred and Greg, spend a night on the town doing what they do best, and with absolutely no regrets. The duo play various characters in assorted extracurricular situations, ranging from sexist to the darker sides of carnal desires.", + "posterPath": "/boHSJQ4ECBNjuEKTgct2jBOLqQd.jpg", + "backdropPath": "/fHAX3Lcvf81KCO4vji4sRxcSlDn.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-02-29", + "releaseYear": "2012", + "originalLanguage": "fr", + "voteAverage": 4.734, + "voteCount": 741, + "popularity": 6.46 + }, + { + "id": 41947, + "title": "War Requiem", + "originalTitle": "War Requiem", + "overview": "During World War I, British soldier Owen is mortified by the examples of cruelty that surround him in the trenches. He combats these terrifying images by maintaining hope in his love for an army nurse. But he also begins to accept his fate as another battlefield sacrifice.", + "posterPath": "/m2DvcGnf4eQs5bfttuNQLm35UtQ.jpg", + "backdropPath": "/rhEsRm83SOdAjOEpo6VbN6BWO24.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18 + ], + "genres": [ + "War", + "Drama" + ], + "releaseDate": "1989-01-06", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 20, + "popularity": 6.4597 + }, + { + "id": 85203, + "title": "Twisted Nightmare", + "originalTitle": "Twisted Nightmare", + "overview": "A group of teenagers win a trip to a summer camp they had attended as children. However, soon after they get there they begin to disappear one by one. The survivors suspect that the disappearances may be connected to the death of a handicapped child at the camp years before.", + "posterPath": "/vp6dSJf01d95anXKf27RvAwaLff.jpg", + "backdropPath": "/3RMOhVjkwdfYrsn90WZ7ubPjl7u.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1987-03-06", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 4.417, + "voteCount": 24, + "popularity": 6.4594 + }, + { + "id": 51736, + "title": "Bloomington", + "originalTitle": "Bloomington", + "overview": "A former child actress attends college in search of independence and ends up becoming romantically involved with a female professor. Their relationship thrives until an opportunity to return to acting forces her to make life-altering decisions.", + "posterPath": "/vCHFXTpoDiQNwKB66ulnxOraQAt.jpg", + "backdropPath": "/nrgvVmc9XrKfXFaXvXtbpjecyqK.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2010-06-23", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.503, + "voteCount": 165, + "popularity": 6.459 + }, + { + "id": 40451, + "title": "The Mutilator", + "originalTitle": "The Mutilator", + "overview": "As a child, Ed was cleaning his father’s hunting rifles - a surprise birthday treat for the old man - when one of them went off, hitting and killing his mother. On seeing the bloodshed, his father flew into a murderous rage - Ed just barely escaped with his life. Now in his teens, he returns home; he doesn’t expect to find his father, still there, waiting for a chance to settle the score . . .", + "posterPath": "/WdTypYAKttmUPWMQ4uLzRS6Hye.jpg", + "backdropPath": "/ap6Mni6kKx0hMxkoPdGLObOEqjR.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "1985-01-04", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 5.098, + "voteCount": 133, + "popularity": 6.4588 + }, + { + "id": 735436, + "title": "The Argument", + "originalTitle": "The Argument", + "overview": "A couple get into an argument at their cocktail party that escalates until it brings an abrupt end to the festivities. They and their guests decide to re-create the entire night again and again to determine who was right.", + "posterPath": "/jq67d2UvbozXszkrLnGDzwnWSnu.jpg", + "backdropPath": "/42WRGuprCMHlUOeTWu2Vv4g6jNM.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-09-04", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 24, + "popularity": 6.4582 + }, + { + "id": 37793, + "title": "Ghosts", + "originalTitle": "Ghosts", + "overview": "In the town of Normal Valley, an eccentric magician named Maestro entertains the local children every day in his spooky mansion. One stormy night, the town's mayor leads a group of angry citizens to the mansion in an attempt to run Maestro out of town.", + "posterPath": "/aLMS2GWnJwkAADd8Dnl2dK1eg13.jpg", + "backdropPath": "/mYi8ZYtHaoEBSJU8pbOAjfATUtF.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 27 + ], + "genres": [ + "Music", + "Horror" + ], + "releaseDate": "1997-09-04", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8.013, + "voteCount": 268, + "popularity": 6.4581 + }, + { + "id": 71401, + "title": "The Sentinel", + "originalTitle": "La Sentinelle", + "overview": "A medical intern finds himself drawn into a world of international intrigue after discovering a shrunken human head in his luggage.", + "posterPath": "/jPveiKaj9ujkGbqfQLIHDetRkqW.jpg", + "backdropPath": "/4zFX1eWQlkkLSU2i3iHLz5oGvHA.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1992-05-20", + "releaseYear": "1992", + "originalLanguage": "fr", + "voteAverage": 6.5, + "voteCount": 38, + "popularity": 6.4578 + }, + { + "id": 78247, + "title": "Night Terrors", + "originalTitle": "Night Terrors", + "overview": "A woman visiting her father in Egypt becomes involved with the Marquis de Sade's descendant and his terrifying cult.", + "posterPath": "/1SJy6LdrlsxIE91ZGG1dFuzmRFg.jpg", + "backdropPath": "/wfToTS0NHtVD7Xf136gCZHuaLje.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1993-11-09", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 3.9, + "voteCount": 36, + "popularity": 6.4576 + }, + { + "id": 339964, + "title": "Valerian and the City of a Thousand Planets", + "originalTitle": "Valerian and the City of a Thousand Planets", + "overview": "In the 28th century, Valerian and Laureline are special operatives charged with keeping order throughout the human territories. On assignment from the Minister of Defense, the two undertake a mission to Alpha, an ever-expanding metropolis where species from across the universe have converged over centuries to share knowledge, intelligence, and cultures. At the center of Alpha is a mysterious dark force which threatens the peaceful existence of the City of a Thousand Planets, and Valerian and Laureline must race to identify the menace and safeguard not just Alpha, but the future of the universe.", + "posterPath": "/vlc95gl3PtrjxSEuM8RhTtSm2xU.jpg", + "backdropPath": "/5rYnygKCkmqWuMv1O5yAnzGF8gV.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 878, + 28 + ], + "genres": [ + "Adventure", + "Science Fiction", + "Action" + ], + "releaseDate": "2017-07-19", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.63, + "voteCount": 7777, + "popularity": 6.4575 + }, + { + "id": 283330, + "title": "Eden", + "originalTitle": "Eden", + "overview": "Paul, a teenager in the underground scene of early-nineties Paris, forms a DJ collective with his friends and together they plunge into the nightlife of sex, drugs, and endless music.", + "posterPath": "/uImYG8bSXIS66WdRJDl4qhVQQrv.jpg", + "backdropPath": "/hSeke0l21nBSxOCKldpjnYHqJda.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "2014-11-19", + "releaseYear": "2014", + "originalLanguage": "fr", + "voteAverage": 5.784, + "voteCount": 139, + "popularity": 6.4566 + }, + { + "id": 326415, + "title": "Headless", + "originalTitle": "Headless", + "overview": "In this \"lost slasher film from 1978,\" a masked killer wages an unrelenting spree of murder, cannibalism, and necrophilia. But when his tortured past comes back to haunt him, he plunges to even greater depths of madness and depravity, consuming the lives of a young woman and those she holds dear.", + "posterPath": "/yPMVb8HqCkWh9hVWbAVtBJEyGkV.jpg", + "backdropPath": "/idPUsCppKdSfbeuCKG5122UNqNw.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2015-02-28", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.479, + "voteCount": 47, + "popularity": 6.4562 + }, + { + "id": 53689, + "title": "Monopoly", + "originalTitle": "Monopol", + "overview": "Egil (Knut Agnred) is just an ordinary painter. But one day, when he's about to paint a fence, incredible stuff starts to happen!", + "posterPath": "/q7w3AR9vLNjToWh054QX97lOYWh.jpg", + "backdropPath": "/uyS4KgffOL5RxHZNYjOH4uTVGt7.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10402 + ], + "genres": [ + "Comedy", + "Music" + ], + "releaseDate": "1996-11-29", + "releaseYear": "1996", + "originalLanguage": "sv", + "voteAverage": 5.3, + "voteCount": 13, + "popularity": 6.4561 + }, + { + "id": 124117, + "title": "Pixel Perfect", + "originalTitle": "Pixel Perfect", + "overview": "Samantha's band, the Zettabytes, is meeting with little success, so her friend Roscoe uses his knowledge of technology designed by his father to create a holographic lead singer, Loretta Modern. The band instantly becomes successful, but Samantha begins to feel alienated, Roscoe discovers feelings for Samantha, and Loretta struggles with individuality.", + "posterPath": "/Apz1iXuiAUNArN7CLXGHNCuVeSn.jpg", + "backdropPath": "/yNjspaPkOJ6D6SvPry9ulxZrlpw.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 10770, + 878, + 35 + ], + "genres": [ + "Family", + "TV Movie", + "Science Fiction", + "Comedy" + ], + "releaseDate": "2004-11-13", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 85, + "popularity": 6.4554 + }, + { + "id": 321050, + "title": "The Miracle", + "originalTitle": "Mucize", + "overview": "1960s Turkey countryside. A newly assigned teacher finds out that the solitary village is missing a school. He gets fond of the village people and especially a disabled man. The teacher helps the village to build a new school and educate the children and the disabled man.", + "posterPath": "/baXozaGF8180QrZFuqlPrlLqCQc.jpg", + "backdropPath": "/gFJ9i3eANzMo8kpowofbFQMHJyV.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2015-01-01", + "releaseYear": "2015", + "originalLanguage": "tr", + "voteAverage": 7.1, + "voteCount": 119, + "popularity": 6.4553 + }, + { + "id": 1249385, + "title": "Ghost Game", + "originalTitle": "Ghost Game", + "overview": "As part of an internet challenge to live undetected in a stranger’s home, a daring couple target an infamous haunted house and endure a series of chilling incidents as they witness a family descending into madness.", + "posterPath": "/1P4h41vMPZMIFHgyoAsw2Em66D7.jpg", + "backdropPath": "/abHrSiDQzUVJi9opGuXiKamJkB5.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-10-18", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 3.9, + "voteCount": 32, + "popularity": 6.4547 + }, + { + "id": 462181, + "title": "Palm Swings", + "originalTitle": "Palm Swings", + "overview": "After moving to Palm Springs, a young married couple puts their love to the test when they discover that their neighbors are swingers.", + "posterPath": "/nZYTZ861wP2z4S7Bd2ZIwKFj241.jpg", + "backdropPath": "/sTuw5ARn1a795wtb63IFNxOddc1.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2017-10-03", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.927, + "voteCount": 55, + "popularity": 6.4542 + }, + { + "id": 25151, + "title": "Mutants", + "originalTitle": "Mutants", + "overview": "The greedy Braylon owns the Just Rite Sugar Company and has hired the unethical scientist Sergei to conduct an experiment to make an addictive sugar stronger than heroin or nicotine to increase his sales. Sergei uses invisible people as test subjects, like beggars, addicted junkies and illegals, in the clandestine Shadow Rock Mill. When Braylon's men mistakenly kidnap Ryan, who is the brother of his secretary Erin and son of his security chief Griff, and Hannah, the youngster becomes an important non-contaminated subject. However, Erin receives some mysterious e-mails from the unknown Cinderella with a picture of Ryan and a hint that he might be in Shadow Rock and together with her father, they decide to seek out Ryan.", + "posterPath": "/1I3MCEnL8MLej7pKGfosb4NFGtm.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 878 + ], + "genres": [ + "Action", + "Horror", + "Science Fiction" + ], + "releaseDate": "2008-10-31", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 2.9, + "voteCount": 17, + "popularity": 6.4534 + }, + { + "id": 776503, + "title": "CODA", + "originalTitle": "CODA", + "overview": "As a CODA (Child of Deaf Adults), Ruby is the only hearing person in her deaf family. When the family's fishing business is threatened, Ruby finds herself torn between pursuing her love of music and her fear of abandoning her parents.", + "posterPath": "/BzVjmm8l23rPsijLiNLUzuQtyd.jpg", + "backdropPath": "/v85FlkbMYKa5du1glm0YfYNsL2n.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402, + 10749 + ], + "genres": [ + "Drama", + "Music", + "Romance" + ], + "releaseDate": "2021-08-13", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 2430, + "popularity": 6.4525 + }, + { + "id": 197212, + "title": "Weekend, Italian Style", + "originalTitle": "L'Ombrellone", + "overview": "Manager Marletti goes to the sea to meet his wife Giuliana to spend the weekend with her and many friends. After three days Marletti comes back driving his car to Rome. So he can sleep, alone and happy, with silence around him.", + "posterPath": "/uvr3zLmbu3sZk4rWYe6v44WaeYd.jpg", + "backdropPath": "/joqi0YmLc31JvvX80xXQgfu8AbU.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1965-12-27", + "releaseYear": "1965", + "originalLanguage": "it", + "voteAverage": 6.5, + "voteCount": 28, + "popularity": 6.4522 + }, + { + "id": 384664, + "title": "Goodbye Berlin", + "originalTitle": "Tschick", + "overview": "Maik, a fourteen-year-old teenager, sets out on a road trip during summertime with Tschick, a new classmate, in a stolen car. The two share life changing experiences during the eventful journey.", + "posterPath": "/fMXPFsNFWgxi6NCmttI6GJq8pa8.jpg", + "backdropPath": "/kEHu88JMh9Zh4RYcgK7Lo2YZwdW.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2016-09-15", + "releaseYear": "2016", + "originalLanguage": "de", + "voteAverage": 6.648, + "voteCount": 328, + "popularity": 6.4521 + }, + { + "id": 9907, + "title": "Barnyard", + "originalTitle": "Barnyard", + "overview": "Otis is a mischievous, carefree Holstein cow who lives on a farm where, unbeknownst to humans, the animals are anthropomorphic. He prefers having fun with his best friends: Pip the mouse, Freddy the ferret, Peck the rooster, and Pig the pig - rather than following strict rules and accepting responsibility. This annoys his stern adoptive father Ben, the leader of the farm's community. One evening, Otis convinces Ben to cover his night watch so he can attend a massive party in the barn and impress Daisy, a pregnant cow who recently arrived at the farm with her best friend Bessy as a newcomer. As the animals party, Dag the coyote and his pack attempt to raid the chicken coop. Ben fends them off alone but is fatally wounded and killed. Otis must now learn the value of responsibility when he becomes the leader of his farm home's community.", + "posterPath": "/qB9jFInwUEb2VLhMeKQX17Vdrnp.jpg", + "backdropPath": "/eiU6of30k9VaXxYPq682VwM2D5q.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2006-08-04", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 1148, + "popularity": 6.4521 + }, + { + "id": 784500, + "title": "Pretty Guardian Sailor Moon Eternal the Movie Part 2", + "originalTitle": "劇場版 美少女戦士セーラームーンEternal 後編", + "overview": "While under the care of the Outer Sailor Guardians, Hotaru begins to age rapidly. Then, the time comes for all the Sailor Guardians to reunite!", + "posterPath": "/f91rtk8dODezNLT3grQrELyzFwA.jpg", + "backdropPath": "/fy51VW2GYTfvGJfBLkCNobE3HeL.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14, + 18 + ], + "genres": [ + "Animation", + "Action", + "Fantasy", + "Drama" + ], + "releaseDate": "2021-02-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 167, + "popularity": 6.4515 + }, + { + "id": 705996, + "title": "Decision to Leave", + "originalTitle": "헤어질 결심", + "overview": "From a mountain peak in South Korea, a man plummets to his death. Did he jump, or was he pushed? When detective Hae-joon arrives on the scene, he begins to suspect the dead man’s wife Seo-rae. But as he digs deeper into the investigation, he finds himself trapped in a web of deception and desire.", + "posterPath": "/N0rskx91Eh6aWjvBybeY6epNic.jpg", + "backdropPath": "/9K39idcJKYZNKCwMbsQCmOCJPzY.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648, + 10749 + ], + "genres": [ + "Thriller", + "Mystery", + "Romance" + ], + "releaseDate": "2022-06-29", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 7.329, + "voteCount": 1380, + "popularity": 6.4515 + }, + { + "id": 713059, + "title": "The Loop", + "originalTitle": "Pętla", + "overview": "A seeming coincidence makes the paths of a police officer Daniel and two twin brothers from Ukraine cross. Thanks to the information acquired from Zenia and Alex and their contacts with the local underworld, the young policeman is quickly promoted and becomes an officer of the Central Anticorruption Bureau.", + "posterPath": "/6HxCaKn8kEeFVoL7xbH7ipes0za.jpg", + "backdropPath": "/6J7TRUHbpb67snyDwgaGtKMO9NO.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "2020-09-04", + "releaseYear": "2020", + "originalLanguage": "pl", + "voteAverage": 3.8, + "voteCount": 33, + "popularity": 6.4503 + }, + { + "id": 11894, + "title": "Curly Sue", + "originalTitle": "Curly Sue", + "overview": "Bill is a penniless drifter who scams strangers out of just enough money to feed himself and his partner in crime, an orphan girl known as Curly Sue. Bill and Curly Sue target Grey, a yuppie lawyer, but their con takes an unexpected turn when the successful woman begins to like the ramshackle duo. But there's one problem—Grey's jealous, conniving boyfriend, Walker.", + "posterPath": "/cndkzlP5frVWxng5HLd4JvA2g2y.jpg", + "backdropPath": "/q0pAwUqY52QXdvQx1S8j530lPFZ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Family", + "Romance" + ], + "releaseDate": "1991-10-25", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 552, + "popularity": 6.4499 + }, + { + "id": 418667, + "title": "Dear Dictator", + "originalTitle": "Dear Dictator", + "overview": "When political turmoil forces a British-Caribbean dictator to flee his island nation, he seeks refuge and hides with a rebellious teenage girl in suburban America, and ends up teaching the young teen how to start a revolution and overthrow the \"mean girls\" in her high school.", + "posterPath": "/2YFCAAZUUpj66gLAMqRhwpY1U34.jpg", + "backdropPath": "/5G8PalDsnCuV0oB7HkeFyQQcfLE.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-03-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 160, + "popularity": 6.4497 + }, + { + "id": 656991, + "title": "Wild Indian", + "originalTitle": "Wild Indian", + "overview": "Decades after covering up his classmate’s murder, Michael has moved on from his reservation and fractured past. When a man who shares his violent secret seeks vengeance, Michael goes to great lengths to protect his new life with his wife and boss from the demons of his past.", + "posterPath": "/yhOpkNvgW1ZzmEpR4iqxKwKKShL.jpg", + "backdropPath": "/nVsafGz36BIbtkUWX6pZcZmebrW.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2021-09-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 45, + "popularity": 6.4495 + }, + { + "id": 11199, + "title": "Wild Hogs", + "originalTitle": "Wild Hogs", + "overview": "Restless and ready for an adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.", + "posterPath": "/qYyPCZcpNGZwbyBo1gwdCiW5hHC.jpg", + "backdropPath": "/es74vwJqbT6cwMdJmTeSIcjJjoo.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35 + ], + "genres": [ + "Action", + "Adventure", + "Comedy" + ], + "releaseDate": "2007-03-02", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.975, + "voteCount": 2378, + "popularity": 6.4494 + }, + { + "id": 1198754, + "title": "Carnage", + "originalTitle": "(Pri)sons", + "overview": "When an underground marketplace of illegal activities is besieged by an army of bloodthirsty assassins, a ragtag group of criminals must band together to fight for survival.", + "posterPath": "/nWII5qq7VPwgrHI4otsRWLsYyRb.jpg", + "backdropPath": "/kRoPqRW3kTcXyIEazet5zOsIwdF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2024-02-09", + "releaseYear": "2024", + "originalLanguage": "fi", + "voteAverage": 5.632, + "voteCount": 20, + "popularity": 6.4488 + }, + { + "id": 21259, + "title": "Testament", + "originalTitle": "Testament", + "overview": "It is just another day in the small town of Hamlin until something disastrous happens. Suddenly, news breaks that a series of nuclear warheads has been dropped along the Eastern Seaboard and, more locally, in California. As people begin coping with the devastating aftermath of the attacks — many suffer radiation poisoning — the Wetherly family tries to survive.", + "posterPath": "/zmxebm8KEYWzeH5YEisr8lDzW9R.jpg", + "backdropPath": "/teBOQUIRnsSNVX7cZzb07Kvyw8F.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878 + ], + "genres": [ + "Drama", + "Science Fiction" + ], + "releaseDate": "1983-11-04", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 131, + "popularity": 6.4484 + }, + { + "id": 11618, + "title": "The Haunting", + "originalTitle": "The Haunting", + "overview": "Dr. David Marrow invites three distinct individuals to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Marrow is far more interested in the sinister mansion itself — and they soon see the true nature of its horror.", + "posterPath": "/xwLldS5JnB4441iS50ha9ZrkaA8.jpg", + "backdropPath": "/acloCJG7yIvM8M8lh6GuuohlGJR.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 14, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Fantasy", + "Mystery" + ], + "releaseDate": "1999-07-23", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.475, + "voteCount": 1450, + "popularity": 6.4482 + }, + { + "id": 34843, + "title": "Hawking", + "originalTitle": "Hawking", + "overview": "The story of Professor Stephen Hawking's early years. It is 1963, and our young cosmologist celebrates his 21st birthday. At the party is a new friend, Jane Wilde - there is a strong attraction between the two. Jane is intrigued by Stephen's talk of stars and the Universe. But she realises that there is something very wrong when Stephen suddenly finds that he is unable to stand up.", + "posterPath": "/zqQZ050fNDnKzRWTo6Q0iLdDLMs.jpg", + "backdropPath": "/gYekT5QeTM47iWT555JQrEbRNmv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770 + ], + "genres": [ + "Drama", + "TV Movie" + ], + "releaseDate": "2004-12-10", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 156, + "popularity": 6.4473 + }, + { + "id": 414, + "title": "Batman Forever", + "originalTitle": "Batman Forever", + "overview": "Batman faces off against two foes: the schizophrenic, horribly scarred former District Attorney Harvey Dent, aka Two-Face, and the Riddler, a disgruntled ex-Wayne Enterprises inventor seeking revenge against his former employer by unleashing his brain-sucking weapon on Gotham City's residents. As the caped crusader also copes with tortured memories of his parents' murder, he has a new romance, with psychologist Chase Meridian.", + "posterPath": "/i0fJS8M5UKoETjjJ0zwUiKaR8tr.jpg", + "backdropPath": "/snlu32RmjldF9b068UURJg8sQtn.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 14 + ], + "genres": [ + "Action", + "Crime", + "Fantasy" + ], + "releaseDate": "1995-06-16", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 5.448, + "voteCount": 5419, + "popularity": 6.4465 + }, + { + "id": 467431, + "title": "Get Big", + "originalTitle": "Get Big", + "overview": "Inspired by somewhat true events, \"Get Big\" follows the misadventures of two friends as they reconnect to attend a high school classmate's wedding. Alec is the charming troublemaker, while Nate provides the neurotic and awkward foil to his friend's unpredictable antics. \"Get Big\" takes place over the course of a crazy 24-hour period during which Alec and Nate cross paths with oddball cops, curmudgeonly neighbors, drug dealers, psychopaths, escorts and pretty girls, all while the clock ticks down their classmate's big moment.", + "posterPath": "/vXNnfu6oQSSir8qi9jFq9WqwM8T.jpg", + "backdropPath": "/qfD9FqHE0lm4AeinjUcIxZfuLh6.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-09-01", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 14, + "popularity": 6.4455 + }, + { + "id": 36971, + "title": "Whisky", + "originalTitle": "Whisky", + "overview": "When his long-lost brother resurfaces, Jacobo, desperate to prove his life has added up to something, looks to scrounge up a wife. He turns to Marta, an employee at his sock factory, with whom he has a prickly relationship.", + "posterPath": "/zteglNK16wK8kGD74J4npQyCUBl.jpg", + "backdropPath": "/9uZUSc8S2BlwNKkES4QRwxh9IXm.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2004-08-06", + "releaseYear": "2004", + "originalLanguage": "es", + "voteAverage": 6.9, + "voteCount": 89, + "popularity": 6.4446 + }, + { + "id": 30881, + "title": "The Washing Machine", + "originalTitle": "Vortice mortale", + "overview": "Three sisters - voluptuous Vida, Maria (nicknamed \"Sissy\"), and Ludmilla - live together in a run-down apartment building in Budapest. The sisters all vie for the attentions of Yuri Petkov, a dubious middle-aged pimp who plays them off against each other. One evening, Ludmilla claims to have found Yuri's body stuffed into their washing machine, but when Inspector Stacev arrives to investigate the body has disappeared. The good-looking young inspector attempts to discover the truth but in doing so becomes drawn into the sisters' bizarre sex games...", + "posterPath": "/4L5RHrQAJwRCDyRrlyqdMqeMCF5.jpg", + "backdropPath": "/1miArLEKKRtr0fRzSgUbfFxwk8B.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 27 + ], + "genres": [ + "Drama", + "Thriller", + "Horror" + ], + "releaseDate": "1993-01-01", + "releaseYear": "1993", + "originalLanguage": "it", + "voteAverage": 4.9, + "voteCount": 19, + "popularity": 6.4445 + }, + { + "id": 901251, + "title": "Rose", + "originalTitle": "Rose", + "overview": "Over the course of a week, sisters Inger and Ellen find their relationship challenged on a highly anticipated coach trip to Paris. Inger reveals her struggles with schizophrenia to the group, receiving both pity and discrimination. On arrival, it soon becomes clear that Inger has a hidden agenda concerning a figure from her past, ultimately involving the entire group in her hunt for answers.", + "posterPath": "/ewzE98Ajsk92rZQIxAOUHFLIJku.jpg", + "backdropPath": "/tlaVzavuphwLHEgHCxzc1Fn3Z5S.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-02-24", + "releaseYear": "2022", + "originalLanguage": "da", + "voteAverage": 7.645, + "voteCount": 31, + "popularity": 6.4442 + }, + { + "id": 10588, + "title": "The Cat in the Hat", + "originalTitle": "The Cat in the Hat", + "overview": "During a rainy day, and while their mother is out, Conrad and Sally, and their pet fish, are visited by the mischievous Cat in the Hat. Fun soon turns to mayhem, and the siblings must figure out how to rid themselves of the maniacal Cat.", + "posterPath": "/uYYLz67e5xEQMsY858VSSCDsLU6.jpg", + "backdropPath": "/au236RSArVTOMXM6AXVNBPZEKNb.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 14 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Fantasy" + ], + "releaseDate": "2003-11-21", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 1744, + "popularity": 6.4441 + }, + { + "id": 374461, + "title": "Mr. Church", + "originalTitle": "Mr. Church", + "overview": "A unique friendship develops when a little girl and her dying mother inherit a cook - Mr. Church. What begins as an arrangement that should only last six months, instead spans fifteen years.", + "posterPath": "/5fCfZEQwcbuqVPyMu7pN5XNpK5V.jpg", + "backdropPath": "/y6jpd3c1UFoouBmIVWZMCGVyQmS.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-09-16", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 498, + "popularity": 6.444 + }, + { + "id": 30713, + "title": "Shiver", + "originalTitle": "Eskalofrío", + "overview": "Santi, a young high-school student with a serious physical reaction to sunlight, is forced by his health to move with his single mother to a shadowy, isolated village in the mountains of Spain where the inhabitants begin to reveal themselves as strangely xenophobic. When terrible, violent events begin to occur, Santi becomes first a pariah at school and then strongly suspected by the police of hideous murders. Santi himself, however, wonders if he is not the next victim.", + "posterPath": "/mDwh6cUbDMN0jIBmyHpmMag1g5a.jpg", + "backdropPath": "/tYB710df8h0E6cm2xHLlfno0V8s.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2008-02-08", + "releaseYear": "2008", + "originalLanguage": "es", + "voteAverage": 6.2, + "voteCount": 93, + "popularity": 6.4434 + }, + { + "id": 44663, + "title": "Moscow Chill", + "originalTitle": "Moscow Chill", + "overview": "Trouble seems to find Ray Perso, or maybe he just looks for it. First he's busted for hacking Manhattan's ATM banking system - sending twenties flying on every street corner. Then he's sprung from the Computer Rehab by a Russian gangster and smuggled to Moscow to work for an imprisoned \"businessman\". Maneuvering his way through the chaotic and violent Moscow Underworld, Ray finds love. But, his bliss is short-lived when he finds out someone has 40 million reasons to want him dead!", + "posterPath": "/pokCDSLl1Afz9SRIeruNm4FkIgB.jpg", + "backdropPath": "/r2TwcZqkFe9OAdYlctVco57iNoN.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2007-10-18", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 3.3, + "voteCount": 12, + "popularity": 6.4427 + }, + { + "id": 24182, + "title": "Dearest Relatives, Poisonous Relations", + "originalTitle": "Parenti serpenti", + "overview": "During the annual Christmas gathering at the family home, the parents surprise their children by announcing their decision to move in with one of them and pass on the house.", + "posterPath": "/tDksTwkXNSTx7aO7cqG3oAZSO9X.jpg", + "backdropPath": "/5PDHWBBCwFplGFIb9VS57D5Hfku.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1992-03-26", + "releaseYear": "1992", + "originalLanguage": "it", + "voteAverage": 7.36, + "voteCount": 340, + "popularity": 6.442 + }, + { + "id": 3010, + "title": "The Cardinal", + "originalTitle": "The Cardinal", + "overview": "A young Catholic priest from Boston confronts bigotry, Nazism, and his own personal conflicts as he rises to the office of cardinal.", + "posterPath": "/y23FoRE97IH9bHFo2OBP5IkKnLq.jpg", + "backdropPath": "/qmSndmoRi5s3F4zTZpVvBIYcmTc.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 10752 + ], + "genres": [ + "Drama", + "History", + "War" + ], + "releaseDate": "1963-12-12", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 44, + "popularity": 6.4416 + }, + { + "id": 1106213, + "title": "Wolf Mountain", + "originalTitle": "Wolf Mountain", + "overview": "Aj and his brother revisit the spot where their parents were killed. But legend has it there is something mysterious roaming these woods.", + "posterPath": "/gRBsjarhPCNv0budtWKEKT5eNjw.jpg", + "backdropPath": "/qvI6vGLhf2VO3xWBKLP4wwuK6w2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27 + ], + "genres": [ + "Action", + "Horror" + ], + "releaseDate": "2022-09-20", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.357, + "voteCount": 35, + "popularity": 6.4412 + }, + { + "id": 25666, + "title": "Frog Dreaming", + "originalTitle": "Frog Dreaming", + "overview": "American boy Cody lives in Australia with his guardian, Gaza. Cody is very imaginative, inventive and inquisitive. He comes accross some strange events happening in Devil's Knob national park associated with an aboriginal myth about \"frog dreamings\". Cody tries to investigate...", + "posterPath": "/7S0VFsQw0QDQ2QeEPLtSFxQZ76C.jpg", + "backdropPath": "/jhUg1Q2mBddGGt5BpAlmQHNFKdi.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 12, + 10751 + ], + "genres": [ + "Drama", + "Adventure", + "Family" + ], + "releaseDate": "1986-05-01", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5.539, + "voteCount": 51, + "popularity": 6.4412 + }, + { + "id": 277558, + "title": "Final Girl", + "originalTitle": "Final Girl", + "overview": "Veronica, the new girl in town, is lured into the woods by a group of senior boys looking to make her a victim. But the boys don't know that Veronica's been trained to handle herself in surprisingly lethal ways.", + "posterPath": "/7liOzGi6DNESPv5gFC7g6mpqBSK.jpg", + "backdropPath": "/9gCbfeAs2TbAlEnfSxJrJrZoCj9.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2015-04-14", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.252, + "voteCount": 719, + "popularity": 6.4401 + }, + { + "id": 1058949, + "title": "Little Dixie", + "originalTitle": "Little Dixie", + "overview": "Erstwhile Special Forces operative Doc Alexander is asked to broker a truce with the Mexican drug cartel in secrecy. When Oklahoma Governor Richard Jeffs celebrates the execution of a high-ranking cartel member on TV, his Chief of Staff and Doc inform him about the peace he just ended. But it’s too late, as Cuco, the cartel’s hatchet man, has set his vengeful sights on Doc’s daughter Dixie.", + "posterPath": "/cmWTZj9zzT9KFt3XyL0gssL7Ig8.jpg", + "backdropPath": "/bvAMLx00BOr6vkSQWZscwGrPdGI.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53, + 18 + ], + "genres": [ + "Action", + "Crime", + "Thriller", + "Drama" + ], + "releaseDate": "2023-02-03", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.814, + "voteCount": 153, + "popularity": 6.4392 + }, + { + "id": 1015957, + "title": "Homestead", + "originalTitle": "Homestead", + "overview": "A family of homesteaders taken captive by a gang of outlaws. Their survival comes to rest in the hands of Irene: a loud-mouthed 12-year-old girl who's got an uncanny knack for shooting guns.", + "posterPath": "/aibubaLT6ihRtKEraGBDU82w8aA.jpg", + "backdropPath": "/dzQsXr8rpA0cuK7h1R0LKvczJS1.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 37 + ], + "genres": [ + "Horror", + "Thriller", + "Western" + ], + "releaseDate": "2023-03-03", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 17, + "popularity": 6.4392 + }, + { + "id": 464038, + "title": "Mobile Suit Gundam: The 08th MS Team - Miller's Report", + "originalTitle": "機動戦士ガンダム 第08MS小隊 ミラーズ・リポート", + "overview": "Universal Century 0079. The One Year War rages on, and Shiro Amada and his unit, the 08th MS team, continue their struggle against Zeon forces in the jungles of Southeast Asia. But recent events have put them under close scrutiny by Federation leaders. Alice Miller, an officer of the Federation Intelligence Division, has been dispatched to ascertain the truth behind a series of events leading to the capture of a new enemy mobile armor. As she begins her investigation, the lines between Federation and Zeon become blurred. Is there really a spy among the 08th MS team?", + "posterPath": "/fdFxuckun446PsbjhfeunhgKeLF.jpg", + "backdropPath": "/8UJyroVyYcVgkEdpIbT0E3Vi9Lj.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878, + 10752 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction", + "War" + ], + "releaseDate": "1998-08-01", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 6.4392 + }, + { + "id": 85101, + "title": "Undercurrent", + "originalTitle": "Brim", + "overview": "The crew on board the fishing vessel Undercurrent RE 29 has become uncomfortably numb with its never ending routine of week long tours at sea. Then, during one dark and dreary night this routine is shaken to its foundation when one of the most solid crew members commits suicide. To fill his gap, a young woman takes his place on the next tour and gradually the fragile balance is tipped, and personal issues that should be left on the mainland cause dangerous friction between the crew members", + "posterPath": "/7V0jkxsPbw2YEzjEbheAV8URLzO.jpg", + "backdropPath": "/kYb9zgQ34Fzbh1qkouxzJwAcMUt.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-09-05", + "releaseYear": "2010", + "originalLanguage": "is", + "voteAverage": 7.1, + "voteCount": 10, + "popularity": 6.4391 + }, + { + "id": 215760, + "title": "New Eden", + "originalTitle": "New Eden", + "overview": "Prisoners are dumped on a sand planet dubbed Earth 21-523 where most are immediately killed by the sand people and the remainder struggle for existence. That is until a new prisoner arrives with ideas of providing irrigation of the desert. But he still must first fight the nomadic sand people.", + "posterPath": "/ju6gadJFQT2JwuzWYwu8B1ya6zM.jpg", + "backdropPath": "/nT4gifDIvsfr1uCUajrYs06yBiD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 10770 + ], + "genres": [ + "Action", + "Science Fiction", + "TV Movie" + ], + "releaseDate": "1994-11-28", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 3.9, + "voteCount": 11, + "popularity": 6.4386 + }, + { + "id": 614930, + "title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", + "originalTitle": "Teenage Mutant Ninja Turtles: Mutant Mayhem", + "overview": "After years of being sheltered from the human world, the Turtle brothers set out to win the hearts of New Yorkers and be accepted as normal teenagers through heroic acts. Their new friend April O'Neil helps them take on a mysterious crime syndicate, but they soon get in over their heads when an army of mutants is unleashed upon them.", + "posterPath": "/kbnhvFPyXKCKLNhg1pkz6rXQ4Le.jpg", + "backdropPath": "/2Cpg8hUn60PK9CW9d5SWf605Ah8.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 28, + 878 + ], + "genres": [ + "Animation", + "Comedy", + "Action", + "Science Fiction" + ], + "releaseDate": "2023-07-31", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.213, + "voteCount": 1497, + "popularity": 6.438 + }, + { + "id": 866678, + "title": "Furioza", + "originalTitle": "Furioza", + "overview": "A policewoman makes her ex-boyfriend an offer he can't refuse: either he infiltrates and informs on a gang of hooligans, or his brother goes to jail.", + "posterPath": "/sSIo1vG0IILxzHkLKmtFEoTbVE9.jpg", + "backdropPath": "/4G7216ezKodauyP7cvNswiEf33k.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "2021-10-22", + "releaseYear": "2021", + "originalLanguage": "pl", + "voteAverage": 6.312, + "voteCount": 197, + "popularity": 6.4376 + }, + { + "id": 432364, + "title": "The Covenant", + "originalTitle": "The Covenant", + "overview": "After the tragic deaths of her husband and daughter, Sarah Doyle moves back to her childhood home with her estranged brother, Richard. It's not long before Sarah begins to experience supernatural phenomena of a violent and hostile nature.", + "posterPath": "/wsd4dWaVklbdYPWHl7eGbKRAODv.jpg", + "backdropPath": "/aIAf3hizMPFsuDd9kJgsGZNhsjv.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2017-02-07", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.439, + "voteCount": 33, + "popularity": 6.4376 + }, + { + "id": 83388, + "title": "American Translation", + "originalTitle": "American Translation", + "overview": "From the moment they meet, brooding Chris and the beautiful Aurore fall instantly and passionately in love but it's not long before their intense connection is consumed by Chris's dark obsession with gay men. Before long, the pair embarks on a violent and sexual journey filled with seduction and destruction of young gay hustlers.", + "posterPath": "/ji5F1gQ3FCq8ze5PiIzW6xFjPEF.jpg", + "backdropPath": "/yj36lc8SFtGR4la9sAfQafx3ZPx.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2011-06-07", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 33, + "popularity": 6.4376 + }, + { + "id": 35297, + "title": "Daisy Diamond", + "originalTitle": "Daisy Diamond", + "overview": "A tragic story about Anna who dreams of one thing only: making it as an actress. She moves from Sweden to Copenhagen to pursue her dream. But fate has something else in store for her. Though she struggles to give her 4-month-old daughter a good start in life, she ultimately fails to unite her dream of acting with a safe and loving environment for her child, culminating in a desperate act that has fatal consequences for Anna and her daughter.", + "posterPath": "/deiYoL49RvZ6PLTlkC5wiHtFRyY.jpg", + "backdropPath": "/aDYpxTWadpqOjYkZgmJNRmtSXq1.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-11-23", + "releaseYear": "2007", + "originalLanguage": "da", + "voteAverage": 5.698, + "voteCount": 53, + "popularity": 6.4372 + }, + { + "id": 1071215, + "title": "Thanksgiving", + "originalTitle": "Thanksgiving", + "overview": "After a Black Friday riot ends in tragedy, a mysterious Thanksgiving-inspired killer terrorizes Plymouth, Massachusetts - the birthplace of the holiday. Picking off residents one by one, what begins as random revenge killings are soon revealed to be part of a larger, sinister holiday plan.", + "posterPath": "/f5f3TEVst1nHHyqgn7Z3tlwnBIH.jpg", + "backdropPath": "/ktHEdqmMWC1wdfPRMRCTZe2OISL.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2023-11-16", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.493, + "voteCount": 1468, + "popularity": 6.4371 + }, + { + "id": 244403, + "title": "Rudderless", + "originalTitle": "Rudderless", + "overview": "A grieving father in a downward spiral stumbles across a box of his recently deceased son's demo tapes and lyrics. Shocked by the discovery of this unknown talent, he forms a band in the hope of finding some catharsis.", + "posterPath": "/ka3gEmHph5FTJouSdOOK02Ck6bx.jpg", + "backdropPath": "/aSrP7Xmk4EDL1iqWX2cbtnXqmT7.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18, + 35 + ], + "genres": [ + "Music", + "Drama", + "Comedy" + ], + "releaseDate": "2014-10-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 330, + "popularity": 6.4371 + }, + { + "id": 277153, + "title": "The Surprise", + "originalTitle": "De Surprise", + "overview": "An eccentric multimillionaire signs an agreement to have his life ended. While selecting his coffin he meets a young woman who has signed up for the same arrangement. Trouble ensues when the couple falls in love and wishes to get out of the contract.", + "posterPath": "/jkmEqQDevQwdI7NRfC7d5mnUkJ8.jpg", + "backdropPath": "/z0O8nsZ9b51cgYvQuL5EwPxJWlN.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2015-05-21", + "releaseYear": "2015", + "originalLanguage": "nl", + "voteAverage": 6.8, + "voteCount": 70, + "popularity": 6.4364 + }, + { + "id": 32528, + "title": "Spartacus", + "originalTitle": "Spartacus", + "overview": "Sentenced to spend out the rest of his adult life laboring in the harsh deserts of Egypt, the Thracian slave Spartacus gets a new lease on life when he is purchased by the obese owner of a Roman gladiator school. Moved by the defiance of an Ethiopian warrior, Draba, Spartacus leads a slave uprising which threatens Rome's status quo. As Spartacus gains sympathy within the Roman Senate, he also makes a powerful enemy in form of Marcus Lucinius Crassus, who makes it a matter of personal honor to crush the rebellion.", + "posterPath": "/4qDIb9K9qLxCVT8cKGt5YrF54Xb.jpg", + "backdropPath": "/9vmV4vowql7e2WNcPcZzn1iGR66.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2004-03-17", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 77, + "popularity": 6.4364 + }, + { + "id": 19899, + "title": "Couples Retreat", + "originalTitle": "Couples Retreat", + "overview": "Four couples, all friends, descend on a tropical island resort. Though one husband and wife are there to work on their marriage, the others just want to enjoy some fun in the sun. They soon find, however, that paradise comes at a price: Participation in couples therapy sessions is mandatory. What started out as a cut-rate vacation turns into an examination of the common problems many face.", + "posterPath": "/igXVSRZsNX3TZsKrQqSyEJvzHRF.jpg", + "backdropPath": "/uKrfP5T5EwlR5RPGDEbFzDSaljJ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2009-09-19", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.552, + "voteCount": 2040, + "popularity": 6.4361 + }, + { + "id": 11837, + "title": "Watership Down", + "originalTitle": "Watership Down", + "overview": "When the warren belonging to a community of rabbits is threatened, a brave group led by Fiver, Bigwig, Blackberry and Hazel leave their homeland in a search of a safe new haven.", + "posterPath": "/q9ZcNxfquJbMTd6UfhAlJbmLBts.jpg", + "backdropPath": "/AaWRVwgcrclhAgVNy7zXH7itSRF.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 18 + ], + "genres": [ + "Adventure", + "Animation", + "Drama" + ], + "releaseDate": "1978-10-14", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 670, + "popularity": 6.4355 + }, + { + "id": 29856, + "title": "Hollywood Boulevard", + "originalTitle": "Hollywood Boulevard", + "overview": "A Midwestern ingenue arrives in Hollywood to try her luck as an actress. An incompetent agent hooks her up with a production company which specializes in low budget B-movie fair, which starts being plagued by strange, deadly accidents.", + "posterPath": "/fPvzlPpaXcnj8QmQjqevyxZNcVi.jpg", + "backdropPath": "/2fWPR6YBv4M6xcYkoiS7OAhDUzw.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53 + ], + "genres": [ + "Comedy", + "Thriller" + ], + "releaseDate": "1976-04-25", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 43, + "popularity": 6.4354 + }, + { + "id": 382127, + "title": "Manifesto", + "originalTitle": "Manifesto", + "overview": "An edited version of Rosefeldt's installation work of the same name, Manifesto is an outstanding tribute to various (art) manifestos of the nineteenth and twentieth century, ranging from Communism to Dogme, in connection with thirteen different characters, including a homeless man, a factory worker and a corporate CEO, who are all played by Cate Blanchett. A striking humorous audio-visual experience.", + "posterPath": "/eszm6c7GxD0ztbRQpqkG04P8iui.jpg", + "backdropPath": "/1jSXnWo7Nyh264EyxsUrZz3vqWS.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-05-10", + "releaseYear": "2017", + "originalLanguage": "de", + "voteAverage": 6.819, + "voteCount": 166, + "popularity": 6.4342 + }, + { + "id": 369524, + "title": "The Comedian", + "originalTitle": "The Comedian", + "overview": "An aging comic icon, Jackie Burke, has seen better days. Despite his efforts to reinvent himself and his comic genius, the audience only wants to know him as the former television character he once played. Already a strain on his younger brother and his wife, Jackie is forced to serve out a sentence doing community service for accosting an audience member. While there, he meets Harmony, the daughter of a sleazy Florida real estate mogul, and the two find inspiration in one another, resulting in surprising consequences.", + "posterPath": "/jR7PZd7K0dFT6oL9qhbSsiJXDsR.jpg", + "backdropPath": "/3iUXvjXJPBzbAajLzztETZebpuY.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-12-09", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.71, + "voteCount": 167, + "popularity": 6.4342 + }, + { + "id": 250572, + "title": "Break Point", + "originalTitle": "Break Point", + "overview": "Jimmy Price is a reckless man-child on the last leg of his career as a doubles tennis player. When his latest partner drops him, he realizes he's officially burned all of his bridges on the pro circuit. He decides to make one last ditch effort to revive his career, reaching outside of the tennis world and convincing his childhood partner -- his estranged brother Darren, now an apathetic substitute teacher - to team up with him. The mismatched pair, with the help of a unique 11-year-old named Barry, make an unlikely run at a grand slam tournament and are forced to re-discover their game, and their brotherhood.", + "posterPath": "/vJFAg3vc2s9aHV14CWirg3JNFOQ.jpg", + "backdropPath": "/wMlPXoZbD3AZbVrRZZYK0qDW9cf.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-03-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.77, + "voteCount": 63, + "popularity": 6.434 + }, + { + "id": 631021, + "title": "Deviant Love", + "originalTitle": "Deviant Love", + "overview": "In a tailspin after her marriage collapses, Jamie falls for a helpful gentleman whose interest in her welfare hides sinister motives.", + "posterPath": "/xGzsO8L7ymsR4SJXPG9SJRTSxtm.jpg", + "backdropPath": "/tauCvw0TPUufukCyvRkss0KfVHX.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10770 + ], + "genres": [ + "Thriller", + "TV Movie" + ], + "releaseDate": "2019-09-13", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.208, + "voteCount": 12, + "popularity": 6.4337 + }, + { + "id": 466874, + "title": "Mother", + "originalTitle": "Madre", + "overview": "An everyday conversation between Marta and her mother turns into a tragic race against the clock when Marta receives a phone call from Iván, her six-year-old son, who is on holiday in France with his father.", + "posterPath": "/gGokZWQnHi69P2frwsIeyWwnvg8.jpg", + "backdropPath": "/qLQweUIipnaxEyywRfEhVUzNhBV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2017-03-10", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 6.926, + "voteCount": 81, + "popularity": 6.4333 + }, + { + "id": 79550, + "title": "Rogue River", + "originalTitle": "Rogue River", + "overview": "When a young woman takes a trip down Rogue River, her car mysteriously disappears. Lost without transport or communication, she accepts the hospitality of a stranger who offers her shelter for the night at his cabin. With no other options available, she reluctantly accepts only to forever regret it. The ensuing hours yield nothing but torture, indescribable pain, and horrific agony. If you've seen Misery, you've seen nothing. This movie starts where horror films end and leaves viewers paralysed by fear and disgust.", + "posterPath": "/qQ2dHxeS3PtBfwciQZXGxjlZoEK.jpg", + "backdropPath": "/iAtwS8g7kJ2A9ryJLCM5CNOmbJB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2012-01-16", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 4.806, + "voteCount": 85, + "popularity": 6.4331 + }, + { + "id": 39489, + "title": "Solitary Fragments", + "originalTitle": "La soledad", + "overview": "Adela and her baby move to Madrid in search of a new start after a tough separation. Antonia is a shop owner with three adult daughters. The film is divided into five chapters revolving around their health, work, relationships and money.", + "posterPath": "/gWnmLBW72Z3bBWcg3YAPZSViNja.jpg", + "backdropPath": "/ttWCXpqDLPMfc2r871iQQzsCriY.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-06-01", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 5.8, + "voteCount": 22, + "popularity": 6.4331 + }, + { + "id": 25585, + "title": "Falkenberg Farewell", + "originalTitle": "Farväl Falkenberg", + "overview": "The last summer the five boys are together in Falkenberg. They are now grown up to be young men, on their way out into the world. At least most of them.", + "posterPath": "/pPvk2JRFTuJVrOt7TktQwZlyozV.jpg", + "backdropPath": "/w5q7ELMzKgRw53hhOjJcDYPYZyt.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-09-22", + "releaseYear": "2006", + "originalLanguage": "sv", + "voteAverage": 6.121, + "voteCount": 33, + "popularity": 6.4321 + }, + { + "id": 156094, + "title": "Blue Blood", + "originalTitle": "Blue Blood", + "overview": "A debauched young aristocrat entrusts the running of his country house to Tom, the butler, on whom he depends absolutely. Before long the servant begins to dominate his master, to the alarm of the newly hired German nanny who senses sinister, demonic intent in Tom's control of the house.", + "posterPath": "/cNHUUcrQj6WMrOwnomKmQs4ywMS.jpg", + "backdropPath": "/xjyWFtXV8lQGq1Isp8HXfwRDr94.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "1974-11-01", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 4, + "voteCount": 11, + "popularity": 6.4317 + }, + { + "id": 17961, + "title": "Torment", + "originalTitle": "L'Enfer", + "overview": "Forced to work extremely hard to keep things afloat, Paul begins hearing voices in his head questioning his past choices. Convinced that his wife has been unfaithful, he begins to see every male guest as a potential threat. What follows is Paul's downward spiral into the madness of deranged jealousy where he finally discovers that hell is not a state of mind – hell is himself.", + "posterPath": "/cW9BUIVQacmt58hcI6RrSLl2QGT.jpg", + "backdropPath": "/2rYgtckajPftIqpJxzVy7nfnlY0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1994-02-16", + "releaseYear": "1994", + "originalLanguage": "fr", + "voteAverage": 6.8, + "voteCount": 261, + "popularity": 6.4315 + }, + { + "id": 187017, + "title": "22 Jump Street", + "originalTitle": "22 Jump Street", + "overview": "After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.", + "posterPath": "/850chzYHYbT3IISl6Q7dbBuFP2B.jpg", + "backdropPath": "/kdyYOwpKvvD2fSbwfnMM2YPAzfq.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 28 + ], + "genres": [ + "Crime", + "Comedy", + "Action" + ], + "releaseDate": "2014-06-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.83, + "voteCount": 8266, + "popularity": 6.4314 + }, + { + "id": 1215020, + "title": "American Sweatshop", + "originalTitle": "American Sweatshop", + "overview": "A content moderator is tasked with purging offensive media from the internet. When she witnesses a crime in a video, she is lured away from the safety of her keyboard as she obsessively seeks to hold someone accountable.", + "posterPath": "/zUXz9LHeU82S3n2pJhiEifOOei5.jpg", + "backdropPath": "/y8vFE8zsOJkUud6ea0uVaOVPo6y.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 17, + "popularity": 6.4297 + }, + { + "id": 67729, + "title": "Doom Asylum", + "originalTitle": "Doom Asylum", + "overview": "A demented former lawyer uses autopsy equipment to kill off the teenagers who trespass on the long-abandoned asylum he inhabits. Filmed on location in an actual abandoned asylum.", + "posterPath": "/3JF6jxFpg7vJftePtIBy42F8p0v.jpg", + "backdropPath": "/3ShPhAcdczflovQszzKXxn5iHJP.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "1988-03-02", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.232, + "voteCount": 82, + "popularity": 6.4277 + }, + { + "id": 724495, + "title": "The Woman King", + "originalTitle": "The Woman King", + "overview": "The story of the Agojie, the all-female unit of warriors who protected the African Kingdom of Dahomey in the 1800s with skills and a fierceness unlike anything the world has ever seen, and General Nanisca as she trains the next generation of recruits and readies them for battle against an enemy determined to destroy their way of life.", + "posterPath": "/438QXt1E3WJWb3PqNniK0tAE5c1.jpg", + "backdropPath": "/v4YV4ne1nwNni35iz4WmpZRZpCD.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 36 + ], + "genres": [ + "Action", + "Drama", + "History" + ], + "releaseDate": "2022-09-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.635, + "voteCount": 2273, + "popularity": 6.4276 + }, + { + "id": 456740, + "title": "Hellboy", + "originalTitle": "Hellboy", + "overview": "Hellboy comes to England, where he must defeat Nimue, Merlin's consort and the Blood Queen. But their battle will bring about the end of the world, a fate he desperately tries to turn away.", + "posterPath": "/bk8LyaMqUtaQ9hUShuvFznQYQKR.jpg", + "backdropPath": "/djiDKVB07xTy7tDFbWb9k7KLI3E.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 28, + 12 + ], + "genres": [ + "Fantasy", + "Horror", + "Action", + "Adventure" + ], + "releaseDate": "2019-04-10", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 3602, + "popularity": 6.4272 + }, + { + "id": 116695, + "title": "Killer Housewives", + "originalTitle": "Marujas asesinas", + "overview": "In Madrid, Azu's husband Filipe is smug and boorish, but it's his money she slips to family members constantly in need of cash and that she uses to buy gifts for her lover, Pablo. Things start to fall apart when Pablo wants to leave her and when Filipe wants to evict Azu's cousin from a butcher shop he rents. Azu hatches a plan that relies on her sister, her cousin the butcher, and his mentally-challenged delivery man. When things start to go wrong, can Azu make them right?", + "posterPath": "/sK8zRljKJ4SNxDOaT4A31WCNMdI.jpg", + "backdropPath": "/7SThlFFUp8qMdf53qkfks192PHL.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53 + ], + "genres": [ + "Comedy", + "Thriller" + ], + "releaseDate": "2001-08-24", + "releaseYear": "2001", + "originalLanguage": "es", + "voteAverage": 5.9, + "voteCount": 16, + "popularity": 6.4268 + }, + { + "id": 32074, + "title": "Company Business", + "originalTitle": "Company Business", + "overview": "An aging agent is called back by \"the Company\" to run a hostage trade of a Soviet spy for an American agent.", + "posterPath": "/vwWexi2O70Efr4MkckbxjeIgchb.jpg", + "backdropPath": "/yVm5jUCGeECsVh719kW6or9C2ee.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1991-09-06", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 74, + "popularity": 6.4267 + }, + { + "id": 25713, + "title": "Animals", + "originalTitle": "Animals", + "overview": "Syd Jarrett is an unsuspecting, down-and-out man in a washed-up hick town who gets pulled into a sub-culture of blood-hungry creatures. He encounters Vic, a renegade whose animal instincts are stronger than his human ones. As things begin to get even worse, Jarrett realizes that his best chance for happiness, and survival, lies in his true love for Jane.", + "posterPath": "/2HUP1vWpWYZLCJ94qcykZ07v3lb.jpg", + "backdropPath": "/dVffQGQeqfC8Frz8NkAs1iUTgOy.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2008-11-05", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 3.838, + "voteCount": 37, + "popularity": 6.4262 + }, + { + "id": 38171, + "title": "Anastasia", + "originalTitle": "Anastasia", + "overview": "Russian exiles in Paris plot to collect ten million pounds from the Bank of England by grooming a destitute, suicidal girl to pose as heir to the Russian throne. While Bounin is coaching her, he comes to believe that she is really Anastasia. In the end, the Empress must decide her claim.", + "posterPath": "/26wHOXNt4XNn2lYT8i8pWx1JOP0.jpg", + "backdropPath": "/4hjnRpLFFgIE76xb6mUc9PMVHaH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1956-12-13", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 182, + "popularity": 6.4259 + }, + { + "id": 329, + "title": "Jurassic Park", + "originalTitle": "Jurassic Park", + "overview": "A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.", + "posterPath": "/bRKmwU9eXZI5dKT11Zx1KsayiLW.jpg", + "backdropPath": "/jzt9HuhIAdH9qp0K2MA1m5V8sgq.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 878 + ], + "genres": [ + "Adventure", + "Science Fiction" + ], + "releaseDate": "1993-06-11", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 17291, + "popularity": 6.4255 + }, + { + "id": 67532, + "title": "Les Misérables", + "originalTitle": "Les Misérables", + "overview": "In 19th century France, Jean Valjean, a man imprisoned for stealing bread, must flee a relentless policeman named Javert. The pursuit consumes both men's lives, and soon Valjean finds himself in the midst of the student revolutions in France.", + "posterPath": "/d5jyRFTVKHFj2IphY5X9dfAHfWr.jpg", + "backdropPath": "/6Ygj94zMarFNFSqfO3w0EjspMA6.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "1934-02-09", + "releaseYear": "1934", + "originalLanguage": "fr", + "voteAverage": 7.9, + "voteCount": 49, + "popularity": 6.4252 + }, + { + "id": 294093, + "title": "Dinosaur Island", + "originalTitle": "Dinosaur Island", + "overview": "The adventure begins when Lucas, a 13 year old boy, embarks on the vacation of a lifetime. When disaster strikes, Lucas finds himself stranded in a strange land littered with ghost ships and prehistoric creatures. While searching for other signs of life, Lucas hears a radio broadcast in the distance and is drawn into the jungle where he encounters a beautiful young girl who claims to have come from the 1950s. Together they set out on a quest to get home all the while uncovering secrets that will forever change the future.", + "posterPath": "/xOe4S3eGogWQk4H8NhVe6eNJZSO.jpg", + "backdropPath": "/ldDp8ikhASbVTk7lw2t5fyM7jD3.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 878, + 10751 + ], + "genres": [ + "Adventure", + "Science Fiction", + "Family" + ], + "releaseDate": "2014-12-01", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 139, + "popularity": 6.4247 + }, + { + "id": 9062, + "title": "Love Story", + "originalTitle": "Love Story", + "overview": "Harvard Law student Oliver Barrett IV and music student Jennifer Cavilleri share a chemistry they cannot deny - and a love they cannot ignore. Despite their opposite backgrounds, the young couple put their hearts on the line for each other. When they marry, Oliver's wealthy father threatens to disown him. Jenny tries to reconcile the Barrett men, but to no avail.", + "posterPath": "/5A7SGcT1GlhWfHsCRQQtGe0TpJB.jpg", + "backdropPath": "/sIOIhwdWqplSpq62f1uP8yUpS2r.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "1970-12-16", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 718, + "popularity": 6.4247 + }, + { + "id": 101052, + "title": "Cachito", + "originalTitle": "Cachito", + "overview": "A gypsy girl, when her grandmother dies, goes in search of his mother who abandoned her as a baby", + "posterPath": "/2AOrurjrOlkKhLedsfjOR1NNu5V.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 12, + 80, + 18 + ], + "genres": [ + "Adventure", + "Crime", + "Drama" + ], + "releaseDate": "1996-03-07", + "releaseYear": "1996", + "originalLanguage": "es", + "voteAverage": 5.1, + "voteCount": 10, + "popularity": 6.4241 + }, + { + "id": 848958, + "title": "Forever Young", + "originalTitle": "Les Amandiers", + "overview": "At the end of the 1980s, Stella, Victor, Adèle and Etienne are 20 years old. They take the entrance exam to the famous acting school created by Patrice Chéreau and Pierre Romans at the Théâtre des Amandiers in Nanterre. Launched at full speed into life, passion, and love, together they will experience the turning point of their lives, but also their first tragedy.", + "posterPath": "/439OxXHS0TdOeFjigO5YUr1LWXF.jpg", + "backdropPath": "/j3B83OmCFiv3QIyrlmRJEb6wpqv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-11-16", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 6.43, + "voteCount": 164, + "popularity": 6.424 + }, + { + "id": 49146, + "title": "Oliver Twist", + "originalTitle": "Oliver Twist", + "overview": "When 9-year-old orphan Oliver Twist dares to ask his cruel taskmaster, Mr. Bumble, for a second serving of gruel, he's hired out as an apprentice. Escaping that dismal fate, young Oliver falls in with the street urchin known as the Artful Dodger and his criminal mentor, Fagin. When kindly Mr. Brownlow takes Oliver in, Fagin's evil henchman Bill Sikes plots to kidnap the boy.", + "posterPath": "/zAYTgtQlQzFK8xGu6mREuOZTkJX.jpg", + "backdropPath": "/lULtHGIa0d0mzlmpYmoZIdOC9dO.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "1997-05-15", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 113, + "popularity": 6.424 + }, + { + "id": 26564, + "title": "Crumb", + "originalTitle": "Crumb", + "overview": "This movie chronicles the life and times of R. Crumb. Robert Crumb is the cartoonist/artist who drew Keep On Truckin', Fritz the Cat, and played a major pioneering role in the genesis of underground comix. Through interviews with his mother, two brothers, wife, ex-wife and ex-girlfriends, as well as selections from his vast quantity of graphic art, we are treated to a darkly comic ride through one man's subconscious mind.", + "posterPath": "/9ocTHdBCJdwJ65Tubg3lYlfMxEY.jpg", + "backdropPath": "/1mlfORlfu2PtZnlEB3gMKqJy7Qp.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1994-09-10", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 269, + "popularity": 6.424 + }, + { + "id": 30949, + "title": "Palmetto", + "originalTitle": "Palmetto", + "overview": "After being released from prison on a bum charge, Harry Barber is out for payback to regain his lost two years. He's hired by Mrs. Malroux to fake the kidnapping of her stepdaughter (the daughter of a dying millionaire). He discovers that he is being set up on multiple levels and will soon face a longer sentence if he doesn't prove the truth.", + "posterPath": "/3R8At5ll1ZyCJT7FWbLmCjVqFlp.jpg", + "backdropPath": "/gSsiZrjjgN1MDVpeBUjDzFlZzPu.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 53 + ], + "genres": [ + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "1998-02-20", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 5.863, + "voteCount": 124, + "popularity": 6.4233 + }, + { + "id": 68716, + "title": "Venus & Vegas", + "originalTitle": "Venus & Vegas", + "overview": "When three Vegas buddies attempt the score of a lifetime, they have to walk a fine line between their girlfriends who want their heads, and the mobsters who want them dead.", + "posterPath": "/yMHsuJNNERU6Drh8pYgb0ZeHzTr.jpg", + "backdropPath": "/muSdbwHzlwEtam7gdUWmqFYukZb.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2010-11-01", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 24, + "popularity": 6.4229 + }, + { + "id": 455839, + "title": "Time Trap", + "originalTitle": "Time Trap", + "overview": "A group of students become trapped inside a mysterious cave where they discover time passes differently underground than on the surface.", + "posterPath": "/583rpyMn8UL8F2oH26Sz6WoKDDe.jpg", + "backdropPath": "/lRFtFFIoGQfHxyHNS254Ew7PV9c.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12 + ], + "genres": [ + "Science Fiction", + "Adventure" + ], + "releaseDate": "2018-06-22", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 1257, + "popularity": 6.4228 + }, + { + "id": 17689, + "title": "The Gauntlet", + "originalTitle": "The Gauntlet", + "overview": "Phoenix cop Ben Shockley is well on his way to becoming a derelict when he is assigned to transport a witness from Las Vegas. The witness turns out to be a belligerent prostitute with mob ties—and incriminating information regarding a high-ranking official.", + "posterPath": "/hYXkHixmH2W4hXA0qVJpT4ONPt1.jpg", + "backdropPath": "/501a9Y4ighM196440ARgIXoFlh0.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 80, + 53 + ], + "genres": [ + "Drama", + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "1977-12-17", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 577, + "popularity": 6.4228 + }, + { + "id": 194853, + "title": "The Guns", + "originalTitle": "Os Fuzis", + "overview": "A group of armed soldiers is sent to the Northeast of Brazil in an attempt to stop a famine-struck population from invading and stealing a food deposit in the dry backlands. While the alienation and insanity of people driven to hallucination by their latent hunger is conducted by the predictions of a religious figure, a truck driver observes the situation and remains torn between his friendship with the soldiers and his revolt against the lack of government action in fighting the misery that lingers over the region.", + "posterPath": "/dTFmlDHJfZRbG830TYhc9tYdi6G.jpg", + "backdropPath": "/y0tmDrMkMAgAKgxL32JRwm8eDcQ.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1964-06-01", + "releaseYear": "1964", + "originalLanguage": "pt", + "voteAverage": 7.5, + "voteCount": 29, + "popularity": 6.4221 + }, + { + "id": 200412, + "title": "Mahou Sentai Magiranger the Movie: Bride of Infershia", + "originalTitle": "魔法戦隊マジレンジャー THE MOVIE インフェルシアの花嫁", + "overview": "Kai and the Magiranger travel from the heights of Magitopia to the depths of Infershia in order to save Yamazaki from becoming the bride who releases a Hades Beastman's phantom army!", + "posterPath": "/3fXftU5E2vlXD51LiZhMo4Sbc4x.jpg", + "backdropPath": "/uolU70tGSgviER1hr2JGGwWW3sk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14, + 27 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy", + "Horror" + ], + "releaseDate": "2005-09-03", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 6.422 + }, + { + "id": 414063, + "title": "Racer and the Jailbird", + "originalTitle": "Le Fidèle", + "overview": "When Gino meets racing driver Bénédicte, it's love at first sight. But Gino has a secret. The kind of secret that can endanger their lives.", + "posterPath": "/7ruUT8L9MV0RS8nQM9sDRnboMya.jpg", + "backdropPath": "/gtJlivrn5XG5x24m9biLIuJFNtw.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10749 + ], + "genres": [ + "Crime", + "Drama", + "Romance" + ], + "releaseDate": "2017-10-04", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 5.9, + "voteCount": 190, + "popularity": 6.4214 + }, + { + "id": 15045, + "title": "Fat Albert", + "originalTitle": "Fat Albert", + "overview": "Animated character Fat Albert emerges from his TV universe into the real world, accompanied by his friends Rudy, Mushmouth, Old Weird Harold and Dumb Donald. Though the gang is flabbergasted by the modern world, they make new friends, and Albert attempts to help young Doris become popular. But things get complicated when Albert falls for her older sister, Lauri, and must turn to creator Bill Cosby for advice.", + "posterPath": "/lvj7j4qppMRtizepOZgmZ9Td1BN.jpg", + "backdropPath": "/2vIqi1KfKHAjTD4rgqRbRd7J0ZV.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 14 + ], + "genres": [ + "Comedy", + "Family", + "Fantasy" + ], + "releaseDate": "2004-12-25", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.129, + "voteCount": 268, + "popularity": 6.4211 + }, + { + "id": 1026222, + "title": "Saint Clare", + "originalTitle": "Saint Clare", + "overview": "In a small town a solitary woman is haunted by voices that lead her to assassinate ill intended people and get away with it, until her last kill sucks her down a rabbit hole riddled with corruption, trafficking and visions from the beyond.", + "posterPath": "/aE0q4awk7zto3Eql4cAeJuVAns9.jpg", + "backdropPath": "/es0N3A6vkLz2EmJavnM2M4urOEO.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2025-07-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.889, + "voteCount": 27, + "popularity": 6.421 + }, + { + "id": 394645, + "title": "The Prime Minister", + "originalTitle": "De Premier", + "overview": "The Belgian PM is abducted and he finds his wife and children taken hostage. If he wants to see them again – alive – he has to kill the person he is meeting later that day. And that person is no less than... the president of the United States.", + "posterPath": "/eQnBG1FVRZfEZrnYSfmGJJIQ36L.jpg", + "backdropPath": "/iIlkWN6J2Hhq5N3SqaBQJQNRvhZ.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2016-03-02", + "releaseYear": "2016", + "originalLanguage": "nl", + "voteAverage": 5.9, + "voteCount": 85, + "popularity": 6.4209 + }, + { + "id": 98008, + "title": "Attraction", + "originalTitle": "Nerosubianco", + "overview": "A married woman's journey through the psychedelic English youth scene awakens her to the carnal offerings of an African-American man.", + "posterPath": "/xKQlPZezVVBXWBy9JteVofrZAGK.jpg", + "backdropPath": "/o4SsNEg3agA5St1ihLC6JyV575D.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1969-02-26", + "releaseYear": "1969", + "originalLanguage": "it", + "voteAverage": 4.8, + "voteCount": 23, + "popularity": 6.4206 + }, + { + "id": 505379, + "title": "Rebecca", + "originalTitle": "Rebecca", + "overview": "After a whirlwind romance with a wealthy widower, a naïve bride moves to his family estate but can't escape the haunting shadow of his late wife.", + "posterPath": "/kGhllBArW7ImDycSMIG5bj6GEPL.jpg", + "backdropPath": "/rVkptIl9QkhpB5xM6BnUAHOJ43b.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 9648, + 53 + ], + "genres": [ + "Romance", + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2020-10-16", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 1136, + "popularity": 6.4196 + }, + { + "id": 103597, + "title": "Americano", + "originalTitle": "Americano", + "overview": "A real estate agent from Paris arrives in Los Angeles to settle his late mother's estate, but a found photograph sends him on an impromptu journey to Mexico to find a woman named Lola.", + "posterPath": "/67IURaphSVOSqkMRXUKf6cMF7bp.jpg", + "backdropPath": "/m8TMNrMn9XGiQOs1d9d5sjWTcjq.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-11-30", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 4.9, + "voteCount": 36, + "popularity": 6.4193 + }, + { + "id": 36586, + "title": "Blade II", + "originalTitle": "Blade II", + "overview": "Blade forms an uneasy alliance with the vampire council in order to combat the Reapers, who are feeding on vampires.", + "posterPath": "/yDHwo3eWcMiy5LnnEnlGV9iLu9k.jpg", + "backdropPath": "/86b0NGY1i0bt3ckhkcHxiCSMxk1.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 28, + 53 + ], + "genres": [ + "Fantasy", + "Horror", + "Action", + "Thriller" + ], + "releaseDate": "2002-03-22", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 5023, + "popularity": 6.4192 + }, + { + "id": 43880, + "title": "Rose Marie", + "originalTitle": "Rose Marie", + "overview": "An incognito opera singer falls for a policeman who has been assigned to track down her fugitive brother.", + "posterPath": "/54J30pAeefdKGIrImWPSiiUU3Su.jpg", + "backdropPath": "/kCS199RUNeox68UV7C4NZrx9u4M.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 12, + 10402 + ], + "genres": [ + "Romance", + "Adventure", + "Music" + ], + "releaseDate": "1936-01-31", + "releaseYear": "1936", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 13, + "popularity": 6.4191 + }, + { + "id": 846542, + "title": "Annie Live!", + "originalTitle": "Annie Live!", + "overview": "Annie, the beloved seven-time Tony Award-winning Broadway sensation, comes to life like never before in a live musical event starring Harry Connick, Jr., Nicole Scherzinger, Tituss Burgess, Megan Hilty and Taraji P. Henson, with newcomer Celina Smith in the title role of Annie. The iconic musical follows smart and spirited little orphan Annie, whose whole life changes when larger-than-life billionaire Daddy Warbucks takes her away from an orphanage run by the mean Miss Hannigan. One of Broadway's all-time biggest hits, the stage production features such popular songs as \"Tomorrow\" and \"It's the Hard Knock Life,\" which are adored by generations of audiences around the world.", + "posterPath": "/sVvCYvChT69s1r1kF3jOT0HCCM0.jpg", + "backdropPath": "/cITBaY62NBoimfvFMNocKHBCobG.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 10402, + 10770 + ], + "genres": [ + "Comedy", + "Family", + "Music", + "TV Movie" + ], + "releaseDate": "2021-12-02", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 15, + "popularity": 6.4187 + }, + { + "id": 10652, + "title": "Hamburger Hill", + "originalTitle": "Hamburger Hill", + "overview": "The men of Bravo Company are facing a battle that's all uphill… up Hamburger Hill. Fourteen war-weary soldiers are battling for a mud-covered mound of earth so named because it chews up soldiers like chopped meat. They are fighting for their country, their fellow soldiers and their lives. War is hell, but this is worse. Hamburger Hill tells it the way it was, the way it really was. It's a raw, gritty and totally unrelenting dramatic depiction of one of the fiercest battles of America's bloodiest war. This happened. Hamburger Hill - war at its worst, men at their best.", + "posterPath": "/a84FDoIm64qcyKq6BEMB9Ycldpt.jpg", + "backdropPath": "/qkwlPlub5kx7NNz1rX8S3TKZUWe.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 28, + 18 + ], + "genres": [ + "War", + "Action", + "Drama" + ], + "releaseDate": "1987-08-07", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 489, + "popularity": 6.4183 + }, + { + "id": 575463, + "title": "Mama Weed", + "originalTitle": "La Daronne", + "overview": "A translator working for the police gets involved in the other side of drug dealing.", + "posterPath": "/ykXCevEZyEjiT8dMg8a8DDPrN3e.jpg", + "backdropPath": "/mW3LSXHt47YaDyVFRPHz7PHHOvf.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2020-09-09", + "releaseYear": "2020", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 277, + "popularity": 6.4172 + }, + { + "id": 19064, + "title": "Once Bitten", + "originalTitle": "Once Bitten", + "overview": "Mark wants to lose his virginity, but his girlfriend wants to wait. Unfortunately for both of them, a 400-year-old vampire Countess needs to turn a virgin into a vampire before Halloween in order to preserve her own youthful appearance, and when she finds Mark, she turns his life upside-down.", + "posterPath": "/eK3dxRrMQGpZ1kLD9wdyOI8urFZ.jpg", + "backdropPath": "/tOo41T9upKd5IaSbpl1yMeJ8Rqa.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27, + 10749 + ], + "genres": [ + "Comedy", + "Horror", + "Romance" + ], + "releaseDate": "1985-11-15", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 5.795, + "voteCount": 351, + "popularity": 6.4156 + }, + { + "id": 549053, + "title": "Last Christmas", + "originalTitle": "Last Christmas", + "overview": "Kate is a young woman who has a habit of making bad decisions, and her last date with disaster occurs after she accepts work as Santa's elf for a department store. However, after she meets Tom there, her life takes a new turn.", + "posterPath": "/kDEjffiKgjuGo2DRzsqfjvW0CQh.jpg", + "backdropPath": "/qIjyBgsMDbpeEO3CJx7vxVn4KO8.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2019-11-07", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.208, + "voteCount": 2519, + "popularity": 6.4151 + }, + { + "id": 31196, + "title": "Growth", + "originalTitle": "Growth", + "overview": "In 1989, a breakthrough in \"advanced parasitic research\" on Cuttyhunk Island gave scientists a jump in human evolution. Initial tests proved promising, as subjects experienced heightened physical and mental strength and awareness. But - something in the experiment went horribly wrong, and the island mysteriously lost three quarters of its population.", + "posterPath": "/6iI5OYyjCI6Hmy7Uz1W3t1Uhz78.jpg", + "backdropPath": "/e1t2rwRugZviWTLwmQYZEPxcRQr.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878, + 53 + ], + "genres": [ + "Horror", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2010-01-29", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 90, + "popularity": 6.4151 + }, + { + "id": 10562, + "title": "Under Suspicion", + "originalTitle": "Under Suspicion", + "overview": "A lawyer is asked to come to the police station to clear up a few loose ends in his witness report of a foul murder. \"This will only take ten minutes\", they say, but it turns out to be one loose end after another, and the ten minutes he is away from his speech become longer and longer.", + "posterPath": "/2snkCKKthT5S8Ua0aMZkeaXkmBi.jpg", + "backdropPath": "/yedYIJC9lg5V3eGXQJlDNGJxTB5.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18 + ], + "genres": [ + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2000-08-24", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.106, + "voteCount": 501, + "popularity": 6.4147 + }, + { + "id": 289891, + "title": "Jackie & Ryan", + "originalTitle": "Jackie & Ryan", + "overview": "A modern day train hopper fighting to be a successful musician and a single mom battling to maintain custody of her daughter defy their circumstances by coming together in a relationship that may change each others lives forever.", + "posterPath": "/wKaYcvfZIMsCCZoHtgMr87MpU4Y.jpg", + "backdropPath": "/ojGYbibdTAaQjX71kKkyb5J1wm9.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2014-09-01", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.86, + "voteCount": 146, + "popularity": 6.4143 + }, + { + "id": 240607, + "title": "The Sicilian Connection", + "originalTitle": "Afyon oppio", + "overview": "A small time hood smuggles drugs from Turkey to Italy in an effort to make it into the big time, but along the way everyone has to have their cut.", + "posterPath": "/6iesddLTvBE7KbogIu6xhlCNcPE.jpg", + "backdropPath": "/3brv5EpHePVvqt89pL27ar2GMZR.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "1972-12-21", + "releaseYear": "1972", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 10, + "popularity": 6.4133 + }, + { + "id": 168040, + "title": "Holy Cow", + "originalTitle": "Porca vacca", + "overview": "When a stage artist is send to fight he met a lovely girl.", + "posterPath": "/mFkjs5DDJCW7zzUoF3Dx6TFyPkW.jpg", + "backdropPath": "/6uIc9Qw7xc2vBTrWEzT8Y9vrYtT.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1982-09-23", + "releaseYear": "1982", + "originalLanguage": "it", + "voteAverage": 5.635, + "voteCount": 26, + "popularity": 6.4133 + }, + { + "id": 115442, + "title": "The Wall", + "originalTitle": "Die Wand", + "overview": "A woman inexplicably finds herself cut off from all human contact when an invisible, unyielding wall suddenly surrounds the countryside. Accompanied by her loyal dog Lynx, she becomes immersed in a world untouched by civilization and ruled by the laws of nature.", + "posterPath": "/gTx2WGltGqtnAB66zfYyAblJKeR.jpg", + "backdropPath": "/9pzyiP7ldLtKtioG8OJyzqjkXAT.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18 + ], + "genres": [ + "Science Fiction", + "Drama" + ], + "releaseDate": "2012-10-05", + "releaseYear": "2012", + "originalLanguage": "de", + "voteAverage": 6.431, + "voteCount": 138, + "popularity": 6.4133 + }, + { + "id": 21988, + "title": "Awaydays", + "originalTitle": "Awaydays", + "overview": "On the Wirral in the grim early years of Margaret Thatcher's premiership, the opportunities for thrill seeking young men looking to escape 9 to 5 drudgery are what they've always been: sex, drugs, rock n' roll, fashion, football and fighting.", + "posterPath": "/uHLcTQs3u5kYGvSZl7xGEd6CJg8.jpg", + "backdropPath": "/hbkKUwPxR3X7CtQXAEq6LUuLzqK.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-04-01", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.255, + "voteCount": 49, + "popularity": 6.4132 + }, + { + "id": 1188853, + "title": "Calladita", + "originalTitle": "Calladita", + "overview": "Ana has just arrived from Colombia and is the maid of a luxurious mansion on the Costa Brava, where a family of wealthy art dealers spends their summers. The young woman works tirelessly and without a contract, under the promise of decent conditions at the end of the summer, if she remains obedient and discreet.", + "posterPath": "/pZXKAjNQ9zxGCp7LNddqGoQgzPX.jpg", + "backdropPath": "/kC5d3MDJUvD6XrfPiOmcARLipDW.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-05-17", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.441, + "voteCount": 34, + "popularity": 6.4129 + }, + { + "id": 10447, + "title": "No Escape", + "originalTitle": "No Escape", + "overview": "In the year 2022, a ruthless prison warden has created the ultimate solution for his most troublesome and violent inmates: Absolom, a secret jungle island where prisoners are abandoned and left to die. But Marine Captain John Robbins, convicted of murdering a commanding officer, is determined to escape the island in order to reveal the truth behind his murderous actions and clear his name.", + "posterPath": "/jRwMdEb5bxwVARU2VmOADTflLfZ.jpg", + "backdropPath": "/tgp4OH8lBhXMnj23h2jM8A99DHr.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 878, + 53 + ], + "genres": [ + "Action", + "Drama", + "Science Fiction", + "Thriller" + ], + "releaseDate": "1994-04-29", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 458, + "popularity": 6.4125 + }, + { + "id": 16233, + "title": "Tromeo & Juliet", + "originalTitle": "Tromeo & Juliet", + "overview": "All the body-piercing, kinky sex, and car crashes that Shakespeare wanted but never had! Join Tromeo and Juliet as they travel through Manhattan's underground in search of climactic love, violence and the American Way.", + "posterPath": "/q6HTzYY7LgVgI4rHHAnRXPPCUw2.jpg", + "backdropPath": "/fYneevxH3vBdcKHHhqYoboMRJcx.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749, + 28, + 14, + 27, + 9648 + ], + "genres": [ + "Comedy", + "Drama", + "Romance", + "Action", + "Fantasy", + "Horror", + "Mystery" + ], + "releaseDate": "1996-08-30", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 157, + "popularity": 6.412 + }, + { + "id": 44046, + "title": "Wicked", + "originalTitle": "Wicked", + "overview": "A cul-de-sac in an oppressive suburb becomes a literal dead end for wife and mother Karen Christianson when she is brutally murdered in her own home. In the wake of the event, Karen's teenage daughter Ellie begins to exhibit bizarre behaviors as she slowly acquires her mother's demeanor and mannerisms. Meanwhile, Karen's husband Ben nurtures a less-than-innocent interest in the family's sultry live-in nanny, Lena.", + "posterPath": "/13ix5ryXWE9l8UhtEKuJrkjmsTr.jpg", + "backdropPath": "/3ISYiULCiPAqBlFlWosNqZU7DVR.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1998-01-17", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 5.118, + "voteCount": 55, + "popularity": 6.4117 + }, + { + "id": 289190, + "title": "Felt", + "originalTitle": "Felt", + "overview": "A woman creates an alter ego in hopes of overcoming the trauma inflicted by men in her life.", + "posterPath": "/vDbvfJjGqUYIQ1NXzVhgmwXtonX.jpg", + "backdropPath": "/hQxCZihE7XT0s7iQk6nEZoIzG1B.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "2014-09-18", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.768, + "voteCount": 28, + "popularity": 6.4116 + }, + { + "id": 9693, + "title": "Children of Men", + "originalTitle": "Children of Men", + "overview": "In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.", + "posterPath": "/8Xgvmx7WWc7Z9Ws9RAYk7uya2kh.jpg", + "backdropPath": "/22yIGscWOOLRvwQb44ZboZmstIH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53, + 878 + ], + "genres": [ + "Drama", + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2006-09-22", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.61, + "voteCount": 7552, + "popularity": 6.4114 + }, + { + "id": 522162, + "title": "Midway", + "originalTitle": "Midway", + "overview": "The story of the Battle of Midway, and the leaders and soldiers who used their instincts, fortitude and bravery to overcome massive odds.", + "posterPath": "/hj8pyoNnynGeJTAbl7jcLZO8Uhx.jpg", + "backdropPath": "/5xegGPhCSVMKbyh6zeT6Th0BWLB.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752, + 36 + ], + "genres": [ + "Action", + "War", + "History" + ], + "releaseDate": "2019-11-06", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.115, + "voteCount": 2608, + "popularity": 6.4112 + }, + { + "id": 58899, + "title": "Demon Wind", + "originalTitle": "Demon Wind", + "overview": "The strange and brutal deaths of Cory’s grandparents has haunted him for years. Determined to discover the truth, he has returned to the desolate region where they lived, along with a group of friends, to try and uncover the mystery. Ignoring warnings from the locals that the area is cursed, Cory and his friends soon realize that the legend is true, as the Demon Wind, possesses and destroys them, one by one, turning them into monsters from hell.", + "posterPath": "/j2H1ilFKFcD73o1G52NOJMkO8DI.jpg", + "backdropPath": "/zqvDiDE5YsvKIqA1gJRSTHl61H7.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1990-07-05", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 88, + "popularity": 6.4112 + }, + { + "id": 780268, + "title": "Apex Predators", + "originalTitle": "Apex Predators", + "overview": "The bodies of beach goers begin washing ashore during the grand opening of a new resort with dire results.", + "posterPath": "/mLOJB8OvFdA3iUkcvcntprj49Qh.jpg", + "backdropPath": "/2wEvjbHO878s6AfSnvrZpuOutfL.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2021-05-11", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 1.8, + "voteCount": 10, + "popularity": 6.4107 + }, + { + "id": 38412, + "title": "Slaughterhouse Rock", + "originalTitle": "Slaughterhouse Rock", + "overview": "A man visits Alcatraz prison after having dreams about all the people who died there. When he gets there, his brother is possessed by an evil cannibal demon. The ghost of a female heavy metal singer who was killed there tries to help the man fight the monster.", + "posterPath": "/hFZzWoqOgIz5McMV4FPShhjiekC.jpg", + "backdropPath": "/6z0SBWOlssV2Lang73WkwgtuLiA.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1988-05-21", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 4.2, + "voteCount": 29, + "popularity": 6.4106 + }, + { + "id": 85204, + "title": "American Nightmare", + "originalTitle": "American Nightmare", + "overview": "A man investigates the disappearance of his sister with the help of her roommate. He uncovers a trail of prostitution, incest, blackmail...and murder.", + "posterPath": "/pJItn1uHPelzimeuNMfT1nMnXGX.jpg", + "backdropPath": "/2pDwXaKfWwXyyXSYl3LjMM4SmDJ.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 80, + 53 + ], + "genres": [ + "Horror", + "Crime", + "Thriller" + ], + "releaseDate": "1983-03-17", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 4, + "voteCount": 17, + "popularity": 6.4102 + }, + { + "id": 1363282, + "title": "The Carman Family Deaths", + "originalTitle": "The Carman Family Deaths", + "overview": "A young man's dramatic rescue at sea spirals into accusations he murdered two members of his wealthy New England family.", + "posterPath": "/yFc6F5PmAIdqpAU9wReCqLHWwMm.jpg", + "backdropPath": "/7BzlM1VAL4lSoX93KmL9JKk8Vnc.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 80 + ], + "genres": [ + "Documentary", + "Crime" + ], + "releaseDate": "2025-11-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 22, + "popularity": 6.4099 + }, + { + "id": 26323, + "title": "Bordertown", + "originalTitle": "Bordertown", + "overview": "An ambitious Mexican-American gets mixed up with the neurotic wife of his casino boss.", + "posterPath": "/uqQiWQwIdD7JydpNglrBlIO4YAT.jpg", + "backdropPath": "/ayhDrswuMnmSzYKx9CeWJhdoood.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1935-01-23", + "releaseYear": "1935", + "originalLanguage": "en", + "voteAverage": 5.926, + "voteCount": 27, + "popularity": 6.4088 + }, + { + "id": 39939, + "title": "Super Troopers", + "originalTitle": "Super Troopers", + "overview": "Five bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.", + "posterPath": "/yJyxPItcLNVfYr7idOphQTmQ9hK.jpg", + "backdropPath": "/syJIWYB1L14wdIiiH9Q7pft4ga5.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 9648 + ], + "genres": [ + "Comedy", + "Crime", + "Mystery" + ], + "releaseDate": "2001-02-15", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1175, + "popularity": 6.4087 + }, + { + "id": 1161048, + "title": "The Conference", + "originalTitle": "Konferensen", + "overview": "A ragtag group of public sector employees battle not only their own discord but also a bloodthirsty killer during a seemingly innocuous retreat.", + "posterPath": "/toe4ERIQiJu2AcGhUlrlVdPZRxS.jpg", + "backdropPath": "/y1CYcyI407ivMs7vRc46OAFlSWm.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2023-10-13", + "releaseYear": "2023", + "originalLanguage": "sv", + "voteAverage": 5.534, + "voteCount": 386, + "popularity": 6.4083 + }, + { + "id": 150273, + "title": "The Return", + "originalTitle": "The Return", + "overview": "Two young children and an adult in a small town have an encounter with an alien spaceship. 25 years later the children are reunited as adults in the same town which is now beset by strange cattle mutilations. Matters become worse when the cattle mutilations are joined by human murders and mutilations.", + "posterPath": "/oyRNMNZMFdGKe0S3cuVELIutWPp.jpg", + "backdropPath": "/dyolD5LM5OkQsf59VFNj1P8XuLQ.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 878 + ], + "genres": [ + "Mystery", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1980-03-31", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 128, + "popularity": 6.4082 + }, + { + "id": 3, + "title": "Shadows in Paradise", + "originalTitle": "Varjoja paratiisissa", + "overview": "Nikander, a rubbish collector and would-be entrepreneur, finds his plans for success dashed when his business associate dies. One evening, he meets Ilona, a down-on-her-luck cashier, in a local supermarket. Falteringly, a bond begins to develop between them.", + "posterPath": "/nj01hspawPof0mJmlgfjuLyJuRN.jpg", + "backdropPath": "/l94l89eMmFKh7na2a1u5q67VgNx.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1986-10-17", + "releaseYear": "1986", + "originalLanguage": "fi", + "voteAverage": 7.3, + "voteCount": 426, + "popularity": 6.4078 + }, + { + "id": 53751, + "title": "Corn Chips", + "originalTitle": "Corn Chips", + "overview": "Donald is shoveling the snow off his walk; Chip 'n' Dale are shoveling their branch. Donald tricks them into shoveling his walk. Angered, they sneak into his house, where he's getting ready to make popcorn. They've never seen this before, but they love it. They stow away in the box, then make off with the bowl of popped corn.", + "posterPath": "/z8yT7eIFfYvD9EnjB6qWx5NXOGY.jpg", + "backdropPath": "/n3TgBylA6zjAYFN5PfxpGYNDbMM.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1951-03-23", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 60, + "popularity": 6.4076 + }, + { + "id": 108564, + "title": "Saint Joan", + "originalTitle": "Saint Joan", + "overview": "In 1456, French King Charles VII recalls the story of how he met the 17-year-old peasant girl Joan of Arc, entrusted her with the command of the French Army, and ultimately burned her at the stake as a heretic.", + "posterPath": "/6dWYLyrxx6BzkMe8XLAdC5Xqy4j.jpg", + "backdropPath": "/4gpoD4zijMBBdaAPYL5syQS3Ocr.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "1957-05-08", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 6.417, + "voteCount": 25, + "popularity": 6.4072 + }, + { + "id": 82622, + "title": "Violet Tendencies", + "originalTitle": "Violet Tendencies", + "overview": "A woman tries to distance herself from her gay friends in an effort to land a straight boyfriend.", + "posterPath": "/9yGr3wXAXJ43D8ztPGeqEHFrLCO.jpg", + "backdropPath": "/wHKMiNWXUIHFsycrbryz3pJv4Nr.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2010-04-24", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 4.875, + "voteCount": 16, + "popularity": 6.4067 + }, + { + "id": 384727, + "title": "The Ideal", + "originalTitle": "L'Idéal", + "overview": "Octave Parango, the former concept creator/editor of 99 francs has become a model scout in Moscow. This cynical hedonist leads a very pleasant life in the arms of young Russian models and in the private jets of his oligarch friends... until the day that he is contacted by The Ideal, the world's leading cosmetic's firm, embroiled in a huge media scandal. Our antihero has seven days to find a new muse by traveling through the confines of post-Communist Russia, under the orders of Valentine Winfield, a hard and authoritarian visual director.", + "posterPath": "/eAQXUdlzlNvQ9oJvIcqFEmOyOv2.jpg", + "backdropPath": "/zbaB5T4lLcV32KszrvLCl4z2Y53.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-06-15", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.3, + "voteCount": 111, + "popularity": 6.4061 + }, + { + "id": 1127227, + "title": "Tayuan", + "originalTitle": "Tayuan", + "overview": "Ella, an events project manager, usually takes a private transportation service. However, she is forced to take a bus, where bus conductor Rico becomes aroused when her body gets pressed into him due to the thick crowd. This encounter deeply affects Ella, and from that night on, she starts pursuing Rico. Even after discovering that Rico already has a live-in partner and a daughter, Ella doesn’t care at all and she’ll do anything to make him want her just as much.", + "posterPath": "/5eX2JxR8djmoPBQhU0327uehqBf.jpg", + "backdropPath": "/iSbgsxHTN6q3YA34DAoQtXw5oIv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2023-06-23", + "releaseYear": "2023", + "originalLanguage": "tl", + "voteAverage": 5.538, + "voteCount": 13, + "popularity": 6.4058 + }, + { + "id": 378231, + "title": "Whims", + "originalTitle": "Caprices", + "overview": "Caprices tells the story of two young rich people. A famous actress poses as a poor florist, and a distinguished society man camouflages himself as forger and swindler. This game leads them to make close relations in a series of adventures.", + "posterPath": "/et1hd38KnajcZtO3L3K89tXhFP.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1942-02-16", + "releaseYear": "1942", + "originalLanguage": "fr", + "voteAverage": 6.045, + "voteCount": 12, + "popularity": 6.4053 + }, + { + "id": 463322, + "title": "The Dark", + "originalTitle": "The Dark", + "overview": "A murderous, flesh-eating undead young girl haunting the remote stretch of woods where she was murdered decades earlier, discovers a kidnapped and abused boy hiding in the trunk of one of her victim’s cars. Her decision to let the boy live throws her aggressively solitary existence into upheaval, and ultimately forces her to re-examine just how much of her humanity her murderer was able to destroy.", + "posterPath": "/8ju0L6Wy5QrW6XJOGvaLjVCDwtZ.jpg", + "backdropPath": "/3bC3FyK6rmaebYzoT8qX7EoHgah.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 14 + ], + "genres": [ + "Horror", + "Drama", + "Fantasy" + ], + "releaseDate": "2018-10-12", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.101, + "voteCount": 212, + "popularity": 6.4045 + }, + { + "id": 60575, + "title": "Prowl", + "originalTitle": "Prowl", + "overview": "Amber dreams of escaping her small town existence and persuades her friends to accompany her to find an apartment in the big city. When their transportation breaks down, she and her friends gratefully accept a ride in the back of a semi. But when the driver refuses to stop and they discover the cargo is hundreds of cartons of blood, they panic. Their panic turns to terror when the truck disgorges them into a dark, abandoned warehouse where blood-thirsty creatures learn to hunt human prey, which, the friends realize, is what they now are... Written by Svetlio Svilenov", + "posterPath": "/9odMCaQynGfpvclF4PU4sLuzGgs.jpg", + "backdropPath": "/lzb0acMeHsSFXnNHAdk7CSblElI.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2010-09-04", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 4.978, + "voteCount": 136, + "popularity": 6.4044 + }, + { + "id": 2332, + "title": "Taxi 2", + "originalTitle": "Taxi 2", + "overview": "A cabdriver and a cop race to Paris to rescue a love interest and the Japanese minister of defense from kidnappers.", + "posterPath": "/z0js1eYtKxfw4RBxiTukO7q66Rf.jpg", + "backdropPath": "/xSnKDHTk79wu2UJqI0RDm4tiBvj.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 12, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Adventure", + "Crime" + ], + "releaseDate": "2000-03-25", + "releaseYear": "2000", + "originalLanguage": "fr", + "voteAverage": 6.262, + "voteCount": 1827, + "popularity": 6.4042 + }, + { + "id": 9667, + "title": "The Jacket", + "originalTitle": "The Jacket", + "overview": "A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves.", + "posterPath": "/bt89UfRhjAvJDAO9CWJnRFXAN3p.jpg", + "backdropPath": "/oMson3ThVDsgHUMbdFFyUdpLU2M.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 878, + 53, + 14 + ], + "genres": [ + "Drama", + "Mystery", + "Science Fiction", + "Thriller", + "Fantasy" + ], + "releaseDate": "2005-03-04", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 1606, + "popularity": 6.4039 + }, + { + "id": 45939, + "title": "President", + "originalTitle": "Président", + "overview": "State secrets, sincere convictions, ecstatic crowds, a regal lifestyle, prying journalists, suspicious disappearances: what goes on behind the scenes in the halls of power or the daily life of a President.", + "posterPath": "/pelPXOAj1Hh972zCT3BHYTZvSaR.jpg", + "backdropPath": "/cJ8hmLWmMAjHjb8H3JxR4yACrhc.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2006-09-20", + "releaseYear": "2006", + "originalLanguage": "fr", + "voteAverage": 5.435, + "voteCount": 30, + "popularity": 6.4035 + }, + { + "id": 12654, + "title": "Viol@", + "originalTitle": "Viol@", + "overview": "Marta works for a poll company, listening all day to other people's dreams while leading a cold and solitary life. Having just cut off a long relationship, she tries an online sex chat under an alias, meeting a man who begins to advance more and more audacious requests, until they decide to discover their respective identities.", + "posterPath": "/baDPTkC3MPhh70vtCmmCMU2G4OZ.jpg", + "backdropPath": "/nOQsd3acx2WWBhnvAT6Ran4QMw.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "1998-09-11", + "releaseYear": "1998", + "originalLanguage": "it", + "voteAverage": 5.065, + "voteCount": 23, + "popularity": 6.4035 + }, + { + "id": 215830, + "title": "Open Grave", + "originalTitle": "Open Grave", + "overview": "A man awakes-- without memory -- in a pit full of bodies and must figure out if the people who rescued him are the killers, or if he is the murderer.", + "posterPath": "/tgXcICQjS3aEbxCYgYMroBXyJGn.jpg", + "backdropPath": "/eWxbzr7FdvlNAXBhpAeLwUh05OS.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "2013-08-13", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.984, + "voteCount": 742, + "popularity": 6.4029 + }, + { + "id": 676685, + "title": "Panda Bear in Africa", + "originalTitle": "Pandabeer in Afrika", + "overview": "A young adventurous panda travels from China to Africa to rescue his best friend, Jielong the Dragon, who has been kidnapped. On his journey, he discovers a strange amazing new world of mountains, deserts and jungles.", + "posterPath": "/wxpu7svVqA0ALYpofQBPujGelN3.jpg", + "backdropPath": "/youmOAJwM4XCoHAgeYNXACA7Buc.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 35, + 10751 + ], + "genres": [ + "Animation", + "Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2024-03-15", + "releaseYear": "2024", + "originalLanguage": "nl", + "voteAverage": 7.1, + "voteCount": 75, + "popularity": 6.4028 + }, + { + "id": 615, + "title": "The Passion of the Christ", + "originalTitle": "The Passion of the Christ", + "overview": "A graphic portrayal of the last twelve hours of Jesus of Nazareth's life.", + "posterPath": "/v9f9MMrq2nGQrN7cHnQRmEq9lSE.jpg", + "backdropPath": "/pulJ1iY7GVeppMRipiR7ZGDW7EW.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-02-25", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.517, + "voteCount": 4958, + "popularity": 6.4027 + }, + { + "id": 1894, + "title": "Star Wars: Episode II - Attack of the Clones", + "originalTitle": "Star Wars: Episode II - Attack of the Clones", + "overview": "Following an assassination attempt on Senator Padmé Amidala, Jedi Knights Anakin Skywalker and Obi-Wan Kenobi investigate a mysterious plot that could change the galaxy forever.", + "posterPath": "/oZNPzxqM2s5DyVWab09NTQScDQt.jpg", + "backdropPath": "/msYmRFJfXy0zsFd73PAEqdetKpO.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "2002-05-15", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.586, + "voteCount": 13932, + "popularity": 6.4026 + }, + { + "id": 661950, + "title": "Alone", + "originalTitle": "Alone", + "overview": "When an outbreak hits, Aidan barricades himself inside his apartment and starts rationing food. His complex is overrun by infected Screamers, and with the world falling apart into chaos, he is left completely alone fighting for his life.", + "posterPath": "/lkXD1W3pC64KXfZjHhHydd7DvNy.jpg", + "backdropPath": "/E4LyJkTj66ourla5lD3Oal9imh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2020-10-23", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.849, + "voteCount": 196, + "popularity": 6.4024 + }, + { + "id": 41807, + "title": "Grey Owl", + "originalTitle": "Grey Owl", + "overview": "Archie Grey Owl is a trapper in Canada in the early 1930s when a young Iroquois woman from town asks him to teach her Indian ways. They live in the woods, where she is appalled at how trapped animals die. She adopts two orphaned beaver kits and helps Archie see his way to stop trapping. Instead, he works as a guide, a naturalist writer, and then the Canadian government hires him to save the beaver in a conserve by Lake Ajawaan in Prince Albert National Park. He writes a biography, which brings him attention in Canada and invitations to lecture in England. Before he leaves, he and Anahareo (Pony) marry. In England, his secret is revealed. Will Anahareo continue to love him?", + "posterPath": "/zreBHtHVAkH8Z2EdAAje1pFuF2p.jpg", + "backdropPath": "/vyxQ6wrpRjqwdIhZJJPQca0UuQX.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 28, + 18, + 10749 + ], + "genres": [ + "Western", + "Action", + "Drama", + "Romance" + ], + "releaseDate": "1999-10-01", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 77, + "popularity": 6.4024 + }, + { + "id": 1257586, + "title": "The Hangman", + "originalTitle": "The Hangman", + "overview": "Troubled father Leon takes son camping in Appalachia. Local cult summons evil Hangman demon. Son goes missing. Leon must confront cult, monster to find him amid rising body count.", + "posterPath": "/rij9Eh4RVXyPet8A1BNU8pDvtmu.jpg", + "backdropPath": "/8aQYGyXKCohzoTjjxWzANPV2VBS.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-05-30", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.798, + "voteCount": 57, + "popularity": 6.4021 + }, + { + "id": 10257, + "title": "The Twins Effect II", + "originalTitle": "千機變II花都大戰", + "overview": "Set in Flower Capital, a land ruled by an Evil Queen. All men in the kingdom are slaves to women. However, a prophecy foretells that one day, the Star of Rex will find and wield a mythical sword, rise to power, overthrow the queen, and restore the balance of the two sexes.", + "posterPath": "/4UNGA2zrHgHmQQ8LY7S8uEKL3Dv.jpg", + "backdropPath": "/aDgysYfiPZBgGSaOjxYooYSvNxG.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Fantasy" + ], + "releaseDate": "2004-08-12", + "releaseYear": "2004", + "originalLanguage": "cn", + "voteAverage": 5.2, + "voteCount": 102, + "popularity": 6.4016 + }, + { + "id": 407172, + "title": "Summer Villa", + "originalTitle": "Summer Villa", + "overview": "Although a successful romance novelist, Terry Russell hasn't had luck in her own love life. After a disastrous first date with cocky, hot-shot New York chef Matthew Everston, she retreats to her friend's French villa for the summer to finish her latest novel, with her reluctant teenage daughter in tow.", + "posterPath": "/npiWf0kTKOHyQoPnmL7HOfbNAhL.jpg", + "backdropPath": "/dJQ1RRB7CTVJr0pXQdBslhqx23F.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 10770 + ], + "genres": [ + "Romance", + "Comedy", + "TV Movie" + ], + "releaseDate": "2016-07-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.343, + "voteCount": 99, + "popularity": 6.4003 + }, + { + "id": 30840, + "title": "Robin Hood", + "originalTitle": "Robin Hood", + "overview": "The Swashbuckling legend of Robin Hood unfolds in the 12th century when the mighty Normans ruled England with an iron fist.", + "posterPath": "/3wvHxskniqALjqFBjHn6xPbUvzj.jpg", + "backdropPath": "/A1h79bMECZsYKiDlBm0AP9G5Mlg.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10770 + ], + "genres": [ + "Adventure", + "TV Movie" + ], + "releaseDate": "1991-05-13", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 172, + "popularity": 6.4001 + }, + { + "id": 2923, + "title": "B. Monkey", + "originalTitle": "B. Monkey", + "overview": "When wistful introvert Alan Furnace meets quick-witted bombshell Beatrice, he has no idea of her secret life as \"B. Monkey\" -- the top thief-for-hire in London's criminal underworld. Charmed by Furnace's innocent and chivalrous ways, Beatrice resolves to reform. But to cash in on her first chance at real love, she must escape her former partner in crime, the ruthless Paul Neville -- and a dark past that seems to haunt her every step.", + "posterPath": "/80bQjfpH14P5p2TDnfWUukEkM55.jpg", + "backdropPath": "/ll1BtZ7R84UZfZppK3l7rCi0TBu.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 80, + 18 + ], + "genres": [ + "Romance", + "Crime", + "Drama" + ], + "releaseDate": "1999-07-15", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 89, + "popularity": 6.3992 + }, + { + "id": 979473, + "title": "Some Shooting Stars", + "originalTitle": "4 Zéros", + "overview": "These old friends now have to train the next football generation with the help of their own offsprings...", + "posterPath": "/ePNu4AuhdisRLTxm8Hup8NUN6UJ.jpg", + "backdropPath": "/hbHEso397BY9kSX36gEVlsINwnj.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-10-23", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 4.3, + "voteCount": 72, + "popularity": 6.3985 + }, + { + "id": 1326963, + "title": "Un/Dressed", + "originalTitle": "Un/Dressed", + "overview": "Elle is a young entrepreneur who wants to lead her grandmother Margot's fashion house into a new era. She is in a relationship with Thilo, the son of an influential Hamburg family. After Elle's grandmother receives anonymous threats, Ben, who has been in prison, is assigned as her bodyguard. Elle is torn between Thilo and Ben. As Elle delves deeper into Ben's world, she learns secrets about Thilo that could jeopardize her grandmother's life's work.", + "posterPath": "/xSKuXQb1VAUlyULUE4tkGTDbGdQ.jpg", + "backdropPath": "/bERrATzt2ZGXZnAAIcOanemhcQo.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10749, + 18 + ], + "genres": [ + "Thriller", + "Romance", + "Drama" + ], + "releaseDate": "2024-09-20", + "releaseYear": "2024", + "originalLanguage": "de", + "voteAverage": 5.885, + "voteCount": 13, + "popularity": 6.3969 + }, + { + "id": 532097, + "title": "Bloody Marie", + "originalTitle": "Bloody Marie", + "overview": "Marie Wankelmut, once successful comic artist, lives among the prostitutes in Amsterdam's Red Light District. Nowadays drunken and bold, she gets into one conflict after another. A gruesome sobering event at her neighbors, forces her to take action.", + "posterPath": "/bjdDKMPSafCVFZ5RvllmLgasvR3.jpg", + "backdropPath": "/9YeshoqDcNDAcXz05yFG2nZiCvt.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2019-02-28", + "releaseYear": "2019", + "originalLanguage": "nl", + "voteAverage": 5.3, + "voteCount": 10, + "popularity": 6.3964 + }, + { + "id": 1148027, + "title": "New Life", + "originalTitle": "New Life", + "overview": "A mysterious woman on the run, and the resourceful fixer assigned to bring her in. Their two unique stories inextricably link, as the stakes of the pursuit rise to apocalyptic proportions.", + "posterPath": "/x42j045m9NfxI164KOQKg9BbleD.jpg", + "backdropPath": "/ly1jzyYU93NHF968i9M1tKkVAf9.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648, + 878 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery", + "Science Fiction" + ], + "releaseDate": "2023-08-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.023, + "voteCount": 132, + "popularity": 6.3962 + }, + { + "id": 9040, + "title": "Serpico", + "originalTitle": "Serpico", + "overview": "New York cop Frank Serpico blows the whistle on the rampant corruption in the force only to have his comrades turn against him.", + "posterPath": "/pRagfd10PPWryFRSzLPIivfAXHJ.jpg", + "backdropPath": "/xcTYnIZQNcHx9rjJqrpBuElgvBe.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1973-12-18", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 7.531, + "voteCount": 2095, + "popularity": 6.396 + }, + { + "id": 213103, + "title": "Operation Cobra", + "originalTitle": "Operation Cobra", + "overview": "When Interpol officer Kyle Connors, Don \"The Dragon\" Wilson, watches his partner die in an explosion, he swears he'll hunt down the killer. Yanked of the case by Internal Affairs, Connors defied his orders and follows the only lead he has... to India. Now, he is in a strange land where nothing is what it seems. Who can he trust? A beautiful counter-operative? An earnest young cop? A reclusive arms dealer? In a country where assassins come cheap, Connors finds himself in a cobra's nest of danger and betrayal.", + "posterPath": "/8naNIEGCOxwL8IYwyjJAIQtPHje.jpg", + "backdropPath": "/1ZzoG6hZH4Qa7kAnLJmIwaC4ORs.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "1997-12-05", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 10, + "popularity": 6.3959 + }, + { + "id": 331393, + "title": "Undrafted", + "originalTitle": "Undrafted", + "overview": "A team of misfit intramural baseball players become important to a player who was overlooked in the MLB draft, as he tries to come to grips with his dashed dream.", + "posterPath": "/TH9tigrIJ3lmkNESMHbsFCBXYL.jpg", + "backdropPath": "/nKl5vyhbePNKhjLgGnyV6HIpGE5.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "2016-07-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 34, + "popularity": 6.3957 + }, + { + "id": 46522, + "title": "The Aftermath", + "originalTitle": "The Aftermath", + "overview": "After a lengthy space mission, two astronauts (Steve Barkett and Larry Latham) return to an Earth transformed by nuclear war. As renegade gangs and mutants rule Los Angeles, the astronauts join two pretty women and a couple of kids in a growing resistance movement. This sci-fi adventure follows the men as they battle bell-bottomed biker leader Cutter and his brutal gang.", + "posterPath": "/lR7H61fx5Mn9cUq8oqT1moDBgxK.jpg", + "backdropPath": "/dZn66IIpFvamJ0prsku0zfoEQ54.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 27 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "Horror" + ], + "releaseDate": "1982-03-22", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 3.978, + "voteCount": 45, + "popularity": 6.3956 + }, + { + "id": 44592, + "title": "Lost Continent", + "originalTitle": "Lost Continent", + "overview": "When an experimental atomic rocket crashes somewhere off-radar, its three developing scientists are joined by three Air Force men in tracking it down to a small Pacific island, where it apparently has landed on the plateau of the island's steep-walled, taboo mountain...", + "posterPath": "/sXI8wCc5osqLWtfKsWuqztNPhpL.jpg", + "backdropPath": "/iVvzZuBpagsgOGkaVkin9MDtCJU.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12 + ], + "genres": [ + "Science Fiction", + "Adventure" + ], + "releaseDate": "1951-08-17", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 3.4, + "voteCount": 36, + "popularity": 6.3951 + }, + { + "id": 1042657, + "title": "Latency", + "originalTitle": "Latency", + "overview": "When professional gamer Hana, who suffers from acute agoraphobia, receives new equipment that enhances her game, she begins to wonder if it is reading her mind – or controlling it.", + "posterPath": "/yNBDVUFmvgCgxzpEl5ZJ9TUSc8t.jpg", + "backdropPath": "/9GzQ4bT6gdeq4fKMrzpJLwx40sI.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 27 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Horror" + ], + "releaseDate": "2024-06-14", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.856, + "voteCount": 66, + "popularity": 6.3948 + }, + { + "id": 16971, + "title": "The Meerkats", + "originalTitle": "The Meerkats", + "overview": "A coming of age story following a young meerkat pup, Kolo, growing up in the Kalahari desert; and an inspiring look at how one family's connection to each other and their surroundings is a model of resilience and fortitude for us all. Shot using ground-breaking techniques, this dramatised documentary is a one-of-a-kind presentation from The Weinstein Company and the BBC, featuring narration by Paul Newman.", + "posterPath": "/pi9WB2zAVruUryVhZhuXFZ4BpG8.jpg", + "backdropPath": "/cwKs4mwPNJNalMWXaTHBRJTkPO1.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 10770, + 10751 + ], + "genres": [ + "Documentary", + "TV Movie", + "Family" + ], + "releaseDate": "2008-10-15", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 74, + "popularity": 6.3923 + }, + { + "id": 100812, + "title": "The Laughing Woman", + "originalTitle": "Femina Ridens", + "overview": "Beautiful PR woman, Maria finds herself trapped in the home of the sinister and troubled Dr. Sayer, where she is subjected to a series of increasingly bizarre, terrifying, and degrading sex games. Sayer admits that he has murdered several women after the same ordeal, always killing them at the point of orgasm. But all is not what it seems, and through a series of twists and turns, the whole situation is slowly turned on its head.", + "posterPath": "/iVnuImueARSbd6DsMRi6PgGwRJ0.jpg", + "backdropPath": "/tShcOCcKLxaBJw43OH35SzLkwT8.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 53 + ], + "genres": [ + "Romance", + "Thriller" + ], + "releaseDate": "1969-08-24", + "releaseYear": "1969", + "originalLanguage": "it", + "voteAverage": 6.8, + "voteCount": 45, + "popularity": 6.3918 + }, + { + "id": 15489, + "title": "Snow Day", + "originalTitle": "Snow Day", + "overview": "When an entire town in upstate New York is closed down by an unexpected snowfall, a \"snow day\" begins when a group of elementary school kids, led by Natalie Brandston, try to ensure that the schools stay closed by stopping a mechanical snowplow driver by trying to hijack his plow truck. Meanwhile, Natalie's big brother Hal is using this day to try to win the affections of Claire Bonner, the most popular girl in his high school, while Hal and Natalie's father Tom, a TV meteorologist, faces off against a rival meteorologist for weather coverage of the day's events.", + "posterPath": "/myTnHKy178rrd1oUG3GkEvc641G.jpg", + "backdropPath": "/mnHPVOgNfzyfsXFClVi1NCeQvCy.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751, + 12 + ], + "genres": [ + "Comedy", + "Family", + "Adventure" + ], + "releaseDate": "2000-02-11", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 5.126, + "voteCount": 219, + "popularity": 6.3915 + }, + { + "id": 412546, + "title": "Antrum", + "originalTitle": "Antrum", + "overview": "Rumored to have been lost, Antrum appears as a cursed film from the 1970s. Viewers are warned to proceed with caution. It’s said to be a story about a young boy and girl who enter the forest in an attempt to save the soul of their recently deceased pet. They journey to “The Antrum,” the very spot the devil landed after being cast out of heaven. There, the children begin to dig a hole to hell.", + "posterPath": "/20de4Rcmy4B0L5zyOc3Nc5F7c0D.jpg", + "backdropPath": "/kUfhJUEa4Djx9yCxYCkuEcJFE12.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2018-10-14", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 335, + "popularity": 6.3912 + }, + { + "id": 36739, + "title": "School Daze", + "originalTitle": "School Daze", + "overview": "Fraternity and sorority members clash with other students at a historically black college during homecoming weekend.", + "posterPath": "/vnfjKHcmah7ReMxLNF18JMXFgSZ.jpg", + "backdropPath": "/kNjnEqsEHNy58m9FgPevxm4wnkk.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10402 + ], + "genres": [ + "Comedy", + "Drama", + "Music" + ], + "releaseDate": "1988-02-12", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.651, + "voteCount": 109, + "popularity": 6.3911 + }, + { + "id": 280892, + "title": "Bunks", + "originalTitle": "Bunks", + "overview": "When two trouble-making brothers scam their way into an idyllic summer camp, they find themselves leading a rag tag cabin of boys into breaking every rule in the book.", + "posterPath": "/rjjM5UtH95Er9mkLqayn0XuBmbk.jpg", + "backdropPath": "/dZZFUtqhaxqeuzkVxnUX2DuKGFf.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 35, + 27 + ], + "genres": [ + "TV Movie", + "Comedy", + "Horror" + ], + "releaseDate": "2013-10-27", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 116, + "popularity": 6.3902 + }, + { + "id": 1067341, + "title": "Warchief", + "originalTitle": "Warchief", + "overview": "A band of guardians are tasked with protecting a messenger who must urgently deliver vital information to their king. On their deadly quest across an ancient land, they face incredible danger as they battle against plague-ridden outcasts, dark magic, and vile monsters.", + "posterPath": "/zFGOcPh7qzkNhTVH2ER0rTz4mfi.jpg", + "backdropPath": "/pAkMlgS0zMO1iSh4tJNTvNT5SPt.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 12, + 28 + ], + "genres": [ + "Fantasy", + "Adventure", + "Action" + ], + "releaseDate": "2024-01-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.889, + "voteCount": 36, + "popularity": 6.3899 + }, + { + "id": 1115780, + "title": "Serpent's Path", + "originalTitle": "蛇の道", + "overview": "A mysterious woman teams up with a man whose daughter was killed and who is now seeking revenge. Together they kidnap members of an organization and torture them to find out what really happened.", + "posterPath": "/8ah4EUBfuOXhPNW5Z2cgAe4wTbM.jpg", + "backdropPath": "/fF9mk1Wj4IbRu9GwoHgWlXeqkep.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53 + ], + "genres": [ + "Crime", + "Thriller" + ], + "releaseDate": "2024-06-14", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 20, + "popularity": 6.3898 + }, + { + "id": 71, + "title": "Billy Elliot", + "originalTitle": "Billy Elliot", + "overview": "County Durham, England, 1984. The miners' strike has started and the police have started coming up from Bethnal Green, starting a class war with the lower classes suffering. Caught in the middle of the conflict is 11-year old Billy Elliot, who, after leaving his boxing club for the day, stumbles upon a ballet class and finds out that he's naturally talented. He practices with his teacher Mrs. Wilkinson for an upcoming audition in Newcastle-upon Tyne for the royal Ballet school in London.", + "posterPath": "/nOr5diUZxphmAD3li9aiILyI28F.jpg", + "backdropPath": "/mTsbahr4SLqgVZkKRN0O8t5iA9y.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10402 + ], + "genres": [ + "Drama", + "Comedy", + "Music" + ], + "releaseDate": "2000-09-28", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 3979, + "popularity": 6.3896 + }, + { + "id": 348389, + "title": "Stratton", + "originalTitle": "Stratton", + "overview": "A British Special Boat Service commando tracks down an international terrorist cell.", + "posterPath": "/iH5ioYSYZiWI2cCaYmCikaNcSP3.jpg", + "backdropPath": "/f30alhDnRnqXxZc6GIc2blDHsyf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2017-07-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 214, + "popularity": 6.3895 + }, + { + "id": 11590, + "title": "Slap Shot", + "originalTitle": "Slap Shot", + "overview": "To build up attendance at their games, the management of a struggling minor-league hockey team signs up the Hanson Brothers, three hard-charging players whose job is to demolish the opposition.", + "posterPath": "/k5dvEA7ajd90mf3KrF6m6LnYXOv.jpg", + "backdropPath": "/kAMgr9znXqu07SQjdbT1vwUeqYD.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1977-02-25", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 6.794, + "voteCount": 410, + "popularity": 6.3895 + }, + { + "id": 128841, + "title": "The Thompsons", + "originalTitle": "The Thompsons", + "overview": "On the run with the law on their trail, America's most anguished vampire family heads to England to find an ancient vampire clan. What they find instead could tear their family, and their throats, apart forever.", + "posterPath": "/xsyHbPd2O9jkulaKIUxTqEn1Mb5.jpg", + "backdropPath": "/rl1xXWRRmFucMTKZHpVMtqgD7Gl.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2012-08-21", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 4.645, + "voteCount": 69, + "popularity": 6.3892 + }, + { + "id": 970284, + "title": "Shooting Stars", + "originalTitle": "Shooting Stars", + "overview": "The inspiring origin story of a basketball superhero, revealing how LeBron James and his childhood friends become the #1 high school team in the country, launching James's breathtaking career as a four-time NBA Champion, two-time Olympic Gold Medalist and the NBA's all-time leading scorer.", + "posterPath": "/zLQHNW0XVT7IWjUahBlpVSba3sC.jpg", + "backdropPath": "/fMRrTziefy0c6v45IUyByGjZCRo.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-06-02", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.721, + "voteCount": 154, + "popularity": 6.3887 + }, + { + "id": 802714, + "title": "Animals", + "originalTitle": "Animals", + "overview": "Brahim is a young man, and secretly gay. At his mother’s birthday party, tensions around his unaccepted sexuality become unbearable. Brahim flees the oppressive family home into the night, where a terrible encounter awaits...", + "posterPath": "/taNO8ww04C8M4IMVbZDOjutNoD8.jpg", + "backdropPath": "/1rW5K8MnptQh4TfelcTDODhBtVv.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2022-06-23", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 4.9, + "voteCount": 15, + "popularity": 6.3887 + }, + { + "id": 156981, + "title": "Old 37", + "originalTitle": "Old 37", + "overview": "Two brothers intercept 911 calls in their Father's beat up old Ambulance to exact revenge on a group of careless teen drivers.", + "posterPath": "/9yfgVIoVwWhXz8tIIGDnJvxdTN0.jpg", + "backdropPath": "/j6JSC38oroyvvQ96v9P8CLPDwRH.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2015-03-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 3.7, + "voteCount": 53, + "popularity": 6.3887 + }, + { + "id": 411873, + "title": "The Little Hours", + "originalTitle": "The Little Hours", + "overview": "Garfagnana, Italy, 1347. The handsome servant Masseto, fleeing from his vindictive master, takes shelter in a nunnery where three young nuns, Sister Alessandra, Sister Ginevra and Sister Fernanda, try unsuccessfully to find out what their purpose in life is, a conundrum that each of them faces in different ways.", + "posterPath": "/wS69OOwBJzimoLIcmYMSVkmhCZM.jpg", + "backdropPath": "/hURbH7LeOnnet8F46zZvlKQF9Wf.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-06-30", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.886, + "voteCount": 628, + "popularity": 6.3886 + }, + { + "id": 43961, + "title": "Carbine Williams", + "originalTitle": "Carbine Williams", + "overview": "David Marshall Williams is sent to a prison farm where he works in the tool shop and eventually develops the precursor of the famous M-1 Carbine automatic rifle used in World War II.", + "posterPath": "/cxD7BIOWcmmxflBiymKimyQBhrC.jpg", + "backdropPath": "/gJiU2HeLU4ZyeD79Go35xLbLwpF.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1952-05-01", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 17, + "popularity": 6.3886 + }, + { + "id": 10461, + "title": "Get Carter", + "originalTitle": "Get Carter", + "overview": "Jack Carter, a mob enforcer living in Las Vegas, travels back to his hometown of Seattle for his brother's funeral. During this visit, Carter realizes that the death of his brother was not accidental, but a murder. With this knowledge, Carter sets out to kill all those responsible.", + "posterPath": "/xGANaRWD6638ch1qQmqgRp395R6.jpg", + "backdropPath": "/6TXJyG1MqcSZmcTjk1wrjsrhBWT.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53, + 80 + ], + "genres": [ + "Action", + "Drama", + "Thriller", + "Crime" + ], + "releaseDate": "2000-10-06", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 616, + "popularity": 6.3883 + }, + { + "id": 28532, + "title": "Castle of Blood", + "originalTitle": "Danza macabra", + "overview": "When a cynical journalist accepts a wager that he won't survive the night in a haunted castle, it unlocks an odyssey of sexual torment, undead vengeance, and a dark seductress who surrenders the gravest of pleasures.", + "posterPath": "/A17gEQk617FsLhtPyalRN885KM3.jpg", + "backdropPath": "/s2MNZ9fEroQrKMagzBl5gO43VlD.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1964-02-27", + "releaseYear": "1964", + "originalLanguage": "it", + "voteAverage": 7.114, + "voteCount": 114, + "popularity": 6.388 + }, + { + "id": 785538, + "title": "7 Prisoners", + "originalTitle": "7 Prisioneiros", + "overview": "An impoverished teen seeking to escape the clutches of a human trafficker must weigh living up to his moral code against his struggle to survive.", + "posterPath": "/5svMKCGnR6Yvj8wxldvDvgUi0Jk.jpg", + "backdropPath": "/iGXrJvq3EVAd7CAt5BicepJYr5M.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2021-10-22", + "releaseYear": "2021", + "originalLanguage": "pt", + "voteAverage": 7.1, + "voteCount": 368, + "popularity": 6.3878 + }, + { + "id": 9664, + "title": "Flyboys", + "originalTitle": "Flyboys", + "overview": "The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.", + "posterPath": "/xezeqrrno6ytLyLrbTXRGUk4rdu.jpg", + "backdropPath": "/trKRuWe6zReYFhfA8m6DdHbTWs9.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18, + 36, + 10749, + 10752 + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "History", + "Romance", + "War" + ], + "releaseDate": "2006-09-22", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 828, + "popularity": 6.3877 + }, + { + "id": 37724, + "title": "Skyfall", + "originalTitle": "Skyfall", + "overview": "When Bond's latest assignment goes gravely wrong, agents around the world are exposed and MI6 headquarters is attacked. While M faces challenges to her authority and position from Gareth Mallory, the new Chairman of the Intelligence and Security Committee, it's up to Bond, aided only by field agent Eve, to locate the mastermind behind the attack.", + "posterPath": "/d0IVecFQvsGdSbnMAHqiYsNYaJT.jpg", + "backdropPath": "/qB2eFmGEh5YCzhXUpz7As2PaDCh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2012-10-24", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.257, + "voteCount": 15750, + "popularity": 6.3876 + }, + { + "id": 519121, + "title": "The Silences", + "originalTitle": "Los silencios", + "overview": "Nuria, 12, Fabio, 9, and their mother arrive on a small island in the middle of the Amazon, bordering Brazil, Colombia and Peru. They fled the Colombian armed conflict, in which their father disappeared. One day, he mysteriously reappears in their new home.", + "posterPath": "/4TP4XmM0w3lUnzn65lM4jkNS1li.jpg", + "backdropPath": "/ubLd7itsZupcw6YnLinCePlsCY7.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-04-03", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 7.155, + "voteCount": 29, + "popularity": 6.3867 + }, + { + "id": 639933, + "title": "The Northman", + "originalTitle": "The Northman", + "overview": "Prince Amleth is on the verge of becoming a man when his father is brutally murdered by his uncle, who kidnaps the boy's mother. Two decades later, Amleth is now a Viking who's on a mission to save his mother, kill his uncle and avenge his father.", + "posterPath": "/aSSJMnHknzKjlZ6zybwD7eyJ4Po.jpg", + "backdropPath": "/fqw8nJLPRgKRyFSDC0xBsC06NGC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2022-04-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.036, + "voteCount": 4790, + "popularity": 6.3865 + }, + { + "id": 157845, + "title": "The Rover", + "originalTitle": "The Rover", + "overview": "Ten years after a severe economic collapse in the western world, lawlessness reigns and life is cheap. Eric is a lone drifter, and his car is his only possession. When a gang steals it, Eric comes across the injured Rey, left behind by the car thieves. The pair form an unlikely and uneasy alliance.", + "posterPath": "/734OOkr69mt8lyPk8iw3TwgQ90R.jpg", + "backdropPath": "/wXI4ljoRVDBp2vHRoXKb2jPlmAj.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2014-06-04", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.275, + "voteCount": 997, + "popularity": 6.3865 + }, + { + "id": 459283, + "title": "Brothers", + "originalTitle": "Broers", + "overview": "When Alexander suddenly leaves on a road trip to France, Lukas decides to join him as he’s been trailing his charismatic brother for his entire life. But during this journey he discovers that he finally has to go his own way, not knowing this decision would be so all-encompassing.", + "posterPath": "/40KstqJWG8qHgUZK7XWzecLRRCz.jpg", + "backdropPath": "/6lP7JuLB5A9I9DnSA7P5A20PeU7.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-06-01", + "releaseYear": "2017", + "originalLanguage": "nl", + "voteAverage": 6.077, + "voteCount": 13, + "popularity": 6.3858 + }, + { + "id": 44926, + "title": "The Divine Nymph", + "originalTitle": "Divina creatura", + "overview": "In the decadent Roaring Twenties, a beautiful woman engages in affairs with two men, playing them against each other.", + "posterPath": "/zp6uuBRpZp5P3P7fGIrdisYLmpJ.jpg", + "backdropPath": "/6PoxAP9NqcvNMUTggBmkWwGAEo0.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "1975-10-16", + "releaseYear": "1975", + "originalLanguage": "it", + "voteAverage": 5.2, + "voteCount": 16, + "popularity": 6.3852 + }, + { + "id": 605347, + "title": "The Outsider", + "originalTitle": "The Outsider", + "overview": "A railroad worker unwittingly finds himself on the wrong side of a group of corrupt lawmen in the Old West. When tragedy forces him to seek justice, he soon sets out on a bloody quest for revenge to wipe out his ruthless enemies.", + "posterPath": "/36HLSziHVip4umkEjspf4IW9TKU.jpg", + "backdropPath": "/c40JjDfx1OJFY9fv9Mh0lbU6OoT.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "2019-06-14", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 3.9, + "voteCount": 22, + "popularity": 6.3848 + }, + { + "id": 15262, + "title": "Boogeyman 3", + "originalTitle": "Boogeyman 3", + "overview": "When a college student witnesses the alleged suicide of her roommate, it sets into motion a series of horrific events that cause her to fear the supernatural entity. As she tries to convince the rest of her dorm that the Boogeyman does exist, the evil force grows stronger and her friends begin to pay the price. Now she must stop this ultimate evil before the entire campus falls prey.", + "posterPath": "/iOCBPiNeQ7tPuQDwxapNYuSLKT5.jpg", + "backdropPath": "/2cKQ0zLJFIe9mnlhtjricpPEZoA.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2008-10-17", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 242, + "popularity": 6.3846 + }, + { + "id": 356199, + "title": "Amazing Grace", + "originalTitle": "Amazing Grace", + "overview": "A behind-the-scenes documentary about the recording of Aretha Franklin's best-selling album finally sees the light of day more than four decades after the original footage was shot.", + "posterPath": "/eABsBr5TnW8FBSSSsAKFnwDW1BW.jpg", + "backdropPath": "/2FT4Li1enVvQBaYSqvGji6vlvbE.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 99 + ], + "genres": [ + "Music", + "Documentary" + ], + "releaseDate": "2018-12-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 103, + "popularity": 6.3844 + }, + { + "id": 653715, + "title": "Summertime", + "originalTitle": "Summertime", + "overview": "Over the course of a hot summer day in Los Angeles, the lives of 25 young Angelinos intersect. A skating guitarist, a tagger, two wannabe rappers, an exasperated fast-food worker, a limo driver—they all weave in and out of each other's stories. Through poetry they express life, love, heartache, family, home, and fear. One of them just wants to find someplace that still serves good cheeseburgers.", + "posterPath": "/2ynlG6QRywGyeZxlVkIQDOhMolg.jpg", + "backdropPath": "/290KSkMot01u58yCCa6lFqtpXaq.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10402 + ], + "genres": [ + "Comedy", + "Drama", + "Music" + ], + "releaseDate": "2021-07-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 23, + "popularity": 6.3841 + }, + { + "id": 58257, + "title": "Savage Messiah", + "originalTitle": "Savage Messiah", + "overview": "In the Paris of the 1910s, brash young sculptor Henri Gaudier begins a creative partnership with an older writer, Sophie Brzeska. Though the couple is 20 years apart in age, Gaudier finds that his untamed work is complemented by the older woman's cultural refinement. He then moves to London with Brzeska, where he falls in with a group of avant-garde artists. There, Gaudier encounters yet another artistic muse in passionate suffragette Gosh Boyle.", + "posterPath": "/8SvzigYJY7iy4DGlrnOHfU2FZkY.jpg", + "backdropPath": "/73dXzlkftJnfOsOdMQl0XfT0gSx.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1972-06-27", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 25, + "popularity": 6.3838 + }, + { + "id": 8440, + "title": "Carandiru", + "originalTitle": "Carandiru", + "overview": "When a doctor decides to carry out an AIDS prevention program inside Latin America’s largest prison: the Casa de Detenção de São Paulo - Carandiru, he meets the future victims of one of the darkest days in Brazilian History when the State of São Paulo’s Military Police, with the excuse for law enforcement, shot to death 111 people. Based on real facts and on the book written by Dráuzio Varella.", + "posterPath": "/kKAgIMwQWQ6u4s0c56XKSDX3vAs.jpg", + "backdropPath": "/rhrBU761a5B4w7hhpA9og3fNBCH.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-03-21", + "releaseYear": "2003", + "originalLanguage": "pt", + "voteAverage": 7.583, + "voteCount": 581, + "popularity": 6.3837 + }, + { + "id": 862557, + "title": "The Hill", + "originalTitle": "The Hill", + "overview": "The story of Rickey Hill, who overcomes his physical disability and repairs his relationship with his father in a quest to become a major league baseball (MLB) player.", + "posterPath": "/e8Dx470lSbIL7OFj7TkFsWAONR5.jpg", + "backdropPath": "/puUUsAri2UchyJgsbkpO3HZfKiw.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2023-08-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.665, + "voteCount": 288, + "popularity": 6.3829 + }, + { + "id": 79678, + "title": "Rubberface", + "originalTitle": "Rubberface", + "overview": "A teen-age girl conceals her insecurity behind a barrage of jokes — until she meets an aspiring comedian who asks for her help with his new act. Janet is an over-weight girl who has a knack for making the other children in school laugh... by making fun of her own weight. In seeing the other kids' reactions, she feels that she might have what it takes to be a comedian. She visits the local comedy club where she finds Tony Moroni who is a struggling comedian whose jokes are less than funny. Together Tony helps Janet find self-esteem and Janet helps Tony with his material.", + "posterPath": "/sj5sqGKfySuDNehhOcWt2K94Tcj.jpg", + "backdropPath": "/q2WxDqf9GFTGZXq7LEMWqBDPrgg.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10770 + ], + "genres": [ + "Drama", + "Comedy", + "TV Movie" + ], + "releaseDate": "1981-01-01", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 3.7, + "voteCount": 26, + "popularity": 6.3823 + }, + { + "id": 94009, + "title": "Born Reckless", + "originalTitle": "Born Reckless", + "overview": "In order to use the publicity to get re-elected, a judge sentences a notorious gangster to fight in the war.", + "posterPath": "/2E0R1b3cCyq83JehkqmL7RNMep5.jpg", + "backdropPath": "/9lxGiaHFqvxleDXsnZ3QlPVQB5X.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 18, + 10752, + 10749 + ], + "genres": [ + "Crime", + "Comedy", + "Drama", + "War", + "Romance" + ], + "releaseDate": "1930-05-11", + "releaseYear": "1930", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 13, + "popularity": 6.3821 + }, + { + "id": 18256, + "title": "Castle Freak", + "originalTitle": "Castle Freak", + "overview": "John Reilly discovers that his family's newly inherited castle in Italy is haunted by a relentless, bloodthirsty creature.", + "posterPath": "/rZv3aUkNngyZeiCgAjOEF5n0tve.jpg", + "backdropPath": "/gggdkmSWasCCwtEItnvQw9NpFLi.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 27, + 9648 + ], + "genres": [ + "Thriller", + "Drama", + "Horror", + "Mystery" + ], + "releaseDate": "1996-04-20", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.107, + "voteCount": 233, + "popularity": 6.3819 + }, + { + "id": 85365, + "title": "Tony Arzenta", + "originalTitle": "Tony Arzenta", + "overview": "A mob hitman wants to retire, but his bosses don't think that's a good idea. Complications - and many bloody shootouts - ensue.", + "posterPath": "/p0IIvxBNY5N3CUEVooSTvjeUcUb.jpg", + "backdropPath": "/mSBdSd2vRGLdNMmUewsY1kqEkPi.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18 + ], + "genres": [ + "Action", + "Crime", + "Drama" + ], + "releaseDate": "1973-08-23", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 60, + "popularity": 6.3818 + }, + { + "id": 14582, + "title": "Passchendaele", + "originalTitle": "Passchendaele", + "overview": "Sergeant Michael Dunne fights in the 10th Battalion, AKA The \"Fighting Tenth\" with the 1st Canadian Division and participated in all major Canadian battles of the war, and set the record for highest number of individual bravery awards for a single battle", + "posterPath": "/2FMtSxzF2fR5dx5was9Kftjag0U.jpg", + "backdropPath": "/mm5itexxDxDZBemUrdX4Mm8Owgk.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10752, + 36 + ], + "genres": [ + "Drama", + "Romance", + "War", + "History" + ], + "releaseDate": "2008-10-17", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 115, + "popularity": 6.3794 + }, + { + "id": 160004, + "title": "Geometry", + "originalTitle": "Geometría", + "overview": "A boy is tired of failing geometry, so he summons a demon.", + "posterPath": "/2Ch38McqOKI22C3r0q9U3ZJuy1X.jpg", + "backdropPath": "/gJaNmOM7YPQHeKlOgnz2W2zgRUx.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27 + ], + "genres": [ + "Comedy", + "Horror" + ], + "releaseDate": "1987-01-01", + "releaseYear": "1987", + "originalLanguage": "es", + "voteAverage": 6.1, + "voteCount": 57, + "popularity": 6.3792 + }, + { + "id": 2977, + "title": "Becoming Jane", + "originalTitle": "Becoming Jane", + "overview": "Though young Jane Austen's financially strapped parents expect her to marry the nephew of wealthy Lady Gresham, Jane herself knows that such a union will destroy her creativity and sense of self-worth. Instead, she becomes involved with Tom Lefroy, a charming but penniless apprentice lawyer who gives her the knowledge of the heart she needs for her future career as a novelist.", + "posterPath": "/9v2hp5qrhx8JpodGPVYfRrSAxuv.jpg", + "backdropPath": "/r95IP56O3j8fz9a09x55lymr9uJ.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2007-03-02", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.311, + "voteCount": 1217, + "popularity": 6.3792 + }, + { + "id": 363925, + "title": "Operações Especiais", + "originalTitle": "Operações Especiais", + "overview": "In a crime-plagued area of Rio de Janeiro, a team of honest cops, including a determined rookie, fights corruption and mistrust on all sides.", + "posterPath": "/nq7iMDsMGhctGWYdA5SUCOZdNOl.jpg", + "backdropPath": "/u1dnUsnf2TVzPQNcpa1gZXwPC4V.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2015-10-07", + "releaseYear": "2015", + "originalLanguage": "pt", + "voteAverage": 6.6, + "voteCount": 118, + "popularity": 6.3784 + }, + { + "id": 40413, + "title": "Hikers", + "originalTitle": "Les Randonneurs", + "overview": "A quartet of Parisians embark upon a guided hike in Corsica and end up working through the sometimes comical chaos of their individual lives.", + "posterPath": "/jsp15ZnGZhXUmckz1QffsHEwCHg.jpg", + "backdropPath": "/2KU8ZSzj1Y9eYfZv4RYO2yCiO4v.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "1997-03-12", + "releaseYear": "1997", + "originalLanguage": "fr", + "voteAverage": 5.671, + "voteCount": 216, + "popularity": 6.3776 + }, + { + "id": 294254, + "title": "Maze Runner: The Scorch Trials", + "originalTitle": "Maze Runner: The Scorch Trials", + "overview": "Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKD’s vastly superior forces and uncover its shocking plans for them all.", + "posterPath": "/mYw7ZyejqSCPFlrT2jHZOESZDU3.jpg", + "backdropPath": "/4mcOCiR06dqQ5eoEJcG3zvonjOa.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53, + 12 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller", + "Adventure" + ], + "releaseDate": "2015-09-09", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.734, + "voteCount": 10776, + "popularity": 6.3774 + }, + { + "id": 19114, + "title": "Endless Love", + "originalTitle": "Endless Love", + "overview": "As their romance unfolds, Jade and David's growing love for one another becomes the scorn of Jade's father. However, when Jade's grades begin to drop, her father forbids the young couple from seeing each other for 30 days. Driven insane with frustration and desire, David attempts to reverse the decision, with catastrophic results.", + "posterPath": "/eAU5kEn3n2PROao46iqs0w57Tqr.jpg", + "backdropPath": "/2TgNJKANT9DPENJZf6GHqqRf0QP.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "1981-07-17", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 240, + "popularity": 6.377 + }, + { + "id": 45030, + "title": "Hard Hunted", + "originalTitle": "Hard Hunted", + "overview": "A nuclear trigger has been smuggled to the Middle East by an evil mastermind named Kane, and the weapons could upset the delicate balance of power in the region if they fall into the wrong hands. It's up to three bombshell federal agents to avert disaster and restore the precarious balance.", + "posterPath": "/esVXyG6o2tD42XmPKgAhPCfdEUY.jpg", + "backdropPath": "/mmIg2bXQDsUTl0T9chDybq51mx2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1992-09-11", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 43, + "popularity": 6.3766 + }, + { + "id": 202768, + "title": "Three", + "originalTitle": "Tri", + "overview": "Episodic WWII drama that follows a Yugoslav man through the war as he goes from witness to victim to aggressor.", + "posterPath": "/llAYnQ0F7gact7MozgpA6TM6DbP.jpg", + "backdropPath": "/2eSy3pZSyXJhNVNpH5Hd72t8MXb.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18 + ], + "genres": [ + "War", + "Drama" + ], + "releaseDate": "1965-05-12", + "releaseYear": "1965", + "originalLanguage": "sh", + "voteAverage": 7.1, + "voteCount": 17, + "popularity": 6.3765 + }, + { + "id": 768447, + "title": "Motherly", + "originalTitle": "Motherly", + "overview": "Kate and her daughter Beth live alone in an isolated farmhouse in the woods, but when Kate slowly begins to suspect that something sinister is happening, her motherly instincts are put to the test.", + "posterPath": "/wmh1likQEetSLIUs5MAvfWjEayY.jpg", + "backdropPath": "/ugZbX5lKx4L9ONEu0WTNbR96J0t.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2022-08-04", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.132, + "voteCount": 53, + "popularity": 6.3763 + }, + { + "id": 16178, + "title": "The Riddle", + "originalTitle": "The Riddle", + "overview": "A journalist investigates a series of murders that follows the discovery of an unpublished novel by Charles Dickens in the cellar of an old Thames pub.", + "posterPath": "/w6iivsXc6jjLhVoazzZHlshyQtq.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 53, + 9648, + 18 + ], + "genres": [ + "Thriller", + "Mystery", + "Drama" + ], + "releaseDate": "2007-10-14", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 23, + "popularity": 6.3763 + }, + { + "id": 5725, + "title": "Supervixens", + "originalTitle": "Supervixens", + "overview": "Clint must flee after his wife is killed by a psychopathic cop, who tries to pin the murder on him.", + "posterPath": "/ymlxw3Gt2F9PuWek9Nkf4zeUeLz.jpg", + "backdropPath": "/lNoqF8RInmKEDyElDKWf6I9NaV0.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1975-04-02", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 154, + "popularity": 6.3763 + }, + { + "id": 18475, + "title": "The Cookout", + "originalTitle": "The Cookout", + "overview": "When Todd Anderson signs a $30 million deal with his hometown team, the New Jersey Nets, he knows that his life is set for a big change. To keep things real, he decides to throw a barbeque at his place -- just like the ones his family used to have. But when you have new and old friends, family, agents, and product reps in the same house, things are bound to get crazy.", + "posterPath": "/zXOv514vAw57gquad1aP99CHOZ2.jpg", + "backdropPath": "/qOvEqQ8F7UuaraNfDHqxVJTbF7j.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2004-09-03", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 44, + "popularity": 6.3758 + }, + { + "id": 404580, + "title": "Spin Out", + "originalTitle": "Spin Out", + "overview": "Billy and Lucy have grown up together in a small, close-knit Australian country town, where they form one of the town's most formidable Ute driving teams. When Billy takes one risky car stunt too far, Lucy declares she is moving to the city - sending Billy into a spin. Amid the mayhem of the town's annual \"Bachelors and Spinsters\" party, Billy only has one night to wake up to his true feelings for his best friend - or lose her forever. Spin Out is a fresh, feel-good comedy romance for the young and the young at heart.", + "posterPath": "/9M4kLmtyi5XgbukVVNfJecKCGWp.jpg", + "backdropPath": "/j9wTGhQrG5fMF9uUk0d2I6slqxS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2016-09-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 73, + "popularity": 6.3757 + }, + { + "id": 581, + "title": "Dances with Wolves", + "originalTitle": "Dances with Wolves", + "overview": "Wounded Civil War soldier John Dunbar tries to commit suicide—and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.", + "posterPath": "/hw0ZEHAaTqTxSXGVwUFX7uvanSA.jpg", + "backdropPath": "/ywWva4trKw7f3wtbz81Fe3FnrtC.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 37 + ], + "genres": [ + "Adventure", + "Drama", + "Western" + ], + "releaseDate": "1990-03-30", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.84, + "voteCount": 4513, + "popularity": 6.3756 + }, + { + "id": 103510, + "title": "Ultraman Zero: The Revenge of Belial", + "originalTitle": "ウルトラマンゼロ THE MOVIE 超決戦!ベリアル銀河帝国", + "overview": "Ultraman Zero, the rookie Ultraman from Tsuburaya Productions’ 2009 theatrical movie returns, and getting full-fledged. However, he is confronted with the empowered Kaiser Belial, back from the evil Ultraman Belial whom he and other Ultraman warriors battled so hard on the m-78 Planet. Can Ultraman Zero live to the expectations of his legendary father Ultra Seven? Check it out in the latest Tsuburaya Productions’ action packed movie.", + "posterPath": "/1OemPTXG3gRPfjX7FNoIjOi05FU.jpg", + "backdropPath": "/nHZ5pr32sVVPjYnCmQ1DjL4QdzE.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 10751, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Family", + "Science Fiction" + ], + "releaseDate": "2010-12-23", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 14, + "popularity": 6.3751 + }, + { + "id": 776797, + "title": "The Sadness", + "originalTitle": "哭悲", + "overview": "A young couple is pushed to the limits of sanity as they attempt to be reunited amid the chaos of a pandemic outbreak. The streets erupt into violence and depravity, as those infected are driven to enact the most cruel and ghastly things imaginable.", + "posterPath": "/fIiATfeF4CInWChdYcsUr3NX1BO.jpg", + "backdropPath": "/dSwLzM4NxJp0aLsBJWcbZLtF7Oc.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2021-01-22", + "releaseYear": "2021", + "originalLanguage": "zh", + "voteAverage": 6.8, + "voteCount": 1027, + "popularity": 6.3739 + }, + { + "id": 77530, + "title": "Judgment Day", + "originalTitle": "Judgment Day", + "overview": "This sci-fi thriller finds the world in imminent danger when a collision in outer space sends huge pieces of interstellar debris on a path headed straight for Earth. A scientist has designed a system that would stop the largest meteor fragments from striking the earth, but a fanatical religious cult have made it their business to stop him. A convicted murderer (Ice-T) with ties to the group must now join forces with an FBI agent (Suzy Amis) to free the scientist from the cult's clutches and prevent millions of needless deaths. Mario Van Peebles and Linden Ashby appear in supporting roles", + "posterPath": "/gSidTyBx5S2JVajuxAIKCatswff.jpg", + "backdropPath": "/oGkJWmrKq3rd8wm72HklnU7Rz30.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878 + ], + "genres": [ + "Action", + "Science Fiction" + ], + "releaseDate": "1999-11-12", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.239, + "voteCount": 23, + "popularity": 6.3739 + }, + { + "id": 81529, + "title": "The Story of Linda", + "originalTitle": "Linda", + "overview": "Betsy Norman is a happy assistant at a luxurious Spanish hotel. Shiela, the hotel owner, caters for all wishes of her clientele with another lucrative business, the brothel \"Rio Amore\" where clients from all over the world come to relax with the girls and watch the sado-masochistic shows. Linda, Betsy's sister, is drugged and forced to work as a prostitute there.", + "posterPath": "/hKVg2Tfk0O4dN7Yk2AIuIPEr4Mz.jpg", + "backdropPath": "/87ko85COl8FUwXX80pu479ZQyTd.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 80, + 18 + ], + "genres": [ + "Adventure", + "Crime", + "Drama" + ], + "releaseDate": "1981-05-29", + "releaseYear": "1981", + "originalLanguage": "es", + "voteAverage": 4.8, + "voteCount": 26, + "popularity": 6.3733 + }, + { + "id": 218572, + "title": "Teresa", + "originalTitle": "Teresa", + "overview": "Teresa is a young widow who is concentrated on her little business until she hires Gino.", + "posterPath": "/3mnBBvNEgDj0TLh6VLyQ13FcWsS.jpg", + "backdropPath": "/lSMBHTZ7XzPHYgguRna9TnT5maL.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "1987-11-27", + "releaseYear": "1987", + "originalLanguage": "it", + "voteAverage": 4.079, + "voteCount": 19, + "popularity": 6.3732 + }, + { + "id": 1010600, + "title": "The Strangers: Chapter 1", + "originalTitle": "The Strangers: Chapter 1", + "overview": "After their car breaks down in an eerie small town, a young couple are forced to spend the night in a remote cabin. Panic ensues as they are terrorized by three masked strangers who strike with no mercy and seemingly no motives.", + "posterPath": "/oYsCNpW4k7Pd7ac3uQfBhr2ihtW.jpg", + "backdropPath": "/59AJ2w9tKRSbBpnxKfB5UyIg6Jf.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-05-15", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.653, + "voteCount": 635, + "popularity": 6.3727 + }, + { + "id": 184315, + "title": "Hercules", + "originalTitle": "Hercules", + "overview": "When a new enemy threatens the innocent, Hercules must lead his fearless team of warriors in a battle against overwhelming odds.", + "posterPath": "/5X3VOy9lD44VclKsWTi8gHZGjhL.jpg", + "backdropPath": "/nl18gyzai02Tu99VkURu7kCFrR8.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12 + ], + "genres": [ + "Action", + "Adventure" + ], + "releaseDate": "2014-07-23", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.798, + "voteCount": 4235, + "popularity": 6.3726 + }, + { + "id": 621103, + "title": "Pentagram", + "originalTitle": "Pentagram", + "overview": "A group of teenagers must somehow survive the night when they find themselves trapped within a pentagram. To stay inside the candlelit confines means safety; to escape means certain death at the hands of a mysterious entity.", + "posterPath": "/aXnw1q9QEamWTAgZX778hlun8vU.jpg", + "backdropPath": "/hXdWtd6E3u6O33FZ5XoZIkFYAWC.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2019-08-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 3.6, + "voteCount": 25, + "popularity": 6.3722 + }, + { + "id": 302429, + "title": "Strange Magic", + "originalTitle": "Strange Magic", + "overview": "A love potion works its devious charms on fairies, elves and the swamp-dwelling Bog King as they all try to possess the potion for themselves.", + "posterPath": "/vjCdrK8gGRFnyuZb1j9BzgN2RaY.jpg", + "backdropPath": "/aUbyQhWcPS7S0Su2d9Tgk3NxdPk.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 16, + 10751, + 14 + ], + "genres": [ + "Music", + "Animation", + "Family", + "Fantasy" + ], + "releaseDate": "2015-01-23", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 532, + "popularity": 6.3721 + }, + { + "id": 65887, + "title": "The Horse", + "originalTitle": "La Horse", + "overview": "Auguste Maroilleur, an elderly farmer, exploits 400 hectares of crop land with the help of his family, over which he rules with an iron hand. Things go awry the day he discovers one of his grandsons is involved in drug traffic. To make matters worse, the reckless youth has hidden the white powder in the Maroilleur farm. Without a moment's hesitation, Auguste gets rid of the toxic substance but, of course, the mob has different views...", + "posterPath": "/2DYwr5v3pQjkBu4JvSY0fZv37mO.jpg", + "backdropPath": "/oCOxfewSRp7brXqpB9BrJeN40mD.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1970-02-22", + "releaseYear": "1970", + "originalLanguage": "fr", + "voteAverage": 6.952, + "voteCount": 52, + "popularity": 6.3721 + }, + { + "id": 23942, + "title": "Paradise", + "originalTitle": "Paradise", + "overview": "After their caravan is attacked and their respective families butchered by Arab marauders, teenagers David and Sarah flee across the desert. But the desert is filled with danger from the elements, animals and the unwholesome appetite of the Jackal, a sheik who wants Sarah for himself. However, the desert also holds temptation and love. David and Sarah hide out in an oasis and build a life for themselves, discovering each other in new ways.", + "posterPath": "/vPWQ02RbO82ijIede7SYHcnhzoT.jpg", + "backdropPath": "/8f7TgUsnDTvJpdfOh6hPKmXiyuI.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 12 + ], + "genres": [ + "Romance", + "Adventure" + ], + "releaseDate": "1982-03-12", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.016, + "voteCount": 127, + "popularity": 6.3717 + }, + { + "id": 18533, + "title": "Bronson", + "originalTitle": "Bronson", + "overview": "A young man who was sentenced to 7 years in prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.", + "posterPath": "/6diyyGIbBNiANsdIaCGtyv4IofR.jpg", + "backdropPath": "/uc8FwdCQi3eD7JIbyiZuzo5n6Jv.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 80 + ], + "genres": [ + "Drama", + "Action", + "Crime" + ], + "releaseDate": "2009-03-13", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.964, + "voteCount": 2583, + "popularity": 6.3714 + }, + { + "id": 33821, + "title": "Pinocchio", + "originalTitle": "Pinocchio", + "overview": "The enchanted story of Pinocchio.", + "posterPath": "/gOiT5YjhS7nQGoPOhaEaaEwjBxS.jpg", + "backdropPath": "/hvZmzx6ekvbPQo8F4bcARwS91FU.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 14 + ], + "genres": [ + "Adventure", + "Drama", + "Fantasy" + ], + "releaseDate": "2009-11-01", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 100, + "popularity": 6.3711 + }, + { + "id": 42502, + "title": "The Brute", + "originalTitle": "El Bruto", + "overview": "A tough young man, who helps to kick poor people out of their houses, falls in love with a girl. She lives with her father in the building about to be demolished.", + "posterPath": "/mLSssRzdL1Ww4mje7sBoirWJTv6.jpg", + "backdropPath": "/uTrf7aWMduVdjLsRDi5SUq5B1hA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1953-02-05", + "releaseYear": "1953", + "originalLanguage": "es", + "voteAverage": 6.9, + "voteCount": 63, + "popularity": 6.371 + }, + { + "id": 527774, + "title": "Raya and the Last Dragon", + "originalTitle": "Raya and the Last Dragon", + "overview": "Long ago, in the fantasy world of Kumandra, humans and dragons lived together in harmony. But when an evil force threatened the land, the dragons sacrificed themselves to save humanity. Now, 500 years later, that same evil has returned and it’s up to a lone warrior, Raya, to track down the legendary last dragon to restore the fractured land and its divided people.", + "posterPath": "/5nVhgCzxKbK47OLIKxCR1syulOn.jpg", + "backdropPath": "/rcUcYzGGicDvhDs58uM44tJKB9F.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 28, + 12 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Action", + "Adventure" + ], + "releaseDate": "2021-03-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 7099, + "popularity": 6.3705 + }, + { + "id": 329505, + "title": "Lola's Secret", + "originalTitle": "Il peccato di Lola", + "overview": "Young man has his dreams come true when the sexy new maid seduces him. But she also has a secret that leads to trouble.", + "posterPath": "/5loBV97ZorJfsUntLpOXO84MjF8.jpg", + "backdropPath": "/tId87yE7JnQsQsqOpnGXjz9PoEe.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 27 + ], + "genres": [ + "Drama", + "Comedy", + "Horror" + ], + "releaseDate": "1984-05-04", + "releaseYear": "1984", + "originalLanguage": "it", + "voteAverage": 6.963, + "voteCount": 67, + "popularity": 6.3696 + }, + { + "id": 7857, + "title": "Amarcord", + "originalTitle": "Amarcord", + "overview": "In an Italian seaside town, young Titta gets into trouble with his friends and watches various local eccentrics as they engage in often absurd behavior. Frequently clashing with his stern father and defended by his doting mother, Titta witnesses the actions of a wide range of characters, from his extended family to Fascist loyalists to sensual women, with certain moments shifting into fantastical scenarios.", + "posterPath": "/6PcyPeenUgVb0S7htBKnW5xcVHy.jpg", + "backdropPath": "/iFQzlUmO5QmMPcSHHDdfd522x33.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1973-12-18", + "releaseYear": "1973", + "originalLanguage": "it", + "voteAverage": 7.893, + "voteCount": 1168, + "popularity": 6.3693 + }, + { + "id": 180, + "title": "Minority Report", + "originalTitle": "Minority Report", + "overview": "John Anderton is a top 'Precrime' cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge.", + "posterPath": "/qtgFcnwh9dAFLocsDk2ySDVS8UF.jpg", + "backdropPath": "/r1gLQFbpkWWLrOEPmpqzzMIUxxj.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "2002-06-20", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.35, + "voteCount": 9268, + "popularity": 6.3692 + }, + { + "id": 15910, + "title": "Post Impact", + "originalTitle": "Apokalypse Eis", + "overview": "Meteor Bay-Leder 7 struck earth on October 18th, 2012. Causing earthquakes, tidal waves, and a dust cloud that soon covered most of the Northern hemisphere, it changed the face of our planet forever.", + "posterPath": "/1GlM9DOMnT47VBWHigCaUzgZId0.jpg", + "backdropPath": "/aM2C5U8kQQG9X4QEopoEmOLBori.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 12, + 10770 + ], + "genres": [ + "Science Fiction", + "Adventure", + "TV Movie" + ], + "releaseDate": "2004-05-20", + "releaseYear": "2004", + "originalLanguage": "de", + "voteAverage": 4.5, + "voteCount": 47, + "popularity": 6.3671 + }, + { + "id": 187442, + "title": "¡Asu Mare!", + "originalTitle": "¡Asu Mare!", + "overview": "Follows the adventures of Carlos Alcántara on his way to fame from his childhood in the \"Unidad Vecinal Mirones\".", + "posterPath": "/lvMeJr4IaQl4mxcWTRmW6J6ITOh.jpg", + "backdropPath": "/xn09KS2qvYw1RFQ2Gx7CjMuV50b.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-04-11", + "releaseYear": "2013", + "originalLanguage": "es", + "voteAverage": 6.9, + "voteCount": 31, + "popularity": 6.3669 + }, + { + "id": 1052280, + "title": "It's What's Inside", + "originalTitle": "It's What's Inside", + "overview": "A pre-wedding reunion descends into a psychological nightmare for a group of college friends when a surprise guest arrives with a mysterious suitcase.", + "posterPath": "/6jzwaLoDurD6Jn2ILb42nFcn3xq.jpg", + "backdropPath": "/n09N2izas4LjZ3wlGK35XYV6PD9.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 9648, + 878 + ], + "genres": [ + "Comedy", + "Mystery", + "Science Fiction" + ], + "releaseDate": "2024-01-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.464, + "voteCount": 705, + "popularity": 6.3668 + }, + { + "id": 84749, + "title": "Deputy Droopy", + "originalTitle": "Deputy Droopy", + "overview": "Two outlaws are trying to steal a shipment of gold being guarded by Deputy Droopy, and have to keep quiet to avoid alerting the sheriff.", + "posterPath": "/x1lGE9vu3uJu9C4tOqEFIzHkP89.jpg", + "backdropPath": "/bX5wUnyyq6JJum6QS9MI6HyZeYm.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 37 + ], + "genres": [ + "Animation", + "Comedy", + "Western" + ], + "releaseDate": "1955-10-28", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 35, + "popularity": 6.3658 + }, + { + "id": 31919, + "title": "The Van", + "originalTitle": "The Van", + "overview": "Bobby blows all his college savings on a van and tries to get the girl of his dreams. It's a wild time with Bobby and his friends.", + "posterPath": "/vfahwduYFHzO5yf4rweyaadBe6x.jpg", + "backdropPath": "/3l2Q3CxUnxfSpxEMBJfYRneo2q.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1977-04-06", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 4.262, + "voteCount": 21, + "popularity": 6.3654 + }, + { + "id": 16143, + "title": "Nitro", + "originalTitle": "Nitro", + "overview": "Max leads a good life with Alice and their son Théo; that is until Alice is threatened with death while waiting for a heart transplant. Max promises Théo that he will save Alice, but to keep his word he must find a heart, and fast. Since time is running out and he must find a solution, Max decides to reconnect with his troubled past. His decision will change his life in ways he could never imagine", + "posterPath": "/iYiHJHIAkrdEQ8qQITARkBKslnK.jpg", + "backdropPath": "/tyzhxKntPy1sl4Mlb6A01BvgQOq.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2007-06-29", + "releaseYear": "2007", + "originalLanguage": "fr", + "voteAverage": 5.5, + "voteCount": 32, + "popularity": 6.3653 + }, + { + "id": 845887, + "title": "7th & Union", + "originalTitle": "7th & Union", + "overview": "Ex-fighter Raymundo forms an unlikely bond with a disgruntled man whose life and relationship with his daughter are unraveling. The men join forces to win a fight that could very well save Raymundo, his wife and their child.", + "posterPath": "/14AKMCxtF11UlYXLyjmTP22vDtl.jpg", + "backdropPath": "/we5SrLffSftYnNQbR7cxiE8KK5U.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-06-02", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.431, + "voteCount": 65, + "popularity": 6.3651 + }, + { + "id": 28520, + "title": "Uncertainty", + "originalTitle": "Uncertainty", + "overview": "Every choice has a consequence. But what if the flip of a coin could trigger two separate but parallel destinies? Bobby and Kate are a young New York couple at a crossroads whose lives are about to take very different directions. A seemingly ordinary July 4th is cleaved in two by the flip of a coin. One path leads them to gentle discoveries about family, loss and each other on a visit to Brooklyn, and the other plunges them into an urban nightmare of pursuit, suspense and murder in Manhattan.", + "posterPath": "/2ExRSYW80CZhhFI3DQaiweTlAGs.jpg", + "backdropPath": "/x0gF02Jz1lfI78zc0STKj7AvNYG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10749 + ], + "genres": [ + "Drama", + "Thriller", + "Romance" + ], + "releaseDate": "2009-11-15", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 111, + "popularity": 6.365 + }, + { + "id": 257862, + "title": "Olivia", + "originalTitle": "Olivia", + "overview": "\"Olivia\" captures the awakening passions of an English adolescent sent away for a year to a small finishing school outside Paris. The innocent but watchful Olivia develops an infatuation for her headmistress Julie and through this screen of love observes the tense romance between Julie and the other head of the school Cara in its final months.", + "posterPath": "/6kVDX2TRoRPFoduH64vLnX4Yr8Q.jpg", + "backdropPath": "/lay9iKOYXHJ8BKRxV88Ax8P0rja.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1951-04-27", + "releaseYear": "1951", + "originalLanguage": "fr", + "voteAverage": 6.538, + "voteCount": 39, + "popularity": 6.3648 + }, + { + "id": 1101448, + "title": "Unstoppable", + "originalTitle": "Unstoppable", + "overview": "With the unwavering love and support of his devoted mother Judy and the encouragement of his coaches, Anthony Robles fights through adversity to earn a spot on the Arizona State Wrestling team. But it will demand everything he has, physically and mentally, to achieve his ultimate quest to become an NCAA Champion.", + "posterPath": "/xanYKxuFkDPrMngvm1NSHVGOEjS.jpg", + "backdropPath": "/nxZDr6UZIhgYJev4yUzWTPZXQ3G.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2024-12-06", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.122, + "voteCount": 152, + "popularity": 6.3637 + }, + { + "id": 1242434, + "title": "Highest 2 Lowest", + "originalTitle": "Highest 2 Lowest", + "overview": "When a titan music mogul, widely known as having the \"best ears in the business\", is targeted with a ransom plot, he is jammed up in a life-or-death moral dilemma.", + "posterPath": "/RFQtinuiHhOnbmJaCn3uzegCYF.jpg", + "backdropPath": "/94KROr9xO9u5Tq5gTdCJlVRRfhm.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18 + ], + "genres": [ + "Thriller", + "Crime", + "Drama" + ], + "releaseDate": "2025-08-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 357, + "popularity": 6.3624 + }, + { + "id": 33166, + "title": "Downhill Racer", + "originalTitle": "Downhill Racer", + "overview": "An ambitious young skier, determined to break all existing records, is contemptuous of the teamwork advocated by the US coach when they go to Europe for the Olympics.", + "posterPath": "/fJDQDmJDiEzRROph0T1ace8oyNK.jpg", + "backdropPath": "/5oRRWumsuTrvMlBc6Mx9fChx3t2.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1969-11-06", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 95, + "popularity": 6.3622 + }, + { + "id": 1029654, + "title": "Cold Copy", + "originalTitle": "Cold Copy", + "overview": "A young broadcast journalism student is trying to win the approval of her influential mentor who pushes her to reconsider the meaning of truth if it means success.", + "posterPath": "/6uvjR7tiSycXeDiOu5uXYvXML4X.jpg", + "backdropPath": "/47nONWP0FHYy27KUfSeg7dnAOcm.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 18 + ], + "genres": [ + "Mystery", + "Thriller", + "Drama" + ], + "releaseDate": "2024-01-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.239, + "voteCount": 23, + "popularity": 6.3617 + }, + { + "id": 437375, + "title": "Looking Glass", + "originalTitle": "Looking Glass", + "overview": "A psycho- sexual thriller following a couple that buys an old motel in the desert looking for a new beginning, but what seemed at first as an escape is soon a thrilling ride through a mysterious world when Ray discovers a two way mirror and witnesses a horrifying murder. In a twisted game of cat and mouse, Ray must race to save his wife and himself from a gruesome secret connected to the motel and the strange people who visit there.", + "posterPath": "/6zSzaUmoUCwII2pGTqX1jaX8F0p.jpg", + "backdropPath": "/y10CET6cNCDgtrJ5psZmjtg9jGI.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "2018-02-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.758, + "voteCount": 329, + "popularity": 6.361 + }, + { + "id": 48601, + "title": "Clement", + "originalTitle": "Clément", + "overview": "Benoit turns 13 and develops an intense crush on his godmother, Marion. As they lie on beaches in the summer, she humors him by talking about the mysteries of women.", + "posterPath": "/vwdZpyozXuTYw9ZD3slaxp1He1c.jpg", + "backdropPath": "/v6K1L9hFG0hotpVBf3FCYFFMuPP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2001-06-06", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 4.7, + "voteCount": 17, + "popularity": 6.361 + }, + { + "id": 193893, + "title": "Let's Be Cops", + "originalTitle": "Let's Be Cops", + "overview": "Best pals Ryan and Justin are stalled in their respective careers -- a fact that is painfully driven home when they go to a college reunion. Dressed as police in the mistaken belief that they were to attend a costume party, Ryan and Justin find that the uniforms earn them much respect and attention. Although Justin is uncomfortable with the idea, Ryan decides to continue with the charade, putting them both in increasingly dangerous situations. When these newly-minted “heroes” get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.", + "posterPath": "/pf4FoUr2phn5WyZjU7rLXSiW1Ve.jpg", + "backdropPath": "/aa5P3DfHMD2Y5xotn2067A5OMAI.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-08-13", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.461, + "voteCount": 2900, + "popularity": 6.3608 + }, + { + "id": 63710, + "title": "Honey 2", + "originalTitle": "Honey 2", + "overview": "After a brush with the law, Maria has returned to her gritty Bronx roots to rebuild her life with nothing but a talent for street dance and a burning ambition to prove herself.", + "posterPath": "/qQnWrF7khfYvpWdEeKhSuoDCGA5.jpg", + "backdropPath": "/hZpapggtfwz47XDJqjVek7sAEBh.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 35, + 18 + ], + "genres": [ + "Music", + "Comedy", + "Drama" + ], + "releaseDate": "2011-06-23", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.269, + "voteCount": 405, + "popularity": 6.3606 + }, + { + "id": 444951, + "title": "New Life", + "originalTitle": "New Life", + "overview": "Benjamin Morton's life changed forever the day he met the little girl next door. Ava was and always would be the girl of his dreams. From the innocence of a childhood friendship, through adolescent attraction, their love strengthens and grows. When life takes a turn neither of them expected, their entire future is called into question.", + "posterPath": "/lFCuLSkOsvggknLaSKrll7JrzaU.jpg", + "backdropPath": "/kukdwmjG7ZudcQYWJ6Kcgd6YXir.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2016-10-28", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.583, + "voteCount": 42, + "popularity": 6.3603 + }, + { + "id": 41054, + "title": "Il Grido", + "originalTitle": "Il Grido", + "overview": "A sugar-refinery worker flees his Northern Italy town after a woman refuses his marriage proposal.", + "posterPath": "/anUoCgC45XL1nmLJoXD1kVKnwka.jpg", + "backdropPath": "/9o4dGUgFpI1aYKzkYLkQk8BfxQM.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1957-09-26", + "releaseYear": "1957", + "originalLanguage": "it", + "voteAverage": 7.5, + "voteCount": 162, + "popularity": 6.36 + }, + { + "id": 45930, + "title": "American Anthem", + "originalTitle": "American Anthem", + "overview": "Steve is a talented gymnast who has given up competition and is working at his father's bike shop. Julie is the new girl at his old gym, who has moved to town to train with their powerful coach. Inspired by Julie, Steve resumes training. While dealing with the conflicts in their personal lives and the stress of training, they prepare for the US Olympic Trials.", + "posterPath": "/cLFdihWnglEZVB98ruxMHC8Vrr6.jpg", + "backdropPath": "/6jlDsaPeaIBJitfcMKgfIMf8nRT.jpg", + "mediaType": "movie", + "genreIds": [ + 10749 + ], + "genres": [ + "Romance" + ], + "releaseDate": "1986-06-27", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 16, + "popularity": 6.3594 + }, + { + "id": 653665, + "title": "Farewell Amor", + "originalTitle": "Farewell Amor", + "overview": "Reunited after a 17-year separation, Walter, an Angolan immigrant, is joined in the U.S. by his wife and teenage daughter. Now absolute strangers sharing a one-bedroom apartment, they discover a shared love of dance that may help overcome the emotional distance between them.", + "posterPath": "/evH5FR3TGbRDWfftpdpQf5jIq5T.jpg", + "backdropPath": "/fZ7c5VDBIcWD6APnEObOJvW7Kh7.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2020-01-25", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.81, + "voteCount": 42, + "popularity": 6.3589 + }, + { + "id": 123825, + "title": "Minor Mishaps", + "originalTitle": "Små Ulykker", + "overview": "Minor Mishaps is the story of a family's reaction to the untimely death of their matriarch, examining the effect of the tragedy on John, her husband, who is himself ill, his daughters, Marianne and Eva, and their friends and family. When a man's wife dies in an accident, his children return home to deal with the tragedy together. The film throws a spotlight on each of their lives as they confront the changed dynamic in the family and their own lives, with some surprises, revelations and false accusations occurring along the way.", + "posterPath": "/a3SosHB96YeQA0eFjT3GS7uo9Ty.jpg", + "backdropPath": "/zUXpn8192DpwxrzWMCfd6iJZhCF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2002-02-15", + "releaseYear": "2002", + "originalLanguage": "da", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 6.3588 + }, + { + "id": 375741, + "title": "Anatomy of Evil", + "originalTitle": "Anatomia zła", + "overview": "Lulek, a hit man, is released from prison and given an offer he can't refuse by the man who put him away. If he kills the chief of the Central Bureau of Investigations, he will earn a huge sum of money and have his record cleared so he can leave.", + "posterPath": "/cpvYT0G86vY248L3Ti5wAOuZlEG.jpg", + "backdropPath": "/fblA2zUZuCfOpwIAk5ma2VC1WOu.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2015-09-18", + "releaseYear": "2015", + "originalLanguage": "pl", + "voteAverage": 5.5, + "voteCount": 27, + "popularity": 6.3587 + }, + { + "id": 406535, + "title": "Scarred Hearts", + "originalTitle": "Inimi cicatrizate", + "overview": "During the summer of 1937, Emanuel, a young man in his early twenties, is committed to a sanatorium on the Black Sea coast for treatment of his bone tuberculosis. The treatment consists of painful spine punctures that confine him to a plaster on a stretcher-bed. Little by little, as Emanuel gets accustomed to the sadness of his new life, he discovers that inside the sanatorium there is still a life to be lived to the fullest.", + "posterPath": "/zTMwQ2nR8dcmKuGeCtzwm2CuFYt.jpg", + "backdropPath": "/5uzElMTYecbhrUsiIIaL1qEID4y.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-11-02", + "releaseYear": "2017", + "originalLanguage": "ro", + "voteAverage": 6.667, + "voteCount": 18, + "popularity": 6.3583 + }, + { + "id": 607822, + "title": "Vault", + "originalTitle": "Vault", + "overview": "A group of small time criminals in 1975 attempt to pull off the biggest heist in American history; stealing over $30 million from the Mafia in the smallest state in the union, Rhode Island.", + "posterPath": "/x0Z92A1t6M2OccILpnBXGP7W4XC.jpg", + "backdropPath": "/6NLmvkjpsNfROCI4xdIq9gVwxON.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2019-07-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.687, + "voteCount": 75, + "popularity": 6.3582 + }, + { + "id": 1400784, + "title": "Selena y Los Dinos: A Family's Legacy", + "originalTitle": "Selena y Los Dinos: A Family's Legacy", + "overview": "Never-before-seen footage and intimate interviews celebrate the life and legacy of iconic Mexican American singer Selena Quintanilla and her family band.", + "posterPath": "/9dNDTnc2KsX7g73V5l1D0YCAQqa.jpg", + "backdropPath": "/wOXCi4Kp3c2YkvPPIonTlsjkMfP.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 10402 + ], + "genres": [ + "Documentary", + "Music" + ], + "releaseDate": "2025-01-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 9.278, + "voteCount": 18, + "popularity": 6.3569 + }, + { + "id": 117263, + "title": "Olympus Has Fallen", + "originalTitle": "Olympus Has Fallen", + "overview": "When the White House (Secret Service Code: \"Olympus\") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning's inside knowledge to help retake the White House, save the President and avert an even bigger disaster.", + "posterPath": "/u3GTFGwesNBNd0t1hiLaEk1iqZU.jpg", + "backdropPath": "/mjYU7EwVeOtM39ArdWHZk78VhYm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2013-03-20", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.413, + "voteCount": 6880, + "popularity": 6.3569 + }, + { + "id": 194160, + "title": "White Star", + "originalTitle": "White Star", + "overview": "A clean-cut synth artist in Germany hopes to turn his career around with the help of a washed-up, erratic, publicity-crazed American manager.", + "posterPath": "/7VI8wTF5eyYvP1KIJg6URZiovKC.jpg", + "backdropPath": "/hqwwoEFj5HoF4huGh08inpPsky7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "1983-10-27", + "releaseYear": "1983", + "originalLanguage": "de", + "voteAverage": 5.9, + "voteCount": 14, + "popularity": 6.3563 + }, + { + "id": 438148, + "title": "Minions: The Rise of Gru", + "originalTitle": "Minions: The Rise of Gru", + "overview": "A fanboy of a supervillain supergroup known as the Vicious 6, Gru hatches a plan to become evil enough to join them, with the backup of his followers, the Minions.", + "posterPath": "/wKiOkZTN9lUUUNZLmtnwubZYONg.jpg", + "backdropPath": "/wZS4xSfPtk1NPQnx9zsT5R2WhCu.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16, + 878, + 14 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation", + "Science Fiction", + "Fantasy" + ], + "releaseDate": "2022-06-29", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 3866, + "popularity": 6.3552 + }, + { + "id": 24073, + "title": "Opportunity Knocks", + "originalTitle": "Opportunity Knocks", + "overview": "Eddie and Lou are a couple of two-bit con men on the lam from a loan shark. They hide out in someone's house and they hear on the answering machine that (A) the owner of the house is out of the country for a month or two and (B) the housesitter supposed to watch the house for the absent owner won't be able to watch the house due to a new job in another part of the country. This provides for a pretty nifty arrangement for Eddie and Lou...until the relatives of the house owner drop by to visit. Eddie quickly adopts the guise of the person supposedly housesitting for the owner, and the shenanigans start from there.", + "posterPath": "/2X2uPNrUAtHDC007SYFuGeOkwgP.jpg", + "backdropPath": "/jf36YJ55KCEEL4HU8oSdK85YqHH.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1990-03-30", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 49, + "popularity": 6.3547 + }, + { + "id": 35040, + "title": "Croc", + "originalTitle": "Croc", + "overview": "A large man-eating crocodile terrorizes tourists and locals near Krabi, in Thailand. Michael Madsen plays a hunter stalking the immense reptile, while sub-plots include a rivalry between a foreigner, who owns a crocodile-farm, and a Thai man who plays a part in framing the foreigner for the crocodile's rampage.", + "posterPath": "/c3moWZrfZRp38FWystfNYTrGOh4.jpg", + "backdropPath": "/gOQLPvoMhiQHlIxNgIgvYvGkJPL.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 10770 + ], + "genres": [ + "Horror", + "Action", + "TV Movie" + ], + "releaseDate": "2007-09-20", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.295, + "voteCount": 56, + "popularity": 6.3545 + }, + { + "id": 5994, + "title": "The Family Man", + "originalTitle": "The Family Man", + "overview": "Jack's lavish, fast-paced lifestyle changes one Christmas night when he stumbles into a grocery store holdup and disarms the gunman. The next morning he wakes up in bed lying next to Kate, his college sweetheart he left in order to pursue his career, and to the horrifying discovery that his former life no longer exists. As he stumbles through this alternate suburban universe, Jack finds himself at a crossroad where he must choose between his high-power career and the woman he loves.", + "posterPath": "/9wToOVsKuf0XeKhlauzCa3D8Gui.jpg", + "backdropPath": "/gnosJeDIDQXy9uDewXphEpDWNYT.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749, + 14 + ], + "genres": [ + "Comedy", + "Drama", + "Romance", + "Fantasy" + ], + "releaseDate": "2000-12-12", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.809, + "voteCount": 2093, + "popularity": 6.3534 + }, + { + "id": 9081, + "title": "Waking Life", + "originalTitle": "Waking Life", + "overview": "Waking Life is about a young man in a persistent lucid dream-like state. The film follows its protagonist as he initially observes and later participates in philosophical discussions that weave together issues like reality, free will, our relationships with others, and the meaning of life.", + "posterPath": "/2MRM4PL6H7yraAkwyUEe2EqoQH3.jpg", + "backdropPath": "/56MLZww2dMVAaTt5LDKCBu1do2X.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 14 + ], + "genres": [ + "Animation", + "Drama", + "Fantasy" + ], + "releaseDate": "2001-10-19", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.473, + "voteCount": 918, + "popularity": 6.3527 + }, + { + "id": 126434, + "title": "Colonel Wolodyjowski", + "originalTitle": "Pan Wołodyjowski", + "overview": "In 1668 Polish colonel Michał Wołodyjowski, who recently retired to a monastery, is recalled to active duty and takes charge of Poland's eastern frontier defenses against invading Tatar hordes and Ottoman armies.", + "posterPath": "/n0BmWm8XpbgplHQlNGhqUWc5XQw.jpg", + "backdropPath": "/arvKnOUz6EvB5Do8EMD9MuwZYXp.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 12, + 10752 + ], + "genres": [ + "History", + "Adventure", + "War" + ], + "releaseDate": "1969-03-28", + "releaseYear": "1969", + "originalLanguage": "pl", + "voteAverage": 7, + "voteCount": 56, + "popularity": 6.3516 + }, + { + "id": 75736, + "title": "Catch.44", + "originalTitle": "Catch.44", + "overview": "The lives of three female assassins take a sudden turn when their charming boss lures them into one last job. They soon find themselves thrust into a bizarre situation involving a psychotic hit man, a grizzled trucker and a delusional line cook.", + "posterPath": "/mbDQA2a3H9CbEHr7bDkaqxAGDO1.jpg", + "backdropPath": "/yl52nn4i81rNxtzcBIhgMSsYTaC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53 + ], + "genres": [ + "Drama", + "Action", + "Thriller" + ], + "releaseDate": "2011-12-08", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.064, + "voteCount": 360, + "popularity": 6.3511 + }, + { + "id": 412200, + "title": "Clair Obscur", + "originalTitle": "Tereddüt", + "overview": "Şehnaz, a young female psychiatrist from Istanbul, starts mandatory duty in a provincial town. Back in the city, she maintains a marriage that looks flawless on the outside. Elmas, a young woman on the verge of breakdown, opens a new path in her.", + "posterPath": "/um5XZsYoKCB2gt6I6dk7z1Yf01n.jpg", + "backdropPath": "/cbcgHdeqcZklpd7pL1if4fjNWn8.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-12-07", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 5.607, + "voteCount": 42, + "popularity": 6.3506 + }, + { + "id": 11478, + "title": "The Skulls", + "originalTitle": "The Skulls", + "overview": "A senior at an Ivy League college, who depends on scholarships and working on the side, gets accepted into the secret society The Skulls. He hopes it betters chances at Harvard but The Skulls is not what he thought and comes at a price.", + "posterPath": "/pYuggibfzm8LWgjnUKMMtii2430.jpg", + "backdropPath": "/4kWVUyJAF9AUrcBlNBOxs4ikcQf.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2000-03-31", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 5.77, + "voteCount": 575, + "popularity": 6.3506 + }, + { + "id": 10477, + "title": "Driven", + "originalTitle": "Driven", + "overview": "Talented rookie race-car driver Jimmy Bly has started losing his focus and begins to slip in the race rankings. It's no wonder, with the immense pressure being shoveled on him by his overly ambitious promoter brother as well as Bly's romance with his arch rival's girlfriend Sophia. With much riding on Bly, car owner Carl Henry brings former racing star Joe Tanto on board to help Bly. To drive Bly back to the top of the rankings, Tanto must first deal with the emotional scars left over from a tragic racing accident which nearly took his life.", + "posterPath": "/8tJ4Ya8yEyxCMihDumEyvwvUuLB.jpg", + "backdropPath": "/w4Jvkb6BQGvQ3K3aECMsy6bZln3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2001-04-27", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.136, + "voteCount": 784, + "popularity": 6.3505 + }, + { + "id": 113885, + "title": "The Tempest", + "originalTitle": "The Tempest", + "overview": "An adaptation of Shakespeare's classic is set in the Mississippi bayous during the Civil War.", + "posterPath": "/xqwfH7aIqB8dsjN2s05rzBbhoLm.jpg", + "backdropPath": "/nKOU5UFpemgScmGnrGqpXeqyrZV.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 878, + 10770 + ], + "genres": [ + "Drama", + "Fantasy", + "Science Fiction", + "TV Movie" + ], + "releaseDate": "1998-12-13", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 12, + "popularity": 6.3503 + }, + { + "id": 10734, + "title": "Escape from Alcatraz", + "originalTitle": "Escape from Alcatraz", + "overview": "San Francisco Bay, January 18, 1960. Frank Lee Morris is transferred to Alcatraz, a maximum security prison located on a rocky island. Although no one has ever managed to escape from there, Frank and other inmates begin to carefully prepare an escape plan.", + "posterPath": "/uORr2GXQnyqgBOg6tVsRCJD2qxc.jpg", + "backdropPath": "/lfLVH3F8Xt8nITqG9cn97b54au1.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1979-06-22", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 7.507, + "voteCount": 3016, + "popularity": 6.3499 + }, + { + "id": 111359, + "title": "Secret People", + "originalTitle": "Secret People", + "overview": "This tale of intrigue finds Valentina Cortese involved in an assassination plot. She helps the police apprehend the conspirators after an innocent bystander is accidentally killed.", + "posterPath": "/pMm0VzQMtl4iHEW3Xoj8FCoP51j.jpg", + "backdropPath": "/hqEaOoOBzhHjiuMwE2Hizk7yIq4.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1952-02-05", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 6.344, + "voteCount": 16, + "popularity": 6.3495 + }, + { + "id": 143547, + "title": "Silent Tongue", + "originalTitle": "Silent Tongue", + "overview": "Mad with grief after the death of his Kiowa wife, Roe awaits death under a tree with her body beside him. She begins to haunt him because he won't bury her. His father, who bought him the wife, thinks her sister might reason with Roe.", + "posterPath": "/9BqpMgVDdvfCK68cgcZGSpf7IzH.jpg", + "backdropPath": "/gjfiRbLg0PV6aLpHOtscL9rL9mx.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 27, + 18, + 10749 + ], + "genres": [ + "Western", + "Horror", + "Drama", + "Romance" + ], + "releaseDate": "1993-01-28", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 20, + "popularity": 6.349 + }, + { + "id": 77363, + "title": "The Photograph", + "originalTitle": "The Photograph", + "overview": "Sita is an escort at a karaoke bar who struggles to raise money to send her daughter out of the city to live with her grandmother and settle her debts with her pimp. She moves in with aging photographer Jan and helps him fulfill his last wishes.", + "posterPath": "/j4FddarKnZPe3NqNYIv59S8k5U7.jpg", + "backdropPath": "/q1w0Y3kwQFkJZWIeOlcWKXw2KKZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-07-05", + "releaseYear": "2007", + "originalLanguage": "id", + "voteAverage": 5.636, + "voteCount": 11, + "popularity": 6.3483 + }, + { + "id": 60456, + "title": "Girlfriends", + "originalTitle": "Mes Copines", + "overview": "Manon, Aurore, and Marie would like to represent their school at the Youth Challenge “Dance Special” organized by Paris’s city hall. If they win, they could have a month’s vacation in a country of their dreams, free from all constraints.", + "posterPath": "/6CCk7TDs3ydiFQCqCkpyrrHthe2.jpg", + "backdropPath": "/k3C60NvPspj6ThUfpF9YJQPxjY7.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-06-21", + "releaseYear": "2006", + "originalLanguage": "fr", + "voteAverage": 4.423, + "voteCount": 26, + "popularity": 6.3481 + }, + { + "id": 84847, + "title": "Cinderella Liberty", + "originalTitle": "Cinderella Liberty", + "overview": "A lonely Navy sailor falls in love with a Seattle hooker and becomes a surrogate father figure for her son during an extended liberty due to his service records being lost.", + "posterPath": "/eySmZJyPAJ4nQDvrpU59NSCbZHI.jpg", + "backdropPath": "/5CmrF7EqhYINcKh5uoS66GVOQyw.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 35 + ], + "genres": [ + "Drama", + "Romance", + "Comedy" + ], + "releaseDate": "1973-12-18", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 30, + "popularity": 6.3474 + }, + { + "id": 17923, + "title": "Mausoleum", + "originalTitle": "Mausoleum", + "overview": "By way of an unnatural urge during her Mother's funeral, Susan enters her family's mausoleum, which unleashes an evil presence to lurk inside of her.", + "posterPath": "/ja8PGBkwYu347N08iAyR5rs7YZE.jpg", + "backdropPath": "/wDUMDFMq1nwWGf2OHnpCOxlOx3N.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1983-05-01", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 78, + "popularity": 6.3468 + }, + { + "id": 923667, + "title": "Twilight of the Warriors: Walled In", + "originalTitle": "九龍城寨之圍城", + "overview": "In 1980s Hong Kong, troubled youth Chan Lok-kwun, a mainland refugee, struggles to survive in the Kowloon Walled City by joining underground fights. Betrayed by crime boss Mr. Big while trying to buy a fake ID, he steals drugs from him and seeks refuge in the Walled City, where he encounters Cyclone, a compassionate yet authoritative crime lord.", + "posterPath": "/h0tunBO4tMjvKVVG7fXqHgwOr5C.jpg", + "backdropPath": "/kK76jqpSI832Ucsx2qDEpxXNtXv.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "2024-05-01", + "releaseYear": "2024", + "originalLanguage": "cn", + "voteAverage": 7.001, + "voteCount": 398, + "popularity": 6.3464 + }, + { + "id": 39545, + "title": "TiMER", + "originalTitle": "TiMER", + "overview": "When implanted in a person's wrist, a TiMER counts down to the day the wearer finds true love. But Oona O'Leary faces the rare dilemma of a blank TiMER. Her soul mate - whoever and wherever he is - has yet to have a TiMER implanted. Staring down the barrel of thirty and tired of waiting for her would-be life partner to get off the dime, Oona breaks her own rules and falls for Mikey, a charming and inappropriately young supermarket clerk with a countdown of four months.", + "posterPath": "/i9QHzVqko9YxNCGdH8vnruy78nK.jpg", + "backdropPath": "/fYrWYtAQoeW00vflpeVbvJjkEjb.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 18, + 35, + 878, + 10749 + ], + "genres": [ + "Fantasy", + "Drama", + "Comedy", + "Science Fiction", + "Romance" + ], + "releaseDate": "2009-05-14", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.274, + "voteCount": 250, + "popularity": 6.3464 + }, + { + "id": 566367, + "title": "Midnight Family", + "originalTitle": "Midnight Family", + "overview": "In Mexico City's wealthiest neighborhoods, the Ochoa family runs a for-profit ambulance, competing with other unlicensed EMTs for patients in need of urgent care. In this cutthroat industry, they struggle to keep their financial needs from compromising the people in their care.", + "posterPath": "/qmTEtmJ1Ps17Y9uP428IGbiQayA.jpg", + "backdropPath": "/g7ss0Sp9nsDaj37z3nCHTknsMOQ.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2019-03-29", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 7, + "voteCount": 71, + "popularity": 6.3457 + }, + { + "id": 11604, + "title": "Anthony Zimmer", + "originalTitle": "Anthony Zimmer", + "overview": "François, an ordinary Joe, falls hard for the sublimely beautiful woman who has just picked him up on the train and invited him to spend the weekend with her on the Riviera. But when the lady disappears the next morning and the police drag him in for questioning, François discovers he's been set up to pass for her notorious outlaw husband on the run, Anthony Zimmer. Even though he's been lied to and manipulated, François' life is changed forever and he's ready to give anything - maybe even his life - to hold this mysterious beauty in his arms again.", + "posterPath": "/mMBJnGPOr5lr7Dnyr3O4sMgpKPM.jpg", + "backdropPath": "/sD17m2rWAQpRXOB2TiN2IgJBRVG.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 18, + 10749 + ], + "genres": [ + "Thriller", + "Crime", + "Drama", + "Romance" + ], + "releaseDate": "2005-04-01", + "releaseYear": "2005", + "originalLanguage": "fr", + "voteAverage": 6.268, + "voteCount": 237, + "popularity": 6.3457 + }, + { + "id": 51560, + "title": "Oz", + "originalTitle": "Oz", + "overview": "Teenage groupie Dorothy is riding with a rock band when, suddenly, the van runs off the road, and she hits her head. She awakes in a fantasy world as gritty and realistic as her own and learns that her arrival killed a young thug. A gay clothier, Glyn the Good Fairy, gives her a pair of red heels as a reward to help her see the last concert of the Wizard, an androgynous glam rock star. As she's pursued and sexually threatened by the late thug's brother, she encounters and befriends a brainless surfer, a heartless mechanic, and a cowardly biker.", + "posterPath": "/pFhWEWzZNhiQBrLVJfcFWDGMP6C.jpg", + "backdropPath": "/9u8ivUdOMZhVdMIgEznyBbVogww.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 14, + 35 + ], + "genres": [ + "Music", + "Fantasy", + "Comedy" + ], + "releaseDate": "1976-07-29", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 13, + "popularity": 6.3455 + }, + { + "id": 463843, + "title": "Sweetheart", + "originalTitle": "Sweetheart", + "overview": "Jenn has washed ashore a small tropical island and it doesn’t take her long to realize she’s completely alone. She must spend her days not only surviving the elements, but must also fend off the malevolent force that comes out each night.", + "posterPath": "/xyPPBPkGbZxfS6UM4PjR5bnVfwR.jpg", + "backdropPath": "/de51GG0AQZj8dUm00aQUi4wisBr.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2019-01-28", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.392, + "voteCount": 388, + "popularity": 6.3454 + }, + { + "id": 91583, + "title": "Perfect Friday", + "originalTitle": "Perfect Friday", + "overview": "The deputy manager of a London bank has worked out a way to rob the branch of £200,000. When he becomes involved with the attractive Lady Dorset he decides to go ahead with his plan. He needs her help and that of her philandering spendthrift husband. It all comes down to a matter of trust.", + "posterPath": "/nnlGtQgg6yYnnq9PAo5BJmo1TA2.jpg", + "backdropPath": "/1CNov0ElVrYUzTLJUReangjzJw3.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "1970-11-10", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 28, + "popularity": 6.3454 + }, + { + "id": 271709, + "title": "Initial D Legend 1: Awakening", + "originalTitle": "新劇場版「頭文字D」Legend1 -覚醒-", + "overview": "Koichiro of the Akina Speedstars witnesses a mysterious driver outmaneuver rival Keisuke of the Akagi RedSuns. The race, he later discovers, was won by none other than his own co-worker, Takumi. What happens next is the stuff of street racing legend!", + "posterPath": "/zSci8PgMcmWp0P2TkdYEkohv2Ji.jpg", + "backdropPath": "/q0luM428CMZpIrAmM6sF5MVNuRa.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28 + ], + "genres": [ + "Animation", + "Action" + ], + "releaseDate": "2014-08-24", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 75, + "popularity": 6.3451 + }, + { + "id": 127848, + "title": "All That Matters Is Past", + "originalTitle": "Uskyld", + "overview": "Reunited after years apart, childhood sweethearts William and Janne are forced to confront the dark secrets of their past-and the menacing presence of William's pathologically jealous brother — in this haunting story from celebrated Norwegian director Sara Johnsen.", + "posterPath": "/5eSRDRKgyFp0nq8h6oEYv12u1ss.jpg", + "backdropPath": "/14IN3X3Qu5OU2nL9iqJzfO2MdiO.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 9648 + ], + "genres": [ + "Thriller", + "Drama", + "Mystery" + ], + "releaseDate": "2012-11-02", + "releaseYear": "2012", + "originalLanguage": "no", + "voteAverage": 5.432, + "voteCount": 22, + "popularity": 6.3449 + }, + { + "id": 540023, + "title": "Wander Darkly", + "originalTitle": "Wander Darkly", + "overview": "New parents Adrienne and Matteo are forced to reckon with trauma amidst their troubled relationship. They must revisit the memories of their past and unravel haunting truths in order to face their uncertain future.", + "posterPath": "/96snLzPYifC4FyL2uOnzo4DPgCv.jpg", + "backdropPath": "/wO8vg2bB4rR7lGtIlZ7mJlcfwJ7.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2020-12-11", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 69, + "popularity": 6.3437 + }, + { + "id": 153913, + "title": "Intern", + "originalTitle": "Intern", + "overview": "A young, underappreciated intern at the ultra-hip magazine Skirt must learn to deal with kissy-face phoniness, model tantrums and bulimic editors, while trying to steal the heart of a dashing British art director from the grips of a supermodel.", + "posterPath": "/cCMnPYJBTus7kuTx06BmTKQe64P.jpg", + "backdropPath": "/qR4QqM2mUx9gdaYOhHK3utvLapy.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-01-21", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 3.433, + "voteCount": 15, + "popularity": 6.3437 + }, + { + "id": 40494, + "title": "Trapeze", + "originalTitle": "Trapeze", + "overview": "A pair of men try to perform the dangerous \"triple\" in their trapeze act. Problems arise when the duo is made into a trio following the addition of a sexy female performer.", + "posterPath": "/3EZKz21OMvvyYg3UqZ3BBzHjWiq.jpg", + "backdropPath": "/lSFjxHcbFnZb9gh6VJvsZ9t4d70.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1956-05-30", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 93, + "popularity": 6.3425 + }, + { + "id": 28978, + "title": "The Circus", + "originalTitle": "The Circus", + "overview": "Charlie, a wandering tramp, becomes a circus handyman - soon the star of the show - and falls in love with the circus owner's stepdaughter.", + "posterPath": "/hWw9HfQmd4Rn1Et4vgZQsEf5tEZ.jpg", + "backdropPath": "/Alhc9UUvZxOlYtcoNawT1u4oDVD.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "1928-01-06", + "releaseYear": "1928", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 859, + "popularity": 6.3412 + }, + { + "id": 382597, + "title": "R.A.I.D. Special Unit", + "originalTitle": "RAID Dingue", + "overview": "The story of a woman who dreams to join an intervention group in the police department called RAID. Unfortunately, she is rather clumsy and both her family (and soon to be family-in-law) and a veteran of the RAID do not approve. However, Johanna is determined to prove them wrong.", + "posterPath": "/2RQoRqtsQ9pZpcg7Hcb5fa5eCNx.jpg", + "backdropPath": "/tQn6HwyzGCDCrgfq6fTExnTJptu.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2017-02-01", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 5.738, + "voteCount": 929, + "popularity": 6.3408 + }, + { + "id": 1164355, + "title": "Lembayung", + "originalTitle": "Lembayung", + "overview": "Arum and Pica, who wanted to complete their internship at Lembayung hospital, had to face mysterious terror from a woman satan who was suspected of hanged herself in the bathroom. The situation became even more tense after they asked others for help to the point where they threatened their own lives and those closest to them.", + "posterPath": "/5x9LrW0yvtt6S3XovIQHgXfYvLL.jpg", + "backdropPath": "/1LSMstNHwJnJD7tpnb8gZcgGNQR.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-09-19", + "releaseYear": "2024", + "originalLanguage": "id", + "voteAverage": 7.2, + "voteCount": 10, + "popularity": 6.3401 + }, + { + "id": 355506, + "title": "Siren", + "originalTitle": "Siren", + "overview": "A bachelor party becomes a savage fight for survival when the groomsmen unwittingly unleash a fabled predator upon the festivities.", + "posterPath": "/dAEodQQODOtOlhiQQTW7n1eS9ft.jpg", + "backdropPath": "/xywle3yMnKbbuUaFhDMtGo1n6aw.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2016-12-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.933, + "voteCount": 283, + "popularity": 6.3396 + }, + { + "id": 3062, + "title": "42nd Street", + "originalTitle": "42nd Street", + "overview": "A producer puts on what may be his last Broadway show, and at the last moment a chorus girl has to replace the star.", + "posterPath": "/q4UEd8BL74zVsOOaJkKVMLMmdTg.jpg", + "backdropPath": "/5a5lJCew2hGBcd6abdMkomr9mos.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1933-03-11", + "releaseYear": "1933", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 206, + "popularity": 6.3379 + }, + { + "id": 381873, + "title": "Accel World: Infinite Burst", + "originalTitle": "アクセル・ワールド INFINITE∞BURST", + "overview": "In 2046, many aspects of life are carried out on a virtual network. No matter how advanced the time becomes, however, bullying never disappears. Haruyuki is one of the bullied students. However, one day he is contacted by Kuroyukihime, the most famous person in the school. \"Wouldn't you like to 'accelerate' and go further ahead, boy?\" Haruyuki is introduced to the \"Accel World\" and decides to fight as Kuroyukihime's knight.", + "posterPath": "/xyya6A2M4gxFdw0bhhlOdU5kw3N.jpg", + "backdropPath": "/vRY3TEU3aspFVVicyh8Y5zVAJkN.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 878 + ], + "genres": [ + "Animation", + "Action", + "Science Fiction" + ], + "releaseDate": "2016-07-23", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.563, + "voteCount": 48, + "popularity": 6.3369 + }, + { + "id": 131689, + "title": "The Wicked", + "originalTitle": "The Wicked", + "overview": "A Group of teenagers test the legend of an immortal witch and get more than they bargained for. It's almost Halloween and six young people, spooked but not undaunted by the folklore surrounding an old haunted house, make their way to the abode of the legendary Wicked, perhaps hoping to provoke the malevolent witch, but clearly not prepared for what they've certainly unleashed.", + "posterPath": "/tpkdYglyMhTi1UkmgFn3jTAwPLz.jpg", + "backdropPath": "/hyJkYb5rEUXEZW6HfymnR6AsoKP.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27, + 53 + ], + "genres": [ + "Fantasy", + "Horror", + "Thriller" + ], + "releaseDate": "2013-03-20", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.092, + "voteCount": 92, + "popularity": 6.3353 + }, + { + "id": 1017633, + "title": "How to Date Billy Walsh", + "originalTitle": "How to Date Billy Walsh", + "overview": "Archie has been in love with his best friend Amelia for as long as he can remember. Just when he builds up the courage to declare his feelings, she falls head over heels for Billy Walsh, a new American transfer student.", + "posterPath": "/5qcHcoJL3otMwJPKnbV5M3a1jQd.jpg", + "backdropPath": "/xHhDA63HYklr4FMdxAd05FqhhhF.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2024-04-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.388, + "voteCount": 174, + "popularity": 6.3352 + }, + { + "id": 302323, + "title": "Manhattan Romance", + "originalTitle": "Manhattan Romance", + "overview": "Danny, a commercial editor and documentary filmmaker attempts to finish his film, a study on relationship while navigating the relationships in his own life. Will he continue to chase the unattainable Theresa a hippy new age dancer(Caitlin Fitzgerald) or will he finally admit he's in love with his best friend Carla (Katherine Waterston) who is in an unfulfilling relationship with a political strategist(Gaby Hoffman). Manhattan Romance is a funny insightful look at contemporary life in Manhattan. It explores new age ideas and open relationship as well as true friendship and connection.", + "posterPath": "/n792aEUTwqVHGTYT80Ry0JGMdmA.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 18 + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ], + "releaseDate": "2015-10-02", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 36, + "popularity": 6.3343 + }, + { + "id": 453, + "title": "A Beautiful Mind", + "originalTitle": "A Beautiful Mind", + "overview": "From the heights of notoriety to the depths of depravity, John Forbes Nash Jr. experiences it all. As a brilliant but socially awkward mathematician, he made a groundbreaking discovery early in his career and stands on the brink of international acclaim. But as the handsome and arrogant Nash accepts secret work in cryptography, he becomes entangled in a mysterious conspiracy. His life takes a nightmarish turn and he soon finds himself on a painful and harrowing journey of self-discovery.", + "posterPath": "/rEIg5yJdNOt9fmX4P8gU9LeNoTQ.jpg", + "backdropPath": "/vVBcIN68kFq681b4lObiNJhEVro.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2001-12-14", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.855, + "voteCount": 10728, + "popularity": 6.3331 + }, + { + "id": 58192, + "title": "Broken Lullaby", + "originalTitle": "Broken Lullaby", + "overview": "A young French soldier in World War I is overcome with guilt when he kills a German soldier who, like himself, is a musically gifted conscript, each having attended the same musical conservatory in France. The fact that the incident occurred in war does not assuage his guilt. He travels to Germany to meet the man's family.", + "posterPath": "/zYZjUEPC0j96rNfGj0dHajLMw5t.jpg", + "backdropPath": "/qjz4cgmaRzFO5AdcpiaUqklErQ0.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1932-01-19", + "releaseYear": "1932", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 41, + "popularity": 6.3319 + }, + { + "id": 1130022, + "title": "Sovereign", + "originalTitle": "Sovereign", + "overview": "Struggling single father Jerry indoctrinates his son Joe into the sovereign citizen movement, teaching him that laws are mere illusions and freedom is something you take. But, as Jerry’s ideology consumes them, they are set on a collision course with a police chief who has spent his life upholding the rules that Jerry has spent his tearing down.", + "posterPath": "/cWXUMfnMj4ioReprwsDZgt8sghK.jpg", + "backdropPath": "/ml9WFOTF3liDw3gfbCJ9c1c4DW9.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.652, + "voteCount": 79, + "popularity": 6.3315 + }, + { + "id": 163907, + "title": "The Villain", + "originalTitle": "The Villain", + "overview": "Handsome Stranger has agreed to escort Charming Jones to collect her inheritance from her father. But Avery Simpson wants the money and hires notorious outlaw Cactus Jack to ambush Charming. However, Cactus Jack is not very good at robbing people.", + "posterPath": "/kqLCiWYfQu5hAq7NZoSXV59a4yX.jpg", + "backdropPath": "/hRsGatlfENkYugXiazvpqAI9bQA.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 37 + ], + "genres": [ + "Comedy", + "Western" + ], + "releaseDate": "1979-07-26", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 5.719, + "voteCount": 153, + "popularity": 6.3312 + }, + { + "id": 66125, + "title": "Red Dog", + "originalTitle": "Red Dog", + "overview": "The legendary true story of the Red Dog who united a disparate local community while roaming the Australian outback in search of his long lost master.", + "posterPath": "/cbLh0tVqjqcDnob7w79XkIQ7gGI.jpg", + "backdropPath": "/wNJAXms3tiKSZ5Q9H5LPa3PkgPA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "2011-08-04", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 420, + "popularity": 6.3309 + }, + { + "id": 13394, + "title": "Shrek the Halls", + "originalTitle": "Shrek the Halls", + "overview": "The Christmas tree isn't the only thing green in this new holiday classic. Shrek is back and trying to get into the spirit of the season. After promising Fiona and the kids a Christmas they'll remember, he is forced to take a crash course in the holiday. But just when he thinks he has everything for their quiet family Christmas just right, there is a knock at the door.", + "posterPath": "/zeqUbXA0JPSlyAHdRTgxoYgK24n.jpg", + "backdropPath": "/5lUaKCo9ypmXbuVeZqKQ9gm8zk4.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 35, + 14, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Comedy", + "Fantasy", + "Family" + ], + "releaseDate": "2007-11-28", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 885, + "popularity": 6.3309 + }, + { + "id": 2657, + "title": "Pleasantville", + "originalTitle": "Pleasantville", + "overview": "Geeky teenager David and his popular twin sister, Jennifer, get sucked into the black-and-white world of a 1950s TV sitcom called \"Pleasantville,\" and find a world where everything is peachy keen all the time. But when Jennifer's modern attitude disrupts Pleasantville's peaceful but boring routine, she literally brings color into its life.", + "posterPath": "/m1hhYP6OScjKU5Z9iZaWirSn4I6.jpg", + "backdropPath": "/8sf7q8OlZLl7OVhTdYjz1vsFr5v.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 35, + 18 + ], + "genres": [ + "Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "1998-09-17", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.258, + "voteCount": 1795, + "popularity": 6.3309 + }, + { + "id": 525937, + "title": "Canary", + "originalTitle": "Kanarie", + "overview": "Kanarie (Afrikaans for 'Canary') is a coming-of-age musical war drama. Drafted into the South African army during apartheid, a young soldier joins the military's traveling choir, and romance on the battlefield causes him to deal with his long-repressed sexual identity through hardship, camaraderie, first love, and the liberating freedom of music, the true self can be discovered.", + "posterPath": "/v2I1X5TzjBEJRB4KHJFoKUeP0n7.jpg", + "backdropPath": "/wManHu9AqHvBVYjyjyB7Sa7RFFn.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18 + ], + "genres": [ + "Music", + "Drama" + ], + "releaseDate": "2018-08-26", + "releaseYear": "2018", + "originalLanguage": "af", + "voteAverage": 6.4, + "voteCount": 20, + "popularity": 6.3305 + }, + { + "id": 399579, + "title": "Alita: Battle Angel", + "originalTitle": "Alita: Battle Angel", + "overview": "When Alita awakens with no memory of who she is in a future world she does not recognize, she is taken in by Ido, a compassionate doctor who realizes that somewhere in this abandoned cyborg shell is the heart and soul of a young woman with an extraordinary past.", + "posterPath": "/xRWht48C2V8XNfzvPehyClOvDni.jpg", + "backdropPath": "/jXDselREPq8TOVGM4dzBBUM7xVk.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 12 + ], + "genres": [ + "Action", + "Science Fiction", + "Adventure" + ], + "releaseDate": "2019-01-31", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.245, + "voteCount": 9688, + "popularity": 6.3302 + }, + { + "id": 613614, + "title": "Citizens Of The World", + "originalTitle": "Lontano lontano", + "overview": "Three Italian retirees embark on a journey to find a new country to live in.", + "posterPath": "/jJHr9FjHKDdFAOQG4ethILjAvcN.jpg", + "backdropPath": "/ksDJM02o8lXVB5Mh6u4F9yl62sA.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-02-20", + "releaseYear": "2020", + "originalLanguage": "it", + "voteAverage": 6.7, + "voteCount": 80, + "popularity": 6.3301 + }, + { + "id": 835325, + "title": "Dashcam", + "originalTitle": "Dashcam", + "overview": "A video editor for a news show in New York City receives government files containing footage from a police car's dashcam.", + "posterPath": "/aUr8E7iaGTnNbPtVmCPuV1FuKit.jpg", + "backdropPath": "/oxVthxYs7WCrMt2ZIPpHVUJCcL7.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "2021-10-19", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 27, + "popularity": 6.3297 + }, + { + "id": 12133, + "title": "Step Brothers", + "originalTitle": "Step Brothers", + "overview": "Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.", + "posterPath": "/jV0eDViuTRf9cmj4H0JNvbvaNbR.jpg", + "backdropPath": "/247H2jS9Te9TTmKDcAMg3LN5gmI.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2008-07-25", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 3276, + "popularity": 6.3294 + }, + { + "id": 61901, + "title": "The Prodigies", + "originalTitle": "The Prodigies", + "overview": "Five teenage prodigies brutally beaten in New York’s Central Park plot an apocalyptic revenge against the world. Only master prodigy Jimbo Farrar knows their formidable power. But can he alone hold their rage at bay?", + "posterPath": "/6Xbayov6CSIt3BvrnthNP6btNQs.jpg", + "backdropPath": "/rRQFRnBA1PCvCCgc3E1cHy37lvm.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 16 + ], + "genres": [ + "Science Fiction", + "Animation" + ], + "releaseDate": "2011-06-07", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 6, + "voteCount": 114, + "popularity": 6.3287 + }, + { + "id": 692840, + "title": "Moral Order", + "originalTitle": "Ordem Moral", + "overview": "In 1918, Maria Adelaide Coelho da Cunha, heiress and owner of the Diário de Notícias, leaves the social, cultural and family luxury in which she lives to escape with a petty chauffeur, 26 years younger.", + "posterPath": "/vp886LMixwrM1o7BTHCfZGfZbi.jpg", + "backdropPath": "/gOscmiIA1wpHM9Gs9oaTMlU0yFz.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-09-10", + "releaseYear": "2020", + "originalLanguage": "pt", + "voteAverage": 5.417, + "voteCount": 12, + "popularity": 6.3286 + }, + { + "id": 72241, + "title": "Unconquered", + "originalTitle": "Unconquered", + "overview": "England, 1763. After being convicted of a crime, the young and beautiful Abigail Hale agrees, to escape the gallows, to serve fourteen years as a slave in the colony of Virginia, whose inhabitants begin to hear and fear the sinister song of the threatening drums of war that resound in the wild Ohio valley.", + "posterPath": "/sOsESBjWExyOulekJJMc9o5Q5BX.jpg", + "backdropPath": "/bpJmsiKJQDtJ4GVrvUNvf5dA92E.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 12, + 36 + ], + "genres": [ + "Drama", + "Adventure", + "History" + ], + "releaseDate": "1947-10-10", + "releaseYear": "1947", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 59, + "popularity": 6.3284 + }, + { + "id": 353047, + "title": "Zappa", + "originalTitle": "Zappa", + "overview": "With the help of more than 10,000 dedicated Zappa fans, this is the long-awaited definitive documentary project of Alex Winter documenting the life and career of enigmatic groundbreaking rock star Frank Zappa. Alex also utilizes in this picture thousands of hours of painstakingly digitized videos, photos, audio, writing, and everything in between from Zappa's private archives. These chronicles have never been brought to a public audience before, until now.", + "posterPath": "/qQVsDHZ2JZ4dEtAZVMmZqfH4xpG.jpg", + "backdropPath": "/jRI4gyDI0I7jwbqN8QpT9psiGRm.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 99 + ], + "genres": [ + "Music", + "Documentary" + ], + "releaseDate": "2020-11-27", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 61, + "popularity": 6.3283 + }, + { + "id": 45408, + "title": "The Protector", + "originalTitle": "The Protector", + "overview": "Billy Wong is a New York City cop whose partner is gunned down during a robbery. Billy and his new partner, Danny Garoni, are working security at a fashion show when a wealthy man's daughter, Laura Shapiro, is kidnapped. The Federal authorities suspect that Laura's father is involved with Mr. Ko, a Hong Kong drug kingpin, so the NYC police commissioner sends the two cops to Hong Kong to investigate.", + "posterPath": "/ri2yctGQr4DPLBODZZ2Ky2yqBoL.jpg", + "backdropPath": "/pXx9LJ40uM7keWCDn0izV5FwkOd.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "1985-06-15", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 194, + "popularity": 6.3278 + }, + { + "id": 583081, + "title": "Warning", + "originalTitle": "Warning", + "overview": "Loneliness, death and the meaning of life, explored through vastly separate lives colliding in interweaving short stories set in future Earth.", + "posterPath": "/pcNsfaYtQlPAMgNxKRDVao4jCCQ.jpg", + "backdropPath": "/lXgbpD7Fn4yFcWo4f8I2yRd31rv.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "2021-10-22", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 126, + "popularity": 6.3274 + }, + { + "id": 9043, + "title": "The Family Stone", + "originalTitle": "The Family Stone", + "overview": "An uptight, conservative businesswoman accompanies her boyfriend to his eccentric and outgoing family's annual Christmas celebration and finds that she's a fish out of water in their free-spirited way of life.", + "posterPath": "/nlqw53HmTP7o3b2NDttYNOtsK4V.jpg", + "backdropPath": "/yJav7yjKcYnP7C9QbFLECThWv4a.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2005-12-15", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 1057, + "popularity": 6.3269 + }, + { + "id": 472226, + "title": "Blood Fest", + "originalTitle": "Blood Fest", + "overview": "Fans flock to a festival celebrating the most iconic horror movies, only to discover that the charismatic showman behind the event has a diabolical agenda.", + "posterPath": "/v7x4P33lZwstVgxlZGze18hBlD.jpg", + "backdropPath": "/wsDhHPnapmbQHYoYVDMLaY7HF6v.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27 + ], + "genres": [ + "Comedy", + "Horror" + ], + "releaseDate": "2018-08-17", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.359, + "voteCount": 258, + "popularity": 6.3268 + }, + { + "id": 439988, + "title": "Hitler's Hollywood", + "originalTitle": "Hitlers Hollywood", + "overview": "Film journalist and critic Rüdiger Suchsland examines German cinema from 1933, when the Nazis came into power, until 1945, when the Third Reich collapsed. (A sequel to From Caligari to Hitler, 2015.)", + "posterPath": "/YlFqWoN7VmWSRjXQJUHvSD2ikc.jpg", + "backdropPath": "/AmmKi9ldp2WCCxTXCzWkR4hqj77.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 36 + ], + "genres": [ + "Documentary", + "History" + ], + "releaseDate": "2017-02-23", + "releaseYear": "2017", + "originalLanguage": "de", + "voteAverage": 6.4, + "voteCount": 31, + "popularity": 6.3266 + }, + { + "id": 429691, + "title": "Mind Blown", + "originalTitle": "Mind Blown", + "overview": "In Los Angeles, the Earth shakes, people panic, buildings crumble and fold. But when a special OPS crew flies in to view the damage, it's as if nothing has happened. Buildings still stand, the ground is whole...but dead bodies litter the streets. Welcome to MIND BLOWN - a secret government program in psychotronic warfare that goes terribly wrong. Now the DOD must cover it up and terminate all involved. Fleeing for his life, Noah West knows he must uncover who has stolen the technology with plans on using it to bring America to its knees. When the disasters start for real, the darker secret of the experiment begins to unravel.", + "posterPath": "/59xSj93nnF9UG6kNoI62hlq11Gw.jpg", + "backdropPath": "/wuq5O5rCSNkYruku8H3jcoK4sG2.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 10770, + 28 + ], + "genres": [ + "Science Fiction", + "TV Movie", + "Action" + ], + "releaseDate": "2016-12-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 4.97, + "voteCount": 33, + "popularity": 6.3261 + }, + { + "id": 897087, + "title": "Freelance", + "originalTitle": "Freelance", + "overview": "An ex-special forces operative takes a job to provide security for a journalist as she interviews a dictator, but a military coup breaks out in the middle of the interview, they are forced to escape into the jungle where they must survive.", + "posterPath": "/7Bd4EUOqQDKZXA6Od5gkfzRNb0.jpg", + "backdropPath": "/zIYROrkHJPYB3VTiW1L9QVgaQO.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35 + ], + "genres": [ + "Action", + "Comedy" + ], + "releaseDate": "2023-10-05", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.401, + "voteCount": 1095, + "popularity": 6.3257 + }, + { + "id": 10771, + "title": "The Tuxedo", + "originalTitle": "The Tuxedo", + "overview": "Cabbie-turned-chauffeur Jimmy Tong learns there is really only one rule when you work for playboy millionaire Clark Devlin : Never touch Devlin's prized tuxedo. But when Devlin is temporarily put out of commission in an explosive accident, Jimmy puts on the tux and soon discovers that this extraordinary suit may be more black belt than black tie. Paired with a partner as inexperienced as he is, Jimmy becomes an unwitting secret agent.", + "posterPath": "/2agrcNQRtgTsN5SbffC4H2BwYW2.jpg", + "backdropPath": "/1wo90L3F7hA9h6cG5xfz3dB1IE6.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 35, + 878 + ], + "genres": [ + "Thriller", + "Action", + "Comedy", + "Science Fiction" + ], + "releaseDate": "2002-09-27", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.729, + "voteCount": 2078, + "popularity": 6.3253 + }, + { + "id": 947, + "title": "Lawrence of Arabia", + "originalTitle": "Lawrence of Arabia", + "overview": "During World War I, English officer Thomas Edward 'T.E.' Lawrence sets out to unite and lead the diverse, often warring, Arab tribes to fight the Turks.", + "posterPath": "/AiAm0EtDvyGqNpVoieRw4u65vD1.jpg", + "backdropPath": "/z30x999Uku15xcFbe5s3hLvQPDl.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 36, + 10752 + ], + "genres": [ + "Adventure", + "History", + "War" + ], + "releaseDate": "1962-12-11", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7.997, + "voteCount": 3268, + "popularity": 6.3245 + }, + { + "id": 934433, + "title": "Scream VI", + "originalTitle": "Scream VI", + "overview": "Following the latest Ghostface killings, the four survivors leave Woodsboro behind and start a fresh chapter.", + "posterPath": "/wDWwtvkRRlgTiUr6TyLSMX8FCuZ.jpg", + "backdropPath": "/44immBwzhDVyjn87b3x3l9mlhAD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 80, + 53 + ], + "genres": [ + "Horror", + "Crime", + "Thriller" + ], + "releaseDate": "2023-03-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.975, + "voteCount": 2950, + "popularity": 6.3242 + }, + { + "id": 20794, + "title": "Novocaine", + "originalTitle": "Novocaine", + "overview": "A dentist finds himself a murder suspect after a sexy patient seduces him into prescribing her drugs.", + "posterPath": "/6ZVFepWKzYho4DLhyFVuRk7klZ1.jpg", + "backdropPath": "/5MY2YaCyd2Yqt2gNMby7ptdQbrO.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 53 + ], + "genres": [ + "Comedy", + "Crime", + "Thriller" + ], + "releaseDate": "2001-11-23", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.965, + "voteCount": 156, + "popularity": 6.324 + }, + { + "id": 423414, + "title": "Last Rampage", + "originalTitle": "Last Rampage", + "overview": "The true story of the infamous prison break of Gary Tison and Randy Greenwalt from the Arizona State prison in Florence, in the summer of 1978.", + "posterPath": "/kZDF2GDto5WCPW9wbRqrqf9yRWM.jpg", + "backdropPath": "/1RSoHYKttOBQeRTBwFuDxxXOXgM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "2017-09-22", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 59, + "popularity": 6.3239 + }, + { + "id": 352186, + "title": "Good Kids", + "originalTitle": "Good Kids", + "overview": "Four high school students look to redefine themselves after graduation.", + "posterPath": "/9R3hZnqFNyFmG10qwKzaUntlUbg.jpg", + "backdropPath": "/8k7hVAUsMuJqZIRtd6T4Ewo8vfq.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-07-29", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 320, + "popularity": 6.3237 + }, + { + "id": 828613, + "title": "About Fate", + "originalTitle": "About Fate", + "overview": "Two strangers believe in love but never seem to be able to find its true meaning. In a wild twist of events, fate puts each in the other's path on one stormy New Year's Eve.", + "posterPath": "/fabZkaVHYJ67KbZx7oFoitauX34.jpg", + "backdropPath": "/30COvn7g7PP58wBkrnnh7Ws9bJS.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2022-09-08", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 481, + "popularity": 6.3228 + }, + { + "id": 182497, + "title": "Fatal Charm", + "originalTitle": "Fatal Charm", + "overview": "Valerie's (Amanda Peterson) prosecutor mom is trying to put away Adam (Christopher Atkins), an alleged serial killer on trial for murdering six women. But he's so charming that the teenage Valerie just can't believe he really did it, and soon they begin sending each other letters. Adam is caught up in a jailbreak and ends up on the run.", + "posterPath": "/m4L6nkMdlbiGfJ5vfL5tl3XFrU5.jpg", + "backdropPath": "/sv6iFKSjff8UrIPISjYsKl37AT.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 10770 + ], + "genres": [ + "Thriller", + "Crime", + "TV Movie" + ], + "releaseDate": "1990-09-19", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 5.143, + "voteCount": 14, + "popularity": 6.3227 + }, + { + "id": 255870, + "title": "Roman Summer", + "originalTitle": "Estate romana", + "overview": "Rome, Esquilino, summer. Rossella returns to Rome after years of absence and returns to her home, rented to her friend Salvatore, the set designer. The woman is gripped by an evident depression and wanders around the city that she does not recognize and that no longer recognizes her. People have changed and Rossella finds no one capable of answering the obsessive question that has plagued her for some time: \"How can I disappear?\"", + "posterPath": "/8h6h2VrpLEEC1XBxfiWtB3xUtee.jpg", + "backdropPath": "/ybgJNfYEicEhU1odv4UEtkHTYNf.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2000-11-01", + "releaseYear": "2000", + "originalLanguage": "it", + "voteAverage": 7, + "voteCount": 26, + "popularity": 6.3225 + }, + { + "id": 71866, + "title": "Tanner Hall", + "originalTitle": "Tanner Hall", + "overview": "A manipulative childhood acquaintance worms her way into a teenager's circle of friends at an all-girls boarding school.", + "posterPath": "/qoGtVlqaFWngUXuUzAS6uuNcwsI.jpg", + "backdropPath": "/ceqx5sLqBlLqskux7pjtnJnK8NM.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-09-14", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 129, + "popularity": 6.3224 + }, + { + "id": 611914, + "title": "The Courier", + "originalTitle": "The Courier", + "overview": "Ezekiel Mannings, a vicious crime boss, is out to kill Nick, the lone witness set to testify against him. He hires a mysterious female motorcycle courier to unknowingly deliver a poison-gas bomb to slay Nick, but after she rescues Nick from certain death, the duo must confront an army of ruthless hired killers in order to survive the night.", + "posterPath": "/jE6QFRd48IzAxAubOE9HKB8sTjP.jpg", + "backdropPath": "/g4L7cBgXk5FSykoCoL4QEGjlIUy.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 12, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Adventure", + "Crime" + ], + "releaseDate": "2019-11-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.956, + "voteCount": 557, + "popularity": 6.3222 + }, + { + "id": 207703, + "title": "Kingsman: The Secret Service", + "originalTitle": "Kingsman: The Secret Service", + "overview": "The story of a super-secret spy organization that recruits an unrefined but promising street kid into the agency's ultra-competitive training program just as a global threat emerges from a twisted tech genius.", + "posterPath": "/r6q9wZK5a2K51KFj4LWVID6Ja1r.jpg", + "backdropPath": "/qzUIOTk0E3F1zjvYjcBRTKUTgf9.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 28, + 12 + ], + "genres": [ + "Crime", + "Comedy", + "Action", + "Adventure" + ], + "releaseDate": "2015-01-24", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 17411, + "popularity": 6.3221 + }, + { + "id": 227306, + "title": "Unbroken", + "originalTitle": "Unbroken", + "overview": "A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.", + "posterPath": "/vAlHUjHwLWMV5mg4epGR9WSIfiy.jpg", + "backdropPath": "/3sRj3VnrSUYhp6j1V43LXgKKdux.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "2014-12-25", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 4267, + "popularity": 6.3219 + }, + { + "id": 360784, + "title": "Hidden", + "originalTitle": "Hidden", + "overview": "A family takes refuge in a fallout shelter to avoid a dangerous outbreak.", + "posterPath": "/mPuaHaczkoJDzlYD9GyXiDjMXig.jpg", + "backdropPath": "/iXRxlRsBr0mGr9Wx3OPbVdbUJzl.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2015-09-15", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.908, + "voteCount": 1101, + "popularity": 6.3217 + }, + { + "id": 13577, + "title": "Lower Learning", + "originalTitle": "Lower Learning", + "overview": "Barry Goldwater Elementary is on the brink of collapse: the lowest test scores in the state, teachers who are either drunk or having sex on school grounds, and a principal who extorts money from parents. It's up to Tom, the down-on-his-luck vice-principal, to rally the lazy teachers, expose the principal's corruption, and turn the school around before an end of the day board decision.", + "posterPath": "/isZ3CKJd62hlZf66UA9JABufRIq.jpg", + "backdropPath": "/bPsRQpaDniVdput0im0va9xwn3y.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2008-10-10", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 62, + "popularity": 6.3216 + }, + { + "id": 25741, + "title": "The Flight Before Christmas", + "originalTitle": "Niko: Lentäjän poika", + "overview": "A young reindeer named Niko dreams about flying like his father, whom he has never met. Despite constant teasing from others, he sneaks out of his home valley to take flying lessons from Julius, a flying squirrel.", + "posterPath": "/xsss4pc3vs4UjsNo2KrNTiELJNc.jpg", + "backdropPath": "/uxP8y6KOdsurjvaHvfQoaiV4u0g.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 12, + 18, + 14 + ], + "genres": [ + "Animation", + "Family", + "Adventure", + "Drama", + "Fantasy" + ], + "releaseDate": "2008-09-22", + "releaseYear": "2008", + "originalLanguage": "fi", + "voteAverage": 5.8, + "voteCount": 152, + "popularity": 6.3212 + }, + { + "id": 969926, + "title": "Jericho Ridge", + "originalTitle": "Jericho Ridge", + "overview": "North Washington county sheriff Tabby finds herself alone in the sheriff’s office one night while her colleagues are out on patrol, but she soon finds out they’ve been set up by a murderous drug cartel while she herself comes under siege at the office, where she must battle desperately to save herself and her son.", + "posterPath": "/2Iwkd9m3vGo32bjibNrfM7dtwJd.jpg", + "backdropPath": "/h6COxpZ6M69UNfdfcXMD0Mcj3kR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2024-04-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.194, + "voteCount": 36, + "popularity": 6.3209 + }, + { + "id": 10582, + "title": "Hot Bubblegum", + "originalTitle": "Shifshuf Naim", + "overview": "Further adventures of Bobby, Benji, and Huey in their pursuit of sex in the 50's. While preparing for their final exams, they try to work out if it's better to be going steady with one girl, and if changing girlfriends all the time leads to too many complications. This leads to frustrations with girls who wont go all the way, and problems with girls will go all the way with anyone!", + "posterPath": "/ls9gxg8tBPo1dnmqJNzVc9u51no.jpg", + "backdropPath": "/lKCh4SYfFq8RZ5RCr7OViJlm1WX.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1981-04-07", + "releaseYear": "1981", + "originalLanguage": "he", + "voteAverage": 6, + "voteCount": 67, + "popularity": 6.3207 + }, + { + "id": 916192, + "title": "The Tunnel to Summer, the Exit of Goodbyes", + "originalTitle": "夏へのトンネル、さよならの出口", + "overview": "Urashima Tunnel – Once you enter that tunnel, you can get whatever you want, but at a price. Kaoru Tohno, who seems to have an elusive personality and traumatic past, and Anzu Hanashiro, who is struggling to reconcile her ideal image and true-to-heart attitude, team up to investigate the Urashima Tunnel and get what they want. This is an unforgettable summer story of nostalgia and sprinting in a remote countryside.", + "posterPath": "/5AGA6pbBKXZTI8k1c6odx30JuQR.jpg", + "backdropPath": "/1TFGeabUdRitRwjeJbXeGUcDEoJ.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 10749, + 14, + 878 + ], + "genres": [ + "Animation", + "Drama", + "Romance", + "Fantasy", + "Science Fiction" + ], + "releaseDate": "2022-09-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 247, + "popularity": 6.3206 + }, + { + "id": 201086, + "title": "Cuban Fury", + "originalTitle": "Cuban Fury", + "overview": "Beneath Bruce Garrett's under-confident, overweight exterior, the passionate heart of a salsa king lies dormant. Now, one woman is about to reignite his Latin fire.", + "posterPath": "/xuRAyIUJmgXwI1ba06AxYBAQMTc.jpg", + "backdropPath": "/rKIifnWUilOKt8raPEx35Lt3jmT.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2014-02-14", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 334, + "popularity": 6.3195 + }, + { + "id": 784379, + "title": "Playing Cupid", + "originalTitle": "Playing Cupid", + "overview": "Set in the halls of Austen Middle School, a newly single middle-school teacher is covertly set up with a divorced dad after his daughter – one of her students – begins a matchmaking business for a school project she assigned her class.", + "posterPath": "/i6GBlAu8ifBGl69qyL8WpzVlo7V.jpg", + "backdropPath": "/qSSImoaHVN80RMZlbssDtvlLcwm.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 10770, + 35, + 18 + ], + "genres": [ + "Romance", + "TV Movie", + "Comedy", + "Drama" + ], + "releaseDate": "2021-02-13", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 34, + "popularity": 6.3193 + }, + { + "id": 89, + "title": "Indiana Jones and the Last Crusade", + "originalTitle": "Indiana Jones and the Last Crusade", + "overview": "In 1938, an art collector appeals to eminent archaeologist Dr. Indiana Jones to embark on a search for the Holy Grail. Indy learns that a medieval historian has vanished while searching for it, and the missing man is his own father, Dr. Henry Jones Sr.. He sets out to rescue his father by following clues in the old man's notebook, which his father had mailed to him before he went missing. Indy arrives in Venice, where he enlists the help of a beautiful academic, Dr. Elsa Schneider, along with Marcus Brody and Sallah. Together they must stop the Nazis from recovering the power of eternal life and taking over the world!", + "posterPath": "/sizg1AU8f8JDZX4QIgE4pjUMBvx.jpg", + "backdropPath": "/12fvZHskx57kQfNEUXJ3v0flWYQ.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28 + ], + "genres": [ + "Adventure", + "Action" + ], + "releaseDate": "1989-05-24", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 10716, + "popularity": 6.3192 + }, + { + "id": 35052, + "title": "Cracks", + "originalTitle": "Cracks", + "overview": "Jealousy flares after the headmistress of an elite boarding school for girls becomes obsessed with a new student.", + "posterPath": "/pSVWV04CAWfswP6rqiKJWv0XWzE.jpg", + "backdropPath": "/xJO5o209Ok1p0uJafkk1WHtrUJH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 53 + ], + "genres": [ + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2009-12-04", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 424, + "popularity": 6.3191 + }, + { + "id": 1450529, + "title": "Gunman", + "originalTitle": "Gatillero", + "overview": "A former hitman accepts a minor job for his former boss. However, in a corrupt neighborhood, nothing is what it seems, and he quickly gets caught in a web of unexpected events. A race against time and his own destiny.", + "posterPath": "/eBw5Vso0K3r8Dzycxz0E0lgC40z.jpg", + "backdropPath": "/nJLp4dBD29fwWopoaranezJ26bo.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2025-06-12", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.3, + "voteCount": 14, + "popularity": 6.3188 + }, + { + "id": 12498, + "title": "Sling Blade", + "originalTitle": "Sling Blade", + "overview": "Karl Childers, a mentally disabled man, has been in the custody of the state mental hospital since the age of 12 for killing his mother and her lover. Although thoroughly institutionalized, he is deemed fit to be released into the outside world.", + "posterPath": "/ivBIBd1LNaozcmytZUyE1yIXZms.jpg", + "backdropPath": "/s0MYaSiEZy9H0cXxxay5LEdcxYs.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1996-08-30", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.534, + "voteCount": 830, + "popularity": 6.3188 + }, + { + "id": 28721, + "title": "Zodiac Killer", + "originalTitle": "Zodiac Killer", + "overview": "A young man who works at a nursing home uses the legendary Zodiac killer's M.O. to kill people who neglect their elderly relatives.", + "posterPath": "/aQwJHHdrBfcCtBXmNHakBvXpt55.jpg", + "backdropPath": "/nSIkP7Phy1V2fqABnk2dCcHDwSm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 27, + 53 + ], + "genres": [ + "Action", + "Horror", + "Thriller" + ], + "releaseDate": "2005-03-30", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 2.4, + "voteCount": 32, + "popularity": 6.3184 + }, + { + "id": 858918, + "title": "One Summer", + "originalTitle": "One Summer", + "overview": "Jack takes his son and daughter to his late wife's beachside hometown hoping to heal and become closer. The summer brings visions of the past that could forge a new path forward.", + "posterPath": "/yRjSB2Uq3EwGn2ej0I8H78hWaCy.jpg", + "backdropPath": "/cnlHvcjeAuzZFTAMfYSNnf7g6eA.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 18, + 10751, + 10749 + ], + "genres": [ + "TV Movie", + "Drama", + "Family", + "Romance" + ], + "releaseDate": "2021-10-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 24, + "popularity": 6.3178 + }, + { + "id": 870671, + "title": "The Hunting", + "originalTitle": "The Hunting", + "overview": "When a mysterious animal attack leaves a mutilated body in the forest, a conservative small town detective must enlist the help of an eager wildlife specialist to uncover the dark and disturbing truth that threatens the town.", + "posterPath": "/kvhrltQIRp1u84ao9uj52YPaWNY.jpg", + "backdropPath": "/5CyeeUJ7OG55fknaeNA7UPLhUDA.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2022-01-21", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 80, + "popularity": 6.3177 + }, + { + "id": 267792, + "title": "Barbarous Mexico", + "originalTitle": "México bárbaro", + "overview": "Eight tales based on the most brutally terrifying Mexican traditions and legends, an anthology of haunting stories woven into the fabric of the Mexican culture, some told through the centuries and some new, but all equally frightening. Bogeymen, trolls, ghosts, monsters, all brought to life. Time for Aztec sacrifices. This is the Day of the Dead.", + "posterPath": "/xQ1du8KQ0xijNQTceLmttt4Uokz.jpg", + "backdropPath": "/1tadW2w0JYYfM85grKDIlDYtaiF.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14 + ], + "genres": [ + "Horror", + "Fantasy" + ], + "releaseDate": "2014-10-18", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 5.3, + "voteCount": 46, + "popularity": 6.3177 + }, + { + "id": 11012, + "title": "Damage", + "originalTitle": "Damage", + "overview": "The life of a respected British politician at the height of his career crumbles when he becomes obsessed with his son's lover.", + "posterPath": "/alf3JOPP7EYP0iO24gwe5YfRnqo.jpg", + "backdropPath": "/krhj4Fhb0G3QCmyBtEADxgFFmRX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1992-12-02", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 643, + "popularity": 6.3176 + }, + { + "id": 36521, + "title": "Plunder Road", + "originalTitle": "Plunder Road", + "overview": "A spectacular heist starts to unravel as the crooks take it on the lam.", + "posterPath": "/zm4RBWwImlnUctZmwDKjPHDnz14.jpg", + "backdropPath": "/r1k9pK3POw3Z0djmOw1hqd8PyOU.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1957-12-05", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 42, + "popularity": 6.3173 + }, + { + "id": 718400, + "title": "The Vanished", + "originalTitle": "The Vanished", + "overview": "A family vacation takes a terrifying turn when parents Paul and Wendy discover their young daughter has vanished without a trace. Stopping at nothing to find her, the search for the truth leads to a shocking revelation.", + "posterPath": "/bYePSWEmMw9PQ9hNwMzgW1rQUtI.jpg", + "backdropPath": "/c2tlXIpwii4Es8s0bLQ8KJ3c0jd.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 80, + 28 + ], + "genres": [ + "Thriller", + "Horror", + "Crime", + "Action" + ], + "releaseDate": "2020-08-21", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 339, + "popularity": 6.3169 + }, + { + "id": 366630, + "title": "The Bridge", + "originalTitle": "The Bridge", + "overview": "The sweeping tale of Molly Callens and Ryan Kelly, two young students who share a profound friendship their first semester in college, a time that becomes the defining moment of their lives.", + "posterPath": "/xkr1V9MUR5nDmlp0GoIbUAz4puo.jpg", + "backdropPath": "/sEbtzGOgAo1A16geR9jRSHTgDRl.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 18 + ], + "genres": [ + "TV Movie", + "Drama" + ], + "releaseDate": "2015-12-06", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 58, + "popularity": 6.3169 + }, + { + "id": 221737, + "title": "RoboCroc", + "originalTitle": "RoboCroc", + "overview": "A rocket carrying nano robots crash lands shortly after takeoff into a zoo. The bots are released and find their way into a massive crocodile. The croc, now programmed to kill, will target anything and anyone for its next meal.", + "posterPath": "/gsurzan9Ml5OyUR7ybzhqw60yz5.jpg", + "backdropPath": "/g1o5udFxZ8FPubJiLON7kXw5zIk.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14, + 878 + ], + "genres": [ + "Horror", + "Fantasy", + "Science Fiction" + ], + "releaseDate": "2013-09-14", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.529, + "voteCount": 51, + "popularity": 6.3164 + }, + { + "id": 52770, + "title": "Things Change", + "originalTitle": "Things Change", + "overview": "Jerry, a misfit Mafia henchman, is assigned the low-level job of keeping an eye on Gino, a shoe repairman fingered by the Mob to confess to a murder he didn't commit. But Gino's mistaken for a Mafia boss, and the two are suddenly catapulted to the highest levels of mobster status. Only friendship will see them through this dangerous adventure alive!", + "posterPath": "/xKjGI2AAg5UHaBvVVR7oI865Zth.jpg", + "backdropPath": "/lzq2B01WiKCF1oXjxCaIGhomTxd.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "1988-10-21", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 75, + "popularity": 6.316 + }, + { + "id": 400401, + "title": "Law of the Land", + "originalTitle": "Armoton maa", + "overview": "A retiring policeman gets caught up in between two younger men trying to kill each other. A modern borderline western taking place on both sides of the northern Finnish-Swedish border.", + "posterPath": "/r1tMV4Vh2FGgvRHG4SwzKvmabIj.jpg", + "backdropPath": "/qUlbY9iG06Cbf6ta0c13kOKndLp.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-01-20", + "releaseYear": "2017", + "originalLanguage": "fi", + "voteAverage": 6.6, + "voteCount": 15, + "popularity": 6.3158 + }, + { + "id": 261776, + "title": "The Third One", + "originalTitle": "El tercero", + "overview": "After meeting in a chat room, Fede (22) arrives at a downtown building to have an intimate encounter with a gay couple older than him. As the night unfolds, Fede has an intense and telling experience. The next morning finds him different, as if suddenly he had found a new possible way to love.", + "posterPath": "/zqlLnWKWbUUcwCum4mjePnKF2OB.jpg", + "backdropPath": "/mzJcPaqEJSfKOHxl5sg9leXuPiP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2014-03-27", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 6.653, + "voteCount": 213, + "popularity": 6.3156 + }, + { + "id": 49559, + "title": "Secret Defense", + "originalTitle": "Secret défense", + "overview": "After biologist Sylvie discovers her brother Paul trying to steal a gun from her lab, he explains that he wishes to avenge the death of their father whom he suspects died at the hands of his business partner.", + "posterPath": "/nuIpOkvwLqG0U8DAudakJCMXuCH.jpg", + "backdropPath": "/iunurWNk7FRCOOJojyu8zNzDUbb.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 9648, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "1998-03-18", + "releaseYear": "1998", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 22, + "popularity": 6.3156 + }, + { + "id": 1296404, + "title": "Good News", + "originalTitle": "굿뉴스", + "overview": "When hijackers seize a Japanese flight and demand to fly to Pyongyang, a mysterious mastermind hatches a zany scheme to reroute the plane to Seoul.", + "posterPath": "/uA3o8q7JTym6lUM8pnITwQDfvhO.jpg", + "backdropPath": "/iceD8kM2Dk6hIK2zWodkT0m6zDx.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 35, + 36 + ], + "genres": [ + "Thriller", + "Comedy", + "History" + ], + "releaseDate": "2025-09-05", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 6.9, + "voteCount": 50, + "popularity": 6.3154 + }, + { + "id": 509109, + "title": "Prescription: Murder", + "originalTitle": "Prescription: Murder", + "overview": "In Columbo's first outing, a psychiatrist uses a patient he is having an affair with to help him kill his wife, but his perfect alibi may come apart at the hands of a seemingly befuddled LAPD lieutenant.", + "posterPath": "/biH0vIQD4tCVvcwApgZCixQMgpl.jpg", + "backdropPath": "/wqaSZRxgeVLPbr4Kiq19GfsVhL8.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 10770, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "TV Movie", + "Drama" + ], + "releaseDate": "1968-02-20", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 7.803, + "voteCount": 33, + "popularity": 6.3154 + }, + { + "id": 9732, + "title": "The Lion King II: Simba's Pride", + "originalTitle": "The Lion King II: Simba's Pride", + "overview": "The circle of life continues for Simba, now fully grown and in his rightful place as the king of Pride Rock. Simba and Nala have given birth to a daughter, Kiara who's as rebellious as her father was. But Kiara drives her parents to distraction when she catches the eye of Kovu, the son of the evil lioness, Zira. Will Kovu steal Kiara's heart?", + "posterPath": "/sWR1x6UCMCGN9xEf8RGhPS934X0.jpg", + "backdropPath": "/vyOFlV1afDHb9MMwJVyON4qXbvC.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 12, + 16, + 18, + 10749 + ], + "genres": [ + "Family", + "Adventure", + "Animation", + "Drama", + "Romance" + ], + "releaseDate": "1998-10-24", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.941, + "voteCount": 4579, + "popularity": 6.3153 + }, + { + "id": 49874, + "title": "Inspector Späck", + "originalTitle": "Kommissarie Späck", + "overview": "A dead body is found, and police detective Mårten Späck draws the conclusion that a serial suicide killer is at large. Späck with his colleagues Grünvald Karlsson and Irene Snusk suspect a gang who distributes pirated DVDs of 'bottom-of-the-barrel' Swedish movies.", + "posterPath": "/aKkedi2YEDp1XTk53B2HLcvVh3v.jpg", + "backdropPath": "/r6zcj1M3kIHVoPNYZV050IJo2OL.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2010-06-04", + "releaseYear": "2010", + "originalLanguage": "sv", + "voteAverage": 4.7, + "voteCount": 27, + "popularity": 6.3152 + }, + { + "id": 534, + "title": "Terminator Salvation", + "originalTitle": "Terminator Salvation", + "overview": "All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.", + "posterPath": "/gw6JhlekZgtKUFlDTezq3j5JEPK.jpg", + "backdropPath": "/m9yHpYz4GcEtmHJW4rvQIrF891h.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2009-05-20", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.074, + "voteCount": 6804, + "popularity": 6.3152 + }, + { + "id": 70, + "title": "Million Dollar Baby", + "originalTitle": "Million Dollar Baby", + "overview": "Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.", + "posterPath": "/jcfEqKdWF1zeyvECPqp3mkWLct2.jpg", + "backdropPath": "/oGMomeS7bE43eN8SGJUaKvQnmud.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-12-05", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.954, + "voteCount": 10073, + "popularity": 6.3151 + }, + { + "id": 423093, + "title": "Seven Years", + "originalTitle": "7 años", + "overview": "The drama is centered on four friends and business partners who in one evening are forced to find a way to save their company and themselves. The impossible decision they face is agreeing on who will be the one to sacrifice their freedom to save the others from personal and financial demise. It is a race against time that will put their friendship and sanity to the test. Who will take the fall?", + "posterPath": "/rWPHFAVZFFVcPzy5HYMGS7beHjA.jpg", + "backdropPath": "/3Qc3A0bl6sSiyhh2RjuHxlw14gF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-10-28", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 6.4, + "voteCount": 195, + "popularity": 6.315 + }, + { + "id": 2103, + "title": "Solaris", + "originalTitle": "Solaris", + "overview": "A troubled psychologist is sent to investigate the crew of an isolated research station orbiting a bizarre planet.", + "posterPath": "/drdrB1hEZmzFlK1xtW5HMxK3LUJ.jpg", + "backdropPath": "/avjG5EPgWXyLvsUId6hEn0iqT4A.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 9648 + ], + "genres": [ + "Drama", + "Science Fiction", + "Mystery" + ], + "releaseDate": "2002-11-27", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.923, + "voteCount": 1385, + "popularity": 6.3149 + }, + { + "id": 5684, + "title": "Secret Weapons", + "originalTitle": "Secret Weapons", + "overview": "Soviet High School girls are sent to the U.S. where they are taught to become secret agents and use sex to find information.", + "posterPath": "/thC1vkii8LFU4ikL2Ilj34Myn8E.jpg", + "backdropPath": "/8DSeYGKBF8cYZfu4gGzaZEcW3zM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770 + ], + "genres": [ + "Drama", + "TV Movie" + ], + "releaseDate": "1985-03-03", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6.321, + "voteCount": 14, + "popularity": 6.3147 + }, + { + "id": 24732, + "title": "Harrison Bergeron", + "originalTitle": "Harrison Bergeron", + "overview": "\"All men are not created equal. It is the purpose of the Government to make them so.\" This is the premise of the Showtime film adaption of Kurt Vonnegut's futuristic short story Harrison Bergeron. The film centers around a young man (Harrison) who is smarter than his peers, and is not affected by the usual \"Handicapping\" which is used to train all Americans so everyone is of equal intelligence.", + "posterPath": "/jc2mINVs86QrreRZw0tlPJp1FlC.jpg", + "backdropPath": "/d4xyXTf95sMB6B1Crzrr6CbSWe3.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 10770 + ], + "genres": [ + "Science Fiction", + "TV Movie" + ], + "releaseDate": "1995-08-13", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 55, + "popularity": 6.3125 + }, + { + "id": 22189, + "title": "Havana", + "originalTitle": "Havana", + "overview": "During the revolution, a high-stakes gambler arrives in Cuba seeking to win big in poker games. Along the way, he meets and falls in love with the wife of a Communist revolutionary.", + "posterPath": "/7R7p63t7aQ7I6OHPgJDwD68PRLj.jpg", + "backdropPath": "/bLqwSi2rAcm05XjsbWieOh3zKOh.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1990-12-11", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 158, + "popularity": 6.3117 + }, + { + "id": 44716, + "title": "In a Better World", + "originalTitle": "Hævnen", + "overview": "The lives of two Danish families cross each other, and an extraordinary but risky friendship comes into bud. But loneliness, frailty and sorrow lie in wait.", + "posterPath": "/dJpPpgf2z5lNw6xVxvfWm0lexNH.jpg", + "backdropPath": "/jso7QKHWwkdlEHFef68kFWHsltx.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-08-26", + "releaseYear": "2010", + "originalLanguage": "da", + "voteAverage": 7.11, + "voteCount": 430, + "popularity": 6.3115 + }, + { + "id": 597890, + "title": "Voyagers", + "originalTitle": "Voyagers", + "overview": "With the future of the human race at stake, a group of young men and women -- bred for intelligence and obedience -- embark on an expedition to colonize a distant planet. When they uncover disturbing secrets about the mission, they defy their training and begin to explore their most primitive natures. As life on the ship descends into chaos, they soon become consumed by fear, lust and an insatiable hunger for power.", + "posterPath": "/gn2vCmWO7jQBBto9SYuBHYZARaU.jpg", + "backdropPath": "/9dBSwftCzkC4K4zgMZTwcm58VUR.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "2021-04-08", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.971, + "voteCount": 931, + "popularity": 6.3108 + }, + { + "id": 520596, + "title": "The Oath", + "originalTitle": "The Oath", + "overview": "In a politically-divided United States, a man struggles to make it through the Thanksgiving holiday without destroying his family.", + "posterPath": "/kHB7Nq93pQxGOit1Lyz1ELfUvy0.jpg", + "backdropPath": "/ibNQu25Rz1fZuw6WHm4StII2TkR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 53 + ], + "genres": [ + "Comedy", + "Thriller" + ], + "releaseDate": "2018-10-12", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.639, + "voteCount": 104, + "popularity": 6.3105 + }, + { + "id": 1225624, + "title": "On Falling", + "originalTitle": "On Falling", + "overview": "Aurora, a Portuguese migrant, works as an order picker in a warehouse in Edinburgh, Scotland. Caught between the walls of a huge distribution centre and the solitude of her own room, Aurora tries to seize every opportunity to resist the alienation and isolation that threaten her identity.", + "posterPath": "/dV24R0JoqXRctUwOc0UV7cGwcOL.jpg", + "backdropPath": "/ki080Sbbqn5o0ypAPpRinROs0ZI.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-03-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.091, + "voteCount": 22, + "popularity": 6.3098 + }, + { + "id": 56340, + "title": "The Widower", + "originalTitle": "Il vedovo", + "overview": "Alberto Nardi is a Roman businessman who fancies himself a man of great capabilities, but whose factory teeters perennially on the brink of catastrophe. Alberto is married to a rich and successful businesswoman from Milan, Elvira Almiraghi who has a no-nonsense attitude and barely tolerates the attempts of her husband to keep his factory afloat with her money.", + "posterPath": "/tkdpbh4lTTZXADnWLBGJLjC5lyC.jpg", + "backdropPath": "/6WQrUzg0wfVT8WpK41g9aXwoHK0.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1959-11-20", + "releaseYear": "1959", + "originalLanguage": "it", + "voteAverage": 7.422, + "voteCount": 154, + "popularity": 6.3095 + }, + { + "id": 451676, + "title": "Beyond Words", + "originalTitle": "Beyond Words", + "overview": "A young Polish-born, Berlin-based lawyer working on refugee cases is unexpectedly reunited with his father, who is his only tie left with his homeland.", + "posterPath": "/tlU5U9mWYrwD6Ep73m1OqfPJJDQ.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-02-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 24, + "popularity": 6.3088 + }, + { + "id": 222935, + "title": "The Fault in Our Stars", + "originalTitle": "The Fault in Our Stars", + "overview": "Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel's story is about to be completely rewritten.", + "posterPath": "/kcVuktIlrn9SAN1uBmPDnocTQmF.jpg", + "backdropPath": "/oQaVV7p916HO5MDI820zzs1pin9.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2014-06-02", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.595, + "voteCount": 11405, + "popularity": 6.3084 + }, + { + "id": 9762, + "title": "Step Up", + "originalTitle": "Step Up", + "overview": "Delinquent Tyler Gage receives the opportunity of a lifetime after vandalizing a performing arts school, gaining him the chance to earn a scholarship and dance with up-and-coming dancer Nora.", + "posterPath": "/fmw52kXk2kN8AQil7tgOD41gt4Q.jpg", + "backdropPath": "/k3AGi4UD8Ql2dKosXh6FrBSKm0s.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 18, + 10749, + 80 + ], + "genres": [ + "Music", + "Drama", + "Romance", + "Crime" + ], + "releaseDate": "2006-08-11", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 3807, + "popularity": 6.308 + }, + { + "id": 39770, + "title": "Brief Crossing", + "originalTitle": "Brève traversée", + "overview": "A young French man and an older English woman spend one night together on a ship.", + "posterPath": "/nT8wLojXXdUEjpISv0cCJ7XqPiz.jpg", + "backdropPath": "/sPPHWQ8xJBSUjFTVR7HegydusKs.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2001-03-06", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 5.7, + "voteCount": 41, + "popularity": 6.3072 + }, + { + "id": 18450, + "title": "Zorro", + "originalTitle": "Zorro", + "overview": "A newly arrived governor finds his province under the control of the corrupt Colonel Huerta. To avoid assassination by Huerta, he pretends to be weak and indecisive so Huerta will believe he poses no threat. But secretly he masquerades as Zorro, and joins the monk Francisco and the beautiful aristocrat Hortensia in their fight for justice against Huerta and his soldiers.", + "posterPath": "/eXSEnru1aB5hUfnTt8RmzrYsS5y.jpg", + "backdropPath": "/AvAsOjV1ibvFT7HnQwOKB2BglHV.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 35, + 37 + ], + "genres": [ + "Adventure", + "Action", + "Comedy", + "Western" + ], + "releaseDate": "1975-03-06", + "releaseYear": "1975", + "originalLanguage": "it", + "voteAverage": 6.6, + "voteCount": 164, + "popularity": 6.3063 + }, + { + "id": 916387, + "title": "Heart of an Oak", + "originalTitle": "Le Chêne", + "overview": "Once upon a time, there was a pedunculate oak (Quercus robur), born in 1810, 210 years old and a pillar in its kingdom. This spectacular adventure features an extraordinary cast: squirrels, barnacles, jays, ants, field mice... This vibrant, whirring, marvelous little world seals its destiny around the majestic tree that welcomes them, feeds them and protects them from its roots to its crown. A poetic ode to life, in which nature alone expresses itself.", + "posterPath": "/8lldwEaYQBH5bJGvApQyVG0AZJX.jpg", + "backdropPath": "/8m9OmBUcfRV0d4hDM85d2WsKHBW.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2022-02-23", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 7.5, + "voteCount": 33, + "popularity": 6.3055 + }, + { + "id": 51210, + "title": "Prancer Returns", + "originalTitle": "Prancer Returns", + "overview": "This holiday-themed children's film offers a unique take on the legend of Santa Claus and his tiny reindeer. In this movie, a young boy finds a deer in the forest he is sure is Santa's beloved Prancer. Determined to return the creature to the North Pole and his rightful destiny, the child overcomes the cynicism of his family to teach them and us a lesson about the true spirit of Christmas.", + "posterPath": "/lPEtXRrjuDoCQmUhUz2044MPxn4.jpg", + "backdropPath": "/vdgklBuw8cm99cYtJ9qsKajialq.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2001-11-20", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 35, + "popularity": 6.3054 + }, + { + "id": 43051, + "title": "Al Capone", + "originalTitle": "Al Capone", + "overview": "In this unusually accurate biography, small-time hood Al Capone comes to Chicago at the dawn of Prohibition to be the bodyguard of racketeer Johnny Torrio. Capone's rise in Chicago gangdom is followed through murder, extortion, and political fraud. He becomes head of Chicago's biggest \"business,\" but moves inexorably toward his downfall and ignominious end.", + "posterPath": "/xmtLUojTRYTswWEx7U9lWjZeZtx.jpg", + "backdropPath": "/dm0e97z3atygNcEM67GwJrQanFC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 80, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Crime", + "Drama" + ], + "releaseDate": "1959-03-25", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 52, + "popularity": 6.3052 + }, + { + "id": 40841, + "title": "Roadside Prophets", + "originalTitle": "Roadside Prophets", + "overview": "On a quest to fulfill a friend's last wish, Joe takes to the desert road on his 1957 Harley-Davidson. Joined by wannabe biker Sam, Joe journeys from Los Angeles to Nevada, meeting all sorts of characters along the way.", + "posterPath": "/8KkFF5voIohrkjUzLY7eNnW10hR.jpg", + "backdropPath": "/6JtPHLLq7UbVEj2ILv0wt8xpi7G.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "1992-03-27", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 26, + "popularity": 6.3049 + }, + { + "id": 159095, + "title": "In Fear", + "originalTitle": "In Fear", + "overview": "Driving to a music festival in Ireland, a young couple gets trapped in a country maze on their way to a remote hotel, where an unidentifiable sinister force torments them.", + "posterPath": "/9GpmoAAp1LTMx8byVLlpjumOzgj.jpg", + "backdropPath": "/8F1PlmY053wnI4KjVrszT4co7g1.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2013-04-03", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 235, + "popularity": 6.3045 + }, + { + "id": 67913, + "title": "The Guard", + "originalTitle": "The Guard", + "overview": "When a small-town Irish cop with a crass personality is partnered with a straight-laced FBI agent to bust an international drug-trafficking ring, they must settle their differences in order to take down a dangerous gang.", + "posterPath": "/dtQiStID0le2EMTmJXupPRybARB.jpg", + "backdropPath": "/aCSsQrr6QoSFFNlBElLWzR3Z51c.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 53, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Thriller", + "Crime" + ], + "releaseDate": "2011-07-07", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.985, + "voteCount": 1327, + "popularity": 6.3042 + }, + { + "id": 34626, + "title": "Merantau", + "originalTitle": "Merantau", + "overview": "In Minangkabau, West Sumatera, Yuda a skilled practitioner of Silat Harimau is in the final preparations to begin his \"Merantau\" a century's old rites-of-passage to be carried out by the community's young men that will see him leave the comforts of his idyllic farming village and make a name for himself in the bustling city of Jakarta.", + "posterPath": "/60Vd3zovl6XeRH8GQOsM9fwMHRO.jpg", + "backdropPath": "/sHy9qPITQcD8PGHUHRWseguyfiE.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 53 + ], + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2009-08-06", + "releaseYear": "2009", + "originalLanguage": "id", + "voteAverage": 6.5, + "voteCount": 229, + "popularity": 6.3041 + }, + { + "id": 22236, + "title": "Chok Dee: The Kickboxer", + "originalTitle": "Chok-Dee", + "overview": "Dida Diafat plays himself in this story based around his thai boxing career.", + "posterPath": "/3vndMgKR6O6ZBCiki9huWdPNSoT.jpg", + "backdropPath": "/2GsiN4XEnSdqTbLvltfLTiYXYXH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28 + ], + "genres": [ + "Drama", + "Action" + ], + "releaseDate": "2005-02-16", + "releaseYear": "2005", + "originalLanguage": "fr", + "voteAverage": 5.263, + "voteCount": 20, + "popularity": 6.3041 + }, + { + "id": 485882, + "title": "Cleo", + "originalTitle": "Cleo", + "overview": "Can Cleo turn back time? It seems that misfortune has been haunting her loved ones since she was born. A legendary treasure sounds like the solution to her problems, but Cleo will have to let go of the past.", + "posterPath": "/c1TN0Z19cE2I61XxeNSqBAmuR2N.jpg", + "backdropPath": "/K570m8OtVvxL2CCJ2gUR22qeFs.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-07-25", + "releaseYear": "2019", + "originalLanguage": "de", + "voteAverage": 5.938, + "voteCount": 16, + "popularity": 6.3035 + }, + { + "id": 81, + "title": "Nausicaä of the Valley of the Wind", + "originalTitle": "風の谷のナウシカ", + "overview": "After a global war, the seaside kingdom known as the Valley of the Wind remains one of the last strongholds on Earth untouched by a poisonous jungle and the powerful insects that guard it. Led by the courageous Princess Nausicaä, the people of the Valley engage in an epic struggle to restore the bond between humanity and Earth.", + "posterPath": "/tcrkfB8SRPQCgwI88hQScua6nxh.jpg", + "backdropPath": "/ulVUa2MvnJAjAeRt7h23FFJVRKH.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 14 + ], + "genres": [ + "Adventure", + "Animation", + "Fantasy" + ], + "releaseDate": "1984-03-11", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 7.949, + "voteCount": 3877, + "popularity": 6.3032 + }, + { + "id": 1188258, + "title": "18×2 Beyond Youthful Days", + "originalTitle": "青春18x2 君へと続く道", + "overview": "Having lost his job and the company he built, a 36-year-old man at rock bottom goes on a wistful solo trip to Japan in search of the love he left behind.", + "posterPath": "/nt68WTFgtZdLBwpLBF2q7GFq5Fw.jpg", + "backdropPath": "/qu27OPbaIO9OBj3zd4h9bdS6e58.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2024-03-14", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.357, + "voteCount": 49, + "popularity": 6.3027 + }, + { + "id": 159667, + "title": "Molly Maxwell", + "originalTitle": "Molly Maxwell", + "overview": "At Phoenix Progressive School, students take notes lying on parlor couches and are encouraged to explore their gifts through electives like break-dancing and graphic-novel writing. In the midst of all this liberal pedagogy and budding talent, Molly Maxwell feels unexceptional, until she falls for her attractive English teacher, Ben.", + "posterPath": "/mD2S8IWRQls67SGI9jQSKv5H6Or.jpg", + "backdropPath": "/f7H0215XAgJqgdn6MyGOx6tMnB9.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-01-06", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 57, + "popularity": 6.3017 + }, + { + "id": 118670, + "title": "Decalogue X", + "originalTitle": "Dekalog, dziesięć", + "overview": "Jerzy and Artur’s father dies, leaving behind a valuable stamp collection, which, they discover, is coveted by dealers of varying degrees of shadiness. The more involved the brothers get in their father’s world, the more dire and comical their situation becomes.", + "posterPath": "/7zvQpJDfpXlCe9FvBdO86hIgavN.jpg", + "backdropPath": "/lpiU3gfKeRSYBWqFZFSixnYSRJI.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770, + 35 + ], + "genres": [ + "Drama", + "TV Movie", + "Comedy" + ], + "releaseDate": "1989-05-16", + "releaseYear": "1989", + "originalLanguage": "pl", + "voteAverage": 7.912, + "voteCount": 131, + "popularity": 6.3011 + }, + { + "id": 697843, + "title": "Extraction 2", + "originalTitle": "Extraction 2", + "overview": "Back from the brink of death, highly skilled commando Tyler Rake takes on another dangerous mission: saving the imprisoned family of a ruthless gangster.", + "posterPath": "/7gKI9hpEMcZUQpNgKrkDzJpbnNS.jpg", + "backdropPath": "/wRxLAw4l17LqiFcPLkobriPTZAw.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2023-06-09", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.407, + "voteCount": 2726, + "popularity": 6.3006 + }, + { + "id": 201076, + "title": "Mirage Men", + "originalTitle": "Mirage Men", + "overview": "For over 60 years teams within the US Air Force and Intelligence services exploited and manipulated beliefs about UFOs and ET visitations as part of their counterintelligence programs. In doing so they spawned a mythology so powerful that it captivated and warped many brilliant minds, including several of their own. Now, for the first time, some of those behind these operations, and their victims, speak out, revealing a true story that is part Manchurian Candidate and part Close Encounters of the Third Kind.", + "posterPath": "/u45x1MGvI4CDG1IHuS1kp6SCcF3.jpg", + "backdropPath": "/cRLmCeENwXoT5QNhscRhLkLcVN6.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2013-06-13", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 15, + "popularity": 6.2998 + }, + { + "id": 14817, + "title": "Good Burger", + "originalTitle": "Good Burger", + "overview": "Two L.A. teens with summer jobs at Good Burger try to save their small restaurant when a corporate giant burger franchise moves in across the street.", + "posterPath": "/imFLUF2TYkm13GpFYTKYF7T27sP.jpg", + "backdropPath": "/l8S7oVjzN4uUsbZmf8DwPIFHRXa.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1997-07-25", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.129, + "voteCount": 554, + "popularity": 6.2991 + }, + { + "id": 376003, + "title": "Mercury Plains", + "originalTitle": "Mercury Plains", + "overview": "A troubled man runs away to Mexico and is recruited to join a paramilitary group of teens fighting the drug cartels. He proves himself to the group, but questions their motive.", + "posterPath": "/eZXUTjxjorNQSCYewKS9mvubeBG.jpg", + "backdropPath": "/6qboERaTcl1XsqtQE3YmWUfqIbl.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18 + ], + "genres": [ + "Action", + "Adventure", + "Drama" + ], + "releaseDate": "2016-01-05", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 50, + "popularity": 6.2989 + }, + { + "id": 958736, + "title": "The Mountain", + "originalTitle": "La Montagne", + "overview": "Pierre, a Parisian engineer, goes up in the Alps for his work. Irresistibly attracted by what surrounds him, he camps out alone high in the mountains and leaves behind his everyday life. Up there he meets Léa, a chef of an alpine restaurant, while mysterious glows glitter in the deep mountains…", + "posterPath": "/8D2MYB2jHJsK0M5MyPRLMeeS6vt.jpg", + "backdropPath": "/gsAgVjiQIunXc9o9ZOhIdG49Hl7.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14 + ], + "genres": [ + "Drama", + "Fantasy" + ], + "releaseDate": "2023-02-01", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 52, + "popularity": 6.2983 + }, + { + "id": 723347, + "title": "Robots", + "originalTitle": "Robots", + "overview": "A womanizer and a gold digger trick people into relationships with illegal robot doubles. When they unwittingly use this scam on each other, their robot doubles fall in love and elope, forcing the duo to team up to hunt them down before the authorities discover their secret.", + "posterPath": "/5BAqLXrPD4ra3zA07lVsozK6sEj.jpg", + "backdropPath": "/ujAHEr1smB5pzNYUMZpIj1Bm6uq.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878, + 10749, + 14 + ], + "genres": [ + "Comedy", + "Science Fiction", + "Romance", + "Fantasy" + ], + "releaseDate": "2023-04-26", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 237, + "popularity": 6.2977 + }, + { + "id": 211331, + "title": "Diamond Girl", + "originalTitle": "Diamond Girl", + "overview": "Denny Montana never looks at Claire. She has been working for him for four years and fallen in love at a distance. When Denny's brother Regan returns to oversee the sale of the family vineyard, Claire and Reganen makes pact. To make Denny jealous and lure him away from his girlfriend's bad influence. But what Claire and Regan did not take into account was how difficult it can be to control their own emotions.", + "posterPath": "/awumt0NW0qXwnBduEXyfq3fDKZ5.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 10770, + 18, + 10749 + ], + "genres": [ + "TV Movie", + "Drama", + "Romance" + ], + "releaseDate": "1998-07-25", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 4.455, + "voteCount": 11, + "popularity": 6.2977 + }, + { + "id": 340361, + "title": "Florida", + "originalTitle": "Floride", + "overview": "Although he's now eighty years old, Claude Lherminier is still as imposing as he ever was. But his bouts of forgetfulness and confusion are becoming increasingly frequent. Even so, he stubbornly refuses to admit that anything is wrong. Carole, his oldest daughter, wages a daily and taxing battle to ensure that he's not left on his own. Claude suddenly decides on a whim to go to Florida. What lies behind this sudden trip?", + "posterPath": "/9i91hzKVphqDPFUc8roQWygP5pZ.jpg", + "backdropPath": "/1SMBTYIj5KZ3p4vP1EbkaixYxLY.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2015-08-12", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 6.4, + "voteCount": 77, + "popularity": 6.2972 + }, + { + "id": 39061, + "title": "Gie", + "originalTitle": "Gie", + "overview": "Indonesian activist Soe Hok Gie experiences a political awakening during the tumultuous regimes of Soeharto and Soekarno.", + "posterPath": "/8hXLte8VGz0UTRluYEq79QmkCU9.jpg", + "backdropPath": "/bBPOGlJ8zFRwvklQs0IHojeevFh.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2005-07-13", + "releaseYear": "2005", + "originalLanguage": "id", + "voteAverage": 6, + "voteCount": 17, + "popularity": 6.2972 + }, + { + "id": 51971, + "title": "Hideaway (Le refuge)", + "originalTitle": "Le Refuge", + "overview": "Mousse and Louis are young, beautiful, rich and in love. But drugs have invaded their lives. One day, they overdose and Louis dies. Mousse survives, but soon learns she's pregnant. Feeling lost, Mousse runs away to a house far from Paris. Several months later, Louis' brother joins her in her refuge.", + "posterPath": "/kjpwk9ruPZXIPDcRhwuT458eFYH.jpg", + "backdropPath": "/kheLekTrNqfXvYnBE9P4u7FM6rX.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-12-11", + "releaseYear": "2009", + "originalLanguage": "fr", + "voteAverage": 6.1, + "voteCount": 83, + "popularity": 6.2962 + }, + { + "id": 6282, + "title": "Coyote Ugly", + "originalTitle": "Coyote Ugly", + "overview": "Graced with a velvet voice, 21-year-old Violet Sanford heads to New York to pursue her dream of becoming a songwriter only to find her aspirations sidelined by the accolades and notoriety she receives at her \"day\" job as a barmaid at Coyote Ugly. The \"Coyotes\" as they are affectionately called tantalize customers and the media alike with their outrageous antics, making Coyote Ugly the watering hole for guys on the prowl.", + "posterPath": "/xYM0laKrEqjiRSQNvqRrXPXN3iL.jpg", + "backdropPath": "/f2MzXz3vjuNtSPn17ugFa6oTUmc.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10402, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Music", + "Romance" + ], + "releaseDate": "2000-07-30", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 2196, + "popularity": 6.2962 + }, + { + "id": 113597, + "title": "Damned in Venice", + "originalTitle": "Nero veneziano", + "overview": "A blind boy, who lives alone with his mean sister in a rundown hotel in Venice, receives a vision that warns him of the upcoming birth of the Antichrist. Soon, his sister mysteriously becomes pregnant.", + "posterPath": "/audDqywQyzEXa6vzrouCgocCtQE.jpg", + "backdropPath": "/oP64RUdMf02xYgc8hFOWmfkISLD.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 27 + ], + "genres": [ + "Mystery", + "Horror" + ], + "releaseDate": "1978-02-18", + "releaseYear": "1978", + "originalLanguage": "it", + "voteAverage": 5.5, + "voteCount": 22, + "popularity": 6.2957 + }, + { + "id": 419639, + "title": "The Thinning", + "originalTitle": "The Thinning", + "overview": "In a post-apocalyptic future where population control is dictated by a high-school aptitude test, two students discover the test is smoke and mirrors hiding a larger conspiracy.", + "posterPath": "/1vgtCoBbBzeoW78g8fHT4EekoM2.jpg", + "backdropPath": "/iAVTqLitjc4S7FeqoGn9DsYWpCy.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 27 + ], + "genres": [ + "Thriller", + "Drama", + "Horror" + ], + "releaseDate": "2016-10-12", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 373, + "popularity": 6.2953 + }, + { + "id": 406848, + "title": "Daydreams", + "originalTitle": "L'Indomptée", + "overview": "Axèle is a photographer, Camille is a writer. They have been awarded an arts residency at the Villa Medicis in Rome. Camille is accompanied by her husband, the famous writer Marc Landré. When a strange rivalry takes shape between them, Camille bonds with Axèle. But who is Axèle really ? A total artist, who never compromises and confuses herself with her oeuvre ? Or a ghost ? This year at the Villa Medici, where bodies and souls free themselves, no one will come out unscathed.", + "posterPath": "/m55L6882NsV2iUqNECdR64lgWUY.jpg", + "backdropPath": "/cJwjgoOIQ7puDAbNss0802IN3QF.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-02-15", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 4.667, + "voteCount": 12, + "popularity": 6.295 + }, + { + "id": 209269, + "title": "Felony", + "originalTitle": "Felony", + "overview": "Three detectives become embroiled in a tense struggle after a tragic accident that leaves a child in critical condition. One is guilty of a crime, one will try to cover it up, and the other attempts to expose it. How far will these men go to disguise and unravel the truth?", + "posterPath": "/b36OAp2q5m0oZ4oUcwg2B0cTHrV.jpg", + "backdropPath": "/4FyGcHIB4sJ01weaIpzTNaPRHuh.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 80 + ], + "genres": [ + "Mystery", + "Thriller", + "Crime" + ], + "releaseDate": "2014-08-28", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 189, + "popularity": 6.2949 + }, + { + "id": 519141, + "title": "Matthias & Maxime", + "originalTitle": "Matthias & Maxime", + "overview": "Two childhood best friends are asked to share a kiss for the purposes of a student short film. Soon, a lingering doubt sets in, confronting both men with their preferences, threatening the brotherhood of their social circle, and, eventually, changing their lives.", + "posterPath": "/j3DI3UjYBRqIbO1keUU1Bzn5qG6.jpg", + "backdropPath": "/27xckIk5qdMina9WEtnMjp3oJHX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2019-10-09", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 7.1, + "voteCount": 493, + "popularity": 6.2948 + }, + { + "id": 6522, + "title": "Life", + "originalTitle": "Life", + "overview": "Two men in 1930s Mississippi become friends after being sentenced to life in prison together for a crime they did not commit.", + "posterPath": "/saWYpX3ADdmdByQZVrSYUNbQ9GC.jpg", + "backdropPath": "/GjoNCBnOdmKz7ZVG0IICfg1GKa.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "1999-04-16", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 839, + "popularity": 6.2948 + }, + { + "id": 546261, + "title": "The Guest", + "originalTitle": "L'ospite", + "overview": "Dumped by his girlfriend and finding himself stranded on different couches at friends’ places, Guido tries to transform his drift into an opportunity for a new beginning.", + "posterPath": "/xiZk27ucog7EvwzboTiwiF93Z2O.jpg", + "backdropPath": "/pNymG06uGwQqtcGoU0GEmBfLVWm.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-07-10", + "releaseYear": "2019", + "originalLanguage": "it", + "voteAverage": 6.6, + "voteCount": 83, + "popularity": 6.2947 + }, + { + "id": 9691, + "title": "Assassins", + "originalTitle": "Assassins", + "overview": "Assassin Robert Rath arrives at a funeral to kill a prominent mobster, only to witness a rival hired gun complete the job for him -- with grisly results. Horrified by the murder of innocent bystanders, Rath decides to take one last job and then return to civilian life. But finding his way out of the world of contract killing grows ever more dangerous as Rath falls for his female target and becomes a marked man himself.", + "posterPath": "/wPmZYnaQpxwoHmwNwVhZ2IY0UbF.jpg", + "backdropPath": "/sYpmWBe1IO7Fxthtw3UmlzQEylK.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 80, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Crime", + "Thriller" + ], + "releaseDate": "1995-10-06", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.494, + "voteCount": 1646, + "popularity": 6.2946 + }, + { + "id": 507076, + "title": "Climax", + "originalTitle": "Climax", + "overview": "When a dance troupe is lured to an empty school, a bowl of drug-laced sangria causes their jubilant rehearsal to descend into a dark and explosive nightmare as they try to survive the night—and find who's responsible—before it's too late.", + "posterPath": "/47IXH2iEWwX0F7vIyGXaKQ0psBG.jpg", + "backdropPath": "/v0sblc9A8eaE8EqDQ5Y6fELj4oB.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18 + ], + "genres": [ + "Horror", + "Drama" + ], + "releaseDate": "2018-09-19", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 7.047, + "voteCount": 2265, + "popularity": 6.2938 + }, + { + "id": 1203653, + "title": "Exhibiting Forgiveness", + "originalTitle": "Exhibiting Forgiveness", + "overview": "A Black artist on the path to success is derailed by an unexpected visit from his estranged father, a recovering addict desperate to reconcile. Together, they struggle and learn that forgetting might be a greater challenge than forgiving.", + "posterPath": "/gGlvpqgmyJovSA0Ny0D0gvUZFV6.jpg", + "backdropPath": "/ov8g2TwuzNknrD64mGhtSZnqdtn.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-09-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.717, + "voteCount": 23, + "popularity": 6.2936 + }, + { + "id": 335988, + "title": "Transformers: The Last Knight", + "originalTitle": "Transformers: The Last Knight", + "overview": "Humans and Transformers are at war. Optimus Prime is gone. The key to saving our future lies buried in the secrets of the past, in the hidden history of Transformers on Earth. Saving our world falls upon the shoulders of an unlikely alliance: Cade Yeager; Bumblebee; an English Lord; and an Oxford Professor.", + "posterPath": "/s5HQf2Gb3lIO2cRcFwNL9sn1o1o.jpg", + "backdropPath": "/1n00NlOGRFZVs8coBxyZLm5l4EC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "releaseDate": "2017-06-16", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.056, + "voteCount": 6536, + "popularity": 6.2923 + }, + { + "id": 12718, + "title": "Teenage Caveman", + "originalTitle": "Teenage Caveman", + "overview": "In a post-apocalyptic future mankind is lives in a prehistoric manner. After killing his father for sexually assaulting his girlfriend, the son of a tribal leader runs away with a group of his teenage friends. They are taken in by Neil and Judith who introduce them to the vices outlawed by their tribes namely sex and drugs.Neil and Judith, however, are genetically altered indestructible mutants who have their own plans for the future of the human race.", + "posterPath": "/edAu8TypWbX1XQ39bMUjCnT2jzV.jpg", + "backdropPath": "/8M0AUVduBXdennlgXNNjkPyunhI.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 27, + 878 + ], + "genres": [ + "Comedy", + "Horror", + "Science Fiction" + ], + "releaseDate": "2002-04-03", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 3.7, + "voteCount": 63, + "popularity": 6.2921 + }, + { + "id": 744276, + "title": "After Ever Happy", + "originalTitle": "After Ever Happy", + "overview": "As a shocking truth about a couple's families emerges, the two lovers discover they are not so different from each other. Tessa is no longer the sweet, simple, good girl she was when she met Hardin — any more than he is the cruel, moody boy she fell so hard for.", + "posterPath": "/moogpu8rNkEjTgFyLXwhPghft5w.jpg", + "backdropPath": "/rwgmDkIEv8VjAsWx25ottJrFvpO.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2022-08-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.79, + "voteCount": 1329, + "popularity": 6.292 + }, + { + "id": 635910, + "title": "The Last Voyage of the Demeter", + "originalTitle": "The Last Voyage of the Demeter", + "overview": "The crew of the merchant ship Demeter attempts to survive the ocean voyage from Carpathia to London as they are stalked each night by a merciless presence onboard the ship.", + "posterPath": "/nrtbv6Cew7qC7k9GsYSf5uSmuKh.jpg", + "backdropPath": "/dKC5qWi6S8SKkSzrP6LxTk0cb98.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14 + ], + "genres": [ + "Horror", + "Fantasy" + ], + "releaseDate": "2023-08-09", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.752, + "voteCount": 1828, + "popularity": 6.2912 + }, + { + "id": 10832, + "title": "Them", + "originalTitle": "Ils", + "overview": "Lucas and Clementine live peacefully in their isolated country house, but one night they wake up to strange noise. They're not alone... and a group of hooded assailants begin to terrorize them throughout the night.", + "posterPath": "/kEO9nGyCRGLNIb5kPPjdYAqJ4bO.jpg", + "backdropPath": "/xwSFvt9l7YilxS27wDmZuERIVrT.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2006-07-19", + "releaseYear": "2006", + "originalLanguage": "fr", + "voteAverage": 6.143, + "voteCount": 571, + "popularity": 6.2909 + }, + { + "id": 479093, + "title": "Defective", + "originalTitle": "Defective", + "overview": "Set in the near future where Rhett Murphy and his estranged sister Jean are forced to flee from a militant police state after witnessing the dark secrets of a nefarious corporation.", + "posterPath": "/qWZouRYPNctsfYOhXYoYRuJzqQF.jpg", + "backdropPath": "/fUhCvs4JTFhliv4vAEO8nR6y8Y2.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 28, + 53 + ], + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "releaseDate": "2017-10-17", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.36, + "voteCount": 25, + "popularity": 6.2905 + }, + { + "id": 33061, + "title": "Troll", + "originalTitle": "Troll", + "overview": "When a family moves into a San Francisco apartment, an opportunistic troll decides to make his move and take possession of little Wendy, thereby paving the way for new troll recruits, the first in his army that will take eventual control of the planet. We soon discover Torok is the ex-husband of Eunice St. Clair, a resident in the building who was married to Torok.", + "posterPath": "/rqU0HnCty94ds8e4At4TzEH3CcY.jpg", + "backdropPath": "/qAfv5iUmIUlcVPpXpcJb491Z0Lj.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 27 + ], + "genres": [ + "Fantasy", + "Horror" + ], + "releaseDate": "1986-01-17", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5.065, + "voteCount": 253, + "popularity": 6.2902 + }, + { + "id": 665, + "title": "Ben-Hur", + "originalTitle": "Ben-Hur", + "overview": "In 26 AD, Judah Ben-Hur, a Jew in ancient Judea, opposes the occupying Roman empire. Falsely accused by a Roman childhood friend-turned-overlord of trying to kill the Roman governor, he is put into slavery and his mother and sister are taken away as prisoners.", + "posterPath": "/m4WQ1dBIrEIHZNCoAjdpxwSKWyH.jpg", + "backdropPath": "/sU3gFo7Gn67zjtKXIvzJ4omcUbH.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 12 + ], + "genres": [ + "History", + "Drama", + "Adventure" + ], + "releaseDate": "1959-11-18", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 2983, + "popularity": 6.29 + }, + { + "id": 1233354, + "title": "Heads or Fails", + "originalTitle": "Aimer perdre", + "overview": "Armande Pigeon, a queen of shenanigans in Brussels struggles to make ends meet because she can’t stop gambling on everything, always ending up on the wrong side of luck. When she teams up with Ronnie one night, everything changes — they win it all. And when you hit a winning streak, you have to know when to stop.", + "posterPath": "/p03nyFzLERXEeE7MfBsCzBVb266.jpg", + "backdropPath": "/4LUCoKZPGe7bvVRriReoUHrjEfl.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2025-03-26", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.6, + "voteCount": 16, + "popularity": 6.2899 + }, + { + "id": 1263256, + "title": "Happy Gilmore 2", + "originalTitle": "Happy Gilmore 2", + "overview": "Happy Gilmore isn't done with golf — not by a long shot. Since his retirement after his first Tour Championship win, Gilmore returns to finance his daughter's ballet classes.", + "posterPath": "/nRwDPfYUzzzUQarfMxvPlasxzpL.jpg", + "backdropPath": "/stCEYCxA3SknIIne1H4LmaIJ8ii.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-07-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 805, + "popularity": 6.2897 + }, + { + "id": 32450, + "title": "Brain Donors", + "originalTitle": "Brain Donors", + "overview": "Three manic idiots—a lawyer, a cab driver and a handyman—team up to run a ballet company to fulfil the will of a millionaire. Stooge-like antics result as the trio try to outwit the rich widow and her scheming big-shot lawyer, who also wants to run the ballet.", + "posterPath": "/r928uiKrN1mvPrqyHy2djLUBlAe.jpg", + "backdropPath": "/ekzXIjP2KAWZFQ8ZUcib2VHx00s.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1992-04-17", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.143, + "voteCount": 70, + "popularity": 6.2896 + }, + { + "id": 13969, + "title": "First Daughter", + "originalTitle": "First Daughter", + "overview": "Samantha MacKenzie, the daughter of the president of the United States, arrives at college with a group of Secret Service agents. Samantha, however, resents their presence and decides she wants to attend school just like a normal student. Her father agrees to recall the agents but secretly assigns James, an undercover agent, to pose as a student.", + "posterPath": "/iUZ3hDMo8SGY2IoujCKwVt8ukm9.jpg", + "backdropPath": "/1ajUdpDtgR64pVu7HjC3VCpBSXp.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 18, + 10749 + ], + "genres": [ + "Family", + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2004-09-24", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 978, + "popularity": 6.2888 + }, + { + "id": 38153, + "title": "Shadow Conspiracy", + "originalTitle": "Shadow Conspiracy", + "overview": "Bobby Bishop is a special assistant to the President of the United States. Accidentally, he meets his friend professor Pochenko on the street. Pochenko has time to tell Bishop about some conspiracy in the White House but then immediately gets killed by an assassin. Now bad guys are after Bobby as the only man who knows about a plot. Bishop must now not only survive, but to stop the conspirators from achieving their goal. And he doesn't know whom to trust.", + "posterPath": "/m8dgxxCrpLhKjkjH2DPxkz0inoJ.jpg", + "backdropPath": "/xAiQwgOSIhNs9ZwIPeDTwpAyP78.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1997-01-25", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 4.99, + "voteCount": 99, + "popularity": 6.2876 + }, + { + "id": 6264, + "title": "Prince Valiant", + "originalTitle": "Prince Valiant", + "overview": "An Arthurian legend of young Prince Valiant, son of the King of Scandia. After the King is exiled by an evil leader, the Prince travels to Camelot to secure the aid of King Arthur in helping restore his family to power and prevent a plot by the Black Knight.", + "posterPath": "/pTg3XnghiI8Z8sp7Pxknnl2A3rn.jpg", + "backdropPath": "/jpu6mTZEAQ1UGTxf0G30qVQPE87.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14 + ], + "genres": [ + "Adventure", + "Fantasy" + ], + "releaseDate": "1997-07-24", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 5.162, + "voteCount": 74, + "popularity": 6.2873 + }, + { + "id": 1272149, + "title": "Bridget Jones: Mad About the Boy", + "originalTitle": "Bridget Jones: Mad About the Boy", + "overview": "Bridget Jones navigates life as a widow and single mum with the help of her family, friends, and former lover, Daniel. Back to work and on the apps, she's pursued by a younger man and maybe – just maybe – her son's science teacher.", + "posterPath": "/e5VR3nhLYG60znxaqU84wv4VSCb.jpg", + "backdropPath": "/zwSDvbnN51JqU1ULzPnEc22DkqV.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 18 + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ], + "releaseDate": "2025-02-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.467, + "voteCount": 437, + "popularity": 6.2867 + }, + { + "id": 359724, + "title": "Ford v Ferrari", + "originalTitle": "Ford v Ferrari", + "overview": "American car designer Carroll Shelby and the British-born driver Ken Miles work together to battle corporate interference, the laws of physics, and their own personal demons to build a revolutionary race car for Ford Motor Company and take on the dominating race cars of Enzo Ferrari at the 24 Hours of Le Mans in France in 1966.", + "posterPath": "/dR1Ju50iudrOh3YgfwkAU1g2HZe.jpg", + "backdropPath": "/2vq5GTJOahE03mNYZGxIynlHcWr.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 36 + ], + "genres": [ + "Drama", + "Action", + "History" + ], + "releaseDate": "2019-11-13", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.007, + "voteCount": 8614, + "popularity": 6.2864 + }, + { + "id": 681355, + "title": "North Hollywood", + "originalTitle": "North Hollywood", + "overview": "A kid must decide between choosing the future his father wants and following his dream of becoming a pro skater.", + "posterPath": "/rLVxpEkiSs8OnOqg8QmLT7Bs09e.jpg", + "backdropPath": "/yAk1PpHMG6BY6ABlpWAXPyKZDmy.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-03-26", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 44, + "popularity": 6.2859 + }, + { + "id": 11932, + "title": "Bride of Chucky", + "originalTitle": "Bride of Chucky", + "overview": "Chucky is reborn when his old flame, Tiffany, rescues his battered doll parts from a police impound.", + "posterPath": "/uB2BNPi6GE6sNci6M7vL0Hux7sr.jpg", + "backdropPath": "/fLTd0VxpijUt6Hm1QM2ehLpWPeu.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "1998-10-15", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.125, + "voteCount": 2052, + "popularity": 6.2858 + }, + { + "id": 434392, + "title": "The Rake", + "originalTitle": "The Rake", + "overview": "Ben and Ashley come together 20 years after the murder of their parents to determine the cause of their parents' death. Ashley is troubled by the idea that the thing that took her parents' lives may not be finished with her family.", + "posterPath": "/36PlBob2b4mR8FGLA44SbYuhL6c.jpg", + "backdropPath": "/cNIECQ8CM0NqBXosRfPcKNhntqS.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2018-06-05", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.632, + "voteCount": 34, + "popularity": 6.2853 + }, + { + "id": 522478, + "title": "Peter Rabbit 2: The Runaway", + "originalTitle": "Peter Rabbit 2: The Runaway", + "overview": "Peter Rabbit runs away from his human family when he learns they are going to portray him in a bad light in their book. Soon, he crosses paths with an older rabbit who ropes him into a heist.", + "posterPath": "/cycDz68DtTjJrDJ1fV8EBq2Xdpb.jpg", + "backdropPath": "/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2021-03-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 860, + "popularity": 6.2842 + }, + { + "id": 308831, + "title": "They Returned", + "originalTitle": "Ellos Volvieron", + "overview": "They Returned is a beautifully touching and unnerving story about the unexplained disappearance of three children, two boys and one girl, and their reappearance three days later in a semi-autistic state. Not even the children themselves are able to help anyone understand what happened.", + "posterPath": "/sj6fKYljxp9WxSF5HLAIqWdTitx.jpg", + "backdropPath": "/ecDojCxrXQw12f5fhMKMEY3Reik.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 27, + 18 + ], + "genres": [ + "Crime", + "Horror", + "Drama" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "es", + "voteAverage": 5.788, + "voteCount": 26, + "popularity": 6.2837 + }, + { + "id": 77444, + "title": "The Corridor", + "originalTitle": "The Corridor", + "overview": "Friends on a weekend excursion take a path into a forest that leads to death and destruction.", + "posterPath": "/ziBVNU3Q9AanaeERPXa0nljwFav.jpg", + "backdropPath": "/2BC3FRdLj6DpRRFUOssRhiyR1Oh.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 53, + 27 + ], + "genres": [ + "Drama", + "Science Fiction", + "Thriller", + "Horror" + ], + "releaseDate": "2012-03-30", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 4.798, + "voteCount": 47, + "popularity": 6.2833 + }, + { + "id": 615658, + "title": "Awake", + "originalTitle": "Awake", + "overview": "After a sudden global event wipes out all electronics and takes away humankind’s ability to sleep, chaos quickly begins to consume the world. Only Jill, an ex-soldier with a troubled past, may hold the key to a cure in the form of her own daughter. The question is, can Jill safely deliver her daughter and save the world before she herself loses her mind.", + "posterPath": "/d8WJFQyNNAEmuGeDwxPhBpx0G4B.jpg", + "backdropPath": "/3RMbkXS4ocMmoJyAD3ZsWbm32Kx.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 878, + 53 + ], + "genres": [ + "Drama", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2021-06-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.864, + "voteCount": 1123, + "popularity": 6.2828 + }, + { + "id": 48636, + "title": "Nekromantik 2", + "originalTitle": "Nekromantik 2", + "overview": "Monika lives with Rob, a corpse she loves. Her dilemma intensifies when she meets Mark and considers a normal life with him. She must choose between her affection for Rob and a new relationship.", + "posterPath": "/q1CtldLFgg4kRP81o0mY9f42ubJ.jpg", + "backdropPath": "/k3gACx1aB6fFvpKi6nyzhQ54PmY.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 10749 + ], + "genres": [ + "Horror", + "Drama", + "Romance" + ], + "releaseDate": "1991-05-07", + "releaseYear": "1991", + "originalLanguage": "de", + "voteAverage": 5, + "voteCount": 105, + "popularity": 6.2822 + }, + { + "id": 1068385, + "title": "Double Speech", + "originalTitle": "Doble discurso", + "overview": "An image consultant helps a corrupt politician form a romantic attachment with a journalist who despises him.", + "posterPath": "/a3mMwp42qXaA4DLNcXvNO0u01Pi.jpg", + "backdropPath": "/iHxd3wwMLD0b194LVawEqaxxdNB.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 53 + ], + "genres": [ + "Comedy", + "Romance", + "Thriller" + ], + "releaseDate": "2023-07-27", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 7.6, + "voteCount": 17, + "popularity": 6.2816 + }, + { + "id": 50765, + "title": "Ticking Clock", + "originalTitle": "Ticking Clock", + "overview": "A reporter stumbles upon the journal of a murderer with plans to butcher specific girls, and he begins to investigates on his own, and finding that every trail leads to a 9-year-old orphan living in a group home.", + "posterPath": "/yHBeLWuTLozNLAXFnbeG0P89h0.jpg", + "backdropPath": "/KTBzxn8mM3czqk8DaJuONtXvE3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2011-01-04", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.184, + "voteCount": 79, + "popularity": 6.2813 + }, + { + "id": 242224, + "title": "The Babadook", + "originalTitle": "The Babadook", + "overview": "A single mother, plagued by the violent death of her husband, battles with her son's fear of a monster lurking in the house, but soon discovers a sinister presence all around her.", + "posterPath": "/qt3fqapeo94TfvMyld8P7gkpXLz.jpg", + "backdropPath": "/t18ocAG0cpgC1AP288SseqmXqB5.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27 + ], + "genres": [ + "Drama", + "Horror" + ], + "releaseDate": "2014-05-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.528, + "voteCount": 6241, + "popularity": 6.2804 + }, + { + "id": 1248753, + "title": "Amber Alert", + "originalTitle": "Amber Alert", + "overview": "A ride-share turns into a high-stakes game of cat and mouse after it follows a car fitting the description of an AMBER Alert.", + "posterPath": "/sI0WxsgVFE5RkPA7G6PznWRxBEW.jpg", + "backdropPath": "/vt37v6ouquokPYeEg3xqkzKjHRj.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2024-09-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.06, + "voteCount": 218, + "popularity": 6.2797 + }, + { + "id": 1181107, + "title": "The King of Kings", + "originalTitle": "The King of Kings", + "overview": "Charles Dickens tells his young son Walter the greatest story ever told, and what begins as a bedtime tale becomes a life-changing journey. Through vivid imagination, the boy walks alongside Jesus, witnessing His miracles, facing His trials, and understanding His ultimate sacrifice.", + "posterPath": "/ccw7CCIAvcZV431CP7NhHAHuiHR.jpg", + "backdropPath": "/mr2LvZydvor6CDZhrpJLRYMCcBc.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 18, + 12 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Drama", + "Adventure" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 114, + "popularity": 6.2797 + }, + { + "id": 628878, + "title": "Panama", + "originalTitle": "Panama", + "overview": "An ex-marine is hired by a defense contractor to travel to Panama to complete an arms deal. In the process he becomes involved with the U.S. invasion of Panama, and learns an important lesson about the true nature of political power.", + "posterPath": "/u9DzgsmssidygWuORgYzhi317vj.jpg", + "backdropPath": "/trtFAmf4IcndxSh5tIfLwxPyW67.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28 + ], + "genres": [ + "Thriller", + "Action" + ], + "releaseDate": "2022-03-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.229, + "voteCount": 175, + "popularity": 6.2791 + }, + { + "id": 506407, + "title": "Social Animals", + "originalTitle": "Social Animals", + "overview": "Determined not to turn into her parents, or be drawn into any relationship longer than a one night stand, Zoe constantly struggles with her failing business and love life. Then she falls in love for the first time with Paul. But there's one problem: Paul is married.", + "posterPath": "/45QgvkuwZF8mffzDcK3wZSpNpA0.jpg", + "backdropPath": "/rImnqIqrO70DB0TSchWOJx5qOPO.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2018-06-01", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.141, + "voteCount": 78, + "popularity": 6.2788 + }, + { + "id": 3525, + "title": "Working Girl", + "originalTitle": "Working Girl", + "overview": "When a secretary's idea is stolen by her boss, she seizes an opportunity to steal it back by pretending she has her boss' job.", + "posterPath": "/q2jfFzZvAzjTaArQR0tjilIZ5aJ.jpg", + "backdropPath": "/lRWIiRSOMH7qQT6UGcmx8Uykix3.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "1988-12-20", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 1021, + "popularity": 6.2781 + }, + { + "id": 627063, + "title": "Nocturnal", + "originalTitle": "Nocturnal", + "overview": "Laurie, a cynical schoolgirl, builds a secret friendship with Pete, an older handyman who is obsessed with her.", + "posterPath": "/e9wWPeLpO3jK1y60GsVTsacBlXE.jpg", + "backdropPath": "/ktAfWafrgoh13MHgo7av2W0hGAb.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-09-18", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.632, + "voteCount": 19, + "popularity": 6.2775 + }, + { + "id": 15043, + "title": "Brink!", + "originalTitle": "Brink!", + "overview": "Andy \"Brink\" Brinker and his in-line skating crew--Peter, Jordy, and Gabriella--who call themselves \"Soul-Skaters\" (which means they skate for the fun of it, and not for the money), clash with a group of sponsored skaters, Team X-Bladz--led by Val--with whom they attend high school in southern California. When Brink discovers his family is in financial trouble, he goes against the wishes of his parents and his friends and joins Team X-Bladz. Brink tries to lead a double life but will be able to pull it off?", + "posterPath": "/hul7jmZJsBOjqKNZIEzxJPyemca.jpg", + "backdropPath": "/4gpcNmMgF0leqkntewyi6lZJupS.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770, + 10751 + ], + "genres": [ + "Drama", + "TV Movie", + "Family" + ], + "releaseDate": "1998-08-28", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.322, + "voteCount": 115, + "popularity": 6.2775 + }, + { + "id": 44247, + "title": "The Prowler", + "originalTitle": "The Prowler", + "overview": "Thirty years after a murder on the night of Avalon Bay's graduation dance, the sleepy town's teens meet grisly ends at the hands of a prowler once thought to be a jilted soldier home from war.", + "posterPath": "/4soFiMOul6GRN889FxfDNAt9Woh.jpg", + "backdropPath": "/w9eKficdGbJaOAH2DpUqqd51UNC.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "1981-11-06", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 243, + "popularity": 6.2773 + }, + { + "id": 1032950, + "title": "Hellhole", + "originalTitle": "Ostatnia wieczerza", + "overview": "In a monastery cut off from the world, the monks run a clinic for the possessed. One day, a young policeman Marek comes to the convent. Posing as a clergyman, he penetrates monastic life and tries to explain the recent, mysterious disappearance of several tormented inmates. It turns out, however, that there is no way out of the monastery.", + "posterPath": "/y47wBamj9vdqBeGaLEFTrYEPTeC.jpg", + "backdropPath": "/xXSjMjCdZ6v7NIFvsSMNqe4ySkF.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2022-10-26", + "releaseYear": "2022", + "originalLanguage": "pl", + "voteAverage": 6.118, + "voteCount": 360, + "popularity": 6.277 + }, + { + "id": 608499, + "title": "Saint-Narcisse", + "originalTitle": "Saint-Narcisse", + "overview": "Dominic’s fetish is… himself. Nothing turns him on more than his own reflection. That’s why discovering that he has a twin brother, raised in a remote monastery by a depraved priest, causes him major consternation. Fate brings the two young men back together again, and their fraternal relationship is torn between sex, revenge and redemption.", + "posterPath": "/osTteBBNxczHt7asRE2KDUk6dRc.jpg", + "backdropPath": "/qWS2H71NPGNQDokJxEE2l3ShrG.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2021-11-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 18, + "popularity": 6.2769 + }, + { + "id": 857451, + "title": "Circus Maximus", + "originalTitle": "Circus Maximus", + "overview": "Travis Scott takes his audience on a mind-bending visual odyssey across the globe, woven together by the speaker rattling sounds of his highly anticipated upcoming album \"UTOPIA\". A surreal and psychedelic journey, uniting a collective of visionary filmmakers from around the world in a kaleidoscopic exploration of human experience and the power of soundscapes.", + "posterPath": "/u54X9NvsbLL6UDceqXInYMlKDsf.jpg", + "backdropPath": "/ipK4FZbomDFH9L3lssXNppNnwez.jpg", + "mediaType": "movie", + "genreIds": [ + 10402 + ], + "genres": [ + "Music" + ], + "releaseDate": "2023-07-27", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 21, + "popularity": 6.2759 + }, + { + "id": 21873, + "title": "My Bodyguard", + "originalTitle": "My Bodyguard", + "overview": "Clifford Peache, an easygoing teenager, is finding less than easy to fit in at his new high school, where a tough-talking bully terrorizes his classmates and extorts their lunch money. Refusing to pay up, Clifford enlist the aid of an overgrown misfit whose mere presence intimidates students and teachers alike. But their \"business relationship\" soon turns personal as Clifford and the troubled loner forge a winning alliance against their intimidators - and a very special friendship with each other.", + "posterPath": "/agk3tSS6OLiSdyrieDhPpuQ7CEZ.jpg", + "backdropPath": "/cd5ntfLmtqUqkUGn2B5s2zBLjde.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1980-07-11", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 124, + "popularity": 6.2758 + }, + { + "id": 227973, + "title": "The Peanuts Movie", + "originalTitle": "The Peanuts Movie", + "overview": "Snoopy embarks upon his greatest mission as he and his team take to the skies to pursue their arch-nemesis, while his best pal Charlie Brown begins his own epic quest.", + "posterPath": "/aiwdwnl7RFs1vcBanOKr13ye3wE.jpg", + "backdropPath": "/361quVX94drEaExOKScbZYsxijG.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 16, + 10751 + ], + "genres": [ + "Comedy", + "Animation", + "Family" + ], + "releaseDate": "2015-11-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.945, + "voteCount": 1743, + "popularity": 6.2757 + }, + { + "id": 9058, + "title": "Only You", + "originalTitle": "Only You", + "overview": "Two childhood paranormal incidents have convinced schoolteacher Faith Corvatch that her true love is a guy named \"Damon Bradley,\" but she has yet to meet him. Preparing to marry podiatrist Dwayne in 10 days, Faith receives a phone call from Dwayne's old classmate named Damon Bradley who is on his way to Venice. Faith tries to catch him at the airport but just misses him so she impulsively decides to fly to Venice hoping to finally encounter the man of her dreams; accompanying her on the trip is her sister-in-law and childhood best friend, Kate, who has just left her husband, Faith's brother Larry.", + "posterPath": "/7mLLANXgUg3bibTiUitDlB0NZcU.jpg", + "backdropPath": "/8uAwA3xnpMyP6etx3JIjFouA4Cl.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "1994-03-04", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 548, + "popularity": 6.2751 + }, + { + "id": 107065, + "title": "The Harem", + "originalTitle": "L'Harem", + "overview": "A seductive woman pushes three men to the limits toying with their sexual desires and male pride.", + "posterPath": "/rALRFL1VwjP1zGQZ6mvjaURiU3O.jpg", + "backdropPath": "/bPKBmKrmz0uAgFUazcqW9cmUvBa.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "1967-10-06", + "releaseYear": "1967", + "originalLanguage": "it", + "voteAverage": 5.1, + "voteCount": 11, + "popularity": 6.2745 + }, + { + "id": 58664, + "title": "Mostly Ghostly", + "originalTitle": "Mostly Ghostly", + "overview": "Based on the successful book series by R.L. Stine, this spooky tale finds 11-year-old Max making a deal with the ghosts who haunt his home. If Max helps them find what was responsible for their parents' disappearance, they'll help him transform from a social nobody to the most popular kid in school.", + "posterPath": "/8wLYv3u9Gg1iF2CAX79nkMBFM71.jpg", + "backdropPath": "/tV7nL5IA4QOOJMToFRuwN0gLpcn.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 27 + ], + "genres": [ + "Family", + "Fantasy", + "Horror" + ], + "releaseDate": "2008-09-30", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 52, + "popularity": 6.2738 + }, + { + "id": 1107128, + "title": "Getting LOST", + "originalTitle": "Getting LOST", + "overview": "A documentary revisiting the global television phenomenon LOST. Featuring interviews with the cast and crew, as well as members of the loyal fan base who still celebrate the show twenty years after it originally aired.", + "posterPath": "/lc4n406XqcLd2OFhub6QQYLhUkr.jpg", + "backdropPath": "/s8BlhaxyvJeqk4vcc1fZK9wg5BN.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2024-09-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 14, + "popularity": 6.2737 + }, + { + "id": 17, + "title": "The Dark", + "originalTitle": "The Dark", + "overview": "In an attempt to pull her family together, Adèlle travels with her young daughter Sarah to Wales to visit her father. The morning after they arrive, Sarah mysteriously vanishes in the ocean. Not long after, a little girl bearing a striking resemblance to their missing daughter reveals that she has retuned from the dead — and that Sarah has been taken to the Welsh underworld.", + "posterPath": "/h6gCVAzjFLhzkffv2VZO1RgVCBt.jpg", + "backdropPath": "/dhr0q4eiRr8ltqPig32TwhPRdaD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 9648 + ], + "genres": [ + "Horror", + "Thriller", + "Mystery" + ], + "releaseDate": "2005-09-28", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 289, + "popularity": 6.2736 + }, + { + "id": 646389, + "title": "Plane", + "originalTitle": "Plane", + "overview": "After a heroic job of successfully landing his storm-damaged aircraft in a war zone, a fearless pilot finds himself between the agendas of multiple militias planning to take the plane and its passengers hostage.", + "posterPath": "/qi9r5xBgcc9KTxlOLjssEbDgO0J.jpg", + "backdropPath": "/6JU2ysRVOHqav0Hs6BUv4mvvDxZ.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2023-01-11", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.908, + "voteCount": 2525, + "popularity": 6.2735 + }, + { + "id": 804755, + "title": "Agnes", + "originalTitle": "Agnes", + "overview": "Rumors of demonic possession at a religious convent prompts a church investigation into the strange goings-on among its nuns. A disaffected priest and his neophyte are confronted with temptation, bloodshed and a crisis of faith.", + "posterPath": "/jDskIhzLfZc8SB4ybkcWOgmI98M.jpg", + "backdropPath": "/llnBxap3dpzc9ByOgeMUi0TaUhe.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18 + ], + "genres": [ + "Horror", + "Drama" + ], + "releaseDate": "2021-12-10", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.2, + "voteCount": 44, + "popularity": 6.2732 + }, + { + "id": 1016683, + "title": "Semmelweis", + "originalTitle": "Semmelweis", + "overview": "Set in 19th century Vienna, Ignac Semmelweis, a short-tempered but passionate doctor, delivers babies and carries out autopsies on a daily basis while looking for the cause of puerperal fever, the mysterious epidemic that decimates patients in the hospital.", + "posterPath": "/ol6lDiWvWIDZsElj2sfBwQF9IBJ.jpg", + "backdropPath": "/2tD6lbeSHx0sYDsu0BoS2d1qrbZ.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18 + ], + "genres": [ + "History", + "Drama" + ], + "releaseDate": "2023-11-30", + "releaseYear": "2023", + "originalLanguage": "hu", + "voteAverage": 8, + "voteCount": 38, + "popularity": 6.2728 + }, + { + "id": 744594, + "title": "White Noise", + "originalTitle": "White Noise", + "overview": "Jack Gladney, professor of Hitler studies at The-College-on-the-Hill, husband to Babette, and father to four children/stepchildren, is torn asunder by a chemical spill from a rail car that releases an \"Airborne Toxic Event\" forcing Jack to confront his biggest fear - his own mortality.", + "posterPath": "/kesxNdLZlmGoTRspDHU1WgdEuGw.jpg", + "backdropPath": "/4QB2TfxmzgMDLmsVVk1HM4tt7ef.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-11-25", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 764, + "popularity": 6.2724 + }, + { + "id": 437342, + "title": "The First Omen", + "originalTitle": "The First Omen", + "overview": "When a young American woman is sent to Rome to begin a life of service to the church, she encounters a darkness that causes her to question her own faith and uncovers a terrifying conspiracy that hopes to bring about the birth of evil incarnate.", + "posterPath": "/cIzk6GhxEZuweekGFXWEoAyuaMX.jpg", + "backdropPath": "/aBoo55Vl58NCo8D8BPykolQ8y86.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-04-03", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.852, + "voteCount": 1201, + "popularity": 6.2721 + }, + { + "id": 17954, + "title": "Living & Dying", + "originalTitle": "Living & Dying", + "overview": "Four desperate bank robbers are forced to abandon their lucrative heist plans and become the reluctant heroes when two of their hostages turn out to be psychotic killers who won't stop until everyone in the bank has been ruthlessly slaughtered. As the police surround the building and the killers begin methodically executing the hostages.", + "posterPath": "/x6fnlbV9jeNbwBvGJsmW3ZGFug.jpg", + "backdropPath": "/uhm5xEupVoaarufw4CZCEI7Hvvd.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53 + ], + "genres": [ + "Crime", + "Thriller" + ], + "releaseDate": "2007-03-30", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 29, + "popularity": 6.2719 + }, + { + "id": 574207, + "title": "The Operative", + "originalTitle": "The Operative", + "overview": "A young Western woman is recruited by the Mossad to go undercover in Tehran where she becomes entangled in a complex triangle with her handler and her subject.", + "posterPath": "/7fojgblOYLelv0yi9OczouCfR16.jpg", + "backdropPath": "/5WqVG4g6iWEcHUQUC1qOFQUXkdO.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2019-07-24", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 239, + "popularity": 6.2716 + }, + { + "id": 218220, + "title": "Meddling Mom", + "originalTitle": "Meddling Mom", + "overview": "Take Carmen Vega downtown and book her! Carmen (Sonia Braga) is guilty as charged of scheming with her two best friends, Marisol and Valeria (Rose Abdoo and Saundra Santiago) to stick her nose in everything in her two adult daughter’s lives. From secretly leaving baby books out for recently wed daughter Yolanda (Ana Ayora) and her husband Rico (George Contreras) to manipulating youngest daughter Ally (Mercedes Renard) into a doomed date with best friend Marisol’s son Pablo (Rafael Amaya), Carmen can’t stop interfering. Now, the notorious mother of good intentions with equally hideous results is about to get a crash course in butting out!", + "posterPath": "/1A4NZuVbdaLy7AIkHAR7sVTuXui.jpg", + "backdropPath": "/mccN3LhDy8Lz2OupuCzMMvVHGSS.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 10770 + ], + "genres": [ + "Comedy", + "Romance", + "TV Movie" + ], + "releaseDate": "2013-03-31", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 11, + "popularity": 6.2713 + }, + { + "id": 44040, + "title": "Devil", + "originalTitle": "Devil", + "overview": "A group of people are trapped in an elevator high above Philadelphia, and one of them is the devil.", + "posterPath": "/aivXPSi53H95BoUa5njEYso389s.jpg", + "backdropPath": "/yuGyks7DE9NrRfguRWYomN4KNcm.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 53 + ], + "genres": [ + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2010-09-16", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.096, + "voteCount": 3010, + "popularity": 6.2707 + }, + { + "id": 4643, + "title": "The Guardian", + "originalTitle": "The Guardian", + "overview": "A high school swim champion with a troubled past enrolls in the U.S. Coast Guard's 'A' School, where legendary rescue swimmer Ben Randall teaches him some hard lessons about loss, love, and self-sacrifice.", + "posterPath": "/zFhFjrckfmdb33VDeRykumMmebU.jpg", + "backdropPath": "/ytclDXEffquvzjwNXbiYEU1b6F2.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18 + ], + "genres": [ + "Action", + "Drama" + ], + "releaseDate": "2006-09-28", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.139, + "voteCount": 1606, + "popularity": 6.2704 + }, + { + "id": 287587, + "title": "Adult Beginners", + "originalTitle": "Adult Beginners", + "overview": "A young, hipster entrepreneur crashes and burns on the eve of his company’s big launch. With his entire life in disarray, he leaves Manhattan to move in with his estranged pregnant sister, brother-in-law and three year-old nephew in the suburbs — only to become their manny. Faced with real responsibility, he may finally have to grow up — but not without some bad behavior first.", + "posterPath": "/H9zeZ4Vr1lPUfOCz07FPn1ENRX.jpg", + "backdropPath": "/bPaOxlfjUO1ui8CfQoS1Vj5wxgL.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2014-09-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 201, + "popularity": 6.27 + }, + { + "id": 10543, + "title": "Fear", + "originalTitle": "Fear", + "overview": "Nicole Walker always dreamed of being swept away by someone special — someone strong, sexy and sensitive who would care for her more than anything else in the world. David is all that and more: a modern-day knight who charms and seduces her, body and soul. But her perfect boyfriend is not all he seems to be. His sweet facade masks a savage, dark side that will soon transform Nicole's dream into a nightmare.", + "posterPath": "/ut8snuINzOibbKnvpTnsGWQr4Nl.jpg", + "backdropPath": "/vqycIvfLRFtdiCAvOmGX9iP7mAE.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1996-04-12", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.509, + "voteCount": 946, + "popularity": 6.2699 + }, + { + "id": 258006, + "title": "Hysteria", + "originalTitle": "Hysteria", + "overview": "Legendary actor Patrick McGoohan turns his famous character from THE PRISONER upside down as the psychiatrist in charge of an insane asylum. He has connected his inmates into a group mind where they share each other's psychoses, dreams and sexuality with all the scary and titillating implications imaginable! Like his highly acclaimed cult classic MASSACRE AT CENTRAL HIGH, director Rene Daalders provocative excursion into sci fi-horror filmmaking looks at first glance like a classic grindhouse movie, but it is up to much more. In addition to its operatic mayhem, HYSTERIA is a mind-expanding reflection on individual vs. group consciousness, power, control, and freedom.", + "posterPath": "/xXTsXYwRoZYmxbZ4gvpXlZlHoxu.jpg", + "backdropPath": "/wZ2XK46fwDQ08bKaw7Bh0Aq4pDV.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 27, + 53 + ], + "genres": [ + "Science Fiction", + "Horror", + "Thriller" + ], + "releaseDate": "1997-10-01", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 4.591, + "voteCount": 11, + "popularity": 6.2693 + }, + { + "id": 248469, + "title": "Two Loves", + "originalTitle": "Two Loves", + "overview": "American-born Anna Vorontosov teaches school in a remote, primitive section of northern New Zealand. Her experimental teaching methods have won her the love and affection of her pupils and their parents and the admiration of the unhappily married school inspector, Abercrombie. Her personal life, however, is less secure; frightened of love and sexually inhibited, she has always been aloof with men. Eager to break down this barrier is Englishman Paul Lathrope, a somewhat irrational and immature fellow teacher who aspires to be a singer. Though Anna is attracted to him, she refuses to submit to his advances.", + "posterPath": "/ppi9Q2er7pFwbx2baJrYxYQyYK4.jpg", + "backdropPath": "/mjy9Z4z2qxIPwIzvdRoYLsLcLmr.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1961-05-24", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 10, + "popularity": 6.2693 + }, + { + "id": 63472, + "title": "His Way", + "originalTitle": "His Way", + "overview": "A look at the professional, political and personal life of legendary movie producer Jerry Weintraub featuring interviews with friends, family and colleagues.", + "posterPath": "/oYRZr4CsZiSNSQSvodFUVRXnpLJ.jpg", + "backdropPath": "/qILxDv3zY6MwnguiqJlzEV69YGd.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2011-03-04", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 14, + "popularity": 6.2693 + }, + { + "id": 556803, + "title": "The Princess Switch", + "originalTitle": "The Princess Switch", + "overview": "When a down-to-earth Chicago baker and a soon-to-be princess discover they look like twins, they hatch a Christmastime plan to trade places.", + "posterPath": "/A8XgZE8CsHiYN243MEd07GLCep.jpg", + "backdropPath": "/iHbHTn6awwTTu9kcfBe2hkTuWXS.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35 + ], + "genres": [ + "Romance", + "Comedy" + ], + "releaseDate": "2018-10-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.995, + "voteCount": 2251, + "popularity": 6.2685 + }, + { + "id": 27713, + "title": "Hell Asylum", + "originalTitle": "Hell Asylum", + "overview": "A desperate producer faced with unemployment has the ultimate reality television program ready to roll.", + "posterPath": "/w4TcJNAT1eoCj97zWgG4DGJz4dD.jpg", + "backdropPath": "/cQb6U1pOcs6uSp3MFOXALLDljo6.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2002-05-13", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 15, + "popularity": 6.2684 + }, + { + "id": 118683, + "title": "Maximum Conviction", + "originalTitle": "Maximum Conviction", + "overview": "When former black ops operative Cross and his partner Manning are assigned to decommission an old prison, they must oversee the arrival of two mysterious female prisoners. Before long, an elite force of mercenaries assault the prison in search of the new arrivals. As the true identities of the women are revealed, Cross realizes he's caught in the middle of something far bigger than he had imagined.", + "posterPath": "/uVzFbz7WTjXTt7c9L41oNeyhc8K.jpg", + "backdropPath": "/304nA93lGuRgnAHVX0xgSaCl8U0.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2012-10-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 4.971, + "voteCount": 139, + "popularity": 6.2679 + }, + { + "id": 71443, + "title": "The Hustle", + "originalTitle": "The Hustle", + "overview": "Disenchanted pest worker and single dad Freddie Manning unintentionally steals and then loses mob money and now he really is in trouble. So when a run-down Baptist church mistakes him and his best friend Junior for replacement ministers, he grabs at the opportunity that might save his life.", + "posterPath": "/mz4SDU1rPDHfevKmdUPMhQgkQKp.jpg", + "backdropPath": "/byYkgobE9s5LMj4Q65eCMpNkEpe.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2008-04-05", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 13, + "popularity": 6.2675 + }, + { + "id": 581936, + "title": "L'eroe", + "originalTitle": "L'eroe", + "overview": "The life of Giorgio, a mediocre journalist, changes abruptly when the director of the newspaper decides to transfer him to a provincial office. Only the kidnapping of young Carlo gives him back his work as a correspondent.", + "posterPath": "/fvedonmmc8vPyMZc7wDHVgThdRu.jpg", + "backdropPath": "/907nmxtN2yWVrA3CryY6gdpe2Pq.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-03-21", + "releaseYear": "2019", + "originalLanguage": "it", + "voteAverage": 6, + "voteCount": 18, + "popularity": 6.2665 + }, + { + "id": 435366, + "title": "Fabricated City", + "originalTitle": "조작된 도시", + "overview": "In real life, Kwon Yoo is unemployed, but in the virtual game world he is the best leader. Kwon Yoo is then framed for a murder. With the help of hacker Yeo-wool, he tries to uncover the truth behind the murder case.", + "posterPath": "/8tE4MhhuWHize6pNyxAtakUyNZc.jpg", + "backdropPath": "/wvNCnYb2K5lcfRDhtH65OaWHIvp.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 80 + ], + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2017-02-09", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 7.686, + "voteCount": 336, + "popularity": 6.2665 + }, + { + "id": 28768, + "title": "Faceless", + "originalTitle": "Faceless", + "overview": "A detective investigating a missing model in Paris uncovers a plastic surgeon’s horrifying secret involving kidnapped women, blood, and organs.", + "posterPath": "/hsYqZzbO3R493ysHv1Ki961Bu1o.jpg", + "backdropPath": "/A3UxFGdmiMjwmO2R2YeF8gjatRZ.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1988-01-31", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 62, + "popularity": 6.2665 + }, + { + "id": 13849, + "title": "The Cottage", + "originalTitle": "The Cottage", + "overview": "In a remote part of the countryside, a bungled kidnapping turns into a living nightmare for four central characters when they cross paths with a psychopathic farmer and all hell breaks loose.", + "posterPath": "/fFmU7cQAWVAeBpSfDRRauKgtKDD.jpg", + "backdropPath": "/n7pj7eMjtajyIoiZgdITJwJOxok.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 80, + 53 + ], + "genres": [ + "Horror", + "Comedy", + "Crime", + "Thriller" + ], + "releaseDate": "2008-02-07", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.952, + "voteCount": 252, + "popularity": 6.2661 + }, + { + "id": 134415, + "title": "Vampire Dog", + "originalTitle": "Vampire Dog", + "overview": "Ace, a 12-year-old boy is new in middle school. His grandfather from Transylvania passes away at the ripe age of 99, and sends him his dog, Fang, to look after. Ace soon discovers that Fang is a vampire dog. Professor Warhol, a mad scientist and her bumbling assistant Frank, try to capture Fang to steal his DNA, in order to look young.", + "posterPath": "/jXOEngAOBUOnCtWmjHB1rrGBsas.jpg", + "backdropPath": "/5uEuSlV8y9ThgBerewYsm5ZlwEi.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 14 + ], + "genres": [ + "Family", + "Comedy", + "Fantasy" + ], + "releaseDate": "2012-09-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 47, + "popularity": 6.2654 + }, + { + "id": 11175, + "title": "Lucky Luke", + "originalTitle": "Lucky Luke", + "overview": "Lucky Luke becomes the Sheriff of Daisy Town and runs out all the criminals. Then the Dalton brothers arrive and try to get the Indians to break the peace treaty and attack the town.", + "posterPath": "/cnBw87wu31s6VM6LKilokFwgqZu.jpg", + "backdropPath": "/bQNP3bAyba0vLBzZRXimT6jsfcI.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 37 + ], + "genres": [ + "Comedy", + "Western" + ], + "releaseDate": "1991-07-04", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.422, + "voteCount": 204, + "popularity": 6.2646 + }, + { + "id": 60258, + "title": "Electra", + "originalTitle": "Electra", + "overview": "Billionaire named Roach desperately searches for the secret serum which could turn an ordinary human into a superbeing...", + "posterPath": "/vYR67nrbUEj7phLULojRi6YtVHr.jpg", + "backdropPath": "/3w5pVgpohpR1CxaulNKQkuCKNIW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ], + "releaseDate": "1996-05-21", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 3.5, + "voteCount": 14, + "popularity": 6.2639 + }, + { + "id": 266294, + "title": "Sisters", + "originalTitle": "Sisters", + "overview": "Two disconnected sisters are summoned to clean out their childhood bedrooms before their parents sell their family home.", + "posterPath": "/hpvHqAiusQtGNDx48dA3z5ejjon.jpg", + "backdropPath": "/zwk2Ws5fcRYkK2lZ9k1983OPnGs.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-12-18", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.97, + "voteCount": 1427, + "popularity": 6.2634 + }, + { + "id": 546121, + "title": "Run", + "originalTitle": "Run", + "overview": "Chloe, a teenager who is confined to a wheelchair, is homeschooled by her mother, Diane. Chloe soon becomes suspicious of her mother and begins to suspect that she may be harboring a dark secret.", + "posterPath": "/ilHG4EayOVoYeKqslspY3pR4wzC.jpg", + "backdropPath": "/rLchzndbDRy41J9X363pMePbV5x.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27, + 18 + ], + "genres": [ + "Thriller", + "Horror", + "Drama" + ], + "releaseDate": "2020-11-20", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 2765, + "popularity": 6.263 + }, + { + "id": 391617, + "title": "Kóblic", + "originalTitle": "Kóblic", + "overview": "Colonia Helena, Argentina. The mysterious Tomás Kóblic, a former Navy pilot, works as a fumigator while dealing with his dark past and the intrigues of the corrupt police commissioner…", + "posterPath": "/aTpSCZ8VaqSyUkI3PhEQIHnYzbC.jpg", + "backdropPath": "/dKAudJwmkENqL1FZYP9351rItZs.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2016-04-14", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 6, + "voteCount": 76, + "popularity": 6.2626 + }, + { + "id": 52263, + "title": "Amityville: Dollhouse", + "originalTitle": "Amityville: Dollhouse", + "overview": "Bill Martin has just finished construction on a picturesque new home for his family, but unknown to him, the previously barren property was once the site of the infamous Amityville murder house, which contains demonic entities with murderous sights on the family.", + "posterPath": "/c6DVwjJ71jzk3DXqrkuvuM6BxW1.jpg", + "backdropPath": "/78dTLCnVHu6yAxxKOfBSRT4ol9o.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1996-10-02", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 112, + "popularity": 6.2623 + }, + { + "id": 286452, + "title": "Varsity Blood", + "originalTitle": "Varsity Blood", + "overview": "Jocks and cheerleaders head out to a remote farmhouse for a raucous Halloween party, but someone dressed as their school mascot intends to slaughter them all.", + "posterPath": "/hetWNTi0Y4BHiYE3ajAPFlX7qMG.jpg", + "backdropPath": "/vHKwXsKoOraWW6knp0rxEEFizOQ.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2014-08-19", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.1, + "voteCount": 18, + "popularity": 6.2617 + }, + { + "id": 62127, + "title": "The Fantasticks", + "originalTitle": "The Fantasticks", + "overview": "Widowers Amos and Ben plot to romantically unite Amos' daughter Luiss and Ben's son Matt by pretending to feud and forbidding the teens to associate, knowing they will resist their fathers' interference. As the two youngsters fall in love, the fathers plot to end the 'feud' by hiring a traveling showman to fake an abduction and allow Matt to 'rescue' Luisa.", + "posterPath": "/2mYcAYWvRSZCPr3Q4gy8ydRVWaA.jpg", + "backdropPath": "/rJHqxsUOU5NJ4DlsIlHYBuYMLS7.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10402, + 10749 + ], + "genres": [ + "Comedy", + "Music", + "Romance" + ], + "releaseDate": "2000-09-22", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 5.444, + "voteCount": 27, + "popularity": 6.2614 + }, + { + "id": 151864, + "title": "Street Corner", + "originalTitle": "Street Corner", + "overview": "A pseudo-documentary focusing on the daily work and routine of women police officers built around three different storylines.", + "posterPath": "/mDEXizIpAprwtb0yO47YvxZgbDs.jpg", + "backdropPath": "/jx8ZlgbayJchhtPlxpA1MrZcMmj.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 80 + ], + "genres": [ + "Thriller", + "Drama", + "Crime" + ], + "releaseDate": "1953-03-17", + "releaseYear": "1953", + "originalLanguage": "en", + "voteAverage": 5.417, + "voteCount": 12, + "popularity": 6.26 + }, + { + "id": 263855, + "title": "Fort Bliss", + "originalTitle": "Fort Bliss", + "overview": "After returning home from an extended tour in Afghanistan, a decorated U.S. Army medic and single mother struggles to rebuild her relationship with her young son.", + "posterPath": "/bDCWv9myyBpkvrKfcQusosFRAg1.jpg", + "backdropPath": "/8prCWy4k9oFHBlth5jT33p0SoJ4.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 18 + ], + "genres": [ + "War", + "Drama" + ], + "releaseDate": "2014-09-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.402, + "voteCount": 112, + "popularity": 6.2598 + }, + { + "id": 172847, + "title": "Scenic Route", + "originalTitle": "Scenic Route", + "overview": "Stranded on an isolated desert road, two life-long friends fight for survival as their already strained relationship spirals into knife-wielding madness.", + "posterPath": "/fLR1XII83u0zMPcW5sSR3XBxwYC.jpg", + "backdropPath": "/oVB3cM0KZmETsmvEZjMwSmsPVCQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2013-08-23", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.298, + "voteCount": 208, + "popularity": 6.2597 + }, + { + "id": 26614, + "title": "La Chienne", + "originalTitle": "La Chienne", + "overview": "Cashier Maurice Legrand is married to Adele, a terror. By chance, he meets Lucienne, \"Lulu\", and make her his mistress. He thinks he finally met love, but Lulu is nothing but a streetwalker, in love with Dede, her pimp. She only accepts Legrand to satisfy Dede's needs of money.", + "posterPath": "/h3b8k9sY4z8mIy0J6zu9O3ZIcLr.jpg", + "backdropPath": "/hiaZPun8bezhRcY8rFJEtRE8PG.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1931-11-01", + "releaseYear": "1931", + "originalLanguage": "fr", + "voteAverage": 7.3, + "voteCount": 127, + "popularity": 6.2594 + }, + { + "id": 13161, + "title": "Big Stan", + "originalTitle": "Big Stan", + "overview": "A weak con man panics when he learns he's going to prison for fraud. He hires a mysterious martial arts guru who helps transform him into a martial arts expert who can fight off inmates who want to hurt or love him.", + "posterPath": "/zS1uUwKEFcd8ak0NTXxw97DlbAa.jpg", + "backdropPath": "/zdxWO47KatCZhQRGaNMDXfz6DPO.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2007-11-03", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 975, + "popularity": 6.2588 + }, + { + "id": 210479, + "title": "Locke", + "originalTitle": "Locke", + "overview": "Ivan Locke has worked hard to craft a good life for himself. Tonight, that life will collapse around him. On the eve of the biggest challenge of his career, Ivan receives a phone call that sets in motion a series of events that will unravel his family, job, and soul.", + "posterPath": "/tTREq5tTyYwmSLDRMhybJ82zXcX.jpg", + "backdropPath": "/9LFk66Se0T3Uw2JPupYxAc6F2Gq.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2014-04-10", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.896, + "voteCount": 2818, + "popularity": 6.2585 + }, + { + "id": 972533, + "title": "Last Breath", + "originalTitle": "Last Breath", + "overview": "Seasoned deep-sea divers battle the raging elements to rescue their crewmate trapped hundreds of feet below the ocean's surface.", + "posterPath": "/jc0ZvOgmYZWqTTwx2G5mkoERQM6.jpg", + "backdropPath": "/661n67NhaW12hC2ux7Tm2KgR1u1.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2025-02-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.959, + "voteCount": 490, + "popularity": 6.2583 + }, + { + "id": 375569, + "title": "Kingdom Hospital", + "originalTitle": "Kingdom Hospital", + "overview": "Stephen King's take on the masterpiece series by Lars von Trier. The story takes place in a hospital in Lewiston, Maine, built on the site of a Civil War-era mill fire in which many children died.", + "posterPath": "/nSk3MOK5ljYql9P2htwkTOd7rfn.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2004-03-03", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 49, + "popularity": 6.2583 + }, + { + "id": 1077782, + "title": "Old Guy", + "originalTitle": "Old Guy", + "overview": "Stuck at a dead end but vying for the love of spunky club manager Anata, aging contract killer Danny Dolinski is thrilled when The Company pulls him back in the field, but only to train Gen Z newcomer Wihlborg, a prodigy assassin with an attitude.", + "posterPath": "/qx0NV9VEZTXN5c1qruhyHclMauY.jpg", + "backdropPath": "/w5KvL8rwSh7u8IcKs4E93phKwBL.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80 + ], + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "releaseDate": "2024-12-13", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.545, + "voteCount": 192, + "popularity": 6.2582 + }, + { + "id": 1127087, + "title": "Sijjin", + "originalTitle": "Sijjin", + "overview": "Irma falls in love with Galang, her cousin who already has a wife and children. Irma is very obsessed and wants to be the only woman in Galang's life. Irma comes to the shaman to send black magic to Galang's wife. Since then terror and mystical disturbances, possession and death have occurred in Galang's house. However, the threat also targeted Irma herself.", + "posterPath": "/dnKod1VGfTR44CCvsABd8D0ifVK.jpg", + "backdropPath": "/91YPiJcY7q8wwtk958TwlZka3hD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2023-11-09", + "releaseYear": "2023", + "originalLanguage": "id", + "voteAverage": 5.786, + "voteCount": 14, + "popularity": 6.258 + }, + { + "id": 246900, + "title": "Earth Angel", + "originalTitle": "Earth Angel", + "overview": "When a prom queen dies in 1962, her only means of entering Heaven is by returning to 1990 earth, to assist friends from her youth.", + "posterPath": "/pX5prwPekuZHcnAf8mBbURAGvDF.jpg", + "backdropPath": "/PP7brI2dOpR1PrcxFPgem1BIqU.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14, + 10770 + ], + "genres": [ + "Comedy", + "Fantasy", + "TV Movie" + ], + "releaseDate": "1991-03-04", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.031, + "voteCount": 16, + "popularity": 6.258 + }, + { + "id": 28144, + "title": "The Dark Sea", + "originalTitle": "Mare Nero", + "overview": "While investigating the murder of a woman that occurred in the sado-masochistic club scene, Inspector Luca Moccia discovers fantasies that threaten his relationship. Will he overcome them?", + "posterPath": "/8SMNfy81fC1AlJYsFrKc34sFKhM.jpg", + "backdropPath": "/oGMOleCqOaujTTc2pZ08QzAdGcc.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-08-25", + "releaseYear": "2006", + "originalLanguage": "it", + "voteAverage": 3.6, + "voteCount": 12, + "popularity": 6.2576 + }, + { + "id": 108553, + "title": "Sibling Rivalry", + "originalTitle": "Sibling Rivalry", + "overview": "Marjorie Turner is suffocating in her marriage and day to day life. An extramarital affair with a stranger seems to be the answer until her paramour has a fatal heart attack, and turns out to be less of a stranger than she could have thought...", + "posterPath": "/nBrfiqeiB8L6VU04NSZy1e3qc2v.jpg", + "backdropPath": "/cqi6BIqbAQQg1xR3g9lAMx1YSGO.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "1990-10-26", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 5.147, + "voteCount": 58, + "popularity": 6.2573 + }, + { + "id": 89653, + "title": "Commandos", + "originalTitle": "Commandos", + "overview": "Sgt. Sullivan puts together a group of Italian-Americans into disguise as Italian soldiers in order to infiltrate a North African camp held by the Italians. After the soldiers have knifed the Italians in their beds, they find a hooker living at the camp. Sullivan's commandos are to hold this camp and its weaponry until an American battalion arrives, all the while these Italian-Americans pretend to be Italian soldiers, often hosting the enemy. Lt. Valli is a young, \"green,\" by-the-book officer who constantly argues with Sgt. Sullivan, who tells his superior that he has no idea what he is doing. One man on the base, probably a touch from Argento, is an entomologist who is needlessly killed. Things go terribly wrong after that.", + "posterPath": "/7Clnm9KtNWAQhj4QF6pX3a6Ddf0.jpg", + "backdropPath": "/hd5qUcz06rjSc2kNb0AaKX7taUA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 10752 + ], + "genres": [ + "Action", + "War" + ], + "releaseDate": "1968-11-19", + "releaseYear": "1968", + "originalLanguage": "it", + "voteAverage": 5.6, + "voteCount": 29, + "popularity": 6.2573 + }, + { + "id": 248212, + "title": "Lilting", + "originalTitle": "Lilting", + "overview": "A young man of Chinese-Cambodian descent dies, leaving behind his isolated mother and his lover of four years. Though the two don't share a language, they grow close through their grief.", + "posterPath": "/1FevzSkxlAYnu3fsU3NWJnUoWZP.jpg", + "backdropPath": "/nUGgjaSQHIJwQOVJPyOury7BReU.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-08-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.921, + "voteCount": 126, + "popularity": 6.2572 + }, + { + "id": 381288, + "title": "Split", + "originalTitle": "Split", + "overview": "Though Kevin has evidenced 23 personalities to his trusted psychiatrist, Dr. Fletcher, there remains one still submerged who is set to materialize and dominate all the others. Compelled to abduct three teenage girls led by the willful, observant Casey, Kevin reaches a war for survival among all of those contained within him — as well as everyone around him — as the walls between his compartments shatter apart.", + "posterPath": "/lli31lYTFpvxVBeFHWoe5PMfW5s.jpg", + "backdropPath": "/9pkZesKMnblFfKxEhQx45YQ2kIe.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2017-01-19", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.343, + "voteCount": 17976, + "popularity": 6.2571 + }, + { + "id": 414067, + "title": "Amber Alert", + "originalTitle": "Amber Alert", + "overview": "A 20 year old man takes a bus full of young children hostage in exchange for money to help his sick mother. Meanwhile a detective must over come doubt from family and co-workers while she tries to negotiate with the hostage taker.", + "posterPath": "/jMG7ZXHfFkkM38q4yAzAXQqvxIP.jpg", + "backdropPath": "/oFpmjHi7sZmNYUstoSy1A8Ja2Pk.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10770 + ], + "genres": [ + "Drama", + "Thriller", + "TV Movie" + ], + "releaseDate": "2016-02-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 27, + "popularity": 6.2564 + }, + { + "id": 287954, + "title": "Lolita from Interstellar Space", + "originalTitle": "Lolita from Interstellar Space", + "overview": "An undeniably beautiful alien is sent to Earth to study the complex mating rituals of human beings, which leads to the young interstellar traveler experiencing the passion that surrounds the centuries-old ritual of the species.", + "posterPath": "/nhWlip1s5YzhRFKGlHABGJrBhZn.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-03-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.967, + "voteCount": 15, + "popularity": 6.2557 + }, + { + "id": 81796, + "title": "Lockout", + "originalTitle": "Lockout", + "overview": "Set in the near future, Lockout follows a falsely convicted ex-government agent , whose one chance at obtaining freedom lies in the dangerous mission of rescuing the President's daughter from rioting convicts at an outer space maximum security prison.", + "posterPath": "/i5QfNIcg6hc327IWUerea0EczP4.jpg", + "backdropPath": "/iN68wpJYwZ6NwQwYMlrPNtJUBxM.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2012-04-12", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.938, + "voteCount": 1917, + "popularity": 6.2554 + }, + { + "id": 1173558, + "title": "Burning Betrayal", + "originalTitle": "O Lado Bom de Ser Traída", + "overview": "Babi discovers a betrayal by her long-term partner and decides to embark on a new adventure in life. On this journey, she meets judge Marco and they begin to live a story permeated by a lot of sexual tension.", + "posterPath": "/3MxgXI3VO7QCNnP0mPBjxLIemNM.jpg", + "backdropPath": "/a65WMR49PnWmSaCzaCyMNNHKQfn.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 9648, + 10749 + ], + "genres": [ + "Drama", + "Mystery", + "Romance" + ], + "releaseDate": "2023-10-25", + "releaseYear": "2023", + "originalLanguage": "pt", + "voteAverage": 6.3, + "voteCount": 223, + "popularity": 6.2553 + }, + { + "id": 602661, + "title": "Chasing the Dragon II: Wild Wild Bunch", + "originalTitle": "追龍II:賊王", + "overview": "Based on real-life crimes that terrorized Hong Kong in the 1990s, Logan (Tony Leung Ka-Fai) is the head of leading a notorious human trafficking gang, abducting the children of Hong Kong's elite. Police forces decide to send in Sky (Louis Koo), a Hong Kong undercover agent whose mission is to infiltrate and save the hostages, all while bringing the gang and their leader to justice.", + "posterPath": "/orDhf1o1bBFWcjuKhI4x0RG1oix.jpg", + "backdropPath": "/dkBVz9SEAJyGkGkwMHpsYU3UMg.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 28, + 53 + ], + "genres": [ + "Crime", + "Action", + "Thriller" + ], + "releaseDate": "2019-06-06", + "releaseYear": "2019", + "originalLanguage": "cn", + "voteAverage": 6.032, + "voteCount": 31, + "popularity": 6.2551 + }, + { + "id": 48610, + "title": "Bunny", + "originalTitle": "Bunny", + "overview": "Bunny, an elderly rabbit who uses a walker, is in her kitchen one night baking a cake. A photograph from her wedding day is on her wall. A pesky and persistent moth bangs about the kitchen. She shoos it outside, turns off the porch light, and returns to her baking. The moth finds its way back into the kitchen, she bats it with a wooden spoon, and it falls into the mix. She stirs it up, pours the batter into a pan, and pops it into the oven. But the moth isn't done: it has a different mission, turning the oven into a portal, and inviting Bunny on a voyage of reunion.", + "posterPath": "/9CApdJg7tPwLMp2EJy7JudHWMYN.jpg", + "backdropPath": "/pBUgZj5dkuzatd29lcJbKDHP0L1.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 14, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Fantasy", + "Comedy" + ], + "releaseDate": "1998-11-02", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 61, + "popularity": 6.2543 + }, + { + "id": 874122, + "title": "Nantucket Noel", + "originalTitle": "Nantucket Noel", + "overview": "During the Seaside Noel celebrations, Christin learns of a developer who is planning to tear down the wharf that is home to her toy store. Tensions rise as she falls for the developer's son, Andy.", + "posterPath": "/oBpmDCdW1UehU1EfjGReth7F6tZ.jpg", + "backdropPath": "/wVTDmUbmpHMRxPHwrWixobJjktY.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 35, + 10749, + 18 + ], + "genres": [ + "TV Movie", + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2021-11-19", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 26, + "popularity": 6.2535 + }, + { + "id": 8940, + "title": "Tyson", + "originalTitle": "Tyson", + "overview": "Director James Toback takes an unflinching, uncompromising look at the life of Mike Tyson--almost solely from the perspective of the man himself. TYSON alternates between the controversial boxer addressing the camera and shots of the champion's fights to create an arresting picture of the man.", + "posterPath": "/ektR7eqmndjaYlYPciy4tJfrgh7.jpg", + "backdropPath": "/9S2EjjcccmwrNb9MGsAFgwbHhj0.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 18 + ], + "genres": [ + "Documentary", + "Drama" + ], + "releaseDate": "2008-05-16", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 120, + "popularity": 6.2533 + }, + { + "id": 4266, + "title": "The Breach", + "originalTitle": "La Rupture", + "overview": "An innocent woman falls prey to her abusive husband, his wealthy father and a shady family friend.", + "posterPath": "/jiX8v5NPmnxQvIPxb6aZp76UYeJ.jpg", + "backdropPath": "/70bYQWBw1rFwrNsg4GTPQoL0naI.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "1970-08-26", + "releaseYear": "1970", + "originalLanguage": "fr", + "voteAverage": 6.024, + "voteCount": 42, + "popularity": 6.2529 + }, + { + "id": 480948, + "title": "American Gothic", + "originalTitle": "American Gothic", + "overview": "A quiet couple. An isolated farmhouse. A pair of desperate fugitives. Everything breaks under pressure...", + "posterPath": "/vhTvFd6TsfyPCKChOFvlLBgpnDY.jpg", + "backdropPath": "/9atQ3xdt8andHL6XUR1EVas5BfH.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2017-09-22", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 17, + "popularity": 6.2525 + }, + { + "id": 89876, + "title": "Doonby", + "originalTitle": "Doonby", + "overview": "A handsome drifter, without a past, gets off an interstate bus in a small Texas town and finds work at Leroy's Country Blues Bar....and the mystery begins.", + "posterPath": "/vCrIEsmVLSky0aMI19m89E7XoJm.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2013-11-01", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.321, + "voteCount": 14, + "popularity": 6.2525 + }, + { + "id": 4327, + "title": "Charlie's Angels", + "originalTitle": "Charlie's Angels", + "overview": "The captivating crime-fighting trio who are masters of disguise, espionage and martial arts are back! When a devious mastermind embroils them in a plot to destroy individual privacy, the Angels, aided by their loyal sidekick Bosley, set out to bring down the bad guys. But when a terrible secret is revealed, it makes the Angels targets for assassination.", + "posterPath": "/iHTmZs0BmkwMCYi8rhvMWC5G4EM.jpg", + "backdropPath": "/oq3IOr7QvEmei0eXsXacqaMPqlV.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 80, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Crime", + "Thriller" + ], + "releaseDate": "2000-11-02", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 4364, + "popularity": 6.2513 + }, + { + "id": 28284, + "title": "Parrish", + "originalTitle": "Parrish", + "overview": "Parrish McLean lives with his mother Ellen on Sala Post's tobacco plantation in the Connecticut River Valley. His mother winds up marrying Sala's rival Judd Raike, ruthless planter who wants to drive Sala out of business. Judd insists that Parrish learn the business from the ground up.", + "posterPath": "/Ap2J9y6tdgU0ErqH8ncbVQ2vj0P.jpg", + "backdropPath": "/rDTpZ2vd6XVq6Ty3Sn7IVZfkM4k.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1961-05-04", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 10, + "popularity": 6.2503 + }, + { + "id": 100349, + "title": "Slick Hare", + "originalTitle": "Slick Hare", + "overview": "Humphrey Bogart visits the Mocrumbo Restaurant. He orders fried rabbit and Elmer Fudd has twenty minutes to serve it.", + "posterPath": "/oRm9Q9j8EEXTiWt5k3YHZ1aHmIL.jpg", + "backdropPath": "/ZbEF1VSZZcyHoi7JuDVF0kloPg.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1947-11-01", + "releaseYear": "1947", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 33, + "popularity": 6.25 + }, + { + "id": 4922, + "title": "The Curious Case of Benjamin Button", + "originalTitle": "The Curious Case of Benjamin Button", + "overview": "Born under unusual circumstances, Benjamin Button springs into being as an elderly man in a New Orleans nursing home and ages in reverse. Twelve years after his birth, he meets Daisy, a child who flits in and out of his life as she grows up to be a dancer. Though he has all sorts of unusual adventures over the course of his life, it is his relationship with Daisy, and the hope that they will come together at the right time, that drives Benjamin forward.", + "posterPath": "/26wEWZYt6yJkwRVkjcbwJEFh9IS.jpg", + "backdropPath": "/dgMdsBbGXp9h6sLsfqsM3texzym.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 10749 + ], + "genres": [ + "Drama", + "Fantasy", + "Romance" + ], + "releaseDate": "2008-12-25", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.595, + "voteCount": 13367, + "popularity": 6.2499 + }, + { + "id": 998587, + "title": "La Graine", + "originalTitle": "La Graine", + "overview": "Lucie and Ines love each other and want to have a child, but they are missing something. After five attempts at MAP, they leave for a final test in Belgium. Then begins a crazy quest to find THE seed.", + "posterPath": "/jfp2t2jPC81Utig1NNTZ4AydBR2.jpg", + "backdropPath": "/wSa4vk25NBDA8DIYyptI9IhEmVV.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-05-03", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 5.5, + "voteCount": 34, + "popularity": 6.2497 + }, + { + "id": 999142, + "title": "Rabia", + "originalTitle": "Rabia", + "overview": "Driven by the promise of a new life, Jessica and her best friend Laila left for Syria to join Daech. But when they arrive, they find themselves locked up in a women’s house run by the authoritarian and charismatic Madame.", + "posterPath": "/h05EsRVWWrmLDlEsXhRIUWUSogH.jpg", + "backdropPath": "/tZ7ki6JMgEliY4u4XJmABZfAT2g.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2024-11-27", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.469, + "voteCount": 32, + "popularity": 6.2494 + }, + { + "id": 259468, + "title": "A Woman's Decision", + "originalTitle": "Bilans kwartalny", + "overview": "The main character is a bookkeeper, 40, who lives a quiet, uninteresting life with her husband and son of school age. She realizes that soon she won't be needed much at home as the boy grows up and the relationship with her husband crumbles. It's only when an embezzlement is discovered at the office and she stands up to her management, that she realizes life has more to offer. She meets a well-off former classmate, married to an American. Then she meets Jacek and starts contemplating possibilities of a new start. She discovers love for the first time, but turns to old ways rather than to break loose.", + "posterPath": "/uCAs5GvteRrEWDAVcVV3VSKj4kT.jpg", + "backdropPath": "/rOCqi4Eo9tl0zWgukbd0T7euRHz.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1975-01-21", + "releaseYear": "1975", + "originalLanguage": "pl", + "voteAverage": 4.727, + "voteCount": 11, + "popularity": 6.2492 + }, + { + "id": 665828, + "title": "Bigbug", + "originalTitle": "Bigbug", + "overview": "Set in the world of 2045, where communities have robotic helpers, a group of suburbanites are locked in for their protection by their household robots, while a rogue, self-aware AI android revolt uprising takes place outside.", + "posterPath": "/jDJOojbuqgnNVGmKgmuYzBpaIgP.jpg", + "backdropPath": "/uQUquwEvPuCg0ACRxU5NiCGgJLN.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 35 + ], + "genres": [ + "Science Fiction", + "Comedy" + ], + "releaseDate": "2022-02-11", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 5.29, + "voteCount": 449, + "popularity": 6.2491 + }, + { + "id": 217719, + "title": "Snake & Mongoose", + "originalTitle": "Snake & Mongoose", + "overview": "The untold story of how two Southern California drag racers, Don \"The Snake\" Prudhomme and Tom \"The Mongoose\" McEwen, combined with corporate giants to change the face of sports and ultimately became the most famous rivalry in racing history.", + "posterPath": "/cjd3lITXneXITBVJXYW3nVxfS3x.jpg", + "backdropPath": "/ofC9seWHqv5qoroJjbrhVZ1YIKY.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-09-06", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.133, + "voteCount": 15, + "popularity": 6.2485 + }, + { + "id": 139341, + "title": "Mysteries", + "originalTitle": "Mysteries", + "overview": "In the winter of 1891 a stranger arrives in a small coastal town on the Isle of Man. His presence soon disturbs the lives of the local inhabitants, especially the beautiful daughter of the parson.", + "posterPath": "/wX2V0Lkea3b7ytuEZJPvMfh9CDM.jpg", + "backdropPath": "/2oBEw1VtbvH2bx0lP9SWvbOW3cz.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "1978-09-07", + "releaseYear": "1978", + "originalLanguage": "nl", + "voteAverage": 4.8, + "voteCount": 10, + "popularity": 6.2484 + }, + { + "id": 39177, + "title": "Artemisia", + "originalTitle": "Artemisia", + "overview": "The story of Artemisia Gentileschi (1593-1653), one of the first well-known female painters, including her youth, when she was guided and protected by her father, the painter Orazio Gentileschi.", + "posterPath": "/5mMzt0Cw99wNk0xTT7YOdRxaqZp.jpg", + "backdropPath": "/AnY6qCODxXB81Sn56QvxS6EwwZA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "1997-09-10", + "releaseYear": "1997", + "originalLanguage": "fr", + "voteAverage": 5.9, + "voteCount": 44, + "popularity": 6.2483 + }, + { + "id": 646683, + "title": "The Exorcism", + "originalTitle": "The Exorcism", + "overview": "A troubled actor begins to unravel while shooting a supernatural horror film, leading his estranged daughter to wonder if he's slipping back into his past addictions or if there's something more sinister at play.", + "posterPath": "/ar2h87jlTfMlrDZefR3VFz1SfgH.jpg", + "backdropPath": "/93dDAqtrFQk5zeofDtQGExPlYjC.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2024-05-30", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.023, + "voteCount": 392, + "popularity": 6.2481 + }, + { + "id": 13972, + "title": "The Women", + "originalTitle": "The Women", + "overview": "The story centers on a group of gossipy, high-society women who spend their days at the beauty salon and haunting fashion shows. The sweet, happily-wedded Mary Haines finds her marriage in trouble when shop girl Crystal Allen gets her hooks into Mary's man.", + "posterPath": "/iFQrK0NHA4OMAvzyJVW4DA0kAFz.jpg", + "backdropPath": "/lrE14a3NfpDhSHHbJaQYScK6aSh.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2008-09-12", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.129, + "voteCount": 354, + "popularity": 6.2477 + }, + { + "id": 49787, + "title": "The Reef", + "originalTitle": "The Reef", + "overview": "A great white shark hunts the crew of a capsized sailboat along the Great Barrier Reef.", + "posterPath": "/s5JGAqmdv1cHlDjMqsmQUkVo2lW.jpg", + "backdropPath": "/x4bo1wEOcgmvrFftalSKeeFsGoL.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 53 + ], + "genres": [ + "Drama", + "Horror", + "Thriller" + ], + "releaseDate": "2010-05-15", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.612, + "voteCount": 587, + "popularity": 6.2468 + }, + { + "id": 21700, + "title": "Airbag", + "originalTitle": "Airbag", + "overview": "Mommy's boy Juantxo is engaged. Dragged to the party by his friends Konradin and Paco, he loses his expensive wedding ring inside the body of a prostitute. Mafioso whorehouse owner Villambrosa finds the ring. Meanwhile Villambrosa's rival gangster Souza sends femme fatale Fatima to check things out. Juantxo and his friends are trying to get the ring back and in the process get involved in the war between gangs.", + "posterPath": "/sjvz7mxHsygeO4K09GoSgWR4dfy.jpg", + "backdropPath": "/uI7Wxl9RMthNtSPOCfTNvPW6oWs.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 28, + 80, + 53 + ], + "genres": [ + "Comedy", + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "1997-06-20", + "releaseYear": "1997", + "originalLanguage": "es", + "voteAverage": 6.5, + "voteCount": 103, + "popularity": 6.2463 + }, + { + "id": 329714, + "title": "Satisfaction 1720", + "originalTitle": "Tordenskjold & Kold", + "overview": "Set in the year 1720, the story is about what happens to 29-year-old Tordenskiold when the Great Northern War ends and he doesn't know what to do with the rest of his life. His trusted valet persuades him to go on a European ‘road trip’ to search for a bride.", + "posterPath": "/3pMFa1bGtNfIwmOMeivV6Wh0zJ5.jpg", + "backdropPath": "/pPXH4zgDEymaQ7Y1kBdmvhWRMm5.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-01-28", + "releaseYear": "2016", + "originalLanguage": "da", + "voteAverage": 5.824, + "voteCount": 17, + "popularity": 6.2461 + }, + { + "id": 27441, + "title": "Countdown", + "originalTitle": "Countdown", + "overview": "Desperate to land a man on the moon before Russia does, NASA hastily preps a would-be spaceman for a mission that would leave him alone in a lunar shelter for a year.", + "posterPath": "/dsGu8yNR6xyn1lTaiB6bBgqKVCQ.jpg", + "backdropPath": "/8siVEnYXgge4vMgYJcroNhpYxrH.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53 + ], + "genres": [ + "Science Fiction", + "Thriller" + ], + "releaseDate": "1967-08-20", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 55, + "popularity": 6.2453 + }, + { + "id": 105416, + "title": "Life Size", + "originalTitle": "Grandeur nature", + "overview": "When Michel gets the life-sized sex doll he ordered, shipped directly from Japan, he is only intrigued by it at first. Then the silent unresponsiveness of the thing begins to haunt him, and he finds himself reacting to it as if it were an equally unresponsive living woman. As time passes, more and more of his life is spent trying to satisfy or placate its relentless silence, and he goes somewhat mad. He dresses the doll and takes it with him wherever he goes. When his usually very tolerant wife discovers what is going on, her jealousy knows no bounds and she attempts to imitate this threatening love-object. The light-hearted quality of this addle-pated fantasy darkens quickly when various neighborhood men attempt to put the doll to its originally intended use.", + "posterPath": "/3eLNTV4eW4xDyHZD9hRKIvfXRqR.jpg", + "backdropPath": "/yfZOTmMxSQBe3TjrrFskPffvmLL.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1974-08-21", + "releaseYear": "1974", + "originalLanguage": "fr", + "voteAverage": 5.478, + "voteCount": 23, + "popularity": 6.2451 + }, + { + "id": 36242, + "title": "Blues Harp", + "originalTitle": "Blues Harp", + "overview": "Ambitious yakuza Kenji befriends harmonica-playing bartender Chuji, who moonlights as a part-time drug-dealer for the opposing gang. Their friendship is threatened by Kenji's plans for advancement, as well as by his bodyguards growing jealousy of Chuji.", + "posterPath": "/baTChr7lU6dDleINF61TPfe56J6.jpg", + "backdropPath": "/1TNk0O3QnPZXdZQ1CtVk4Cj2Epc.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10402, + 10749 + ], + "genres": [ + "Crime", + "Drama", + "Music", + "Romance" + ], + "releaseDate": "1998-07-15", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 33, + "popularity": 6.2451 + }, + { + "id": 1037051, + "title": "Trust", + "originalTitle": "Confidenza", + "overview": "Pietro is a revered teacher, Teresa his brilliant and precocious student. Their affair is both illicit and tempestuous. After one fight, Teresa suggests that each tell the other a secret, one so shameful or shocking that were it to be made public, it would destroy that person’s life. Time passes, Pietro’s stature as a writer grows and his family settles into the comfort of a bourgeois life. But he is haunted by the possibility that Teresa may one day reappear and tear apart his world with the secret she knows.", + "posterPath": "/rySdSFkVfYa3zL7jhU42PcaxIgn.jpg", + "backdropPath": "/ohQuOgjSpE07rf4JbeIAm3N6ZPs.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2024-04-24", + "releaseYear": "2024", + "originalLanguage": "it", + "voteAverage": 6.404, + "voteCount": 136, + "popularity": 6.245 + }, + { + "id": 590706, + "title": "Jiu Jitsu", + "originalTitle": "Jiu Jitsu", + "overview": "Every six years, an ancient order of jiu-jitsu fighters joins forces to battle a vicious race of alien invaders. But when a celebrated war hero goes down in defeat, the fate of the planet and mankind hangs in the balance.", + "posterPath": "/eLT8Cu357VOwBVTitkmlDEg32Fs.jpg", + "backdropPath": "/an4UrbuWK7TEOeur9TesuMzqSYC.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 14 + ], + "genres": [ + "Action", + "Science Fiction", + "Fantasy" + ], + "releaseDate": "2020-11-20", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 4.807, + "voteCount": 645, + "popularity": 6.2449 + }, + { + "id": 114684, + "title": "Talisman", + "originalTitle": "Talisman", + "overview": "As the millenium draws near, an evil being awakens. Fused to an ancient Talisman for centuries -- Theriel, the Black Angel is summoned from his resting place to usher in the end of the world. The ghastly messenger must claim seven human sacrifices to complete the ritual and open the gates of Hell. A teenage boy and girl have been chosen to assist the angel in its deadly mission, yet they alone are the world's only hope for salvation.", + "posterPath": "/elUiODkTakLC2k2wCKEJWeAC3NG.jpg", + "backdropPath": "/vSLB5b2yADka0YUEIZ7o1sqqCWO.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1998-08-25", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 3.5, + "voteCount": 14, + "popularity": 6.2445 + }, + { + "id": 1032454, + "title": "Christmas Unfiltered", + "originalTitle": "Christmas Unfiltered", + "overview": "A teen who feels ignored by her family makes a Christmas wish to be listened to, then wakes up and discovers she can only tell the whole truth.", + "posterPath": "/mquQYEWVLqz8fb8umolFgyG9CVK.jpg", + "backdropPath": "/qwREqLTeSUh2LsvSi1worZnHQK3.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "2022-12-01", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 22, + "popularity": 6.2444 + }, + { + "id": 1189735, + "title": "Fréwaka", + "originalTitle": "Fréamhacha", + "overview": "Care worker Shoo, who is haunted by a personal tragedy, is sent to a remote village to care for an agoraphobic woman, who fears both her neighbours and the Na Sídhe – sinister folkloric entities she believes abducted her decades before.", + "posterPath": "/pfLylbmY0uxQm6Sh63j6bpb7XB3.jpg", + "backdropPath": "/qj0GN10AC65FcJchKLTDmOFE15X.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2025-04-25", + "releaseYear": "2025", + "originalLanguage": "ga", + "voteAverage": 7.4, + "voteCount": 28, + "popularity": 6.2443 + }, + { + "id": 99424, + "title": "Blood Hook", + "originalTitle": "Blood Hook", + "overview": "During a local fishing contest, people are being mysteriously dragged into the lake and killed by a giant fish hook. After a sufficient number of deaths, the killer is finally revealed.", + "posterPath": "/9aI7QJb6rYKx1RhjMYS2pCLxghB.jpg", + "backdropPath": "/9VpXipoCINIxej3dpFMgUZTTA2s.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35, + 53 + ], + "genres": [ + "Horror", + "Comedy", + "Thriller" + ], + "releaseDate": "1987-04-01", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 52, + "popularity": 6.2443 + }, + { + "id": 484428, + "title": "Becoming Astrid", + "originalTitle": "Unga Astrid", + "overview": "When Astrid Lindgren was very young something happened that affected her profoundly, and this combination of both miracle and calamity came to shape her entire life. It was an event that transformed her into one of the most inspiring women of our age and the storyteller a whole world would come to love. This is the story of when a young Astrid, despite the expectations of her time and religious upbringing, decided to break free from society's norms and follow her heart.", + "posterPath": "/eEbu8tFPSyM4zt9dPJjeFj3qwlF.jpg", + "backdropPath": "/mSjjzzuj87pJV3paZWBrtaro474.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2018-09-14", + "releaseYear": "2018", + "originalLanguage": "sv", + "voteAverage": 7, + "voteCount": 173, + "popularity": 6.2442 + }, + { + "id": 406997, + "title": "Wonder", + "originalTitle": "Wonder", + "overview": "The story of August Pullman – a boy with facial differences – who enters fifth grade, attending a mainstream elementary school for the first time.", + "posterPath": "/sONh3LYGFcVDTy8pm1tbSOB13Li.jpg", + "backdropPath": "/ce6HzPfxRRcLk5QRLcdExeVpsA1.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2017-11-13", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 8104, + "popularity": 6.2436 + }, + { + "id": 656483, + "title": "Cocoon", + "originalTitle": "Kokon", + "overview": "In the heat of a shimmering Berlin summer, Nora spends her days as a third wheel to her older sister Jule and her best friend Aylin. When Romy comes onto the scene, a friendship blossoms. Nora instantly falls for her, opening up a whole new world and unexpected summer of love.", + "posterPath": "/ik5hG3HJWIjmS2HChi9DLvpQrHB.jpg", + "backdropPath": "/qzQ5dZUWPO8WYpp26Vmv8K3V42Y.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2020-08-13", + "releaseYear": "2020", + "originalLanguage": "de", + "voteAverage": 6, + "voteCount": 42, + "popularity": 6.2435 + }, + { + "id": 85927, + "title": "India Song", + "originalTitle": "India Song", + "overview": "Anne-Marie Stretter, the wife of a French diplomat in 1930s India, takes many lovers to relieve the boredom in her life.", + "posterPath": "/kCAla6EHtwymFS73o0Gu3lRbGMl.jpg", + "backdropPath": "/fBh1T0i1ODGiD8BNcQ4VGfdfTeN.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1975-06-04", + "releaseYear": "1975", + "originalLanguage": "fr", + "voteAverage": 6.4, + "voteCount": 84, + "popularity": 6.2432 + }, + { + "id": 899112, + "title": "Violent Night", + "originalTitle": "Violent Night", + "overview": "When a team of mercenaries breaks into a wealthy family compound on Christmas Eve, taking everyone inside hostage, the team isn’t prepared for a surprise combatant: Santa Claus is on the grounds, and he’s about to show why this Nick is no saint.", + "posterPath": "/e8CpMgdyihz9Td7amQDqubPuzfN.jpg", + "backdropPath": "/sBOenwOZGRN5nZZGw4TxwtnfrEf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 14 + ], + "genres": [ + "Action", + "Comedy", + "Fantasy" + ], + "releaseDate": "2022-11-30", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 2394, + "popularity": 6.2428 + }, + { + "id": 79465, + "title": "Loosies", + "originalTitle": "Loosies", + "overview": "A young pickpocket in the New York subways, living a fast, free, lifestyle is confronted by a woman whom he had a one night affair with, she informs him that she is now pregnant with his child, he must now choose between continuing the lifestyle he lead or take responsibility for his actions.", + "posterPath": "/qjQHb11UOj0ms0d6EYk4Qm48yeB.jpg", + "backdropPath": "/mThjtfdi5aZi2Ctoj4ysaEYM7J9.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 35, + 10749 + ], + "genres": [ + "Crime", + "Comedy", + "Romance" + ], + "releaseDate": "2012-02-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 120, + "popularity": 6.2427 + }, + { + "id": 14390, + "title": "Double Whammy", + "originalTitle": "Double Whammy", + "overview": "Ray Pluto has many problems. He is satirized in the tabloids as the \"loser cop.\" His partner is starting to seem suspiciously attracted to him. A pair of screenwriters across the hall keep bugging him for help. The superintendent of his building is stabbed by hoodlums hired by his own rebellious daughter. To top it off, a sexually aggressive chiropractor may just be Ray's undoing.", + "posterPath": "/AvyjEU4VEhAtnOxjC9NaTtiPXlZ.jpg", + "backdropPath": "/5ec2l5M4i0KnvRVHZWx5wobhm2d.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2001-10-17", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.449, + "voteCount": 65, + "popularity": 6.2416 + }, + { + "id": 412924, + "title": "Supersonic", + "originalTitle": "Supersonic", + "overview": "Supersonic charts the meteoric rise of Oasis from the council estates of Manchester to some of the biggest concerts of all time in just three short years. This palpable, raw and moving film shines a light on one of the most genre and generation-defining British bands that has ever existed and features candid new interviews with Noel and Liam Gallagher, their mother, and members of the band and road crew.", + "posterPath": "/gMHLEKTB22J212To1gSnundcIhH.jpg", + "backdropPath": "/bbDMy8ou6N8yL5VidQpzo6kZZVk.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 99, + 36 + ], + "genres": [ + "Music", + "Documentary", + "History" + ], + "releaseDate": "2016-10-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 230, + "popularity": 6.2413 + }, + { + "id": 428015, + "title": "Wolf Mother", + "originalTitle": "Wolf Mother", + "overview": "In an attempt to rectify their criminal past, a once successful Hollywood starlet, turn prostitute, and a petty, misogynistic thief, set out together to solve a high profile child abduction case in San Francisco.", + "posterPath": "/9o1jNZI0j1cx1FPycjJaX2tJjdO.jpg", + "backdropPath": "/geyoGTi7sxY4Cmpi8CZpoMzylqT.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 53 + ], + "genres": [ + "Crime", + "Thriller" + ], + "releaseDate": "2016-06-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 4.167, + "voteCount": 24, + "popularity": 6.2412 + }, + { + "id": 409393, + "title": "Killer Assistant", + "originalTitle": "Killer Assistant", + "overview": "Just as a high-profile editor learns that her husband is cheating, her hot new assistant shows an interest in her. But his carefully planned seduction turns her world into a nightmare.", + "posterPath": "/h45XTHMeFdjkay4yZmTwGAfG46c.jpg", + "backdropPath": "/kVcMBN6rdiGlc4XcL64Cb5B3FTJ.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 53, + 80 + ], + "genres": [ + "TV Movie", + "Thriller", + "Crime" + ], + "releaseDate": "2016-04-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 13, + "popularity": 6.2403 + }, + { + "id": 1058063, + "title": "Hell Torture", + "originalTitle": "Siksa Neraka", + "overview": "Four siblings go missing and wake up in the afterlife, undergoing punishment for their worldly sins in the depths of hell.", + "posterPath": "/gt0zaEuYDgr5AbgHkLKmTfliBdd.jpg", + "backdropPath": "/ljW26r8uuJs8zvdjFW3mnKmSN51.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2023-12-14", + "releaseYear": "2023", + "originalLanguage": "id", + "voteAverage": 6.4, + "voteCount": 23, + "popularity": 6.2397 + }, + { + "id": 232840, + "title": "Dracano", + "originalTitle": "Dracano", + "overview": "A catastrophic volcanic eruption releases ancient dragon-like creatures on the surrounding areas. Scientists believe this could start a chain reaction of volcanic eruptions giving way to a global Dragon Apocalypse.", + "posterPath": "/wZBroSn4I0PExrGjjET8dwDhaHz.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2013-06-04", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 2.7, + "voteCount": 13, + "popularity": 6.2395 + }, + { + "id": 340674, + "title": "Dark Crimes", + "originalTitle": "Dark Crimes", + "overview": "Tadek, a Polish detective, becomes suspicious of a controversial author when the incidents described in his unpublished novel resemble the inner workings of an unsolved murder.", + "posterPath": "/bEwK1r4pmJ9huEjqrZf73NXJvFy.jpg", + "backdropPath": "/7vR0frpPSBhToKKESNfnPfDTY8y.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2016-10-12", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 4.605, + "voteCount": 465, + "popularity": 6.2392 + }, + { + "id": 529982, + "title": "Asher", + "originalTitle": "Asher", + "overview": "Asher is a former Mossad agent turned gun for hire, living an austere life in an ever-changing Brooklyn. Approaching the end of his career, he breaks the oath he took as a young man when he meets Sophie on a hit gone wrong. In order to have love in his life before it's too late, he must kill the man he was, for a chance at becoming the man he wants to be.", + "posterPath": "/o5p4Ev49KVR4itGWy3OHyqnRsz8.jpg", + "backdropPath": "/rNg9Vfek4rR41ka7B6YlQDihFvF.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 18 + ], + "genres": [ + "Thriller", + "Action", + "Drama" + ], + "releaseDate": "2018-12-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.797, + "voteCount": 155, + "popularity": 6.2391 + }, + { + "id": 1454800, + "title": "Trapped", + "originalTitle": "Trapped", + "overview": "In 1995, the year before the comprehensive gun ban policy was implemented, the tranquility of Mangya Town was shattered. A notorious bandit leader, who had hidden a massive treasure, broke out of prison. Forty-three ruthless outlaws gathered from all directions, joining their leader, Beishan, in blockading Mangya by force. The entire town was plunged into a desperate crisis—cut off from fuel and communication!\r The bandits wanted both money and lives. Gunfire erupted across Mangya as a massive sandstorm loomed on the horizon. Facing impossible odds—one gun against eighty-eight—the gang also turned on each other in a brutal \"dog-eat-dog\" power struggle. Surrounded by enemies, with sandstorms blotting out the sun and death hanging by a thread—how can they turn the tide?", + "posterPath": "/mmIqkyXhlgcaSb1S8zJsLQwGBls.jpg", + "backdropPath": "/mINSxREmed7uTom1HiradrnwYoP.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-04-29", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.2, + "voteCount": 14, + "popularity": 6.2389 + }, + { + "id": 422821, + "title": "Blood Money", + "originalTitle": "Blood Money", + "overview": "Three friends on a wilderness excursion must outrun a white collar criminal hellbent on retrieving his cash, but soon their greed turns them against each other. A modern re-telling of Treasure of the Sierra Madre (1948).", + "posterPath": "/yCvcvsP3w4CyiB3CLTxwaHBpKro.jpg", + "backdropPath": "/A4EkwT2bPQ88bWtGFo1yodySxPo.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2017-10-14", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 103, + "popularity": 6.2383 + }, + { + "id": 45569, + "title": "Red Hill", + "originalTitle": "Red Hill", + "overview": "Young police officer Shane Cooper's first day on duty, after relocating to the small town of Red Hill, rapidly turns into a nightmare. News of a prison break, involving convicted murderer Jimmy Conway, sends the local law enforcement officers - led by the town's ruling presence, Old Bill - into a panic and leads to a terrifying and bloody confrontation.", + "posterPath": "/fLELMBUdDoqJvPDE7CcYn0Ny6y8.jpg", + "backdropPath": "/zyCr00iEAkPwJDHzUgA2y5BDdcm.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 37 + ], + "genres": [ + "Action", + "Thriller", + "Western" + ], + "releaseDate": "2010-11-05", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 171, + "popularity": 6.2381 + }, + { + "id": 39845, + "title": "Love Ranch", + "originalTitle": "Love Ranch", + "overview": "Story of a couple that starts the first legal brothel in Nevada and a boxer they own a piece of.", + "posterPath": "/5Br0vFwX5UJZ60hwmSMMIKH2RgZ.jpg", + "backdropPath": "/6HT2Ep7riT2gOf9atuxW6gOY13G.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-06-30", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.373, + "voteCount": 55, + "popularity": 6.2373 + }, + { + "id": 754934, + "title": "Son", + "originalTitle": "Son", + "overview": "When a young boy contracts a mysterious illness, his mother must decide how far she will go to protect him from terrifying forces in her past.", + "posterPath": "/4fl6EdtMp6p0RKJgESdFti1J3dC.jpg", + "backdropPath": "/mRZDHjArYNWpOv06kxRK1cduQKh.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2021-03-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.014, + "voteCount": 280, + "popularity": 6.2372 + }, + { + "id": 669654, + "title": "The Hive", + "originalTitle": "La ruche", + "overview": "As far as they can remember, Marion, Claire and Louise have been living at the pace of their mother Alice’s ups and downs. Now, love is everything that they have left to fight the spiral of self-destruction in which Alice is sinking even more deeply. An unconditional love as violent as it is indescribable.", + "posterPath": "/rndxb3BhDrdW9f3znRpLrKqPCtg.jpg", + "backdropPath": "/39DjyqyHJcqIBfGBYDvGcpjdZcO.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-06-01", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 6.2, + "voteCount": 20, + "popularity": 6.2368 + }, + { + "id": 29070, + "title": "Blood Bath", + "originalTitle": "Blood Bath", + "overview": "A painter of morbid art, who becomes a murderous vampire by night and kills young women, attempts a daytime relationship with a woman who resembles a former love and is also the sister of one of his victims.", + "posterPath": "/cTDOq2bYILUE2nxhKdvnxINpZ7Q.jpg", + "backdropPath": "/w2nW90hk8t4gjcVW1VWAF3rC8PD.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1966-03-02", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 31, + "popularity": 6.2366 + }, + { + "id": 73290, + "title": "Urban Explorer", + "originalTitle": "Urban Explorer", + "overview": "Anxious to explore the mysterious hidden world under metropolitan Berlin, an international group of four urban explorers hires a local guide, Kris, who leads them into the maze of escape tunnels and subterranean fortifications under the city. When their guide has a bad fall, two of the girls in the group frantically set off to seek help while Denis, the young American, stays behind. Armin, a former East German border guard suddenly appears from nowhere. Out of sheer desperation, Denis allows Armin to lead them and their unconscious guide to safety and it is at this moment that Denis realizes he has just made the biggest mistake of his life!", + "posterPath": "/mywIDBRM7nsd34IdYTPU9siwEB9.jpg", + "backdropPath": "/mBxKz6frPjo0USPxaWZENQUISmr.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2011-09-08", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 101, + "popularity": 6.2363 + }, + { + "id": 19581, + "title": "Cloaca", + "originalTitle": "Cloaca", + "overview": "Four old college friends in their forties come together in a time of trouble and despair. Old joy relives, but the harsh reality of their problems can't satisfy them and eventually endangers their friendships.", + "posterPath": "/ncrGUZktYG4WxYxngDX1p2XUPFa.jpg", + "backdropPath": "/oXthUlbgdSmXxp9bZDW5MU5b9bP.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2003-10-23", + "releaseYear": "2003", + "originalLanguage": "nl", + "voteAverage": 6.222, + "voteCount": 18, + "popularity": 6.2359 + }, + { + "id": 8068, + "title": "Desperado", + "originalTitle": "Desperado", + "overview": "El Mariachi plunges headfirst into the dark border underworld when he follows a trail of blood to the last of the infamous Mexican drug lords, Bucho, for an action-packed, bullet-riddled showdown. With the help of his friend and a beautiful bookstore owner, El Mariachi tracks Bucho, takes on his army of desperados, and leaves his own trail of blood.", + "posterPath": "/e3gwpBeXpvGZsxUya9zNym5QXrw.jpg", + "backdropPath": "/rWFLgIRGXzECIbczgo7dmnwq55q.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 80 + ], + "genres": [ + "Thriller", + "Action", + "Crime" + ], + "releaseDate": "1995-08-25", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 3020, + "popularity": 6.2358 + }, + { + "id": 13187, + "title": "A Charlie Brown Christmas", + "originalTitle": "A Charlie Brown Christmas", + "overview": "When Charlie Brown complains about the overwhelming materialism that he sees amongst everyone during the Christmas season, Lucy suggests that he become director of the school Christmas pageant. Charlie Brown accepts, but it is a frustrating struggle. When an attempt to restore the proper spirit with a forlorn little fir Christmas tree fails, he needs Linus' help to learn the meaning of Christmas.", + "posterPath": "/n2h4lBtZnYuRwSagKoFTSzVO9jp.jpg", + "backdropPath": "/ucWnzjWWWd6CmRal8J3tWz6m1A7.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 35, + 10770 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "TV Movie" + ], + "releaseDate": "1965-12-09", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 739, + "popularity": 6.2354 + }, + { + "id": 134812, + "title": "Wither", + "originalTitle": "Vittra", + "overview": "Ida and Albin are a happy couple. They set off to a cabin in the vast Swedish woodlands to have a fun holiday with their friends. But under the floorboards is an evil that waits to be unleashed.", + "posterPath": "/fJGXQyhekGgFEHUXQmuR9b3k6Iu.jpg", + "backdropPath": "/vx9iOv68dEsIyqRUVHyJJlXbhcH.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2013-05-04", + "releaseYear": "2013", + "originalLanguage": "sv", + "voteAverage": 5.3, + "voteCount": 87, + "popularity": 6.2345 + }, + { + "id": 1027219, + "title": "Relyebo", + "originalTitle": "Relyebo", + "overview": "A security guard is charmed by a hot tenant he calls Ms. F. His sexual fantasy will take him to the extreme that will change his and his wife's lives forever.", + "posterPath": "/6AmAAOEYP48L57PFxwBb77ko3pg.jpg", + "backdropPath": "/pSWLnZ98ZSbx2MNc5IbPdkf4Kge.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2022-10-14", + "releaseYear": "2022", + "originalLanguage": "tl", + "voteAverage": 5.2, + "voteCount": 11, + "popularity": 6.2343 + }, + { + "id": 1018494, + "title": "Operation Seawolf", + "originalTitle": "Operation Seawolf", + "overview": "During the last days of World War II, Germany, desperate for any last grasp to defeat the allied powers, looked to their last remaining weapons and soldiers. The German Navy and the last remaining U-Boats were formed together for one desperate last mission – a mission to attack the United States Homeland, known as Operation Seawolf. Captain Hans Kessler, a grizzled submarine commander from both World Wars, is called into service to make one mission a success and help turn the tide of the war.", + "posterPath": "/eqm5EAyC9hJCN5qutuW4Ka1xYbU.jpg", + "backdropPath": "/6fYTLy4QE55BgMiHF3Co7bErjry.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 53, + 28, + 12 + ], + "genres": [ + "War", + "Thriller", + "Action", + "Adventure" + ], + "releaseDate": "2022-10-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.665, + "voteCount": 112, + "popularity": 6.2334 + }, + { + "id": 8293, + "title": "Howards End", + "originalTitle": "Howards End", + "overview": "A saga of class relations and changing times in an Edwardian England on the brink of modernity, the film centers on liberal Margaret Schlegel, who, along with her sister Helen, becomes involved with two couples: wealthy, conservative industrialist Henry Wilcox and his wife Ruth, and the downwardly mobile working-class Leonard Bast and his mistress Jackie.", + "posterPath": "/1009nhfj28VhhQnVadtjkOacduX.jpg", + "backdropPath": "/novvibtQv0B4psRxuqvd8g2qS5M.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1992-03-13", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.997, + "voteCount": 576, + "popularity": 6.2329 + }, + { + "id": 46890, + "title": "Names in Marble", + "originalTitle": "Nimed marmortahvlil", + "overview": "Despite peaceful speeches, the army of the Soviet Russian is attacking Estonia, and the country's government is declaring a mobilization for all. Henn Ahas, the son of a poor family, hesitates to go to war.", + "posterPath": "/dTgHA4JWwsTh0vXYVISN5Lry4Yb.jpg", + "backdropPath": "/kthqQYlZzbLavVA4bAX7suXhIL6.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 10752, + 36 + ], + "genres": [ + "Drama", + "Romance", + "War", + "History" + ], + "releaseDate": "2002-11-01", + "releaseYear": "2002", + "originalLanguage": "et", + "voteAverage": 5.9, + "voteCount": 19, + "popularity": 6.2318 + }, + { + "id": 245891, + "title": "John Wick", + "originalTitle": "John Wick", + "overview": "Ex-hitman John Wick comes out of retirement to track down the gangsters that took everything from him.", + "posterPath": "/fZPSd91yGE9fCcCe6OoQr6E3Bev.jpg", + "backdropPath": "/ff2ti5DkA9UYLzyqhQfI2kZqEuh.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2014-10-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.453, + "voteCount": 20218, + "popularity": 6.2316 + }, + { + "id": 85162, + "title": "Deadly Dreams", + "originalTitle": "Deadly Dreams", + "overview": "Alex is caught in a web of distrust between his brother, his best friend, a beautiful stranger and the renewed dreams of the slaughter of his family.", + "posterPath": "/loJaXlYSzX2HFcfMPHYFIda6RfY.jpg", + "backdropPath": "/8qAAvG4jaT0VolRSANGKWujSSyq.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "1988-10-26", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 20, + "popularity": 6.2315 + }, + { + "id": 1137245, + "title": "Three Friends", + "originalTitle": "Trois amies", + "overview": "Joan is no longer in love with Victor, but it pains her to feel she is being dishonest with him. Alice, her best friend, reassures her: She herself doesn’t feel passionate about her partner Eric and yet their relationship is smooth sailing. She has no idea he is having an affair with Rebecca, their mutual friend. When Joan finally decides to leave Victor and he disappears, the lives of the three friends and their relationships are turned upside down.", + "posterPath": "/s2mk1ElcP9xBhd4QHtUvXYMH8qs.jpg", + "backdropPath": "/nVMpA0JPnfeu6R9sf7sTDwhTh5L.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "2024-11-06", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.241, + "voteCount": 112, + "popularity": 6.2314 + }, + { + "id": 198515, + "title": "The Spiral", + "originalTitle": "Spirala", + "overview": "In what appears to be an inexplicable incident, a man drives up to a resort hotel in midwinter, throws away his car keys, enters, and proceeds to agitate everyone he meets with his urgency -- a message he is somehow unable to communicate. Then he leaves, disappearing in the snow. Later, the people he appeared to have upset have gathered to search for him and find him frostbitten, but alive. Visiting him at the sanatorium to which he has been taken, they gradually discover what was really happening.", + "posterPath": "/hIPRcNTHxum1c2RaByg3NHSRI89.jpg", + "backdropPath": "/vgBLvXywfewVvEMRbXmOoKW1sB2.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1978-09-21", + "releaseYear": "1978", + "originalLanguage": "pl", + "voteAverage": 6.7, + "voteCount": 13, + "popularity": 6.231 + }, + { + "id": 67183, + "title": "Paganini Horror", + "originalTitle": "Paganini Horror", + "overview": "A female rock band acquires an infamous composition by Niccolò Paganini that was used in satanic rituals. When the band decides to record the song and film a video in Paganini's old mansion, the spirit of the deceased composer is summoned and the band unlocks a portal to Hell.", + "posterPath": "/jGRfupGOElwgqSSFMdHE4Al6R3p.jpg", + "backdropPath": "/3h7JENuXqM68EWHKyUsKgXKu1KM.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 10402 + ], + "genres": [ + "Horror", + "Music" + ], + "releaseDate": "1989-06-06", + "releaseYear": "1989", + "originalLanguage": "it", + "voteAverage": 4.3, + "voteCount": 61, + "popularity": 6.2306 + }, + { + "id": 10982, + "title": "Hoodwinked!", + "originalTitle": "Hoodwinked!", + "overview": "Little Red Riding Hood: A classic story, but there's more to every tale than meets the eye. Before you judge a book by its cover, you've got to flip through the pages. In the re-telling of this classic fable, the story begins at the end of the tale and winds its way back. Chief Grizzly and Detective Bill Stork investigate a domestic disturbance at Granny's cottage, involving a karate-kicking Red Riding Hood, a sarcastic wolf and an oafish Woodsman.", + "posterPath": "/tjuMvHg7NJmE9hqKD3p86kW2Jvk.jpg", + "backdropPath": "/97i5zrV5Kmhi3NYJ7PzcfHmMNx8.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10751, + 80, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Crime", + "Mystery" + ], + "releaseDate": "2005-12-16", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.255, + "voteCount": 1839, + "popularity": 6.2297 + }, + { + "id": 288708, + "title": "In the Basement", + "originalTitle": "Im Keller", + "overview": "Filmmaker Ulrich Seidl explores of the dark underside of the human psyche by entering Austrian basements fitted out as private domains for secrets and fetishes.", + "posterPath": "/1SuEqvXLeKhmOTnwRW6FHZm9tPi.jpg", + "backdropPath": "/xUZXHoSRHQKzxxe1Ov6RPNrrUKI.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2014-09-26", + "releaseYear": "2014", + "originalLanguage": "de", + "voteAverage": 6.1, + "voteCount": 72, + "popularity": 6.2294 + }, + { + "id": 70928, + "title": "The Silent One", + "originalTitle": "Le Silencieux", + "overview": "Who is Anton Haliakov, who has just been abducted by the M.I.5 in London? A Soviet scientist apparently. But sixteen years before the man had another identity, Clément Tibère, and another nationality, French. So what led him to become Russian and to change identity? And why are the British secret services interested in him?", + "posterPath": "/hlCvpOUC1XQhyMeCeMAJvE4HK7a.jpg", + "backdropPath": "/UIYo4Xu8LUQEg4Y9bVKDY90A7b.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "1973-02-10", + "releaseYear": "1973", + "originalLanguage": "fr", + "voteAverage": 7.2, + "voteCount": 45, + "popularity": 6.2291 + }, + { + "id": 44008, + "title": "The Victim", + "originalTitle": "The Victim", + "overview": "Annie's life is in jeopardy after she's witnessed the horrific rape and murder of her closest friend. Fleeing from two attackers she stumbles across Kyle, a recluse living in the middle of the woods. Kyle finds the stillness of the woods comforting. The ruggedly handsome loner stays far from civilization - that is - until a single knock on his door throws his solitary life into chaos.", + "posterPath": "/rMWGCTARl355jcUTylJoduVtQFA.jpg", + "backdropPath": "/9znKRRPsj3ZlXTIFDVEyMWp2pFw.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 27 + ], + "genres": [ + "Thriller", + "Action", + "Horror" + ], + "releaseDate": "2011-06-06", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 4.75, + "voteCount": 58, + "popularity": 6.229 + }, + { + "id": 742, + "title": "Together", + "originalTitle": "Tillsammans", + "overview": "Elisabeth leaves her abusive and drunken husband Rolf, and goes to live with her brother, Göran. The year is 1975 and Göran lives in a commune called Together. Living in this leftist commune Elisabeth learns that the world can be viewed from different perspectives.", + "posterPath": "/fIY5xko6dJOcn0hckudIhPXobve.jpg", + "backdropPath": "/8uszBImrPngs8G4Y21LHJVstNtC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 10749 + ], + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "releaseDate": "2000-08-25", + "releaseYear": "2000", + "originalLanguage": "sv", + "voteAverage": 6.996, + "voteCount": 258, + "popularity": 6.229 + }, + { + "id": 56539, + "title": "Friday Foster", + "originalTitle": "Friday Foster", + "overview": "Friday Foster, a magazine photographer, goes to Los Angeles International airport to photograph the arrival of Blake Tarr, the richest black man in America. Three men attempt to assassinate Tarr. Foster photographs the melee and is plunged into a web of conspiracy involving the murder of her childhood friend, a US senator, and a shadowy plan called \"Black Widow\".", + "posterPath": "/dGADshou0bUIGGt0vompPORdKtn.jpg", + "backdropPath": "/mLsp1PMVvNxF4ZdcwvrffKrKBZn.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1975-12-25", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 52, + "popularity": 6.2287 + }, + { + "id": 887870, + "title": "Blue Giant", + "originalTitle": "BLUE GIANT", + "overview": "High school student Dai Miyamoto has his life is turned upside down the day he discovers jazz. Picking up a saxophone and leaving his sleepy hometown for the bustling nightclubs of Tokyo, Dai will find that the life of a professional musician isn’t for the faint of heart, as he must confront what it truly means to be great.", + "posterPath": "/auQ5ExCcuuudw0tQwG03obX5Zrh.jpg", + "backdropPath": "/65TVVnWOl3ko0G2GfYcCvbSmQW8.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 18, + 10402 + ], + "genres": [ + "Animation", + "Drama", + "Music" + ], + "releaseDate": "2023-02-17", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.767, + "voteCount": 73, + "popularity": 6.2286 + }, + { + "id": 382748, + "title": "Stargirl", + "originalTitle": "Stargirl", + "overview": "An unassuming high schooler finds himself inexplicably drawn to the free-spirited new girl, whose unconventional ways change how they see themselves…and their world.", + "posterPath": "/gwsrtzSrr7G6xjxsa7IwaAMHpEF.jpg", + "backdropPath": "/hX3kteYoGqvoPpSlqg6nryFL6xR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Romance", + "Family" + ], + "releaseDate": "2020-03-10", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.398, + "voteCount": 566, + "popularity": 6.2277 + }, + { + "id": 294959, + "title": "Valley Uprising", + "originalTitle": "Valley Uprising", + "overview": "In the shady campgrounds of Yosemite valley, climbers carved out a counterculture lifestyle of dumpster-diving and wild parties that clashed with the conservative values of the National Park Service. And up on the walls, generation after generation has pushed the limits of climbing, vying amongst each other for supremacy on Yosemite's cliffs. \"Valley Uprising\" is the riveting, unforgettable tale of this bold rock climbing tradition in Yosemite National Park: half a century of struggle against the laws of gravity -- and the laws of the land.", + "posterPath": "/9wjZdG4K1zkKmlh5DS2xxiEEVPK.jpg", + "backdropPath": "/bz75Gf7OPIJiq9lfrAesRK5h7SC.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 99, + 36 + ], + "genres": [ + "Adventure", + "Documentary", + "History" + ], + "releaseDate": "2014-09-01", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 96, + "popularity": 6.2275 + }, + { + "id": 25927, + "title": "Staten Island", + "originalTitle": "Staten Island", + "overview": "Sully is desperate to give his unborn son the chance he never had. Jasper wants to escape the mobsters that have infiltrated his life and business. Parmie, a local mob boss, dreams of crushing the competition. All three men live in Staten Island, and once their lives intersect, nothing will ever be the same.", + "posterPath": "/dQ7Fr2amTUigFLH55eTRlzVJL9y.jpg", + "backdropPath": "/r1xMeJsNMAnBktFpWVm94edtTqu.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53, + 80 + ], + "genres": [ + "Drama", + "Action", + "Thriller", + "Crime" + ], + "releaseDate": "2009-02-07", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 116, + "popularity": 6.2274 + }, + { + "id": 47191, + "title": "The Calling", + "originalTitle": "The Calling", + "overview": "On her wedding night, a young woman conceives a child during an hallucinatory encounter. Several years later, as her friends and family begin to behave strangely, she pieces together clues that lead to one conclusion...her son is the Antichrist", + "posterPath": "/83aIfGKzE7TE4MqYC5ht14jAPz0.jpg", + "backdropPath": "/u8KKkmrBmZIyGOvkGCURVyN3SJs.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2000-12-21", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 4.844, + "voteCount": 64, + "popularity": 6.227 + }, + { + "id": 718444, + "title": "Rogue", + "originalTitle": "Rogue", + "overview": "Battle-hardened O’Hara leads a lively mercenary team of soldiers on a daring mission: rescue hostages from their captors in remote Africa. But as the mission goes awry and the team is stranded, O’Hara’s squad must face a bloody, brutal encounter with a gang of rebels.", + "posterPath": "/uOw5JD8IlD546feZ6oxbIjvN66P.jpg", + "backdropPath": "/x4UkhIQuHIJyeeOTdcbZ3t3gBSa.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12 + ], + "genres": [ + "Action", + "Adventure" + ], + "releaseDate": "2020-08-20", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 717, + "popularity": 6.2269 + }, + { + "id": 13255, + "title": "Conspiracy", + "originalTitle": "Conspiracy", + "overview": "A Gulf War veteran with PTSD heads to a small town to find his friend. When he arrives his friend and his family have vanished and the townsfolk afraid to answer questions about their disappearance. He soon discovers that the town is owned and controlled by one man, and he doesn't like people asking questions.", + "posterPath": "/isJpvxaaZd8mHH3E4FFpdExSYEt.jpg", + "backdropPath": "/y5g9mSbOpwX9gQk7LG4Lysfh7kA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 28, + 53, + 9648 + ], + "genres": [ + "Drama", + "Action", + "Thriller", + "Mystery" + ], + "releaseDate": "2008-02-15", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.406, + "voteCount": 101, + "popularity": 6.2266 + }, + { + "id": 1221451, + "title": "Salawahan", + "originalTitle": "Salawahan", + "overview": "Melaine finds herself torn between two passionate relationships, unable to resist the pull of desire. When a third man enters her life, temptation takes over, leading her into a whirlwind of love, lust, and complicated choices.", + "posterPath": "/c6PovJ1flBiZeOkHpQIo8Ho8lrw.jpg", + "backdropPath": "/ipcssF1DsfnrZr1VqCwwe04mLYj.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2024-02-02", + "releaseYear": "2024", + "originalLanguage": "tl", + "voteAverage": 4.5, + "voteCount": 10, + "popularity": 6.226 + }, + { + "id": 208556, + "title": "Prora", + "originalTitle": "Prora", + "overview": "In this deserted former Nazi holiday camp and communist military complex, teenagers Jan and Matthieu embark on an adventure that could change everything. Whilst exploring their surroundings they confront their identities and ultimately put their friendship at risk.", + "posterPath": "/rMvWoZnfglQSBPIWvNC48OWFdEO.jpg", + "backdropPath": "/ibfB1IdHuKxvpmyL50pabnGbCnE.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2012-03-24", + "releaseYear": "2012", + "originalLanguage": "de", + "voteAverage": 6.6, + "voteCount": 37, + "popularity": 6.2256 + }, + { + "id": 297090, + "title": "The Torture Club", + "originalTitle": "ちょっとかわいいアイアンメイデン", + "overview": "The \"Torture Club\" is an official after-school activity at the private school Saint Honesty Gakuen. Yuzuki has no idea about the club when she enrolls, and gets abducted by the club members and hauled off the club-room. There, she finds out that upper-class student Aoi, her secret idol, is in the club, and decides to join, but…", + "posterPath": "/rJQQxeNqf4Cs0NtlftVJyfHDoEc.jpg", + "backdropPath": "/bYXYrMZeS792zS87xD9ySUALVgK.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2014-07-19", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.234, + "voteCount": 47, + "popularity": 6.2255 + }, + { + "id": 77351, + "title": "The Reunion", + "originalTitle": "Klassfesten", + "overview": "35-year old Magnus Edkvist hates class reunions as much as anyone and usually skip them. Still he accepts an invitation for a reunion for class he left over twenty years ago. But he has his reasons, as there is a chance that his teen love Hillevi will show up. The girl he wanted to run away with and share the rest of his life. The girl that got away...", + "posterPath": "/q8fEYORuVjMKSFw3DnygwoLz3nE.jpg", + "backdropPath": "/hjBzzYreOmk5z6Cg1khylRRnhsl.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2002-02-27", + "releaseYear": "2002", + "originalLanguage": "sv", + "voteAverage": 3.933, + "voteCount": 15, + "popularity": 6.2248 + }, + { + "id": 10822, + "title": "Savage Grace", + "originalTitle": "Savage Grace", + "overview": "This examination of a famous scandal from the 1970s explores the relationship between Barbara Baekeland and her only son, Antony. Barbara, a lonely social climber unhappily married to the wealthy but remote plastics heir Brooks Baekeland, dotes on Antony, who is homosexual. As Barbara tries to \"cure\" Antony of his sexuality -- sometimes by seducing him herself -- the groundwork is laid for a murderous tragedy.", + "posterPath": "/rtJp4ulwC1SvSYAUFGUa1pWV7nk.jpg", + "backdropPath": "/xDVLCGKjJK8wRgTQKZLOevlFoTp.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-05-18", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 215, + "popularity": 6.2248 + }, + { + "id": 49797, + "title": "I Saw the Devil", + "originalTitle": "악마를 보았다", + "overview": "Kyung-chul is a dangerous psychopath who kills for pleasure. Soo-hyeon, a top-secret agent, decides to track down the murderer himself. He promises himself that he will do everything in his power to take vengeance against the killer, even if it means that he must become a monster himself.", + "posterPath": "/zp5NrmYp80axIGiEiYPmm1CW6uH.jpg", + "backdropPath": "/ylqOWMU3nyZqg8hjJBG4EPdsGSk.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 27 + ], + "genres": [ + "Thriller", + "Horror" + ], + "releaseDate": "2010-08-12", + "releaseYear": "2010", + "originalLanguage": "ko", + "voteAverage": 7.796, + "voteCount": 2851, + "popularity": 6.2244 + }, + { + "id": 207454, + "title": "Mystery Woman", + "originalTitle": "Mystery Woman", + "overview": "A famous writer is found hanged in his office. At first, all police investigations conclude that it was suicide, but when Samantha Kinsey, owner of Seller 'Mystery Woman' starts his own investigation, he discovers that there is chance that has been committed murder. The film is the first in a long series of American TV movies called\" Mystery Woman\", in which Samantha Kinsey, the owner of a bookshop specializing in thrillers and suspense is involved in the resolution of real cases.", + "posterPath": "/7crZ2mg1cIezYaLVMsqEOD3BIdD.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 9648, + 80, + 53, + 10770 + ], + "genres": [ + "Mystery", + "Crime", + "Thriller", + "TV Movie" + ], + "releaseDate": "2003-08-31", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 11, + "popularity": 6.2238 + }, + { + "id": 77765, + "title": "The Klansman", + "originalTitle": "The Klansman", + "overview": "A small southern town has just been rocked by a tragedy: a young white woman has been raped by a black man. When young black man Garth witnesses the Ku Klux Klan's violent retaliation against his innocent friend, Garth declares a one-man war on the Klan and hunts them down one-by-one.", + "posterPath": "/3dqY2dRGc27rXuYwJL7ipMDs5WB.jpg", + "backdropPath": "/ulXiKO7u6HtOxz1YxQMgEtZ023b.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1974-10-25", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 5.605, + "voteCount": 38, + "popularity": 6.2238 + }, + { + "id": 27944, + "title": "Rain Fall", + "originalTitle": "Rain Fall", + "overview": "A hit man looks to protect the daughter of one of his victims against CIA assassins.", + "posterPath": "/jpcy33dy2fkUeUI45OZuDql1KVx.jpg", + "backdropPath": "/jCg3EBjvZtXyFJ2zDokn3fFfCXm.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 12 + ], + "genres": [ + "Thriller", + "Action", + "Adventure" + ], + "releaseDate": "2009-04-24", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 4.655, + "voteCount": 29, + "popularity": 6.2238 + }, + { + "id": 530157, + "title": "Pledge", + "originalTitle": "Pledge", + "overview": "Three friends pledge a fraternity that's deadly serious about its secret rituals, turning their rush into a race for survival.", + "posterPath": "/3eol8FnndIY8drMknjUnRCjYaIe.jpg", + "backdropPath": "/aqdjM6chmFlOtt1bzW0uLVIJWan.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2019-01-11", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 139, + "popularity": 6.2235 + }, + { + "id": 1428213, + "title": "Kontrabida Academy", + "originalTitle": "Kontrabida Academy", + "overview": "When a mysterious TV transports her to a school for on-screen villains, a restaurant worker finds new purpose — and a way to get back at her enemies.", + "posterPath": "/uiW2ff73RZzPABKtnjW5wmt43CU.jpg", + "backdropPath": "/oYPm2zk8fBxm3UBEiaWMzUGHeFW.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "2025-09-10", + "releaseYear": "2025", + "originalLanguage": "tl", + "voteAverage": 7.2, + "voteCount": 13, + "popularity": 6.2233 + }, + { + "id": 84669, + "title": "Blitz Wolf", + "originalTitle": "Blitz Wolf", + "overview": "Yet another variation on the Three Little Pigs theme, this time told as WW2 anti-German propaganda (the US had just entered the war), with the wolf as a thinly-disguised Hitler.", + "posterPath": "/2sJE7Ew0ACcJn6AFApdqJXb5WVO.jpg", + "backdropPath": "/zpX00EjKsqepr8i9eXtZRdH2rWc.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10752 + ], + "genres": [ + "Animation", + "Comedy", + "War" + ], + "releaseDate": "1942-08-22", + "releaseYear": "1942", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 57, + "popularity": 6.2218 + }, + { + "id": 30702, + "title": "Conrack", + "originalTitle": "Conrack", + "overview": "A young, white school teacher is assigned to Yamacraw Island, an isolated fishing community off the coast of South Carolina, populated mostly by poor black families. He finds that the basically illiterate, neglected children there know so little of the world outside their island.", + "posterPath": "/wiP6lRKlF4jngcH4yQZINWqqaUh.jpg", + "backdropPath": "/rP8WkOQIJiNi2U371IF97tjCvVQ.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1974-03-27", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 37, + "popularity": 6.2214 + }, + { + "id": 814064, + "title": "Avocado Toast", + "originalTitle": "Avocado Toast", + "overview": "Avocado Toast is a story about Adam, a hard-working, plays by the rules family-man, who risks everything he has by experimenting with \"millennialism.\"", + "posterPath": "/kJLoazo035LwpI6QRoEKfz7nAAI.jpg", + "backdropPath": "/wTYla5xRwfmzOyZziN8qxYuFput.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-04-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 35, + "popularity": 6.2206 + }, + { + "id": 47018, + "title": "Carrington", + "originalTitle": "Carrington", + "overview": "Painter Dora Carrington develops an intimate but extremely complex bond with writer Lytton Strachey. Though Lytton is a homosexual, he is enchanted by the mysterious Dora and they begin a lifelong friendship that has strangely romantic undertones. Eventually, Lytton and Dora decide to live together, despite the fact that the latter has fallen in love with military man Ralph Partridge, whom she plans to marry.", + "posterPath": "/8NmeBTkC4UQa8XT2GGsBN2R8Bqo.jpg", + "backdropPath": "/1a1QU6pD3MzrjrPXhBctuPm3oCl.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 10749 + ], + "genres": [ + "History", + "Drama", + "Romance" + ], + "releaseDate": "1995-05-25", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 67, + "popularity": 6.2203 + }, + { + "id": 482981, + "title": "Wild Rose", + "originalTitle": "Wild Rose", + "overview": "A young Scottish singer, Rose-Lynn Harlan, dreams of making it as a country artist in Nashville after being released from prison.", + "posterPath": "/79THplH9WM7y3gRPYM4dcC0IRPw.jpg", + "backdropPath": "/k18DGK5laMQJ8i79YnR509IzuKN.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 35, + 18 + ], + "genres": [ + "Music", + "Comedy", + "Drama" + ], + "releaseDate": "2019-04-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 345, + "popularity": 6.2202 + }, + { + "id": 297222, + "title": "PK", + "originalTitle": "पीके", + "overview": "A stranger in the city asks questions no one has asked before. Known only by his initials, the man's innocent questions and childlike curiosity take him on a journey of love, laughter and letting go.", + "posterPath": "/z2x2Y4tncefsIU7h82gmUM5vnBJ.jpg", + "backdropPath": "/gxfvtq5eYiClS2X7hxAAPBNrbWA.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 878 + ], + "genres": [ + "Comedy", + "Drama", + "Science Fiction" + ], + "releaseDate": "2014-12-18", + "releaseYear": "2014", + "originalLanguage": "hi", + "voteAverage": 7.698, + "voteCount": 1085, + "popularity": 6.2201 + }, + { + "id": 1212142, + "title": "Kinda Pregnant", + "originalTitle": "Kinda Pregnant", + "overview": "When Lainy's plan to settle down and start a family falls apart, she puts on a fake baby bump, tells a lie — and accidentally falls for her dream guy.", + "posterPath": "/k2Lq3rCJ7P9gk5Df9of9kqr9IJM.jpg", + "backdropPath": "/8qSsnSbgosaCROnvcOzeXyWsxIp.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2025-02-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.608, + "voteCount": 288, + "popularity": 6.2195 + }, + { + "id": 1480382, + "title": "The Voice of Hind Rajab", + "originalTitle": "صوت هند رجب", + "overview": "January 29, 2024. Red Crescent volunteers receive an emergency call. A 6-year old girl is trapped in a car under fire in Gaza, pleading for rescue. While trying to keep her on the line, they do everything they can to get an ambulance to her. Her name was Hind Rajab.", + "posterPath": "/2sUA6hyjC2HVJjDTKtCcOTzv6Qn.jpg", + "backdropPath": "/mQwD7GtPTkv6WF5m8AJWGrO5XOE.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-10", + "releaseYear": "2025", + "originalLanguage": "ar", + "voteAverage": 8.216, + "voteCount": 95, + "popularity": 6.2194 + }, + { + "id": 173911, + "title": "Bluebird", + "originalTitle": "Bluebird", + "overview": "On a freezing January evening, school bus driver Lesley completes her route, but her final inspection abruptly ends when a bluebird comes into view. What happens next shakes her small Maine logging town, proving that even the slightest actions have enormous consequences.", + "posterPath": "/vVglFdeeZnKsk40btKom82F8O5Y.jpg", + "backdropPath": "/tmvsMk8hXmKdyt6NKsK6Gh5b161.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-02-27", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.708, + "voteCount": 24, + "popularity": 6.2194 + }, + { + "id": 1438959, + "title": "Elisa", + "originalTitle": "Elisa", + "overview": "Elisa, the daughter of an ordinary family, has been in prison for ten years for brutally murdering her sister. She believes she doesn’t remember what happened, but her fragmented memories begin to come into focus during meetings with the criminologist Alaoui, who is conducting a study on family homicides. The truth that emerges for Elisa is devastating—a pain that may mark the beginning of redemption.", + "posterPath": "/5mhgTXDfVI2op4RfIp25ETE4UXB.jpg", + "backdropPath": "/s477jLei4X5iERXXtiH6pQDmDif.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2025-09-05", + "releaseYear": "2025", + "originalLanguage": "it", + "voteAverage": 5.972, + "voteCount": 18, + "popularity": 6.2181 + }, + { + "id": 522964, + "title": "Incoming", + "originalTitle": "Incoming", + "overview": "The International Space Station is now a prison - the ultimate black site. No one's getting out. And no one knows it's there. But when the imprisoned terrorists take over the Station and turn it into a missile aimed at Moscow, only a shuttle pilot and a rookie doctor can stop them. Their task is complicated by a rogue CIA agent (Scott Adkins) who has his own plans for the station and the terrorists within.", + "posterPath": "/xeGX5JspkJLBupB8qciJhaEc4C7.jpg", + "backdropPath": "/fMM8DSqVVqAPLxgadLSo1AwzytA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878, + 53 + ], + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ], + "releaseDate": "2018-05-04", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.411, + "voteCount": 95, + "popularity": 6.2181 + }, + { + "id": 52906, + "title": "Goodbye Charlie", + "originalTitle": "Goodbye Charlie", + "overview": "When a cavorting Hollywood writer is killed by the angry husband of a woman he was having an affair with, he comes back as a spirit in the form of a beautiful woman and moves in with his/her best friend as a base operation for enacting sweet revenge.", + "posterPath": "/tA7MNMfk1BQdEMM8aJhQSLP4fA5.jpg", + "backdropPath": "/eHhDsK5GZ4fcpjib5GnFNbffCqD.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 14 + ], + "genres": [ + "Comedy", + "Romance", + "Fantasy" + ], + "releaseDate": "1964-11-18", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 5.759, + "voteCount": 27, + "popularity": 6.2181 + }, + { + "id": 46367, + "title": "The Nevadan", + "originalTitle": "The Nevadan", + "overview": "A mysterious stranger crosses paths with an outlaw bank robber and a greedy rancher.", + "posterPath": "/d7JFVv4bUkLu2vQoLpvh1lU3r6E.jpg", + "backdropPath": "/pxpEuujvHVnhAK16QGai41nEjAx.jpg", + "mediaType": "movie", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1950-01-11", + "releaseYear": "1950", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 21, + "popularity": 6.2181 + }, + { + "id": 104528, + "title": "Dogs", + "originalTitle": "Dogs", + "overview": "On the quiet campus of the remotely-located SouthWestern University, something strange is happening. All of the dogs in the area, once loyal, gentle pets, are now banding together in wild packs and hunting down their former masters. Could the strange transformation have anything to do with the secret government experiments being conducted in the school's physics laboratory? More importantly, can the dogs be stopped before it's too late?", + "posterPath": "/p9QYxAoSeVaUdvFw9HEqmzPUbdf.jpg", + "backdropPath": "/eelUozvoQkYgAmZHVyd3vM2ps7M.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1976-11-11", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 29, + "popularity": 6.218 + }, + { + "id": 2907, + "title": "The Addams Family", + "originalTitle": "The Addams Family", + "overview": "When a man claiming to be long-lost Uncle Fester reappears after 25 years lost, the family plans a celebration to wake the dead. But the kids barely have time to warm up the electric chair before Morticia begins to suspect Fester is fraud when he can't recall any of the details of Fester's life.", + "posterPath": "/qFf8anju5f2epI0my8RdwwIXFIP.jpg", + "backdropPath": "/7OxGhxUYAdtuike29VMzEFxJx7y.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 14 + ], + "genres": [ + "Comedy", + "Fantasy" + ], + "releaseDate": "1991-11-22", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 4899, + "popularity": 6.2174 + }, + { + "id": 724989, + "title": "Hard Kill", + "originalTitle": "Hard Kill", + "overview": "The work of billionaire tech CEO Donovan Chalmers is so valuable that he hires mercenaries to protect it, and a terrorist group kidnaps his daughter just to get it.", + "posterPath": "/ugZW8ocsrfgI95pnQ7wrmKDxIe.jpg", + "backdropPath": "/86L8wqGMDbwURPni2t7FQ0nDjsH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "releaseDate": "2020-09-04", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 653, + "popularity": 6.2173 + }, + { + "id": 910596, + "title": "Run & Gun", + "originalTitle": "Run & Gun", + "overview": "After leaving a life of crime and violence, Ray is a reformed good guy, enjoying a quiet family life in the ‘burbs. But when his past is discovered, Ray is blackmailed into one last job to collect a mysterious package. After a deadly double-cross, he finds himself wounded and on the run from ruthless assassins who will stop at nothing to get what he has. Now, with the lives of his loved ones hanging in the balance and danger at every turn, Ray’s only hope is to draw upon his violent past to survive.", + "posterPath": "/h0AKLEk4XCajdav1hSHIR71cU66.jpg", + "backdropPath": "/1FTw6A7FF45b40uzk0cPVlNbKS.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2022-01-11", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 67, + "popularity": 6.2162 + }, + { + "id": 91745, + "title": "Romeo & Juliet", + "originalTitle": "Romeo & Juliet", + "overview": "In Verona, bad blood between the Montague and Capulet families leads to much bitterness. Despite the hostility, Romeo Montague manages an invitation to a masked ball at the estate of the Capulets and meets Juliet, their daughter. The two are instantly smitten but dismayed to learn that their families are enemies. Romeo and Juliet figure out a way to pursue their romance, but Romeo is banished for his part in the slaying of Juliet's cousin, Tybalt.", + "posterPath": "/9FZ3wTjY9rUvIoobJFv8ozoTwTT.jpg", + "backdropPath": "/3MIG7hIJtpuyyytRSr8asm9YLGt.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2013-09-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.714, + "voteCount": 578, + "popularity": 6.2162 + }, + { + "id": 36642, + "title": "Murderers' Row", + "originalTitle": "Murderers' Row", + "overview": "The handsome top agent Matt dies a tragic death in his bath tub - the women mourn about the loss. However it's just faked for his latest top-secret mission: He shall find Dr. Solaris, inventor of the Helium laser beam, powerful enough to destroy a whole continent. It seems Dr. Solaris has been kidnapped by a criminal organization. The trace leads to the Cote D'Azur.", + "posterPath": "/hzCbOzehs5B2hZ2bcb7YxCusEcM.jpg", + "backdropPath": "/e9g1AXxE3cWFI5VuOmbbfZNwOe3.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35 + ], + "genres": [ + "Action", + "Adventure", + "Comedy" + ], + "releaseDate": "1966-12-20", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 40, + "popularity": 6.2162 + }, + { + "id": 428888, + "title": "Fat Camp", + "originalTitle": "Fat Camp", + "overview": "Fitness buff Hutch Daily is a foul-mouthed 27 year-old with the maturity of a pre-teen. After refusing to find employment or his own apartment, his mom gives him two choices: move to the homeless shelter or work at his uncle’s fat camp. Though he thinks fatties are disgusting, Hutch finds himself supervising an irreverent group of chunky boys, who ultimately help him grow up.", + "posterPath": "/vE3ArQ3KyG9ZkMxp6zmH4VvaQIl.jpg", + "backdropPath": "/uKXEt8eVg0cgzNWYfGe9I7c5tXn.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-06-21", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 10, + "popularity": 6.2144 + }, + { + "id": 144340, + "title": "Admission", + "originalTitle": "Admission", + "overview": "Straitlaced Princeton University admissions officer Portia Nathan is caught off-guard when she makes a recruiting visit to an alternative high school overseen by her former classmate, the freewheeling John Pressman. Pressman has surmised that Jeremiah, his gifted yet very unconventional student, might well be the son that Portia secretly gave up for adoption many years ago.", + "posterPath": "/f3HoCikJxypRtLJptBwvs7L7etE.jpg", + "backdropPath": "/xcPdPDl8ihjIDQW6XxnQvABEvyp.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2013-03-21", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 637, + "popularity": 6.2143 + }, + { + "id": 1091267, + "title": "The Well", + "originalTitle": "The Well", + "overview": "A young restorer travels to a small village to restore a medieval painting to its former glory. She will put her life in danger due to a curse attached to the painting.", + "posterPath": "/8QV86y9ympSjtZfuAeufAeBb9OG.jpg", + "backdropPath": "/bml9iJaB6W3lAUXR2mIthlzl62o.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-08-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.643, + "voteCount": 122, + "popularity": 6.2137 + }, + { + "id": 57969, + "title": "The Railroad Man", + "originalTitle": "Il ferroviere", + "overview": "Train operator Andrea Marcocci has to witness the suicide of a desperate man who jumps in front of his train. Under the influence of this shock he starts making mistakes. A check up by a doctor reveals that he's at the brink of becoming an alcoholic. Due to this evaluation he is degraded and must accept a salary cut.", + "posterPath": "/3i8AlnmKymmeOLhysuiNFGhlFjn.jpg", + "backdropPath": "/rse0INAZWKg3vp08h2qEf610cqi.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1956-11-21", + "releaseYear": "1956", + "originalLanguage": "it", + "voteAverage": 7.7, + "voteCount": 68, + "popularity": 6.2134 + }, + { + "id": 9384, + "title": "Starsky & Hutch", + "originalTitle": "Starsky & Hutch", + "overview": "Join uptight David Starsky and laid-back Ken \"Hutch\" Hutchinson as they're paired for the first time as undercover cops. The new partners must overcome their differences to solve an important case with help from street informant Huggy Bear and persuasive criminal Reese Feldman.", + "posterPath": "/fmBYVkBjhVspPv3GGus84qhBo1a.jpg", + "backdropPath": "/k6Qnu4fTXskJwjFBEZRtTPSLHu9.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2004-03-05", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.822, + "voteCount": 2437, + "popularity": 6.2134 + }, + { + "id": 29865, + "title": "Trapped Ashes", + "originalTitle": "Trapped Ashes", + "overview": "Trapped in a house of horror, seven people discover that the only way they'll get out alive is to tell their scariest stories.", + "posterPath": "/ohS68wlrWOQcbHMyYz74YoTTa8x.jpg", + "backdropPath": "/f9XCWfjRjxMSSqXLUVQ7580cW6J.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2006-09-12", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 50, + "popularity": 6.2133 + }, + { + "id": 67605, + "title": "Naseeb", + "originalTitle": "नसीब", + "overview": "Naseeb, a story of destiny and fate, begins with a lottery ticket. A drunk who cannot pay his restaurant bill trades his recently purchased ticket with a waiter. Naseeb becomes a poignant story about love, friendship, sacrifice, deceit, revenge and above all, destiny.", + "posterPath": "/oDUddLemim047H3V9tNrkhTotOK.jpg", + "backdropPath": "/qosEsXxL0E9z44cfCh53L6itGUv.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1981-05-01", + "releaseYear": "1981", + "originalLanguage": "hi", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 6.2132 + }, + { + "id": 613348, + "title": "The Vets", + "originalTitle": "Les vétos", + "overview": "In the heart of Morvan, Nico, the last vet in the area, struggles to save his patients, his clinic, and his family. When Michel, his partner and mentor, announces his retirement, Nico knows that the hard part is yet to come. \"Don't worry, I've found the next generation\" Except that ... The next generation is Alexandra, a 24-hour graduate, brilliant, misanthropic, and not at all willing to return to bury herself in the village of her childhood. Will Nico manage to make her stay?", + "posterPath": "/w7bS4nnqZArSgkFU96uPIhxNP6v.jpg", + "backdropPath": "/kEY2Kir3pRl2EhDkR519RO71bs5.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-11-04", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 6.5, + "voteCount": 110, + "popularity": 6.213 + }, + { + "id": 7304, + "title": "Running Scared", + "originalTitle": "Running Scared", + "overview": "A low-ranking thug is entrusted by his boss to dispose of a gun that killed corrupt cops, but things spiral out of control when the gun ends up in wrong hands.", + "posterPath": "/wVlwZbwJlI5C33STslTyVNRGjg6.jpg", + "backdropPath": "/p5z5X3GRnaFEqgtEa7fiGhgtUkA.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 18, + 53 + ], + "genres": [ + "Action", + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2006-01-06", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 1095, + "popularity": 6.213 + }, + { + "id": 278909, + "title": "Retirement", + "originalTitle": "Retirement", + "overview": "\"Retirement. My retirement. After a long stretch of intense work on a project that I wasn't passionate about, I finally had a little time to make something I truly wanted. Solitude. A subtle use of machinima alongside HD video.\" Scott Barley", + "posterPath": "/iB2wkDJeU3IuTFTBbukbkDwacXZ.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [], + "genres": [], + "releaseDate": "2013-03-09", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 11, + "popularity": 6.2129 + }, + { + "id": 42343, + "title": "Geordie", + "originalTitle": "Geordie", + "overview": "Concerned about his small stature, a young Scottish boy applies for a mail-order body building course, successfully gaining both height and strength. The film was released as \"Wee Geordie\" in the USA.", + "posterPath": "/gOzR2R3RbbWVEcsJNHr1CQjF6pm.jpg", + "backdropPath": "/8iojZCLzhxtIkhMW1vty5PqzYmR.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749 + ], + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "1955-09-02", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 6.2126 + }, + { + "id": 626979, + "title": "Coup 53", + "originalTitle": "Coup 53", + "overview": "Tehran, Iran, August 19, 1953. A group of Iranian conspirators who, with the approval of the deposed tyrant Mohammad Reza Pahlavi, have conspired with agents of the British MI6 and the US CIA, manage to put an end to the democratic government led by Mohammad Mosaddegh, a dramatic event that will begin the tragic era of coups d'état that, orchestrated by the CIA, will take place, over the following decades, in dozens of countries around the world.", + "posterPath": "/Ar7iq23QZNh0ZX57uPc8e2IasvD.jpg", + "backdropPath": "/mirbd7cFNdwbkR8gMrVJfd8OdEp.jpg", + "mediaType": "movie", + "genreIds": [ + 99, + 36 + ], + "genres": [ + "Documentary", + "History" + ], + "releaseDate": "2019-09-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.962, + "voteCount": 13, + "popularity": 6.2124 + }, + { + "id": 143150, + "title": "New Boy", + "originalTitle": "New Boy", + "overview": "A young African boy with a haunting back story starts school in Ireland, and finds out quickly exactly what it means to be the new kid. Winner of Best Narrative Short at the 2008 Tribeca Film Festival and nominated for an Oscar.", + "posterPath": "/pWbx4W09bBDNfJYOTBHpzX0Hr53.jpg", + "backdropPath": "/pDHkuxMa7eEwDcziNPL59yzEizY.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-07-14", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.464, + "voteCount": 28, + "popularity": 6.2124 + }, + { + "id": 1228682, + "title": "Dreams", + "originalTitle": "Drømmer", + "overview": "Johanne falls in love with her teacher and records her fantasies and feelings in writing. Together with her mother and grandmother, they debate the literary potential and whether to publish it.", + "posterPath": "/ctBhKsd2AGlubApDf7VogbFKRlG.jpg", + "backdropPath": "/gjUk32ohE9A05Y4NK9bbkCkAgMB.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-10-04", + "releaseYear": "2024", + "originalLanguage": "no", + "voteAverage": 7, + "voteCount": 45, + "popularity": 6.2119 + }, + { + "id": 366505, + "title": "The Olive Tree", + "originalTitle": "El Olivo", + "overview": "Alma’s family has been producing quality olive oil in the Baix Maestrat area of Spain’s Castellón for generations. Yet changing pressures in the industry have made their traditional practices economically untenable, and the family is now in the mass-production poultry business. Alma’s grandfather has not spoken in years. Sadness envelopes him, and he no longer wants to eat. His sons—Alma’s father and uncle—are impatient with him, but Alma understands her grandfather. She realizes he has been grieving for a thousand-year-old olive tree that the family has uprooted and sold to pay some debts. (A sadly common reality in Castellón at present.) Unable to bear the idea that her grandfather could die without seeing this terrible wrong corrected, Alma undertakes a quixotic mission to locate the tree and return it to the family orchard, so that her grandfather may have peace in his final days.", + "posterPath": "/uyWCqamhJImIwLdPgSmXNn2UwX5.jpg", + "backdropPath": "/3I7MBgBtOzphZREhooY7l1LB7DB.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2016-05-06", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 6.689, + "voteCount": 132, + "popularity": 6.2117 + }, + { + "id": 124013, + "title": "A Crime", + "originalTitle": "Un Crime", + "overview": "\"Un Crime\" takes place over a single night, between 10pm and 6am. It takes place in a single setting - a millionaire's apartment in Lyon. The film is about the conflict between two men, alone, face to face in the closed world of the apartment. The first man is a famous lawyer named Dunand. The second is Frédéric Chapelin-Tourvel, Dunand's rich client, twenty years his junior. Throughout the night, Dunand tries to track down the truth. Did Frédéric kill his father and mother, in particularly barbarous circumstances ?", + "posterPath": "/7lP5e7TPEPzR72XeSyUAO9im6xH.jpg", + "backdropPath": "/mZYUj6hghtnsU4E7OCFufJ8ePWb.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "1993-08-04", + "releaseYear": "1993", + "originalLanguage": "fr", + "voteAverage": 4.667, + "voteCount": 15, + "popularity": 6.2108 + }, + { + "id": 466420, + "title": "Killers of the Flower Moon", + "originalTitle": "Killers of the Flower Moon", + "overview": "When oil is discovered in 1920s Oklahoma under Osage Nation land, the Osage people are murdered one by one—until the FBI steps in to unravel the mystery.", + "posterPath": "/dB6Krk806zeqd0YNp2ngQ9zXteH.jpg", + "backdropPath": "/1X7vow16X7CnCoexXh4H4F2yDJv.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 36, + 18 + ], + "genres": [ + "Crime", + "History", + "Drama" + ], + "releaseDate": "2023-10-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.409, + "voteCount": 3853, + "popularity": 6.2103 + }, + { + "id": 1061990, + "title": "City Hunter", + "originalTitle": "シティーハンター", + "overview": "An exceptional marksman and hopeless playboy, private eye Ryo Saeba reluctantly forms an alliance with his late partner's sister to investigate his death.", + "posterPath": "/cjQzJ9xFdaN9KAwu7HUImIgbc2Y.jpg", + "backdropPath": "/fKjC37jKT1Ks1WAFzdX9Eu2DOWS.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2024-04-24", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.564, + "voteCount": 236, + "popularity": 6.2084 + }, + { + "id": 228107, + "title": "Anita B.", + "originalTitle": "Anita B.", + "overview": "After World War II, Anita, a young survivor of Auschwitz, becomes involved in an intense and passionate affair that almost shatters her until she gains the strength to start a new life.", + "posterPath": "/aJPB80TJbPJD0j4uW5kgyLozGhz.jpg", + "backdropPath": "/fmJynwdaMFAy3H67oQ09SIjohV6.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2014-01-28", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 53, + "popularity": 6.2084 + }, + { + "id": 104043, + "title": "Old Enough", + "originalTitle": "Old Enough", + "overview": "The 12 years old well-bred Lonnie meets the impudent Karen on the street. They spend some time together and Karen teaches Lonnie some of her favorite occupancies, like make-up, shoplifting, skipping school and lying to the parent about it, but confessing to the priest later. But Karen also learns some honesty from Lonnie. A film about social differences and growing up.", + "posterPath": "/nrcrdkFmBf4lxHedsePrvSuKlsa.jpg", + "backdropPath": "/qLcFZuuimWul77bkFaNspqKCxuc.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1984-08-24", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 18, + "popularity": 6.2084 + }, + { + "id": 16304, + "title": "Creepshow 3", + "originalTitle": "Creepshow 3", + "overview": "This follow-up to the George Romero/Stephen King-launched anthology series features five new tales of horror and a wraparound. The main stories deal with alternative realities (\"Alice\"), possessed communication devices (\"The Radio\"), vampires and serial killers in lust (\"Call Girl\"), mad inventors (\"The Professor's Wife\"), and hauntings from beyond the grave (\"Haunted Dog\").", + "posterPath": "/qvJSdbruD4e5cUxruoUFUkJrsqt.jpg", + "backdropPath": "/plKlKfXuWB0O7s3RF2oKVAreJYS.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 35 + ], + "genres": [ + "Horror", + "Comedy" + ], + "releaseDate": "2006-04-24", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 195, + "popularity": 6.208 + }, + { + "id": 17790, + "title": "Zone Troopers", + "originalTitle": "Zone Troopers", + "overview": "American soldiers, led by The Sarge, are stuck behind Nazi enemy lines. As they make their way across the Italian countryside, they come across an alien spaceship that has crash-landed in the woods. The alien pilot is dead, but one of the ship's passengers is on the loose. As the GIs hunt down the alien by splitting into smaller groups, they're not only tracked by the Nazis, but also a whole host of other aliens come to save their stranded party.", + "posterPath": "/mCaBGD745uvbBvfdG1Mdl8hUDi2.jpg", + "backdropPath": "/aWkbhy2jhzU0LYrppwqAnmnUXKU.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 10752 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "War" + ], + "releaseDate": "1985-10-01", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 5.331, + "voteCount": 59, + "popularity": 6.2074 + }, + { + "id": 2501, + "title": "The Bourne Identity", + "originalTitle": "The Bourne Identity", + "overview": "Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. However, Bourne realizes that he has the combat and mental skills of a world-class spy—but who does he work for?", + "posterPath": "/aP8swke3gmowbkfZ6lmNidu0y9p.jpg", + "backdropPath": "/kJaRWmy1BGq3pHyE94LOTteiHer.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 18, + 9648, + 53 + ], + "genres": [ + "Action", + "Drama", + "Mystery", + "Thriller" + ], + "releaseDate": "2002-06-14", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 9750, + "popularity": 6.2073 + }, + { + "id": 77198, + "title": "Broadway Bill", + "originalTitle": "Broadway Bill", + "overview": "Tycoon J.L. Higgins controls his whole family, but one of his sons-in-law, Dan Brooks, and his daughter Alice are fed up with that. Brooks quits his job as manager of J.L.'s paper box factory and devotes his life to his racing horse Broadway Bill, but his bankroll is thin and the luck is against him. He is arrested because of $150 he owes somebody for horse food, but suddenly a planned fraud by somebody else seems to offer him a chance...", + "posterPath": "/dDWQjYnnxNTsU99mpjr4CRPOry7.jpg", + "backdropPath": "/nMzwClZuT1cYtppGuwB8XTciNLB.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1934-11-30", + "releaseYear": "1934", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 21, + "popularity": 6.2071 + }, + { + "id": 26177, + "title": "Annie", + "originalTitle": "Annie", + "overview": "Things seem pretty bad for a young girl living a \"hard-knock life\" in an orphanage. Fed up with the dastardly Miss Hannigan, Annie escapes the run-down orphanage determined to find her mom and dad. It's an adventure that takes her from the cold, mean streets of New York to the warm, comforting arms of bighearted billionaire Oliver Warbucks - with plenty of mischief and music in between.", + "posterPath": "/y0XWZC1A7PbWf1gwmvbvhY9uWM2.jpg", + "backdropPath": "/xXbEXEYJrEcMJ4RKbTeLtrlCMl.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 10751, + 35 + ], + "genres": [ + "Music", + "Family", + "Comedy" + ], + "releaseDate": "1999-11-07", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.437, + "voteCount": 189, + "popularity": 6.207 + }, + { + "id": 43396, + "title": "Union Station", + "originalTitle": "Union Station", + "overview": "Police catch a break when suspected kidnappers are spotted on a train heading towards Union Station. Police, train station security and a witness try to piece together the crime and get back the blind daughter of a rich business man.", + "posterPath": "/oF9dN6RO2sgAQj1uANJR8ZOTS4T.jpg", + "backdropPath": "/zmEkTUjYPkAgRNF0ndbMfGJVZkM.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80 + ], + "genres": [ + "Thriller", + "Crime" + ], + "releaseDate": "1950-10-04", + "releaseYear": "1950", + "originalLanguage": "en", + "voteAverage": 6.417, + "voteCount": 48, + "popularity": 6.2067 + }, + { + "id": 604822, + "title": "Vanguard", + "originalTitle": "急先锋", + "overview": "Covert security company Vanguard is the last hope of survival for an accountant after he is targeted by the world's deadliest mercenary organization.", + "posterPath": "/mKvw1Ic9enfFlCPBNJGiejRPMUO.jpg", + "backdropPath": "/4TGqXMsy9qM2nAUq4rYrErjkMXL.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 35, + 80, + 53 + ], + "genres": [ + "Action", + "Adventure", + "Comedy", + "Crime", + "Thriller" + ], + "releaseDate": "2020-01-22", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 6.4, + "voteCount": 579, + "popularity": 6.2063 + }, + { + "id": 200565, + "title": "Tokusou Sentai Dekaranger THE MOVIE: Full Blast Action", + "originalTitle": "特捜戦隊デカレンジャー THE MOVIE フルブラスト・アクション", + "overview": "The Dekarangers must deal with a mysterious undercover agent from another planet while trying to save her world and Earth from one of the universe's toughest Alienizer gangs.", + "posterPath": "/ndQ9z0Odo7QxBphu9SHU1MX8lZK.jpg", + "backdropPath": "/ro3IFKScjT2yTw1CbEYguMDKhfH.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 878, + 80 + ], + "genres": [ + "Action", + "Adventure", + "Science Fiction", + "Crime" + ], + "releaseDate": "2004-09-11", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 14, + "popularity": 6.2063 + }, + { + "id": 27276, + "title": "Gemini", + "originalTitle": "双生児 -GEMINI-", + "overview": "When his mother's untimely death quickly follows his father's, a doctor begins to believe a killer may be targeting him and his amnesiac wife.", + "posterPath": "/aZGZfip534xdCN0EgjHTzWYHNAL.jpg", + "backdropPath": "/bDh2Jk5MxeYaSf9ERWY5meMM6Hj.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 27 + ], + "genres": [ + "Drama", + "Fantasy", + "Horror" + ], + "releaseDate": "1999-09-15", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.472, + "voteCount": 88, + "popularity": 6.2059 + }, + { + "id": 10395, + "title": "Wolf", + "originalTitle": "Wolf", + "overview": "An aging publisher becomes a demon wolf and, with this newfound youthful vigor, fights to keep his job.", + "posterPath": "/5TprU55U2zjAMCwr2jQra3zj1zu.jpg", + "backdropPath": "/dAFKnTzyOBbZyRCAb33F632ctva.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 18, + 10749 + ], + "genres": [ + "Horror", + "Drama", + "Romance" + ], + "releaseDate": "1994-06-17", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.13, + "voteCount": 973, + "popularity": 6.2054 + }, + { + "id": 76338, + "title": "Thor: The Dark World", + "originalTitle": "Thor: The Dark World", + "overview": "Thor fights to restore order across the cosmos… but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.", + "posterPath": "/wp6OxE4poJ4G7c0U2ZIXasTSMR7.jpg", + "backdropPath": "/4zTsF0RtO0av3YX1NaKDqGKPxYF.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Fantasy" + ], + "releaseDate": "2013-10-30", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.511, + "voteCount": 17939, + "popularity": 6.2052 + }, + { + "id": 442160, + "title": "DeKalb Elementary", + "originalTitle": "DeKalb Elementary", + "overview": "Inspired by an actual 911 call placed during a school shooting incident in Atlanta, Georgia. Nominated for an Academy Award for Best Live Action Short Film at the 90th Academy Awards in 2018.", + "posterPath": "/mF9o78gayiNQWNG76qQwo2yfDU8.jpg", + "backdropPath": "/my4qtcW6DEg126QlSD2Wv7EUZMH.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-02-04", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 31, + "popularity": 6.205 + }, + { + "id": 10393, + "title": "The Replacements", + "originalTitle": "The Replacements", + "overview": "Maverick old-guard coach Jimmy McGinty is hired in the wake of a players' strike to help the Washington Sentinels advance to the playoffs. But that impossible dream hinges on whether his replacements can hunker down and do the job. So, McGinty dusts off his secret dossier of ex-players who never got a chance (or screwed up the one they were given) and knits together a bad-dream team of guys who just may give the Sentinels their title shot.", + "posterPath": "/6qerI41HqkdRlio1sG0d5HLZcFN.jpg", + "backdropPath": "/wH4M4wvSR2kQqomE3N9dTStJre8.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-08-11", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.689, + "voteCount": 1035, + "popularity": 6.2046 + }, + { + "id": 135225, + "title": "Purge", + "originalTitle": "Puhdistus", + "overview": "Aliide experienced The Great Terror under Stalin’s regime, and decades after her hometown people were deported to Siberia, she lives alone in an isolated house. One night, she finds a young woman in her yard – Zara has just escaped from the claws of the Russian mafia that held her as a sex slave. Survivors both, Aliide and Zara engage in unearthing each other’s motives and gradually their stories merge into one, revealing the tragedy of a family during the cruelest years in Estonian history.", + "posterPath": "/9SJbQvi1cw2az0NSSQlX4xdaFFL.jpg", + "backdropPath": "/4Frd1Cse2LqEMTtugcSea4Sjr1Y.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2012-09-07", + "releaseYear": "2012", + "originalLanguage": "fi", + "voteAverage": 6.7, + "voteCount": 60, + "popularity": 6.2044 + }, + { + "id": 25172, + "title": "Komodo", + "originalTitle": "Komodo", + "overview": "During the 70's, some Komodo Dragon eggs were dumped on an North Carolina island. Somehow, the baby Komodos survived, and twenty years later they have grown up and taken over the island for themselves. Young Patrick has lost his parents and his dog to the lizards, but didn't see them himself, which has left him traumatized. Now, with his therapist Victoria, they return to confront his fears.", + "posterPath": "/c4kNtYHFB1SbM8OrN206VlXVe2n.jpg", + "backdropPath": "/cwEjYdBqneZGIiHnv4qSF4dfgZU.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 27, + 53, + 878 + ], + "genres": [ + "Adventure", + "Horror", + "Thriller", + "Science Fiction" + ], + "releaseDate": "1999-07-04", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.147, + "voteCount": 101, + "popularity": 6.2044 + }, + { + "id": 18093, + "title": "Northanger Abbey", + "originalTitle": "Northanger Abbey", + "overview": "A young woman's penchant for sensational Gothic novels leads to misunderstandings in the matters of the heart.", + "posterPath": "/tmJ0CVnrMMfTXXWwqvVH5a4CqNA.jpg", + "backdropPath": "/rQkF0by2AmYTOlTd1ynlvnsif2s.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 10770 + ], + "genres": [ + "Romance", + "Drama", + "TV Movie" + ], + "releaseDate": "2007-10-24", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 311, + "popularity": 6.2042 + }, + { + "id": 20389, + "title": "The Escape", + "originalTitle": "Flugten", + "overview": "Danish journalist Rikke Lyngvig is taken hostage in Afghanistan by a terror group. With help from one of the terrorists, the young Nazir, Rikke manages to escape. On her return, she is soon declared the Danish Jessica Lynch and her career is launched into the spotlight. All the while Nazir flees from Afghanistan, heading for Denmark. When he finally seeks out Rikke, she is shocked and torn. Is she willing to help the man who threatened to kill her, and to jeopardize her new-found career? Their tumultuous encounter turns into an ill-fated confrontation with their own demons and a nation driven by a hunger for sensation and political populism.", + "posterPath": "/eDJHOn3b7PXwhES7yA67ab3rj58.jpg", + "backdropPath": "/AvBcV97tDk9PxSD6i6O0S6MhM7W.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2009-01-09", + "releaseYear": "2009", + "originalLanguage": "da", + "voteAverage": 4.2, + "voteCount": 14, + "popularity": 6.2041 + }, + { + "id": 531428, + "title": "Portrait of a Lady on Fire", + "originalTitle": "Portrait de la jeune fille en feu", + "overview": "On an isolated island in Brittany at the end of the eighteenth century, a female painter is obliged to paint a wedding portrait of a young woman.", + "posterPath": "/2LquGwEhbg3soxSCs9VNyh5VJd9.jpg", + "backdropPath": "/foFq1RZWQIgFuCQ0nyYccywjFyX.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749, + 36 + ], + "genres": [ + "Drama", + "Romance", + "History" + ], + "releaseDate": "2019-09-18", + "releaseYear": "2019", + "originalLanguage": "fr", + "voteAverage": 8.106, + "voteCount": 2809, + "popularity": 6.2038 + }, + { + "id": 13383, + "title": "Santa Claus", + "originalTitle": "Santa Claus", + "overview": "Pitch, the mean-spirited devil, is trying to ruin Christmas. Santa Claus teams up with Merlin the Magician and the children of the world in order to save the day!", + "posterPath": "/4wI91ojyHnUaNJzYlaFRuhqkRCh.jpg", + "backdropPath": "/eQQ0JokxpSbEN0QDeeishIYYM5k.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 14, + 35 + ], + "genres": [ + "Family", + "Fantasy", + "Comedy" + ], + "releaseDate": "1959-11-26", + "releaseYear": "1959", + "originalLanguage": "es", + "voteAverage": 6.895, + "voteCount": 200, + "popularity": 6.2034 + }, + { + "id": 503, + "title": "Poseidon", + "originalTitle": "Poseidon", + "overview": "A packed cruise ship traveling the Atlantic is hit and overturned by a massive wave, compelling the passengers to begin a dramatic fight for their lives.", + "posterPath": "/fDPdjGc8SUEDWfTwMaZlCE6NSi3.jpg", + "backdropPath": "/cmif4raVnSublaj6wEswHHPPL65.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 18, + 53 + ], + "genres": [ + "Adventure", + "Action", + "Drama", + "Thriller" + ], + "releaseDate": "2006-05-03", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.867, + "voteCount": 2227, + "popularity": 6.2031 + }, + { + "id": 110253, + "title": "La Bohème", + "originalTitle": "La Bohème", + "overview": "A group of starving artists try to survive in 1830s Paris, including a seamstress and the would-be playwright she loves.", + "posterPath": "/7fLAxBNFb0CUTe5Nd8qsWeMX2Fr.jpg", + "backdropPath": "/l1biocqKm6B2myckxj9wIa0Z3Kd.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "1926-03-13", + "releaseYear": "1926", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 15, + "popularity": 6.203 + }, + { + "id": 15486, + "title": "The Bank", + "originalTitle": "The Bank", + "overview": "The Bank, a world ripe with avarice and corruption, where O'Reilly and his ilk can thrive and honest Aussie battlers lose everything. Enter Jim Doyle a maverick mathematician who has devised a formula to predict the fluctuations of the stock market. When he joins O'Reilly's fold, he must first prove his loyalty to the \"greed is good\" ethos. Which way will he go? What does he have to hide?", + "posterPath": "/xiCMypGhw4vmTXOoPIF2IboiYEZ.jpg", + "backdropPath": "/niW6lzCVnyQtJpZ9Xh7hzntvpeC.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2001-09-06", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 40, + "popularity": 6.2028 + }, + { + "id": 446045, + "title": "Our Patriots", + "originalTitle": "Nos patriotes", + "overview": "After the French defeat of summer 1940, Addi Ba, a young Senegalese rifleman escapes and hides in the Vosges. Aided by some villagers, he gets false documents that allow him to live openly.", + "posterPath": "/5mWMiBFgKmpntYNi8Ru1NwwSzFw.jpg", + "backdropPath": "/zS64ZS1DPB06aOzquTU8Al1yZoZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "2017-06-14", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 5.865, + "voteCount": 48, + "popularity": 6.2025 + }, + { + "id": 86254, + "title": "Crash Landing", + "originalTitle": "Crash Landing", + "overview": "When a hostage situation arises on-board a private plane with the daughter of a billionaire on-board. Major John Masters (Sabato Jr.) teams up with Captain Williams (Michael Paré) to stop the terrorist and land the plane.", + "posterPath": "/vnrnYwiG5nug6BUqBVW5VymhPnU.jpg", + "backdropPath": "/4HcAW2XZ11HtE5lBZFZGbrBB96n.jpg", + "mediaType": "movie", + "genreIds": [ + 28 + ], + "genres": [ + "Action" + ], + "releaseDate": "2006-07-11", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 27, + "popularity": 6.2015 + }, + { + "id": 577922, + "title": "Tenet", + "originalTitle": "Tenet", + "overview": "Armed with only one word - Tenet - and fighting for the survival of the entire world, the Protagonist journeys through a twilight world of international espionage on a mission that will unfold in something beyond real time.", + "posterPath": "/aCIFMriQh8rvhxpN1IWGgvH0Tlg.jpg", + "backdropPath": "/yY76zq9XSuJ4nWyPDuwkdV7Wt0c.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 878 + ], + "genres": [ + "Action", + "Thriller", + "Science Fiction" + ], + "releaseDate": "2020-08-22", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.177, + "voteCount": 10635, + "popularity": 6.2013 + }, + { + "id": 14681, + "title": "Eating Out", + "originalTitle": "Eating Out", + "overview": "After getting dumped by his slutty girlfriend, Caleb falls in love with Gwen. However, thanks to Caleb's roommate, Gwen thinks he's gay and sets him up with her roommate, Marc.", + "posterPath": "/xSbgNViEhXOFpaAZ1nB1AEC4pwg.jpg", + "backdropPath": "/tbVoZcvqiY2x9irGMeKu6j3IpEt.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749 + ], + "genres": [ + "Comedy", + "Romance" + ], + "releaseDate": "2004-02-14", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.644, + "voteCount": 111, + "popularity": 6.2013 + }, + { + "id": 298096, + "title": "The Cleanse", + "originalTitle": "The Cleanse", + "overview": "The story of a heartbroken man who attends a spiritual retreat, only to discover that the course releases more than everyday toxins and traumatic experiences.", + "posterPath": "/wAmCm0pcPFIgzb7FGwfQVVTy2xt.jpg", + "backdropPath": "/dBm0sIsAvlPQfjMlFbnobkVIeaz.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 35, + 14, + 27 + ], + "genres": [ + "Drama", + "Comedy", + "Fantasy", + "Horror" + ], + "releaseDate": "2018-05-04", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 101, + "popularity": 6.2011 + }, + { + "id": 156708, + "title": "Afternoon Delight", + "originalTitle": "Afternoon Delight", + "overview": "Rachel is a quick-witted and lovable stay-at-home mom, frustrated with the responsibilities of her son's preschool, a lacklustre sex life and a career that's gone kaput. One night, intent on spicing up their marriage, she visits an LA strip club with her husband, where she meets McKenna, a stripper she adopts as her live-in nanny.", + "posterPath": "/qlgPBk5xZzHHPfrimBFV46QuktX.jpg", + "backdropPath": "/iHN6h8F3o4T5FEWKafIkHhDnXHa.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-08-30", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 229, + "popularity": 6.2011 + }, + { + "id": 794379, + "title": "Feral State", + "originalTitle": "Feral State", + "overview": "A misfit gang of runaways and orphans are taken in by a dark and charismatic father figure, who together wreak havoc throughout swamps and trailer parks of central Florida.", + "posterPath": "/x6qTBIZdEmAaXCvaQqmBHYWe1lQ.jpg", + "backdropPath": "/cK7H0HPiu6FDS2zyOZwboDsqoXh.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2021-05-28", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 3.9, + "voteCount": 21, + "popularity": 6.2006 + }, + { + "id": 18056, + "title": "The Take", + "originalTitle": "The Take", + "overview": "After he's shot during a heist in East L.A., an armored truck driver wrestles with rehabilitation and tracking down the man who committed the crime.", + "posterPath": "/kbJ8bjRr0U2wIhomhllEGUQ9071.jpg", + "backdropPath": "/v62fLT86ljdYJh0bLGuV3Wq6ez8.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 18, + 9648 + ], + "genres": [ + "Action", + "Thriller", + "Drama", + "Mystery" + ], + "releaseDate": "2008-08-22", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.362, + "voteCount": 47, + "popularity": 6.2005 + }, + { + "id": 40088, + "title": "Curfew", + "originalTitle": "Curfew", + "overview": "Two brothers whose grisly killing spree has landed them on death row plot a daring escape, breaking free from prison with vengeance in mind, and setting targets in the form of the key witnesses against them.", + "posterPath": "/mjcjk2UlX0jfMWICHfaL0SMd5xb.jpg", + "backdropPath": "/oCSI9vnprVnn1IXDllDUmtO7Lfp.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "1989-04-25", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 4.865, + "voteCount": 26, + "popularity": 6.1999 + }, + { + "id": 210964, + "title": "Technological Threat", + "originalTitle": "Technological Threat", + "overview": "Human fear of technology is portrayed in this very amusing futuristic parody. Preserved by the Academy Film Archive in 2013.", + "posterPath": "/iq4u9ZCSv6LzCfTaQ3XyxJFIq33.jpg", + "backdropPath": "/6M8OcRqNWnnd5Lcia5Ixl955ttL.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 878, + 35 + ], + "genres": [ + "Animation", + "Science Fiction", + "Comedy" + ], + "releaseDate": "1988-05-15", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 19, + "popularity": 6.1994 + }, + { + "id": 167581, + "title": "Free Fall", + "originalTitle": "Freier Fall", + "overview": "A promising career with the police, a baby on the way... Marc's life seems to be right on track. Then he meets fellow policeman Kay and during their regular jogs Marc experiences a never-before-felt sense of ease and effortlessness – and what it means to fall in love with another man.", + "posterPath": "/77n2MlfdzgIlktWvvVS9Zvdx00q.jpg", + "backdropPath": "/aCNfKTJstRM5LjbLRy2s3cOnNkE.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2013-05-27", + "releaseYear": "2013", + "originalLanguage": "de", + "voteAverage": 7.669, + "voteCount": 821, + "popularity": 6.1993 + }, + { + "id": 51108, + "title": "Decalogue II", + "originalTitle": "Dekalog, dwa", + "overview": "Dorota Geller, a married woman, faces a dilemma involving her sick husband's prognosis. Her husband's doctor, who believes in God, sweared about it in vain.", + "posterPath": "/jil1lzNPa6fQWh2JG7Khc7MLjKt.jpg", + "backdropPath": "/oEx6uth2EeXCvNeUDy1WLtZvYpR.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770 + ], + "genres": [ + "Drama", + "TV Movie" + ], + "releaseDate": "1989-05-16", + "releaseYear": "1989", + "originalLanguage": "pl", + "voteAverage": 7.277, + "voteCount": 186, + "popularity": 6.1989 + }, + { + "id": 178158, + "title": "Clash", + "originalTitle": "Clash", + "overview": "A woman revisits long-suppressed nightmares as she is being chased through an abandoned warehouse by a strange man.", + "posterPath": "/1MtRi5gHcJISf1mVV7FgfTmxK0l.jpg", + "backdropPath": "/833SiGfNL88wmOcNIHOkWtbObep.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "1984-02-08", + "releaseYear": "1984", + "originalLanguage": "fr", + "voteAverage": 3.7, + "voteCount": 12, + "popularity": 6.1985 + }, + { + "id": 284305, + "title": "Shrew's Nest", + "originalTitle": "Musarañas", + "overview": "Spain, 1950s. Montse's agoraphobia keeps her locked in a sinister apartment in Madrid and her only link to reality is the little sister she lost her youth raising. But one day, a reckless young neighbor, Carlos, falls down the stairwell and drags himself to their door. Someone has entered the shrew's nest... perhaps he'll never leave.", + "posterPath": "/7rgorbW4vCzZZHW5sEEczSjNqza.jpg", + "backdropPath": "/ivPVtfSF4FVy5w349eTMsM3RPk7.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 18 + ], + "genres": [ + "Horror", + "Thriller", + "Drama" + ], + "releaseDate": "2014-09-21", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 6.9, + "voteCount": 315, + "popularity": 6.1984 + }, + { + "id": 121128, + "title": "Paris Frills", + "originalTitle": "Falbalas", + "overview": "Philippe Clarence, a famous Parisian dressmaker, seduces his friend's fiancee. But, for the first time in his life, this is for real. The film is also a sharp picture of the fashion world.", + "posterPath": "/k37aJHae0WIkoA1KgDUgGFjzxnW.jpg", + "backdropPath": "/h2hfgIKriT3kESazwhqoGn0wbWZ.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1945-06-20", + "releaseYear": "1945", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 30, + "popularity": 6.1983 + }, + { + "id": 416166, + "title": "The Institute", + "originalTitle": "The Institute", + "overview": "In 19th century Baltimore, Isabel Porter, a girl stricken with grief from her parents' untimely death, voluntarily checks herself into the Rosewood Institute. Subjected to bizarre and increasingly violent pseudo-scientific experiments in personality modification, brainwashing and mind control, she must escape the clutches of the Rosewood and exact her revenge, or else be forever lost.", + "posterPath": "/6Gg6p1nTwklozFWnPr0YvSAekan.jpg", + "backdropPath": "/hQkPNlwC86YfItSkzxt2qkOV5tv.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648, + 27 + ], + "genres": [ + "Thriller", + "Mystery", + "Horror" + ], + "releaseDate": "2017-03-03", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.311, + "voteCount": 115, + "popularity": 6.1982 + }, + { + "id": 483737, + "title": "Totem", + "originalTitle": "Totem", + "overview": "A teen must resort to extreme measures to protect her family from a supernatural entity.", + "posterPath": "/2eMZjYxEGXS6xj4hRtxBmaPPi3z.jpg", + "backdropPath": "/r7xjLCmj8owAVOUP2fDYwL7eyM.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2017-10-31", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 185, + "popularity": 6.1981 + }, + { + "id": 27122, + "title": "The Attic", + "originalTitle": "The Attic", + "overview": "Emma has a strong aversion towards her family’s new house, especially the attic. After moving in, she becomes miserable and reclusive. The rest of her family also seems unhappy and unsettled. The situation escalates one day when Emma is in the attic alone. All of a sudden someone who looks exactly like Emma attacks her viciously.", + "posterPath": "/lFUtefvTdSTlxaEQBcKh0AQ2Lwt.jpg", + "backdropPath": "/euA1SmMrHbqaiPjYAWwHvVZc2gK.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2006-04-15", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 3.824, + "voteCount": 54, + "popularity": 6.1975 + }, + { + "id": 29071, + "title": "The Undead", + "originalTitle": "The Undead", + "overview": "Two psychics place a prostitute under hypnosis in order to learn about her past-life experiences. When they unwittingly send her back in time, she finds herself in the Middle Ages, suspected of being a witch and on the verge of being executed.", + "posterPath": "/osMONnDvj0QLSOR0pQR3HwVCVSG.jpg", + "backdropPath": "/x8MKgch9AcoJ7eibjdl65ATTbVI.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 14 + ], + "genres": [ + "Horror", + "Fantasy" + ], + "releaseDate": "1957-03-01", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 4.364, + "voteCount": 44, + "popularity": 6.1968 + }, + { + "id": 20982, + "title": "Naruto Shippuden the Movie", + "originalTitle": "劇場版 NARUTO -ナルト- 疾風伝", + "overview": "Demons that once almost destroyed the world, are revived by someone. To prevent the world from being destroyed, the demon has to be sealed and the only one who can do it is the shrine maiden Shion from the country of demons, who has two powers; one is sealing demons and the other is predicting the deaths of humans. This time Naruto's mission is to guard Shion, but she predicts Naruto's death. The only way to escape it, is to get away from Shion, which would leave her unguarded, then the demon, whose only goal is to kill Shion will do so, thus meaning the end of the world. Naruto decides to challenge this \"prediction of death.\"", + "posterPath": "/vDkct38sSFSWJIATlfJw0l3QOIR.jpg", + "backdropPath": "/p6Yh10E46lXpj45XvG9Mwc4HZNi.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 28, + 14 + ], + "genres": [ + "Animation", + "Action", + "Fantasy" + ], + "releaseDate": "2007-08-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.404, + "voteCount": 1046, + "popularity": 6.1964 + }, + { + "id": 324538, + "title": "Damascus Cover", + "originalTitle": "Damascus Cover", + "overview": "A spy navigates the precarious terrain of love and survival during an undercover mission in Syria.", + "posterPath": "/fstGX2lMtdPvDbrfg58MqB7kNzP.jpg", + "backdropPath": "/7H4A5vZdVAN8fhwvb7G0Iren4rq.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 9648 + ], + "genres": [ + "Thriller", + "Mystery" + ], + "releaseDate": "2017-10-23", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.553, + "voteCount": 75, + "popularity": 6.1959 + }, + { + "id": 125509, + "title": "Wrong Turn 5: Bloodlines", + "originalTitle": "Wrong Turn 5: Bloodlines", + "overview": "A small West Virginia town is hosting the legendary Mountain Man Festival on Halloween, where throngs of costumed party goers gather for a wild night of music and mischief. But an inbred family of hillbilly cannibals kill the fun when they trick and treat themselves to a group of visiting college students.", + "posterPath": "/8fABep8FSRpeo8Ea4j3rfnoVgkg.jpg", + "backdropPath": "/3GTGFqZU2pXWg5fZPxDLNDdao28.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2012-10-18", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 1005, + "popularity": 6.1955 + }, + { + "id": 11326, + "title": "Tommy", + "originalTitle": "Tommy", + "overview": "After a series of traumatic childhood events, a psychosomatically deaf, dumb and blind boy becomes a master pinball player and the object of a religious cult.", + "posterPath": "/pAImVnqBJwoFAKrcpAe17JjLGUs.jpg", + "backdropPath": "/5XSitXno6yxYkNppwP5gOhC7SfA.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10402 + ], + "genres": [ + "Drama", + "Music" + ], + "releaseDate": "1975-03-19", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 350, + "popularity": 6.1951 + }, + { + "id": 10991, + "title": "Pokémon 3: The Movie", + "originalTitle": "劇場版ポケットモンスター 結晶塔の帝王 ENTEI", + "overview": "When the sadness of her father's disappearance gets to Molly Hale, she unknowingly uses the Unown to create her own dream world along with Entei, who she believes to be her father. When Entei kidnaps Ash's mother, Ash — alongside Misty and Brock — invade the mansion looking for his mom and trying to stop the mysteries of Molly's Dream World and Entei!", + "posterPath": "/rf1ptotD12w8NYzaKXgrjKUl4d5.jpg", + "backdropPath": "/dLGQo5Xq6H18vPx00Czot8VHi3K.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 14, + 16, + 28, + 10751 + ], + "genres": [ + "Adventure", + "Fantasy", + "Animation", + "Action", + "Family" + ], + "releaseDate": "2000-07-08", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 661, + "popularity": 6.1936 + }, + { + "id": 1249532, + "title": "Rippy", + "originalTitle": "Rippy", + "overview": "Young police officer Maddy is determined to live up to her deceased father's legacy. Her courage is put to the test when locals are found brutally ripped to shreds by the zombie kangaroo. As the undead beast leaves a trail of carnage, Maddy, with the help of her eccentric Uncle Schmitty and resilient Aunt Donna, must embark on a high-stakes battle to save the town.", + "posterPath": "/cZ5U4Ae74g29E02JR5oR98RQhiR.jpg", + "backdropPath": "/tPfXJcXxQ3MHyvhzNsDgsXoyPEM.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2024-10-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 4.841, + "voteCount": 44, + "popularity": 6.1926 + }, + { + "id": 527776, + "title": "Overcomer", + "originalTitle": "Overcomer", + "overview": "After reluctantly agreeing to coach cross-country, high school basketball Coach John Harrison helps the least likely runner attempt the impossible in the biggest race of the year.", + "posterPath": "/rVR3uN1yPRqYBBtNFSrEKCpRhaK.jpg", + "backdropPath": "/704pWRU1CihHgIIKRSAZD7juXQy.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-08-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 296, + "popularity": 6.1922 + }, + { + "id": 404114, + "title": "Mobile Suit Gundam Thunderbolt: December Sky", + "originalTitle": "機動戦士ガンダム サンダーボルト DECEMBER SKY", + "overview": "During the One Year War of U.C. 0079, the Earth Federation and Principality of Zeon engage in a fierce battle at the \"Thunderbolt Sector\", a shoal zone in the former Colony Side 4 \"Moore\". After successfully infiltrating Zeon's sniper field, ace Federation pilot and jazz enthusiast Io Fleming is given control of the latest Gundam prototype.", + "posterPath": "/9lkEs98koT3et0Csyb996apllOm.jpg", + "backdropPath": "/f6NlnBzQH7hoMp0BPpgNErd9iTj.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 16, + 18, + 878, + 10752 + ], + "genres": [ + "Action", + "Animation", + "Drama", + "Science Fiction", + "War" + ], + "releaseDate": "2016-06-25", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 24, + "popularity": 6.1914 + }, + { + "id": 796185, + "title": "The Three Musketeers: D'Artagnan", + "originalTitle": "Les Trois Mousquetaires : D'Artagnan", + "overview": "D'Artagnan, a spirited young Gascon, is left for dead after trying to save a noblewoman from being kidnapped. Once in Paris, he tries by all means to find his attackers, unaware that his quest will lead him to the very heart of a war where the future of France is at stake. Aided by King's Musketeers Athos, Porthos and Aramis, he faces the machinations of villainous Cardinal Richelieu and Milady de Winter, while falling in love with Constance, the Queen's confidante.", + "posterPath": "/hfExJPcbBtDeFDEb7I1By72Drlr.jpg", + "backdropPath": "/lx89oBeJIastndjbQxznnfSYpmR.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 18, + 36 + ], + "genres": [ + "Adventure", + "Action", + "Drama", + "History" + ], + "releaseDate": "2023-04-05", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.933, + "voteCount": 1330, + "popularity": 6.1913 + }, + { + "id": 51249, + "title": "Alabama Moon", + "originalTitle": "Alabama Moon", + "overview": "After the unexpected death of his survivalist father, an eleven year old boy raised in the Alabama wilderness must learn how to make a home in the modern world.", + "posterPath": "/zTExJLGaHxGnEtbo2n0vCgvxx7k.jpg", + "backdropPath": "/e5CdXZDGKdPITqmxMfOX69IpjXQ.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 18, + 10751 + ], + "genres": [ + "Adventure", + "Drama", + "Family" + ], + "releaseDate": "2009-10-25", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.424, + "voteCount": 66, + "popularity": 6.191 + }, + { + "id": 64239, + "title": "Kamikaze", + "originalTitle": "Kamikaze", + "overview": "A disgruntled scientist is fired from his job; slipping into madness, he invents a machine which harnesses the airwaves and can shoot people through the TV screen.", + "posterPath": "/dFlp634hsv9eCOItzhNdhh4QurQ.jpg", + "backdropPath": "/xoScCxoxwwlmZ4D90jsS56VRNE1.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878 + ], + "genres": [ + "Thriller", + "Science Fiction" + ], + "releaseDate": "1986-12-10", + "releaseYear": "1986", + "originalLanguage": "fr", + "voteAverage": 6.2, + "voteCount": 23, + "popularity": 6.1905 + }, + { + "id": 4375, + "title": "Triple Cross", + "originalTitle": "Triple Cross", + "overview": "Safecracker Eddie Chapman is languishing in prison on the island of Jersey when the Nazis arrive. An adept manipulator of situations, Chapman convinces the Germans to use him to spy on the British. And when the would-be traitor arrives home, he convinces the English to use him as a double agent -- in exchange for a full pardon.", + "posterPath": "/AoGvqzc66h533Ncxjx3pSjy7Xmf.jpg", + "backdropPath": "/F7Ji8YjVqQV5mJrtaPr9pe6uix.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 10752, + 28 + ], + "genres": [ + "Adventure", + "War", + "Action" + ], + "releaseDate": "1966-12-09", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 77, + "popularity": 6.1902 + }, + { + "id": 39488, + "title": "Giant", + "originalTitle": "Gigante", + "overview": "A chronicle of a supermarket security guard's obsession with a late-shift janitor.", + "posterPath": "/bAMkRRIApE2APQMttwMVzi3XFiK.jpg", + "backdropPath": "/sWLv5FHjAEOdPdSg7PWPjcIybWd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2009-03-25", + "releaseYear": "2009", + "originalLanguage": "es", + "voteAverage": 6.5, + "voteCount": 23, + "popularity": 6.1896 + }, + { + "id": 32033, + "title": "Pulse", + "originalTitle": "Pulse", + "overview": "An intelligent pulse of electricity moves from house to house, terrorizing occupants through their own appliances. Having already destroyed one household in a quiet neighborhood, the pulse finds itself in the home of a boy and his divorced father.", + "posterPath": "/esPbTOwiuKzNI8o20fxfRCdjK9y.jpg", + "backdropPath": "/gkmNKbuFa5rB4AfdHy0pVKiiw0K.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 878 + ], + "genres": [ + "Horror", + "Science Fiction" + ], + "releaseDate": "1988-03-04", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.164, + "voteCount": 76, + "popularity": 6.1895 + }, + { + "id": 27135, + "title": "Tell-Tale", + "originalTitle": "Tell-Tale", + "overview": "A man's recently transplanted heart leads him on a frantic search to find the donor's killer before a similar fate befalls him.", + "posterPath": "/fGixr7tkt6Uqj0oRDBqJ6I3RH5E.jpg", + "backdropPath": "/tAesS5XvdKnew1tGUYYtE7VIkgm.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 9648, + 53 + ], + "genres": [ + "Drama", + "Horror", + "Mystery", + "Thriller" + ], + "releaseDate": "2009-04-24", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.354, + "voteCount": 144, + "popularity": 6.1888 + }, + { + "id": 74727, + "title": "Long Pigs", + "originalTitle": "Long Pigs", + "overview": "Two desperate filmmakers began a documentary about a cannibalistic serial killer. What follows is their actual footage.", + "posterPath": "/nNQoC7Y9ZGfVflXu9NJz0U7r1Ci.jpg", + "backdropPath": null, + "mediaType": "movie", + "genreIds": [ + 80, + 27 + ], + "genres": [ + "Crime", + "Horror" + ], + "releaseDate": "2007-10-06", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 25, + "popularity": 6.1887 + }, + { + "id": 594345, + "title": "42nd Street", + "originalTitle": "42nd Street", + "overview": "The story of Peggy Sawyer, a talented young performer with stars in her eyes who gets her big break on Broadway.", + "posterPath": "/jbL0VCAWaiShW1Zuf4OJsSth38E.jpg", + "backdropPath": "/sE9wYyxIuQOoevzH0G5GiIYheiA.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-05-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 10, + "popularity": 6.1883 + }, + { + "id": 786573, + "title": "HellKat", + "originalTitle": "HellKat", + "overview": "A fallen MMA fighter must win a netherworld no-holds-barred death tournament against man, beast and demon to save her soul.", + "posterPath": "/sNUQVeU78lVomwC7bR8SyCRnjdg.jpg", + "backdropPath": "/zqwmvcLjif1xMWiUEFMiPtojy8i.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53, + 27 + ], + "genres": [ + "Action", + "Thriller", + "Horror" + ], + "releaseDate": "2021-02-02", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 26, + "popularity": 6.188 + }, + { + "id": 1893, + "title": "Star Wars: Episode I - The Phantom Menace", + "originalTitle": "Star Wars: Episode I - The Phantom Menace", + "overview": "Anakin Skywalker, a young slave strong with the Force, is discovered on Tatooine. Meanwhile, the evil Sith have returned, enacting their plot for revenge against the Jedi.", + "posterPath": "/6wkfovpn7Eq8dYNKaG5PY3q2oq6.jpg", + "backdropPath": "/dhkztgCspLkl1bKTdX9lR81PAPG.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 878 + ], + "genres": [ + "Adventure", + "Action", + "Science Fiction" + ], + "releaseDate": "1999-05-19", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 15378, + "popularity": 6.188 + }, + { + "id": 1129610, + "title": "BOCCHI THE ROCK! Recap Part 1", + "originalTitle": "劇場総集編ぼっち・ざ・ろっく!Re:", + "overview": "Revisit events from Bocchi joining Kessoku Band to their first successful gig.", + "posterPath": "/gv5swmEUyrrTBuhNdb8rTCmsimm.jpg", + "backdropPath": "/4px3C1MnKtshitubBXBJDS4Fo94.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 35, + 10402 + ], + "genres": [ + "Animation", + "Comedy", + "Music" + ], + "releaseDate": "2024-06-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 27, + "popularity": 6.1878 + }, + { + "id": 83186, + "title": "Wrong", + "originalTitle": "Wrong", + "overview": "Dolph Springer wakes up one morning to realize he has lost the love of his life, his dog, Paul. During his quest to get Paul (and his life) back, Dolph radically changes the lives of others -- risking his sanity all the while.", + "posterPath": "/k6IvmVvfsoIL8HNVusb4oAQr6Rk.jpg", + "backdropPath": "/8hxsb8Aicvisg5DmnGYyIBvTh8r.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 9648 + ], + "genres": [ + "Comedy", + "Mystery" + ], + "releaseDate": "2012-09-05", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.281, + "voteCount": 370, + "popularity": 6.1877 + }, + { + "id": 28296, + "title": "Queen Bee", + "originalTitle": "Queen Bee", + "overview": "A devilish Southern woman, married to a man who despises her, manages to manipulate those around her under the guise of being kind. But, when her sister-in-law is engaged to be married to the woman's former lover and her husband starts up an affair with her cousin, visting from New York, things start to go awry and she sets a plan to destroy it all.", + "posterPath": "/nQpJkS9RRqy3GdGScf7u2N4IUt1.jpg", + "backdropPath": "/x7ZaqemK7b8BcH2SldsbAiqKIkN.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1955-11-07", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 36, + "popularity": 6.1873 + }, + { + "id": 164, + "title": "Breakfast at Tiffany's", + "originalTitle": "Breakfast at Tiffany's", + "overview": "Holly Golightly is an eccentric New York City playgirl determined to marry a Brazilian millionaire. But when young writer Paul Varjak moves into her apartment building, her past threatens to get in their way.", + "posterPath": "/79xm4gXw4l7A5D0XukUOJRocFYQ.jpg", + "backdropPath": "/jXZ2tyJl44yKvh22I6ooQwU5rFM.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 10749, + 18 + ], + "genres": [ + "Comedy", + "Romance", + "Drama" + ], + "releaseDate": "1961-10-06", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 7.63, + "voteCount": 4370, + "popularity": 6.1872 + }, + { + "id": 984249, + "title": "Ruthless", + "originalTitle": "Ruthless", + "overview": "A high school coach, whose teenage daughter was murdered, takes matters into his own hands by going after the men who kidnap his students for their sex trafficking operation.", + "posterPath": "/4ndp1pnHWRuiZLNpFJvO4Kh6Tav.jpg", + "backdropPath": "/kSdIVZu7Cv60o9hTbKBzcTrbMX8.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2023-12-14", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.472, + "voteCount": 125, + "popularity": 6.187 + }, + { + "id": 1710, + "title": "Copycat", + "originalTitle": "Copycat", + "overview": "An agoraphobic psychologist and a female detective must work together to take down a serial killer who copies serial killers from the past.", + "posterPath": "/oMgwJb016znNZcpDR20eXxZoW8A.jpg", + "backdropPath": "/f0wTYitK1lELuGygXslG7SQpY0E.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 80, + 9648 + ], + "genres": [ + "Thriller", + "Crime", + "Mystery" + ], + "releaseDate": "1995-10-27", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.472, + "voteCount": 1178, + "popularity": 6.187 + }, + { + "id": 9975, + "title": "Curious George", + "originalTitle": "Curious George", + "overview": "When The Man in the Yellow Hat befriends Curious George in the jungle, they set off on a non-stop, fun-filled journey through the wonders of the big city toward the warmth of true friendship.", + "posterPath": "/aDhpo5lqDK0zEGEENdGdABY3Xzq.jpg", + "backdropPath": "/3YqFugvX6pQA3FU17maO0DgAo7.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 16, + 35, + 10751 + ], + "genres": [ + "Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2006-02-10", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.517, + "voteCount": 541, + "popularity": 6.1866 + }, + { + "id": 619803, + "title": "The Roundup", + "originalTitle": "범죄도시 2", + "overview": "The 'Beast Cop' Ma Seok-do heads to a foreign country to extradite a suspect, but soon after his arrival, he discovers additional murder cases and hears about a vicious killer who has been committing crimes against tourists for several years.", + "posterPath": "/aTogcymFfYXYb2sx950ntIpgOJe.jpg", + "backdropPath": "/eGyvNUw7Kess2QfgtqZjAHC7DqW.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53, + 12 + ], + "genres": [ + "Action", + "Crime", + "Thriller", + "Adventure" + ], + "releaseDate": "2022-05-18", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 7.3, + "voteCount": 387, + "popularity": 6.1865 + }, + { + "id": 533444, + "title": "Waves", + "originalTitle": "Waves", + "overview": "A controlling father’s attempts to ensure that his two children succeed in high school backfire after his son experiences a career-ending sports injury. Their familial bonds are eventually placed under severe strain by an unexpected tragedy.", + "posterPath": "/3xbjL0z8iH8e8L3USyeKGQrBfuZ.jpg", + "backdropPath": "/vT7xQpsw2J5Yz8G2FjxGDr7rYss.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18 + ], + "genres": [ + "Romance", + "Drama" + ], + "releaseDate": "2019-11-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.359, + "voteCount": 774, + "popularity": 6.1865 + }, + { + "id": 11005, + "title": "Awakenings", + "originalTitle": "Awakenings", + "overview": "Dr. Malcolm Sayer, a shy research physician, uses an experimental drug to \"awaken\" the catatonic victims of a rare disease. Leonard is the first patient to receive the controversial treatment. His awakening, filled with awe and enthusiasm, proves a rebirth for Sayer too, as the exuberant patient reveals life's simple but unutterably sweet pleasures to the introverted doctor.", + "posterPath": "/9gztZXuHLG6AJ0fgqGd7Q43cWRI.jpg", + "backdropPath": "/tRKTlMoTsAhYpuq19V8Wk3RFY4O.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1990-12-04", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.774, + "voteCount": 2731, + "popularity": 6.1865 + }, + { + "id": 948, + "title": "Halloween", + "originalTitle": "Halloween", + "overview": "Fifteen years after murdering his sister on Halloween Night 1963, Michael Myers escapes from a mental hospital and returns to the small town of Haddonfield, Illinois to kill again.", + "posterPath": "/wijlZ3HaYMvlDTPqJoTCWKFkCPU.jpg", + "backdropPath": "/sHI9xlFRWCJ38AIIfOqnGjuEvXz.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "1978-10-24", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 5986, + "popularity": 6.1865 + }, + { + "id": 256467, + "title": "Honour", + "originalTitle": "Honour", + "overview": "A story centered on a young woman targeted by her family for an \"honour killing\" and the bounty hunter who takes the job.", + "posterPath": "/px2l1oU3lzT666eYacgIZeWPlGg.jpg", + "backdropPath": "/zF1jhvPIhZp7lg8f5uOkvVr53pb.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2014-04-04", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 25, + "popularity": 6.1864 + }, + { + "id": 113747, + "title": "Shame", + "originalTitle": "Shame", + "overview": "Hardened prosecutor Asta Cadell leaves home for a road trip down the coast of Australia. But Cadell's relaxing ride turns tense when her motorcycle malfunctions and she makes a pit stop in a remote town. Cadell meets teen Elizabeth Curtis, who confides that she has just been raped, and Cadell helps the young woman report the crime to the authorities. When police corruption stands in the way of justice, she takes matters into her own hands.", + "posterPath": "/sRdRmO4hLiQOcW3cmyrcLG8hzPG.jpg", + "backdropPath": "/o0RT7GdAc4Y70YfJ6iVaRUCZAOU.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1988-02-26", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 26, + "popularity": 6.186 + }, + { + "id": 104874, + "title": "The Tempest", + "originalTitle": "The Tempest", + "overview": "Prospero, a potent magician, lives on a desolate isle with his virginal daughter, Miranda. He's in exile, banished from his duchy by his usurping brother and the King of Naples. Providence brings these enemies near; aided by his vassal the spirit Ariel, Prospero conjures a tempest to wreck the Italian ship. The king's son, thinking all others lost, becomes Prospero's prisoner, falling in love with Miranda and she with him. Prospero's brother and the king wander the island, as do a drunken cook and sailor, who conspire with Caliban, Prospero's beastly slave, to murder Prospero. Prospero wants reason to triumph, Ariel wants his freedom, Miranda a husband; the sailors want to dance.", + "posterPath": "/cX2q8UXpoI5NeYuBVZPNzRHy7Fr.jpg", + "backdropPath": "/wn1nupMNhltqQ541uYOslaJkqjY.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14 + ], + "genres": [ + "Drama", + "Fantasy" + ], + "releaseDate": "1979-09-13", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 24, + "popularity": 6.1855 + }, + { + "id": 872989, + "title": "Charcoal", + "originalTitle": "Carvão", + "overview": "In the Brazilian countryside, a family straining to care for their bedridden patriarch have their lives changed when a shady nurse offers a diabolical deal: put their elder to rest and host an Argentinian drug kingpin who urgently needs a place to hide.", + "posterPath": "/sJY4pANqMX34ybyg4CtoRReThJu.jpg", + "backdropPath": "/mtVA2BWFZZXCUDXxU7alfd6665M.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 80, + 53 + ], + "genres": [ + "Drama", + "Crime", + "Thriller" + ], + "releaseDate": "2022-11-03", + "releaseYear": "2022", + "originalLanguage": "pt", + "voteAverage": 6.5, + "voteCount": 32, + "popularity": 6.1854 + }, + { + "id": 1378771, + "title": "Trapped Inn", + "originalTitle": "Trapped Inn", + "overview": "An American cycling team trains at a remote European lodge. Teammates start dying mysteriously. Rivals Connor and Greg battle to survive and uncover the cause behind the team's demise.", + "posterPath": "/dKKyRvWoDAJuSocOXtE0cJ2JYfN.jpg", + "backdropPath": "/AmVjCmsRPBP4KQ3nF5DUizBfYHT.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 53, + 27 + ], + "genres": [ + "Science Fiction", + "Thriller", + "Horror" + ], + "releaseDate": "2024-11-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 3.143, + "voteCount": 14, + "popularity": 6.185 + }, + { + "id": 30815, + "title": "Mortal Thoughts", + "originalTitle": "Mortal Thoughts", + "overview": "A loathsome man ends up dead, but it's not clear who's to blame. If ever a person got what he deserved, it's James Urbanksi, an abusive drunk who steals from his wife, Joyce, and promises her close friend Cynthia Kellogg that she'll be the next target of his rage. At a group outing, James bleeds to death after someone cuts his throat. But because he's such a terrible human being, police aren't sure which of his acquaintances decided to kill him.", + "posterPath": "/3Py7bFBsRjMVdOI5IlNSz6aa385.jpg", + "backdropPath": "/via3WWcbprE8uuOwsJtNfAVdiRa.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53 + ], + "genres": [ + "Mystery", + "Thriller" + ], + "releaseDate": "1991-04-19", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.648, + "voteCount": 196, + "popularity": 6.185 + }, + { + "id": 5471, + "title": "Beowulf & Grendel", + "originalTitle": "Beowulf & Grendel", + "overview": "The blood-soaked tale of a Norse warrior's battle against the great and murderous troll, Grendel. Heads will roll. Out of allegiance to the King Hrothgar, the much respected Lord of the Danes, Beowulf leads a troop of warriors across the sea to rid a village of the marauding monster.", + "posterPath": "/49s4KMmF2YBJhHYTqwdvikpTztt.jpg", + "backdropPath": "/jSaZ02GsGuFIGo0B2kh3FA7hQ0Y.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 12, + 18, + 14 + ], + "genres": [ + "Action", + "Adventure", + "Drama", + "Fantasy" + ], + "releaseDate": "2005-09-14", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 241, + "popularity": 6.185 + }, + { + "id": 375846, + "title": "Bad Sister", + "originalTitle": "Bad Sister", + "overview": "As a top student at St. Adeline's Catholic Boarding School, Zoe senses that something is not quite right about the school's new nun-- a sense proven to be true when it is revealed the \"good' nun is an imposter with a fatal attraction to Zoe's brother.", + "posterPath": "/jKrIlgfJPIWNeowaOZPBZuOPmq0.jpg", + "backdropPath": "/8Sh04np6IA2shSycI9uy5xrjC6I.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 10770 + ], + "genres": [ + "Thriller", + "TV Movie" + ], + "releaseDate": "2015-08-24", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 242, + "popularity": 6.1849 + }, + { + "id": 14881, + "title": "Joe Kidd", + "originalTitle": "Joe Kidd", + "overview": "A band of Mexicans find their U. S. land claims denied and all the records destroyed in a courthouse fire. Their leader, Louis Chama, encourages them to use force to regain their land. A wealthy landowner wanting the same decides to hire a gang of killers with Joe Kidd to track Chama.", + "posterPath": "/gwVL6a6ZPijqM5hB4n2Ztg1akWY.jpg", + "backdropPath": "/7MvdpIsf9soZzSkUiLISS0woH4o.jpg", + "mediaType": "movie", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1972-07-19", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 387, + "popularity": 6.1848 + }, + { + "id": 719221, + "title": "Tarot", + "originalTitle": "Tarot", + "overview": "When a group of friends recklessly violate the sacred rule of Tarot readings, they unknowingly unleash an unspeakable evil trapped within the cursed cards. One by one, they come face to face with fate and end up in a race against death.", + "posterPath": "/gAEUXC37vl1SnM7PXsHTF23I2vq.jpg", + "backdropPath": "/otfoeC96neoOdA4HqsX06OWuzE9.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2024-05-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.412, + "voteCount": 1304, + "popularity": 6.1846 + }, + { + "id": 43749, + "title": "Wolf Girl", + "originalTitle": "Wolf Girl", + "overview": "Tara Talbot is afflicted with the rare genetic condition hypertrichosis: she is covered head to toe in hair. She lives her life in Harley Dune's Travelling Freak Show, on display as the 'Terrifying Wolf Girl', but underneath she is just a teenage girl who longs to be normal.", + "posterPath": "/tpfV3n3UIXPz0sw3IUgX6dHD9q7.jpg", + "backdropPath": "/4pvrACQMFjLcMW6agd4LnH0j4tH.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 14, + 27 + ], + "genres": [ + "Drama", + "Fantasy", + "Horror" + ], + "releaseDate": "2001-09-21", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.103, + "voteCount": 34, + "popularity": 6.1845 + }, + { + "id": 965489, + "title": "Kushi", + "originalTitle": "ఖుషి", + "overview": "Worlds and families collide when the son of a prominent atheist falls head over heels for the daughter of his father’s nemesis, a revered Hindu leader.", + "posterPath": "/tiEnkpOarH20cCSikeLiWlvY1We.jpg", + "backdropPath": "/iPTB7IFqxC1qG1rU5hQDxbzLQAr.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 18 + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ], + "releaseDate": "2023-08-31", + "releaseYear": "2023", + "originalLanguage": "te", + "voteAverage": 5.1, + "voteCount": 20, + "popularity": 6.1843 + }, + { + "id": 14220, + "title": "Strange Wilderness", + "originalTitle": "Strange Wilderness", + "overview": "With the ratings dropping for a wilderness-themed TV show, two animal fans go to the Andes in search of Bigfoot.", + "posterPath": "/6tamhOw4dSgn4lonjZyhEhIt9Wm.jpg", + "backdropPath": "/k7z6Yig0XHge7BdcKLcfGPwjdrF.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 12 + ], + "genres": [ + "Comedy", + "Adventure" + ], + "releaseDate": "2008-02-01", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 4.887, + "voteCount": 239, + "popularity": 6.1835 + }, + { + "id": 1156202, + "title": "Stolen", + "originalTitle": "Stolen", + "overview": "The five-month-old baby of impoverished tribal woman Jhumpa Mahato is stolen. Two brothers, Gautam and Raman, who witness the kidnapping, try to help her and become embroiled in the complexities of the investigation.", + "posterPath": "/xR5Endhjm4soY6fPgXY0jrpDZvL.jpg", + "backdropPath": "/rJsHZLgwJDrhaXIePEF9a8KkaA2.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2023-08-02", + "releaseYear": "2023", + "originalLanguage": "hi", + "voteAverage": 6.881, + "voteCount": 21, + "popularity": 6.1831 + }, + { + "id": 850099, + "title": "Risen", + "originalTitle": "Risen", + "overview": "Disaster unfolds when a meteor strikes a small town, turning the environment uninhabitable and killing everything in the surrounding area. Exobiologist Lauren Stone is called to find answers to the unearthly event. As she begins to uncover the truth, imminent danger awakens and it becomes a race against time to save mankind.", + "posterPath": "/hSmJrx26NLttonxQmO3hvjHa1gF.jpg", + "backdropPath": "/iZNNQLV2uejoj89DQEh668EqO4j.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 18, + 53 + ], + "genres": [ + "Science Fiction", + "Drama", + "Thriller" + ], + "releaseDate": "2021-08-20", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 171, + "popularity": 6.1826 + }, + { + "id": 33340, + "title": "The Angel", + "originalTitle": "Engelen", + "overview": "A drug addict becomes a mother and has to deal with responsibility and self-respect.", + "posterPath": "/2bxnmjJNADMKmxffCXoTngWyYWf.jpg", + "backdropPath": "/7kwgmySXj77cRnYeX8kcxtHhQOe.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-10-02", + "releaseYear": "2009", + "originalLanguage": "no", + "voteAverage": 5.941, + "voteCount": 17, + "popularity": 6.1822 + }, + { + "id": 305971, + "title": "Das Zeugenhaus", + "originalTitle": "Das Zeugenhaus", + "overview": "Witnesses about to testify at the Nuremberg War Trials needed a safe place to wait. All under one roof, each with their own secrets. And the countess assigned to take care of them. What was her secret?", + "posterPath": "/btLt7CWXkJQe8NgtPjQrNgi2B3V.jpg", + "backdropPath": "/8Hf8ZVgCtw5yGK2zNoAMU0QDPhp.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "2014-11-24", + "releaseYear": "2014", + "originalLanguage": "de", + "voteAverage": 6.767, + "voteCount": 15, + "popularity": 6.1821 + }, + { + "id": 848685, + "title": "The Beasts", + "originalTitle": "As bestas", + "overview": "Antoine and Olga, a French couple, have been living in a small village in Galicia for a long time. They practice eco-responsible agriculture and restore abandoned houses to facilitate repopulation. Everything should be idyllic except for their opposition to a wind turbine project that creates a serious conflict with their neighbors. The tension will rise to the point of irreparability.", + "posterPath": "/ytWMRYLlusyzMFFjyuFRY1liteR.jpg", + "backdropPath": "/vlhzpgLDoiiMCNa3Jxj2VcuRAoD.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2022-07-20", + "releaseYear": "2022", + "originalLanguage": "fr", + "voteAverage": 7.485, + "voteCount": 850, + "popularity": 6.1819 + }, + { + "id": 531503, + "title": "Point Blank", + "originalTitle": "Point Blank", + "overview": "A nurse is forced to spring a wounded murder suspect from the hospital when the man’s brother kidnaps his pregnant wife and wants to make a trade.", + "posterPath": "/weAvkxl0dnPevIKD8fwHjiOi6tc.jpg", + "backdropPath": "/ldHPIMzOxS1bvEDtzPWS4csOhd8.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.003, + "voteCount": 562, + "popularity": 6.1817 + }, + { + "id": 658751, + "title": "Rising High", + "originalTitle": "Betonrausch", + "overview": "Charting the rise and fall of three corrupt real estate agents who accumulate absurd wealth in no time but fall into a vortex of fraud, greed and drugs.", + "posterPath": "/6r83qslpsERzHzCroFSp6X4eUse.jpg", + "backdropPath": "/29D1fbU1bP9vzPvHiYr7aeGG17P.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-04-17", + "releaseYear": "2020", + "originalLanguage": "de", + "voteAverage": 6.574, + "voteCount": 290, + "popularity": 6.1814 + }, + { + "id": 9054, + "title": "Gone Fishin'", + "originalTitle": "Gone Fishin'", + "overview": "Two fishing fanatics get in trouble when their fishing boat gets stolen while on a trip.", + "posterPath": "/lGRHE7s2iGgJ0JNO9gxm8BJKelt.jpg", + "backdropPath": "/3J0N0ZdNucjJHVKhyUxII7GAuyw.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1997-05-30", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 4.84, + "voteCount": 156, + "popularity": 6.1814 + }, + { + "id": 396777, + "title": "Woodshock", + "originalTitle": "Woodshock", + "overview": "Theresa, a haunted young woman spiraling in the wake of profound loss, is torn between her fractured emotional state and the reality-altering effects of a potent cannabinoid drug.", + "posterPath": "/oXbgY04zMSqMKdNLTcSMP6m5sSF.jpg", + "backdropPath": "/mCDtYK962oCEqNBZ7nWkheBXCIj.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53 + ], + "genres": [ + "Drama", + "Thriller" + ], + "releaseDate": "2017-09-22", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 75, + "popularity": 6.1795 + }, + { + "id": 300671, + "title": "13 Hours: The Secret Soldiers of Benghazi", + "originalTitle": "13 Hours: The Secret Soldiers of Benghazi", + "overview": "An American Ambassador is killed during an attack at a U.S. compound in Libya as a security team struggles to make sense out of the chaos.", + "posterPath": "/AskDcQ6Sa6jImyt2KDQbgRuPebH.jpg", + "backdropPath": "/ayDMYGUNVvXS76wQgFwTiUIDNb5.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 28, + 36, + 18, + 53 + ], + "genres": [ + "War", + "Action", + "History", + "Drama", + "Thriller" + ], + "releaseDate": "2016-01-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 3793, + "popularity": 6.179 + }, + { + "id": 120467, + "title": "The Grand Budapest Hotel", + "originalTitle": "The Grand Budapest Hotel", + "overview": "The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted protégé. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.", + "posterPath": "/eWdyYQreja6JGCzqHWXpWHDrrPo.jpg", + "backdropPath": "/9udCLTxTFl28RxnK8Q05E154ZGa.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2014-02-26", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.033, + "voteCount": 15558, + "popularity": 6.1788 + }, + { + "id": 545659, + "title": "SuperGrid", + "originalTitle": "SuperGrid", + "overview": "Set in a near future where mining conglomerates have turned Canada into a wasteland. Two brothers must travel the same road that claimed their sister's life in their quest to deliver mysterious cargo. En route they must contend with road pirates, rebel gangs, and each other.", + "posterPath": "/4dcbh39Nbg1UpELEqnn0PvXk6Z5.jpg", + "backdropPath": "/rrnndsQUsKoZm2Di4Mz0s9NDCvG.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 878 + ], + "genres": [ + "Action", + "Science Fiction" + ], + "releaseDate": "2018-11-22", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.281, + "voteCount": 32, + "popularity": 6.1786 + }, + { + "id": 288655, + "title": "Virtual Encounters", + "originalTitle": "Virtual Encounters", + "overview": "Happy birthday, Amy. Amy's boyfriend Michael gave her the deluxe, super-duper virtual encounter. This is his way of removing her inhibitions and allowing her to fulfill the desires hidden deep inside. He finds he has a real tiger by the tail.", + "posterPath": "/qnggELUruqIoddotSZoKlV8SGbB.jpg", + "backdropPath": "/lO6RTeBPlHIk2FKvJuvLisNctKn.jpg", + "mediaType": "movie", + "genreIds": [ + 878, + 10749 + ], + "genres": [ + "Science Fiction", + "Romance" + ], + "releaseDate": "1996-04-02", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 3.833, + "voteCount": 12, + "popularity": 6.1782 + }, + { + "id": 793723, + "title": "Sentinelle", + "originalTitle": "Sentinelle", + "overview": "Transferred home after a traumatizing combat mission, a highly trained French soldier uses her lethal skills to hunt down the man who hurt her sister.", + "posterPath": "/jt9NNFFAjvMouzHt06U3uANBpUm.jpg", + "backdropPath": "/eTgQlyIQH0nA5BsmYpvCzSPAorg.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 28, + 18 + ], + "genres": [ + "Thriller", + "Action", + "Drama" + ], + "releaseDate": "2021-03-05", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 5.822, + "voteCount": 613, + "popularity": 6.1779 + }, + { + "id": 63322, + "title": "Inspector Lavardin", + "originalTitle": "Inspecteur Lavardin", + "overview": "Inspector Lavardin is called to a provincial village to investigate a murder – only to find that one of his ex-lovers is the victim’s widow.", + "posterPath": "/b2Z5vTpOEcrYcv5xAxGDV15rDLU.jpg", + "backdropPath": "/itxRzMrKSyQJ3nOcsNYQFzjDSc7.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1986-03-12", + "releaseYear": "1986", + "originalLanguage": "fr", + "voteAverage": 6.2, + "voteCount": 71, + "popularity": 6.1779 + }, + { + "id": 1154864, + "title": "Cursed", + "originalTitle": "Malditas", + "overview": "The lives of six girls belong to different worlds although connected to each other through a doll called Molly, whose existence dates back to 1976, when she appeared among the rubble of the great fire of the San Carlos orphanage, in northern Spain", + "posterPath": "/nQlq8Dp0DiYbAmybZFwp2JvS2Ml.jpg", + "backdropPath": "/3bqfwYl2wZSHxLjnVaTgXoZKQ8M.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 28, + 18 + ], + "genres": [ + "Horror", + "Action", + "Drama" + ], + "releaseDate": "2023-10-20", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 6.275, + "voteCount": 40, + "popularity": 6.1776 + }, + { + "id": 499394, + "title": "Retablo", + "originalTitle": "Retablo", + "overview": "Segundo sees silence as his only option for dealing with his father Noé’s secret. The 14-year-old lives with his parents in a village high up in the mountains. Noé is a respected artisan and Segundo’s role model. With loving eye for detail, he artfully crafts altarpieces for church and homes, and is preparing his son to follow in his footsteps. But cracks form in their tight bond.", + "posterPath": "/sb9o4IR5dhRASL3GoQl4cLWBDlO.jpg", + "backdropPath": "/oIUXLWiKCHuCQiWWbBDNGvmyCCK.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-12-19", + "releaseYear": "2018", + "originalLanguage": "qu", + "voteAverage": 7.3, + "voteCount": 57, + "popularity": 6.1776 + }, + { + "id": 559700, + "title": "Alcatraz", + "originalTitle": "Alcatraz", + "overview": "A group of prisoners, led by an armed robber and a gangster, attempt to escape from the infamous Alcatraz Island.", + "posterPath": "/2cMu9wCWA3pqQxF4H7s11Pqlf3w.jpg", + "backdropPath": "/yNk13DQNfgZjb8oPVX5fVIMpflf.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80 + ], + "genres": [ + "Action", + "Crime" + ], + "releaseDate": "2018-11-06", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 31, + "popularity": 6.1774 + }, + { + "id": 507256, + "title": "Whitney", + "originalTitle": "Whitney", + "overview": "Examines the life and career of singer Whitney Houston. Features never-before-seen archival footage, exclusive recordings, rare performances and interviews with the people who knew her best.", + "posterPath": "/j1c6dTycYBMZs2T1wKA6bknLLa6.jpg", + "backdropPath": "/2i1p4MGPr5yaAhB1vY6ssQjhwPT.jpg", + "mediaType": "movie", + "genreIds": [ + 10402, + 99 + ], + "genres": [ + "Music", + "Documentary" + ], + "releaseDate": "2018-07-05", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.309, + "voteCount": 199, + "popularity": 6.1772 + }, + { + "id": 381518, + "title": "Mindhorn", + "originalTitle": "Mindhorn", + "overview": "A washed up actor best known for playing the title character in the 1980s detective show \"Mindhorn\" must work with the police when a serial killer says that he will only speak with Detective Mindhorn, whom he believes to be real.", + "posterPath": "/1cg6oZo7C7iqYTZgbfOvscAFiP2.jpg", + "backdropPath": "/9pJXgycHE3P3CacBr1aeAi5feGN.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-10-09", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.078, + "voteCount": 309, + "popularity": 6.177 + }, + { + "id": 4257, + "title": "Scary Movie 4", + "originalTitle": "Scary Movie 4", + "overview": "Cindy finds out the house she lives in is haunted by a little boy and goes on a quest to find out who killed him and why. Also, Alien \"Tr-iPods\" are invading the world and she has to uncover the secret in order to stop them.", + "posterPath": "/sEqFdw1wLtY94RKCSPolsHWzn6r.jpg", + "backdropPath": "/pSNwe7G9bESwlCBVurlwRs7fMZU.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-04-12", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.491, + "voteCount": 3428, + "popularity": 6.1768 + }, + { + "id": 54396, + "title": "The Cheerleaders", + "originalTitle": "The Cheerleaders", + "overview": "A group of cheerleaders from the local high school decide to show their school spirit for their football team by sleeping with the opponents the night before the game so that they can be so worn out the opposition won't be able to play.", + "posterPath": "/xPF1il9rtvfRc39lmc5H8D62XcL.jpg", + "backdropPath": "/kzt70vMxF4i4vQaxNUHqb8AOzRL.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1973-03-01", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 39, + "popularity": 6.1764 + }, + { + "id": 1323784, + "title": "Bad Influence", + "originalTitle": "Mala influencia", + "overview": "An ex-con gets a fresh start when hired to protect a wealthy heiress from a stalker — but their chemistry is hard to resist as they grow closer.", + "posterPath": "/3xVWCNDAgr01G1Lkjd7F9sAGOc4.jpg", + "backdropPath": "/zXUxcXnBPHF1cD0IHi4KUpsNvF4.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18, + 10749 + ], + "genres": [ + "Thriller", + "Drama", + "Romance" + ], + "releaseDate": "2025-01-24", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 5.659, + "voteCount": 258, + "popularity": 6.1761 + }, + { + "id": 40785, + "title": "Suddenly", + "originalTitle": "Underbara älskade", + "overview": "The mother and the younger son in a happy family dies in a car-accident. The father and the teenage-son Jonas survives the accident. Now they have to move on with their lives together.", + "posterPath": "/ja07dM3gYcAsZjbKDOzefS9ljof.jpg", + "backdropPath": "/9QODF6sKJQL7Lw5tUPVW9vRg66W.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-12-22", + "releaseYear": "2006", + "originalLanguage": "sv", + "voteAverage": 5, + "voteCount": 11, + "popularity": 6.1758 + }, + { + "id": 15742, + "title": "Taxidermia", + "originalTitle": "Taxidermia", + "overview": "Set over three generations and beginning with a sexually frustrated orderly during WWII who relieves his tensions in the most outlandish, gross ways. The result of his liaison is a glutton who grows up to be a champion speed eater. He produces a child who becomes obsessed with taxidermy.", + "posterPath": "/uRqxKim0Vr1JZPLYcR1rjFtu74p.jpg", + "backdropPath": "/sZuuEKmEdd9Emn6QIW4WiHrRjSk.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 27, + 35 + ], + "genres": [ + "Drama", + "Horror", + "Comedy" + ], + "releaseDate": "2006-08-23", + "releaseYear": "2006", + "originalLanguage": "hu", + "voteAverage": 6.6, + "voteCount": 334, + "popularity": 6.1755 + }, + { + "id": 371865, + "title": "Slack Bay", + "originalTitle": "Ma Loute", + "overview": "Summer, 1910. Inspectors Machin and Malfoy investigate the mysterious disappearances of several tourists on the beautiful beaches of Slack Bay, where a strange community of fishermen lives.", + "posterPath": "/7P1fgJAuKxzFCgEU3B3YS9c4Oz.jpg", + "backdropPath": "/1pPTG1UeVeoLNGNUfYshiSoyoen.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-05-13", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.6, + "voteCount": 261, + "popularity": 6.1745 + }, + { + "id": 1949, + "title": "Zodiac", + "originalTitle": "Zodiac", + "overview": "The Zodiac murders cause the lives of Paul Avery, David Toschi and Robert Graysmith to intersect.", + "posterPath": "/6YmeO4pB7XTh8P8F960O1uA14JO.jpg", + "backdropPath": "/3zCPI4JFc54xvLaJ71oI2KoP3az.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 9648, + 53 + ], + "genres": [ + "Crime", + "Mystery", + "Thriller" + ], + "releaseDate": "2007-03-02", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.526, + "voteCount": 11174, + "popularity": 6.1742 + }, + { + "id": 85545, + "title": "Elles", + "originalTitle": "Elles", + "overview": "A journalist tries to balance the duties of marriage and motherhood while researching a piece on college women who work as prostitutes to pay their tuition.", + "posterPath": "/uTgVDey4yjwFXIih26zUJjPaUVG.jpg", + "backdropPath": "/gyu2LyJ6sUFZU2VyIIXthZNC5RN.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-09-09", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 5.324, + "voteCount": 188, + "popularity": 6.1734 + }, + { + "id": 10954, + "title": "Farinelli", + "originalTitle": "Farinelli", + "overview": "The life and career of Italian opera singer Farinelli, considered one of the greatest castrato singers of all time.", + "posterPath": "/i5h0ZjYobco5HRPaAU6QTlrMYw0.jpg", + "backdropPath": "/mYWxd7i6qsFK6TyDjMquSGwjo69.jpg", + "mediaType": "movie", + "genreIds": [ + 36, + 18, + 10402 + ], + "genres": [ + "History", + "Drama", + "Music" + ], + "releaseDate": "1994-12-01", + "releaseYear": "1994", + "originalLanguage": "fr", + "voteAverage": 6.572, + "voteCount": 180, + "popularity": 6.173 + }, + { + "id": 78998, + "title": "Desire", + "originalTitle": "Desire", + "overview": "Madeleine steals a string of pearls in Paris and uses American engineer Tom, who is driving on his vacation to Spain, to get the pearls out of France. But getting the pearls back from him proves to be difficult without falling in love.", + "posterPath": "/eoYV0IyYQmmbYxhZEVUlGIwb6DT.jpg", + "backdropPath": "/oJgkQVUVhJOJXonF0UzafZXQrHs.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 80, + 35, + 18 + ], + "genres": [ + "Romance", + "Crime", + "Comedy", + "Drama" + ], + "releaseDate": "1936-04-11", + "releaseYear": "1936", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 50, + "popularity": 6.1729 + }, + { + "id": 39934, + "title": "Longtime Companion", + "originalTitle": "Longtime Companion", + "overview": "During the summer of 1981, a group of friends in New York are completely unprepared for the onslaught of AIDS. What starts as a rumor about a mysterious \"gay cancer\" soon turns into a major crisis as, one by one, some of the friends begin to fall ill, leaving the others to panic about who will be next. As death takes its toll, the lives of these friends are forever redefined by an unconditional display of love, hope and courage.", + "posterPath": "/lHIGo1VI71DQgDbbm6XWBjaPxCz.jpg", + "backdropPath": "/aiyrszCc3vxLDRjAPw7KodZzCKj.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "1989-10-11", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.732, + "voteCount": 73, + "popularity": 6.1724 + }, + { + "id": 49519, + "title": "The Croods", + "originalTitle": "The Croods", + "overview": "The prehistoric Croods family live in a particularly dangerous moment in time. Patriarch Grug, his mate Ugga, teenage daughter Eep, son Thunk, and feisty Gran gather food by day and huddle together in a cave at night. When a more evolved caveman named Guy arrives on the scene, Grug is distrustful, but it soon becomes apparent that Guy is correct about the impending destruction of their world.", + "posterPath": "/27zvjVOtOi5ped1HSlJKNsKXkFH.jpg", + "backdropPath": "/wFN8llYh215M8i2fqWAcPV8CSyL.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 12, + 10751, + 35 + ], + "genres": [ + "Animation", + "Adventure", + "Family", + "Comedy" + ], + "releaseDate": "2013-03-15", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 7347, + "popularity": 6.1723 + }, + { + "id": 38530, + "title": "Symmetry", + "originalTitle": "Symetria", + "overview": "Łukasz, an unemployed geography graduate, is wrongfully arrested for robbery. His alibi is weak, and he is identified during a lineup. The situation gets hopeless when, a few hours later, the alleged victim suddenly dies. The defense lawyer promises to do everything in his power, but Łukasz ends up in custody. He must find his place in a world of harsh prison rules. He chooses the cell of the “grypsujący” (inmates who communicate by coded messages)…", + "posterPath": "/3jJAcF5eE1yBGwMHYRj9xmOkEte.jpg", + "backdropPath": "/1cjQgVNDWEpeKqjJ8I2zQw7O3nx.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-09-16", + "releaseYear": "2003", + "originalLanguage": "pl", + "voteAverage": 7.391, + "voteCount": 64, + "popularity": 6.1713 + }, + { + "id": 351037, + "title": "The Ardennes", + "originalTitle": "D'Ardennen", + "overview": "A brutal home-jacking goes hopelessly wrong. Dave, one of the two robbers, manages to run off, leaving his brother Kenneth behind. Four years later, Kenneth is released from prison and much has changed. Dave has his life back on track and is trying to help Kenneth however possible, but is witnessing how the highly strung Kenneth tries to win back his ex-girlfriend Sylvie.", + "posterPath": "/nVfABxAnahoU65o61cZ77tKNbD7.jpg", + "backdropPath": "/Tpihv0cSBwSHuO7vSjJDp2fiqU.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 53 + ], + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "releaseDate": "2015-10-14", + "releaseYear": "2015", + "originalLanguage": "nl", + "voteAverage": 6.6, + "voteCount": 195, + "popularity": 6.1712 + }, + { + "id": 552011, + "title": "Jingle Belle", + "originalTitle": "Jingle Belle", + "overview": "Every year, Isabelle (Tatyana Ali) and her high school sweetheart Mike (Cornelius Smith Jr.), rocked their small town’s annual Christmas Eve Pageant with a sweet Christmas duet. But after graduation, Isabelle left to study at Juillard in New York – leaving Mike behind. Years later, when Isabelle returns to her hometown to write music for the annual Christmas Eve Pageant, she is shocked to learn that Mike is the one directing the show. Can Isabelle and Mike put the past behind them and reunite on stage for another show-stopping duet?", + "posterPath": "/ww6Iu1FmXlVTMrW2Xx1U9QkRsWD.jpg", + "backdropPath": "/tcf3RYw4xQzI3jJHF8sCHomqOVs.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 18, + 10751, + 10402, + 10770 + ], + "genres": [ + "Romance", + "Drama", + "Family", + "Music", + "TV Movie" + ], + "releaseDate": "2018-11-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 19, + "popularity": 6.1711 + }, + { + "id": 172680, + "title": "Black Cat II", + "originalTitle": "黑貓II:刺殺葉利欽", + "overview": "Scientists install a micro chip, called Black Cat, inside the brain of a violence prone girl named Catherine in an attempt to refine and control her fits of rage. Their plan is to turn her into the perfect government secret agent \"killing machine\".", + "posterPath": "/o83MJ15lrS4EcLYdApvzZwWJ3cK.jpg", + "backdropPath": "/yQT6DB2sv4mG1Quimqhj4tXJSwR.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 80, + 53 + ], + "genres": [ + "Action", + "Crime", + "Thriller" + ], + "releaseDate": "1992-10-01", + "releaseYear": "1992", + "originalLanguage": "cn", + "voteAverage": 6.5, + "voteCount": 10, + "popularity": 6.1701 + }, + { + "id": 17417, + "title": "Hallelujah!", + "originalTitle": "Le Missionnaire", + "overview": "Following his release from a seven-year stretch in prison, Mario Diccara discovers that his affairs with the underworld aren't completely settled. His brother Patrick, a priest, suggests that he stays with elderly Father Etienne in a small village in Ardeche until the conflict blows over. But their plan takes an unexpected turn when Father Etienne dies.", + "posterPath": "/eGZyAHnGgGTUfABgAd0ZQYH1TKD.jpg", + "backdropPath": "/gxwxIZpiCfTCkWkqM7EPx3ljpfr.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-04-29", + "releaseYear": "2009", + "originalLanguage": "fr", + "voteAverage": 5.8, + "voteCount": 160, + "popularity": 6.1698 + }, + { + "id": 82838, + "title": "The Rack", + "originalTitle": "The Rack", + "overview": "Army Captain Edward Hall returns to the U.S. after two years in a prison camp in the Korean War. In the camp, he was brainwashed and helped the Chinese convince the other prisoners that they were fighting an unjust war. When he comes back he is charged for collaboration with the enemy. Where does loyalty end in a prison camp, when the camp is a living hell?", + "posterPath": "/rX5LTigzW7MOuTZeMBNwdQfC6RV.jpg", + "backdropPath": "/8IG1yDCyYNLKtWBNxdYCA8LLmmn.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "1956-11-02", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 26, + "popularity": 6.1697 + }, + { + "id": 11558, + "title": "Silver Streak", + "originalTitle": "Silver Streak", + "overview": "A somewhat daffy book editor on a rail trip from Los Angeles to Chicago thinks that he sees a murdered man thrown from the train. When he can find no one who will believe him, he starts doing some investigating of his own. But all that accomplishes is to get the killer after him.", + "posterPath": "/gY1a4k9dalGx83D7TJ2C76xBprS.jpg", + "backdropPath": "/yLEvFfGVXsStEkNQwi9OxAcCDaa.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80, + 10749, + 53, + 28 + ], + "genres": [ + "Comedy", + "Crime", + "Romance", + "Thriller", + "Action" + ], + "releaseDate": "1976-12-03", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 350, + "popularity": 6.1694 + }, + { + "id": 12254, + "title": "Emma", + "originalTitle": "Emma", + "overview": "Emma Woodhouse is a congenial young lady who delights in meddling in other people’s affairs. She is perpetually trying to unite men and women who are utterly wrong for each other. Despite her interest in romance, Emma is clueless about her own feelings, and her relationship with gentle Mr. Knightley.", + "posterPath": "/d6ksCUWYOaweyvGLi1JILYvIybN.jpg", + "backdropPath": "/skTeEE3kZZG0w7sdMt51ZMW1ZaH.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18, + 10749, + 10770 + ], + "genres": [ + "Comedy", + "Drama", + "Romance", + "TV Movie" + ], + "releaseDate": "1996-10-02", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 131, + "popularity": 6.1693 + }, + { + "id": 71078, + "title": "Extramarital", + "originalTitle": "Extramarital", + "overview": "An aspiring writer gets involved in the investigation of her best friend after she is killed while having an affair.", + "posterPath": "/iJi2FfqKYKgterSCORiFw2YrEcx.jpg", + "backdropPath": "/ck77jwJCdfpvAduyUQiN9CSPhFd.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 53, + 10749, + 9648 + ], + "genres": [ + "Drama", + "Thriller", + "Romance", + "Mystery" + ], + "releaseDate": "1998-08-09", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 10, + "popularity": 6.1687 + }, + { + "id": 33155, + "title": "Galaxina", + "originalTitle": "Galaxina", + "overview": "Galaxina is a lifelike, voluptuous android who is assigned to oversee the operations of an intergalactic Space Police cruiser captained by incompetent Cornelius Butt. When a mission requires the ship's crew to be placed in suspended animation for decades, Galaxina finds herself alone for many years, developing emotions and falling in love with the ship's pilot, Thor.", + "posterPath": "/A66Uw4QFyESPwnDnlvudKKR2Qsv.jpg", + "backdropPath": "/nSqtkiq4ZKeJLaWatUSeGKNYoji.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878 + ], + "genres": [ + "Comedy", + "Science Fiction" + ], + "releaseDate": "1980-06-06", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 4, + "voteCount": 81, + "popularity": 6.1687 + }, + { + "id": 446131, + "title": "Madame", + "originalTitle": "Madame", + "overview": "Anne and Bob, a well-to-do American couple, have just moved to a beautiful manor house in romantic Paris. To impress their sophisticated friends, they decide to host a lavish dinner party, but must disguise their maid as a noblewoman to even out the number of guests. When the maid runs off with a wealthy guest, Anne must chase her around Paris to thwart the joyous and unexpected love affair.", + "posterPath": "/wTOfZevdHCrmjxj4oVUK6qKrAdJ.jpg", + "backdropPath": "/7l5sHonMX6fgHcW3MoiZI302ykA.jpg", + "mediaType": "movie", + "genreIds": [ + 10749, + 35, + 18 + ], + "genres": [ + "Romance", + "Comedy", + "Drama" + ], + "releaseDate": "2017-08-17", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.879, + "voteCount": 315, + "popularity": 6.168 + }, + { + "id": 66120, + "title": "The Monk", + "originalTitle": "Le Moine", + "overview": "A virtuous monk descends to the depths of sin and depravity after Satan sends an unholy temptress to lead him astray.", + "posterPath": "/1LoYkzsxNroQe42BHEqhxgBBuMK.jpg", + "backdropPath": "/nMuTeS8Rq7IeM59RGIFyuvCYoVw.jpg", + "mediaType": "movie", + "genreIds": [ + 53 + ], + "genres": [ + "Thriller" + ], + "releaseDate": "2011-07-12", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 5.422, + "voteCount": 115, + "popularity": 6.1678 + }, + { + "id": 86215, + "title": "The Cloth", + "originalTitle": "The Cloth", + "overview": "Action/horror story centered on a secret organization formed by the Catholic Church to counteract the rising number of cases of demonic possessions across the country. The story follows a young godless man who is being recruited into the cloth in order to prepare a new generation with the tools needed to stop the rise of the ultimate evil; Beelzebub.", + "posterPath": "/o1UMaleuGx3BaUJMtZtB0JsjuKV.jpg", + "backdropPath": "/tHqpMjzUANHHMk5fUPofrqUbaI2.jpg", + "mediaType": "movie", + "genreIds": [ + 14, + 28, + 27 + ], + "genres": [ + "Fantasy", + "Action", + "Horror" + ], + "releaseDate": "2012-10-28", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 2.486, + "voteCount": 37, + "popularity": 6.1677 + }, + { + "id": 522627, + "title": "The Gentlemen", + "originalTitle": "The Gentlemen", + "overview": "American expat Mickey Pearson has built a highly profitable marijuana empire in London. When word gets out that he’s looking to cash out of the business forever it triggers plots, schemes, bribery and blackmail in an attempt to steal his domain out from under him.", + "posterPath": "/jtrhTYB7xSrJxR1vusu99nvnZ1g.jpg", + "backdropPath": "/tintsaQ0WLzZsTMkTiqtMB3rfc8.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2020-01-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.668, + "voteCount": 6295, + "popularity": 6.1676 + }, + { + "id": 14355, + "title": "Red Shadow", + "originalTitle": "RED SHADOW 赤影", + "overview": "The secret warriors of feudal Japan were the ninja. Sent on impossible missions, the ninja were trained to work in shadows, gather information and defeat the enemy to build a world of peace. Akakage, Aokage, and Asuka are rookie ninjas under the tutelage of Shirokage. Their life is a series of perilous missions that entail intrigue, deception and intimidation.", + "posterPath": "/faicq6cvWWU4FaRnd9rxyPYVL4N.jpg", + "backdropPath": "/qq6w71YAd8vGr5S4OXhwSlgCb8Y.jpg", + "mediaType": "movie", + "genreIds": [ + 12, + 28, + 35, + 10749 + ], + "genres": [ + "Adventure", + "Action", + "Comedy", + "Romance" + ], + "releaseDate": "2001-08-11", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 26, + "popularity": 6.1676 + }, + { + "id": 39851, + "title": "Clean", + "originalTitle": "Clean", + "overview": "After she ends up in prison and loses custody of her son, a woman struggles to assimilate outside her former life and remain clean long enough to regain custody of her son.", + "posterPath": "/srenglG0ITLow4pR35IvJiAYuiX.jpg", + "backdropPath": "/dwSdmuui68qmSCalGWsDZEgkgOg.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-09-01", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 73, + "popularity": 6.1672 + }, + { + "id": 136726, + "title": "La Celestina", + "originalTitle": "La Celestina", + "overview": "The young nobleman Calisto falls in love with Melibea, the daughter of a rich merchant. Calisto's servant Sempronio suggests they get the sorceress Celestina to further the romance. However Calisto's other servant Parmeno is suspicious of Celestina, as he knows about her tricks.", + "posterPath": "/qUDbwyhC19V8OgZgzOF45DHyt1f.jpg", + "backdropPath": "/zsS0FYL914us0FcXxCQQuDzcfOz.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1996-11-08", + "releaseYear": "1996", + "originalLanguage": "es", + "voteAverage": 4.683, + "voteCount": 41, + "popularity": 6.1671 + }, + { + "id": 22694, + "title": "The Trip", + "originalTitle": "The Trip", + "overview": "After his wife leaves him, a disillusioned director dives into the drug scene, trying anything his friend suggests.", + "posterPath": "/tRX6gEJ4G1oFBDxEGdIhfogdjCN.jpg", + "backdropPath": "/n59XVeuh9G8VHk0HhPg0eiQr3k8.jpg", + "mediaType": "movie", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1967-08-23", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 101, + "popularity": 6.1668 + }, + { + "id": 84760, + "title": "Robot Holocaust", + "originalTitle": "Robot Holocaust", + "overview": "Neo, a drifter from the atomic-blasted wastelands, arrives with his klutzy robot sidekick at a factory where slaves labor to fuel the sinister Dark One's Power Station. There, he meets a comely woman who convinces him to help rescue her scientist father, who has invented a device that can break the Dark One's control over the slaves. Gathering a motley crew of allies on the way, Neo and pals travel to the Power Station, where they confront the Dark One's evil servants.", + "posterPath": "/9DiMdtWFAcykVd4c8WCpN8PcJdo.jpg", + "backdropPath": "/j0LNLUeQqGTN3Goz5uMCe9CtMIV.jpg", + "mediaType": "movie", + "genreIds": [ + 878 + ], + "genres": [ + "Science Fiction" + ], + "releaseDate": "1986-04-14", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 3.1, + "voteCount": 47, + "popularity": 6.1665 + }, + { + "id": 217948, + "title": "Teresa", + "originalTitle": "Teresa", + "overview": "An Italian war bride has problems dealing with her husband's possessive mother.", + "posterPath": "/vim04uV3E61MJR62FvhIm1wkMIJ.jpg", + "backdropPath": "/9fvJht1tTvoPRop1TWqDrCt7WTf.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10752 + ], + "genres": [ + "Drama", + "War" + ], + "releaseDate": "1951-04-05", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 10, + "popularity": 6.1655 + }, + { + "id": 144293, + "title": "Fatal Honeymoon", + "originalTitle": "Fatal Honeymoon", + "overview": "Based on a true story, Fatal Honeymoon tells the shocking story and controversy surrounding a newlywed who tragically dies on her dream honeymoon and the subsequent investigation as to whether or not her husband was guilty of killing her.", + "posterPath": "/64PReJOUaeYqG22K8jkHC76QI3T.jpg", + "backdropPath": "/bZNRbRcDVMl6vUfgicWAbD1T7a.jpg", + "mediaType": "movie", + "genreIds": [ + 80, + 18, + 10770 + ], + "genres": [ + "Crime", + "Drama", + "TV Movie" + ], + "releaseDate": "2012-08-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 20, + "popularity": 6.1655 + }, + { + "id": 42002, + "title": "Anguish", + "originalTitle": "Angustia", + "overview": "An ophthalmologist's assistant with an unhealthy interest in human eyeballs goes on a killing spree to collect eyeballs for his overbearing mother's collection. Reality soon takes a bizarre turn, both for the characters and the audience.", + "posterPath": "/pcgTyhl00GDmlKyZvEOJ3qDxEgP.jpg", + "backdropPath": "/huPLaQFhsPf0eWRVEkbw1gK2tx8.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "1987-03-23", + "releaseYear": "1987", + "originalLanguage": "es", + "voteAverage": 6.3, + "voteCount": 144, + "popularity": 6.1652 + }, + { + "id": 338006, + "title": "Silent Fear", + "originalTitle": "De Reünie", + "overview": "Sabine is looking for the truth behind the disappearance of her best friend twenty years ago. An encounter with the handsome Olaf, a man she remembers from her teenage years, and the announcement of a high school reunion turn her life upside down.", + "posterPath": "/1Fx3x1a39XLpBwRgUVl2KfwDkcg.jpg", + "backdropPath": "/81vr33ABC4LE7qsOSi4JXNBQTIv.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 18 + ], + "genres": [ + "Thriller", + "Drama" + ], + "releaseDate": "2015-07-16", + "releaseYear": "2015", + "originalLanguage": "nl", + "voteAverage": 4.304, + "voteCount": 23, + "popularity": 6.1651 + }, + { + "id": 49838, + "title": "The Antidote", + "originalTitle": "L'Antidote", + "overview": "JAM (Christian Clavier), a French \"master of the universe\" is on the brink of a major takeover when he starts suffering from anxiety attacks. His doctor (Lhermite) thinks it is to do with childhood experiences and suggests he searches back in his mind to something that could be the trigger and will prove to be the antidote.", + "posterPath": "/pmXYSWrt6OeBJk1UTLeqtpqCEng.jpg", + "backdropPath": "/6ivsB7jYpavflptoqbK6MNv4ulj.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-03-30", + "releaseYear": "2005", + "originalLanguage": "fr", + "voteAverage": 5.134, + "voteCount": 116, + "popularity": 6.1651 + }, + { + "id": 714888, + "title": "Argentina 1985", + "originalTitle": "Argentina 1985", + "overview": "In the 1980s, a team of lawyers takes on the heads of Argentina's bloody military dictatorship in a battle against odds and a race against time.", + "posterPath": "/nmh7vD2eDVRqFJoCpEzVcfGcPPf.jpg", + "backdropPath": "/gh1Rghpf3BIISHSAw9GsObG4TN3.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36, + 80 + ], + "genres": [ + "Drama", + "History", + "Crime" + ], + "releaseDate": "2022-09-29", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 7.827, + "voteCount": 710, + "popularity": 6.1648 + }, + { + "id": 378483, + "title": "Suntan", + "originalTitle": "Suntan", + "overview": "Kostis is a 40-year-old doctor that finds himself in the small island of Antiparos, in order to take over the local clinic. His whole life and routine will turn upside down when he meets an international group of young and beautiful tourists and he falls in love with Anna, a 19-year-old goddess.", + "posterPath": "/8hg1vOBISfPrS8fYohGarAUmmDV.jpg", + "backdropPath": "/kWbwJzNei2QqOLnTVF9tRHbaxPZ.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-03-31", + "releaseYear": "2016", + "originalLanguage": "el", + "voteAverage": 6.3, + "voteCount": 105, + "popularity": 6.1647 + }, + { + "id": 75258, + "title": "Secret of the Wings", + "originalTitle": "Secret of the Wings", + "overview": "Tinkerbell wanders into the forbidden Winter woods and meets Periwinkle. Together they learn the secret of their wings and try to unite the warm fairies and the winter fairies to help Pixie Hollow.", + "posterPath": "/5q72GagtB9NM4i3z7M40EXLb3ut.jpg", + "backdropPath": "/2AeE4Op9qjDSXe8GbfCtlbHFxhL.jpg", + "mediaType": "movie", + "genreIds": [ + 16, + 10751, + 14, + 12 + ], + "genres": [ + "Animation", + "Family", + "Fantasy", + "Adventure" + ], + "releaseDate": "2012-08-17", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.232, + "voteCount": 1333, + "popularity": 6.1646 + }, + { + "id": 464678, + "title": "The Rachels", + "originalTitle": "The Rachels", + "overview": "After a popular teen falls to her death, her best friend basks in the glow of the social media attention, while their rival seeks to avenge the past and uncover the truth behind the mysterious death.", + "posterPath": "/M1iRgIT4gWbnZYzX0SMfy6cEwW.jpg", + "backdropPath": "/d60dGbuOCeLCWmuatLUOkDD8w8W.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10770 + ], + "genres": [ + "Drama", + "TV Movie" + ], + "releaseDate": "2017-01-15", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.919, + "voteCount": 31, + "popularity": 6.164 + }, + { + "id": 160068, + "title": "Gloria", + "originalTitle": "Gloria", + "overview": "Gloria is a 58-year-old divorcée. Her children have all left home but she has no desire to spend her days and nights alone. Determined to defy old age and loneliness, she rushes headlong into a whirl of singles’ parties on the hunt for instant gratification – which only leads to repeated disappointment and enduring emptiness. But when Gloria meets Rodolfo, an ex-naval officer seven years her senior, she begins to imagine the possibility of a permanent relationship.", + "posterPath": "/t1copJu3ecVx7zVCBA1o6z02WcZ.jpg", + "backdropPath": "/xqc5l6CCOBqni0gT9J2nvodhCD.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-05-08", + "releaseYear": "2013", + "originalLanguage": "es", + "voteAverage": 6.6, + "voteCount": 194, + "popularity": 6.1638 + }, + { + "id": 26466, + "title": "Triangle", + "originalTitle": "Triangle", + "overview": "When Jess sets sail on a yacht with a group of friends, she cannot shake the feeling that there is something wrong.", + "posterPath": "/cRlMrbc4Iof7vN0ZqHwJnMBYBLi.jpg", + "backdropPath": "/rlVpm5r7vZYyU9JHWf9UGOVDo5M.jpg", + "mediaType": "movie", + "genreIds": [ + 27 + ], + "genres": [ + "Horror" + ], + "releaseDate": "2009-10-16", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.915, + "voteCount": 2834, + "popularity": 6.1633 + }, + { + "id": 1237266, + "title": "Runt", + "originalTitle": "Runt", + "overview": "In the Australian town of Upson Downs, ten-year-old Annie and Runt, her stray dog, attempt to win the Agility Course Championship at the Krumpets Dog Show in London in order to save their family's farm from drought and misery.", + "posterPath": "/ycSTEW0v36BlhG4FPDTy9ykrEAv.jpg", + "backdropPath": "/2JoAuzH6TZXuT4RPW5h9wNaJBkg.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 12, + 35, + 18 + ], + "genres": [ + "Family", + "Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2024-09-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.889, + "voteCount": 10, + "popularity": 6.163 + }, + { + "id": 517769, + "title": "Central Park", + "originalTitle": "Central Park", + "overview": "School is boring, family life unbearable, and Harold and his high school friends have turned Central Park into their 'spot'. Unbeknownst to them, a revenge-seeking executioner prepares to kill them off one by one to pay for the sins of the father.", + "posterPath": "/qk7Or5KP9fHEIWOyw2XgKrxMGbE.jpg", + "backdropPath": "/dE34pfzZd1BYE98bne4Jc6YRllD.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2017-06-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 4.533, + "voteCount": 30, + "popularity": 6.1627 + }, + { + "id": 55922, + "title": "White Coats", + "originalTitle": "Intern Academy", + "overview": "Follows the misadventures of a group of young interns at a hospital/medical school - dealing with the pressures of school and love.", + "posterPath": "/a6YQiS6nseTBsENp93r6mbfjSvc.jpg", + "backdropPath": "/3YTH3XzxwD7AiMe1tKyyytsxnq8.jpg", + "mediaType": "movie", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2004-05-16", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 4.944, + "voteCount": 54, + "popularity": 6.1626 + }, + { + "id": 9208, + "title": "Broken Arrow", + "originalTitle": "Broken Arrow", + "overview": "When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.", + "posterPath": "/iBPMwYYJFvdCBkXrwV75peo5Lz2.jpg", + "backdropPath": "/446lXnrT0vSIkeClW8bCN8KrnxN.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 53 + ], + "genres": [ + "Action", + "Thriller" + ], + "releaseDate": "1996-02-09", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.063, + "voteCount": 1605, + "popularity": 6.1626 + }, + { + "id": 1698, + "title": "Anatomy", + "originalTitle": "Anatomie", + "overview": "Medical student Paula wins a place at an exclusive Heidelberg medical school. When the body of a young man she met on the train turns up on her dissection table, she begins to investigate the mysterious circumstances surrounding his death.", + "posterPath": "/hZgnRhrOkmjjod5u3umbw4y08kX.jpg", + "backdropPath": "/6OzOuU2JE0lm11p0UEUm3dCiH3L.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2000-02-03", + "releaseYear": "2000", + "originalLanguage": "de", + "voteAverage": 6.1, + "voteCount": 305, + "popularity": 6.1623 + }, + { + "id": 661655, + "title": "U-Turn", + "originalTitle": "U-Turn", + "overview": "A young reporter's investigation into a string of grisly suicides takes a dangerous detour when she follows the clues to a cursed stretch of road.", + "posterPath": "/niRbJiZWkiP8U4IBMnMeDZjjJ05.jpg", + "backdropPath": "/dy86RZeiYlr7798lRqprHBc4Xtd.jpg", + "mediaType": "movie", + "genreIds": [ + 9648, + 53, + 27 + ], + "genres": [ + "Mystery", + "Thriller", + "Horror" + ], + "releaseDate": "2020-10-30", + "releaseYear": "2020", + "originalLanguage": "tl", + "voteAverage": 5.5, + "voteCount": 10, + "popularity": 6.1622 + }, + { + "id": 1104845, + "title": "Plankton: The Movie", + "originalTitle": "Plankton: The Movie", + "overview": "Plankton's tangled love story with his sentient computer wife goes sideways when she takes a stand — and decides to destroy the world without him.", + "posterPath": "/hGaUNLF5VZbg9ovPTyjm9Rv5xWz.jpg", + "backdropPath": "/lsgT602GYV8ts97sKH1gWFtQs1k.jpg", + "mediaType": "movie", + "genreIds": [ + 10751, + 35, + 12, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Adventure", + "Animation" + ], + "releaseDate": "2025-03-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.772, + "voteCount": 134, + "popularity": 6.1618 + }, + { + "id": 440597, + "title": "Wish Upon", + "originalTitle": "Wish Upon", + "overview": "A teenage girl discovers a box with magical powers, but those powers comes with a deadly price.", + "posterPath": "/u0vnocj57vJt5DHoBEqUOD1G4SU.jpg", + "backdropPath": "/rYpOaLb908aDspCuaa1o7nn5Bf.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53, + 14 + ], + "genres": [ + "Horror", + "Thriller", + "Fantasy" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.701, + "voteCount": 1416, + "popularity": 6.1616 + }, + { + "id": 16636, + "title": "Spellbound", + "originalTitle": "Spellbound", + "overview": "This documentary follows 8 teens and pre-teens as they work their way toward the finals of the Scripps Howard national spelling bee championship in Washington D.C.", + "posterPath": "/whPFGfqZayYOU5f5mx0GdXZOgpi.jpg", + "backdropPath": "/yKjaeMSOJ0ObahfjcoSPLMSeOXE.jpg", + "mediaType": "movie", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2002-03-14", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.357, + "voteCount": 115, + "popularity": 6.1614 + }, + { + "id": 6073, + "title": "The Mexican", + "originalTitle": "The Mexican", + "overview": "Jerry Welbach, a reluctant bagman, has been given two ultimatums: The first is from his mob boss to travel to Mexico and retrieve a priceless antique pistol, known as \"the Mexican\"... or suffer the consequences. The second is from his girlfriend Samantha to end his association with the mob. Jerry figures alive and in trouble with Samantha is better than the more permanent alternative, so he heads south of the border.", + "posterPath": "/5GqF6rVjUW6CVTuj7w1A2JE49AF.jpg", + "backdropPath": "/nfG7okcUaUknI8HsDg25eQpQu3L.jpg", + "mediaType": "movie", + "genreIds": [ + 28, + 35, + 80, + 10749 + ], + "genres": [ + "Action", + "Comedy", + "Crime", + "Romance" + ], + "releaseDate": "2001-03-01", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.923, + "voteCount": 1535, + "popularity": 6.1613 + }, + { + "id": 4175, + "title": "Under Capricorn", + "originalTitle": "Under Capricorn", + "overview": "A British ex-convict in colonial Australia and his fragile wife, haunted by the past crime that binds them, struggle to rebuild their lives when a young newcomer stirs long-buried passions and secrets.", + "posterPath": "/90wKMRxhGFrWXt4rJvVfqVEjpQ1.jpg", + "backdropPath": "/rF35vILVjqI2ryfiiKkP8EQNvU8.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 36 + ], + "genres": [ + "Drama", + "History" + ], + "releaseDate": "1949-09-08", + "releaseYear": "1949", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 177, + "popularity": 6.1613 + }, + { + "id": 64682, + "title": "The Great Gatsby", + "originalTitle": "The Great Gatsby", + "overview": "An adaptation of F. Scott Fitzgerald's Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby's nouveau riche existence, where obsession, madness, and tragedy await.", + "posterPath": "/tyxfCBQv6Ap74jcu3xd7aBiaa29.jpg", + "backdropPath": "/5mQZqk2qSJCsYmvw1cQJLEcLNYM.jpg", + "mediaType": "movie", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2013-05-09", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.359, + "voteCount": 12686, + "popularity": 6.1612 + }, + { + "id": 18196, + "title": "The Sentinel", + "originalTitle": "The Sentinel", + "overview": "As a young girl, Alison Parker attempted suicide after being traumatized by her father's sexual exploits. Now an elite fashion model, she moves to a Brooklyn Heights apartment building where she encounters a number of bizarre, eccentric tenants and attempts to uncover the building's sinister secret.", + "posterPath": "/zoLuOdAD63prJP0o3Z0zRaAfwXE.jpg", + "backdropPath": "/mMgJg2sfV4DouMby9EyU1pKsUMW.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648, + 14 + ], + "genres": [ + "Horror", + "Mystery", + "Fantasy" + ], + "releaseDate": "1977-01-07", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 218, + "popularity": 6.161 + }, + { + "id": 676, + "title": "Pearl Harbor", + "originalTitle": "Pearl Harbor", + "overview": "The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7, 1941.", + "posterPath": "/y8A0Cvp8WQmZ3bjbnsL53lY0dsC.jpg", + "backdropPath": "/obyCUbpZvMTizOqYWHqkTFgfvnf.jpg", + "mediaType": "movie", + "genreIds": [ + 10752, + 10749, + 36, + 28 + ], + "genres": [ + "War", + "Romance", + "History", + "Action" + ], + "releaseDate": "2001-05-21", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.94, + "voteCount": 6796, + "popularity": 6.1603 + }, + { + "id": 46878, + "title": "The Swarm", + "originalTitle": "The Swarm", + "overview": "Scientist Dr. Bradford Crane and army general Thalius Slater join forces to fight an almost invisible enemy threatening America; killer bees that have deadly venom and attack without reason. Disaster movie-master Irwin Allen's film contains spectacular special effects, including a train crash caused by the eponymous swarm.", + "posterPath": "/pO5qEEpjxdQ40ScLcFOowyziNiT.jpg", + "backdropPath": "/85DvqETKn8IF0bq74cY8H56NPU8.jpg", + "mediaType": "movie", + "genreIds": [ + 53, + 878, + 27 + ], + "genres": [ + "Thriller", + "Science Fiction", + "Horror" + ], + "releaseDate": "1978-06-26", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 187, + "popularity": 6.1601 + }, + { + "id": 107107, + "title": "Outer Touch", + "originalTitle": "Outer Touch", + "overview": "Three specimens from a female race of aliens crash land in England and abduct four earthlings by accident. They decide to use the opportunity to start experimenting... on the males.", + "posterPath": "/ncVba2g4lxTtGsAphu6XUxvXFiQ.jpg", + "backdropPath": "/wMj7DDX5XBjMjGapcIgJXO7QVBK.jpg", + "mediaType": "movie", + "genreIds": [ + 35, + 878 + ], + "genres": [ + "Comedy", + "Science Fiction" + ], + "releaseDate": "1979-07-01", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 22, + "popularity": 6.1599 + }, + { + "id": 14255, + "title": "Pulse 3", + "originalTitle": "Pulse 3", + "overview": "Seven years after the last attack by the \"soulless ghosts\" who haunted the human race twice before, the world is left void of all deadly electronics that almost destroyed it... or so we thought. Living a primitive existence on the outskirts of the city, human survivors are surviving without any trace of technology. That is until 16 year old Justine enters the city and, letting her curiosity get the best of her, opens a working laptop and unknowingly unleashes the most terrifying attack the survivors have ever faced. In a world already torn and without hope, can humanity make it through the toughest struggle of all time?", + "posterPath": "/mBETskWqWuaqniogjdBqTMDNZ2z.jpg", + "backdropPath": "/nlfWocRL1KUVNOK7vH7Ld1vW9sn.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 53 + ], + "genres": [ + "Horror", + "Thriller" + ], + "releaseDate": "2008-12-23", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 73, + "popularity": 6.1593 + }, + { + "id": 1043725, + "title": "The Moogai", + "originalTitle": "The Moogai", + "overview": "A young Aboriginal couple brings home their second baby. What should be a joyous time takes a sinister turn, as the baby's mother starts seeing a malevolent spirit she is convinced is trying to take her baby.", + "posterPath": "/5CjhoLMEd0NKWy7Yyazf2CPqlwk.jpg", + "backdropPath": "/wT4fcew9465XBxJPh0qHEV17d05.jpg", + "mediaType": "movie", + "genreIds": [ + 27, + 9648 + ], + "genres": [ + "Horror", + "Mystery" + ], + "releaseDate": "2024-10-31", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.875, + "voteCount": 12, + "popularity": 6.159 + }, + { + "id": 500244, + "title": "The Simone Biles Story: Courage to Soar", + "originalTitle": "The Simone Biles Story: Courage to Soar", + "overview": "Based on her book, this World Premiere film follows Simone Biles through the sacrifices and hard work that led her to win 19 Olympic and World Championship medals.", + "posterPath": "/bcvRmSAhK2ObpCAb64JkEaTMhT0.jpg", + "backdropPath": "/gpZW1Fb8OhHimTv3SIeD2y9qQWF.jpg", + "mediaType": "movie", + "genreIds": [ + 10770, + 18 + ], + "genres": [ + "TV Movie", + "Drama" + ], + "releaseDate": "2018-02-03", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 22, + "popularity": 6.1582 + } + ], + "tv": [ + { + "id": 66732, + "title": "Stranger Things", + "originalTitle": "Stranger Things", + "overview": "When a young boy vanishes, a small town uncovers a mystery involving secret experiments, terrifying supernatural forces, and one strange little girl.", + "posterPath": "/cVxVGwHce6xnW8UaVUggaPXbmoE.jpg", + "backdropPath": "/56v2KjBlU4XaOv9rVYEQypROD7P.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2016-07-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.601, + "voteCount": 19391, + "popularity": 1205.7718 + }, + { + "id": 200875, + "title": "IT: Welcome to Derry", + "originalTitle": "IT: Welcome to Derry", + "overview": "In 1962, a couple with their son move to Derry, Maine just as a young boy disappears. With their arrival, very bad things begin to happen in the town.", + "posterPath": "/ycC53SEDcY7YDOSrFqPQigxaCyx.jpg", + "backdropPath": "/2fOKVDoc2O3eZmBZesWPuE5kgPN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-10-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.154, + "voteCount": 601, + "popularity": 292.3664 + }, + { + "id": 1622, + "title": "Supernatural", + "originalTitle": "Supernatural", + "overview": "When they were boys, Sam and Dean Winchester lost their mother to a mysterious and demonic supernatural force. Subsequently, their father raised them to be soldiers. He taught them about the paranormal evil that lives in the dark corners and on the back roads of America ... and he taught them how to kill it. Now, the Winchester brothers crisscross the country in their '67 Chevy Impala, battling every kind of supernatural threat they encounter along the way. ", + "posterPath": "/u40gJarLPlIkwouKlzGdobQOV9k.jpg", + "backdropPath": "/ro0tlgnsco4SwbdAgmscLkSlMSL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-09-13", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 8095, + "popularity": 141.6764 + }, + { + "id": 2734, + "title": "Law & Order: Special Victims Unit", + "originalTitle": "Law & Order: Special Victims Unit", + "overview": "In the criminal justice system, sexually-based offenses are considered especially heinous. In New York City, the dedicated detectives who investigate these vicious felonies are members of an elite squad known as the Special Victims Unit. These are their stories.", + "posterPath": "/iofokHZoUB4Qhik4PflvJl8TT6a.jpg", + "backdropPath": "/2wgk47yrb2WnXAdSBLFX9EiU882.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1999-09-20", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 4067, + "popularity": 121.5935 + }, + { + "id": 1416, + "title": "Grey's Anatomy", + "originalTitle": "Grey's Anatomy", + "overview": "Follows the personal and professional lives of a group of doctors at Seattle’s Grey Sloan Memorial Hospital.", + "posterPath": "/hjJkrLXhWvGHpLeLBDFznpBTY1S.jpg", + "backdropPath": "/jP0Rhj9OTPDAwQlHQwOLFDdeE8t.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2005-03-27", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.212, + "voteCount": 10703, + "popularity": 115.8802 + }, + { + "id": 79744, + "title": "The Rookie", + "originalTitle": "The Rookie", + "overview": "Starting over isn't easy, especially for small-town guy John Nolan who, after a life-altering incident, is pursuing his dream of being an LAPD officer. As the force's oldest rookie, he’s met with skepticism from some higher-ups who see him as just a walking midlife crisis.", + "posterPath": "/bL1mwXDnH5fCxqc4S2n40hoVyoe.jpg", + "backdropPath": "/2m1Mu0xPj4SikiqkaolTRUcNtWH.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2018-10-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.515, + "voteCount": 2781, + "popularity": 110.2848 + }, + { + "id": 301507, + "title": "Heated Rivalry", + "originalTitle": "Heated Rivalry", + "overview": "Two of the biggest stars in Major League Hockey are bound by ambition, rivalry, and a magnetic pull neither of them fully understands. What begins as a secret fling between two fresh faced rookies evolves into a years-long journey of love, denial, and self-discovery. Over the next eight years, as they chase glory on the ice, they struggle to navigate their feelings for each other. Torn between the sport they live for and the love they can’t ignore, they must decide if there’s room in their fiercely competitive world for something as fragile – and powerful – as real love.", + "posterPath": "/vG2YAAKxCpxXiFcPqZoYWNbUruR.jpg", + "backdropPath": "/1LQE7WzkgqSJFaKY1zWM6ExPdGm.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-11-28", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.48, + "voteCount": 25, + "popularity": 107.7784 + }, + { + "id": 4614, + "title": "NCIS", + "originalTitle": "NCIS", + "overview": "From murder and espionage to terrorism and stolen submarines, a team of special agents investigates any crime that has any connection to Navy and Marine Corps personnel, regardless of rank or position.", + "posterPath": "/mBcu8d6x6zB1el3MPNl7cZQEQ31.jpg", + "backdropPath": "/c1aBrG5s5xFa6Tbnihu2Hhj4t2q.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2003-09-23", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.623, + "voteCount": 2418, + "popularity": 100.0536 + }, + { + "id": 1405, + "title": "Dexter", + "originalTitle": "Dexter", + "overview": "Dexter Morgan, a blood spatter pattern analyst for the Miami Metro Police also leads a secret life as a serial killer, hunting down criminals who have slipped through the cracks of justice.", + "posterPath": "/q8dWfc4JwQuv3HayIZeO84jAXED.jpg", + "backdropPath": "/aSGSxGMTP893DPMCvMl9AdnEICE.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2006-10-01", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 5083, + "popularity": 97.3088 + }, + { + "id": 239385, + "title": "The Manipulated", + "originalTitle": "조각도시", + "overview": "Mild-mannered Tae-jung is wrongfully imprisoned for a heinous crime. He soon discovers that a mysterious figure named Yo-han orchestrated his downfall. Fueled by vengeance, Tae-jung sets out to make Yo-han pay.", + "posterPath": "/nOj4nsomFyAVJgpp68L0xq3cREc.jpg", + "backdropPath": "/cqkmEHLE4LjPHSqKdLt4pJFJv0f.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-11-05", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.5, + "voteCount": 50, + "popularity": 97.1621 + }, + { + "id": 153312, + "title": "Tulsa King", + "originalTitle": "Tulsa King", + "overview": "New York mafia capo Dwight \"The General\" Manfredi is released from prison after 25 years and exiled by his boss to set up shop in Tulsa, Oklahoma. Realizing that his mob family may not have his best interests in mind, Dwight slowly builds a crew.", + "posterPath": "/rOYLWCdAifpUtPlTf1WHxyaxeMt.jpg", + "backdropPath": "/mNHRGO1gFpR2CYZdANe72kcKq7G.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2022-11-13", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.311, + "voteCount": 2424, + "popularity": 93.7304 + }, + { + "id": 1399, + "title": "Game of Thrones", + "originalTitle": "Game of Thrones", + "overview": "Seven noble families fight for control of the mythical land of Westeros. Friction between the houses leads to full-scale war. All while a very ancient evil awakens in the farthest north. Amidst the war, a neglected military order of misfits, the Night's Watch, is all that stands between the realms of men and icy horrors beyond.", + "posterPath": "/1XS1oqL89opfnbLl8WnZY1O1uJx.jpg", + "backdropPath": "/zZqpAXxVSBtxV9qPBcscfXBcL2w.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2011-04-17", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.46, + "voteCount": 25867, + "popularity": 91.9964 + }, + { + "id": 34307, + "title": "Shameless", + "originalTitle": "Shameless", + "overview": "Chicagoan Frank Gallagher is the proud single dad of six smart, industrious, independent kids, who without him would be... perhaps better off. When Frank's not at the bar spending what little money they have, he's passed out on the floor. But the kids have found ways to grow up in spite of him. They may not be like any family you know, but they make no apologies for being exactly who they are.", + "posterPath": "/ifo31fMWLmyOVpdak9K0kY4jldQ.jpg", + "backdropPath": "/5s9XHTB9SLPdg3mNU6BlSLnZ9Qq.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2011-01-09", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.164, + "voteCount": 3110, + "popularity": 91.6268 + }, + { + "id": 456, + "title": "The Simpsons", + "originalTitle": "The Simpsons", + "overview": "Set in Springfield, the average American town, the show focuses on the antics and everyday adventures of the Simpson family; Homer, Marge, Bart, Lisa and Maggie, as well as a virtual cast of thousands. Since the beginning, the series has been a pop culture icon, attracting hundreds of celebrities to guest star. The show has also made name for itself in its fearless satirical take on politics, media and American life in general.", + "posterPath": "/uWpG7GqfKGQqX4YMAo3nv5OrglV.jpg", + "backdropPath": "/jvTeRgjFsp66xj8SWxhr7O2J4ud.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35 + ], + "genres": [ + "Family", + "Animation", + "Comedy" + ], + "releaseDate": "1989-12-17", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 8.013, + "voteCount": 10468, + "popularity": 90.8628 + }, + { + "id": 46952, + "title": "The Blacklist", + "originalTitle": "The Blacklist", + "overview": "Raymond \"Red\" Reddington, one of the FBI's most wanted fugitives, surrenders in person at FBI Headquarters in Washington, D.C. He claims that he and the FBI have the same interests: bringing down dangerous criminals and terrorists. In the last two decades, he's made a list of criminals and terrorists that matter the most but the FBI cannot find because it does not know they exist. Reddington calls this \"The Blacklist\". Reddington will co-operate, but insists that he will speak only to Elizabeth Keen, a rookie FBI profiler.", + "posterPath": "/4HTfd1PhgFUenJxVuBDNdLmdr0c.jpg", + "backdropPath": "/2eIlCirgcvEwmCSYh2wDfz5Sxvz.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2013-09-23", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.639, + "voteCount": 3426, + "popularity": 87.2434 + }, + { + "id": 71912, + "title": "The Witcher", + "originalTitle": "The Witcher", + "overview": "Geralt of Rivia, a mutated monster-hunter for hire, journeys toward his destiny in a turbulent world where people often prove more wicked than beasts.", + "posterPath": "/AoGsDM02UVt0npBA8OvpDcZbaMi.jpg", + "backdropPath": "/foGkPxpw9h8zln81j63mix5B7m8.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2019-12-20", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.97, + "voteCount": 6407, + "popularity": 85.4341 + }, + { + "id": 1408, + "title": "House", + "originalTitle": "House", + "overview": "Dr. Gregory House, a drug-addicted, unconventional, misanthropic medical genius, leads a team of diagnosticians at the fictional Princeton–Plainsboro Teaching Hospital in New Jersey.", + "posterPath": "/3Cz7ySOQJmqiuTdrc6CY0r65yDI.jpg", + "backdropPath": "/r0Q6eeN9L1ORL9QsV0Sg8ZV3vnv.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 9648 + ], + "genres": [ + "Drama", + "Comedy", + "Mystery" + ], + "releaseDate": "2004-11-16", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.584, + "voteCount": 7191, + "popularity": 84.8949 + }, + { + "id": 1396, + "title": "Breaking Bad", + "originalTitle": "Breaking Bad", + "overview": "Walter White, a New Mexico chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of only two years left to live. He becomes filled with a sense of fearlessness and an unrelenting desire to secure his family's financial future at any cost as he enters the dangerous world of drugs and crime.", + "posterPath": "/ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg", + "backdropPath": "/tsRy63Mu5cu8etL1X7ZLyf7UP1M.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2008-01-20", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.936, + "voteCount": 16618, + "popularity": 84.7168 + }, + { + "id": 302463, + "title": "Dinastía Casillas", + "originalTitle": "Dinastía Casillas", + "overview": "", + "posterPath": "/xbBJBKssJr85OzAJNSuWdkh5p4v.jpg", + "backdropPath": "/b4D9I3nz4Iya8Pd566PpOvz9q6O.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 9648 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 8.368, + "voteCount": 193, + "popularity": 82.0026 + }, + { + "id": 225171, + "title": "Pluribus", + "originalTitle": "Pluribus", + "overview": "The most miserable person on Earth must save the world from happiness.", + "posterPath": "/nrM2xFUfKJJEmZzd5d7kohT2G0C.jpg", + "backdropPath": "/ulm1ex4JFYJByyaPyqTr47MFyEQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-11-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.927, + "voteCount": 184, + "popularity": 81.1238 + }, + { + "id": 549, + "title": "Law & Order", + "originalTitle": "Law & Order", + "overview": "In cases ripped from the headlines, police investigate serious and often deadly crimes, weighing the evidence and questioning the suspects until someone is taken into custody. The district attorney's office then builds a case to convict the perpetrator by proving the person guilty beyond a reasonable doubt. Working together, these expert teams navigate all sides of the complex criminal justice system to make New York a safer place.", + "posterPath": "/haJ9eHytVO3H3JooMJG1DiWwDNm.jpg", + "backdropPath": "/tc7canPSAn2X14hYi6Rl3gZm1o4.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1990-09-13", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 648, + "popularity": 79.9711 + }, + { + "id": 4057, + "title": "Criminal Minds", + "originalTitle": "Criminal Minds", + "overview": "An elite team of FBI profilers analyze the country's most twisted criminal minds, anticipating their next moves before they strike again. The Behavioral Analysis Unit's most experienced agent is David Rossi, a founding member of the BAU who returns to help the team solve new cases.", + "posterPath": "/gigxjNnACiXAfrwoMox5WJFgc0I.jpg", + "backdropPath": "/65Y6PweSvQ1OOFBzStybjipURRP.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2005-09-22", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.305, + "voteCount": 3957, + "popularity": 79.8132 + }, + { + "id": 283123, + "title": "Esref Ruya", + "originalTitle": "Eşref Rüya", + "overview": "As a child, Eşref fell in love from afar with a girl he called “Rüya” and spent years searching for her, only to become a powerful mafia figure along the way. Meanwhile, Nisan, an idealistic musician, finds herself in grave danger after performing at a wedding held at Eşref’s hotel. Eşref falls for Nisan, unaware that she is both the long-lost Rüya he has been chasing for years and a police informant. Trapped in a whirlwind of love, betrayal, and power struggles, Eşref is forced into a brutal reckoning—both with his criminal empire and his own emotions.", + "posterPath": "/eeFYLgiRFaG3bKx1qLyC7YOdHJz.jpg", + "backdropPath": "/opxjwbFSadDgVmZtrLTlWJsUxrB.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-03-19", + "releaseYear": "2025", + "originalLanguage": "tr", + "voteAverage": 7.2, + "voteCount": 21, + "popularity": 78.0974 + }, + { + "id": 1434, + "title": "Family Guy", + "originalTitle": "Family Guy", + "overview": "Sick, twisted, politically incorrect and Freakin' Sweet animated series featuring the adventures of the dysfunctional Griffin family. Bumbling Peter and long-suffering Lois have three kids. Stewie (a brilliant but sadistic baby bent on killing his mother and taking over the world), Meg (the oldest, and is the most unpopular girl in town) and Chris (the middle kid, he's not very bright but has a passion for movies). The final member of the family is Brian - a talking dog and much more than a pet, he keeps Stewie in check whilst sipping Martinis and sorting through his own life issues.", + "posterPath": "/8o8kiBkWFK3gVytHdyzEWUBXVfK.jpg", + "backdropPath": "/lgGZ2ysbRyAOi2VgIZpp6k8qILj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-01-31", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.387, + "voteCount": 4725, + "popularity": 70.0609 + }, + { + "id": 13796, + "title": "Underbelly", + "originalTitle": "Underbelly", + "overview": "Underbelly is an Australian television true crime-drama series, each series is a stand alone story based on real-life events.", + "posterPath": "/x6BQ3YYR4Xe4LsOkhazqxKprQ3O.jpg", + "backdropPath": "/hoBZ9iuA8ejjIHN9RIvHI5mPWd0.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-02-13", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 43, + "popularity": 69.1954 + }, + { + "id": 44217, + "title": "Vikings", + "originalTitle": "Vikings", + "overview": "The adventures of Ragnar Lothbrok, the greatest hero of his age. The series tells the sagas of Ragnar's band of Viking brothers and his family, as he rises to become King of the Viking tribes. As well as being a fearless warrior, Ragnar embodies the Norse traditions of devotion to the gods. Legend has it that he was a direct descendant of Odin, the god of war and warriors.", + "posterPath": "/bQLrHIRNEkE3PdIWQrZHynQZazu.jpg", + "backdropPath": "/lHe8iwM4Cdm6RSEiara4PN8ZcBd.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10768 + ], + "genres": [ + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "2013-03-03", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.095, + "voteCount": 7392, + "popularity": 68.9862 + }, + { + "id": 764, + "title": "Midsomer Murders", + "originalTitle": "Midsomer Murders", + "overview": "The peacefulness of the Midsomer community is shattered by violent crimes, suspects are placed under suspicion, and it is up to a veteran DCI and his young sergeant to calmly and diligently eliminate the innocent and ruthlessly pursue the guilty. ", + "posterPath": "/31wojXBSLT6LYTUMyc6BiyXqUyP.jpg", + "backdropPath": "/qVmgq1KXBp6BF2EqYPPaUG9iUGy.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1997-03-23", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 334, + "popularity": 68.4971 + }, + { + "id": 1407, + "title": "Homeland", + "originalTitle": "Homeland", + "overview": "CIA officer Carrie Mathison is tops in her field despite being bipolar, which makes her volatile and unpredictable. With the help of her long-time mentor Saul Berenson, Carrie fearlessly risks everything, including her personal well-being and even sanity, at every turn.", + "posterPath": "/6GAvS2e6VIRsms9FpVt33PsCoEW.jpg", + "backdropPath": "/391ixi0wVbFtFLQnOy8ZncWv2io.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768, + 80 + ], + "genres": [ + "Drama", + "War & Politics", + "Crime" + ], + "releaseDate": "2011-10-02", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.58, + "voteCount": 2419, + "popularity": 67.8254 + }, + { + "id": 281009, + "title": "The Jewel of Section E", + "originalTitle": "Ang Mutya ng Section E", + "overview": "Jay-jay, the only girl in the mischievous Section E, hopes for a fresh start in high school but quickly becomes the target of her rowdy male classmates' pranks and schemes to make her leave. Dubbed their \"Mutya\" (muse), she fights back with wit and charm, turning the tables on her tormentors. Amidst the chaos, unexpected friendships blossom, and hilarious misunderstandings lead to heart-fluttering moments. Can Jay-jay survive the madness of Section E, or will she win over their hearts instead?", + "posterPath": "/2wBlN0pC9U1LWmLNTdOuR76NSHe.jpg", + "backdropPath": "/vyC7bYAd3lPHeg47VDz4iZ97wRP.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-01-03", + "releaseYear": "2025", + "originalLanguage": "tl", + "voteAverage": 8.3, + "voteCount": 77, + "popularity": 66.2445 + }, + { + "id": 72755, + "title": "Absentia", + "originalTitle": "Absentia", + "overview": "A missing FBI agent reappears six years after being declared dead.", + "posterPath": "/t3yVaAlmCLBwbqTrKGcWHwuCmkh.jpg", + "backdropPath": "/OwDuNYVpVsC4kBcGvniaEraUM7.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2017-09-25", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 346, + "popularity": 65.9098 + }, + { + "id": 210865, + "title": "Golden Boy", + "originalTitle": "Yalı Çapkını", + "overview": "A young girl is forced to marry a rich groom. The groom is not only rich, but also allows himself to live without any restrictions or obligations. Will married life change his habits? And how will such a man be accepted by a good-hearted wife?", + "posterPath": "/yTHaFClgAktpHwlAJzZGftep2ok.jpg", + "backdropPath": "/vDqCoaMU5FUAuUs0EvL4OAUCxJk.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2022-09-23", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 8.3, + "voteCount": 87, + "popularity": 65.5777 + }, + { + "id": 1668, + "title": "Friends", + "originalTitle": "Friends", + "overview": "Six young people from New York City, on their own and struggling to survive in the real world, find the companionship, comfort and support they get from each other to be the perfect antidote to the pressures of life.", + "posterPath": "/f496cm9enuEsZkSPzCwnTESEK5s.jpg", + "backdropPath": "/wGI8MPfv23B80AF5Yrg1Ss2mVCp.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1994-09-22", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 8705, + "popularity": 65.0924 + }, + { + "id": 63926, + "title": "One-Punch Man", + "originalTitle": "ワンパンマン", + "overview": "The most powerful superhero in the world can kill anyone with one blow. But nothing can challenge him, so he struggles with ennui and depression.", + "posterPath": "/dT10AxJIXVvRwFAew4tt2RhzJrD.jpg", + "backdropPath": "/s0w8JbuNNxL1YgaHeDWih12C3jG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.395, + "voteCount": 3919, + "popularity": 63.4458 + }, + { + "id": 5920, + "title": "The Mentalist", + "originalTitle": "The Mentalist", + "overview": "Patrick Jane, a former celebrity psychic medium, uses his razor sharp skills of observation and expertise at \"reading\" people to solve serious crimes with the California Bureau of Investigation.", + "posterPath": "/acYXu4KaDj1NIkMgObnhe4C4a0T.jpg", + "backdropPath": "/q3pCsNvJ7CmdJUz2sJEEUY3pOPC.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2008-09-23", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.357, + "voteCount": 4075, + "popularity": 63.2903 + }, + { + "id": 37680, + "title": "Suits", + "originalTitle": "Suits", + "overview": "While running from a drug deal gone bad, Mike Ross, a brilliant young college-dropout, slips into a job interview with one of New York City's best legal closers, Harvey Specter. Tired of cookie-cutter law school grads, Harvey takes a gamble by hiring Mike on the spot after he recognizes his raw talent and photographic memory.", + "posterPath": "/vQiryp6LioFxQThywxbC6TuoDjy.jpg", + "backdropPath": "/or0E36KfzJYZwqXeiCfm1JgepKF.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-06-23", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.223, + "voteCount": 5452, + "popularity": 61.582 + }, + { + "id": 119051, + "title": "Wednesday", + "originalTitle": "Wednesday", + "overview": "Smart, sarcastic and a little dead inside, Wednesday Addams investigates twisted mysteries while making new friends — and foes — at Nevermore Academy.", + "posterPath": "/36xXlhEpQqVVPuiZhfoQuaY4OlA.jpg", + "backdropPath": "/iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Comedy" + ], + "releaseDate": "2022-11-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.37, + "voteCount": 10090, + "popularity": 60.9586 + }, + { + "id": 1402, + "title": "The Walking Dead", + "originalTitle": "The Walking Dead", + "overview": "Sheriff's deputy Rick Grimes awakens from a coma to find a post-apocalyptic world dominated by flesh-eating zombies. He sets out to find his family and encounters many other survivors along the way.", + "posterPath": "/ng3cMtxYKt1OSQYqFlnKWnVsqNO.jpg", + "backdropPath": "/rAOjnEFTuNysY7bot8zonhImGMh.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-31", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.091, + "voteCount": 17347, + "popularity": 60.06 + }, + { + "id": 73586, + "title": "Yellowstone", + "originalTitle": "Yellowstone", + "overview": "Follow the violent world of the Dutton family, who controls the largest contiguous ranch in the United States. Led by their patriarch John Dutton, the family defends their property against constant attack by land developers, an Indian reservation, and America’s first National Park.", + "posterPath": "/s4QRRYc1V2e68Qy9Wel9MI8fhRP.jpg", + "backdropPath": "/ynSOcgDLZfdLCZfRSYZGiTgYJVo.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "2018-06-20", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.253, + "voteCount": 2930, + "popularity": 59.4902 + }, + { + "id": 1911, + "title": "Bones", + "originalTitle": "Bones", + "overview": "Dr. Temperance Brennan and her colleagues at the Jeffersonian's Medico-Legal Lab assist Special Agent Seeley Booth with murder investigations when the remains are so badly decomposed, burned or destroyed that the standard identification methods are useless.", + "posterPath": "/eyTu5c8LniVciRZIOSHTvvkkgJa.jpg", + "backdropPath": "/4AXxajuAz9tHAOe6h5zDg8z1X2s.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2005-09-13", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.206, + "voteCount": 3353, + "popularity": 57.4355 + }, + { + "id": 271823, + "title": "Playing Gracie Darling", + "originalTitle": "Playing Gracie Darling", + "overview": "When Joni was 14, her best friend Gracie Darling disappeared during a séance. Some 27 years on, the local kids in a small town get their kicks with a game of 'Playing Gracie Darling' – but the seemingly innocent game turns sinister when another girl disappears. Joni, by then a child psychologist, returns to the town and partners with a police sergeant Jay to uncover the truth, while Gracie's sister Ruth faces a mother's worst nightmare when her own daughter vanishes under hauntingly similar circumstances.", + "posterPath": "/7UWdkbSUd1d1GB28IyIKDbftzhM.jpg", + "backdropPath": "/suCtNSA0U8Gtb7JxMJ6IfhHJUwa.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-08-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 12, + "popularity": 57.215 + }, + { + "id": 2316, + "title": "The Office", + "originalTitle": "The Office", + "overview": "The everyday lives of office employees in the Scranton, Pennsylvania branch of the fictional Dunder Mifflin Paper Company.", + "posterPath": "/dg9e5fPRRId8PoBE0F6jl5y85Eu.jpg", + "backdropPath": "/mLyW3UTgi2lsMdtueYODcfAB9Ku.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-03-24", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.588, + "voteCount": 4809, + "popularity": 56.7471 + }, + { + "id": 278635, + "title": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "originalTitle": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "overview": "God created nine races in the ancient times. Humans were the weakest, most ridiculed race among them. Light, a human boy, was fortunate enough to be invited to join a party of all nine races called the \"Assembly of the Races.\" He was happy being a member for a while, but that was a short dream. His hopes were only to be betrayed by his fellow members at the largest, most heinous dungeon \"Abyss.\" After surviving by himself at the bottom of Abyss, Light learns the true meaning of his gift \"Unlimited Gacha.\" Light will rise from the worst despair to build his own empire of the strongest players.", + "posterPath": "/pGNBYEae87H8iLRF3AoztonnZkp.jpg", + "backdropPath": "/vnTrREtP0qBSmZHEEZR515FAXXB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.518, + "voteCount": 28, + "popularity": 56.7365 + }, + { + "id": 63174, + "title": "Lucifer", + "originalTitle": "Lucifer", + "overview": "Bored and unhappy as the Lord of Hell, Lucifer Morningstar abandoned his throne and retired to Los Angeles, where he has teamed up with LAPD detective Chloe Decker to take down criminals. But the longer he's away from the underworld, the greater the threat that the worst of humanity could escape.", + "posterPath": "/ekZobS8isE6mA53RAiGDG93hBxL.jpg", + "backdropPath": "/ncftkNAjIz2PBbUMY7T0CHVJP8d.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10765 + ], + "genres": [ + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-25", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.44, + "voteCount": 15198, + "popularity": 56.2384 + }, + { + "id": 2288, + "title": "Prison Break", + "originalTitle": "Prison Break", + "overview": "Due to a political conspiracy, an innocent man is sent to death row and his only hope is his brother, who makes it his mission to deliberately get himself sent to the same prison in order to break the both of them out, from the inside out.", + "posterPath": "/wnmNPaLvhnMeOqnWlhNkYCZxtda.jpg", + "backdropPath": "/n3Brk7roueE9HOwVmYlJx5j462g.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2005-08-29", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.076, + "voteCount": 5677, + "popularity": 55.0593 + }, + { + "id": 124364, + "title": "FROM", + "originalTitle": "FROM", + "overview": "Unravel the mystery of a nightmarish town in middle America that traps all those who enter. As the unwilling residents fight to keep a sense of normalcy and search for a way out, they must also survive the threats of the surrounding forest – including the terrifying creatures that come out when the sun goes down.", + "posterPath": "/cjXLrg4R7FRPFafvuQ3SSznQOd9.jpg", + "backdropPath": "/6gN8DYnIEln8v7OhRy61c57w0Xy.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 10765 + ], + "genres": [ + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-02-20", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.158, + "voteCount": 2235, + "popularity": 55.0013 + }, + { + "id": 157741, + "title": "Landman", + "originalTitle": "Landman", + "overview": "Set in the proverbial boomtowns of West-Texas and a modern-day tale of fortune-seeking in the world of oil rigs, the series is an upstairs/downstairs story of roughnecks and wildcat billionaires that are fueling a boom so big it’s reshaping our climate, our economy and our geopolitics.", + "posterPath": "/hYthRgS1nvQkGILn9YmqsF8kSk6.jpg", + "backdropPath": "/q71au2YjcwXBMZKNzNgjK7RZ3Hs.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.01, + "voteCount": 312, + "popularity": 54.9972 + }, + { + "id": 2691, + "title": "Two and a Half Men", + "originalTitle": "Two and a Half Men", + "overview": "A hedonistic jingle writer's free-wheeling life comes to an abrupt halt when his brother and 10-year-old nephew move into his beach-front house.", + "posterPath": "/xgfjxyV3g1S68opzuvG6G87muDp.jpg", + "backdropPath": "/uJFQayf3WqxIbS1drH5dTUx57Ph.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-09-22", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.445, + "voteCount": 3517, + "popularity": 54.5452 + }, + { + "id": 95603, + "title": "Kuruluş Osman", + "originalTitle": "Kuruluş Osman", + "overview": "The life of Osman Bey, the son of Ertuğrul and the founder of the Ottoman Empire, as he established and controlled it, facing internal and external struggles against Byzantium and the Mongol Ilkhanate.", + "posterPath": "/tu4BWsGFHcYDWulZwHxylA91vo0.jpg", + "backdropPath": "/ndLd4IIc90ajv5VpCaLfqmmEYOb.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 10759, + 18 + ], + "genres": [ + "War & Politics", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2019-11-20", + "releaseYear": "2019", + "originalLanguage": "tr", + "voteAverage": 7.886, + "voteCount": 290, + "popularity": 53.243 + }, + { + "id": 18165, + "title": "The Vampire Diaries", + "originalTitle": "The Vampire Diaries", + "overview": "The story of two vampire brothers obsessed with the same girl, who bears a striking resemblance to the beautiful but ruthless vampire they knew and loved in 1864.", + "posterPath": "/b3vl6wV1W8PBezFfntKTrhrehCY.jpg", + "backdropPath": "/cJYLon9ejKJV7ua03ab8Tj9u067.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-09-10", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8.309, + "voteCount": 9380, + "popularity": 53.219 + }, + { + "id": 250670, + "title": "Maxton Hall - The World Between Us", + "originalTitle": "Maxton Hall - Die Welt zwischen uns", + "overview": "When Ruby unwittingly witnesses an explosive secret at Maxton Hall private school, the arrogant millionaire heir James Beaufort has to deal with the quick-witted scholarship student for better or worse: He is determined to silence Ruby. Their passionate exchange of words unexpectedly ignites a spark...", + "posterPath": "/slKAbvY2CjAIyJFqoLSh1WICzg6.jpg", + "backdropPath": "/dkhjP3GK44gkxmKzrgYzHs8hbtf.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-05-09", + "releaseYear": "2024", + "originalLanguage": "de", + "voteAverage": 8.338, + "voteCount": 590, + "popularity": 53.139 + }, + { + "id": 60735, + "title": "The Flash", + "originalTitle": "The Flash", + "overview": "After being struck by lightning, CSI investigator Barry Allen awakens from a nine-month coma to discover he has been granted the gift of super speed. Teaming up with S.T.A.R. Labs, Barry takes on the persona of The Flash, the Fastest Man Alive, to protect his city.", + "posterPath": "/yZevl2vHQgmosfwUdVNzviIfaWS.jpg", + "backdropPath": "/gFkHcIh7iE5G0oVOgpmY8ONQjhl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-07", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.769, + "voteCount": 11431, + "popularity": 52.8554 + }, + { + "id": 46296, + "title": "Spartacus", + "originalTitle": "Spartacus", + "overview": "Torn from his homeland and the woman he loves, Spartacus is condemned to the brutal world of the arena where blood and death are primetime entertainment.", + "posterPath": "/c2GKN4VHCj1dnjFMANRpGkCVBae.jpg", + "backdropPath": "/1vhKauCQAq32u53X8n9qI896e6.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-01-22", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.031, + "voteCount": 2751, + "popularity": 52.8228 + }, + { + "id": 94954, + "title": "Hazbin Hotel", + "originalTitle": "Hazbin Hotel", + "overview": "In attempt to find a non-violent alternative for reducing Hell's overpopulation, the daughter of Lucifer opens a rehabilitation hotel that offers a group of misfit demons a chance at redemption.", + "posterPath": "/aVYHMW8pdzJ9qG1OGRMKyGy9xor.jpg", + "backdropPath": "/tuCU2yVRM2iZxFkpqlPUyvd6tSu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-18", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.628, + "voteCount": 1456, + "popularity": 52.6512 + }, + { + "id": 1431, + "title": "CSI: Crime Scene Investigation", + "originalTitle": "CSI: Crime Scene Investigation", + "overview": "A Las Vegas team of forensic investigators are trained to solve criminal cases by scouring the crime scene, collecting irrefutable evidence and finding the missing pieces that solve the mystery.", + "posterPath": "/i5hmoRjHNWady4AtAGICTUXknKH.jpg", + "backdropPath": "/cvlLBcQWpO9X21jDHhgPJnE2aVq.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2000-10-06", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 1326, + "popularity": 52.3072 + }, + { + "id": 65334, + "title": "Miraculous: Tales of Ladybug & Cat Noir", + "originalTitle": "Miraculous, les aventures de Ladybug et Chat Noir", + "overview": "Marinette and Adrien, two Parisian teenagers, are entrusted with powerful jewels in order to transform into superheroes Ladybug and Cat Noir. But neither hero knows the other's true identity — or that they're classmates!", + "posterPath": "/acrtAy8gmxcsEvrDP09MpMSCeDZ.jpg", + "backdropPath": "/lH22EnM0ofC7GsVGU8dAA2RXV1c.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids" + ], + "releaseDate": "2015-10-19", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 8, + "voteCount": 4534, + "popularity": 51.9923 + }, + { + "id": 221079, + "title": "The Last Frontier", + "originalTitle": "The Last Frontier", + "overview": "When a prison transport plane crashes in the remote Alaskan wilderness—freeing dozens of violent inmates—the region's lone marshal must protect the town he's vowed to keep safe.", + "posterPath": "/4S2gS1mECZ5wDRBVAZE6KWmJHI3.jpg", + "backdropPath": "/u8bpEqCRWLzwe6Qs3WYabA0r6pO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-10-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.263, + "voteCount": 99, + "popularity": 51.9236 + }, + { + "id": 272418, + "title": "Robin Hood", + "originalTitle": "Robin Hood", + "overview": "A modern reimagining of the classic tale. After the Norman invasion of England, Rob, a Saxon forester’s son, and Marian, a Norman lord’s daughter, fall in love and unite to fight for justice, challenge corruption, and restore peace to the land.", + "posterPath": "/3teWChNzKJdbfen46IdeKTygdZa.jpg", + "backdropPath": "/uoIOfRNmu47P2fET2KnrYHt3TH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-11-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.957, + "voteCount": 58, + "popularity": 51.6799 + }, + { + "id": 223300, + "title": "The Abandons", + "originalTitle": "The Abandons", + "overview": "In 1850s Washington, two families led by powerful matriarchs — one wealthy, one poor but deeply loyal — battle for supremacy on the lawless frontier.", + "posterPath": "/rQRzdfc0IlyiwM5HdzHdSYag9FG.jpg", + "backdropPath": "/Amaws3yNGpjl8lD2KfhaJHYKrZ2.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "2025-12-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 19, + "popularity": 50.4613 + }, + { + "id": 1419, + "title": "Castle", + "originalTitle": "Castle", + "overview": "After a serial killer imitates the plots of his novels, successful mystery novelist Richard \"Rick\" Castle receives permission from the Mayor of New York City to tag along with an NYPD homicide investigation team for research purposes.", + "posterPath": "/diXBeMzvfJb2iJg3G0kCUaMCzEc.jpg", + "backdropPath": "/zOnLMRD3PIhwO5KZmWMVEnLokMo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2009-03-09", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.979, + "voteCount": 2004, + "popularity": 50.3123 + }, + { + "id": 1973, + "title": "24", + "originalTitle": "24", + "overview": "Counterterrorism agent Jack Bauer fights the bad guys of the world, a day at a time. With each week's episode unfolding in real-time, \"24\" covers a single day in the life of Bauer each season.", + "posterPath": "/iq6yrZ5LEDXf1ArCOYLq8PIUBpV.jpg", + "backdropPath": "/be6mDIMv7cg8duWkcYVnTB8rphO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2001-11-06", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.793, + "voteCount": 1674, + "popularity": 49.7314 + }, + { + "id": 256721, + "title": "Gachiakuta", + "originalTitle": "ガチアクタ", + "overview": "Accused of murder and thrown into the Pit, a young orphan joins a group of monster fighters with special powers to uncover the truth and seek vengeance.", + "posterPath": "/jH78nLFrTU6aP7hY7KO6DZHFLoX.jpg", + "backdropPath": "/mrapJp0qb6Fvo3IW9IrjCK9IgSo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 149, + "popularity": 49.3325 + }, + { + "id": 2224, + "title": "The Daily Show", + "originalTitle": "The Daily Show", + "overview": "The World's Fakest News Team tackle the biggest stories in news, politics and pop culture.", + "posterPath": "/ixcfyK7it6FjRM36Te4OdblAq4X.jpg", + "backdropPath": "/qLMfcvdCcCGD2BNLH8b6ZCBuO7D.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 35 + ], + "genres": [ + "News", + "Comedy" + ], + "releaseDate": "1996-07-22", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 609, + "popularity": 49.1295 + }, + { + "id": 60574, + "title": "Peaky Blinders", + "originalTitle": "Peaky Blinders", + "overview": "A gangster family epic set in 1919 Birmingham, England and centered on a gang who sew razor blades in the peaks of their caps, and their fierce boss Tommy Shelby, who means to move up in the world.", + "posterPath": "/vUUqzWa2LnHIVqkaKVlVGkVcZIW.jpg", + "backdropPath": "/l8v3gJDlASN0lNn51gR8zQJsu5O.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2013-09-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.527, + "voteCount": 10647, + "popularity": 47.4659 + }, + { + "id": 1433, + "title": "American Dad!", + "originalTitle": "American Dad!", + "overview": "The series focuses on an eccentric motley crew that is the Smith family and their three housemates: Father, husband, and breadwinner Stan Smith; his better half housewife, Francine Smith; their college-aged daughter, Hayley Smith; and their high-school-aged son, Steve Smith. Outside of the Smith family, there are three additional main characters, including Hayley's boyfriend turned husband, Jeff Fischer; the family's man-in-a-goldfish-body pet, Klaus; and most notably the family's zany alien, Roger, who is \"full of masquerades, brazenness, and shocking antics.\"", + "posterPath": "/aC1q422YhQR7k82GB8gW4KoD91p.jpg", + "backdropPath": "/skBNukpZWvr5AhqPDEaO262Rjkr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-02-06", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.998, + "voteCount": 2272, + "popularity": 46.764 + }, + { + "id": 873, + "title": "Columbo", + "originalTitle": "Columbo", + "overview": "Columbo is a friendly, verbose, disheveled-looking police detective who is consistently underestimated by his suspects. Despite his unprepossessing appearance and apparent absentmindedness, he shrewdly solves all of his cases and secures all evidence needed for indictment. His formidable eye for detail and meticulously dedicated approach often become clear to the killer only late in the storyline.", + "posterPath": "/2JCD8vab3fircOU8cM2HJCxfv4I.jpg", + "backdropPath": "/2emkZBBiZG7pE7RBuIWtbKZ2a33.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1971-09-15", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 8.099, + "voteCount": 777, + "popularity": 46.7443 + }, + { + "id": 44006, + "title": "Chicago Fire", + "originalTitle": "Chicago Fire", + "overview": "An edge-of-your-seat view into the lives of everyday heroes committed to one of America's noblest professions. For the firefighters, rescue squad and paramedics of Chicago Firehouse 51, no occupation is more stressful or dangerous, yet so rewarding and exhilarating. These courageous men and women are among the elite who forge headfirst into danger when everyone else is running the other way and whose actions make the difference between life and death.", + "posterPath": "/r915sk2JpthZSjHEgZKifWxgo6L.jpg", + "backdropPath": "/14LzHqJrFcHk7ruMNCXpEkB0Thg.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-10-10", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 2323, + "popularity": 45.9899 + }, + { + "id": 76479, + "title": "The Boys", + "originalTitle": "The Boys", + "overview": "A group of vigilantes known informally as “The Boys” set out to take down corrupt superheroes with no more than blue-collar grit and a willingness to fight dirty.", + "posterPath": "/2zmTngn1tYC1AvfnrFLhxeD82hz.jpg", + "backdropPath": "/7cqKGQMnNabzOpi7qaIgZvQ7NGV.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-07-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 11397, + "popularity": 45.9764 + }, + { + "id": 71712, + "title": "The Good Doctor", + "originalTitle": "The Good Doctor", + "overview": "Shaun Murphy, a young surgeon with autism and savant syndrome, relocates from a quiet country life to join a prestigious hospital's surgical unit. Unable to personally connect with those around him, Shaun uses his extraordinary medical gifts to save lives and challenge the skepticism of his colleagues.", + "posterPath": "/luhKkdD80qe62fwop6sdrXK9jUT.jpg", + "backdropPath": "/f3cin9kOz4nOrlYEMxGFQhv4bdN.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-09-25", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.467, + "voteCount": 12668, + "popularity": 45.9586 + }, + { + "id": 1398, + "title": "The Sopranos", + "originalTitle": "The Sopranos", + "overview": "The story of New Jersey-based Italian-American mobster Tony Soprano and the difficulties he faces as he tries to balance the conflicting requirements of his home life and the criminal organization he heads. Those difficulties are often highlighted through his ongoing professional relationship with psychiatrist Jennifer Melfi. The show features Tony's family members and Mafia associates in prominent roles and story arcs, most notably his wife Carmela and his cousin and protégé Christopher Moltisanti.", + "posterPath": "/rTc7ZXdroqjkKivFPvCPX0Ru7uw.jpg", + "backdropPath": "/lNpkvX2s8LGB0mjGODMT4o6Up7j.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1999-01-10", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 3193, + "popularity": 45.016 + }, + { + "id": 4607, + "title": "Lost", + "originalTitle": "Lost", + "overview": "Stripped of everything, the survivors of a horrific plane crash must work together to stay alive. But the island holds many secrets.", + "posterPath": "/og6S0aTZU6YUJAbqxeKjCa3kY1E.jpg", + "backdropPath": "/yUOFocKDW7MCC5isx4FK8A68QFp.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10759, + 18 + ], + "genres": [ + "Mystery", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2004-09-22", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 4770, + "popularity": 44.904 + }, + { + "id": 1421, + "title": "Modern Family", + "originalTitle": "Modern Family", + "overview": "The Pritchett-Dunphy-Tucker clan is a wonderfully large and blended family. They give us an honest and often hilarious look into the sometimes warm, sometimes twisted, embrace of the modern family.", + "posterPath": "/k5Qg5rgPoKdh3yTJJrLtyoyYGwC.jpg", + "backdropPath": "/nO7EzksrBzlNpAg5rgv8HzaBIkx.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-09-23", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.892, + "voteCount": 3133, + "popularity": 44.5246 + }, + { + "id": 95479, + "title": "JUJUTSU KAISEN", + "originalTitle": "呪術廻戦", + "overview": "Yuji Itadori is a boy with tremendous physical strength, though he lives a completely ordinary high school life. One day, to save a classmate who has been attacked by curses, he eats the finger of Ryomen Sukuna, taking the curse into his own soul. From then on, he shares one body with Ryomen Sukuna. Guided by the most powerful of sorcerers, Satoru Gojo, Itadori is admitted to Tokyo Jujutsu High School, an organization that fights the curses... and thus begins the heroic tale of a boy who became a curse to exorcise a curse, a life from which he could never turn back.", + "posterPath": "/fHpKWq9ayzSk8nSwqRuaAUemRKh.jpg", + "backdropPath": "/gmECX1DvFgdUPjtio2zaL8BPYPu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.574, + "voteCount": 4034, + "popularity": 44.2951 + }, + { + "id": 93405, + "title": "Squid Game", + "originalTitle": "오징어 게임", + "overview": "Hundreds of cash-strapped players accept a strange invitation to compete in children's games. Inside, a tempting prize awaits — with deadly high stakes.", + "posterPath": "/1QdXdRYfktUSONkl1oD5gc6Be0s.jpg", + "backdropPath": "/2meX1nMdScFOoV4370rqHWKmXhY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648, + 18 + ], + "genres": [ + "Action & Adventure", + "Mystery", + "Drama" + ], + "releaseDate": "2021-09-17", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 7.86, + "voteCount": 16933, + "popularity": 43.9042 + }, + { + "id": 1695, + "title": "Monk", + "originalTitle": "Monk", + "overview": "Adrian Monk was once a rising star with the San Francisco Police Department, legendary for using unconventional means to solve the department's most baffling cases. But after the tragic (and still unsolved) murder of his wife Trudy, he developed an extreme case of obsessive-compulsive disorder. Now working as a private consultant, Monk continues to investigate cases in the most unconventional ways.", + "posterPath": "/3axGMbUecXXOPSeG47v2i9wK5y5.jpg", + "backdropPath": "/dMY7XUfEAK0Rl8hsgc8ufEOaiZ2.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 80, + 9648 + ], + "genres": [ + "Drama", + "Comedy", + "Crime", + "Mystery" + ], + "releaseDate": "2002-07-12", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.95, + "voteCount": 1178, + "popularity": 43.8811 + }, + { + "id": 58841, + "title": "Chicago P.D.", + "originalTitle": "Chicago P.D.", + "overview": "A riveting police drama about the men and women of the Chicago Police Department's District 21 who put it all on the line to serve and protect their community. District 21 is made up of two distinctly different groups: the uniformed cops who patrol the beat and go head-to-head with the city's street crimes and the Intelligence Unit that combats the city's major offenses - organized crime, drug trafficking, high profile murders and beyond.", + "posterPath": "/bez40PgT36RUu4gstD2A6GSM0tP.jpg", + "backdropPath": "/rhp8vYG1sIFtqH3ETmHJuI5Z3Cb.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2014-01-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.412, + "voteCount": 2514, + "popularity": 43.7389 + }, + { + "id": 60625, + "title": "Rick and Morty", + "originalTitle": "Rick and Morty", + "overview": "Rick is a mentally-unbalanced but scientifically gifted old man who has recently reconnected with his family. He spends most of his time involving his young grandson Morty in dangerous, outlandish adventures throughout space and alternate universes. Compounded with Morty's already unstable family life, these events cause Morty much distress at home and school.", + "posterPath": "/WGRQ8FpjkDTzivQJ43t94bOuY0.jpg", + "backdropPath": "/9In9QgVJx7PlFOAgVHCKKSbo605.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2013-12-02", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.7, + "voteCount": 10529, + "popularity": 43.7039 + }, + { + "id": 71728, + "title": "Young Sheldon", + "originalTitle": "Young Sheldon", + "overview": "The early life of child genius Sheldon Cooper, later seen in The Big Bang Theory.", + "posterPath": "/kidkbZRBGbsEIrX7pODRSKi9ipl.jpg", + "backdropPath": "/nlDBlCtorM7nx130wYnfR5ZmyLX.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "2017-09-25", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.049, + "voteCount": 2837, + "popularity": 43.5565 + }, + { + "id": 2261, + "title": "The Tonight Show Starring Johnny Carson", + "originalTitle": "The Tonight Show Starring Johnny Carson", + "overview": "The Tonight Show Starring Johnny Carson is a talk show hosted by Johnny Carson under The Tonight Show franchise from 1962 to 1992. It originally aired during late-night. For its first ten years, Carson's Tonight Show was based in New York City with occasional trips to Burbank, California; in May 1972, the show moved permanently to Burbank, California. In 2002, The Tonight Show Starring Johnny Carson was ranked #12 on TV Guide's 50 Greatest TV Shows of All Time.", + "posterPath": "/uSvET5YUvHNDIeoCpErrbSmasFb.jpg", + "backdropPath": "/qFfWFwfaEHzDLWLuttWiYq7Poy2.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1962-10-01", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7.466, + "voteCount": 87, + "popularity": 43.2054 + }, + { + "id": 78191, + "title": "You", + "originalTitle": "You", + "overview": "A dangerously charming, intensely obsessive young man goes to extreme measures to insert himself into the lives of those he is transfixed by.", + "posterPath": "/oANi0vEE92nuijiZQgPZ88FSxqQ.jpg", + "backdropPath": "/gzOIymABxmetAECXtazEYCpMmfb.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2018-09-09", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.024, + "voteCount": 3725, + "popularity": 43.1589 + }, + { + "id": 108978, + "title": "Reacher", + "originalTitle": "Reacher", + "overview": "Jack Reacher, a veteran military police investigator, has just recently entered civilian life. Reacher is a drifter, carrying no phone and the barest of essentials as he travels the country and explores the nation he once served.", + "posterPath": "/31GlRQMiDunO8cl3NxTz34U64rf.jpg", + "backdropPath": "/JYgqp8g2kI3SEus9XBDSHukfBN.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2022-02-03", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.084, + "voteCount": 2554, + "popularity": 42.8602 + }, + { + "id": 34524, + "title": "Teen Wolf", + "originalTitle": "Teen Wolf", + "overview": "Scott McCall, a high school student living in the town of Beacon Hills has his life drastically changed when he's bitten by a werewolf, becoming one himself. He must henceforth learn to balance his problematic new identity with his day-to-day teenage life. The following characters are instrumental to his struggle: Stiles, his best friend; Allison, his love interest who comes from a family of werewolf hunters; and Derek, a mysterious werewolf with a dark past. Throughout the series, he strives to keep his loved ones safe while maintaining normal relationships with them.", + "posterPath": "/8Ij1O2nU8exLgwPXU8Eo6PZdCDC.jpg", + "backdropPath": "/1F2RnXLc0fmRt7iWfBK4mNVsjno.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2011-06-05", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.462, + "voteCount": 4569, + "popularity": 42.3216 + }, + { + "id": 80748, + "title": "FBI", + "originalTitle": "FBI", + "overview": "The New York office of the FBI brings to bear all their talents, intellect and technical expertise on major cases in order to keep their city and the country safe.", + "posterPath": "/zfKS4WL0OZ9udpNoSYZw91VB3aH.jpg", + "backdropPath": "/5DFvscYGpcFaQMJljCic5gbzVe6.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759, + 18 + ], + "genres": [ + "Crime", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2018-09-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.912, + "voteCount": 868, + "popularity": 41.8947 + }, + { + "id": 4604, + "title": "Smallville", + "originalTitle": "Smallville", + "overview": "The origins of the world’s greatest hero–from Krypton refugee Kal-el’s arrival on Earth through his tumultuous teen years to Clark Kent’s final steps toward embracing his destiny as the Man of Steel.", + "posterPath": "/peEEvc7JOhcqv80KP4LSA2eMbok.jpg", + "backdropPath": "/4wVq9ICc4MI2XcssrumpCOhKLpI.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2001-10-16", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 4292, + "popularity": 41.1572 + }, + { + "id": 82619, + "title": "X.X.X: Uncensored", + "originalTitle": "X.X.X: Uncensored", + "overview": "An erotic anthology series exploring different aspects of love, lust and romance.", + "posterPath": "/cufcKjv41k4sRJotdxwwHMDl70L.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-09-27", + "releaseYear": "2018", + "originalLanguage": "hi", + "voteAverage": 4.4, + "voteCount": 19, + "popularity": 41.1097 + }, + { + "id": 71790, + "title": "S.W.A.T.", + "originalTitle": "S.W.A.T.", + "overview": "A Los Angeles S.W.A.T. sergeant is assigned to lead a highly skilled unit in the community where he grew up. Torn between loyalty to the streets, where the cops are sometimes the enemy, and allegiance to his brothers in blue, he strategically straddles the two worlds.", + "posterPath": "/ttzrYMdsKWR8PTRLw7uo4noqaOJ.jpg", + "backdropPath": "/7j4ug9B6JXVeh5HhQjjPScrdj4Z.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759, + 18 + ], + "genres": [ + "Crime", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2017-11-02", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.057, + "voteCount": 1517, + "popularity": 40.8918 + }, + { + "id": 120089, + "title": "SPY x FAMILY", + "originalTitle": "SPY×FAMILY", + "overview": "A spy, an assassin and a telepath come together to pose as a family, each for their own reasons, while hiding their true identities from each other.", + "posterPath": "/7NAvPYPAu7MeHwP8E9sn81PqsRh.jpg", + "backdropPath": "/lysUnU6V0VfcthDbviuVlIqgHOR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2022-04-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.53, + "voteCount": 2125, + "popularity": 40.855 + }, + { + "id": 231100, + "title": "Boundless Love", + "originalTitle": "Hudutsuz Sevda", + "overview": "When he was a little child, Halil İbrahim lost his father due to a blood feud and was exiled to Istanbul. Twenty years later, he returns to his homeland in the Karadeniz region as a handsome, powerful young man. He plans to marry the girl he loves, Yasemin, and start a new life. However, events do not allow this. Halil İbrahim embarks on a journey of revenge, and his life will change completely when he encounters Zeynep from the Leto family.", + "posterPath": "/1BQSLOIvjnBzrxkXjX9R0JfHTWI.jpg", + "backdropPath": "/9Bcsbx5L02ahbMJ6lJOTcA5puUd.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10766 + ], + "genres": [ + "Drama", + "Crime", + "Soap" + ], + "releaseDate": "2023-09-21", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 8.9, + "voteCount": 23, + "popularity": 40.767 + }, + { + "id": 59941, + "title": "The Tonight Show Starring Jimmy Fallon", + "originalTitle": "The Tonight Show Starring Jimmy Fallon", + "overview": "After Jay Leno's second retirement from the program, Jimmy Fallon stepped in as his permanent replacement. After 42 years in Los Angeles the program was brought back to New York.", + "posterPath": "/1N4o5PmmqhlVDrcdJ2RlCFWbLGX.jpg", + "backdropPath": "/7VO04TtL1jIT6XOPs9u4jdB8KaB.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2014-02-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 360, + "popularity": 39.7814 + }, + { + "id": 244557, + "title": "Mahsun J", + "originalTitle": "Mahsun J", + "overview": "Mahsun is a motorcycle courier in Istanbul. While searching for a way out of his life filled with debt, he accidentally discovers his \"greatest\" talent and decides to become a GIGOLO. Her manager will be her friend Leyla, who is a failed advertising executive.", + "posterPath": "/f6VrRlLqbWiGlhdBT658rWe1nLQ.jpg", + "backdropPath": "/3awNXEAkCewKiueXU77K06g0vJq.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-01-26", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 7.765, + "voteCount": 17, + "popularity": 39.655 + }, + { + "id": 1412, + "title": "Arrow", + "originalTitle": "Arrow", + "overview": "Spoiled billionaire playboy Oliver Queen is missing and presumed dead when his yacht is lost at sea. He returns five years later a changed man, determined to clean up the city as a hooded vigilante armed with a bow.", + "posterPath": "/u8ZHFj1jC384JEkTt3vNg1DfWEb.jpg", + "backdropPath": "/wAFuDJfZJrnh6a1wf1Vt7PqYBvR.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2012-10-10", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.829, + "voteCount": 6175, + "popularity": 39.4881 + }, + { + "id": 241002, + "title": "Adam's Sweet Agony", + "originalTitle": "悶えてよ、アダムくん", + "overview": "This is the story of a boy, who became the lone Adam among four billion Eves. In a world where a pandemic has rendered all men impotent, high school student Itsuki is the exception who escaped it. In order to protect this secret, he transfers to a very special high school, which turns out to be composed of 90% girls! There, he encounters an upbeat and friendly senior, a sexually frustrated female teacher, a tomboyish school 'prince,' and an heiress from a wealthy family. For Itsuki, who has his pick of any woman in the world, the question remains: which one will he choose?", + "posterPath": "/1n1ZP0KHXUSvVxZG63x7aOzmO4M.jpg", + "backdropPath": "/bM4nCynOSA5oCNqLsqb1Fo56sZQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2024-01-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.773, + "voteCount": 33, + "popularity": 38.6189 + }, + { + "id": 281013, + "title": "Dynamite Kiss", + "originalTitle": "키스는 괜히 해서!", + "overview": "A passionate fling in Jeju ends abruptly — until fate reunites an heir and a young woman when she joins his company, disguised as a married mother.", + "posterPath": "/qY3ltlWUB7u3ENocrMOkbGCGYnt.jpg", + "backdropPath": "/cTFQKu8CLftXHUCIBGksfL8uhf3.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-11-12", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 12, + "popularity": 38.584 + }, + { + "id": 126506, + "title": "Smiling Friends", + "originalTitle": "Smiling Friends", + "overview": "Smiling Friends Inc. is a small company whose main purpose is to bring happiness and make people smile. The series follows the day-to-day lives and misadventures of its representatives, the lazy, cynical Charlie, and the cheerful, optimistic Pim, as they try to cheer up and comfort the troubled people who call their company's hotline. They receive seemingly simple requests but the jobs turn out to be more complicated than they seem, making it difficult to bring happiness to the world.", + "posterPath": "/q3CSxl3G06MBc73TpHWwBYYTPxL.jpg", + "backdropPath": "/atoWevhc9DZQaJXx5aimtYdtruc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-04-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.492, + "voteCount": 314, + "popularity": 38.3226 + }, + { + "id": 4629, + "title": "Stargate SG-1", + "originalTitle": "Stargate SG-1", + "overview": "The story of Stargate SG-1 begins about a year after the events of the feature film, when the United States government learns that an ancient alien device called the Stargate can access a network of such devices on a multitude of planets. SG-1 is an elite Air Force special operations team, one of more than two dozen teams from Earth who explore the galaxy and defend against alien threats such as the Goa'uld, Replicators, and the Ori.", + "posterPath": "/dQjmI7XxI47v8IM2MUysHG0LuU2.jpg", + "backdropPath": "/yOyzlRw54oYaGvhUBdPr7TFwtrX.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1997-07-27", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8.285, + "voteCount": 1710, + "popularity": 38.3026 + }, + { + "id": 75219, + "title": "9-1-1", + "originalTitle": "9-1-1", + "overview": "Explore the high-pressure experiences of police officers, paramedics and firefighters who are thrust into the most frightening, shocking and heart-stopping situations. These emergency responders must try to balance saving those who are at their most vulnerable with solving the problems in their own lives.", + "posterPath": "/a7VwJMCs4bUm5NxjsFgoPs1ihnJ.jpg", + "backdropPath": "/h050XJoiIobaH6bhj3MAhgilkpJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2018-01-03", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 2687, + "popularity": 38.2636 + }, + { + "id": 1620, + "title": "CSI: Miami", + "originalTitle": "CSI: Miami", + "overview": "CSI: Miami follows Crime Scene Investigators working for the Miami-Dade Police Department as they use physical evidence, similar to their Las Vegas counterparts, to solve grisly murders. The series mixes deduction, gritty subject matter, and character-driven drama in the same vein as the original series in the CSI franchise, except that the Miami CSIs are cops first, scientists second.", + "posterPath": "/pNW64pjaHvf6purNaFhq4SHYRfl.jpg", + "backdropPath": "/bhG1XJ1fubbZkLnoBAxNrzzGXOg.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2002-09-23", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.711, + "voteCount": 1659, + "popularity": 37.9464 + }, + { + "id": 41956, + "title": "Death in Paradise", + "originalTitle": "Death in Paradise", + "overview": "A brilliant but idiosyncratic British detective and his resourceful local team solve baffling murder mysteries on the fictional Caribbean island of Saint-Marie.", + "posterPath": "/u7t6vCyqAdD5hE4eEfTrZmVljDi.jpg", + "backdropPath": "/8dbKQrdVR5HD7PVWjTPawnTYCPT.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18, + 9648 + ], + "genres": [ + "Comedy", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2011-10-25", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.481, + "voteCount": 295, + "popularity": 37.6433 + }, + { + "id": 97951, + "title": "Mayor of Kingstown", + "originalTitle": "Mayor of Kingstown", + "overview": "In a small Michigan town where the business of incarceration is the only thriving industry, the McClusky family are the power brokers between the police, criminals, inmates, prison guards and politicians in a city completely dependent on prisons and the prisoners they contain.", + "posterPath": "/6rWIip9MZELAA0SKii5WqsBDCYW.jpg", + "backdropPath": "/39bifj2FNytJ2m1cqOBcWMTKgmV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2021-11-14", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 546, + "popularity": 37.4113 + }, + { + "id": 94722, + "title": "Tagesschau", + "originalTitle": "Tagesschau", + "overview": "German daily news program, the oldest still existing program on German television.", + "posterPath": "/7dFZJ2ZJJdcmkp05B9NWlqTJ5tq.jpg", + "backdropPath": "/jWXrQstj7p3Wl5MfYWY6IHqRpDb.jpg", + "mediaType": "tv", + "genreIds": [ + 10763 + ], + "genres": [ + "News" + ], + "releaseDate": "1952-12-26", + "releaseYear": "1952", + "originalLanguage": "de", + "voteAverage": 6.8, + "voteCount": 245, + "popularity": 37.3329 + }, + { + "id": 57243, + "title": "Doctor Who", + "originalTitle": "Doctor Who", + "overview": "The Doctor is a Time Lord: a 900 year old alien with 2 hearts, part of a gifted civilization who mastered time travel. The Doctor saves planets for a living—more of a hobby actually, and the Doctor's very, very good at it.", + "posterPath": "/w8enSKCf6Zm0topeQ2XPccDqsqp.jpg", + "backdropPath": "/vcFW09U4834DyFOeRZpsx9x1D3S.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-03-26", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 3237, + "popularity": 37.0633 + }, + { + "id": 32692, + "title": "Blue Bloods", + "originalTitle": "Blue Bloods", + "overview": "A drama about a multi-generational family of cops dedicated to New York City law enforcement. Frank Reagan is the New York Police Commissioner and heads both the police force and the Reagan brood. He runs his department as diplomatically as he runs his family, even when dealing with the politics that plagued his unapologetically bold father, Henry, during his stint as Chief.", + "posterPath": "/q1WlrxnCvNhBjJ4N7V0JQXjnIBN.jpg", + "backdropPath": "/goDtZCB5pFIuuSfYDvApe6iXTID.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2010-09-24", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.79, + "voteCount": 964, + "popularity": 37.0617 + }, + { + "id": 1409, + "title": "Sons of Anarchy", + "originalTitle": "Sons of Anarchy", + "overview": "The Sons of Anarchy (SOA) are an outlaw motorcycle club with many charters in the United States and overseas. The show focused on the original and founding charter, Sons of Anarchy Motorcycle Club, Redwood Original, often referred to by the acronym SAMCRO, Sam Crow, or simply Redwood Charter. The charter operates both legal and illegal businesses in the small town of Charming, California. They combine gun-running and a garage, and involvement in porn film industry. Clay, the charter president, likes it old school and violent; while Jax, his stepson and the club's VP, has thoughts about changing the way things are done. Their conflict has effects on both the club and their personal relationship, especially when Jax goes on a personal quest to cleanse the SAMCRO name and image.", + "posterPath": "/kiy8BHtIHAslh81rvFcZ4wbNGdY.jpg", + "backdropPath": "/dk2AwvW3VyKHCWAdED0sJzD0NYQ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2008-09-03", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.418, + "voteCount": 3117, + "popularity": 36.9616 + }, + { + "id": 252193, + "title": "Last Samurai Standing", + "originalTitle": "イクサガミ", + "overview": "In the early Meiji era, Shujiro, once known as an undefeated samurai, decides to participate in a deadly survival game to save his family and villagers.", + "posterPath": "/wKNEFlrs68rzweVzfwkjWmkJqu7.jpg", + "backdropPath": "/vcU8hIHXuADItJSzEmt2F8IMq5l.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-11-13", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 109, + "popularity": 36.5135 + }, + { + "id": 2190, + "title": "South Park", + "originalTitle": "South Park", + "overview": "Follow the misadventures of four irreverent grade-schoolers in the quiet, dysfunctional town of South Park, Colorado.", + "posterPath": "/1CGwZCFX2qerXaXQJJUB3qUvxq7.jpg", + "backdropPath": "/3UviYOlhn8EgXMBuiT6MnUuo1w9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1997-08-13", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8.343, + "voteCount": 4750, + "popularity": 36.2496 + }, + { + "id": 1400, + "title": "Seinfeld", + "originalTitle": "Seinfeld", + "overview": "A stand-up comedian and his three offbeat friends weather the pitfalls and payoffs of life in New York City in the '90s. It's a show about nothing.", + "posterPath": "/aCw8ONfyz3AhngVQa1E2Ss4KSUQ.jpg", + "backdropPath": "/tMRdEsMg9MyXAkcufK9YJEeIaNW.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1989-07-05", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 2210, + "popularity": 35.8981 + }, + { + "id": 60622, + "title": "Fargo", + "originalTitle": "Fargo", + "overview": "A close-knit anthology series dealing with stories involving malice, violence and murder based in and around Minnesota.", + "posterPath": "/6U9CPeD8obHzweikFhiLhpc7YBT.jpg", + "backdropPath": "/grR9khLE8TibHjTYZq1jCSSupYk.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2014-04-15", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.293, + "voteCount": 3046, + "popularity": 35.3909 + }, + { + "id": 60059, + "title": "Better Call Saul", + "originalTitle": "Better Call Saul", + "overview": "Six years before Saul Goodman meets Walter White. We meet him when the man who will become Saul Goodman is known as Jimmy McGill, a small-time lawyer searching for his destiny, and, more immediately, hustling to make ends meet. Working alongside, and, often, against Jimmy, is “fixer” Mike Ehrmantraut. The series tracks Jimmy’s transformation into Saul Goodman, the man who puts “criminal” in “criminal lawyer\".", + "posterPath": "/fC2HDm5t0kHl7mTm7jxMR31b7by.jpg", + "backdropPath": "/og2jKploGHYnCz68vV1nRSEE0xV.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2015-02-08", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.697, + "voteCount": 6010, + "popularity": 35.2218 + }, + { + "id": 246621, + "title": "Mehmed: Sultan of Conquests", + "originalTitle": "Mehmed: Fetihler Sultanı", + "overview": "The project, which will follow the story on the life of one of the most important rulers in Ottoman history, Fatih Sultan Mehmed, will also feature important stages of the life of Eyüp el Ensari, an important figure in the Islamic world, in parallel with Fatih's life.", + "posterPath": "/A8fHgHmcEQU1UcOcXhW3NXtwwcZ.jpg", + "backdropPath": "/bJxf4Y8UKOBsWoE3gB6N0hfB04G.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18 + ], + "genres": [ + "War & Politics", + "Drama" + ], + "releaseDate": "2024-02-27", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 8.2, + "voteCount": 13, + "popularity": 34.9729 + }, + { + "id": 1737, + "title": "Four Star Playhouse", + "originalTitle": "Four Star Playhouse", + "overview": "Four Star Playhouse is an American television anthology series that ran from 1952 to 1956, sponsored in its first bi-weekly season by The Singer Company; Bristol-Myers became an alternate sponsor when it became a weekly series in the fall of 1953. The original premise was that Charles Boyer, Ida Lupino, David Niven, and Dick Powell would take turns starring in episodes. However, several other performers took the lead from time to time, including Ronald Colman and Joan Fontaine.\n\nBlake Edwards was among the writers and directors who contributed to the series. Edwards created the recurring character of illegal gambling house operator Willie Dante for Dick Powell to play on this series. The character was later revamped and spun off in his own series starring Howard Duff, then-husband of Lupino.\n\nThe pilot for Meet McGraw, starring Frank Lovejoy, aired here, as did another episode in which Lovejoy recreated his role of Chicago newspaper reporter Randy Stone, from the radio drama Nightbeat.", + "posterPath": null, + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1952-09-25", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 10, + "popularity": 34.6223 + }, + { + "id": 48866, + "title": "The 100", + "originalTitle": "The 100", + "overview": "100 years in the future, when the Earth has been abandoned due to radioactivity, the last surviving humans live on an ark orbiting the planet — but the ark won't last forever. So the repressive regime picks 100 expendable juvenile delinquents to send down to Earth to see if the planet is still habitable.", + "posterPath": "/wcaDIAG1QdXQLRaj4vC1EFdBT2.jpg", + "backdropPath": "/8ZerYKvIaNUJZvAHXYTQu4qTwFw.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18, + 80 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2014-03-19", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.889, + "voteCount": 8422, + "popularity": 34.5561 + }, + { + "id": 31132, + "title": "Regular Show", + "originalTitle": "Regular Show", + "overview": "The surreal misadventures of two best friends - a blue jay and a raccoon - as they seek to liven up their mundane jobs as groundskeepers at the local park.", + "posterPath": "/mS5SLxMYcKfUxA0utBSR5MOAWWr.jpg", + "backdropPath": "/5iWJwQPBusPTV7G7n5TABNRP7tO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-09-06", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 2153, + "popularity": 33.9988 + }, + { + "id": 693, + "title": "Desperate Housewives", + "originalTitle": "Desperate Housewives", + "overview": "Looking down on her friends and family isn't a way of life for Mary Alice Young... it's a way of death. One day, in her perfect house, in the loveliest of suburbs, Mary Alice ended it all. Now she's taking us into the lives of her family, friends and neighbors, commenting from her elevated P.O.V.", + "posterPath": "/4qeI51jDzH81PpUUNaJCBrfm7f6.jpg", + "backdropPath": "/kub3bZS2sOGviEjo4p1ohREboVb.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 35 + ], + "genres": [ + "Mystery", + "Drama", + "Comedy" + ], + "releaseDate": "2004-10-03", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 1996, + "popularity": 33.8543 + }, + { + "id": 4087, + "title": "The X-Files", + "originalTitle": "The X-Files", + "overview": "The exploits of FBI Special Agents Fox Mulder and Dana Scully who investigate X-Files: marginalized, unsolved cases involving paranormal phenomena. Mulder believes in the existence of aliens and the paranormal while Scully, a skeptic, is assigned to make scientific analyses of Mulder's discoveries that debunk Mulder's work and thus return him to mainstream cases.", + "posterPath": "/rcBx0p8h51LHceyhquYMxbspJQu.jpg", + "backdropPath": "/w00lfexrsOeR25dO4hsWhbcUnmD.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765, + 80 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "1993-09-10", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8.377, + "voteCount": 3369, + "popularity": 33.7688 + }, + { + "id": 61818, + "title": "Late Night with Seth Meyers", + "originalTitle": "Late Night with Seth Meyers", + "overview": "Seth Meyers, who is \"Saturday Night Live’s\" longest serving anchor on the show’s wildly popular \"Weekend Update,\" takes over as host of NBC’s \"Late Night\" — home to A-list celebrity guests, memorable comedy and the best in musical talent. As the Emmy Award-winning head writer for \"SNL,\" Meyers has established a reputation for sharp wit and perfectly timed comedy, and has gained fame for his spot-on jokes and satire. Meyers takes his departure from \"SNL\" to his new post at \"Late Night,\" as Jimmy Fallon moves to \"The Tonight Show\".", + "posterPath": "/jm95V8XjfvqmEhw0MN09wbg9Mi3.jpg", + "backdropPath": "/dfX2UaHVE5c7kLBFbgmEZJuy4Ev.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2014-02-25", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.261, + "voteCount": 119, + "popularity": 33.5462 + }, + { + "id": 1100, + "title": "How I Met Your Mother", + "originalTitle": "How I Met Your Mother", + "overview": "A father recounts to his children - through a series of flashbacks - the journey he and his four best friends took leading up to him meeting their mother.", + "posterPath": "/b34jPzmB0wZy7EjUZoleXOl2RRI.jpg", + "backdropPath": "/3f8aW6vcYRP6mTZdgXm83BiuB9t.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-09-19", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.14, + "voteCount": 5452, + "popularity": 33.3784 + }, + { + "id": 57532, + "title": "PAW Patrol", + "originalTitle": "PAW Patrol", + "overview": "Marshall, Rocky, Rubble, Zuma and Skye are doing their best to protect the people of their town. Led by Ryder, a tech-savvy 10-year-old boy, each of them is equipped with special equipment and together they help anyone who finds themselves in trouble. No task is too big for them and no puppy is too small.", + "posterPath": "/vN9BE385YKPgumoyrOd8Z8yh6Nn.jpg", + "backdropPath": "/7OrV2aAH5Yp7hA9zCCvUloLvZtl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2013-08-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 793, + "popularity": 33.3445 + }, + { + "id": 32798, + "title": "Hawaii Five-0", + "originalTitle": "Hawaii Five-0", + "overview": "Steve McGarrett returns home to Oahu, in order to find his father's killer. The governor offers him the chance to run his own task force (Five-0). Steve's team is joined by Chin Ho Kelly, Danny \"Danno\" Williams, and Kono Kalakaua.", + "posterPath": "/sIdCKlmM2nU4akIvFQaAIiU8YES.jpg", + "backdropPath": "/tLccUh3uazZ9TkLhe53UwprJhI4.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2010-09-20", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.755, + "voteCount": 1806, + "popularity": 33.069 + }, + { + "id": 91759, + "title": "Come Home Love: Lo and Behold", + "originalTitle": "愛·回家之開心速遞", + "overview": "Hung Sue Gan starting from the bottom, established his own logistics company, which is now running smoothly. His only concern now are his three daughters. His eldest daughter has immigrated overseas. His second daughter Hung Yeuk Shui has reached the marriageable age, but has no hopes for marriage anytime soon. She is constantly bickering with her younger sister Hung Sum Yue, who is an honour student, over trivial matters, causing their father to not know whether to laugh or cry. Hung Sue Yan, Hung Sue Gan's brother, moves in with the family, temporarily ending his life as a nomadic photographer. He joins Hung Yeuk Shui's company and encounters Ko Pak Fei, the director of an online shop. The two appear to be former lovers, making for lots of laughter. Since Hung Sue Yan moved in, a series of strange events have occurred in the family. Upon investigation, the source is traced to Lung Ging Fung, a promising young man who is the son of department store mogul Lung Gam Wai.", + "posterPath": "/lgD4j9gUGmMckZpWWRJjorWqGVT.jpg", + "backdropPath": "/dyFTt1a9ZpFdKE96kPlE9fQvXOJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 18 + ], + "genres": [ + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "2017-02-06", + "releaseYear": "2017", + "originalLanguage": "cn", + "voteAverage": 5.4, + "voteCount": 44, + "popularity": 32.9248 + }, + { + "id": 213402, + "title": "Campfire Cooking in Another World with My Absurd Skill", + "originalTitle": "とんでもスキルで異世界放浪メシ", + "overview": "Tsuyoshi Mukohda, an ordinary salaryman, is suddenly transported to another world one day. The unique skill he gains upon arrival in this world is the seemingly useless \"Online Grocery.\" Mukohda is discouraged at first, but the modern foods he's able to bring to his new world using this skill prove to have some unbelievable effects!", + "posterPath": "/cXc3yiQ5RrimzfucovjO83RTrnq.jpg", + "backdropPath": "/47cdJm6WGJqCsdE6QvPh6fLKwuo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-11", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 257, + "popularity": 32.9207 + }, + { + "id": 200709, + "title": "Weak Hero", + "originalTitle": "약한영웅", + "overview": "With the aid of unexpected friends, a gifted but introverted student confronts bullies and violent foes — unaware of how dangerous his world will become.", + "posterPath": "/hS9VVF5ffTVWNoC9B48QNsZFGy9.jpg", + "backdropPath": "/cLTAda6fMRirkCY1xfO4pmcHVkk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2022-11-18", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.6, + "voteCount": 325, + "popularity": 32.9027 + }, + { + "id": 46648, + "title": "True Detective", + "originalTitle": "True Detective", + "overview": "An American anthology police detective series utilizing multiple timelines in which investigations seem to unearth personal and professional secrets of those involved, both within or outside the law.", + "posterPath": "/cuV2O5ZyDLHSOWzg3nLVljp1ubw.jpg", + "backdropPath": "/bPLRjO2pcBx0WL73WUPzuNzQ3YN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2014-01-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 3857, + "popularity": 32.6853 + }, + { + "id": 127532, + "title": "Solo Leveling", + "originalTitle": "俺だけレベルアップな件", + "overview": "They say whatever doesn’t kill you makes you stronger, but that’s not the case for the world’s weakest hunter Sung Jinwoo. After being brutally slaughtered by monsters in a high-ranking dungeon, Jinwoo came back with the System, a program only he could see, that’s leveling him up in every way. Now, he’s inspired to discover the secrets behind his powers and the dungeon that spawned them.", + "posterPath": "/geCRueV3ElhRTr0xtJuEWJt6dJ1.jpg", + "backdropPath": "/xMNH87maNLt9n2bMDYeI6db5VFm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1448, + "popularity": 32.4864 + }, + { + "id": 71932, + "title": "AVN Awards", + "originalTitle": "AVN Awards", + "overview": "The AVN Awards are movie awards sponsored and presented by the American adult video industry trade magazine AVN (Adult Video News) to honor exceptional performance in various aspects of the creation and marketing of American pornographic movies. The \"Oscars of porn\".", + "posterPath": "/7f6wnV0tkxn5sif7LqjyzN6eLk6.jpg", + "backdropPath": "/2FkzcINn8nLGiC3XqGTqJYljcuE.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "", + "releaseYear": "", + "originalLanguage": "en", + "voteAverage": 5.542, + "voteCount": 24, + "popularity": 32.4864 + }, + { + "id": 206559, + "title": "Binnelanders", + "originalTitle": "Binnelanders", + "overview": "A South African Afrikaans soap opera. It is set in and around the fictional private hospital, Binneland Kliniek, in Pretoria, and the storyline follows the trials, trauma and tribulations of the staff and patients of the hospital.", + "posterPath": "/3bzECfllho8PphdYujLUIuhncJD.jpg", + "backdropPath": "/s1dTt4M31q2HwD5Fkl1tf5tQzJg.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2005-10-13", + "releaseYear": "2005", + "originalLanguage": "af", + "voteAverage": 5.571, + "voteCount": 105, + "popularity": 31.7809 + }, + { + "id": 256624, + "title": "Talamasca: The Secret Order", + "originalTitle": "Talamasca: The Secret Order", + "overview": "Guy Anatole joins the clandestine world of the Talamasca, an international spy agency for the immortal universe, as he searches for answers to his family's own part in the supernatural world.", + "posterPath": "/qmmHl3EiFKuDLTVYHGwlV9UhtNw.jpg", + "backdropPath": "/6aid41upomBqTvGTbJj3EKQluyy.jpg", + "mediaType": "tv", + "genreIds": [ + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.711, + "voteCount": 38, + "popularity": 31.6919 + }, + { + "id": 790, + "title": "Agatha Christie's Poirot", + "originalTitle": "Agatha Christie's Poirot", + "overview": "From England to Egypt, accompanied by his elegant and trustworthy sidekicks, the intelligent yet eccentrically-refined Belgian detective Hercule Poirot pits his wits against a collection of first class deceptions.", + "posterPath": "/6f4IVfbn8knb7RjdZlGLuW5guDc.jpg", + "backdropPath": "/rwxxDbG9Kijki7CkmB4k64MSbte.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1989-01-08", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 520, + "popularity": 31.3491 + }, + { + "id": 15260, + "title": "Adventure Time", + "originalTitle": "Adventure Time", + "overview": "Unlikely heroes Finn and Jake are buddies who traverse the mystical Land of Ooo. The best of friends, our heroes always find themselves in the middle of escapades. Finn and Jake depend on each other through thick and thin.", + "posterPath": "/qk3eQ8jW4opJ48gFWYUXWaMT4l.jpg", + "backdropPath": "/3uE9SUywNbj1qSAuYCGgbTTYku5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-04-05", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.499, + "voteCount": 2971, + "popularity": 30.8275 + }, + { + "id": 32415, + "title": "Conan", + "originalTitle": "Conan", + "overview": "A late night television talk show hosted by Conan O'Brien.", + "posterPath": "/oQxrvUhP3ycwnlxIrIMQ9Z3kleq.jpg", + "backdropPath": "/2Ib8kvWa9gGhJrAfGlhIvbmtbWn.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35, + 10763 + ], + "genres": [ + "Talk", + "Comedy", + "News" + ], + "releaseDate": "2010-11-08", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.111, + "voteCount": 244, + "popularity": 30.817 + }, + { + "id": 60572, + "title": "Pokémon", + "originalTitle": "ポケットモンスター", + "overview": "Join Ash accompanied by his partner Pikachu, as he travels through many regions, meets new friends and faces new challenges on his quest to become a Pokémon Master.", + "posterPath": "/rOuGm07PxBhEsK9TaGPRQVJQm1X.jpg", + "backdropPath": "/yYpQV25I7XB6S0POJOScPjxYWV5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-04-01", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.952, + "voteCount": 2080, + "popularity": 30.7431 + }, + { + "id": 1413, + "title": "American Horror Story", + "originalTitle": "American Horror Story", + "overview": "An anthology horror drama series centering on different characters and locations, including a house with a murderous past, an asylum, a witch coven, a freak show, a hotel, a farmhouse in Roanoke, a cult, the apocalypse and a summer camp.", + "posterPath": "/5LLG9bjq0i7V5N4UfRhnab8zHK4.jpg", + "backdropPath": "/a4doyPOabvQor0RGkWdhVENAR3G.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-10-05", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.098, + "voteCount": 5887, + "popularity": 30.6307 + }, + { + "id": 85077, + "title": "The Chosen", + "originalTitle": "The Chosen", + "overview": "The life of Christ through the eyes of those who encountered him.", + "posterPath": "/dqVUFuNrMFWt7uGNWlpo91VKYOI.jpg", + "backdropPath": "/3siv3RaQrdr2tQiv9jHq71sLlzo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10759 + ], + "genres": [ + "Drama", + "Family", + "Action & Adventure" + ], + "releaseDate": "2019-04-21", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.697, + "voteCount": 696, + "popularity": 30.6245 + }, + { + "id": 4177, + "title": "Perry Mason", + "originalTitle": "Perry Mason", + "overview": "The cases of master criminal defense attorney Perry Mason and his staff who handled the most difficult of cases in the aid of the innocent.", + "posterPath": "/sK6JvgNFP1ClT4aF4nPAZiDpAdk.jpg", + "backdropPath": "/iq4BjyVsDxzg24XnjoGP0Xi2Tz5.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "1957-09-21", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 7.708, + "voteCount": 130, + "popularity": 30.6222 + }, + { + "id": 94997, + "title": "House of the Dragon", + "originalTitle": "House of the Dragon", + "overview": "The Targaryen dynasty is at the absolute apex of its power, with more than 15 dragons under their yoke. Most empires crumble from such heights. In the case of the Targaryens, their slow fall begins when King Viserys breaks with a century of tradition by naming his daughter Rhaenyra heir to the Iron Throne. But when Viserys later fathers a son, the court is shocked when Rhaenyra retains her status as his heir, and seeds of division sow friction across the realm.", + "posterPath": "/oxmdHR5Ka28HAJuMmS2hk5K6QQY.jpg", + "backdropPath": "/2xGcSLyTAzConiHAByWqhfLiatT.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2022-08-21", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.307, + "voteCount": 5590, + "popularity": 30.5246 + }, + { + "id": 1981, + "title": "Charmed", + "originalTitle": "Charmed", + "overview": "Three sisters (Prue, Piper and Phoebe) reunite and unlock their powers to become the Charmed Ones, the most powerful good witches of all time, whose prophesied destiny is to protect innocent lives from evil beings such as demons and warlocks. Each sister possesses unique magical powers that grow and evolve, while they attempt to maintain normal lives in modern day San Francisco. ", + "posterPath": "/z4bPJ1BWU2EtV69NII2GVvsugQ2.jpg", + "backdropPath": "/ueZFcwAUvkjyAB9beaiqJyg0M8H.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 9648, + 10765 + ], + "genres": [ + "Comedy", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-10-07", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 8.173, + "voteCount": 2442, + "popularity": 30.4222 + }, + { + "id": 110316, + "title": "Alice in Borderland", + "originalTitle": "今際の国のアリス", + "overview": "With his two friends, a video-game-obsessed young man finds himself in a strange version of Tokyo where they must compete in dangerous games to win.", + "posterPath": "/Ac8ruycRXzgcsndTZFK6ouGA0FA.jpg", + "backdropPath": "/bKxiLRPVWe2nZXCzt6JPr5HNWYm.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 10759 + ], + "genres": [ + "Mystery", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2020-12-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.129, + "voteCount": 2533, + "popularity": 30.3795 + }, + { + "id": 95897, + "title": "Overflow", + "originalTitle": "おーばーふろぉ", + "overview": "Kazushi Sudou is a university student who is visited by his two childhood friends, the sisters Ayane and Kotone Shirakawa. When Ayane discovers that Kazushi not only forgot to buy her pudding but is also using her special lotion in the bath, she decides to take revenge and join Kazushi in his bath along with Kotone. Will the perverted Kazushi be able to remain indifferent to them both?", + "posterPath": "/8RtwL5gxUvh9YViqjhNlVRvJpum.jpg", + "backdropPath": "/nvWtqhYb6g75Lf6qv7d7PdJ1Ab.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2020-01-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.431, + "voteCount": 72, + "popularity": 30.2068 + }, + { + "id": 250504, + "title": "The Beast in Me", + "originalTitle": "The Beast in Me", + "overview": "A famous author is pulled into a twisted mind game with her rich, powerful new neighbor — who might be a murderer.", + "posterPath": "/jxf7JCfIMvGONWTNUIJ068sFixK.jpg", + "backdropPath": "/ylW0m5UztyyL4YFu8EC6usUHLF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-11-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.244, + "voteCount": 82, + "popularity": 30.2048 + }, + { + "id": 1438, + "title": "The Wire", + "originalTitle": "The Wire", + "overview": "Told from the points of view of both the Baltimore homicide and narcotics detectives and their targets, the series captures a universe in which the national war on drugs has become a permanent, self-sustaining bureaucracy, and distinctions between good and evil are routinely obliterated.", + "posterPath": "/4lbclFySvugI51fwsyxBTOm4DqK.jpg", + "backdropPath": "/layPSOJGckJv3PXZDIVluMq69mn.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2002-06-02", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 2502, + "popularity": 30.1401 + }, + { + "id": 2004, + "title": "Malcolm in the Middle", + "originalTitle": "Malcolm in the Middle", + "overview": "A gifted young teen tries to survive life with his dimwitted, dysfunctional family.", + "posterPath": "/ckLLIsNy3Z0Go1PYHA2PHzVymUA.jpg", + "backdropPath": "/ysaA0BInz4071p3LKqAQnWKZCsK.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-01-09", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 4648, + "popularity": 29.919 + }, + { + "id": 42009, + "title": "Black Mirror", + "originalTitle": "Black Mirror", + "overview": "Twisted tales run wild in this mind-bending anthology series that reveals humanity's worst traits, greatest innovations and more.", + "posterPath": "/seN6rRfN0I6n8iDXjlSMk1QjNcq.jpg", + "backdropPath": "/dg3OindVAGZBjlT3xYKqIAdukPL.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2011-12-04", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.287, + "voteCount": 5817, + "popularity": 29.8415 + }, + { + "id": 95480, + "title": "Slow Horses", + "originalTitle": "Slow Horses", + "overview": "Follow a dysfunctional team of MI5 agents—and their obnoxious boss, the notorious Jackson Lamb—as they navigate the espionage world's smoke and mirrors to defend England from sinister forces.", + "posterPath": "/dnpatlJrEPiDSn5fzgzvxtiSnMo.jpg", + "backdropPath": "/bDfboQUb45Cv9MYyVBDZw8M8xSM.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2022-04-01", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.985, + "voteCount": 711, + "popularity": 29.7043 + }, + { + "id": 70485, + "title": "Mr. Mercedes", + "originalTitle": "Mr. Mercedes", + "overview": "A demented serial killer taunts a retired police detective with a series of lurid letters and emails, forcing the ex-cop to undertake a private, and potentially felonious, crusade to bring the killer to justice before he can strike again.", + "posterPath": "/zZm3LidCf6Edv6yX3WMKo6KwICg.jpg", + "backdropPath": "/diYVGzRSAJpOCE5Avd5ZKBFUepi.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765, + 18 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-08-09", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.125, + "voteCount": 340, + "popularity": 29.6255 + }, + { + "id": 44314, + "title": "Dog Days", + "originalTitle": "DOG DAYS", + "overview": "Dog Days takes place in the world of Flonyard, an alternate world where its inhabitants look like humans but with animal ears. When Cinque Izumi suddenly gets summoned to this alternate world he is appointed as a Hero. How will he lead his life and interact with the various characters in this new world?", + "posterPath": "/htSW5V0UpFZpVjldYnr8BvTe2T0.jpg", + "backdropPath": "/dNbuZDcVlzIjfuQ7f9zaYzAaEJU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-04-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.038, + "voteCount": 39, + "popularity": 29.609 + }, + { + "id": 12971, + "title": "Dragon Ball Z", + "originalTitle": "ドラゴンボールゼット", + "overview": "Now happily married and with a son, martial arts champion Goku must defend Earth from a series of extraterrestrial invaders bent on destruction.", + "posterPath": "/i1lMlxir5E4jyeLlqS2bK1Cn3Tt.jpg", + "backdropPath": "/ydf1CeiBLfdxiyNTpskM0802TKl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1989-04-26", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 8.356, + "voteCount": 4697, + "popularity": 29.5683 + }, + { + "id": 85552, + "title": "Euphoria", + "originalTitle": "Euphoria", + "overview": "A group of high school students navigate love and friendships in a world of drugs, sex, trauma, and social media.", + "posterPath": "/3Q0hd3heuWwDWpwcDkhQOA6TYWI.jpg", + "backdropPath": "/9KnIzPCv9XpWA0MqmwiKBZvV1Sj.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-06-16", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.287, + "voteCount": 10221, + "popularity": 29.4702 + }, + { + "id": 76669, + "title": "Elite", + "originalTitle": "Élite", + "overview": "When three working class kids enroll in the most exclusive school in Spain, the clash between the wealthy and the poor students leads to tragedy.", + "posterPath": "/3NTAbAiao4JLzFQw6YxP1YZppM8.jpg", + "backdropPath": "/uU6YW3N11qECNfz18LNGAGg3Uir.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 8.019, + "voteCount": 9290, + "popularity": 29.3808 + }, + { + "id": 46298, + "title": "Hunter x Hunter", + "originalTitle": "HUNTER×HUNTER", + "overview": "To fulfill his dreams of becoming a legendary Hunter like his dad, a young boy must pass a rigorous examination and find his missing father.", + "posterPath": "/i2EEr2uBvRlAwJ8d8zTG2Y19mIa.jpg", + "backdropPath": "/6U0e6OHklJAcMAuIoGXjTBS5zsI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-10-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.662, + "voteCount": 1979, + "popularity": 28.9826 + }, + { + "id": 12225, + "title": "Peppa Pig", + "originalTitle": "Peppa Pig", + "overview": "Peppa Pig is an energetic piggy who lives with Mummy, Daddy, and little brother George. She loves to jump in mud puddles and make loud snorting noises.", + "posterPath": "/iwKVo3HlsyVNXCzFEkd0xHz3kGi.jpg", + "backdropPath": "/ooIYvpusdiXzULeUlL1Ul7XljQK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2004-05-31", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 719, + "popularity": 28.767 + }, + { + "id": 45789, + "title": "Sturm der Liebe", + "originalTitle": "Sturm der Liebe", + "overview": "These are the stories of relationships taking place in the fictional five-star hotel Fürstenhof, located in Feldkirchen-Westerham near Rosenheim with the plot revolving around members of the family room area, the hotel owners, and employees.", + "posterPath": "/jfFNydakwvbeACEwSd2Gh8UWtba.jpg", + "backdropPath": "/kGxPVyra9Lvf5tPmTXnMEBpwOip.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2005-09-26", + "releaseYear": "2005", + "originalLanguage": "de", + "voteAverage": 6, + "voteCount": 38, + "popularity": 28.6556 + }, + { + "id": 111803, + "title": "The White Lotus", + "originalTitle": "The White Lotus", + "overview": "Follow the exploits of various guests and employees at an exclusive tropical resort over the span of a week as with each passing day, a darker complexity emerges in these picture-perfect travelers, the hotel’s cheerful employees and the idyllic locale itself.", + "posterPath": "/gbSaK9v1CbcYH1ISgbM7XObD2dW.jpg", + "backdropPath": "/rCTLaPwuApDx8vLGjYZ9pRl7zRB.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 9648 + ], + "genres": [ + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "2021-07-11", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.623, + "voteCount": 1241, + "popularity": 28.5669 + }, + { + "id": 62650, + "title": "Chicago Med", + "originalTitle": "Chicago Med", + "overview": "An emotional thrill ride through the day-to-day chaos of the city's most explosive hospital and the courageous team of doctors who hold it together. They will tackle unique new cases inspired by topical events, forging fiery relationships in the pulse-pounding pandemonium of the emergency room.", + "posterPath": "/9eym662FRJJb9wdgCiDKPDciZzf.jpg", + "backdropPath": "/x2jNLrYw1s9i6kihEJqsBQgs9nR.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-11-17", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.281, + "voteCount": 1212, + "popularity": 28.3267 + }, + { + "id": 226637, + "title": "High Potential", + "originalTitle": "High Potential", + "overview": "Morgan is a single mom with an exceptional mind, whose unconventional knack for solving crimes leads to an unusual and unstoppable partnership with a by-the-book seasoned detective.", + "posterPath": "/xCtaUDBUP1iKqtoqpHfeH1T2pWF.jpg", + "backdropPath": "/yVP12H81dwaay5B7GVqgO893q2c.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2024-09-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.037, + "voteCount": 361, + "popularity": 28.1829 + }, + { + "id": 95557, + "title": "INVINCIBLE", + "originalTitle": "INVINCIBLE", + "overview": "Mark Grayson is a normal teenager except for the fact that his father is the most powerful superhero on the planet. Shortly after his seventeenth birthday, Mark begins to develop powers of his own and enters into his father’s tutelage.", + "posterPath": "/jBn4LWlgdsf6xIUYhYBwpctBVsj.jpg", + "backdropPath": "/dfmPbyeZZSz3bekeESvMJaH91gS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2021-03-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.623, + "voteCount": 5181, + "popularity": 27.969 + }, + { + "id": 4586, + "title": "Gilmore Girls", + "originalTitle": "Gilmore Girls", + "overview": "Set in the charming town of Stars Hollow, Connecticut, the series follows the captivating lives of Lorelai and Rory Gilmore, a mother/daughter pair who have a relationship most people only dream of.", + "posterPath": "/gwtzCwU2wdLLf8oejQu2TINiWfQ.jpg", + "backdropPath": "/8U2ndZrneigI2zkvGuTJtt1ZsxK.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2000-10-05", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 1168, + "popularity": 27.8685 + }, + { + "id": 211288, + "title": "Tracker", + "originalTitle": "Tracker", + "overview": "Lone-wolf survivalist Colter Shaw roams the country as a “reward seeker,” using his expert tracking skills to help private citizens and law enforcement solve all manner of mysteries while contending with his own fractured family.", + "posterPath": "/otula4h1ITZ0eV84eg7Lb8u614C.jpg", + "backdropPath": "/5C5cMYUlmX6BU5YxBqhp7ZpSd3Q.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2024-02-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.525, + "voteCount": 223, + "popularity": 27.8644 + }, + { + "id": 17610, + "title": "NCIS: Los Angeles", + "originalTitle": "NCIS: Los Angeles", + "overview": "The exploits of the Los Angeles–based Office of Special Projects (OSP), an elite division of the Naval Criminal Investigative Service that specializes in undercover assignments.", + "posterPath": "/TIIgcznwNfNr3KOZvxn26eKV99.jpg", + "backdropPath": "/dAepkmD4vdfhS82r2OIqF1nwGR5.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80, + 9648 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2009-09-22", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.529, + "voteCount": 1211, + "popularity": 27.8606 + }, + { + "id": 39351, + "title": "Grimm", + "originalTitle": "Grimm", + "overview": "After Portland homicide detective Nick Burkhardt discovers he's descended from an elite line of criminal profilers known as \"Grimms,\" he increasingly finds his responsibilities as a detective at odds with his new responsibilities as a Grimm.", + "posterPath": "/iOptnt1QHi6bIHmOq6adnZTV0bU.jpg", + "backdropPath": "/oS3nip9GGsx5A7vWp8A1cazqJlF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-10-28", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.268, + "voteCount": 3408, + "popularity": 27.8483 + }, + { + "id": 3034, + "title": "Scene of the Crime", + "originalTitle": "Tatort", + "overview": "Tatort is a long-running German/Austrian/Swiss, crime television series set in various parts of these countries. The show is broadcast on the channels of ARD in Germany, ORF in Austria and SF1 in Switzerland.", + "posterPath": "/yh43TKi9himQWhzrlWBxV8WjsFn.jpg", + "backdropPath": "/lUrtMjiunomHPDC2sQNIxswbmdU.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1970-11-29", + "releaseYear": "1970", + "originalLanguage": "de", + "voteAverage": 6.1, + "voteCount": 117, + "popularity": 27.7936 + }, + { + "id": 22980, + "title": "Watch What Happens Live with Andy Cohen", + "originalTitle": "Watch What Happens Live with Andy Cohen", + "overview": "Bravo network executive Andy Cohen discusses pop culture topics with celebrities and reality show personalities.", + "posterPath": "/onSD9UXfJwrMXWhq7UY7hGF2S1h.jpg", + "backdropPath": "/hINekSpbcBxjnjGqmIm6I4bz2ab.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2009-07-16", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.056, + "voteCount": 80, + "popularity": 27.6154 + }, + { + "id": 63333, + "title": "The Last Kingdom", + "originalTitle": "The Last Kingdom", + "overview": "A show of heroic deeds and epic battles with a thematic depth that embraces politics, religion, warfare, courage, love, loyalty and our universal search for identity. Combining real historical figures and events with fictional characters, it is the story of how a people combined their strength under one of the most iconic kings of history in order to reclaim their land for themselves and build a place they call home.", + "posterPath": "/8eJf0hxgIhE6QSxbtuNCekTddy1.jpg", + "backdropPath": "/ifZYdmNuMWimFCUGGcYAs9bHNlv.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10768 + ], + "genres": [ + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "2015-10-10", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 1883, + "popularity": 27.4929 + }, + { + "id": 46260, + "title": "Naruto", + "originalTitle": "ナルト", + "overview": "Naruto Uzumaki, a mischievous adolescent ninja, struggles as he searches for recognition and dreams of becoming the Hokage, the village's leader and strongest ninja.", + "posterPath": "/xppeysfvDKVx775MFuH8Z9BlpMk.jpg", + "backdropPath": "/xuJ0F9RfKvVSJNDg2usurQ9WvY5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-10-03", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.363, + "voteCount": 5824, + "popularity": 27.2979 + }, + { + "id": 219080, + "title": "The Mighty Nein", + "originalTitle": "The Mighty Nein", + "overview": "When a powerful arcane relic known as 'The Beacon' falls into nefarious hands, a group of fugitives and outcasts, bound by secrets and scars, must learn to work together to save the realm and stop reality as they know it from unraveling.", + "posterPath": "/qJTZanXDiJKABLNGRM9LmSg8YT7.jpg", + "backdropPath": "/zUynbDIQtpWqtZkmwjEyvvFOURS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2025-11-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.808, + "voteCount": 13, + "popularity": 27.2929 + }, + { + "id": 247718, + "title": "MobLand", + "originalTitle": "MobLand", + "overview": "Two mob families clash in a war that threatens to topple empires and lives.", + "posterPath": "/abeH7n5pcuQcwYcTxG6DTZvXLP1.jpg", + "backdropPath": "/tQqbbxBAdW2ql8vbOqMOJbtSQ7O.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-03-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.417, + "voteCount": 487, + "popularity": 27.2085 + }, + { + "id": 4656, + "title": "Raw", + "originalTitle": "Raw", + "overview": "A regularly scheduled, live, year-round program featuring some of the biggest WWE Superstars.", + "posterPath": "/pv5WNnLUo7mpT8k901Lo8UovrqI.jpg", + "backdropPath": "/n69QxkZ0RRc6PMNnxD9U0MZnLzl.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1993-01-11", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 346, + "popularity": 26.9535 + }, + { + "id": 77169, + "title": "Cobra Kai", + "originalTitle": "Cobra Kai", + "overview": "This Karate Kid sequel series picks up 30 years after the events of the 1984 All Valley Karate Tournament and finds Johnny Lawrence on the hunt for redemption by reopening the infamous Cobra Kai karate dojo. This reignites his old rivalry with the successful Daniel LaRusso, who has been working to maintain the balance in his life without mentor Mr. Miyagi.", + "posterPath": "/6POBWybSBDBKjSs1VAQcnQC1qyt.jpg", + "backdropPath": "/zymbuoBoL1i94xAOzVJF6IuWLfD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 35 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2018-05-02", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.208, + "voteCount": 6760, + "popularity": 26.8448 + }, + { + "id": 655, + "title": "Star Trek: The Next Generation", + "originalTitle": "Star Trek: The Next Generation", + "overview": "Follow the intergalactic adventures of Capt. Jean-Luc Picard and his loyal crew aboard the all-new USS Enterprise NCC-1701D, as they explore new worlds.", + "posterPath": "/vkLzXddgUKH5VcpnYiRzpJFrZhz.jpg", + "backdropPath": "/qmliLoo6GVheM2FihatlAXxCKyF.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "1987-09-28", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 1648, + "popularity": 26.8073 + }, + { + "id": 82873, + "title": "The Kelly Clarkson Show", + "originalTitle": "The Kelly Clarkson Show", + "overview": "Kelly Clarkson presents the biggest newsmakers and names in film, television and music; as well as emerging new talent and everyday people who are beacons of hope in their communities.", + "posterPath": "/sBix25bie9UQFzbarN51DpFO5ky.jpg", + "backdropPath": "/bk7QdAIUqkGpZO5GUX4AMB2AZIB.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2019-09-09", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 69, + "popularity": 26.7746 + }, + { + "id": 243881, + "title": "House of David", + "originalTitle": "House of David", + "overview": "Tells the story of the ascent of the biblical figure, David, who becomes the most celebrated king of Israel. The series follows the once-mighty King Saul as he falls victim to his own pride. At the direction of God, the prophet Samuel anoints an unlikely, outcast teenager as the new king.", + "posterPath": "/9pxRMetW8ZwnepLnIf37YWuNvgk.jpg", + "backdropPath": "/dWEbHN4DRxJsIZqJHFhOq0KFSxD.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-02-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 184, + "popularity": 26.7058 + }, + { + "id": 1415, + "title": "Elementary", + "originalTitle": "Elementary", + "overview": "A modern-day drama about a crime-solving duo that cracks the NYPD's most impossible cases. Following his fall from grace in London and a stint in rehab, eccentric Sherlock escapes to Manhattan where his wealthy father forces him to live with his worst nightmare - a sober companion, Dr. Watson.", + "posterPath": "/q9dObe29W4bDpgzUfOOH3ZnzDbR.jpg", + "backdropPath": "/7sJrNKwzyJWnFPFpDL9wnZ859LZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2012-09-27", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.609, + "voteCount": 1741, + "popularity": 26.6984 + }, + { + "id": 1418, + "title": "The Big Bang Theory", + "originalTitle": "The Big Bang Theory", + "overview": "Physicists Leonard and Sheldon find their nerd-centric social circle with pals Howard and Raj expanding when aspiring actress Penny moves in next door.", + "posterPath": "/ooBGRQBdbGzBxAVfExiO8r7kloA.jpg", + "backdropPath": "/7RySzFeK3LPVMXcPtqfZnl6u4p1.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-09-24", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.912, + "voteCount": 12072, + "popularity": 26.5497 + }, + { + "id": 70523, + "title": "Dark", + "originalTitle": "Dark", + "overview": "A missing child sets four families on a frantic hunt for answers as they unearth a mind-bending mystery that spans three generations.", + "posterPath": "/apbrbWs8M9lyOpJYU5WXrpFbk1Z.jpg", + "backdropPath": "/75HgaphatW0PDI3XIHQWZUpbhn6.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10765, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2017-12-01", + "releaseYear": "2017", + "originalLanguage": "de", + "voteAverage": 8.4, + "voteCount": 7228, + "popularity": 26.0556 + }, + { + "id": 37854, + "title": "One Piece", + "originalTitle": "ワンピース", + "overview": "Years ago, the fearsome Pirate King, Gol D. Roger was executed leaving a huge pile of treasure and the famous \"One Piece\" behind. Whoever claims the \"One Piece\" will be named the new King of the Pirates.\n\nMonkey D. Luffy, a boy who consumed a \"Devil Fruit,\" decides to follow in the footsteps of his idol, the pirate Shanks, and find the One Piece. It helps, of course, that his body has the properties of rubber and that he's surrounded by a bevy of skilled fighters and thieves to help him along the way.\n\nLuffy will do anything to get the One Piece and become King of the Pirates!", + "posterPath": "/cMD9Ygz11zjJzAovURpO75Qg7rT.jpg", + "backdropPath": "/oVfucXvhutTpYExG9k06NJqnpT9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 16 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Animation" + ], + "releaseDate": "1999-10-20", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.721, + "voteCount": 5054, + "popularity": 26.0354 + }, + { + "id": 281011, + "title": "Would You Marry Me?", + "originalTitle": "우주메리미", + "overview": "A couple who pretend to be newlyweds, find themselves developing genuine feelings for each other as they navigate their fake marriage.", + "posterPath": "/pfN6Ln8a6Xw23LQw0vL1YL8Kwqh.jpg", + "backdropPath": "/lRWXYQGwL56Y1iCrXC5XxCKBz1V.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-10-10", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.7, + "voteCount": 34, + "popularity": 26.0208 + }, + { + "id": 125988, + "title": "Silo", + "originalTitle": "Silo", + "overview": "In a ruined and toxic future, thousands live in a giant silo deep underground. After its sheriff breaks a cardinal rule and residents die mysteriously, engineer Juliette starts to uncover shocking secrets and the truth about the silo.", + "posterPath": "/c2OijvbFEXBW1onbzuvENr4CGQB.jpg", + "backdropPath": "/4XccmjsOmQZw8S2iW1wvlvmb5v1.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2023-05-04", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.126, + "voteCount": 1800, + "popularity": 25.9652 + }, + { + "id": 292035, + "title": "Revenged Love", + "originalTitle": "逆爱", + "overview": "After Wu Suo-wei's girlfriend dumps him, he decides to get revenge by seducing her new boyfriend, Chi Cheng! It started as a game, but falling in love was never part of the plan.", + "posterPath": "/j5KWzpPAi4JC42GGrVWDFL6G2gY.jpg", + "backdropPath": "/meWe2hrruxmVWT75LObGywpuEqI.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-06-16", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.26, + "voteCount": 52, + "popularity": 25.8823 + }, + { + "id": 84773, + "title": "The Lord of the Rings: The Rings of Power", + "originalTitle": "The Lord of the Rings: The Rings of Power", + "overview": "Beginning in a time of relative peace, we follow an ensemble cast of characters as they confront the re-emergence of evil to Middle-earth. From the darkest depths of the Misty Mountains, to the majestic forests of Lindon, to the breathtaking island kingdom of Númenor, to the furthest reaches of the map, these kingdoms and characters will carve out legacies that live on long after they are gone.", + "posterPath": "/kf5Hz70tjNAHg4swGDzOr9BfoZ1.jpg", + "backdropPath": "/ukewRnKD05Si7DkED2tSKBTXeEd.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2022-09-01", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.27, + "voteCount": 3495, + "popularity": 25.8821 + }, + { + "id": 2661, + "title": "Kamen Rider", + "originalTitle": "仮面ライダー", + "overview": "Takeshi Hongo is a promising young man with a passion for motorcycle racing. However, his dreams are suddenly ruined when he gets kidnapped by Shocker, the evil secret organization planning to dominate the world. After being remodeled into a cyborg, Takeshi escapes and swears to protect the world from the inhuman monsters.", + "posterPath": "/lv3OlrXyTNg4Dz0JrtopOmMziNs.jpg", + "backdropPath": "/usLRh1bcbL0Q9X8zf6rL4OV1qrA.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1971-04-03", + "releaseYear": "1971", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 91, + "popularity": 25.7762 + }, + { + "id": 91239, + "title": "Bridgerton", + "originalTitle": "Bridgerton", + "overview": "Wealth, lust, and betrayal set in the backdrop of Regency era England, seen through the eyes of the powerful Bridgerton family.", + "posterPath": "/zCEm0xrRMa5fLCQ9d0nvcw6tvcr.jpg", + "backdropPath": "/m7FqiUOvsSk7Ulg2oRMfFGcLeT9.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-12-25", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.074, + "voteCount": 3045, + "popularity": 25.7653 + }, + { + "id": 119769, + "title": "Taxi Driver", + "originalTitle": "모범택시", + "overview": "A former special forces soldier delivers revenge for victims of injustice while working for a secret organization that fronts as a taxi company.", + "posterPath": "/lghfb8beej1aH9ML8QyeSixniom.jpg", + "backdropPath": "/qrlfF3usm2FZCMvCg2uas8CazxW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2021-04-09", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 153, + "popularity": 25.7331 + }, + { + "id": 211089, + "title": "Strange Tales of Tang Dynasty", + "originalTitle": "唐朝诡事录", + "overview": "General Lu Lingfeng and Detective Su Wuming uncover supernatural mysteries and hidden conspiracies threatening the empire during Emperor Xuanzong’s reign.", + "posterPath": "/nyhBueT07zQS7wWLYFDNO8LdO3N.jpg", + "backdropPath": "/8b5yXvmWSOl64Abk1wMYhzs4OnP.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80, + 18, + 10759 + ], + "genres": [ + "Mystery", + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2022-09-27", + "releaseYear": "2022", + "originalLanguage": "zh", + "voteAverage": 8.355, + "voteCount": 38, + "popularity": 25.6983 + }, + { + "id": 502, + "title": "Sesame Street", + "originalTitle": "Sesame Street", + "overview": "On a special inner city street, the inhabitants—human and muppet—teach preschoolers basic educational and social concepts using comedy, cartoons, games, and songs.", + "posterPath": "/14k9BfZ2p4rQBMeJ5crKTfUZVwD.jpg", + "backdropPath": "/tNi2aJPdCKfielGYzIi3IKxStz9.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 35 + ], + "genres": [ + "Kids", + "Comedy" + ], + "releaseDate": "1969-11-10", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 272, + "popularity": 25.6663 + }, + { + "id": 56570, + "title": "Outlander", + "originalTitle": "Outlander", + "overview": "The story of Claire Randall, a married combat nurse from 1945 who is mysteriously swept back in time to 1743, where she is immediately thrown into an unknown world where her life is threatened. When she is forced to marry Jamie, a chivalrous and romantic young Scottish warrior, a passionate affair is ignited that tears Claire's heart between two vastly different men in two irreconcilable lives.", + "posterPath": "/hXWGDEwPiEWqFesF5gZGImtPIWh.jpg", + "backdropPath": "/nf3Vlxm3C9U1aKUUQHmKFZmxPSc.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-08-09", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.185, + "voteCount": 2735, + "popularity": 25.6333 + }, + { + "id": 1435, + "title": "The Good Wife", + "originalTitle": "The Good Wife", + "overview": "Alicia Florrick boldly assumes full responsibility for her family and re-enters the workforce after her husband's very public sex and political corruption scandal lands him in jail.", + "posterPath": "/lasNCd45fpPLirlA7QxkuopWro.jpg", + "backdropPath": "/uinrziSwEmS6s8VvGBad5sed7bF.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-09-22", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 640, + "popularity": 25.6196 + }, + { + "id": 484, + "title": "Murder, She Wrote", + "originalTitle": "Murder, She Wrote", + "overview": "An unassuming mystery writer turned sleuth uses her professional insight to help solve real-life homicide cases.", + "posterPath": "/3UxBFG4fiuZ0P9n2sCrjXh64Avy.jpg", + "backdropPath": "/eciikZDLyEBQanGh3zpGNuYHtQ3.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80, + 18 + ], + "genres": [ + "Mystery", + "Crime", + "Drama" + ], + "releaseDate": "1984-09-30", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 412, + "popularity": 25.5592 + }, + { + "id": 1667, + "title": "Saturday Night Live", + "originalTitle": "Saturday Night Live", + "overview": "A late-night live television sketch comedy and variety show created by Lorne Michaels. The show's comedy sketches, which parody contemporary culture and politics, are performed by a large and varying cast of repertory and newer cast members. Each episode is hosted by a celebrity guest, who usually delivers an opening monologue and performs in sketches with the cast, and features performances by a musical guest.", + "posterPath": "/s1cZBqbMwAF3w8S3Yo0j5nr2Yuo.jpg", + "backdropPath": "/sSAX59Kf01lBRkBW4UcIL4kIoIm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10763 + ], + "genres": [ + "Comedy", + "News" + ], + "releaseDate": "1975-10-11", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.95, + "voteCount": 473, + "popularity": 25.393 + }, + { + "id": 157239, + "title": "Alien: Earth", + "originalTitle": "Alien: Earth", + "overview": "When the mysterious deep space research vessel USCSS Maginot crash-lands on Earth, Wendy and a ragtag group of tactical soldiers make a fateful discovery that puts them face-to-face with the planet's greatest threat.", + "posterPath": "/yueXS3q8BtoWekcHOATFHicLl3e.jpg", + "backdropPath": "/biIBy2LPOOtGCgUYOls3dUEWU3v.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-08-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.433, + "voteCount": 816, + "popularity": 25.3918 + }, + { + "id": 1447, + "title": "Psych", + "originalTitle": "Psych", + "overview": "Thanks to his police officer father's efforts, Shawn Spencer spent his childhood developing a keen eye for detail (and a lasting dislike of his dad). Years later, Shawn's frequent tips to the police lead to him being falsely accused of a crime he solved.\n\nNow, Shawn has no choice but to use his abilities to perpetuate his cover story: psychic crime-solving powers, all the while dragging his best friend, his dad, and the police along for the ride.", + "posterPath": "/fDI15gTVbtW5Sbv5QenqecRxWKJ.jpg", + "backdropPath": "/sh7GRlX4d7j3XSTeyGZnlKqkHGk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "2006-07-07", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.889, + "voteCount": 909, + "popularity": 25.2994 + }, + { + "id": 30984, + "title": "Bleach", + "originalTitle": "BLEACH", + "overview": "For as long as he can remember, Ichigo Kurosaki has been able to see ghosts. But when he meets Rukia, a Soul Reaper who battles evil spirits known as Hollows, he finds his life is changed forever. Now, with a newfound wealth of spiritual energy, Ichigo discovers his true calling: to protect the living and the dead from evil.", + "posterPath": "/2EewmxXe72ogD0EaWM8gqa0ccIw.jpg", + "backdropPath": "/o0NsbcIvsllg6CJX0FBFY8wWbsn.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.357, + "voteCount": 2021, + "popularity": 25.2366 + }, + { + "id": 48891, + "title": "Brooklyn Nine-Nine", + "originalTitle": "Brooklyn Nine-Nine", + "overview": "A single-camera ensemble comedy following the lives of an eclectic group of detectives in a New York precinct, including one slacker who is forced to shape up when he gets a new boss.", + "posterPath": "/A3SymGlOHefSKbz1bCOz56moupS.jpg", + "backdropPath": "/wyspZaGs7CXceV3Ct7NJhcKNDkn.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2013-09-17", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.22, + "voteCount": 3746, + "popularity": 25.1677 + }, + { + "id": 1220, + "title": "The Graham Norton Show", + "originalTitle": "The Graham Norton Show", + "overview": "Each week celebrity guests join Irish comedian Graham Norton to discuss what's being going on around the world that week. The guests poke fun and share their opinions on the main news stories. Graham is often joined by a band or artist to play the show out.", + "posterPath": "/vrbqaBXB8AALynQzpWz6JdCPEJS.jpg", + "backdropPath": "/2pJYis3LUEgFC3UErTQVgmUV1hN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2007-02-22", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.179, + "voteCount": 274, + "popularity": 25.0326 + }, + { + "id": 34860, + "title": "Ninja Boy Rantaro", + "originalTitle": "忍たま乱太郎", + "overview": "Rantarō, Shinbei and Kirimaru are ninja apprentices in the Ninja Gakuen, where first grade ones are called \"Nintamas\". They must learn everything a ninja must know, but as for our heroes, money, food or playing are more interesting. The series show the everyday adventures of our heroes.", + "posterPath": "/raKlXyICQBeTxYavErIRybR6g8d.jpg", + "backdropPath": "/4fVwc77cov2q9i0szzYhlkAaqza.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 10762, + 16, + 10751 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Kids", + "Animation", + "Family" + ], + "releaseDate": "1993-04-10", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 20, + "popularity": 24.9863 + }, + { + "id": 4376, + "title": "JAG", + "originalTitle": "JAG", + "overview": "Harmon \"Harm\" Rabb Jr. is a former pilot turned lawyer working for the military's JAG (Judge Advocate General) division, the elite legal wing of officers that prosecutes and defends those accused of military-related crimes. He works closely with Lt. Col. Sarah Mackenzie, and together they do what needs to be done to find the truth.", + "posterPath": "/zPyHpkJZ5O08lbgrQQIROXtb3xz.jpg", + "backdropPath": "/rxnschfLZf3ZPRiIa6oBBMtY7hF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "1995-09-23", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 374, + "popularity": 24.9183 + }, + { + "id": 46896, + "title": "The Originals", + "originalTitle": "The Originals", + "overview": "The Vampire Diaries spin-off that follows the Mikaelsons, a family of millennia-old, power-hungry vampires who want to reclaim the city they built, New Orleans, and dominate all those who have wronged them.", + "posterPath": "/keJOhJXGiLL54EW6QocbyvQGquA.jpg", + "backdropPath": "/2OAoGOvysScieVhIazrWTXj2ESp.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2013-10-03", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.593, + "voteCount": 3502, + "popularity": 24.8408 + }, + { + "id": 269, + "title": "One Tree Hill", + "originalTitle": "One Tree Hill", + "overview": "In Tree Hill, North Carolina two half brothers share a last name and nothing else. Brooding, blue-collar Lucas is a talented street-side basketball player, but his skills are appreciated only by his friends at the river court. Popular, affluent Nathan basks in the hero-worship of the town, as the star of his high school team. And both boys are the son of former college ball player Dan Scott whose long ago choice to abandon Lucas and his mother Karen, will haunt him long into his life with wife Deb and their son Nathan.", + "posterPath": "/sOrelBaAhp7DZbPTivDwKEyPslC.jpg", + "backdropPath": "/eDNSgT1xPMKYcEzJ5GG0PCE3NcN.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-09-23", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.766, + "voteCount": 548, + "popularity": 24.6817 + }, + { + "id": 4556, + "title": "Scrubs", + "originalTitle": "Scrubs", + "overview": "In the unreal world of Sacred Heart Hospital, John \"J.D.\" Dorian learns the ways of medicine, friendship and life.", + "posterPath": "/u1z05trCA7AuSuDhi365grwdos1.jpg", + "backdropPath": "/z6fUdAWIqSenjIYsPmRltaGHcTq.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2001-10-02", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.006, + "voteCount": 2020, + "popularity": 24.6687 + }, + { + "id": 194766, + "title": "The Summer I Turned Pretty", + "originalTitle": "The Summer I Turned Pretty", + "overview": "Every summer, Belly and her family head to the Fishers’ beach house in Cousins. Every summer is the same ... until Belly turns sixteen. Relationships will be tested, painful truths will be revealed, and Belly will be forever changed. It’s a summer of first love, first heartbreak and growing up — it's the summer she turns pretty.", + "posterPath": "/xBIz53wYWsKfFpN0TaizVAjKJ0z.jpg", + "backdropPath": "/jCcSS9iDpKgll8Kpp7qVhSn0l1f.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-06-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 1009, + "popularity": 24.6012 + }, + { + "id": 40, + "title": "Dallas", + "originalTitle": "Dallas", + "overview": "The world's first mega-soap, and one of the most popular ever produced, Dallas had it all. Beautiful women, expensive cars, and men playing Monopoly with real buildings. Famous for one of the best cliffhangers in TV history, as the world asked \"Who shot J.R.?\" A slow-burner to begin with, Dallas hit its stride in the 2nd season, with long storylines and expert character development. Dallas ruled the airwaves in the 1980's.", + "posterPath": "/A1dupjBm7rXqBw2Dbz9WUsHoyxo.jpg", + "backdropPath": "/5Z40OJgNeedcAgqPRTGQzlk17Mv.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 10751 + ], + "genres": [ + "Soap", + "Drama", + "Family" + ], + "releaseDate": "1978-04-02", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 6.849, + "voteCount": 228, + "popularity": 24.5433 + }, + { + "id": 74016, + "title": "The Resident", + "originalTitle": "The Resident", + "overview": "A tough, brilliant senior resident guides an idealistic young doctor through his first day, pulling back the curtain on what really happens, both good and bad, in modern-day medicine.", + "posterPath": "/2IkYQJlT26yXef2iot7dhRtavSC.jpg", + "backdropPath": "/9oVp0xfKW2igxDEo5wr3JTMQBub.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-01-21", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 1274, + "popularity": 24.4834 + }, + { + "id": 615, + "title": "Futurama", + "originalTitle": "Futurama", + "overview": "The adventures of a late-20th-century New York City pizza delivery boy, Philip J. Fry, who, after being unwittingly cryogenically frozen for one thousand years, finds employment at Planet Express, an interplanetary delivery company in the retro-futuristic 31st century.", + "posterPath": "/6ZS8SOno6kTmWz4eQ8lX8EBXOMv.jpg", + "backdropPath": "/4xKG4S1IyLIglHbCYGJDsptgQNh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-03-28", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 3555, + "popularity": 24.2885 + }, + { + "id": 60708, + "title": "Gotham", + "originalTitle": "Gotham", + "overview": "Everyone knows the name Commissioner Gordon. He is one of the crime world's greatest foes, a man whose reputation is synonymous with law and order. But what is known of Gordon's story and his rise from rookie detective to Police Commissioner? What did it take to navigate the multiple layers of corruption that secretly ruled Gotham City, the spawning ground of the world's most iconic villains? And what circumstances created them – the larger-than-life personas who would become Catwoman, The Penguin, The Riddler, Two-Face and The Joker?", + "posterPath": "/4XddcRDtnNjYmLRMYpbrhFxsbuq.jpg", + "backdropPath": "/rbDFI2I1nMyJtX4Y3jJ4H1QRdRX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10765 + ], + "genres": [ + "Drama", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-09-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.597, + "voteCount": 3587, + "popularity": 24.2685 + }, + { + "id": 271, + "title": "Ellen", + "originalTitle": "Ellen", + "overview": "Ellen is an American television sitcom that aired on the ABC network from March 29, 1994 to July 22, 1998, consisting of 109 episodes. The title role of Ellen Morgan, played by stand-up comedian Ellen DeGeneres, was a neurotic bookstore owner in her thirties.\n\nThe series centered on Ellen's dealing with her quirky friends, her family and the problems of daily life. The series is notable for being the first one in which the main character came out as gay, which DeGeneres' character did in the 1997 episode \"Puppy Episode\". This event received a great deal of media exposure, ignited controversy, and prompted ABC to place a parental advisory at the beginning of each episode.\n\nThe series' theme song, \"So Called Friend\" is by Scottish band Texas. A running gag was that each episode had a distinct opening credits sequence, resulting from Ellen's ongoing search for the perfect opening credits.", + "posterPath": "/1GvwnoKzbUHHxbSO6ZSHygw1is8.jpg", + "backdropPath": "/5Ku7oI2teI2CQ8m03ZvEisOQZVt.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1994-03-29", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 51, + "popularity": 24.2614 + }, + { + "id": 33907, + "title": "Downton Abbey", + "originalTitle": "Downton Abbey", + "overview": "A chronicle of the lives of the aristocratic Crawley family and their servants in the post-Edwardian era—with great events in history having an effect on their lives and on the British social hierarchy.\n\n", + "posterPath": "/7HgDYRYjym4BwbhKaqTQq771SKb.jpg", + "backdropPath": "/vXbSoGHWtzViIgHxcD3tqLTr0lc.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-09-26", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.121, + "voteCount": 1124, + "popularity": 24.2291 + }, + { + "id": 65733, + "title": "Doraemon", + "originalTitle": "ドラえもん", + "overview": "Robotic cat Doraemon is sent back in time from the 22nd century to protect 10-year-old Noby, a lazy and uncoordinated boy who is destined to have a tragic future. Doraemon can create secret gadgets from a pocket on his stomach, but they usually cause more bad than good because of Noby's propensity to misuse them.", + "posterPath": "/9ZN1P32SHviL3SV51qLivxycvcx.jpg", + "backdropPath": "/hqqdoXdrp4o8ZqADHVYIXwBkn3Y.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "2005-04-22", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.033, + "voteCount": 198, + "popularity": 23.9475 + }, + { + "id": 33217, + "title": "Young Justice", + "originalTitle": "Young Justice", + "overview": "Teenage superheroes strive to prove themselves as members of the Justice League.", + "posterPath": "/zMJw34G4OJhcd9NjKSRjJdDqjbR.jpg", + "backdropPath": "/pOKcw45cAMPu8DN7E3bN5FEvxM3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2010-11-26", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.386, + "voteCount": 1174, + "popularity": 23.7066 + }, + { + "id": 14929, + "title": "Heartland", + "originalTitle": "Heartland", + "overview": "Life is hard on the Flemings' ranch in the Alberta foothills where abused or neglected horses find refuge with a kind, hard-working family. Debts abound and the bank is about to foreclose. Can they keep the ranch running?", + "posterPath": "/uc2gtWczT58BiAUJWFz9P5aZmNF.jpg", + "backdropPath": "/11nGiX6hLdexBD4TVUAAVzSIAQy.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 35 + ], + "genres": [ + "Family", + "Drama", + "Comedy" + ], + "releaseDate": "2007-10-14", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 568, + "popularity": 23.6568 + }, + { + "id": 253811, + "title": "Tougen Anki", + "originalTitle": "桃源暗鬼", + "overview": "After a Momotaro assassin suddenly kills his adoptive father, Shiki vows to avenge him. But first, he must learn to control his newly awakened Oni blood.", + "posterPath": "/vnasRNhwT5M3OvTAMzYn4i5fQcT.jpg", + "backdropPath": "/k7h9p81H6X6TGV70TgOp4TmjXco.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.085, + "voteCount": 53, + "popularity": 23.6342 + }, + { + "id": 3452, + "title": "Frasier", + "originalTitle": "Frasier", + "overview": "After many years spent at the “Cheers” bar, Frasier moves back home to Seattle to work as a radio psychiatrist after his policeman father gets shot in the hip on duty.", + "posterPath": "/gYAb6GCVEFsU9hzMCG5rxaxoIv3.jpg", + "backdropPath": "/4FqKFhF4BrNsrK3EdRpVJofVqCp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1993-09-16", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.691, + "voteCount": 834, + "popularity": 23.5304 + }, + { + "id": 1411, + "title": "Person of Interest", + "originalTitle": "Person of Interest", + "overview": "John Reese, former CIA paramilitary operative, is presumed dead and teams up with reclusive billionaire Finch to prevent violent crimes in New York City by initiating their own type of justice. With the special training that Reese has had in Covert Operations and Finch's genius software inventing mind, the two are a perfect match for the job that they have to complete. With the help of surveillance equipment, they work \"outside the law\" and get the right criminal behind bars. ", + "posterPath": "/6FuKOyJgViZXgMDOq9djFJLWPqX.jpg", + "backdropPath": "/1UkDX6CK8hJ0oUtUycDTp5Vh9wO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-09-22", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.086, + "voteCount": 1924, + "popularity": 23.4748 + }, + { + "id": 39185, + "title": "Vera", + "originalTitle": "Vera", + "overview": "A sharp detective with a messy life, DCI Vera Stanhope patrols her “patch” of northeast England, pursuing the truth in cases of murder, kidnapping, and blackmail. Vera is obsessive about her work and faces the world with caustic wit, guile and courage.", + "posterPath": "/7qpXXG6Izo0NvmxHib2SKRDXmXQ.jpg", + "backdropPath": "/6LQdA5QPX7tjxPxD3l6hufGA2Ko.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2011-05-01", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 163, + "popularity": 23.4028 + }, + { + "id": 286801, + "title": "Monster: The Ed Gein Story", + "originalTitle": "Monster: The Ed Gein Story", + "overview": "The shocking true-life tale of Ed Gein, the infamous murderer and grave robber who inspired many of Hollywood's most iconic on-screen killers.", + "posterPath": "/iDHzRALtZCzHVmx7uyjTTKvMAPB.jpg", + "backdropPath": "/cm2oUAPiTE1ERoYYOzzgloQw4YZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 402, + "popularity": 23.4022 + }, + { + "id": 32726, + "title": "Bob's Burgers", + "originalTitle": "Bob's Burgers", + "overview": "Bob's Burgers follows a third-generation restaurateur, Bob, as he runs Bob's Burgers with the help of his wife and their three kids. Bob and his quirky family have big ideas about burgers, but fall short on service and sophistication. Despite the greasy counters, lousy location and a dearth of customers, Bob and his family are determined to make Bob's Burgers \"grand re-re-re-opening\" a success.", + "posterPath": "/iIHsQe3Qjs3NH62HdamyQEPeqTR.jpg", + "backdropPath": "/xnU9b4IehJ08Ikz3sweABtY5IwU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-01-09", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.828, + "voteCount": 1032, + "popularity": 23.2958 + }, + { + "id": 71789, + "title": "SEAL Team", + "originalTitle": "SEAL Team", + "overview": "Military drama following the professional and personal lives of the most elite unit of Navy SEALs as they train, plan and execute the most dangerous, high stakes missions our country can ask of them.", + "posterPath": "/6iSnec83UEMgLOXAtGYwaVNHLjR.jpg", + "backdropPath": "/ojyo33io8HGxNCRg21Z1o87YEZX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10768 + ], + "genres": [ + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "2017-09-27", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 1586, + "popularity": 23.2678 + }, + { + "id": 87940, + "title": "Hudson & Rex", + "originalTitle": "Hudson & Rex", + "overview": "Detective Charlie Hudson teams up with what he calls his \"highly trained law enforcement animal\" German Shepherd dog named Rex who he prefers to team up with because he doesn't talk his ear off.", + "posterPath": "/l5N985pVvDC41QwEprORSoGz3Q5.jpg", + "backdropPath": "/eEOx2lpnWm4lVF5jfqtKsWlyuJX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2019-02-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 113, + "popularity": 23.2443 + }, + { + "id": 4239, + "title": "Married... with Children", + "originalTitle": "Married... with Children", + "overview": "Al Bundy is an unsuccessful middle aged shoe salesman with a miserable life and an equally dysfunctional family. He hates his job, his wife is lazy, his son is dysfunctional (especially with women), and his daughter is dim-witted and promiscuous.", + "posterPath": "/qxdOgESOkBMmfcWUizL01mbdqzl.jpg", + "backdropPath": "/y6nEgbjMUpYLnVUwZDzX95wH5Vj.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1987-04-05", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.721, + "voteCount": 1124, + "popularity": 23.1289 + }, + { + "id": 3437, + "title": "Hotel", + "originalTitle": "Hotel", + "overview": "Hotel is an American prime time drama series which aired on ABC from September 21, 1983 to May 5, 1988 in the timeslot following Dynasty.\n\nBased on Arthur Hailey's 1965 novel of the same name, the series was produced by Aaron Spelling and set in the elegant and fictitious St. Gregory Hotel in San Francisco. Establishing shots of the hotel were filmed in front of The Fairmont San Francisco atop the Nob Hill neighborhood. Episodes followed the activities of passing guests, as well as the personal and professional lives of the hotel staff.", + "posterPath": "/bYOQJm7O7cEPvkcMp3VI6TSP6Eg.jpg", + "backdropPath": "/h8A6J31szyLPWU2HXS2wZkp8aQa.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1982-08-21", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 24, + "popularity": 23.0999 + }, + { + "id": 4385, + "title": "The Colbert Report", + "originalTitle": "The Colbert Report", + "overview": "The Colbert Report is an American satirical late night television program. It stars political humorist Stephen Colbert, a former correspondent for The Daily Show with Jon Stewart. The Colbert Report is a spin-off from and counterpart to The Daily Show that comments on politics and the media in a similar way. The show focuses on a fictional anchorman character named Stephen Colbert, played by his real-life namesake. The character, described by Colbert as a \"well-intentioned, poorly informed, high-status idiot\", is a caricature of televised political pundits.", + "posterPath": "/pn2CVXjOlR8kY5MgOTJjZ71IM0Q.jpg", + "backdropPath": "/Ajku4m7jbMpCTEPr794Imv19mCA.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 35 + ], + "genres": [ + "News", + "Comedy" + ], + "releaseDate": "2005-10-17", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.92, + "voteCount": 289, + "popularity": 22.9037 + }, + { + "id": 110492, + "title": "Peacemaker", + "originalTitle": "Peacemaker", + "overview": "The continuing story of Peacemaker, a vainglorious superhero/supervillain who believes in peace at any cost — no matter how many people he has to kill. After a miraculous recovery from his duel with Bloodsport, Peacemaker soon discovers that his freedom comes at a price.", + "posterPath": "/eYzbGcYnOUlvj2fa76pTgIXogd7.jpg", + "backdropPath": "/aJcUU3LMlqMKBi8L3eaxGfAbd4G.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2022-01-13", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.215, + "voteCount": 3194, + "popularity": 22.8572 + }, + { + "id": 274556, + "title": "Far Away", + "originalTitle": "Uzak Şehir", + "overview": "Alya Albora arrives in Mardin with her late husband’s funeral and their five-year-old son to fulfill her husband’s last will. However, this arrival marks a point of no return, and there is no way out of Albora. The head of the Albora tribe, Cihan Albora, is not indifferent to Alya’s struggles, but he refuses to let her take her child and leave. Confronting the darkness of the past, hidden secrets, and the harsh realities of the region, Alya Albora finds herself caught in a fierce struggle with her late husband’s family.", + "posterPath": "/vPvxzUFy4CYEAThOQim8wuyCqHt.jpg", + "backdropPath": "/mRk3sdNPx3P2PiLGm1lqLFafQXH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10759 + ], + "genres": [ + "Drama", + "Family", + "Action & Adventure" + ], + "releaseDate": "2024-11-11", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 7.7, + "voteCount": 13, + "popularity": 22.7656 + }, + { + "id": 222766, + "title": "The Day of the Jackal", + "originalTitle": "The Day of the Jackal", + "overview": "An unrivalled and highly elusive lone assassin, the Jackal, makes his living carrying out hits for the highest fee. But following his latest kill, he meets his match in a tenacious British intelligence officer who starts to track down the Jackal in a thrilling cat-and-mouse chase across Europe, leaving destruction in its wake.", + "posterPath": "/tYLecM3WSEjlkKhkGiH5G68Dprm.jpg", + "backdropPath": "/enVrO8TRkdT8dmYXTfI4sEjR5Kp.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 9648 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2024-11-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.168, + "voteCount": 817, + "popularity": 22.6881 + }, + { + "id": 57911, + "title": "Doraemon", + "originalTitle": "ドラえもん", + "overview": "Doraemon is an anime TV series created by Fujiko F. Fujio and based on the manga series of the same name. This anime is the much more successful successor of the 1973 anime.", + "posterPath": "/bHMqPDsW7Lb71CVHXq4PuEvQ4NY.jpg", + "backdropPath": "/6oVBODwFvbDJczBFlf4J930jKZg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "1979-04-02", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 598, + "popularity": 22.6199 + }, + { + "id": 52645, + "title": "Forbidden Fruit", + "originalTitle": "Yasak Elma", + "overview": "Three things in life can not be hidden \"love, smoke and lack of money\". The social society and the events behind the business world are told.", + "posterPath": "/8fnado0qpXLohbeHxaXzL2x7FPc.jpg", + "backdropPath": "/5i6HPy9lzfVnqQYNNz9LyqyaID1.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 35 + ], + "genres": [ + "Family", + "Drama", + "Comedy" + ], + "releaseDate": "2018-03-19", + "releaseYear": "2018", + "originalLanguage": "tr", + "voteAverage": 7.2, + "voteCount": 22, + "popularity": 22.5744 + }, + { + "id": 41727, + "title": "Banshee", + "originalTitle": "Banshee", + "overview": "Banshee is an American drama television series set in a small town in Pennsylvania Amish country and features an enigmatic ex-con posing as a murdered sheriff who imposes his own brand of justice while also cooking up plans that serve his own interests.", + "posterPath": "/5nXFiz8Rn8eezVjSTZBd7HmnF1G.jpg", + "backdropPath": "/cwosIp9M9B6TcLnv0bBg86s0WUx.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2013-01-11", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.976, + "voteCount": 1304, + "popularity": 22.5523 + }, + { + "id": 79593, + "title": "Magnum P.I.", + "originalTitle": "Magnum P.I.", + "overview": "Thomas Magnum, a decorated former Navy SEAL, returns home from Afghanistan and applies his military skills to become a private investigator in Hawaii taking jobs no one else will—with the help of fellow vets T.C. Calvin and Rick Wright, and former MI:6 agent, Juliet Higgins.", + "posterPath": "/hN7DKusbmKPqSZnMG5hemioMAiE.jpg", + "backdropPath": "/x40yXVPV8tPbuWAjSPGAGauDrhj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2018-09-24", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.603, + "voteCount": 317, + "popularity": 22.5176 + }, + { + "id": 37678, + "title": "The Voice", + "originalTitle": "The Voice", + "overview": "The strongest vocalists from across the United states compete in a blockbusters vocal competition, the winner becomes “The Voice.” The show's innovative format features four stages of competition: the blind auditions, the battle rounds, the knockouts and, finally, the live performance shows.", + "posterPath": "/8jgjykcCuQ5rYreyqba4mazNKYd.jpg", + "backdropPath": "/x8pSFa3BXyVpkjHyn7YxmLyhjoh.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2011-04-26", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 217, + "popularity": 22.4427 + }, + { + "id": 1855, + "title": "Star Trek: Voyager", + "originalTitle": "Star Trek: Voyager", + "overview": "Pulled to the far side of the galaxy, where the Federation is 75 years away at maximum warp speed, a Starfleet ship must cooperate with Maquis rebels to find a way home.", + "posterPath": "/gNS5tRSG3UlXodCxznKKOKweqxh.jpg", + "backdropPath": "/7YFranrnnIcCrgsLYQsoq8aE3Ir.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1995-01-16", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.794, + "voteCount": 1029, + "popularity": 22.3374 + }, + { + "id": 2352, + "title": "The Nanny", + "originalTitle": "The Nanny", + "overview": "Fran, fresh out of her job as a bridal consultant in her boyfriend’s shop, first appears on the doorstep of Broadway producer Maxwell Sheffield peddling cosmetics, and quickly stumbled upon the opportunity to become The Nanny for his three children. But soon Fran, with her offbeat nurturing and no-nonsense honesty, touches Maxwell as well as the kids.", + "posterPath": "/4syShXMjaPAP3mG81ekhruv94sd.jpg", + "backdropPath": "/hCUOckGQ4WnYRoCPFSTdxxErnr7.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1993-11-03", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8.073, + "voteCount": 1234, + "popularity": 22.3153 + }, + { + "id": 60585, + "title": "Bosch", + "originalTitle": "Bosch", + "overview": "Harry Bosch, an LAPD homicide detective, stands trial for the fatal shooting of a serial murder suspect. A cold case involving the remains of a missing boy forces Bosch to confront his past. As daring recruit Julia Brasher catches his eye and departmental politics heat up, Bosch will pursue justice at all costs.", + "posterPath": "/lQPwNJ6DRpmRfTrKy8A94c7IvU3.jpg", + "backdropPath": "/23S5oKZjlXehjNLEhMQuxjwbyuA.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "2015-01-14", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.924, + "voteCount": 673, + "popularity": 22.2623 + }, + { + "id": 95, + "title": "Buffy the Vampire Slayer", + "originalTitle": "Buffy the Vampire Slayer", + "overview": "Into every generation a slayer is born: one girl in all the world, a chosen one. She alone will wield the strength and skill to fight the vampires, demons, and the forces of darkness; to stop the spread of their evil and the swell of their number. She is the Slayer.", + "posterPath": "/y7fVZkyheCEQHDUEHwNmYENGfT2.jpg", + "backdropPath": "/q4CbisNArigphVn608Faxijdw8N.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1997-03-10", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8.118, + "voteCount": 1896, + "popularity": 22.2528 + }, + { + "id": 213194, + "title": "Cranberry Sorbet", + "originalTitle": "Kızılcık Şerbeti", + "overview": "It is about the striking events that develop after the marriage of Doğa and Fatih, the children of two families with different cultures, in a lightning marriage.", + "posterPath": "/fXATVTtJDNizWjKpHgJEZegr6R2.jpg", + "backdropPath": "/3paG54nO8n9U8Wmi9NqE5JYOHo7.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2022-10-28", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 6.8, + "voteCount": 18, + "popularity": 22.0993 + }, + { + "id": 211684, + "title": "The Walking Dead: Daryl Dixon", + "originalTitle": "The Walking Dead: Daryl Dixon", + "overview": "Daryl washes ashore in France and struggles to piece together how he got there and why. The series tracks his journey across a broken but resilient France as he hopes to find a way back home. As he makes the journey, though, the connections he forms along the way complicate his ultimate plan.", + "posterPath": "/sP5QdW9FN18XWcA4ROz3MPAQBTx.jpg", + "backdropPath": "/rvy6fX3FVBuAZQZLUU9edw8heQr.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-09-10", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.049, + "voteCount": 789, + "popularity": 22.0664 + }, + { + "id": 131378, + "title": "Adventure Time: Fionna & Cake", + "originalTitle": "Adventure Time: Fionna & Cake", + "overview": "Fionna and Cake – with the help of the former Ice King, Simon Petrikov - embark on a multiverse-hopping adventure and journey of self-discovery. All the while a powerful new antagonist determined to track them down and erase them from existence, lurks in the shadows.", + "posterPath": "/fi1b6U1kp73xheECzqwzMn8u3mX.jpg", + "backdropPath": "/vRAM2el4bAygzUWfwXdt34E71Ee.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2023-08-31", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.669, + "voteCount": 275, + "popularity": 22.0578 + }, + { + "id": 2025, + "title": "Beverly Hills, 90210", + "originalTitle": "Beverly Hills, 90210", + "overview": "Follow the lives of a group of teenagers living in the upscale, star-studded community of Beverly Hills, California and attending the fictitious West Beverly Hills High School and, subsequently, the fictitious California University after graduation.", + "posterPath": "/b7BYfkhu653D894krwGO1ysIKTf.jpg", + "backdropPath": "/iMFsQ7yyToYg7SkS9Ml0by9UJ0X.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1990-10-04", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.33, + "voteCount": 787, + "popularity": 22.0483 + }, + { + "id": 39272, + "title": "Once Upon a Time", + "originalTitle": "Once Upon a Time", + "overview": "There is a town in Maine where every story book character you've ever known is trapped between two worlds, victims of a powerful curse. Only one knows the truth and only one can break the spell.\n\nEmma Swan is a 28-year-old bail bonds collector who has been supporting herself since she was abandoned as a baby. Things change for her when her son Henry, whom she abandoned years ago, finds her and asks for her help explaining that she is from a different world where she is Snow White's missing daughter.", + "posterPath": "/w0DSg9UYPdT9QE2r8AgyXIe28aV.jpg", + "backdropPath": "/AmJ72AKL73mvhXyVgkFb8pUbIa9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-10-23", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.383, + "voteCount": 2402, + "popularity": 22.0077 + }, + { + "id": 100088, + "title": "The Last of Us", + "originalTitle": "The Last of Us", + "overview": "Twenty years after modern civilization has been destroyed, Joel, a hardened survivor, is hired to smuggle Ellie, a 14-year-old girl, out of an oppressive quarantine zone. What starts as a small job soon becomes a brutal, heartbreaking journey, as they both must traverse the United States and depend on each other for survival.", + "posterPath": "/dmo6TYuuJgaYinXBPjrgG9mB5od.jpg", + "backdropPath": "/gKSbTwTvdfJYAJyTNOxlpNoiktH.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-01-15", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.466, + "voteCount": 6610, + "popularity": 21.913 + }, + { + "id": 37606, + "title": "The Amazing World of Gumball", + "originalTitle": "The Amazing World of Gumball", + "overview": "The life of Gumball Watterson, a 12-year old cat who attends middle school in Elmore. Accompanied by his pet, adoptive brother, and best friend Darwin Watterson, he frequently finds himself involved in various shenanigans around the city, during which he interacts with various family members: Anais, Richard, and Nicole Watterson, and other various citizens.", + "posterPath": "/VYnnyA2hyxi3VUPgCA71mMtt69.jpg", + "backdropPath": "/3PCVo8Wikg4wG6dqZHs4Ofp0laA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10765, + 35 + ], + "genres": [ + "Animation", + "Family", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2011-05-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 1658, + "popularity": 21.8384 + }, + { + "id": 45140, + "title": "Teen Titans Go!", + "originalTitle": "Teen Titans Go!", + "overview": "Robin, Starfire, Raven, Beast Boy and Cyborg return in all-new, comedic adventures. They may be super heroes who save the world every day ... but somebody still has to do the laundry!", + "posterPath": "/kPKAigYUlWRpnfo4Ptiwlz4FWXU.jpg", + "backdropPath": "/bIHCUqaapZdRjd2kzSDiwzYyrpC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-04-23", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.484, + "voteCount": 677, + "popularity": 21.789 + }, + { + "id": 1104, + "title": "Mad Men", + "originalTitle": "Mad Men", + "overview": "Set in 1960-1970 New York, this sexy, stylized and provocative drama follows the lives of the ruthlessly competitive men and women of Madison Avenue advertising.", + "posterPath": "/yd4BrXPQZvin4XMDlXUP9JgQDUQ.jpg", + "backdropPath": "/A5lVyejMsP5G7rAJBwU9ug3Wzou.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-07-19", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 1391, + "popularity": 21.7333 + }, + { + "id": 1877, + "title": "Phineas and Ferb", + "originalTitle": "Phineas and Ferb", + "overview": "Each day, two kindhearted suburban stepbrothers on summer vacation embark on some grand new project, which annoys their controlling sister, Candace, who tries to bust them. Meanwhile, their pet platypus plots against evil Dr. Doofenshmirtz.", + "posterPath": "/g6TidT7be954rrzPPBTIXkSmfXj.jpg", + "backdropPath": "/5MWFjQ3NuNtNeOE9FdrVLeNMNPs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-08-17", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.896, + "voteCount": 959, + "popularity": 21.6332 + }, + { + "id": 250307, + "title": "The Pitt", + "originalTitle": "The Pitt", + "overview": "The staff of Pittsburgh's Trauma Medical Center work around the clock to save lives in an overcrowded and underfunded emergency department.", + "posterPath": "/6fMGktEDXMZZPACJ5cWkVQ6TSte.jpg", + "backdropPath": "/z3BkMbCy5ajZPMyKEUwsPHuz2cV.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-01-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.7, + "voteCount": 307, + "popularity": 21.6281 + }, + { + "id": 1395, + "title": "Gossip Girl", + "originalTitle": "Gossip Girl", + "overview": "An exclusive group of privileged teens from a posh prep school on Manhattan's Upper East Side whose lives revolve around the blog of the all-knowing albeit ultra-secretive Gossip Girl.", + "posterPath": "/mRvSUuU1VQQkZZ578jKJpcUCuL8.jpg", + "backdropPath": "/5RWAjCYhu3D8Ai2QBYP7GjaxFb3.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2007-09-19", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 8.176, + "voteCount": 2228, + "popularity": 21.6242 + }, + { + "id": 219290, + "title": "Blood Flowers", + "originalTitle": "Kan Çiçekleri", + "overview": "The narrative of Dilan, whose aspirations and hopes were dashed on the one hand, and Baran, who had to marry to stop the feud and save her brother from this cycle on the other. This marriage, however, is a prison for the two of them, and his uncle, who is jealous of his wealth, wishes to renew the rivalry. This conflicted relationship will cause strong winds to blow between two hearts; will this marriage become a true marriage?", + "posterPath": "/o6tosm7V0SMBlI1KsTUxPM9Papp.jpg", + "backdropPath": "/d3YL9PsQRHyrPXpcqkoDBjXwsfW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-12-05", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 7.6, + "voteCount": 23, + "popularity": 21.5864 + }, + { + "id": 114410, + "title": "Chainsaw Man", + "originalTitle": "チェンソーマン", + "overview": "Denji has a simple dream—to live a happy and peaceful life, spending time with a girl he likes. This is a far cry from reality, however, as Denji is forced by the yakuza into killing devils in order to pay off his crushing debts. Using his pet devil Pochita as a weapon, he is ready to do anything for a bit of cash.", + "posterPath": "/npdB6eFzizki0WaZ1OvKcJrWe97.jpg", + "backdropPath": "/5DUMPBSnHOZsbBv81GFXZXvDpo6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2022-10-12", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1963, + "popularity": 21.5477 + }, + { + "id": 1018, + "title": "Bonanza", + "originalTitle": "Bonanza", + "overview": "The High-Sierra adventures of Ben Cartwright and his sons as they run and defend their ranch while helping the surrounding community.", + "posterPath": "/wQ1iVrG871anxkEUwWTRdPRi0j1.jpg", + "backdropPath": "/61OxoiBHvGFOB4gufYfypHyCbI4.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 10759, + 18, + 10751 + ], + "genres": [ + "Western", + "Action & Adventure", + "Drama", + "Family" + ], + "releaseDate": "1959-09-12", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 458, + "popularity": 21.4906 + }, + { + "id": 1705, + "title": "Fringe", + "originalTitle": "Fringe", + "overview": "FBI Special Agent Olivia Dunham, brilliant but formerly institutionalized scientist Walter Bishop and his scheming, reluctant son Peter uncover a deadly mystery involving a series of unbelievable events and realize they may be a part of a larger, more disturbing pattern that blurs the line between science fiction and technology.", + "posterPath": "/sY9hg5dLJ93RJOyKEiu1nAtBRND.jpg", + "backdropPath": "/eksjqZGaGUtSZJD6nWQPsqzDMn0.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2008-09-09", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.143, + "voteCount": 2655, + "popularity": 21.4518 + }, + { + "id": 106449, + "title": "A Record of a Mortal's Journey to Immortality", + "originalTitle": "凡人修仙传", + "overview": "A poor and ordinary boy from a village joins a minor sect in Jiang Hu and becomes an Unofficial Disciple by chance. How will Han Li, a commoner by birth, establish a foothold for himself in his sect? With his mediocre aptitude, he must successfully traverse the treacherous path of cultivation and avoid the notice of those who may do him harm. This is a story of an ordinary mortal who, against all odds, clashes with devilish demons and ancient celestials in order to find his own path towards immortality.", + "posterPath": "/i6SYuRHPtODpZ8VX9ql21nj0tDq.jpg", + "backdropPath": "/8NIvQY34tNPc4txNeym2zEYk9ek.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-25", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 8.6, + "voteCount": 67, + "popularity": 21.4211 + }, + { + "id": 4546, + "title": "Curb Your Enthusiasm", + "originalTitle": "Curb Your Enthusiasm", + "overview": "The off-kilter, unscripted comic vision of Larry David, who plays himself in a parallel universe in which he can't seem to do anything right, and, by his standards, neither can anyone else.", + "posterPath": "/mZqWmSq1M61Jlre3furVDSXvdrN.jpg", + "backdropPath": "/t97VtC5qvra5GThnNBCXHJFnmXg.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-10-15", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 862, + "popularity": 21.3492 + }, + { + "id": 65494, + "title": "The Crown", + "originalTitle": "The Crown", + "overview": "The gripping, decades-spanning inside story of Her Majesty Queen Elizabeth II and the Prime Ministers who shaped Britain's post-war destiny. \n\nThe Crown tells the inside story of two of the most famous addresses in the world – Buckingham Palace and 10 Downing Street – and the intrigues, love lives and machinations behind the great events that shaped the second half of the 20th century. Two houses, two courts, one Crown.", + "posterPath": "/1DDE0Z2Y805rqfkEjPbZsMLyPwa.jpg", + "backdropPath": "/8VXhcrl5z2I1zEU9X3pkkNrZlD.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-11-04", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.192, + "voteCount": 2263, + "popularity": 21.3401 + }, + { + "id": 21510, + "title": "White Collar", + "originalTitle": "White Collar", + "overview": "In exchange for his freedom, charming con artist Neal Caffrey provides his expertise to help straight-man FBI agent Peter Burke catch elusive white-collar criminals.", + "posterPath": "/417XNiGvdzCsG9kDnnQJYaBsIrx.jpg", + "backdropPath": "/aUyweq31etaay92oF4crwdDcnoT.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2009-10-23", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 1485, + "popularity": 21.3381 + }, + { + "id": 284644, + "title": "My Status as an Assassin Obviously Exceeds the Hero's", + "originalTitle": "暗殺者である俺のステータスが勇者よりも明らかに強いのだが", + "overview": "Akira Oda and his high school classmates are summoned to another world! While the other students are granted cheat abilities through the summoning, Akira merely gains the abilities of a mediocre \"assassin.\" However, his status soon surpasses \"hero,\" the strongest profession. After Akira becomes suspicious of the King behind the summoning, he is falsely framed for a crime and forced to flee.", + "posterPath": "/oQk3aXYEa4TMd9rAYgzDpAYTU8P.jpg", + "backdropPath": "/k0aoy0vcLxpI8d6USLMM2qzhwsb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.154, + "voteCount": 13, + "popularity": 21.3019 + }, + { + "id": 2122, + "title": "King of the Hill", + "originalTitle": "King of the Hill", + "overview": "Set in Texas, this animated series follows the life of propane salesman Hank Hill, who lives with his overly confident substitute Spanish teacher wife Peggy, wannabe comedian son Bobby, and naive niece Luanne. Hank has conservative views about God, family, and country, but his values and ethics are often challenged by the situations he, his family, and his beer-drinking neighbors/buddies find themselves in.", + "posterPath": "/e2xyMapmYgv4AuSoSDv9Y4pQlD6.jpg", + "backdropPath": "/4CSdS9p0AhLhxCo1hGuQINiE2Sa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1997-01-12", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.367, + "voteCount": 633, + "popularity": 21.2818 + }, + { + "id": 19614, + "title": "It", + "originalTitle": "It", + "overview": "In 1960, seven outcast kids known as \"The Losers' Club\" fight an evil demon who poses as a child-killing clown. Thirty years later, they reunite to stop the demon once and for all when it returns to their hometown.", + "posterPath": "/4ybQ6gopB3H3cu0seVZLznDnIKo.jpg", + "backdropPath": "/2lFfjPdVXleGHukp0Phr5pNJ4ab.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "1990-11-18", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 3217, + "popularity": 21.2665 + }, + { + "id": 46923, + "title": "Shetland", + "originalTitle": "Shetland", + "overview": "Created from the novels by award winning crime writer Ann Cleeves, Shetland follows DI Jimmy Perez and his team as they investigate crime within the close knit island community. In this isolated and sometimes inhospitable environment, the team have to rely on a uniquely resourceful style of policing.", + "posterPath": "/rKnxmir8m5I3RdSTdZr3jaQaCZi.jpg", + "backdropPath": "/AdlDrgoNCDu3naYjZMwmiklBHnV.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2013-03-10", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.526, + "voteCount": 190, + "popularity": 21.1443 + }, + { + "id": 105, + "title": "Sex and the City", + "originalTitle": "Sex and the City", + "overview": "Based on the bestselling book by Candace Bushnell, Sex and the City tells the story of four best friends, all single and in their late thirties, as they pursue their careers and talk about their sex lives, all while trying to survive the New York social scene. ", + "posterPath": "/jfLp8gTfdi9d8onEFJ60kp1Bl1e.jpg", + "backdropPath": "/mXtL24G2Awyl3lKFtreMHnH5qFC.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1998-06-06", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.398, + "voteCount": 2097, + "popularity": 21.135 + }, + { + "id": 5687, + "title": "The Smurfs", + "originalTitle": "The Smurfs", + "overview": "Classic Saturday-morning cartoon series featuring magical blue elf-like creatures called Smurfs. The Smurfs, named for their personalities, inhabit a village of mushroom houses in an enchanted forest. These loveable creatures are led by Papa Smurf and live carefree... except for one major threat to their existance: Gargamel, an evil but inept wizard who lives in a stone-built house in the forest; and his feline companion, the equally nasty Azrael. ", + "posterPath": "/cezQyM5cO454vUdLiLOkv78K64D.jpg", + "backdropPath": "/1szJqm8ksrwbPheLfEZn2ohTGbg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10765, + 10762, + 35 + ], + "genres": [ + "Animation", + "Family", + "Sci-Fi & Fantasy", + "Kids", + "Comedy" + ], + "releaseDate": "1981-09-12", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 537, + "popularity": 21.1253 + }, + { + "id": 4601, + "title": "Law & Order: Criminal Intent", + "originalTitle": "Law & Order: Criminal Intent", + "overview": "The third installment of the “Law & Order” franchise takes viewers deep into the minds of its criminals while following the intense psychological approaches the Major Case Squad uses to solve its crimes.", + "posterPath": "/zgBg8gTCELQg73awE7qAuV06c4Z.jpg", + "backdropPath": "/qLYumObEHeRHFMC6N3SfCrnBFjp.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-09-30", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 363, + "popularity": 21.0682 + }, + { + "id": 52, + "title": "That '70s Show", + "originalTitle": "That '70s Show", + "overview": "Crank up the 8-track and flash back to a time when platform shoes and puka shells were all the rage in this hilarious retro-sitcom. For Eric, Kelso, Jackie, Hyde, Donna and Fez, a group of high school teens who spend most of their time hanging out in Eric’s basement, life in the ‘70s isn’t always so groovy. But between trying to figure out the meaning of life, avoiding their parents, and dealing with out-of-control hormones, they’ve learned one thing for sure: they’ll always get by with a little help from their friends.", + "posterPath": "/laEZvTqM80UaplUaDSCCbWhlyEV.jpg", + "backdropPath": "/rf2uHKzPniVL5LvSVxg5ACxv4cS.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "1998-08-23", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.941, + "voteCount": 1518, + "popularity": 21.0319 + }, + { + "id": 112888, + "title": "True Beauty", + "originalTitle": "여신강림", + "overview": "Lim Ju-kyung is a high school student. Since she was little, she has had a complex about her appearance. To hide her bare face, Ju-kyung always wears make-up. Her excellent make-up skills make her pretty and she hides her bare face in front of others. She gets involved with 2 men; Lee Su-ho and Han Seo-jun.", + "posterPath": "/sld43SJArZqlnANJabq8R5wdOZk.jpg", + "backdropPath": "/A9OMk9nybfRQUX7ds8rpd4lmdaE.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-12-09", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.255, + "voteCount": 2510, + "popularity": 21.0295 + }, + { + "id": 62852, + "title": "Billions", + "originalTitle": "Billions", + "overview": "A complex drama about power politics in the world of New York high finance. \n\nShrewd, savvy U.S. Attorney Chuck Rhoades and the brilliant, ambitious hedge fund king Bobby \"Axe\" Axelrod are on an explosive collision course, with each using all of his considerable smarts, power and influence to outmaneuver the other. The stakes are in the billions in this timely, provocative series.", + "posterPath": "/edwYPQdZE998d748AdwWLsfy0rl.jpg", + "backdropPath": "/51Hw58fMwJQKYJ6XYJIRQBP9EPA.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-01-17", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.746, + "voteCount": 983, + "popularity": 20.981 + }, + { + "id": 302723, + "title": "Just Alice", + "originalTitle": "Simplemente Alicia", + "overview": "Torn between two loves, Alicia secretly marries both a famous writer and a former priest. How long can she juggle love, lies and her double life?", + "posterPath": "/xV0dzVfaYgqWBnKVNWWyZk2YdrE.jpg", + "backdropPath": "/xHo8DmcIoYSc27O7CL4Z7Ysp5Tz.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10766 + ], + "genres": [ + "Drama", + "Comedy", + "Soap" + ], + "releaseDate": "2025-11-05", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.4, + "voteCount": 12, + "popularity": 20.9768 + }, + { + "id": 39269, + "title": "Scandal", + "originalTitle": "Scandal", + "overview": "Everyone has secrets and Olivia Pope has dedicated her life to protecting and defending the public images of the elite by keeping those secrets under wraps. Pope and her team are at the top of their game when it comes to getting the job done for their clients, but it becomes apparent that these \"gladiators in suits,\" who specialize in fixing the lives of other people, have trouble fixing those closest at hand -- their own.", + "posterPath": "/4XmF8PMSqtHCGNoL15oHbjr5ZuO.jpg", + "backdropPath": "/hpvw89Vq6rYx1bzrE3zdnWBGLfS.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-04-05", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.17, + "voteCount": 585, + "popularity": 20.96 + }, + { + "id": 90, + "title": "Mayday", + "originalTitle": "Mayday", + "overview": "Major real-life air disasters are depicted in this series. Each episode features a detailed dramatized reconstruction of the incident based on cockpit voice recorders and air traffic control transcripts, as well as eyewitnesses recounts and interviews with aviation experts.", + "posterPath": "/2uuVIAb4MtPmMNTpOyID5V8DzrU.jpg", + "backdropPath": "/zocVz88wzfCd2y3RPKxI8qjhRKc.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 18, + 80 + ], + "genres": [ + "Documentary", + "Drama", + "Crime" + ], + "releaseDate": "2003-09-03", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 271, + "popularity": 20.9478 + }, + { + "id": 12786, + "title": "Murdoch Mysteries", + "originalTitle": "Murdoch Mysteries", + "overview": "A Victorian-era Toronto detective uses then-cutting edge forensic techniques to solve crimes, with the assistance of a female coroner who is also struggling for recognition in the face of tradition, based on the books by Maureen Jennings.", + "posterPath": "/1S8gnT06MDkAmHmzDLSVughE0t0.jpg", + "backdropPath": "/hYmHyUlJMQgeazELoHnORrEQ0vE.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2008-01-24", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.721, + "voteCount": 276, + "popularity": 20.9246 + }, + { + "id": 242551, + "title": "Winds of Love", + "originalTitle": "Rüzgarlı Tepe", + "overview": "Zeynep is the smart, well-behaved, exemplary daughter of the wealthiest family in the town where she lives, while Halil is a young man who lost his mother and father at an early age and lives with his aunt with a grudge to avenge his family. These two young people who live despite their families will find themselves in an unthinkable blind knot.", + "posterPath": "/vGrrdx21rS69tl55mxpl9pn9ebx.jpg", + "backdropPath": "/wqebNDaopLixqxeQRDaqhNfy866.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-01-01", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 7.6, + "voteCount": 21, + "popularity": 20.889 + }, + { + "id": 246386, + "title": "All Her Fault", + "originalTitle": "All Her Fault", + "overview": "In Chicago, Marissa Irvine arrives at 14 Arthur Avenue, expecting to pick up her young son Milo from his first playdate with a boy at his new school. But the woman who answers the door isn't a mother she recognizes. She isn't the nanny. She doesn't have Milo. And so begins every parent's worst nightmare.", + "posterPath": "/o8vZKZlc8H4OcgpbJuqP0iK4B2.jpg", + "backdropPath": "/uv0LVwNM8mZcwhCa5pd6FJxvKDz.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2025-11-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.419, + "voteCount": 43, + "popularity": 20.8867 + }, + { + "id": 1403, + "title": "Marvel's Agents of S.H.I.E.L.D.", + "originalTitle": "Marvel's Agents of S.H.I.E.L.D.", + "overview": "Agent Phil Coulson of S.H.I.E.L.D. (Strategic Homeland Intervention, Enforcement and Logistics Division) puts together a team of agents to investigate the new, the strange and the unknown around the globe, protecting the ordinary from the extraordinary.", + "posterPath": "/gHUCCMy1vvj58tzE3dZqeC9SXus.jpg", + "backdropPath": "/qtr5i6hOm6oVzTYl3jOQAYP3oc7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2013-09-24", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 3677, + "popularity": 20.8793 + }, + { + "id": 94605, + "title": "Arcane", + "originalTitle": "Arcane", + "overview": "Amid the stark discord of twin cities Piltover and Zaun, two sisters fight on rival sides of a war between magic technologies and clashing convictions.", + "posterPath": "/zO5xURaYgMX6WpXolp83zVk03Yh.jpg", + "backdropPath": "/sYXLeu5usz6yEz0k00FYvtEdodD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-11-06", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.751, + "voteCount": 5506, + "popularity": 20.8262 + }, + { + "id": 62710, + "title": "Blindspot", + "originalTitle": "Blindspot", + "overview": "A vast international plot explodes when a beautiful Jane Doe is discovered naked in Times Square, completely covered in mysterious, intricate tattoos with no memory of who she is or how she got there. But there's one tattoo that is impossible to miss: the name of FBI agent Kurt Weller, emblazoned across her back. \"Jane,\" Agent Weller and the rest of the FBI quickly realize that each mark on her body is a crime to solve, leading them closer to the truth about her identity and the mysteries to be revealed.", + "posterPath": "/4AeYzamQmd9Fa6hawDmYKbdvBSe.jpg", + "backdropPath": "/1GWiao0QYuKsoTvUmd7ivnE3qDY.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2015-09-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.377, + "voteCount": 2503, + "popularity": 20.8085 + }, + { + "id": 253, + "title": "Star Trek", + "originalTitle": "Star Trek", + "overview": "Space. The Final Frontier. The U.S.S. Enterprise embarks on a five year mission to explore the galaxy. The Enterprise is under the command of Captain James T. Kirk with First Officer Mr. Spock, from the planet Vulcan. With a determined crew, the Enterprise encounters Klingons, Romulans, time paradoxes, tribbles and genetic supermen led by Khan Noonian Singh. Their mission is to explore strange new worlds, to seek new life and new civilizations, and to boldly go where no man has gone before.", + "posterPath": "/bPsxOpHVpVCX3hFz2fxnF1Vz3Dj.jpg", + "backdropPath": "/ywK4VrR7vL56mDGXDLMtFypwqA8.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1966-09-08", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 8.016, + "voteCount": 1394, + "popularity": 20.7962 + }, + { + "id": 49011, + "title": "Mom", + "originalTitle": "Mom", + "overview": "Aan irreverent and outrageous take on true family love‐and dysfunction. Newly sober single mom Christy struggles to raise two children in a world full of temptations and pitfalls. Testing her sobriety is her formerly estranged mother, now back in Christy's life and eager to share passive-aggressive insights into her daughter's many mistakes.", + "posterPath": "/kIi3T7X0kmiV9vGDme146P2d979.jpg", + "backdropPath": "/evJaCkNlgUt55dcOaAJqxD90FWs.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-09-23", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.299, + "voteCount": 616, + "popularity": 20.7298 + }, + { + "id": 44953, + "title": "El Señor de los Cielos", + "originalTitle": "El señor de los cielos", + "overview": "Set in the 1990s, these are the life and times of Amado Carrillo Fuentes, a man who became the head of the Juárez cartel. Nicknamed “El Señor de los Cielos” (Lord of the Skies) because of the large fleet of airplanes he used to transport drugs, he was also known for washing more than $200 million through Colombia to finance his huge fleet. He is described as the most powerful drug trafficker of his time.", + "posterPath": "/Ag7VUdnrRz5Qpq3Yn3E5OCvFnu0.jpg", + "backdropPath": "/qUP2Zy4whlLSApTELz0LaxZTBQH.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10766 + ], + "genres": [ + "Crime", + "Drama", + "Soap" + ], + "releaseDate": "2013-04-15", + "releaseYear": "2013", + "originalLanguage": "es", + "voteAverage": 7.918, + "voteCount": 3359, + "popularity": 20.7146 + }, + { + "id": 14658, + "title": "Survivor", + "originalTitle": "Survivor", + "overview": "A reality show contest where sixteen or more castaways split between two or more “Tribes” are taken to a remote isolated location and are forced to live off the land with meager supplies for roughly 39 days. Frequent physical challenges are used to pit the tribes against each other for rewards, such as food or luxuries, or for “Immunity”, forcing the other tribe to attend “Tribal Council”, where they must vote off one of their players.", + "posterPath": "/1usR1nanbDvnc0LJlWd5TOylT9M.jpg", + "backdropPath": "/mZo3Q6CNvj14RwbQnoEkX71iazP.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2000-05-31", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.322, + "voteCount": 415, + "popularity": 20.66 + }, + { + "id": 93740, + "title": "Foundation", + "originalTitle": "Foundation", + "overview": "Follow a band of exiles on their monumental journey to save humanity and rebuild civilization amid the fall of the Galactic Empire.", + "posterPath": "/tg9I5pOY4M9CKj8U0cxVBTsm5eh.jpg", + "backdropPath": "/vmNj8bthBAofXgsaY6yP4bCvXko.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2021-09-23", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.735, + "voteCount": 1575, + "popularity": 20.5772 + }, + { + "id": 69050, + "title": "Riverdale", + "originalTitle": "Riverdale", + "overview": "Set in the present, the series offers a bold, subversive take on Archie, Betty, Veronica and their friends, exploring the surreality of small-town life, the darkness and weirdness bubbling beneath Riverdale’s wholesome facade.", + "posterPath": "/d8mmn9thQ5dBk2qbv6BCqGUXWK3.jpg", + "backdropPath": "/mrGd5M3kPkAKynZruOAwsadsr9w.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2017-01-26", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.419, + "voteCount": 13631, + "popularity": 20.5467 + }, + { + "id": 13945, + "title": "Gute Zeiten, schlechte Zeiten", + "originalTitle": "Gute Zeiten, schlechte Zeiten", + "overview": "Gute Zeiten, schlechte Zeiten is a long-running German television soap opera, first broadcast on RTL in 1992. The programme concerns the lives of a fictional neighborhood in Germany's capital city Berlin. Over the years the soap opera tends to have an overhaul of young people in their late teens and early twenties; targeting a young viewership.", + "posterPath": "/qujVFLAlBnPU9mZElV4NZgL8iXT.jpg", + "backdropPath": "/ottT2Yt0OfHiHp3PHJTLNVV8JPE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1992-05-11", + "releaseYear": "1992", + "originalLanguage": "de", + "voteAverage": 5.7, + "voteCount": 42, + "popularity": 20.5098 + }, + { + "id": 119806, + "title": "The Shadow Team", + "originalTitle": "Teşkilat", + "overview": "National Intelligence Organization members are always ready to serve to destroy the enemies of Türkiye.", + "posterPath": "/jJ7kZ2KK8VlXCeFRluqSuFzbL3z.jpg", + "backdropPath": "/AieLCY0071RFhSSYPRjzbkL0Wnn.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18, + 10759 + ], + "genres": [ + "War & Politics", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2021-03-07", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 7.2, + "voteCount": 30, + "popularity": 20.4748 + }, + { + "id": 1966, + "title": "Horizon", + "originalTitle": "Horizon", + "overview": "Horizon tells amazing science stories, unravels mysteries and reveals worlds you've never seen before.", + "posterPath": "/uX8pic7asQBdnwMB9QjPvTsn1Dw.jpg", + "backdropPath": "/3q7cCjq2cEcYjuOIpL46n11l1Gs.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1964-02-04", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 33, + "popularity": 20.3976 + }, + { + "id": 1508, + "title": "Dancing with the Stars", + "originalTitle": "Dancing with the Stars", + "overview": "The competition sees celebrities perform choreographed dance routines which are judged by a panel of renowned ballroom experts and voted on by viewers. Enjoy sizzling salsas, sambas and spray-tans as they vie for the coveted Mirrorball Trophy.", + "posterPath": "/5ropLAggzraCNoT6QPltb9lxeP3.jpg", + "backdropPath": "/zx574JjeDSqd8gpkEi9AeU75adK.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10751 + ], + "genres": [ + "Reality", + "Family" + ], + "releaseDate": "2005-06-01", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.088, + "voteCount": 125, + "popularity": 20.3305 + }, + { + "id": 688, + "title": "The West Wing", + "originalTitle": "The West Wing", + "overview": "The West Wing provides a glimpse into presidential politics in the nation's capital as it tells the stories of the members of a fictional presidential administration. These interesting characters have humor and dedication that touches the heart while the politics that they discuss touch on everyday life.", + "posterPath": "/yqDWr5NAE7m1IWrygYwLyEB6pN0.jpg", + "backdropPath": "/o6ixncGLOtRPz78vEIy9p1cOn9J.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1999-09-22", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.262, + "voteCount": 533, + "popularity": 20.3185 + }, + { + "id": 13859, + "title": "The Rifleman", + "originalTitle": "The Rifleman", + "overview": "The Rifleman is an American Western television program starring Chuck Connors as rancher Lucas McCain and Johnny Crawford as his son, Mark McCain. It was set in the 1880s in the town of North Fork, New Mexico Territory. The show was filmed in black-and-white, half-hour episodes. \"The Rifleman\" aired on ABC from September 30, 1958 to April 8, 1963 as a production of Four Star Television. It was one of the first prime time series to have a widowed parent raise a child.", + "posterPath": "/tYf5Sc83chWG2nBlo5xKdpBBwlI.jpg", + "backdropPath": "/4zZ0VjYxGERjhf5FdTuB0Y215Pi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 37, + 10751 + ], + "genres": [ + "Action & Adventure", + "Western", + "Family" + ], + "releaseDate": "1958-09-30", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 7.082, + "voteCount": 49, + "popularity": 20.3084 + }, + { + "id": 94664, + "title": "Mushoku Tensei: Jobless Reincarnation", + "originalTitle": "無職転生 ~異世界行ったら本気だす~", + "overview": "A 34-year-old hikikomori is kicked out of his home by his family after the death of his parents. After his eviction, he saves a group of teenagers from being killed by a speeding truck, but loses his life in the process. When he comes to, he realizes he has been reborn as Rudeus Greyrat, in a world of swords and sorcery.", + "posterPath": "/gLKOYIMyKlUHW0SVdskhgf9C0yy.jpg", + "backdropPath": "/j9fRIimor0AMFJR9kjZubXcABzZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.54, + "voteCount": 1371, + "popularity": 20.2686 + }, + { + "id": 223911, + "title": "Renegade Immortal", + "originalTitle": "仙逆", + "overview": "It tells the story of Wang Lin, an ordinary young man in the countryside, who is moved by his heart and cultivates against immortality. His pursuit is not only for longevity, but also for getting rid of the ants behind it. He firmly believed in human beings and entered the path of cultivation with mediocre qualifications. After experiencing ups and downs, with his wise mind, he gradually reached the pinnacle and became famous in the cultivation world with his own strength.", + "posterPath": "/6AVM12M6UunFmX0bSmP2o4N5Bnt.jpg", + "backdropPath": "/DVqJaMRRvD73cPouTCvQ19yJ9c.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-09-25", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.5, + "voteCount": 24, + "popularity": 20.264 + }, + { + "id": 82728, + "title": "Bluey", + "originalTitle": "Bluey", + "overview": "Bluey is an inexhaustible six year-old Blue Heeler dog, who loves to play and turns everyday family life into extraordinary adventures, developing her imagination as well as her mental, physical and emotional resilience.", + "posterPath": "/b9mY0X5T20ZM073hoa5n0dgmbfN.jpg", + "backdropPath": "/g88VMPtog8sl8riaIRtz4U80dMK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-01", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 648, + "popularity": 20.2337 + }, + { + "id": 205715, + "title": "Gen V", + "originalTitle": "Gen V", + "overview": "At America's only college for superheroes, gifted students put their moral boundaries to the test, competing for the university's top ranking, and a chance to join The Seven, Vought International's elite superhero team. When the school's dark secrets come to light, they must decide what kind of heroes they want to become.", + "posterPath": "/tEv842Nd5uMSavURG4aQO1pNtst.jpg", + "backdropPath": "/tldMHeR7UnihV5ffrxxM8cDhbtT.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-09-28", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.715, + "voteCount": 1272, + "popularity": 20.2296 + }, + { + "id": 8590, + "title": "Plus belle la vie", + "originalTitle": "Plus belle la vie", + "overview": "The daily lives of the inhabitants of \"le Mistral\", an imaginary neighbourhood in the Mediterranean port city of Marseille, where wealthy families cross paths with the less than rich.", + "posterPath": "/jmU8HlTDn87xmRqXagcL2swDr8I.jpg", + "backdropPath": "/lqDlYLNA0RdMXDiz70lU8Ib1nwW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "2004-08-30", + "releaseYear": "2004", + "originalLanguage": "fr", + "voteAverage": 4.279, + "voteCount": 34, + "popularity": 20.191 + }, + { + "id": 31910, + "title": "Naruto Shippūden", + "originalTitle": "ナルト 疾風伝", + "overview": "After 2 and a half years Naruto finally returns to his village of Konoha, and sets about putting his ambitions to work. It will not be easy though as he has amassed a few more dangerous enemies, in the likes of the shinobi organization; Akatsuki.", + "posterPath": "/71mASgFgSiPl9QUexVH8BubU0lD.jpg", + "backdropPath": "/z0YhJvomqedHF85bplUJEotkN5l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-02-15", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.533, + "voteCount": 8487, + "popularity": 20.155 + }, + { + "id": 126027, + "title": "Ghosts", + "originalTitle": "Ghosts", + "overview": "Samantha and Jay throw caution to the wind when they convert their recently inherited country estate into a bed-and-breakfast. Call it mislaid plans. Not only is the place falling apart, but it’s also inhabited by spirits of previous residents -- whom only Samantha can see and hear.", + "posterPath": "/8yBQYa6AdvMY5H9CiAv0HkvF3UE.jpg", + "backdropPath": "/3MmRal3Uw3O0TVMvhfM63Z3mPz3.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-10-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.909, + "voteCount": 334, + "popularity": 20.1533 + }, + { + "id": 106379, + "title": "Fallout", + "originalTitle": "Fallout", + "overview": "The story of haves and have-nots in a world in which there’s almost nothing left to have. 200 years after the apocalypse, the gentle denizens of luxury fallout shelters are forced to return to the irradiated hellscape their ancestors left behind — and are shocked to discover an incredibly complex, gleefully weird, and highly violent universe waiting for them.", + "posterPath": "/c15BtJxCXMrISLVmysdsnZUPQft.jpg", + "backdropPath": "/coaPCIqQBPUZsOnJcWZxhaORcDT.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2024-04-10", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.208, + "voteCount": 2158, + "popularity": 20.1415 + }, + { + "id": 37971, + "title": "Der Alte", + "originalTitle": "Der Alte", + "overview": "A police department, lead by an older, experienced detective solve crimes together.", + "posterPath": "/cHkQqbrVzcwuvLwStBpERJnxx4g.jpg", + "backdropPath": "/vA8nCfGPQUkBoEpQqKUEX5yo1CT.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1977-04-11", + "releaseYear": "1977", + "originalLanguage": "de", + "voteAverage": 6.083, + "voteCount": 18, + "popularity": 20.1336 + }, + { + "id": 33238, + "title": "Running Man", + "originalTitle": "런닝맨", + "overview": "These days, as variety shows are gradually disappearing, this is one of Korea’s representative variety shows that has been responsible for Sunday evenings for over 10 years. This program features numerous stars and members going around various places, playing games, and completing missions. In particular, among the many fun elements of variety shows, this one focuses solely on laughter.\n\nOpen your eyes! Big fun is coming in!\n\nOpen your mouth! Big laughter is coming in!\n\nOpen your heart! Useful lessons are coming in!", + "posterPath": "/2Wmmu1MkqxJ48J7aySET9EKEjXz.jpg", + "backdropPath": "/wsHj4oHQJoe7DMYaqNFwVoyLiAh.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10764 + ], + "genres": [ + "Comedy", + "Reality" + ], + "releaseDate": "2010-07-11", + "releaseYear": "2010", + "originalLanguage": "ko", + "voteAverage": 8.3, + "voteCount": 199, + "popularity": 20.1272 + }, + { + "id": 136342, + "title": "Disney Twisted-Wonderland: The Animation", + "originalTitle": "ディズニー ツイステッドワンダーランド ザ アニメーション", + "overview": "High school student Yu is suddenly transported to Twisted-Wonderland, a world of magic and wonder. Now, he must face monsters, whimsical magicians-in-training, and mysterious incidents, all without any magic of his own. Will Yu ever find a way back to his own world?", + "posterPath": "/4hT2pA7J7uvdlNZzYIHQzapXCY6.jpg", + "backdropPath": "/27ntwTTA3ygsktcwiJYcximegwb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-29", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 21, + "popularity": 20.1141 + }, + { + "id": 60797, + "title": "Scorpion", + "originalTitle": "Scorpion", + "overview": "Eccentric genius Walter O’Brien and his team of brilliant misfits comprise the last line of defense against complex, high-tech threats of the modern age. As Homeland Security’s new think tank, O’Brien’s “Scorpion” team includes Toby Curtis, an expert behaviorist who can read anyone; Happy Quinn, a mechanical prodigy; and Sylvester Dodd, a statistics guru.", + "posterPath": "/hzeirSF6bRjssDh5JFrm5WRwFLd.jpg", + "backdropPath": "/fThSrHjuS1X82XoH9VrtvgvMIXm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2014-09-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.203, + "voteCount": 4089, + "popularity": 20.1035 + }, + { + "id": 2458, + "title": "CSI: NY", + "originalTitle": "CSI: NY", + "overview": "Follow the investigations of a team of NYPD forensic scientists and police officers identified as \"Crime Scene Investigators\".", + "posterPath": "/4TGV4Bb3OPay4cHkQRlfwghv3vC.jpg", + "backdropPath": "/p4GKINJxZoFbPEvX5NKIb4lzaL.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2004-09-22", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 720, + "popularity": 20.0254 + }, + { + "id": 1516, + "title": "The A-Team", + "originalTitle": "The A-Team", + "overview": "A fictional group of ex-United States Army Special Forces personnel work as soldiers of fortune while on the run from the Army after being branded as war criminals for a \"crime they didn't commit.\"", + "posterPath": "/p2qWJJ7Wyaq2xvgIHuBw4zVNBij.jpg", + "backdropPath": "/z1ubUZdKaXuxgrhcGZZRgZtzWLa.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 80 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Crime" + ], + "releaseDate": "1983-01-23", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1019, + "popularity": 19.9227 + }, + { + "id": 62688, + "title": "Supergirl", + "originalTitle": "Supergirl", + "overview": "Twenty-four-year-old Kara Zor-El, who was taken in by the Danvers family when she was 13 after being sent away from Krypton, must learn to embrace her powers after previously hiding them. The Danvers teach her to be careful with her powers, until she has to reveal them during an unexpected disaster, setting her on her journey of heroism.", + "posterPath": "/cFO65xb0xiXKqk5BmgHawCXB1i0.jpg", + "backdropPath": "/mmprryb2r0X8u9JkZCnaJIzyYX4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2015-10-26", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.291, + "voteCount": 4297, + "popularity": 19.9168 + }, + { + "id": 220542, + "title": "The Apothecary Diaries", + "originalTitle": "薬屋のひとりごと", + "overview": "Maomao lived a peaceful life with her apothecary father. Until one day, she's sold as a lowly servant to the emperor's palace. But she wasn't meant for a compliant life among royalty. So when imperial heirs fall ill, she decides to step in and find a cure! This catches the eye of Jinshi, a handsome palace official who promotes her. Now, she's making a name for herself solving medical mysteries!", + "posterPath": "/e3ojpANrFnmJCyeBNTinYwyBCIN.jpg", + "backdropPath": "/gffVOVZ2Y9cmVIZ26Gt9ByMGCYH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2023-10-22", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 473, + "popularity": 19.8984 + }, + { + "id": 63770, + "title": "The Late Show with Stephen Colbert", + "originalTitle": "The Late Show with Stephen Colbert", + "overview": "Stephen Colbert brings his signature satire and comedy to The Late Show with Stephen Colbert, the #1 show in late night, where he talks with an eclectic mix of guests about what is new and relevant in the worlds of politics, entertainment, business, music, technology, and more. Featuring bandleader Jon Batiste with his band Stay Human, the Emmy Award-nominated show is broadcast from the historic Ed Sullivan Theater.", + "posterPath": "/9jkThAGYj2yp8jsS6Nriy5mzKFT.jpg", + "backdropPath": "/gMMnf8VRg3Z98WaFmOLr9Jk8pIs.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2015-09-08", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 334, + "popularity": 19.8436 + }, + { + "id": 65701, + "title": "Good Mythical Morning", + "originalTitle": "Good Mythical Morning", + "overview": "Two \"Internetainers\" (Rhett & Link) go far out and do the weirdest things, giving you a daily dose of casual comedy every Monday-Friday.", + "posterPath": "/jMpBQr2aNOFAI6wsC47zsOG6qOh.jpg", + "backdropPath": "/hvFCS0dMeC3ffiF4uYTKzUAkvYL.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-01-09", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.907, + "voteCount": 86, + "popularity": 19.7887 + }, + { + "id": 291, + "title": "Coronation Street", + "originalTitle": "Coronation Street", + "overview": "The residents of Coronation Street are ordinary, working-class people, and the show follows them through regular social and family interactions at home, in the workplace, and in their local pub, the Rovers Return Inn. Britain's longest-running soap.", + "posterPath": "/5x1HXqYqPyYw7oc7Isu1lvVmwRP.jpg", + "backdropPath": "/5APjn4LnV5wWk5DXq7ZewT6zzP1.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "1960-12-09", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 115, + "popularity": 19.76 + }, + { + "id": 2710, + "title": "It's Always Sunny in Philadelphia", + "originalTitle": "It's Always Sunny in Philadelphia", + "overview": "Four egocentric friends run a neighborhood Irish pub in Philadelphia and try to find their way through the adult world of work and relationships. Unfortunately, their warped views and precarious judgments often lead them to trouble, creating a myriad of uncomfortable situations that usually only get worse before they get better.", + "posterPath": "/o0tMMK33JqmtpcWw0H41cEr9xQB.jpg", + "backdropPath": "/uqTCaYBoSLT9MAdyQ9tU6QyCZ3A.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-08-04", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.276, + "voteCount": 1242, + "popularity": 19.6686 + }, + { + "id": 113962, + "title": "Lioness", + "originalTitle": "Lioness", + "overview": "Cruz Manuelos, a rough-around-the-edges but passionate young Marine, is recruited to join the CIA's Lioness Engagement Team to help bring down a terrorist organization from within. Joe, the station chief of the Lioness program, is tasked with training, managing and leading her female undercover operatives.", + "posterPath": "/ajaXSmdAlYYhnvx1EIsvpfN949y.jpg", + "backdropPath": "/r0Zg70jpcDAD7IMDhVqajSnG9vb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2023-07-23", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.006, + "voteCount": 1095, + "popularity": 19.6106 + }, + { + "id": 82856, + "title": "The Mandalorian", + "originalTitle": "The Mandalorian", + "overview": "After the fall of the Galactic Empire, lawlessness has spread throughout the galaxy. A lone gunfighter makes his way through the outer reaches, earning his keep as a bounty hunter.", + "posterPath": "/sWgBv7LV2PRoQgkxwlibdGXKz1S.jpg", + "backdropPath": "/9zcbqSxdsRMZWHYtyCd1nXPr2xq.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2019-11-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 10600, + "popularity": 19.5354 + }, + { + "id": 94372, + "title": "FBI: Most Wanted", + "originalTitle": "FBI: Most Wanted", + "overview": "The Fugitive Task Force relentlessly tracks and captures the notorious criminals on the Bureau's Most Wanted list. Seasoned agents oversee the highly skilled team that functions as a mobile undercover unit that is always out in the field, pursuing those who are most desperate to elude justice.", + "posterPath": "/uwTNBqFrEur3EtK8ofWbtGXMQOP.jpg", + "backdropPath": "/4BrWdbv2Cqe0zLqvNzkoednZQAb.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2020-01-07", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.66, + "voteCount": 420, + "popularity": 19.5121 + }, + { + "id": 71446, + "title": "Money Heist", + "originalTitle": "La casa de papel", + "overview": "To carry out the biggest heist in history, a mysterious man called The Professor recruits a band of eight robbers who have a single characteristic: none of them has anything to lose. Five months of seclusion - memorizing every step, every detail, every probability - culminate in eleven days locked up in the National Coinage and Stamp Factory of Spain, surrounded by police forces and with dozens of hostages in their power, to find out whether their suicide wager will lead to everything or nothing.", + "posterPath": "/reEMJA1uzscCbkpeRJeTT2bjqUp.jpg", + "backdropPath": "/gFZriCkpJYsApPZEF3jhxL4yLzG.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-05-02", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 8.2, + "voteCount": 19153, + "popularity": 19.5076 + }, + { + "id": 1606, + "title": "Ghost Whisperer", + "originalTitle": "Ghost Whisperer", + "overview": "Newlywed Melinda Gordon tries to help the dead communicate with loved ones, but sometimes the messages she receives are intense and confusing. Most of Melinda's efforts involve resolving conflicts that are preventing the spirits from passing over.", + "posterPath": "/9ZtGupUFaHhws7mOcwhNTtRpRHC.jpg", + "backdropPath": "/1QDj9jm16h7QAEWfuX5hrKNr4Tn.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2005-09-23", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.079, + "voteCount": 1817, + "popularity": 19.4758 + }, + { + "id": 57706, + "title": "Ranma ½", + "originalTitle": "らんま1/2", + "overview": "Ranma Saotome, a teenage martial artist, and his father Genma travel to the 'cursed training ground' of Jusenkyo in China. There, despite the warnings of the Chinese guard, they fall into the cursed springs. From now on, whenever Ranma is doused in cold water, he turns into a girl and a cute, well-built redhead at that. Hot water changes him back into a man again, but only until the next time. To make matters worse, his father engages him to Akane Tendo, a girl who hates boys.", + "posterPath": "/qb1R5iLZcjIgdDIfXFQXmJadQPI.jpg", + "backdropPath": "/dI2O0d5Dkk8tpuTvCkUKQw3LNMv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1989-04-15", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 8.606, + "voteCount": 1479, + "popularity": 19.4572 + }, + { + "id": 4194, + "title": "Star Wars: The Clone Wars", + "originalTitle": "Star Wars: The Clone Wars", + "overview": "Yoda, Obi-Wan Kenobi, Anakin Skywalker, Mace Windu and other Jedi Knights lead the Grand Army of the Republic against the droid army of the Separatists.", + "posterPath": "/e1nWfnnCVqxS2LeTO3dwGyAsG2V.jpg", + "backdropPath": "/m6eRgkR1KC6Mr6gKx6gKCzSn6vD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2008-10-03", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.462, + "voteCount": 2237, + "popularity": 19.4145 + }, + { + "id": 63247, + "title": "Westworld", + "originalTitle": "Westworld", + "overview": "A dark odyssey about the dawn of artificial consciousness and the evolution of sin. Set at the intersection of the near future and the reimagined past, it explores a world in which every human appetite, no matter how noble or depraved, can be indulged.", + "posterPath": "/8MfgyFHf7XEboZJPZXCIDqqiz6e.jpg", + "backdropPath": "/yGNnjoIGOdQy3douq60tULY8teK.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 37 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Western" + ], + "releaseDate": "2016-10-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.029, + "voteCount": 5917, + "popularity": 19.4118 + }, + { + "id": 36, + "title": "Medium", + "originalTitle": "Medium", + "overview": "Allison Dubois works in the District Attorney’s office using her natural intuition about people and her ability to communicate with the dead to help to solve crimes. Her dreams often give her clues to the whereabouts of missing people.", + "posterPath": "/6tOxspW2MbbAQ0s3jtfs8QATcx.jpg", + "backdropPath": "/dVpAGo3TT2IjDyRuKwhNfe9E1A5.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648, + 10765 + ], + "genres": [ + "Crime", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-01-03", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.462, + "voteCount": 553, + "popularity": 19.3401 + }, + { + "id": 2171, + "title": "Cold Case", + "originalTitle": "Cold Case", + "overview": "The Philadelphia homicide squad's lone female detective finds her calling when she is assigned cases that have never been solved. Detective Lilly Rush combines her natural instincts with the updated technology available today to bring about justice for all the victims she can.", + "posterPath": "/5dmiNE8UdAqIyjjwZZWsjMhhV0b.jpg", + "backdropPath": "/oMeCp8jXpSyI41vHsjMkFfIJReh.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2003-09-28", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.787, + "voteCount": 416, + "popularity": 19.2418 + }, + { + "id": 273247, + "title": "The Lowdown", + "originalTitle": "The Lowdown", + "overview": "Follow the gritty exploits of citizen journalist Lee Raybon, a self-proclaimed Tulsa \"truthstorian\" whose obsession with the truth is always getting him into trouble.", + "posterPath": "/aPd3Zn6c3iAMwhr79TPTtb6ovzF.jpg", + "backdropPath": "/TMfV5xdAEZhzGN9MYXYomuhePz.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 24, + "popularity": 19.2018 + }, + { + "id": 71694, + "title": "Snowfall", + "originalTitle": "Snowfall", + "overview": "Los Angeles. 1983. A storm is coming and its name is crack. Set against the infancy of the crack cocaine epidemic and its ultimate radical impact on the culture as we know it, the story follows numerous characters on a violent collision course.", + "posterPath": "/y7ntzl7msiaS6o7dvDbNG7XFYcR.jpg", + "backdropPath": "/eEXwPg7nIERmRHC1yJoBf3Q5C7k.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2017-07-05", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.33, + "voteCount": 677, + "popularity": 19.1726 + }, + { + "id": 14981, + "title": "The Late Late Show with Craig Ferguson", + "originalTitle": "The Late Late Show with Craig Ferguson", + "overview": "The Late Late Show with Craig Ferguson is an American late-night talk show hosted by Scottish American comedian Craig Ferguson, who is the third regular host of the Late Late Show franchise. It follows Late Show with David Letterman in the CBS late-night lineup, airing weekdays in the US at 12:37 a.m. It is taped in front of a live studio audience from Monday to Friday at CBS Television City in Los Angeles, California, directly above the Bob Barker Studio. It is produced by David Letterman's production company Worldwide Pants Incorporated and CBS Television Studios.\n\nSince becoming host on January 3, 2005, after Craig Kilborn and Tom Snyder, Ferguson has achieved the highest ratings since the show's inception in 1995. While the majority of the episodes focus on comedy, Ferguson has also addressed difficult subject matter, such as the deaths of his parents, and undertaken serious interviews, such as one with Desmond Tutu, which earned the show a 2009 Peabody Award.", + "posterPath": "/gGC7zSDgG0FY0MbM1pjfhTCWQBI.jpg", + "backdropPath": "/m0bV3qBiJBBlpFaaKjwHo13MVjm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2005-01-03", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.712, + "voteCount": 111, + "popularity": 19.1637 + }, + { + "id": 580, + "title": "Star Trek: Deep Space Nine", + "originalTitle": "Star Trek: Deep Space Nine", + "overview": "At Deep Space Nine, a space station located next to a wormhole in the vicinity of the liberated planet of Bajor, Commander Sisko and crew welcome alien visitors, root out evildoers and solve all types of unexpected problems that come their way.", + "posterPath": "/vE6138ykaEXQkCSEHyuBIgfGlUZ.jpg", + "backdropPath": "/cm3srKkyVn8zUK40ox8ZNjRJRdE.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1993-01-03", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.893, + "voteCount": 890, + "popularity": 19.1548 + }, + { + "id": 1636, + "title": "Top of the Pops", + "originalTitle": "Top of the Pops", + "overview": "The biggest stars, the most iconic performances, the most outrageous outfits – it’s Britain’s number one pop show.", + "posterPath": "/jjfTTjVYWyD6rGHVbnC44IrsJ7P.jpg", + "backdropPath": "/q8fmM50In8xGVW0iYoENPa71kAA.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1964-01-01", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 42, + "popularity": 19.1295 + }, + { + "id": 4630, + "title": "The Fairly OddParents", + "originalTitle": "The Fairly OddParents", + "overview": "The zany, fast-paced adventures of a 10-year-old boy and his fairy godparents, who inadvertently create havoc as they grant wishes for their pint-sized charge.", + "posterPath": "/3ryMj7tIvVtiXyI2tLvHYTjOjq4.jpg", + "backdropPath": "/9R7B886A1szDTZlv4TCrCOd1OEz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2001-03-30", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.579, + "voteCount": 1062, + "popularity": 19.1098 + }, + { + "id": 209867, + "title": "Frieren: Beyond Journey's End", + "originalTitle": "葬送のフリーレン", + "overview": "Decades after her party defeated the Demon King, an old friend's funeral launches the elf wizard Frieren on a journey of self-discovery.", + "posterPath": "/dqZENchTd7lp5zht7BdlqM7RBhD.jpg", + "backdropPath": "/emGCHnRPru5LLWcKbSFzUEUisac.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-09-29", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.746, + "voteCount": 575, + "popularity": 19.0678 + }, + { + "id": 39340, + "title": "2 Broke Girls", + "originalTitle": "2 Broke Girls", + "overview": "Comedy about the unlikely friendship that develops between two very different young women who meet waitressing at a diner in trendy Williamsburg, Brooklyn, and form a bond over one day owning their own successful cupcake business. Only one thing stands in their way – they’re broke.", + "posterPath": "/wW1SDEoZ6pDfnSkVQuXwOo8ICep.jpg", + "backdropPath": "/u04AvxFIDgL9JSd9xoVNK3BoBEd.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-09-19", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 1642, + "popularity": 19.039 + }, + { + "id": 38693, + "title": "Ninjago: Masters of Spinjitzu", + "originalTitle": "Ninjago: Masters of Spinjitzu", + "overview": "When the fate of their world, Ninjago, is challenged by great threats, it's up to the ninja: Kai, Jay, Cole, Zane, Lloyd and Nya to save the world.", + "posterPath": "/fqb9X4th2p2voefRLqdv1xoZQmC.jpg", + "backdropPath": "/flychdbFnPuxl4SjMeODR8RmuKr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2012-01-11", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.95, + "voteCount": 754, + "popularity": 18.9564 + }, + { + "id": 95171, + "title": "Prehistoric Planet", + "originalTitle": "Prehistoric Planet", + "overview": "Experience the wonders of our world like never before in this epic series from Jon Favreau and the producers of Planet Earth. Travel back 66 million years to when majestic dinosaurs and extraordinary creatures roamed the lands, seas, and skies.", + "posterPath": "/9yjWMmYWQSDY2eelHECQcwSL816.jpg", + "backdropPath": "/6EmuYBkQnCcf5dB9iuz0SmjEt5s.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2022-05-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.285, + "voteCount": 467, + "popularity": 18.9349 + }, + { + "id": 4419, + "title": "Real Time with Bill Maher", + "originalTitle": "Real Time with Bill Maher", + "overview": "Each week Bill Maher surrounds himself with a panel of guests which include politicians, actors, comedians, musicians and the like to discuss what's going on in the world.", + "posterPath": "/pbpoLLp4kvnYVfnEGiEhagpJuVZ.jpg", + "backdropPath": "/njEGYHyq58q94ZPJlSGs6bGrepv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2003-02-21", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 228, + "popularity": 18.8792 + }, + { + "id": 1420, + "title": "New Girl", + "originalTitle": "New Girl", + "overview": "Jessica Day is an offbeat and adorable girl in her late 20s who, after a bad breakup, moves in with three single guys. Goofy, positive, vulnerable and honest to a fault, Jess has faith in people, even when she shouldn't. Although she's dorky and awkward, she's comfortable in her own skin. More prone to friendships with women, she's not used to hanging with the boys—especially at home.", + "posterPath": "/v5S58vtEV0fM0Chf9Pws9yfXOXT.jpg", + "backdropPath": "/tgErF5GUefVvHE3zVeMAqQVrs79.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-09-20", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 1570, + "popularity": 18.854 + }, + { + "id": 4482, + "title": "Bewitched", + "originalTitle": "Bewitched", + "overview": "Samantha Stephens is a seemingly normal suburban housewife who also happens to be a genuine witch, with all the requisite magical powers. Her husband Darrin insists that Samantha keep her witchcraft under wraps, but situations invariably require her to indulge her powers while keeping her bothersome mother Endora at bay.", + "posterPath": "/7UZVO1SclbgVWM2ELrwWGaS7i94.jpg", + "backdropPath": "/yMYSrL0YI5hgDnBlEBRlKRI1Hsw.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10751, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "1964-09-17", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.864, + "voteCount": 707, + "popularity": 18.7842 + }, + { + "id": 1422, + "title": "The Middle", + "originalTitle": "The Middle", + "overview": "The daily mishaps of a married woman and her semi-dysfunctional family and their attempts to survive life in general in the city of Orson, Indiana.", + "posterPath": "/juK49EV9pFGVITn04A58rrqvLXq.jpg", + "backdropPath": "/qoauOMsZq2GXBxVj05Oga0IYPbX.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-09-30", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.577, + "voteCount": 708, + "popularity": 18.7784 + }, + { + "id": 131041, + "title": "BLUE LOCK", + "originalTitle": "ブルーロック", + "overview": "High school soccer players from across Japan gather for a controversial project designed to create the best — and most egoistic — striker in the world.", + "posterPath": "/sTDTy73OYmKY51EK94Mc6AxogzR.jpg", + "backdropPath": "/seMRyWVwIVBWbC9xaMzDMZJ8fUH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2022-10-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.215, + "voteCount": 535, + "popularity": 18.7589 + }, + { + "id": 19885, + "title": "Sherlock", + "originalTitle": "Sherlock", + "overview": "A modern update finds the famous sleuth and his doctor partner solving crime in 21st century London.", + "posterPath": "/7WTsnHkbA0FaG6R9twfFde0I9hl.jpg", + "backdropPath": "/8rvLEmdI4gLrMO1rLqbNdnNcPFE.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2010-07-25", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.518, + "voteCount": 6042, + "popularity": 18.7566 + }, + { + "id": 23915, + "title": "Markus Lanz", + "originalTitle": "Markus Lanz", + "overview": "TV presenter Markus Lanz invites prominent guests and experts from all areas of public life to his colourful talk show. As a rule, there are four guests, introduced individually to contribute their personal experiences to the topics.", + "posterPath": "/tr4cLn4ecRASV0SPM9FRv0AJOQF.jpg", + "backdropPath": "/qJnjJXBLgG4tummCm792nvNz7u1.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2008-06-03", + "releaseYear": "2008", + "originalLanguage": "de", + "voteAverage": 5.5, + "voteCount": 14, + "popularity": 18.7537 + }, + { + "id": 274979, + "title": "The Crystal Cuckoo", + "originalTitle": "El cuco de cristal", + "overview": "Hoping to learn more about her heart donor, a young doctor arrives in a mountain town where decades of mysterious tragedies plague the small community.", + "posterPath": "/tsY3Kl793m2sXTMkQTajz0EOqCl.jpg", + "backdropPath": "/kuvIwh28N9iGsJak8Q8fx3ABKer.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-11-14", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.514, + "voteCount": 36, + "popularity": 18.7021 + }, + { + "id": 47480, + "title": "The Tom and Jerry Show", + "originalTitle": "The Tom and Jerry Show", + "overview": "The iconic cat and mouse rivals are back in a fresh take on the classic series. Preserving the look, characters and sensibility of the original, this series shines a brightly colored, high-definition lens on the madcap slapstick and never-ending battle that has made Tom and Jerry two of the most beloved characters of all time.", + "posterPath": "/41EWXLXTZO4MLb2BL28mWZuydyq.jpg", + "backdropPath": "/utqCOvMmjjMTlXNZz6PHOzRM5QP.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2014-04-09", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 107, + "popularity": 18.685 + }, + { + "id": 259812, + "title": "Leyla", + "originalTitle": "Leyla: Sombras do Passado", + "overview": "As a child, Leyla suffers a blow from her stepmother and sees her world turned upside down. She loses everything - except the thirst for revenge. In search of justice, Leyla transforms into someone else and returns determined to settle accounts with the woman who destroyed her life and left her in a garbage dump. However, her revenge falters when she discovers the relationship between her ex-stepmother and the man, with whom she shared an innocent and unforgettable love affair", + "posterPath": "/or7YWXNJdmjIisff11ynSzocafz.jpg", + "backdropPath": "/zso596QRpVM6dgqMRhdxrwxcGsE.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-09-11", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 8.2, + "voteCount": 15, + "popularity": 18.671 + }, + { + "id": 2875, + "title": "MacGyver", + "originalTitle": "MacGyver", + "overview": "He's everyone's favorite action hero... but he's a hero with a difference. Angus MacGyver is a secret agent whose wits are his deadliest weapon. Armed with only a knapsack filled with everyday items he picks up along the way, he improvises his way out of every peril the bad guys throw at him.\n\nMaking a bomb out of chewing gum? Fixing a speeding car's breaks... while he's riding in it? Using soda pop to cook up tear gas? That's all in a day's adventures for MacGyver. He's part Boy Scout, part genius. And all hero.", + "posterPath": "/zhgJNHbFxGkqdsKdkZLBrDWagOv.jpg", + "backdropPath": "/etU3Zrl7FA20m4LvmkFvdZOUE8u.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "1985-09-29", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 887, + "popularity": 18.6137 + }, + { + "id": 69478, + "title": "The Handmaid's Tale", + "originalTitle": "The Handmaid's Tale", + "overview": "Set in a dystopian future, a woman is forced to live as a concubine under a fundamentalist theocratic dictatorship.", + "posterPath": "/eGUT7j3n3rn5yGihlCgwUnD70HV.jpg", + "backdropPath": "/atb20IUkdYcZISq3DJ769nc3h1G.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-26", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.157, + "voteCount": 3064, + "popularity": 18.5374 + }, + { + "id": 40075, + "title": "Gravity Falls", + "originalTitle": "Gravity Falls", + "overview": "Twin brother and sister Dipper and Mabel Pines are in for an unexpected adventure when they spend the summer helping their great uncle Stan run a tourist trap in the mysterious town of Gravity Falls, Oregon.", + "posterPath": "/dNxEEK5CdNQbp4YcEtICXelRqvP.jpg", + "backdropPath": "/l0XvAI856XdyDYEfr1njztjH7u0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765, + 10762, + 10759, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy", + "Kids", + "Action & Adventure", + "Family" + ], + "releaseDate": "2012-06-15", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 3292, + "popularity": 18.508 + }, + { + "id": 207468, + "title": "Kaiju No. 8", + "originalTitle": "怪獣8号", + "overview": "In a world plagued by creatures known as Kaiju, Kafka Hibino aspired to enlist in The Defense Force. He makes a promise to enlist with his childhood friend, Mina Ashiro. Soon, life takes them in separate ways. While employed cleaning up after Kaiju battles, Kafka meets Reno Ichikawa. Reno's determination to join The Defense Force reawakens Kafka's promise to join Mina and protect humanity.", + "posterPath": "/bJxGs0w5RAhaX4fIUQu511rvm0S.jpg", + "backdropPath": "/htGeuCcNhlBe8GTx3izKOsd8frw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-13", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 681, + "popularity": 18.4944 + }, + { + "id": 40605, + "title": "Die Harald Schmidt Show", + "originalTitle": "Die Harald Schmidt Show", + "overview": "The Harald Schmidt Show is a German late night talk show hosted on Sky Deutschland by comedian Harald Schmidt. The show first aired from 5 December 1995 to 23 December 2003 on Sat.1. Schmidt then moved his show to Das Erste as Harald Schmidt and Schmidt & Pocher, but he returned to Sat.1 on 13 September 2011. After cancellation on Sat.1, the show continued on Sky Deutschland in September 2012.", + "posterPath": "/lQcE1AzjDP5zJRUW76PMRn7ai9W.jpg", + "backdropPath": "/jR4GKwQADfOQ2twiUtTmWpsUJVi.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1995-12-05", + "releaseYear": "1995", + "originalLanguage": "de", + "voteAverage": 7.088, + "voteCount": 17, + "popularity": 18.4789 + }, + { + "id": 67136, + "title": "This Is Us", + "originalTitle": "This Is Us", + "overview": "Follows the lives and families of three adults living and growing up in the United States of America in present and past times. As their paths cross and their life stories intertwine in curious ways, we find that several of them share the same birthday - and so much more than anyone would expect.", + "posterPath": "/huxmY6Dmzwpv5Q2hnNft0UMK7vf.jpg", + "backdropPath": "/frNEERYvgDAThEcCR5FKzggktsR.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-09-20", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 1562, + "popularity": 18.4636 + }, + { + "id": 2625, + "title": "Diagnosis: Murder", + "originalTitle": "Diagnosis: Murder", + "overview": "Dr. Mark Sloan is a good-natured, offbeat physician who is called upon to solve murders.", + "posterPath": "/5yhozeY2KgYXQQE9kfbiIyypYiI.jpg", + "backdropPath": "/gVAwcl83Ys1dtcFCiLuCLAx6xge.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 9648, + 80 + ], + "genres": [ + "Drama", + "Family", + "Mystery", + "Crime" + ], + "releaseDate": "1993-10-29", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 116, + "popularity": 18.4534 + }, + { + "id": 63351, + "title": "Narcos", + "originalTitle": "Narcos", + "overview": "A gritty chronicle of the war against Colombia's infamously violent and powerful drug cartels.", + "posterPath": "/rTmal9fDbwh5F0waol2hq35U4ah.jpg", + "backdropPath": "/qx8XQund44cecIJiX2Yb4SUeiT.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2015-08-28", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.06, + "voteCount": 3101, + "popularity": 18.4372 + }, + { + "id": 67335, + "title": "Sin senos sí hay paraíso", + "originalTitle": "Sin senos sí hay paraíso", + "overview": "A young woman born in a mafia-controlled town seeks revenge on those who wrongfully harmed and imprisoned her family.", + "posterPath": "/7lBJ6lOS0uQqsH13U9iMTikawQS.jpg", + "backdropPath": "/oAkpvVvoyZWMo9cpNk3aQoVKsjM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2016-07-19", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 7.551, + "voteCount": 2879, + "popularity": 18.3929 + }, + { + "id": 231503, + "title": "Wild Heart", + "originalTitle": "Yabani", + "overview": "It tells the story of a child who was kidnapped from a deep-rooted family and fell into the streets, and his struggle to reinvent himself after years later returning to his home.", + "posterPath": "/lQ5k6i7Bv3ssV4uotxZpTdKCgC9.jpg", + "backdropPath": "/hMrtA3oSntLCTkRd6WzUOTX1W0D.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-09-12", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 8.6, + "voteCount": 30, + "popularity": 18.3753 + }, + { + "id": 4588, + "title": "ER", + "originalTitle": "ER", + "overview": "ER explores the inner workings of an urban teaching hospital and the critical issues faced by the dedicated physicians and staff of its overburdened emergency room.", + "posterPath": "/fuS63AoFTkprf8PFeL1f8z68zJr.jpg", + "backdropPath": "/b1t0mS2MAqnMdh5opqi94rlDEjn.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1994-09-19", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 884, + "popularity": 18.365 + }, + { + "id": 32868, + "title": "Nikita", + "originalTitle": "Nikita", + "overview": "Nikita will stop at nothing to expose and destroy Division, the secret U.S. agency who trained her as a spy and assassin.", + "posterPath": "/762vNuJRCKv4Dw27cSza77YTvJz.jpg", + "backdropPath": "/v26LJqvONINHfmUVuIGZyllbCIO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2010-09-09", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.242, + "voteCount": 502, + "popularity": 18.3629 + }, + { + "id": 1920, + "title": "Twin Peaks", + "originalTitle": "Twin Peaks", + "overview": "The body of Laura Palmer is washed up on a beach near the small Washington state town of Twin Peaks. FBI Special Agent Dale Cooper is called in to investigate her strange demise only to uncover a web of mystery that ultimately leads him deep into the heart of the surrounding woodland and his very own soul.", + "posterPath": "/lA9CNSdo50iQPZ8A2fyVpMvJZAf.jpg", + "backdropPath": "/dZklTql88IDOmkC3JAYQSTgyK6f.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "1990-04-08", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 2387, + "popularity": 18.3092 + }, + { + "id": 280946, + "title": "Typhoon Family", + "originalTitle": "태풍상사", + "overview": "Depicts the struggles of small and medium-sized businesses and their families who face the 1997 IMF crisis head-on.", + "posterPath": "/wPbW5Ll3xNP1PT99Odh6kawkJSM.jpg", + "backdropPath": "/qb9e6TO8UU1DNkiGxHHOiqNA5iF.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-11", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 17, + "popularity": 18.3026 + }, + { + "id": 45016, + "title": "The Bridge", + "originalTitle": "Bron/Broen", + "overview": "When a body is found on the bridge between Denmark and Sweden, right on the border, Danish inspector Martin Rohde and Swedish Saga Norén have to share jurisdiction and work together to find the killer.", + "posterPath": "/v8V9hLWArWhoIdmZ1ujmWrJZL6J.jpg", + "backdropPath": "/7nX2uLLaVnFUR6azLDXQsjQBQvI.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2011-09-21", + "releaseYear": "2011", + "originalLanguage": "sv", + "voteAverage": 8.088, + "voteCount": 658, + "popularity": 18.2606 + }, + { + "id": 14424, + "title": "Young Hearts", + "originalTitle": "Malhação", + "overview": "Malhação is a Brazilian television series for the teenage audience. The soap started in 1995, and was set in a fictional Gym Club called Malhação on Barra da Tijuca, Rio de Janeiro. Through the years the location varied slightly. Although the name of the soap remains the same, it is now set in the Múltipla Escolha High School.", + "posterPath": "/bF24r2FxsjzgkJcrbBU8RC9JVoU.jpg", + "backdropPath": "/arzEXF03COX1Yj39riYGSEfgNtY.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 35, + 18 + ], + "genres": [ + "Soap", + "Comedy", + "Drama" + ], + "releaseDate": "1995-04-24", + "releaseYear": "1995", + "originalLanguage": "pt", + "voteAverage": 6.2, + "voteCount": 34, + "popularity": 18.2385 + }, + { + "id": 98031, + "title": "Keep Running", + "originalTitle": "奔跑吧兄弟", + "overview": "Hurry Up, Brother! is a Chinese variety show based off the original Korean variety show, Running Man. It is created by SBS and co-produced with Zhejiang Television. It first aired on October 10, 2014. This show is classified as a game-variety show, where the MCs and guests complete missions in a landmark to win a race. In 2017, the show officially changed its name to \"Keep Running\".", + "posterPath": "/jOl12DTFiMcp9ga2KaEKwt5H8oo.jpg", + "backdropPath": "/mcfXcRhpmawDb7hFdzrUNCcKc7p.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10764 + ], + "genres": [ + "Comedy", + "Reality" + ], + "releaseDate": "2014-10-10", + "releaseYear": "2014", + "originalLanguage": "zh", + "voteAverage": 5.7, + "voteCount": 11, + "popularity": 18.2161 + }, + { + "id": 61222, + "title": "BoJack Horseman", + "originalTitle": "BoJack Horseman", + "overview": "Meet the most beloved sitcom horse of the '90s , 20 years later. He's a curmudgeon with a heart of...not quite gold...but something like gold. Copper?", + "posterPath": "/6JFWzlChcGgLiIUo2COgNlWGFKy.jpg", + "backdropPath": "/qFYDJUIFh8zgEDy3EvnHwhgOl0S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-08-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.545, + "voteCount": 2694, + "popularity": 18.2009 + }, + { + "id": 2593, + "title": "Without a Trace", + "originalTitle": "Without a Trace", + "overview": "The series follows the ventures of a Missing Persons Unit of the FBI in New York City.", + "posterPath": "/iNhE283iY7xtS8zCjhSxpTfOzn0.jpg", + "backdropPath": "/1KclsHGiGNTkn11puPbMMnnpRRT.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 10759, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2002-09-26", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.236, + "voteCount": 269, + "popularity": 18.1867 + }, + { + "id": 79460, + "title": "Legacies", + "originalTitle": "Legacies", + "overview": "In a place where young witches, vampires, and werewolves are nurtured to be their best selves in spite of their worst impulses, Klaus Mikaelson’s daughter, 17-year-old Hope Mikaelson, Alaric Saltzman’s twins, Lizzie and Josie Saltzman, among others, come of age into heroes and villains at The Salvatore School for the Young and Gifted.", + "posterPath": "/qTZIgXrBKURBK1KrsT7fe3qwtl9.jpg", + "backdropPath": "/fRYwdeNjMqC30EhofPx5PlDpdun.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-10-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.433, + "voteCount": 2980, + "popularity": 18.1492 + }, + { + "id": 272711, + "title": "My Stubborn", + "originalTitle": "ไหนเฮียบอกไม่ชอบเด็ก", + "overview": "Jun loves to annoy Sorn. Sorn can't stand Jun. But fate has plans—and maybe feelings—they didn’t see coming.", + "posterPath": "/mhd7n7Khq8NvclYAgZmJ4uAJifW.jpg", + "backdropPath": "/sZV5OisM3bbFI6nWgzmLvPfUdPz.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-04-20", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 7.7, + "voteCount": 15, + "popularity": 18.1374 + }, + { + "id": 106, + "title": "The Andy Griffith Show", + "originalTitle": "The Andy Griffith Show", + "overview": "The Andy Griffith Show is an American sitcom first televised on CBS between October 3, 1960 and April 1, 1968. Andy Griffith portrays the widowed sheriff of the fictional small community of Mayberry, North Carolina. His life is complicated by an inept, but well-meaning deputy, Barney Fife, a spinster aunt and housekeeper, Aunt Bee, and a precocious young son, Opie. Local ne'er-do-wells, bumbling pals, and temperamental girlfriends further complicate his life. Andy Griffith stated in a Today Show interview, with respect to the time period of the show: \"Well, though we never said it, and though it was shot in the '60s, it had a feeling of the '30s. It was when we were doing it, of a time gone by.\"\n\nThe series never placed lower than seventh in the Nielsen ratings and ended its final season at number one. It has been ranked by TV Guide as the 9th-best show in American television history. Though neither Griffith nor the show won awards during its eight-season run, series co-stars Knotts and Bavier accumulated a combined total of six Emmy Awards. The show, a semi-spin-off from an episode of The Danny Thomas Show titled \"Danny Meets Andy Griffith\", spawned its own spin-off series, Gomer Pyle, U.S.M.C., a sequel series, Mayberry R.F.D., and a reunion telemovie, Return to Mayberry. The show's enduring popularity has generated a good deal of show-related merchandise. Reruns currently air on TV Land, and the complete series is available on DVD. All eight seasons are also now available by streaming video services such as Netflix.", + "posterPath": "/smOam7qXPnqlfDlMx4I0UxK5ULB.jpg", + "backdropPath": "/szx8lk5wIv1jU3NpMBZVjjs96Fi.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1960-10-03", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 7.638, + "voteCount": 156, + "popularity": 18.0804 + }, + { + "id": 46195, + "title": "Monogatari", + "originalTitle": "化物語", + "overview": "Koyomi Araragi, a high school student, finds himself constantly encountering girls afflicted by supernatural \"oddities.\" He dedicates himself to helping them, often with the aid of the eccentric specialist Meme Oshino. Each arc talks about a different girl's unique struggle and the mysterious cause of their affliction. The series explores themes of adolescence, personal growth, and the complexities of human relationships. It's known for its witty dialogue, stylistic animation, and unique narrative structure.", + "posterPath": "/zCEjjb1NH3LLsWeZx47wOeqkezf.jpg", + "backdropPath": "/2WBO3C7CjsOTT5wgi9Inn5iQhVv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "2009-07-03", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 495, + "popularity": 18.0738 + }, + { + "id": 1338, + "title": "Alarm for Cobra 11: The Motorway Police", + "originalTitle": "Alarm für Cobra 11 - Die Autobahnpolizei", + "overview": "A long-running German television series about a two-man team of highway police, originally set in Berlin and later in North Rhine-Westphalia.", + "posterPath": "/mPhVxedeais0wtR38JIcsJdqH5Z.jpg", + "backdropPath": "/qq6UOpN3xTyxjOvVrsa6laJcQX7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10759 + ], + "genres": [ + "Drama", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1996-03-12", + "releaseYear": "1996", + "originalLanguage": "de", + "voteAverage": 6.6, + "voteCount": 121, + "popularity": 18.0484 + }, + { + "id": 5371, + "title": "iCarly", + "originalTitle": "iCarly", + "overview": "Watch Carly, Sam, and Freddie, as they try to balance their everyday 8th grade lives with their newfound fame managing and starring in the most awesome show on the web.", + "posterPath": "/zswxst53aM8g2LysdVbtQNJAiKM.jpg", + "backdropPath": "/stKCslYVfAoWHrIQsye3qm9tBPl.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762 + ], + "genres": [ + "Comedy", + "Kids" + ], + "releaseDate": "2007-09-08", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.977, + "voteCount": 1505, + "popularity": 17.9308 + }, + { + "id": 69740, + "title": "Ozark", + "originalTitle": "Ozark", + "overview": "A financial adviser drags his family from Chicago to the Missouri Ozarks, where he must launder $500 million in five years to appease a drug boss.", + "posterPath": "/m73bD8VjibSKuTWg597GQVyVhSb.jpg", + "backdropPath": "/aatG9iVAUL7U7OyFEmupESpOrD2.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-07-21", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 2584, + "popularity": 17.8903 + }, + { + "id": 67384, + "title": "Goliath", + "originalTitle": "Goliath", + "overview": "Once a powerful lawyer, Billy McBride is now burned out and washed up, spending more time in a bar than a courtroom. When he reluctantly agrees to pursue a wrongful death lawsuit against the biggest client of Cooperman & McBride, the massive law firm he helped create, Billy and his ragtag team uncover a vast and deadly conspiracy, pitting them all in a life or death trial against the ultimate Goliath.", + "posterPath": "/b7ygC3GRaq4xc0nkWdGnydtMfvD.jpg", + "backdropPath": "/rcw9qVY8fmbjyCZv3idjrC1TkvW.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-10-13", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.56, + "voteCount": 447, + "popularity": 17.866 + }, + { + "id": 63639, + "title": "The Expanse", + "originalTitle": "The Expanse", + "overview": "A thriller set two hundred years in the future following the case of a missing young woman who brings a hardened detective and a rogue ship's captain together in a race across the solar system to expose the greatest conspiracy in human history.", + "posterPath": "/8djpxDeWpINnGhjpFXQjnBe6zbx.jpg", + "backdropPath": "/7yKtaRij2giAj0s09F6gmB8XIje.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-12-14", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.066, + "voteCount": 2662, + "popularity": 17.8042 + }, + { + "id": 252000, + "title": "Down Cemetery Road", + "originalTitle": "Down Cemetery Road", + "overview": "When a child goes missing in the aftermath of a house explosion, a concerned neighbor teams up with a private investigator to find them. As secrets unravel and a military conspiracy emerges, all hell is unleashed on South Oxford's sleepy suburbs.", + "posterPath": "/dj3QTYe7OVPjFTpUoEp2GEyLNrR.jpg", + "backdropPath": "/njwcHzqjCnJ04p9apgkQpTXmNxP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-10-29", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 29, + "popularity": 17.7927 + }, + { + "id": 3934, + "title": "Mickey Mouse Clubhouse", + "originalTitle": "Mickey Mouse Clubhouse", + "overview": "Mickey and his friends Minnie, Donald, Pluto, Daisy, Goofy, Pete, Clarabelle and more go on fun and educational adventures.", + "posterPath": "/gHtEhlAZHxMawOiPq7JoKwkmETQ.jpg", + "backdropPath": "/dGvW61JwuqwtShk849PHZflOAX.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Kids", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2006-05-05", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 370, + "popularity": 17.7856 + }, + { + "id": 734, + "title": "Magnum, P.I.", + "originalTitle": "Magnum, P.I.", + "overview": "A private investigator who works when he wants, lives in a beachfront estate in Hawaii, drives a posh Ferrari, runs up an unlimited tab at a swank bar, and charms attractive women in peril - that's the lifestyle of Thomas Magnum, aka Magnum, P.I.", + "posterPath": "/ht0dsKCZxbPawKdTPLeNtnnbxim.jpg", + "backdropPath": "/9YDtTrYUe3zan2GEkFiwtlGLMVS.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1980-12-11", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 7.304, + "voteCount": 418, + "popularity": 17.7631 + }, + { + "id": 4608, + "title": "30 Rock", + "originalTitle": "30 Rock", + "overview": "Liz Lemon, the head writer for a late-night TV variety show in New York, tries to juggle all the egos around her while chasing her own dream.", + "posterPath": "/eYYQWACx7ttUzRwTNYuo6zveqpE.jpg", + "backdropPath": "/cK5AbLFBY2JDoqEdVXk0697e2SV.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-10-11", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.461, + "voteCount": 746, + "popularity": 17.7626 + }, + { + "id": 44264, + "title": "Endeavour", + "originalTitle": "Endeavour", + "overview": "The early days of a young Endeavour Morse, whose experiences as a detective constable with the Oxford City Police will ultimately shape his future.", + "posterPath": "/suX3F5e8XN9emrb52CQSwt2mRwx.jpg", + "backdropPath": "/52UMX6fg1PHgkgZicP8eBktR7Ay.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2013-04-14", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 264, + "popularity": 17.7546 + }, + { + "id": 244463, + "title": "Love Your Enemy", + "originalTitle": "사랑은 외나무다리에서", + "overview": "Born on the same day and with the same name, Seok Ji-won and Yoon Ji-won have been enemies for generations, and reunite after 18 years.", + "posterPath": "/wCy1FYgjAXHHs1H1yKFmFib5XW.jpg", + "backdropPath": "/xMSxt1qUxnWRm5RDfVpxpcWLFhB.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-23", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.524, + "voteCount": 21, + "popularity": 17.7522 + }, + { + "id": 76331, + "title": "Succession", + "originalTitle": "Succession", + "overview": "Follow the lives of the Roy family as they contemplate their future once their aging father begins to step back from the media and entertainment conglomerate they control.", + "posterPath": "/z0XiwdrCQ9yVIr4O0pxzaAYRxdW.jpg", + "backdropPath": "/bcdUYUFk8GdpZJPiSAas9UeocLH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-06-03", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 1457, + "popularity": 17.7214 + }, + { + "id": 1823, + "title": "The Love Boat", + "originalTitle": "The Love Boat", + "overview": "Passengers who search for romantic nights aboard a beautiful ship travelling to tropical or mysterious countries, decide to pass their vacation aboard the \"Love Boat\", where Gopher, Dr. Bricker, Isaac, Julie, and Captain Stubing try their best to please them, and sometimes help them fall in love. Things are not always so easy, but in the end, love wins.", + "posterPath": "/fnsnazlj2bt3Fuj0pJ7wBPmuMLO.jpg", + "backdropPath": "/2XtfGULDOvBiPByLscc9UEqrf0z.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1977-09-24", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 186, + "popularity": 17.6922 + }, + { + "id": 271267, + "title": "The Chair Company", + "originalTitle": "The Chair Company", + "overview": "After an embarrassing incident at work, suburban family man William Ronald Trosper finds himself investigating a far-reaching conspiracy.", + "posterPath": "/xZgftEXZXTM47k2rZlXo8kr8HZF.jpg", + "backdropPath": "/jq9biQdGSL0GIUyDaLLl7x8rgzm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648 + ], + "genres": [ + "Comedy", + "Mystery" + ], + "releaseDate": "2025-10-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.071, + "voteCount": 35, + "popularity": 17.681 + }, + { + "id": 141, + "title": "Cheers", + "originalTitle": "Cheers", + "overview": "The story about a blue-collar Boston bar run by former sports star Sam Malone and the quirky and wonderful people who worked and drank there.", + "posterPath": "/nD1ZQBKbgKSmKcrAkWTofohsScj.jpg", + "backdropPath": "/5U7NIuRK836GutAlo7TLPfmVtGW.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1982-09-30", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.56, + "voteCount": 629, + "popularity": 17.6126 + }, + { + "id": 4598, + "title": "Boston Legal", + "originalTitle": "Boston Legal", + "overview": "Alan Shore and Denny Crane lead a brigade of high-priced civil litigators in an upscale Boston law firm in a series focusing on the professional and personal lives of brilliant but often emotionally challenged attorneys. A spin-off of long-running series The Practice.", + "posterPath": "/eQyJoKFGUTlytx9f2zNjqmMOR82.jpg", + "backdropPath": "/ojEmDThITGk9IsE32uxCWCA0kH5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2004-10-03", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 350, + "popularity": 17.6066 + }, + { + "id": 245312, + "title": "A Man on the Inside", + "originalTitle": "A Man on the Inside", + "overview": "A retired professor with a knack for snooping gets a new lease on life when a private investigator recruits him to go undercover and crack a case.", + "posterPath": "/c09XdTLpLku2tqHt158NZBgC4hi.jpg", + "backdropPath": "/6EObfIe4akZGvCLXwXLJw3kPitQ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2024-11-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 156, + "popularity": 17.6042 + }, + { + "id": 13916, + "title": "Death Note", + "originalTitle": "DEATH NOTE", + "overview": "Light Yagami is an ace student with great prospects—and he’s bored out of his mind. But all that changes when he finds the Death Note, a notebook dropped by a rogue Shinigami death god. Any human whose name is written in the notebook dies, and Light has vowed to use the power of the Death Note to rid the world of evil. But will Light succeed in his noble goal, or will the Death Note turn him into the very thing he fights against?", + "posterPath": "/tCZFfYTIwrR7n94J6G14Y4hAFU6.jpg", + "backdropPath": "/mOlEbXcb6ufRJKogI35KqsSlCfB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-10-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.622, + "voteCount": 4608, + "popularity": 17.5876 + }, + { + "id": 62223, + "title": "The Late Late Show with James Corden", + "originalTitle": "The Late Late Show with James Corden", + "overview": "Once Craig Ferguson retires, James Corden will be taking over The Late Late Show. The show is a late night talk show that interviews celebrities and has its own bits. And of course, it's all hosted by James Corden.", + "posterPath": "/qPmVoG8G9tc1nN8ZwGV2zYcknit.jpg", + "backdropPath": "/amtOltTVcK9vQtL1iQS6p3LBi05.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2015-03-23", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.254, + "voteCount": 142, + "popularity": 17.5664 + }, + { + "id": 262928, + "title": "Love in the Clouds", + "originalTitle": "入青云", + "overview": "At the annual Qingyun Conference in the Hexu Six Realms, Ji Bozai, a warrior from the Jixing Abyss with a past as a convict, defeated Ming Yi, the cold warrior goddess who had reigned supreme for seven consecutive years. Overnight, Ji Bozai became the hottest new star in Jixing Abyss. Meanwhile, Ming Yi, hiding her true identity, disguised herself as a dancer to get close to Ji Bozai. Under their carefully crafted personas, the two engaged in a thrilling dance of deception and attraction, fighting for justice and fairness, and ultimately found a deep and moving love.", + "posterPath": "/jsQYb6yXT6ZnEZ6KMMA1sChxPrb.jpg", + "backdropPath": "/740EohtgbVDXsiaEoDJPc1k0tVX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-08", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8, + "voteCount": 16, + "popularity": 17.5565 + }, + { + "id": 1781, + "title": "Little House on the Prairie", + "originalTitle": "Little House on the Prairie", + "overview": "When the big woods of Wisconsin becomes a difficult spot for hunting, Charles Ingalls reluctantly decides to move his family, pioneering west. Their life on the farm in Walnut Grove, Minnesota, in the 1870s and 1880s is full of adventure, tragedy, and triumph. Based on the books of Laura Ingalls Wilder.", + "posterPath": "/eVpvlqKZfEVsBOttNFTUyfPoA6K.jpg", + "backdropPath": "/iDOTvlYESX1sjHySOEkThskXIxA.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18, + 10751 + ], + "genres": [ + "Western", + "Drama", + "Family" + ], + "releaseDate": "1974-09-11", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 942, + "popularity": 17.5346 + }, + { + "id": 271607, + "title": "The Fragrant Flower Blooms with Dignity", + "originalTitle": "薫る花は凛と咲く", + "overview": "When the intimidating Rintaro meets the open-minded Kaoruko, the unlikely duo grows closer. The issue? Their neighboring high schools hate each other.", + "posterPath": "/g1sYAQt0OeCxzyfagSEqxUlsLnt.jpg", + "backdropPath": "/dl3pdT1NZiqRM4aDBwsD2TtO8x9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.692, + "voteCount": 133, + "popularity": 17.5039 + }, + { + "id": 186, + "title": "Weeds", + "originalTitle": "Weeds", + "overview": "After the unexpected death of her husband, a suburban mom resorts to selling weed to support her family.", + "posterPath": "/gKUsBTa5b0GY7U4iWBseeBalfjO.jpg", + "backdropPath": "/6k6vAUa0Fm73HB0QBOJbFGTgPq5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2005-08-07", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.485, + "voteCount": 936, + "popularity": 17.477 + }, + { + "id": 45950, + "title": "High School D×D", + "originalTitle": "ハイスクールD×D", + "overview": "Issei Hyodo is your average perverted high school student whose one wish in life is to have his own harem, but he's got to be one of the unluckiest guys around. He goes on his first date with a girl only to get brutally attacked and killed when it turns out the girl is really a vicious fallen angel. To top it all off, he's later reincarnated as a devil by his gorgeous senpai who tells him that she is also a devil and now his master! One thing's for sure, his peaceful days are over. In a battle between devils and angels, who will win?", + "posterPath": "/5a9vaaLDAZTYjgfWIw7ZYhL1m1A.jpg", + "backdropPath": "/u8QK47ttafn3iYox9o1dKyEEhcv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-01-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.533, + "voteCount": 1977, + "popularity": 17.4611 + }, + { + "id": 1424, + "title": "Orange Is the New Black", + "originalTitle": "Orange Is the New Black", + "overview": "A crime she committed in her youthful past sends Piper Chapman to a women's prison, where she trades her comfortable New York life for one of unexpected camaraderie and conflict in an eccentric group of fellow inmates.", + "posterPath": "/ekaa7YjGPTkFLcPhwWXTnARuCEU.jpg", + "backdropPath": "/8UO5gA3MGkFRpQLfoB0cuGTkQq1.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-07-11", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.66, + "voteCount": 2699, + "popularity": 17.4444 + }, + { + "id": 220150, + "title": "Pokémon Horizons", + "originalTitle": "ポケットモンスター", + "overview": "Follow Liko and Roy as they unravel the mysteries that surround them and encounter Friede, Captain Pikachu, Amethio, and others during their exciting adventures!", + "posterPath": "/amemXW39lMbNBJFRMJ5W7q9mLP2.jpg", + "backdropPath": "/d0axpGojOqDag5lDa0eNSEtw11l.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 10762, + 35, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids", + "Comedy", + "Animation" + ], + "releaseDate": "2023-04-14", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.787, + "voteCount": 94, + "popularity": 17.4247 + }, + { + "id": 2384, + "title": "Knight Rider", + "originalTitle": "Knight Rider", + "overview": "Michael Long, an undercover police officer, is shot while investigating a case and left for dead by his assailants. He is rescued by Wilton Knight, a wealthy, dying millionaire and inventor who arranges life-saving surgery, including a new face and a new identity--that of Michael Knight. Michael is then given a special computerized and indestructible car called the Knight Industries Two Thousand (nicknamed KITT), and a mission: apprehend criminals who are beyond the reach of the law. The series depicts Michael's exploits as he and KITT battle the forces of evil on behalf of the Foundation for Law and Government.", + "posterPath": "/t57NXzTrwp5rnPXiaX4BThrDxt1.jpg", + "backdropPath": "/fmPo20ZTzxNketxL2jt6ZX6KSPi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "1982-09-26", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1370, + "popularity": 17.4142 + }, + { + "id": 87108, + "title": "Chernobyl", + "originalTitle": "Chernobyl", + "overview": "The true story of one of the worst man-made catastrophes in history: the catastrophic nuclear accident at Chernobyl. A tale of the brave men and women who sacrificed to save Europe from unimaginable disaster.", + "posterPath": "/hlLXt2tOPT6RRnjiUmoxyG1LTFi.jpg", + "backdropPath": "/3URK0z9PzpVNJrGE7XOuyy6KFzk.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-05-06", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.7, + "voteCount": 7299, + "popularity": 17.4 + }, + { + "id": 3163, + "title": "Foyle's War", + "originalTitle": "Foyle's War", + "overview": "As WW2 rages around the world, DCS Foyle fights his own war on the home-front as he investigates crimes on the south coast of England. Foyle's War opens in southern England in the year 1940. Later series sees the retired detective working as an MI5 agent operating in the aftermath of the war.", + "posterPath": "/avPXLCHNUGVtTu52X5VStZRoHDD.jpg", + "backdropPath": "/vP1hpd9TwacAQxSEKf6Wfgucr0z.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 10768, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "War & Politics", + "Crime" + ], + "releaseDate": "2002-10-27", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 101, + "popularity": 17.3614 + }, + { + "id": 3562, + "title": "NOVA", + "originalTitle": "NOVA", + "overview": "PBS' premier science series helps viewers of all ages explore the science behind the headlines. Along the way, NOVA demystifies science and technology, and highlights the people involved in scientific pursuits.", + "posterPath": "/giUBXYnDAaJgNqA6iE3BMVE2EHp.jpg", + "backdropPath": "/euEHCRdfV1ZTDgfhZm1XKHVkZ2K.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1974-03-03", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 133, + "popularity": 17.3497 + }, + { + "id": 62560, + "title": "Mr. Robot", + "originalTitle": "Mr. Robot", + "overview": "A contemporary and culturally resonant drama about a young programmer, Elliot, who suffers from a debilitating anti-social disorder and decides that he can only connect to people by hacking them. He wields his skills as a weapon to protect the people that he cares about. Elliot will find himself in the intersection between a cybersecurity firm he works for and the underworld organizations that are recruiting him to bring down corporate America.", + "posterPath": "/kv1nRqgebSsREnd7vdC2pSGjpLo.jpg", + "backdropPath": "/hZOuVkhAWX9viLJuaIsMh8cM3Jz.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2015-06-24", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 5062, + "popularity": 17.3424 + }, + { + "id": 2140, + "title": "Everybody Loves Raymond", + "originalTitle": "Everybody Loves Raymond", + "overview": "Ray Barone is a successful sportswriter living on Long Island with his wife Debra, daughter Ally, and twin sons, Geoffrey and Michael. That's the good news. The bad news? Ray's meddling parents, Frank and Marie, live directly across the street and embrace the motto \"Su casa es mi casa,\" infiltrating their son's home to an extent unparalleled in television history.", + "posterPath": "/dcCnVVggEBfNpzHrqzDJqhE6tGP.jpg", + "backdropPath": "/zPyVcPi5vFjjHbZsYYbbIG1I0oL.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1996-09-13", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.817, + "voteCount": 616, + "popularity": 17.3273 + }, + { + "id": 42705, + "title": "Fighting Spirit", + "originalTitle": "はじめの一歩", + "overview": "Makunouchi Ippo is an ordinary high school student in Japan. Since he spends most of his time away from school helping his mother run the family business, he doesn't get to enjoy his younger years like most teenagers. Always a target for bullying at school (the family fishing business grants him a distinct odor), Ippo's life is one of hardship. One of these after-school bullying sessions turns Ippo's life around for the better, as he is saved by a boxer named Takamura. He decides to follow in Takamura's footsteps and train to become a boxer, giving his life direction and purpose. Ippo's path to perfecting his pugilistic prowess is just beginning...", + "posterPath": "/1LApB9C9kEkh2ZU2vzAhurNDipl.jpg", + "backdropPath": "/uHMjELRJMsrKbGBlT6ZQgUcOjtX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2000-10-03", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1148, + "popularity": 17.293 + }, + { + "id": 13805, + "title": "A Girl's Guide to 21st Century Sex", + "originalTitle": "A Girl's Guide to 21st Century Sex", + "overview": "A Girl's Guide to 21st Century Sex is a documentary TV series about sex, which ran in eight episodes on Channel 5 and was presented by Dr Catherine Hood. The 45-minute long episodes were broadcast on Monday nights. The series started on 30 October 2006, with the final programme broadcast on 18 December 2006.\n\nEach episode explained a sex position and covered a sexually transmitted disease. Additionally, the following topics were discussed: sex among handicapped and overweight people, penis enlargement devices, penis enlargement surgery, sexual violence against men and penis removal, tantric sex, the g-spot, erectile dysfunction, sex reassignment surgery, cosmetic surgery of the vagina, swinging, lichen sclerosus, the use of recreational drugs during sex, male homosexual sex in public toilets, full body plastic wrap bondage, and sex dolls.", + "posterPath": "/9NSX2YrFGBIih0XqRedsSbDVx4U.jpg", + "backdropPath": "/xLzuiD43K9nywZ0eWRx8TGzICFa.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2006-10-30", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 17, + "popularity": 17.2887 + }, + { + "id": 4384, + "title": "Frontline", + "originalTitle": "Frontline", + "overview": "Since it began in 1983, Frontline has been airing public-affairs documentaries that explore a wide scope of the complex human experience. Frontline's goal is to extend the impact of the documentary beyond its initial broadcast by serving as a catalyst for change.", + "posterPath": "/88Rqa5oOrlEI8z0ALmDgeNWthBm.jpg", + "backdropPath": "/4Nbq8ARdNjZsurfuPjnCBRRXKnA.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10763 + ], + "genres": [ + "Documentary", + "News" + ], + "releaseDate": "1983-01-17", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 48, + "popularity": 17.2631 + }, + { + "id": 80752, + "title": "See", + "originalTitle": "See", + "overview": "A virus has decimated humankind. Those who survived emerged blind. Centuries later when twins are born with the mythic ability to see, their father must protect his tribe against a threatened queen.", + "posterPath": "/lKDIhc9FQibDiBQ57n3ELfZCyZg.jpg", + "backdropPath": "/u5N8tXgGDY6jS7R8Xn42LDeL0Dk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.09, + "voteCount": 2742, + "popularity": 17.2318 + }, + { + "id": 8514, + "title": "RuPaul's Drag Race", + "originalTitle": "RuPaul's Drag Race", + "overview": "Join RuPaul, the world's most famous drag queen, as the host, mentor and judge for the ultimate in drag queen competitions. The top drag queens in the U.S. will vie for drag stardom as RuPaul, in full glamazon drag, will reign supreme in all judging and eliminations while helping guide the contestants as they prepare for each challenge.", + "posterPath": "/lgJvUN66DXJZyZjfYzbkwMAi1iI.jpg", + "backdropPath": "/hEtBwhqAzHKihQ1H9QD2kj8bJ5.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2009-02-02", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 263, + "popularity": 17.1791 + }, + { + "id": 39793, + "title": "Call the Midwife", + "originalTitle": "Call the Midwife", + "overview": "Drama following the lives of a group of midwives working in the poverty-stricken East End of London during the 1950s, based on the best-selling memoirs of Jennifer Worth.", + "posterPath": "/b1p0nL00x563ACkcmGNIRP4ZnkA.jpg", + "backdropPath": "/a600KQ3DdQUQl5LewN5imbL0BaF.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-01-15", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 242, + "popularity": 17.1632 + }, + { + "id": 14210, + "title": "Polizeiruf 110", + "originalTitle": "Polizeiruf 110", + "overview": "Polizeiruf 110 is a long-running German language detective television series. The first episode was broadcast 27 June 1971 in the German Democratic Republic, and after the dissolution of Fernsehen der DDR the series was picked up by ARD. It was originally created as a counterpart to the West German series Tatort, and quickly became a public favorite.", + "posterPath": "/6ZZadTzWhvC6msfEm5G4F4IFgBY.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "1971-06-27", + "releaseYear": "1971", + "originalLanguage": "de", + "voteAverage": 6.2, + "voteCount": 24, + "popularity": 17.1595 + }, + { + "id": 1417, + "title": "Glee", + "originalTitle": "Glee", + "overview": "In this musical comedy, optimistic high school teacher Will Schuester tries to refuel his own passion while reinventing the high school's glee club and challenging a group of outcasts to realize their star potential as they strive to outshine their singing competition while navigating the cruel halls of McKinley High.", + "posterPath": "/62T2vsZYTje3KhdCsiLR1K1RFJW.jpg", + "backdropPath": "/1orqm4lN8VtYGlxZ1g12ip6iwmG.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2009-05-19", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.767, + "voteCount": 903, + "popularity": 17.0039 + }, + { + "id": 2912, + "title": "Jeopardy!", + "originalTitle": "Jeopardy!", + "overview": "America's favorite quiz show where contestants are presented with general knowledge clues in the form of answers, and must phrase their responses in question form.", + "posterPath": "/hfz0IgebqGENG6ZnuqKQKMFk2vy.jpg", + "backdropPath": "/55tcKzl0gZ0lR1q7TrVJm0h9lkT.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10751 + ], + "genres": [ + "Reality", + "Family" + ], + "releaseDate": "1984-09-10", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 150, + "popularity": 16.99 + }, + { + "id": 95396, + "title": "Severance", + "originalTitle": "Severance", + "overview": "Mark leads a team of office workers whose memories have been surgically divided between their work and personal lives. When a mysterious colleague appears outside of work, it begins a journey to discover the truth about their jobs.", + "posterPath": "/pPHpeI2X1qEd1CS1SeyrdhZ4qnT.jpg", + "backdropPath": "/ixgFmf1X59PUZam2qbAfskx2gQr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-02-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.392, + "voteCount": 2302, + "popularity": 16.9743 + }, + { + "id": 5021, + "title": "The Waltons", + "originalTitle": "The Waltons", + "overview": "The Waltons live their life in a rural Virginia community during the Great Depression and World War II.", + "posterPath": "/51HX9eNn5ZPjRIngDvnk4KzFb1a.jpg", + "backdropPath": "/ePMIf2Ba8oeyz9z9GpoyWFfbNaZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1972-09-14", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 100, + "popularity": 16.9271 + }, + { + "id": 4238, + "title": "The King of Queens", + "originalTitle": "The King of Queens", + "overview": "Life’s good for deliveryman Doug Heffernan, until his newly widowed father-in-law, Arthur, moves in with him and his wife Carrie. Doug is no longer the king of his domain, and instead of having a big screen television in his recently renovated basement, he now has a crazy old man.", + "posterPath": "/vXs300Yvjy4Kr0iHgBtajHkYbAt.jpg", + "backdropPath": "/xF4zSVyrOBO60Lwu2wDN0dBjEgk.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1998-09-21", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.118, + "voteCount": 684, + "popularity": 16.9265 + }, + { + "id": 15226, + "title": "CID", + "originalTitle": "CID", + "overview": "The first thrilling investigative series on Indian Television, is today one of the most popular shows on Sony Entertainment Television. Dramatic and absolutely unpredictable, Crime Investigation Department (C.I.D.) has captivated viewers over the last eleven years and continues to keep audiences glued to their television sets with its thrilling plots and excitement. Also interwoven in its fast-paced plots are the personal challenges that the C.I.D. team faces with non-stop adventure, tremendous pressure and risk, all in the name of duty. The series consists of hard-core police procedural stories dealing with investigation, detection and suspense. The protagonists of the serial are an elite group of police officers belonging to the Crime Investigation Department of the police force, led by ACP Pradyuman.", + "posterPath": "/26uEr3docGiJVEDlqepAjf99Vlq.jpg", + "backdropPath": "/1gZrOa2E9DOohEvSLLBJqus2zGu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1998-01-21", + "releaseYear": "1998", + "originalLanguage": "hi", + "voteAverage": 5.8, + "voteCount": 25, + "popularity": 16.9236 + }, + { + "id": 31917, + "title": "Pretty Little Liars", + "originalTitle": "Pretty Little Liars", + "overview": "Based on the Pretty Little Liars series of young adult novels by Sara Shepard, the series follows the lives of four girls — Spencer, Hanna, Aria, and Emily — whose clique falls apart after the disappearance of their queen bee, Alison. One year later, they begin receiving messages from someone using the name \"A\" who threatens to expose their secrets — including long-hidden ones they thought only Alison knew.", + "posterPath": "/aUPbHiLS3hCHKjtLsncFa9g0viV.jpg", + "backdropPath": "/6NuvpA24GbWrnkKsYrNyr2RiRbp.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2010-06-08", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.978, + "voteCount": 2722, + "popularity": 16.9098 + }, + { + "id": 2673, + "title": "The O.C.", + "originalTitle": "The O.C.", + "overview": "Ryan Atwood, a teen from the wrong side of the tracks, moves in with a wealthy family willing to give him a chance. But Ryan's arrival disturbs the status quo of the affluent, privileged community of Newport Beach, California.", + "posterPath": "/xDc6BMGDaeyalpSZ9KKk7RCBCz5.jpg", + "backdropPath": "/5WVAGHTNMWhNwk5l3FoeAScmw7M.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-08-05", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.762, + "voteCount": 889, + "popularity": 16.8908 + }, + { + "id": 1908, + "title": "Miami Vice", + "originalTitle": "Miami Vice", + "overview": "The story of the Miami Police Department's vice squad and its efforts to end drug trafficking and prostitution, centered on the unlikely partnership of Sonny Crockett and Ricardo Tubbs - who first meet when Tubbs is undercover in a drug cartel.", + "posterPath": "/b5kLqC6eDiA17nq3jr1Vi340Kns.jpg", + "backdropPath": "/iK7tPi9j4d34g5p6bNKmGVba95K.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1984-09-16", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 473, + "popularity": 16.8818 + }, + { + "id": 1215, + "title": "Californication", + "originalTitle": "Californication", + "overview": "A self-loathing, alcoholic writer attempts to repair his damaged relationships with his daughter and her mother while combating sex addiction, a budding drug problem, and the seeming inability to avoid making bad decisions.", + "posterPath": "/jPqOY8cq9KXQN4bD7zJGHCNvcb4.jpg", + "backdropPath": "/9o9SS26mUY4cp4iSFk7iwBeAQuP.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2007-08-13", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.644, + "voteCount": 1219, + "popularity": 16.8504 + }, + { + "id": 86831, + "title": "Love, Death & Robots", + "originalTitle": "Love, Death & Robots", + "overview": "Terrifying creatures, wicked surprises and dark comedy converge in this NSFW anthology of animated stories presented by Tim Miller and David Fincher.", + "posterPath": "/asDqvkE66EegtKJJXIRhBJPxscr.jpg", + "backdropPath": "/nBrkOZyI75artyizuBFeya48KbO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-03-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.224, + "voteCount": 3769, + "popularity": 16.841 + }, + { + "id": 65930, + "title": "My Hero Academia", + "originalTitle": "僕のヒーローアカデミア", + "overview": "After he saves a bully from a Villain, a normal student is granted a superpower that allows him to attend a high school training academy for Heroes.", + "posterPath": "/phuYuzqWW9ru8EA3HVjE9W2Rr3M.jpg", + "backdropPath": "/cH39aJg9VlEaYo6yY37Iah8RAaz.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.62, + "voteCount": 5131, + "popularity": 16.8124 + }, + { + "id": 262453, + "title": "The Fated Magical Princess: Who Made Me a Princess", + "originalTitle": "魔法公主的小烦恼", + "overview": "When a woman wakes up as Athanasia, the ill-fated princess from the novel The Lovely Princess, she's gotta rewrite this tragedy or face execution—by her own father! She may be trapped, but she's got her wits and the doomed girl's memories to help her with a plot twist of survival. But when her escape plan fails, she has to charm her way into not being executed again.", + "posterPath": "/wOOkVZQTmTGXBJ0VPeP02YZl84m.jpg", + "backdropPath": "/bo2DaVKFagKsodUk6GWMov9vxV1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-09-28", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.1, + "voteCount": 14, + "popularity": 16.8058 + }, + { + "id": 136315, + "title": "The Bear", + "originalTitle": "The Bear", + "overview": "Carmy, a young fine-dining chef, comes home to Chicago to run his family sandwich shop. As he fights to transform the shop and himself, he works alongside a rough-around-the-edges crew that ultimately reveal themselves as his chosen family.", + "posterPath": "/eKfVzzEazSIjJMrw9ADa2x8ksLz.jpg", + "backdropPath": "/wHNwlE6ftEpgjVbdhLXOtv1hLs0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-06-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.167, + "voteCount": 1540, + "popularity": 16.7186 + }, + { + "id": 45, + "title": "Top Gear", + "originalTitle": "Top Gear", + "overview": "This fast-paced and stunt-filled motor show tests whether cars, both mundane and extraordinary, live up to their manufacturers' claims. The long-running show travels to locations around the world, performing extreme stunts and challenges to see what the featured cars are capable of doing. The current hosts are Paddy Mcguinness, Chris Harris and Andrew \"Freddie\" Flintoff.", + "posterPath": "/aqM6QnuhSXzjHlKbXyKUqxaGiWu.jpg", + "backdropPath": "/rDH6nurRs1XobsOZGQY4bj4Vrvh.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10767 + ], + "genres": [ + "Reality", + "Talk" + ], + "releaseDate": "2002-10-20", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.537, + "voteCount": 826, + "popularity": 16.7063 + }, + { + "id": 212907, + "title": "La promesa", + "originalTitle": "La promesa", + "overview": "In 1913 Spain, a woman gets a job at the palace of La Promesa as a reward for saving the marquesses' son - but nobody knows that she has her own plans, which involve avenging her mother's death and finding her missing brother.", + "posterPath": "/y656ZhHU2Hh3bmC5vBtMa2vKpUM.jpg", + "backdropPath": "/mbSSCIbNpeyNJqKAKkWgdvYsQ8F.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10766 + ], + "genres": [ + "Drama", + "Mystery", + "Soap" + ], + "releaseDate": "2023-01-12", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 7.662, + "voteCount": 68, + "popularity": 16.6973 + }, + { + "id": 1450, + "title": "The Closer", + "originalTitle": "The Closer", + "overview": "Deputy Police Chief Brenda Leigh Johnson transfers from Atlanta to LA to head up a special unit of the LAPD that handles sensitive, high-profile murder cases. Johnson's quirky personality and hard-nosed approach often rubs her colleagues the wrong way, but her reputation as one of the world's best interrogator eventually wins over even her toughest critics.", + "posterPath": "/q6FhABXGf3TaYKoKNwzGAEzW7bt.jpg", + "backdropPath": "/oenEPUQI0ZgeaBWB5dYGrzrA9gN.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2005-06-13", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.871, + "voteCount": 321, + "popularity": 16.6711 + }, + { + "id": 52814, + "title": "Halo", + "originalTitle": "Halo", + "overview": "Depicting an epic 26th-century conflict between humanity and an alien threat known as the Covenant, the series weaves deeply drawn personal stories with action, adventure and a richly imagined vision of the future.", + "posterPath": "/4UmNhZCEu8Vt3byMvNxNEPyf8EY.jpg", + "backdropPath": "/zW0v2YT74C6tRafzqqBkfSqLAN0.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2022-03-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.224, + "voteCount": 3070, + "popularity": 16.6663 + }, + { + "id": 57775, + "title": "Chibi Maruko-chan", + "originalTitle": "ちびまる子ちゃん", + "overview": "Meet Maruko, a sweet schoolgirl with a hefty dose of curiosity (and occasional laziness!). She sails through life in a cozy town alongside her loving parents, grandparents, and sister. Maruko has a band of loyal friends, including her closest pal, Tama-chan, but her playful and doting grandpa is at the heart of it all. Life is never dull in this charming series.", + "posterPath": "/5Ta4wnZPzOf4oCEgpBfmvXWhYwJ.jpg", + "backdropPath": "/cqeeBvjpXu28JerXBItA73z5tqU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1990-01-07", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 21, + "popularity": 16.6568 + }, + { + "id": 107113, + "title": "Only Murders in the Building", + "originalTitle": "Only Murders in the Building", + "overview": "Three strangers share an obsession with true crime and suddenly find themselves wrapped up in one.", + "posterPath": "/1yjFVQZuW8aofZ5Cgol8iImsVFp.jpg", + "backdropPath": "/WCnEPf4ZNPjszndmrFlDxZ5Uvd.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648, + 80 + ], + "genres": [ + "Comedy", + "Mystery", + "Crime" + ], + "releaseDate": "2021-08-31", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.499, + "voteCount": 2060, + "popularity": 16.6505 + }, + { + "id": 8592, + "title": "Parks and Recreation", + "originalTitle": "Parks and Recreation", + "overview": "In an attempt to beautify her town — and advance her career — Leslie Knope, a mid-level bureaucrat in the Parks and Recreation Department of Pawnee, Indiana, takes on bureaucrats, cranky neighbors, and single-issue fanatics whose weapons are lawsuits, the jumble of city codes, and the democratic process she loves so much.", + "posterPath": "/dFs6yHxheEGoZSoA0Fdkgy6Jxh0.jpg", + "backdropPath": "/frwl2zBNAl5ZbFDJGoJv0mYo0rF.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-04-09", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8.035, + "voteCount": 1681, + "popularity": 16.6492 + }, + { + "id": 219760, + "title": "The Terminal List: Dark Wolf", + "originalTitle": "The Terminal List: Dark Wolf", + "overview": "Before The Terminal List, Navy SEAL Ben Edwards finds himself entangled in the black operations side of the CIA. The deeper Ben goes into the 'gray', the harder it will become to not give himself over to his darker impulses. Every man has two wolves inside him – light and dark – fighting for control. Which wolf will Ben Edwards feed?", + "posterPath": "/9mYeRoWguq5etbwJRdF8BXFKiF.jpg", + "backdropPath": "/yQw23xxmVBFVHPCF6V68TAIIfno.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-08-27", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.479, + "voteCount": 163, + "popularity": 16.6411 + }, + { + "id": 98123, + "title": "The Daily Life of the Immortal King", + "originalTitle": "仙王的日常生活", + "overview": "As a cultivation genius who has achieved a new realm every two years since he was a year old, Wang Ling is a near-invincible existence with prowess far beyond his control. But now that he’s sixteen, he faces his greatest battle yet – Senior High School. With one challenge after another popping up, his plans for a low-key high school life seem further and further away…", + "posterPath": "/7By0jV3kf9MVvv3X3K8u4mhRUwp.jpg", + "backdropPath": "/Q7AZOhmO9NGO6WRzu0uKh2dbWO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-18", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 683, + "popularity": 16.6385 + }, + { + "id": 301001, + "title": "Mrs Playmen", + "originalTitle": "Mrs Playmen", + "overview": "Betrayed by her husband, a woman must step up and run an erotic magazine that becomes a symbol of empowerment in '70s Rome. Inspired by true events.", + "posterPath": "/aLwRvsuKhMjrCrAUUuw61cSuiOi.jpg", + "backdropPath": "/rk93UkcE9kw6cHiaYFcWQvNUuuq.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-11-12", + "releaseYear": "2025", + "originalLanguage": "it", + "voteAverage": 8.036, + "voteCount": 15, + "popularity": 16.6341 + }, + { + "id": 133490, + "title": "Family Secrets", + "originalTitle": "Yargı", + "overview": "A lawyer and a prosecutor, whose paths cross with a murder case, will have to work together to find the murderer, and this will create an irreversible breaking point in their lives.", + "posterPath": "/c2WubXZ2npBH14uTqirRREzFY0h.jpg", + "backdropPath": "/fCwZOi3cTEOi2UkhjJNbFQnl4IW.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 80 + ], + "genres": [ + "Family", + "Drama", + "Crime" + ], + "releaseDate": "2021-09-19", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 8.6, + "voteCount": 40, + "popularity": 16.633 + }, + { + "id": 65942, + "title": "Re:ZERO -Starting Life in Another World-", + "originalTitle": "Re:ゼロから始める異世界生活", + "overview": "Natsuki Subaru, an ordinary high school student, is on his way home from the convenience store when he finds himself transported to another world. As he's lost and confused in a new world where he doesn't even know left from right, the only person to reach out to him was a beautiful girl with silver hair. Determined to repay her somehow for saving him from his own despair, Subaru agrees to help the girl find something she's looking for.", + "posterPath": "/aRwmcX36r1ZpR5Xq5mmFcpUDQ8J.jpg", + "backdropPath": "/ai8bVS8Suvu4ErBhmgBvtESirBY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.829, + "voteCount": 556, + "popularity": 16.6301 + }, + { + "id": 65282, + "title": "Home Alone", + "originalTitle": "나 혼자 산다", + "overview": "It can be a badge of honor to be “single.” “I Live Alone” is a documentary-style South Korean reality series that follows the members of a self-formed club called Rainbow, which is comprised of celebrities who are single and live alone.", + "posterPath": "/1hqGagr94soBq70Lq7tPHvNmmxy.jpg", + "backdropPath": "/sztoil0XfQ0cSHy4PXmYW6uAdfQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2013-03-22", + "releaseYear": "2013", + "originalLanguage": "ko", + "voteAverage": 7.353, + "voteCount": 17, + "popularity": 16.5932 + }, + { + "id": 61852, + "title": "Henry Danger", + "originalTitle": "Henry Danger", + "overview": "When 13-year-old Henry Hart lands a job as Danger, the sidekick-in-training to superhero Captain Man, he must learn to navigate a double life balancing the challenges of 8th grade with the crazy adventures of a real-life crime fighter!", + "posterPath": "/f3TEP5SROTpL6e520ohhSNbUv1E.jpg", + "backdropPath": "/1pnaMzcTXU6LmBd9rf4ZvNGBnce.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Kids", + "Drama" + ], + "releaseDate": "2014-07-26", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.278, + "voteCount": 1129, + "popularity": 16.5834 + }, + { + "id": 3022, + "title": "Rugrats", + "originalTitle": "Rugrats", + "overview": "Focuses on a group of toddlers, most prominently Tommy, Chuckie, Phil, Lil, and Angelica, and their day-to-day lives, usually involving common life experiences that become adventures in the babies' imaginations. Adults in the series are almost always unaware of what the children are up to; however, this only provides more room for the babies to explore and discover their surroundings.", + "posterPath": "/wmsINbZuEBLNP2Z26Xffx5NHJpW.jpg", + "backdropPath": "/fKpfCR3l0WukHTkI6Z2ySX1if4P.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10762, + 35 + ], + "genres": [ + "Family", + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "1991-08-11", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.608, + "voteCount": 729, + "popularity": 16.5814 + }, + { + "id": 119495, + "title": "The Eminence in Shadow", + "originalTitle": "陰の実力者になりたくて!", + "overview": "Shadowbrokers are those who go unnoticed, posing as unremarkable people, when in truth, they control everything from behind the scenes. Sid wants to be someone just like that more than anything, and something as insignificant as boring reality isn’t going to get in his way! He trains in secret every single night, preparing for his eventual rise to power—only to be denied his destiny by a run-of-the-mill (yet deadly) traffic accident. But when he wakes up in a another world and suddenly finds himself at the head of an actual secret organization doing battle with evil in the shadows, he’ll finally get a chance to act out all of his delusional fantasies!", + "posterPath": "/7JKYmtLydAwo9ZsEmAknZiO4U8g.jpg", + "backdropPath": "/htD5SJpPOvkmAowU80KrWnN59WO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2022-10-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 223, + "popularity": 16.5696 + }, + { + "id": 4386, + "title": "Baywatch", + "originalTitle": "Baywatch", + "overview": "Join the Baywatch lifeguards on their thrilling adventures filled with beautiful beaches and those iconic red swimsuits.", + "posterPath": "/34t8WxHn1OcIVpcTxmjYmjX9tE4.jpg", + "backdropPath": "/vrH6fiKBR1OvRmu4EcLSNtIEYsU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "1989-04-23", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 5.956, + "voteCount": 517, + "popularity": 16.5522 + }, + { + "id": 6081, + "title": "Wagon Train", + "originalTitle": "Wagon Train", + "overview": "The series initially starred veteran movie supporting actor Ward Bond as the wagon master, later replaced upon his death by John McIntire, and Robert Horton as the scout, subsequently replaced by lookalike Robert Fuller a year after Horton had decided to leave the series.\n\nThe series was inspired by the 1950 film Wagon Master directed by John Ford and starring Ben Johnson, Harry Carey Jr. and Ward Bond, and harkens back to the early widescreen wagon train epic The Big Trail starring John Wayne and featuring Bond in his first major screen appearance playing a supporting role. Horton's buckskin outfit as the scout in the first season of the television series resembles Wayne's, who also played the wagon train's scout in the earlier film.", + "posterPath": "/csC6kMTKWmOcy9nKZEgdwd7Frb9.jpg", + "backdropPath": "/1Rzdd9VjqXOE7rzMlaMdwHOTmkr.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18, + 10751 + ], + "genres": [ + "Western", + "Drama", + "Family" + ], + "releaseDate": "1957-09-18", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 6.586, + "voteCount": 29, + "popularity": 16.5378 + }, + { + "id": 285770, + "title": "Nice to Not Meet You", + "originalTitle": "얄미운 사랑", + "overview": "A hateful romance between a professional detective actor who wants to become a melodrama master and a female reporter who was demoted from a political reporter who won the Reporter of the Year award to the entertainment department.", + "posterPath": "/h14bGZcVxYQzLoxC8KYqUVWvYfU.jpg", + "backdropPath": "/fc4Shbli2S1BwUgoTjvP3BIM9VX.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-11-03", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.2, + "voteCount": 10, + "popularity": 16.5108 + }, + { + "id": 3670, + "title": "Cops", + "originalTitle": "Cops", + "overview": "Follow real-life law enforcement officers from various regions and departments of the United States armed with nothing but with cameras to capture their actions, performing their daily duty to serve and protect the public.", + "posterPath": "/nUsdcwmoYP4DiZtJcAWkpxjRnay.jpg", + "backdropPath": "/7xQR6ixywZofrEHKfI1z6CWKFsC.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1989-03-11", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.644, + "voteCount": 181, + "popularity": 16.4951 + }, + { + "id": 62286, + "title": "Fear the Walking Dead", + "originalTitle": "Fear the Walking Dead", + "overview": "What did the world look like as it was transforming into the horrifying apocalypse depicted in \"The Walking Dead\"? This spin-off set in Los Angeles, following new characters as they face the beginning of the end of the world, will answer that question.", + "posterPath": "/l7N9aS6VyYvjelKoCB2eZge0Qky.jpg", + "backdropPath": "/dvDkq5Mcv27vpHRvF1ywFGroh03.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2015-08-23", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.638, + "voteCount": 5085, + "popularity": 16.4907 + }, + { + "id": 1423, + "title": "Ray Donovan", + "originalTitle": "Ray Donovan", + "overview": "Set in the sprawling mecca of the rich and famous, Ray Donovan does the dirty work for LA's top power players, and makes their problems disappear. His father's unexpected release from prison sets off a chain of events that shakes the Donovan family to its core.", + "posterPath": "/cwJ6nLNvX62By0yoLYWFhRelPkF.jpg", + "backdropPath": "/k1UpU2cfa4PbDUBnJtr43TpdNBg.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-06-30", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.497, + "voteCount": 801, + "popularity": 16.4879 + }, + { + "id": 62643, + "title": "DC's Legends of Tomorrow", + "originalTitle": "DC's Legends of Tomorrow", + "overview": "When heroes alone are not enough ... the world needs legends. Having seen the future, one he will desperately try to prevent from happening, time-traveling rogue Rip Hunter is tasked with assembling a disparate group of both heroes and villains to confront an unstoppable threat — one in which not only is the planet at stake, but all of time itself. Can this ragtag team defeat an immortal threat unlike anything they have ever known?", + "posterPath": "/qNgAcg4gNYbZ9mySLB9ZX4ehZb6.jpg", + "backdropPath": "/be8fOACxsVyaX6lZLlQOWNqF0g2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2016-01-21", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.271, + "voteCount": 2393, + "popularity": 16.4729 + }, + { + "id": 223896, + "title": "Spirit Fingers", + "originalTitle": "스피릿 핑거스", + "overview": "About an ordinary high school sophomore, Song Woo-yeon, who joins a drawing club called Spirit Fingers and paints the story of finding her own color, personality, and dream.", + "posterPath": "/aM28UXrgZoNNk4ZBfSs9lzw6HeI.jpg", + "backdropPath": "/tmfK6EkQ9qW7juCDK4HtTzYdFEG.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-10-29", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.8, + "voteCount": 10, + "popularity": 16.4702 + }, + { + "id": 108255, + "title": "All Creatures Great & Small", + "originalTitle": "All Creatures Great & Small", + "overview": "The heartwarming and humorous adventures of a young country vet in the Yorkshire Dales in the 1930s. A remake of the 1978 series.", + "posterPath": "/hchdfgmviL9qzJ3OVd0LOkh1b5F.jpg", + "backdropPath": "/l61sjSZCsf99abjlnt2ToG442ol.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-09-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 138, + "popularity": 16.4606 + }, + { + "id": 35338, + "title": "La que se avecina", + "originalTitle": "La que se avecina", + "overview": "La que se avecina is a Spanish television comedy created by Alberto Caballero, Laura Caballero and Daniel Deorador. The TV-series focusing around the inhabitants of Mirador de Montepinar, a fictional building located on the outskirts of a big city. Both its storylines and cast are heavily based on Aquí no hay quien viva, which ended when Telecinco bought Miramón Mendi, the series production company.\n\nThe episodes debuted on the Telecinco network, and were later rerun by the same network as well as cable/satellite channels FactoríaDeFicción and Paramount Comedy. The series debuted in 22 April 2007 and became popular thanks to its funny characters, witty script, use of catchphrases and capacity to integrate and poke fun at contemporary issues; the program presents a caustic satire of many of the 'types' found in Spanish society.\n\nThe name of the show involves wordplay, as \"vecina\" is the Spanish word for neighbour.", + "posterPath": "/ceoJyZgsHBaenUxhobHUA6mXXf0.jpg", + "backdropPath": "/cFqNqC40XlssRmReUnaqDey9EgW.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-04-22", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 8.1, + "voteCount": 272, + "popularity": 16.431 + }, + { + "id": 1428, + "title": "MythBusters", + "originalTitle": "MythBusters", + "overview": "MythBusters is a science entertainment television program created and produced by Australia's Beyond Television Productions for the Discovery Channel. The show's hosts, special effects experts Adam Savage and Jamie Hyneman, use elements of the scientific method to test the validity of rumors, myths, movie scenes, adages, Internet videos, and news stories.", + "posterPath": "/lvRnMu00NLGiTPijGZg9CRF3nuY.jpg", + "backdropPath": "/edhROlXRob3TopjWJ5898GSvQpI.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2003-01-23", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.812, + "voteCount": 588, + "popularity": 16.4218 + }, + { + "id": 2327, + "title": "Dawson's Creek", + "originalTitle": "Dawson's Creek", + "overview": "Dawson's Creek is an American teen drama that portrays the fictional lives of a close-knit group of teenagers through high school and college.", + "posterPath": "/arT93dBemanftfWTcf9I0JRIlxU.jpg", + "backdropPath": "/ofiNBOL7gpuzqXEqWBprF90CtY7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1998-01-20", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.333, + "voteCount": 581, + "popularity": 16.3769 + }, + { + "id": 81356, + "title": "Sex Education", + "originalTitle": "Sex Education", + "overview": "Inexperienced Otis channels his sex therapist mom when he teams up with rebellious Maeve to set up an underground sex therapy clinic at school.", + "posterPath": "/bc3bmTdnoKcRuO9xdQKgAbB7Y9Z.jpg", + "backdropPath": "/u23G9KZregWHs1use6ir1fX27gl.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-01-11", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.218, + "voteCount": 7658, + "popularity": 16.3582 + }, + { + "id": 4583, + "title": "Derrick", + "originalTitle": "Derrick", + "overview": "Derrick was a German TV series produced by Telenova Film und Fernsehproduktion in association with ZDF, ORF and SRG between 1974 and 1998 about Detective Chief Inspector Stephan Derrick and his loyal assistant Inspector Harry Klein, who solve murder cases in Munich and surroundings.", + "posterPath": "/5HPuyO4V3rcoMgPZmgcdKJrdXUI.jpg", + "backdropPath": "/j55LbVtDKcnQDOhOymeB1w0B78a.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1974-10-20", + "releaseYear": "1974", + "originalLanguage": "de", + "voteAverage": 6, + "voteCount": 46, + "popularity": 16.3404 + }, + { + "id": 97546, + "title": "Ted Lasso", + "originalTitle": "Ted Lasso", + "overview": "Ted Lasso, an American football coach, moves to England when he's hired to manage a soccer team—despite having no experience. With cynical players and a doubtful town, will he get them to see the Ted Lasso Way?", + "posterPath": "/5fhZdwP1DVJ0FyVH6vrFdHwpXIn.jpg", + "backdropPath": "/wImNeqxKsqmJ5OBw8j3I37GNFN3.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-08-14", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.358, + "voteCount": 2143, + "popularity": 16.2962 + }, + { + "id": 96648, + "title": "Sweet Home", + "originalTitle": "스위트홈", + "overview": "As humans turn into savage monsters and the world plunges into terror, a handful of survivors fight for their lives — and to hold on to their humanity.", + "posterPath": "/ovLdkMclsr9NjkfRPgMaGDTHyGk.jpg", + "backdropPath": "/mceCXNTny6a5F3rQgShLoyARw4l.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2020-12-18", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.3, + "voteCount": 1510, + "popularity": 16.2818 + }, + { + "id": 66840, + "title": "Bull", + "originalTitle": "Bull", + "overview": "Dr. Jason Bull is the brilliant, brash, and charming founder of a hugely successful trial consulting firm.", + "posterPath": "/r6bM2rNjSk5b9gWBOOKCVgKbjc0.jpg", + "backdropPath": "/iDu6LmIVHWiCdcW6CZcOP5Kx7Gr.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2016-09-20", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.057, + "voteCount": 394, + "popularity": 16.2743 + }, + { + "id": 14951, + "title": "Nature", + "originalTitle": "Nature", + "overview": "Consistently stunning documentaries transport viewers to far-flung locations ranging from the torrid African plains to the chilly splendours of icy Antarctica. The show's primary focus is on animals and ecosystems around the world. A comic book based on the show, meant to be used an as educational tool for kids, was briefly distributed to museums and schools at no cost in the mid-2000s.", + "posterPath": "/qRg5boKJdJhJKoGJdchVqPGQTEl.jpg", + "backdropPath": "/j6aCSIjK4N7SpkSPBBNv7vbDvJo.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10751 + ], + "genres": [ + "Documentary", + "Family" + ], + "releaseDate": "1982-10-10", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 40, + "popularity": 16.2691 + }, + { + "id": 104877, + "title": "Love Is in the Air", + "originalTitle": "Sen Çal Kapımı", + "overview": "Eda, who ties all her hopes to her education, confronts Serkan Bolat, who cuts off her international education scholarship and leaves her with high school diploma. Serkan Bolat offers Eda to give her scholarship back if she pretends to be his fiance for two months. Although Eda rejects the offer of this man as she hates him, she has to accept it when the conditions change. While pretending to be engaged, Serkan and Eda begin to experience a passionate, challenging relationship that will make them forget all they know right. Because love is difficult. And that's why it's amazing.", + "posterPath": "/bE71f9A3eztjcd5JT3MmHB8MbzA.jpg", + "backdropPath": "/9qq8LpOoBLYq8MxiMugn0gf9qJd.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-07-08", + "releaseYear": "2020", + "originalLanguage": "tr", + "voteAverage": 8.2, + "voteCount": 3100, + "popularity": 16.2619 + }, + { + "id": 114463, + "title": "Zootopia+", + "originalTitle": "Zootopia+", + "overview": "Head back to the mammal metropolis to dive deeper into the lives of a slew of intriguing residents.", + "posterPath": "/inzPPPr2BsE92m4rHhQn3sf2yPk.jpg", + "backdropPath": "/kq4IbjT5LRWVHEafDzLVZZEAf0O.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10759 + ], + "genres": [ + "Animation", + "Family", + "Action & Adventure" + ], + "releaseDate": "2022-11-09", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.181, + "voteCount": 252, + "popularity": 16.2233 + }, + { + "id": 607, + "title": "The Powerpuff Girls", + "originalTitle": "The Powerpuff Girls", + "overview": "The Powerpuff Girls is a animated television series about Blossom, Bubbles, and Buttercup, three kindergarten-aged girls with superpowers, as well as their \"father\", the brainy scientist Professor Utonium, who all live in the fictional city of Townsville, USA. The girls are frequently called upon by the town's childlike and naive mayor to help fight nearby criminals using their powers.", + "posterPath": "/4CMPCuP6ihU5UvTStv23aGEEMuC.jpg", + "backdropPath": "/7tPJfShsyTda32HLIFKbYvD0N87.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "1998-11-18", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 959, + "popularity": 16.2175 + }, + { + "id": 224, + "title": "Match of the Day", + "originalTitle": "Match of the Day", + "overview": "BBC's football highlights and analysis.\n\n\"The longest-running football television programme in the world\" as recognised by Guinness World Records in 2015.", + "posterPath": "/paRFRd11WlFOxVbGnzjjCBym7FW.jpg", + "backdropPath": "/3EGjqKhVHGsvNHvBIbxmqS17Aal.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 10763 + ], + "genres": [ + "Talk", + "News" + ], + "releaseDate": "1964-08-22", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 47, + "popularity": 16.2073 + }, + { + "id": 219246, + "title": "When Life Gives You Tangerines", + "originalTitle": "폭싹 속았수다", + "overview": "In Jeju, a spirited girl and a steadfast boy's island story blossoms into a lifelong tale of setbacks and triumphs — proving love endures across time.", + "posterPath": "/1VC3sEFxYXYDqQUCAnvWfUsYg1s.jpg", + "backdropPath": "/mwczMJeoQrsPERcyP1e900jo3Jv.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-03-07", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.736, + "voteCount": 426, + "popularity": 16.1988 + }, + { + "id": 46392, + "title": "Duel Masters", + "originalTitle": "デュエル・マスターズ", + "overview": "A mysterious organization is interested in fledging duelist Shobu Kirifuda's ability to bring Duel Master creatures to life. With the support of his friends, Shobu duels with passion, discipline, and heart as he strives to be like his father and become the next Kaijudo master.", + "posterPath": "/t5ijeKzOukACRktUfbjuMIlqwfr.jpg", + "backdropPath": "/1xlpfYGGFXOlYqQSUlFKEv4hqbt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2002-10-21", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 19, + "popularity": 16.198 + }, + { + "id": 1404, + "title": "Chuck", + "originalTitle": "Chuck", + "overview": "When Buy More computer geek Chuck Bartowski unwittingly downloads a database of government information and deadly fighting skills into his head, he becomes the CIA's most vital secret. This sets Chuck on a path to become a full-fledged spy.", + "posterPath": "/vEZvGVVMjk1TRs59nfypTI5lAXj.jpg", + "backdropPath": "/zP5SftyPx2VCdly369kTVVNIcT3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2007-09-24", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.726, + "voteCount": 1133, + "popularity": 16.1947 + }, + { + "id": 79680, + "title": "Snowpiercer", + "originalTitle": "Snowpiercer", + "overview": "More than seven years after the world has become a frozen wasteland, the remnants of humanity inhabit a gigantic, perpetually-moving train that circles the globe as class warfare, social injustice and the politics of survival play out.", + "posterPath": "/exKzfiKzMdQBHrdd7zNmKauJkbg.jpg", + "backdropPath": "/zFJxwXtW3Y7FSDrc2FnVFpQCcY1.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-05-17", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 1350, + "popularity": 16.191 + }, + { + "id": 2290, + "title": "Stargate Atlantis", + "originalTitle": "Stargate Atlantis", + "overview": "With the Ancients' city of Atlantis discovered in the Pegasus Galaxy by Stargate Command, Dr. Elizabeth Weir and Major Sheppard lead a scientific expedition to the ancient abandoned city. Once there, the team not only find themselves unable to contact Earth, but their explorations unexpectedly reawaken the Ancients' deadly enemies, The Wraith, who hunger for this new prey. Now with the help of newfound local allies like Teyla Emmagan, the Atlantis Team sets about to uncover their new home's secrets even as their war of survival against the Wraith begins.", + "posterPath": "/l0JYr2iqwId6VOmCV8dHzlIM6Wd.jpg", + "backdropPath": "/SLAPI1h9SWBMLTCO8ULvTGiP9G.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2004-07-15", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.029, + "voteCount": 1103, + "popularity": 16.1771 + }, + { + "id": 242865, + "title": "¿A qué estás esperando?", + "originalTitle": "¿A qué estás esperando?", + "overview": "", + "posterPath": "/mj1oN9iRqqsX5PpVVCWsMPA2YP.jpg", + "backdropPath": "/kyaGLfYtzt8FdiDo0k3ostfkH8S.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-10-20", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 8.3, + "voteCount": 64, + "popularity": 16.08 + }, + { + "id": 7225, + "title": "Merlin", + "originalTitle": "Merlin", + "overview": "The unlikely friendship between Merlin, a young man gifted with extraordinary magical powers, and Prince Arthur, heir to the crown of Camelot.", + "posterPath": "/8eR5Jg7CxsuCOEBU5wW0opObxpi.jpg", + "backdropPath": "/2JcrP4gNhU3KMbdajoEi1OvDl1Y.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-09-20", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.832, + "voteCount": 1069, + "popularity": 16.0679 + }, + { + "id": 918, + "title": "M*A*S*H", + "originalTitle": "M*A*S*H", + "overview": "The 4077th Mobile Army Surgical Hospital is stuck in the middle of the Korean war. With little help from the circumstances they find themselves in, they are forced to make their own fun. Fond of practical jokes and revenge, the doctors, nurses, administrators, and soldiers often find ways of making wartime life bearable.", + "posterPath": "/6rhuM3oMoEWKxAdrm7IyM8oq8cC.jpg", + "backdropPath": "/8nkOWsMtWZvp7IGuYdVbJeoWzQx.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18, + 35 + ], + "genres": [ + "War & Politics", + "Drama", + "Comedy" + ], + "releaseDate": "1972-09-17", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 7.916, + "voteCount": 704, + "popularity": 16.0528 + }, + { + "id": 18347, + "title": "Community", + "originalTitle": "Community", + "overview": "Follow the lives of a group of students at what is possibly the world’s worst community college in the fictional locale of Greendale, Colorado.", + "posterPath": "/3KUjDt8XY7w2Ku70UE0SECmv1zP.jpg", + "backdropPath": "/OylSdzVezjwGLYM0w73mUPNHM4.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-09-17", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8.002, + "voteCount": 1938, + "popularity": 16.0514 + }, + { + "id": 93352, + "title": "The Family Man", + "originalTitle": "द फ़ैमिली मैन", + "overview": "The story of a middle-class man who works for a special cell of the National Investigation Agency. While he tries to protect the nation from terrorists, he also has to protect his family from the impact of his secretive, high-pressure, and low paying job.", + "posterPath": "/tE1NUJqw9gV6AVjQ1GTK78LbWJ9.jpg", + "backdropPath": "/eEzKigDI64OomZV6VTJvoPGmVu1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2019-09-20", + "releaseYear": "2019", + "originalLanguage": "hi", + "voteAverage": 7.7, + "voteCount": 162, + "popularity": 16.0459 + }, + { + "id": 34634, + "title": "Gold Rush", + "originalTitle": "Gold Rush", + "overview": "Follow the lives of ambitious miners as they head north in pursuit of gold. With new miners, new claims, new machines and new ways to pull gold out of the ground, the stakes are higher than ever. But will big risks lead to an even bigger pay out?", + "posterPath": "/zRlu3idMmqfrtnw7h2qHaAGzxnw.jpg", + "backdropPath": "/ReSSC77upQRIZgvaJaPQPCbWaK.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2010-12-03", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.012, + "voteCount": 173, + "popularity": 16.0437 + }, + { + "id": 10545, + "title": "True Blood", + "originalTitle": "True Blood", + "overview": "Thanks to a Japanese scientist's invention of synthetic blood, vampires have progressed overnight from legendary monsters to fellow citizens. And while humans have been safely removed from the menu, many remain apprehensive about these creatures \"coming out of the coffin.\" Religious leaders, government officials, and vampire fundamentalists around the world have chosen their sides. But in the small Louisiana town of Bon Temps, the jury is still out.", + "posterPath": "/ktEp6fzL4xzCWsSVtrcH8JaQNQy.jpg", + "backdropPath": "/nGhC6P0lgcrY57NRB9nweu4nWaK.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2008-09-07", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.617, + "voteCount": 1980, + "popularity": 16.0186 + }, + { + "id": 6809, + "title": "El hormiguero", + "originalTitle": "El hormiguero", + "overview": "El Hormiguero is a Spanish television program with a live audience focusing on comedy, science, and politics running since September 2006. It is hosted and produced by screenwriter Pablo Motos. The show aired on Spain's Cuatro channel from launch until June 2011 and is now broadcast on Antena 3. Recurring guests on the show include Luis Piedrahita, Raquel Martos, Marron & \"The Man in Black\", and puppet ants Trancas and Barrancas. It has proved a ratings success, and has expanded from a weekly 120-minute show to a daily 40-minute show in its third season, which began on September 17, 2007. The show won the Entertainment prize at the 2009 Rose d'Or ceremony.", + "posterPath": "/tT4hXTYXtZVadi6AZ0rhdVgNo2T.jpg", + "backdropPath": "/3hOxwqn1P2AY0d20VVtxN2f3Lfh.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2006-09-24", + "releaseYear": "2006", + "originalLanguage": "es", + "voteAverage": 4.808, + "voteCount": 39, + "popularity": 16.0042 + }, + { + "id": 133908, + "title": "SkyMed", + "originalTitle": "SkyMed", + "overview": "Life, death and drama at 20,000 feet. The series weaves together intense character journeys and high-stakes medical rescues, as we follow the triumphs, heartbreaks and tribulations of budding nurses and pilots flying air ambulances in remote Northern Canada. They’re all in over their heads, and on their own, with no one to rely on but each other.", + "posterPath": "/tOKUKERvfaOf7Dy2IAKT5HYYXJJ.jpg", + "backdropPath": "/oZ2ST23FHaAWgN2A04oTBQU9lqE.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-07-10", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 81, + "popularity": 15.9803 + }, + { + "id": 204746, + "title": "The Jennifer Hudson Show", + "originalTitle": "The Jennifer Hudson Show", + "overview": "Talented entertainer and newly-minted EGOT Jennifer Hudson takes on the daytime talk show landscape.", + "posterPath": "/itMjVGw4abhhCDZFppmb7yGLrRa.jpg", + "backdropPath": "/wjAgAkcojc7uaQ1gdQTgATDr4cv.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2022-09-12", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.603, + "voteCount": 29, + "popularity": 15.9743 + }, + { + "id": 2098, + "title": "Batman: The Animated Series", + "originalTitle": "Batman: The Animated Series", + "overview": "Vowing to avenge the murder of his parents, Bruce Wayne devotes his life to wiping out crime in Gotham City as the masked vigilante \"Batman\".", + "posterPath": "/lBomQFW1vlm1yUYMNSbFZ45R4Ox.jpg", + "backdropPath": "/jszr5nLTaK946h85MBl1K2dkvKN.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "1992-09-05", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 1731, + "popularity": 15.9725 + }, + { + "id": 1940, + "title": "Entourage", + "originalTitle": "Entourage", + "overview": "Film star Vince Chase navigates the vapid terrain of Los Angeles with a close circle of friends and his trusty agent.", + "posterPath": "/kLKP8zrArBtBboGz3qJOuMGC7rL.jpg", + "backdropPath": "/22uQSlECwD3tcdqiFwo3K3qlCtY.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2004-07-18", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.366, + "voteCount": 601, + "popularity": 15.9419 + }, + { + "id": 4496, + "title": "Meet the Press", + "originalTitle": "Meet the Press", + "overview": "Meet the Press is a weekly American television news/interview program airing on NBC. It is the longest-running television series in American broadcasting history, despite bearing little resemblance to the original format of the program seen in its television debut on November 6, 1947. Meet the Press is the highest-rated of the American television Sunday morning talk shows.\n\nIt has been hosted by 11 moderators, beginning with Martha Rountree. Meet the Press and similar shows specialize in interviewing national leaders on issues of politics, economics, foreign policy and other public affairs.", + "posterPath": "/aCLynKB2KB2Raqv7UufWwuQghtp.jpg", + "backdropPath": "/4OdYxWWnL9jeIZ6l6c1hez81wih.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 10767 + ], + "genres": [ + "News", + "Talk" + ], + "releaseDate": "1947-11-06", + "releaseYear": "1947", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 19, + "popularity": 15.9408 + }, + { + "id": 2777, + "title": "Oggy and the Cockroaches", + "originalTitle": "Oggy et les Cafards", + "overview": "Oggy, an anthropomorphic cat, would prefer to spend his days watching television and eating, but is continuously pestered by three roaches: Joey, Marky and Dee Dee. The cockroaches' slapstick mischief ranges from plundering Oggy's refrigerator to hijacking the train he just boarded. In many situations Oggy is also helped by Jack, who is more violent and short-tempered than him and is also annoyed by the cockroaches. Bob, a short-tempered bulldog, also appears in the show, and is Oggy's neighbor.", + "posterPath": "/aFAN9aKm0OblOr30ROejJCV8rGf.jpg", + "backdropPath": "/fVO7r9tAnauny8DAqbetlQ1tVtu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "1999-09-06", + "releaseYear": "1999", + "originalLanguage": "fr", + "voteAverage": 7.4, + "voteCount": 357, + "popularity": 15.9391 + }, + { + "id": 245914, + "title": "Bahar", + "originalTitle": "Bahar", + "overview": "When Bahar faces death, she will encounter another side of her family, especially her husband Timur, who seems 'perfect' from the outside. Bahar's sudden illness will change all dynamics in the family. In this period, Evren will become Timur's rival in every sense. Bahar's rebuilding of her life will instill hope in the viewers with often tragicomic stories.", + "posterPath": "/Adjn7rsb1picDMUcYNjEDobhvAk.jpg", + "backdropPath": "/6dXyUXZ4HsY6M3Tae9e0KZsFCo1.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2024-02-13", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 6, + "voteCount": 11, + "popularity": 15.9332 + }, + { + "id": 107255, + "title": "Dragon Raja -The Blazing Dawn-", + "originalTitle": "龙族", + "overview": "A letter from Cassell College broke the calm life of the youth. The unexpected admission notice, the frightened interview, the surprise rescue under the full view of the public, and the day of freedom to display their heroic spirit. When Lu Mingfei decided to choose the hidden option, the ordinary youth embarked on the legendary road of fighting against the dragon race.", + "posterPath": "/4OxjZt3Evt0UY65Ozr4C4S895CO.jpg", + "backdropPath": "/16oOT4iNCEnYXByMYhNGto5a32g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-08-19", + "releaseYear": "2022", + "originalLanguage": "zh", + "voteAverage": 7, + "voteCount": 21, + "popularity": 15.8695 + }, + { + "id": 10083, + "title": "The Fugitive", + "originalTitle": "The Fugitive", + "overview": "Richard Kimble is falsely convicted of his wife's murder and given the death penalty. En route to death row, Kimble's train derails and crashes, allowing him to escape and begin a cross-country search for the real killer, a \"one-armed man\". At the same time, Dr. Kimble is hounded by the authorities, most notably dogged by Police Lieutenant Philip Gerard.", + "posterPath": "/cSvrnCMFX8OWqHSkUwERfKU7mnP.jpg", + "backdropPath": "/vh29Z9EqTbaBy0sX5I370Hf3KJG.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "1963-09-17", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 58, + "popularity": 15.8662 + }, + { + "id": 112738, + "title": "HIP - High Intellectual Potential", + "originalTitle": "HPI : Haut Potentiel Intellectuel", + "overview": "Morgane is 38-years old, has three children, two exes and an IQ of 160; her destiny as a cleaner is turned upside-down when her extraordinary abilities are spotted by the police who offer her a job as a consultant.", + "posterPath": "/93PXzpXC0i5RVBEAGFR76NC1ylT.jpg", + "backdropPath": "/gzv2AMfw7EElnsN7bbr1KGL4QLD.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648, + 80, + 10751 + ], + "genres": [ + "Comedy", + "Mystery", + "Crime", + "Family" + ], + "releaseDate": "2021-04-29", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 7.606, + "voteCount": 113, + "popularity": 15.8254 + }, + { + "id": 67133, + "title": "MacGyver", + "originalTitle": "MacGyver", + "overview": "20-something Angus MacGyver creates a clandestine organization where he uses his knack for solving problems in unconventional ways to help prevent disasters from happening.", + "posterPath": "/2zAogx9dmSAu2HYxbWzHe4ZaNY5.jpg", + "backdropPath": "/v2moumGovVAmDASYkjakIl2WrOM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2016-09-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.301, + "voteCount": 955, + "popularity": 15.8173 + }, + { + "id": 233643, + "title": "Secret Mission - Undercover Agents Never Back Down!", + "originalTitle": "しーくれっとみっしょん~潜入捜査官は絶対に負けない!~", + "overview": "Narcotics Enforcement Agent Riko Ikazuchi is undercover with her junior colleague Noma in an apartment that serves as the hideout for a criminal organization. Despite Riko and Noma posing as a newlywed couple, the criminals begin to suspect them after not hearing any marital intimacy during the night. To convince them that they are a loving couple, Noma starts touching Riko's body...", + "posterPath": "/xZV8e1iKi85PFZlbQBdznvtpAVJ.jpg", + "backdropPath": "/5IBSPGPAEFEkEJo4leqvpq0RcKf.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-10-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.08, + "voteCount": 25, + "popularity": 15.8137 + }, + { + "id": 40663, + "title": "AIBOU: Tokyo Detective Duo", + "originalTitle": "相棒", + "overview": "Detective Ukyo Sugishita confronts crime on the basis of his own convictions. He has a partner that works for him in the Special Task Unit. For the first 7 seasons, Ukyo’s first partner is Kaoru Kameyama. He is a good-natured, hot-tempered, straightforward and somewhat scattered detective. Beginning in Season 8, Takeru Kanbe replaces Kameyama. Contrary to his predecessor, Takeru is a lanky, cool, conceited and confident detective. From Season 11 to Season 13, Ukyo’s partner is a young detective Toru Kai. Toru is a son of Deputy Director-General of The National Police Agency. But he became a detective by his own effort. And starting with Season 14, Ukyo’s current partner is Wataru Kaburagi, an elite bureaucrat who came to the Metropolitan Police Department on temporary assignment. As the first partner without any career of a police officer, he will face challenging cases together with Ukyo.", + "posterPath": "/8u8rCCeuBufMQ1VlGX0lruhDaPR.jpg", + "backdropPath": "/ka4rcpCCBPAATLdQEn57qZQT8e4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2002-10-09", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.611, + "voteCount": 18, + "popularity": 15.8125 + }, + { + "id": 1639, + "title": "Heroes", + "originalTitle": "Heroes", + "overview": "Common people discover that they have super powers. Their lives intertwine as a devastating event must be prevented.", + "posterPath": "/lf0TcOkheYUZKpeh7c8lqJHNk5O.jpg", + "backdropPath": "/zoetbPF7jYY0jjY5js3x6r1QjSW.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2006-09-25", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 2429, + "popularity": 15.8012 + }, + { + "id": 218539, + "title": "My Demon", + "originalTitle": "마이데몬", + "overview": "A pitiless demon becomes powerless after getting entangled with an icy heiress, who may hold the key to his lost abilities — and his heart.", + "posterPath": "/xBnscv5BrJREKVSvh0le61y4KDk.jpg", + "backdropPath": "/eSB0fD6CbNW3LT8Z55V07fmYFpo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10765 + ], + "genres": [ + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-11-24", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.448, + "voteCount": 600, + "popularity": 15.7937 + }, + { + "id": 30981, + "title": "Monster", + "originalTitle": "MONSTER", + "overview": "Kenzou Tenma, a Japanese brain surgeon in Germany, finds his life in utter turmoil after getting involved with a psychopath that was once a former patient.", + "posterPath": "/n5XNKXnoXpoXyfiCtXHOf8q8PFM.jpg", + "backdropPath": "/6T19aRp9zLMghZo1dTEwoNyreNZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 80, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2004-04-07", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.498, + "voteCount": 698, + "popularity": 15.7636 + }, + { + "id": 30983, + "title": "Detective Conan", + "originalTitle": "名探偵コナン", + "overview": "The son of a world famous mystery writer, Jimmy Kudo, has achieved his own notoriety by assisting the local police as a student detective. He has always been able to solve the most difficult of criminal cases using his wits and power of reason.", + "posterPath": "/ibd5jpPu2oxup9ecU8xvwlRZF0O.jpg", + "backdropPath": "/5546GF3zT3yA25ydCz0KlujjRA3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 9648, + 35 + ], + "genres": [ + "Animation", + "Crime", + "Mystery", + "Comedy" + ], + "releaseDate": "1996-01-08", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 724, + "popularity": 15.7524 + }, + { + "id": 41149, + "title": "Die Rosenheim-Cops", + "originalTitle": "Die Rosenheim-Cops", + "overview": "A team of inspectors investigates murders in and around the small Upper Bavarian town of Rosenheim, and they still have plenty of time to see idyllic landscapes and luxurious pre-alpine villas and enjoy sumptuous Bavarian fare with beer.", + "posterPath": "/kAhi0xY6gIEMvHtmChC44pBwOWG.jpg", + "backdropPath": "/4oAB2qs7lwfhw1BaUmp7xkryM7E.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 35 + ], + "genres": [ + "Crime", + "Comedy" + ], + "releaseDate": "2002-01-09", + "releaseYear": "2002", + "originalLanguage": "de", + "voteAverage": 6.2, + "voteCount": 25, + "popularity": 15.7418 + }, + { + "id": 235484, + "title": "Suidooster", + "originalTitle": "Suidooster", + "overview": "Suidooster is a South African television soap opera produced by Suidooster Films which revolves around a matriarch, her family, friends and the people of Suidooster, a small shopping and business centre in the fictional Cape Town suburb of Ruiterbosch.", + "posterPath": "/naCgSiacvV685kait6fBvhVhdce.jpg", + "backdropPath": "/ynd225o8GuCahYGjHtFdEt8Xizm.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2015-11-16", + "releaseYear": "2015", + "originalLanguage": "af", + "voteAverage": 7.2, + "voteCount": 23, + "popularity": 15.6939 + }, + { + "id": 116135, + "title": "Vikings: Valhalla", + "originalTitle": "Vikings: Valhalla", + "overview": "In this sequel to \"Vikings,\" a hundred years have passed and a new generation of legendary heroes arises to forge its own destiny — and make history.", + "posterPath": "/rDFy1fUU6OC3Mm0CLFB7u0fGwVN.jpg", + "backdropPath": "/k47JEUTQsSMN532HRg6RCzZKBdB.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10768 + ], + "genres": [ + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "2022-02-25", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 991, + "popularity": 15.6739 + }, + { + "id": 4026, + "title": "CBS News Sunday Morning", + "originalTitle": "CBS News Sunday Morning", + "overview": "The sparkling notes of a trumpet fanfare and the familiar logo of the sun alert viewers that it's time for CBS's Sunday morning staple. Journalist Jane Pauley helms the show, taking over hosting duties from Charles Osgood, who spent 22 years on the job. A morning talk show, this program airs at a different pace and focuses much of its attention on the performing arts. After a quick update of the day's news and national weather, correspondents offer longer-length segments on a variety of topics, from architecture to ballet to music to pop culture to politics.", + "posterPath": "/k4YOaHO6yv1MjtUPRmXbT8ASWHV.jpg", + "backdropPath": "/lNqsolPU1DZc61JduQm5l0buoNS.jpg", + "mediaType": "tv", + "genreIds": [ + 10763 + ], + "genres": [ + "News" + ], + "releaseDate": "1979-01-28", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 21, + "popularity": 15.6629 + }, + { + "id": 841, + "title": "Newsnight", + "originalTitle": "Newsnight", + "overview": "A daily BBC Television current affairs program which specializes in in-depth analysis on political and economic affairs.", + "posterPath": "/t5WG6kBLS58hQmmCBxCC7FxGHOI.jpg", + "backdropPath": "/nI3tKuIqtSA0efUA8pe2BZz3Efm.jpg", + "mediaType": "tv", + "genreIds": [ + 10763 + ], + "genres": [ + "News" + ], + "releaseDate": "1980-01-30", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 11, + "popularity": 15.6512 + }, + { + "id": 67198, + "title": "Star Trek: Discovery", + "originalTitle": "Star Trek: Discovery", + "overview": "Follow the voyages of Starfleet on their missions to discover new worlds and new life forms, and one Starfleet officer who must learn that to truly understand all things alien, you must first understand yourself.", + "posterPath": "/xwpOHgym48Ftz7fbJq5te5xoiwu.jpg", + "backdropPath": "/ePr0k72sypMpZYubz6w34dcW68Y.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2017-09-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.005, + "voteCount": 1924, + "popularity": 15.6511 + }, + { + "id": 30826, + "title": "La rosa de Guadalupe", + "originalTitle": "La rosa de Guadalupe", + "overview": "Stories about people who get into problems who use the help of Virgin Mary and where a rose appears and their problems are solved.", + "posterPath": "/9RaNva340arNWeZn2uKpKePkg91.jpg", + "backdropPath": "/ho48HnguL11niYrqMETtP8A6SWY.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2008-02-05", + "releaseYear": "2008", + "originalLanguage": "es", + "voteAverage": 6.973, + "voteCount": 276, + "popularity": 15.6181 + }, + { + "id": 14249, + "title": "Mistresses", + "originalTitle": "Mistresses", + "overview": "Follows the lives of four female friends and their involvement in an array of marital and extramarital relationships.", + "posterPath": "/diTnk44w1bZWktB3cEZ78X5XXyz.jpg", + "backdropPath": "/sZy7ksxRX1uK5L6Nad5W9kixcnD.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2008-01-08", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 21, + "popularity": 15.5912 + }, + { + "id": 61374, + "title": "Tokyo Ghoul", + "originalTitle": "東京喰種トーキョーグール", + "overview": "Ken Kaneki, a bookworm college student, meets Rize, a girl his own age with whom he shares many interests.", + "posterPath": "/1m4RlC9BTCbyY549TOdVQ5NRPcR.jpg", + "backdropPath": "/yOarY3Yo0NMkuTuft87M5oAZa3C.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.276, + "voteCount": 2447, + "popularity": 15.5823 + }, + { + "id": 83867, + "title": "Andor", + "originalTitle": "Andor", + "overview": "In an era filled with danger, deception and intrigue, Cassian Andor will discover the difference he can make in the struggle against the tyrannical Galactic Empire. He embarks on a path that is destined to turn him into a rebel hero.", + "posterPath": "/khZqmwHQicTYoS7Flreb9EddFZC.jpg", + "backdropPath": "/kCGwvjpqM1owt9kI4pkYPJWJLvc.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2022-09-21", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 1760, + "popularity": 15.5677 + }, + { + "id": 4313, + "title": "Full House", + "originalTitle": "Full House", + "overview": "After the death of his wife, Danny enlists his best friend and his brother-in-law to help raise his three daughters, D.J., Stephanie, and Michelle.", + "posterPath": "/7g0EyKsIaYjYw3gCIBKMHHE0Kcu.jpg", + "backdropPath": "/btUwsz9ttVBVyqtEyZvFBQFyJgv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1987-09-22", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 1078, + "popularity": 15.5477 + }, + { + "id": 61889, + "title": "Marvel's Daredevil", + "originalTitle": "Marvel's Daredevil", + "overview": "Lawyer-by-day Matt Murdock uses his heightened senses from being blinded as a young boy to fight crime at night on the streets of Hell’s Kitchen as Daredevil.", + "posterPath": "/ig5sp7GzfQZw2dXgrM8OXUpOPri.jpg", + "backdropPath": "/qsnXwGS7KBbX4JLqHvICngtR8qg.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2015-04-10", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.159, + "voteCount": 4918, + "popularity": 15.5383 + }, + { + "id": 1425, + "title": "House of Cards", + "originalTitle": "House of Cards", + "overview": "Set in present day Washington, D.C., House of Cards is the story of Frank Underwood, a ruthless and cunning politician, and his wife Claire who will stop at nothing to conquer everything. This wicked political drama penetrates the shadowy world of greed, sex and corruption in modern D.C.", + "posterPath": "/hKWxWjFwnMvkWQawbhvC0Y7ygQ8.jpg", + "backdropPath": "/A3bigAAa4u6EbDvmMpDc0GNIEtG.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-02-01", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 3000, + "popularity": 15.5251 + }, + { + "id": 47, + "title": "El Chavo del Ocho", + "originalTitle": "El Chavo del Ocho", + "overview": "The mishaps of Chavo, an 8-year-old orphan boy who lives in a barrel. Together with Quico, Chilindrina, Ñoño and La Popis, Chavo experiences a series of humorous entanglements.", + "posterPath": "/1TdBpVOASafzfWlnecwW17UL6a5.jpg", + "backdropPath": "/7IBDc5TE9bZlEGxSa0smgnTb2a.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "1973-02-26", + "releaseYear": "1973", + "originalLanguage": "es", + "voteAverage": 8.019, + "voteCount": 1981, + "popularity": 15.4959 + }, + { + "id": 33765, + "title": "My Little Pony: Friendship Is Magic", + "originalTitle": "My Little Pony: Friendship Is Magic", + "overview": "Journey to the enchanted land of Equestria, where unicorn Twilight Sparkle and her pals have adventures and learn valuable lessons about friendship.", + "posterPath": "/fwW7WgJIjhBsnzk87Gyh6g9187m.jpg", + "backdropPath": "/omL3sd4bctdEmA8aqj1zlBqRZHS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2010-10-10", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 699, + "popularity": 15.4816 + }, + { + "id": 3050, + "title": "The Practice", + "originalTitle": "The Practice", + "overview": "A provocative legal drama focused on young associates at a bare-bones Boston firm and their scrappy boss, Bobby Donnell. The show's forte is its storylines about “people who walk a moral tightrope.”", + "posterPath": "/7OKZSUIWhjFP0F2s478zTrAYwDB.jpg", + "backdropPath": "/wnAboUyDiTILkZfPhFyVIiY87Fa.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1997-03-04", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.648, + "voteCount": 108, + "popularity": 15.4546 + }, + { + "id": 1429, + "title": "Attack on Titan", + "originalTitle": "進撃の巨人", + "overview": "100 years ago, the last remnants of humanity were forced to retreat behind the towering walls of a fortified city to escape the massive, man-eating Titans that roamed the land outside their fortress. Only the members of the Scouting Legion dared to stray beyond the safety of the walls – but even those brave warriors seldom returned alive. Those within the city clung to the illusion of a peaceful existence until the day that dream was shattered, and their slim chance at survival was reduced to one horrifying choice: kill – or be devoured!", + "posterPath": "/hTP1DtLGFamjfu8WqjnuQdP1n4i.jpg", + "backdropPath": "/3T5N0Fg6hE3lE6JHJJPKrjtdI4j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2013-04-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 7095, + "popularity": 15.4516 + }, + { + "id": 99071, + "title": "Redo of Healer", + "originalTitle": "回復術士のやり直し", + "overview": "In a world of monsters, adventurers and magic, some of the most gifted healers are subjugated to brute force. Keyaru gains the ability to rewind time and turns the tables on those who’ve exploited him in this dark fantasy tale of vengeance and fury.", + "posterPath": "/9T7TT0w92RbeRP5QSnNq81HHxde.jpg", + "backdropPath": "/injrIOMNCQv4kTNX6hWa1QlyKoK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Crime" + ], + "releaseDate": "2021-01-13", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.324, + "voteCount": 991, + "popularity": 15.4107 + }, + { + "id": 605, + "title": "Sabrina, the Teenage Witch", + "originalTitle": "Sabrina, the Teenage Witch", + "overview": "On her sixteenth birthday, Sabrina Spellman discovers she has magical powers. She lives with her 600-year-old aunts Hilda and Zelda as well as talking cat Salem in the fictional town of Westbridge, Massachusetts.", + "posterPath": "/nNhj3coHNVVJPVM7fm5PEYVTCMO.jpg", + "backdropPath": "/4PhaaA593zHfAyYUIXVWTih3qcD.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10765 + ], + "genres": [ + "Comedy", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-09-27", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.804, + "voteCount": 1177, + "popularity": 15.3659 + }, + { + "id": 239526, + "title": "Dreams of Liberty", + "originalTitle": "Sueños de libertad", + "overview": "Begoña Montes is a woman who lives trapped in a toxic marriage and seeks the long-awaited freedom in Spain in 1958.", + "posterPath": "/ohItaiKnas60gxQrfQCrCToWmGW.jpg", + "backdropPath": "/qwoFxyMtArLpZZzG3mmRDEjGgCM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2024-02-25", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 6.1, + "voteCount": 16, + "popularity": 15.359 + }, + { + "id": 2750, + "title": "Silent Witness", + "originalTitle": "Silent Witness", + "overview": "A team of exceptional forensic pathologists and scientists investigate heinous crimes and use their skills to catch the people responsible.", + "posterPath": "/yRwf0yAZvYMfFLMonPusv6F256s.jpg", + "backdropPath": "/kFDQweHyB3bxcG2qllKv13npgI6.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1996-02-21", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 102, + "popularity": 15.3438 + }, + { + "id": 1414, + "title": "The Shield", + "originalTitle": "The Shield", + "overview": "The story of an inner-city Los Angeles police precinct where some of the cops aren't above breaking the rules or working against their associates to both keep the streets safe and their self-interests intact.", + "posterPath": "/AfdZXqqlFsPUEfi6kWWWthxw7Nz.jpg", + "backdropPath": "/AuQGIa3ZarPdS0bhWjQWJR0mhJj.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2002-03-12", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 8.141, + "voteCount": 811, + "popularity": 15.3295 + }, + { + "id": 212989, + "title": "LEGO Ninjago: Dragons Rising", + "originalTitle": "LEGO Ninjago: Dragons Rising", + "overview": "After Crystallized, the 16 realms have abruptly fused into a cosmic unstable dystopia. A Spinjitzu Ninja Master trains a new generation of heroes to find Elemental Dragons before the forces of evil exploit that energy to destroy the world.", + "posterPath": "/4F4Ig81UpZ5mzeyZwVR2zc5t5D7.jpg", + "backdropPath": "/eo6NyuIw5WnKX5MQhg6wzJBsGJh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure" + ], + "releaseDate": "2023-06-01", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 87, + "popularity": 15.3169 + }, + { + "id": 71096, + "title": "Söz", + "originalTitle": "Söz", + "overview": "Yavuz Karasu, a well-trained Turkish soldier, is in Istanbul with his fiance where a terrorist operation takes place. Dr. Bahar, who is not a surgeon, tries to save his fiance. After this incident, Yavuz goes back to Karabayir and Bahar follows him all the way to give him something that belongs to him. Another incident happens and he is chosen to be the commander of a team whose mission is to catch a terrorist and protect Karabiyir and their country Turkey. The whole team is solid, consistent, and willing to sacrifice their lives for the sake of their country.", + "posterPath": "/orUokYSO7obeN8T1AhgbMNHb4FB.jpg", + "backdropPath": "/rOkRGZdt1sx84eIRkGkzncOr29l.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18, + 10759 + ], + "genres": [ + "War & Politics", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2017-04-03", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 6.643, + "voteCount": 28, + "popularity": 15.3167 + }, + { + "id": 75450, + "title": "Titans", + "originalTitle": "Titans", + "overview": "A team of young superheroes led by Nightwing (formerly Batman's first Robin) form to combat evil and other perils.", + "posterPath": "/8e6QiSexmYKaiHGPvbhaFMmQEhc.jpg", + "backdropPath": "/iAzH3jFEaDMkjEsNNBUpGzSJ6VR.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-12", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.89, + "voteCount": 2770, + "popularity": 15.2887 + }, + { + "id": 40008, + "title": "Hannibal", + "originalTitle": "Hannibal", + "overview": "Both a gift and a curse, Graham has the extraordinary ability to think like his prey—he sees what they see, feels what they feel. But while Graham is pursuing an especially troubling, cannibalistic murderer, Special Agent Jack Crawford teams him with a highly respected psychiatrist – a man with a taste for the criminal minded – Dr. Hannibal Lecter.", + "posterPath": "/pbV2eLnKSIm1epSZt473UYfqaeZ.jpg", + "backdropPath": "/vlG182ZY2WMzD5bjFZNnhyvv5V4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2013-04-04", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 2738, + "popularity": 15.2682 + }, + { + "id": 54650, + "title": "Power", + "originalTitle": "Power", + "overview": "A successful New York entrepreneur lives a double life as the head of a drug empire that serves only the rich and influential, all while wanting to escape the underworld and keep his family safe.", + "posterPath": "/ctftzvyj8b0odco7EoS9VfJhf7K.jpg", + "backdropPath": "/gG1UDKgnATgTPwoZzqIDlGvnBe1.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2014-06-07", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.663, + "voteCount": 1260, + "popularity": 15.2224 + }, + { + "id": 73375, + "title": "Tom Clancy's Jack Ryan", + "originalTitle": "Tom Clancy's Jack Ryan", + "overview": "When CIA analyst Jack Ryan stumbles upon a suspicious series of bank transfers his search for answers pulls him from the safety of his desk job and catapults him into a deadly game of cat and mouse throughout Europe and the Middle East, with a rising terrorist figurehead preparing for a massive attack against the US and her allies.", + "posterPath": "/cO4py3L3q5GNPrA0qr1wVDrosK1.jpg", + "backdropPath": "/2y2TbzeKZHYqTN5gb4nBv9dKk1f.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2018-08-30", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.679, + "voteCount": 1685, + "popularity": 15.1723 + }, + { + "id": 240411, + "title": "Dan Da Dan", + "originalTitle": "ダンダダン", + "overview": "In a bet to prove whether ghosts or aliens exist, two high schoolers face terrifying paranormal threats, gain superpowers and maybe even fall in love?!", + "posterPath": "/6qfZAOEUFIrbUH3JvePclx1nXzz.jpg", + "backdropPath": "/uNTrRKIOyKYISthoeizghtXPEOK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.595, + "voteCount": 721, + "popularity": 15.1362 + }, + { + "id": 90802, + "title": "The Sandman", + "originalTitle": "The Sandman", + "overview": "After years of imprisonment, Morpheus — the King of Dreams — embarks on a journey across worlds to find what was stolen from him and restore his power.", + "posterPath": "/dhbqyYjLfTNAHodDDjDELzwO6F4.jpg", + "backdropPath": "/i8taDLjpF8cCbp53N8kOFt1LSkW.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2022-08-05", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 2440, + "popularity": 15.1352 + }, + { + "id": 84958, + "title": "Loki", + "originalTitle": "Loki", + "overview": "After stealing the Tesseract during the events of “Avengers: Endgame,” an alternate version of Loki is brought to the mysterious Time Variance Authority, a bureaucratic organization that exists outside of time and space and monitors the timeline. They give Loki a choice: face being erased from existence due to being a “time variant” or help fix the timeline and stop a greater threat.", + "posterPath": "/oJdVHUYrjdS2IqiNztVIP4GPB1p.jpg", + "backdropPath": "/N1hWzVPpZ8lIQvQskgdQogxdsc.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-06-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.172, + "voteCount": 12105, + "popularity": 15.1156 + }, + { + "id": 42912, + "title": "Inazuma Eleven", + "originalTitle": "イナズマイレブン", + "overview": "Mamoru Endou is a cheerful goalkeeper in Raimon Jr High, with six other players in the team. But there was a day when the team was almost lead to disbandment by Natsumi unless they are able to win the match against the Teikoku Gakuen, currently the best team in Japan. He tried to save the club by gathering four more players to join the team.", + "posterPath": "/9kQWvBMPWz1gykKLXuX6JBjC9uQ.jpg", + "backdropPath": "/zhtEYosjlYtNavbvImxcs36We4i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 291, + "popularity": 15.1091 + }, + { + "id": 4616, + "title": "Xena: Warrior Princess", + "originalTitle": "Xena: Warrior Princess", + "overview": "Xena is an infamous warrior on a quest to seek redemption for her past sins against the innocent. Accompanied by her comrade-in-arms Gabrielle, the campy couple use their formidable fighting skills to help those who are unable to defend themselves.", + "posterPath": "/qjUn6GVZVDifLHB7bvVrgZsOfzE.jpg", + "backdropPath": "/1V7WuDv5kmzwCCNd9CNQvOmqHdm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-09-04", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.525, + "voteCount": 1341, + "popularity": 15.1024 + }, + { + "id": 89393, + "title": "9-1-1: Lone Star", + "originalTitle": "9-1-1: Lone Star", + "overview": "Nearly 20 years ago, Owen Strand was the lone survivor of his Manhattan firehouse on 9/11. In the wake of the attack, Owen had the unenviable task of rebuilding his station. After a similar tragedy happens to a firehouse in Austin, Owen, along with his troubled firefighter son, T.K., takes his progressive philosophies of life and firefighting down to Texas, where he helps them start anew. On the surface, Owen is all about big-city style and swagger, but underneath he struggles with a secret he hides from the world - one that could very well end his life.", + "posterPath": "/BOTITv548LYGB4xRD3rHfbwkqm.jpg", + "backdropPath": "/bBziqQXj6ELvVCpPfxGM9OWJpWa.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2020-01-19", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 1177, + "popularity": 15.0984 + }, + { + "id": 99966, + "title": "All of Us Are Dead", + "originalTitle": "지금 우리 학교는", + "overview": "A high school becomes ground zero for a zombie virus outbreak. Trapped students must fight their way out — or turn into one of the rabid infected.", + "posterPath": "/pTEFqAjLd5YTsMD6NSUxV6Dq7A6.jpg", + "backdropPath": "/q74hFjNMjlA4Fj8mYA42X9lOvLV.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-28", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.283, + "voteCount": 4189, + "popularity": 15.0966 + }, + { + "id": 3137, + "title": "Babylon 5", + "originalTitle": "Babylon 5", + "overview": "Babylon 5 is a five-mile long space station located in neutral space. Built by the Earth Alliance in the 2250s, its goal is to maintain peace among the various alien races by providing a sanctuary where grievances and negotiations can be worked out among duly appointed ambassadors. A council made up of representatives from the five major space-faring civilizations - the Earth Alliance, Minbari Federation, Centauri Republic, Narn Regime, and Vorlon Empire - work with the League of Non-Aligned Worlds to keep interstellar relations under control. Aside from its diplomatic function, Babylon 5 also serves as a military post for Earth and a port of call for travelers, traders, businessmen, criminals, and Rangers.", + "posterPath": "/td8O6KJQpN9ZRiuyFUILziXFMrk.jpg", + "backdropPath": "/ymdCZck7hy7EDxUTR4Uq1MisfyX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1994-01-26", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 565, + "popularity": 15.0939 + }, + { + "id": 203906, + "title": "High (School) On Sex", + "originalTitle": "High (School) On Sex", + "overview": "Wilbert Ross and Denise Esteban. Vivamax brings lots of laughs and loads of sexy time in its new series, “High (School) on Sex”, pronounced as High On Sex,", + "posterPath": "/tBOQVr2XfNKjUnB7O4tOM3olomr.jpg", + "backdropPath": "/jLAZfpGhpTKQPYZYrOe7PEhraHk.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-06-05", + "releaseYear": "2022", + "originalLanguage": "tl", + "voteAverage": 6.109, + "voteCount": 23, + "popularity": 15.0806 + }, + { + "id": 31911, + "title": "Fullmetal Alchemist: Brotherhood", + "originalTitle": "鋼の錬金術師 FULLMETAL ALCHEMIST", + "overview": "Disregard for alchemy’s laws ripped half of Edward Elric’s limbs from his body and left his brother Alphonse’s soul clinging to a suit of armor. To restore what was lost, the brothers seek the Philosopher’s Stone. Enemies and allies – the corrupt military, the Homunculi, and foreign alchemists – will alter the Elric brothers course, but their purpose will remain unchanged and their bond unbreakable.", + "posterPath": "/5ZFUEOULaVml7pQuXxhpR2SmVUw.jpg", + "backdropPath": "/A6tMQAo6t6eRFCPhsrShmxZLqFB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 2294, + "popularity": 15.07 + }, + { + "id": 97, + "title": "The Drew Carey Show", + "originalTitle": "The Drew Carey Show", + "overview": "Drew is an assistant director of personnel in a Cleveland department store and he has been stuck there for ten years. Other than fighting with co-worker Mimi, his hobbies include drinking beer and not being able to get dates. To make a few extra bucks he has a micro-brewery going in his garage with his buddies.", + "posterPath": "/cWboJ8Cfi5NgHoENAB0gYtgZHkR.jpg", + "backdropPath": "/vAHR5oY1jZLpyKFhnQf7Qj66mMp.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1995-09-13", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.503, + "voteCount": 168, + "popularity": 15.0694 + }, + { + "id": 95057, + "title": "Superman & Lois", + "originalTitle": "Superman & Lois", + "overview": "After years of facing megalomaniacal supervillains, monsters wreaking havoc on Metropolis, and alien invaders intent on wiping out the human race, The Man of Steel aka Clark Kent and Lois Lane come face to face with one of their greatest challenges ever: dealing with all the stress, pressures and complexities that come with being working parents in today's society.", + "posterPath": "/vlv1gn98GqMnKHLSh0dNciqGfBl.jpg", + "backdropPath": "/pPKiIJEEcV0E1hpVcWRXyp73ZpX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-02-23", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 2611, + "popularity": 15.0499 + }, + { + "id": 121658, + "title": "FBI: International", + "originalTitle": "FBI: International", + "overview": "Follows the elite agents of the FBI's International Fly Team headquartered in Budapest as they travel the world with the mission of protecting Americans wherever they may be.", + "posterPath": "/1Ublm6D8zmqMroqrXkn3Fgd353q.jpg", + "backdropPath": "/8JtKCIBzf3AYbsxBFSL74NoGH2u.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2021-09-21", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.656, + "voteCount": 221, + "popularity": 15.0458 + }, + { + "id": 119845, + "title": "Power Book IV: Force", + "originalTitle": "Power Book IV: Force", + "overview": "Tommy Egan leaves New York behind and plans to take on Chicago, using his outsider status to break all the local rules and rewrite them on his quest to become the biggest drug dealer in the city.", + "posterPath": "/cR0ursLXoT0zfX9XDGAzQRAnK0W.jpg", + "backdropPath": "/9lwYGM97dBfu3lpCdt6VpohgjvV.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2022-02-06", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.275, + "voteCount": 193, + "popularity": 15.0163 + }, + { + "id": 119267, + "title": "My Siblings", + "originalTitle": "Kardeşlerim", + "overview": "Four siblings have to struggle with life after their parents' death.", + "posterPath": "/p2wOxI0GAlckcgoGF14r31dYiPr.jpg", + "backdropPath": "/mYpj5lBCeRq1cVt3Ygby1IVjAWD.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2021-02-20", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 7.5, + "voteCount": 31, + "popularity": 15.0064 + }, + { + "id": 45790, + "title": "JoJo's Bizarre Adventure", + "originalTitle": "ジョジョの奇妙な冒険", + "overview": "Follow the intergenerational feud between the Joestar Family and various forces of evil, the most prominent of which is Dio Brando and his followers.", + "posterPath": "/ogAWwbh3frWtiTyyXrZaVFtqCgp.jpg", + "backdropPath": "/mLKN1dsimKPiXCZ48KED0X8a02t.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1507, + "popularity": 15.0013 + }, + { + "id": 81329, + "title": "Chronicles of the Sun", + "originalTitle": "Un si grand soleil", + "overview": "Claire is surprised when she gets arrested for the murder of her childhood friend after she returns to Montpellier.", + "posterPath": "/t6jVlbPMtZOJoAOfeoR4yQmnjXM.jpg", + "backdropPath": "/aizbHLcKVWvJ7jxkflJzTu5Z8GE.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2018-08-27", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 6.6, + "voteCount": 125, + "popularity": 15.0003 + }, + { + "id": 6127, + "title": "Agatha Christie's Marple", + "originalTitle": "Agatha Christie's Marple", + "overview": "The adventures of Miss Jane Marple, an elderly spinster living in the quiet little village of St Mary Mead. During her many visits to friends and relatives in other villages, Miss Marple often stumbles upon mysterious murders which she helps solve. Although the police are sometimes reluctant to accept Miss Marple's help, her reputation and unparalleled powers of observation eventually win them over.", + "posterPath": "/nVswrZQpqQND9TgwgbWgz18KgAo.jpg", + "backdropPath": "/1lBEfsnzUkxtxzvFwimENpM6bEP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2004-12-12", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 134, + "popularity": 14.9945 + }, + { + "id": 64356, + "title": "The Return of Superman", + "originalTitle": "슈퍼맨이 돌아왔다", + "overview": "An up-close look at celebrity dads who have to take care of their kids for the next 48 hours without any help. Will it be a dad-tastrophe, or can they finish their wives' to-do lists while having fun with their kids?", + "posterPath": "/qjBx2RCnyyBPgu9qBV7j3UiXjeo.jpg", + "backdropPath": "/4P2gbaCGdZyP4i95TmmA6nS9HJh.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2013-11-03", + "releaseYear": "2013", + "originalLanguage": "ko", + "voteAverage": 7.7, + "voteCount": 16, + "popularity": 14.935 + }, + { + "id": 246029, + "title": "Viral Hit", + "originalTitle": "喧嘩独学", + "overview": "Scrawny high school student Hobin Yu is probably the last guy you'd expect to star in a NewTube channel that revolves around fighting. But after following some advice from a mysterious NewTube channel, Hobin is soon knocking out guys stronger than him and raking in more money than he could have ever dreamed of. Can Hobin keep this up, or will he eventually meet his match?", + "posterPath": "/1kZBsmNYgjRxFPBfrFxkQGwS7xX.jpg", + "backdropPath": "/wBnmxSBxaP5VrNFVsZuruERb1Cv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2024-04-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.895, + "voteCount": 19, + "popularity": 14.9101 + }, + { + "id": 74823, + "title": "The Pit", + "originalTitle": "Çukur", + "overview": "When a mafia family named Koçovars are in danger of losing control of their neighborhood, “The Pit,” their youngest son must come back home, a place he could never truly escape.", + "posterPath": "/fBXDSBDw5Zug6E2xTB265LzYVKz.jpg", + "backdropPath": "/xtCzLQOocIajjQ5Mhwp834BQhVX.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759, + 18 + ], + "genres": [ + "Crime", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2017-10-23", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 7.6, + "voteCount": 85, + "popularity": 14.9042 + }, + { + "id": 5368, + "title": "Lassie", + "originalTitle": "Lassie", + "overview": "Lassie is the pet of Jeff Miller, an 11-year-old farm boy. The two become best friends and enjoy family adventures in the American countryside, teaching each other about love, nature and commitment.", + "posterPath": "/vqbVr4fYRZb28ywczaidn29JJTA.jpg", + "backdropPath": "/w9zV6lOILeqaOilJzI1Xa9NRhXY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10751, + 35 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Family", + "Comedy" + ], + "releaseDate": "1954-09-12", + "releaseYear": "1954", + "originalLanguage": "en", + "voteAverage": 6.114, + "voteCount": 66, + "popularity": 14.8827 + }, + { + "id": 157744, + "title": "1923", + "originalTitle": "1923", + "overview": "Follow a new generation of the Dutton family during the early twentieth century when pandemics, historic drought, the end of Prohibition and the Great Depression all plague the mountain west, and the Duttons who call it home.", + "posterPath": "/vNJWr0xh7W5IDzFTnVzWhw6KoJr.jpg", + "backdropPath": "/vIioWssbxRtEkIzgj8r0pCWYkYM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "2022-12-18", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.217, + "voteCount": 659, + "popularity": 14.8574 + }, + { + "id": 78501, + "title": "Sweet Punishment: I'm the Guard's Personal Pet", + "originalTitle": "甘い懲罰~私は看守専用ペット", + "overview": "The story is set in a prison in the near future. It revolves around Hina Saotome, imprisoned despite her innocence, and the elegant yet sadistic guard Aki Myoujin. Hina's heart and body are at the mercy of Myoujin's \"heartless yet sweet domination\" from physical examinations to lovers' prison visits.", + "posterPath": "/rbETzzJLGIB2Bg6NwNekWTKfM6d.jpg", + "backdropPath": "/5Akyn19AM9flDDUN7pMUdzA9dWD.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-04-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 14.8213 + }, + { + "id": 10283, + "title": "Archer", + "originalTitle": "Archer", + "overview": "Sterling Archer is the world's most daunting spy. He works for ISIS, a spy agency run by his mother. In between dealing with his boss and his co-workers - one of whom is his ex-girlfriend - Archer manages to annoy or seduce everyone that crosses his path. His antics are only excusable because at the end of the day, he still somehow always manages to thwart whatever crises was threatening mankind.", + "posterPath": "/vhnrkTGYPqcB63ALcSJm0WoaKHT.jpg", + "backdropPath": "/c4dymvMQT45P1j9RnscRyeyyqSg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 16 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2009-09-17", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 1359, + "popularity": 14.8207 + }, + { + "id": 2813, + "title": "Mannix", + "originalTitle": "Mannix", + "overview": "Mannix is an American television detective series that ran from 1967 through 1975 on CBS. Created by Richard Levinson and William Link and developed by executive producer Bruce Geller, the title character, Joe Mannix, is a private investigator. He is played by Mike Connors. Mannix was the last series produced by Desilu Productions.", + "posterPath": "/8Nh2D2dHKJnUbRHqLS5QsKWJuPb.jpg", + "backdropPath": "/3k0hao0Nw6JPes4Tvb8CLAkmnXu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 9648, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "1967-09-16", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 51, + "popularity": 14.8161 + }, + { + "id": 67419, + "title": "Victoria", + "originalTitle": "Victoria", + "overview": "The story of Queen Victoria, who came to the throne at a time of great economic turbulence and resurgent republicanism – and died 64 years later the head of the largest empire the world had ever seen, having revitalised the throne’s public image and become “grandmother of Europe”.", + "posterPath": "/wtu2oxkUuP8bQu8YY7slIlvvvpX.jpg", + "backdropPath": "/srlPdxE5rmanfs5W09LLp8KU1VA.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-08-28", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 275, + "popularity": 14.7947 + }, + { + "id": 2287, + "title": "Batman", + "originalTitle": "Batman", + "overview": "Wealthy entrepreneur Bruce Wayne and his ward Dick Grayson lead a double life: they are actually crime fighting duo Batman and Robin. A secret Batpole in the Wayne mansion leads to the Batcave, where Police Commissioner Gordon often calls with the latest emergency threatening Gotham City. Racing to the scene of the crime in the Batmobile, Batman and Robin must (with the help of their trusty Bat-utility-belt) thwart the efforts of a variety of master criminals, including The Riddler, The Joker, Catwoman, and The Penguin.", + "posterPath": "/1ZEJuuDh0Zpi5ELM3Zev0GBhQ3R.jpg", + "backdropPath": "/yGKZsVJ8avlUpk6pvKzakgQ7TV9.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1966-01-12", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 568, + "popularity": 14.7667 + }, + { + "id": 498, + "title": "Late Show with David Letterman", + "originalTitle": "Late Show with David Letterman", + "overview": "Late Show with David Letterman is an American late-night talk show hosted by David Letterman on CBS. The show debuted on August 30, 1993, and is produced by Letterman's production company, Worldwide Pants Incorporated and CBS Television Studios. The show's music director and band-leader of the house band, the CBS Orchestra, is Paul Shaffer. The head writer is Matt Roberts and the announcer is Alan Kalter. Of the major U.S. late-night programs, Late Show ranks second in cumulative average viewers over time and third in number of episodes over time. The show leads other late night shows in ad revenue with $271 million in 2009.\n\nIn most U.S. markets the show airs at 11:35 p.m. Eastern/Pacific time, but is recorded Monday through Wednesday at 4:30 p.m., and Thursdays at 3:30 p.m and 6:00 p.m. The second Thursday episode usually airs on Friday of that week.\n\nIn 2002, Late Show with David Letterman was ranked No. 7 on TV Guide's 50 Greatest TV Shows of All Time. CBS has a contract with Worldwide Pants to continue the show through 2014; by then, Letterman will surpass Johnny Carson as the longest tenured late-night talk show host.", + "posterPath": "/fTBC5EpsgKmli9VQcJMtqQ08Qj4.jpg", + "backdropPath": "/7jEnft2CLNbILWAiBRIBrXNN7Qh.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "1993-08-30", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 159, + "popularity": 14.732 + }, + { + "id": 3570, + "title": "Sailor Moon", + "originalTitle": "美少女戦士セーラームーン", + "overview": "One day, Usagi Tsukino, clumsy 2nd-year middle school student, stumbles upon a talking cat named Luna. Luna tells her that she is destined to be Sailor Moon, \"champion of love and justice\", and she must search for the fabled Moon Princess. Usagi finds friends that turn out to be destined senshi as well, and together they fight to save the world from the certain doom brought upon by the Dark Kingdom.", + "posterPath": "/wz45BNOMLRZdxXm94P8NGevKubm.jpg", + "backdropPath": "/sNCpbcCcRadDBMTh6An1dBMakqr.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1992-03-07", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 8.368, + "voteCount": 995, + "popularity": 14.7316 + }, + { + "id": 86848, + "title": "Evil", + "originalTitle": "Evil", + "overview": "Skeptical forensic psychologist Kristen Bouchard joins priest-in-training David Acosta and technology expert Ben Shakir as they investigate supposed miracles, demonic possessions, and other extraordinary occurrences to assess for a scientific explanation or if something truly supernatural is at work.", + "posterPath": "/auRAAVxlyT6YACql96UdtnpFHy3.jpg", + "backdropPath": "/ttB60pxSxMyyW9mIDlq89RLf0vQ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2019-09-26", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.761, + "voteCount": 930, + "popularity": 14.7302 + }, + { + "id": 71914, + "title": "The Wheel of Time", + "originalTitle": "The Wheel of Time", + "overview": "The lives of five young villagers change forever when a strange and powerful woman arrives, claiming one of them is the child of an ancient prophecy with the power to tip the balance between Light and Dark forever. They must choose whether to trust this stranger – and each other – with the fate of the world before the Dark One breaks out of His prison, and the Last Battle begins.", + "posterPath": "/ihBi24EIr5kwAeY2PqmsgAcCj4n.jpg", + "backdropPath": "/1P3QtW1IkivqDrKbbwuR0zCYIf8.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2021-11-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.633, + "voteCount": 2315, + "popularity": 14.7276 + }, + { + "id": 2221, + "title": "The View", + "originalTitle": "The View", + "overview": "ABC Daytime's morning chatfest, currently featuring Whoopi Goldberg, Joy Behar, Sunny Hostin, Sara Haines, Alyssa Farah Griffin, and Ana Navarro discussing the most exciting events of the day. Hot topics in the news, the best experts in their field, celebrity interviews and general entertainment are all part of The View.", + "posterPath": "/pEUNIxCMh2jFjUj7u09f4O5CcR4.jpg", + "backdropPath": "/7I5VX5Vr1jrUvikA7mTje97dT2e.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1997-08-11", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 106, + "popularity": 14.724 + }, + { + "id": 74561, + "title": "Who's the Murderer", + "originalTitle": "明星大侦探", + "overview": "The cast is introduced to the settings and suspects of a murder case for the new episode. The cast then chooses their role in the episode, as a particular suspect or the detective.", + "posterPath": "/bBtd3p4DZmVEuv8L9SelQ0MVE2B.jpg", + "backdropPath": "/yLRGIigN6BWvEQaJCtRti4mnQkI.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 10764 + ], + "genres": [ + "Crime", + "Mystery", + "Reality" + ], + "releaseDate": "2016-03-27", + "releaseYear": "2016", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 14, + "popularity": 14.716 + }, + { + "id": 1996, + "title": "The Flintstones", + "originalTitle": "The Flintstones", + "overview": "The misadventures of two modern-day Stone Age families, the Flintstones and the Rubbles.", + "posterPath": "/30P6ifagQ3fguTsI33KMmDLTAx6.jpg", + "backdropPath": "/jqweieg5sg0HLlVjugP9fWDiIJq.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1960-09-30", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 946, + "popularity": 14.7149 + }, + { + "id": 198004, + "title": "King the Land", + "originalTitle": "킹더랜드", + "overview": "Amid a tense inheritance fight, a charming heir clashes with his hardworking employee who's known for her irresistible smile — which he cannot stand.", + "posterPath": "/tW8BMRCYSe6nySvZ749pzc31x2m.jpg", + "backdropPath": "/rHiz6GHA2bUPEtTDZvhbTmzlNm6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2023-06-17", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.167, + "voteCount": 557, + "popularity": 14.7086 + }, + { + "id": 304530, + "title": "Fortnite x The Simpsons", + "originalTitle": "Fortnite x The Simpsons", + "overview": "Springfield and Fortnite universes converge. Chaos ensues as Homer sets out to transform the world, wielding a powerful alien energy.", + "posterPath": "/lr3gn5BN80kc2vkmTOlPuHZlLP.jpg", + "backdropPath": "/z0HHrV0t1NsnrHJK6dbkJbIu2Nb.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10765, + 10759 + ], + "genres": [ + "Comedy", + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2025-11-01", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 17, + "popularity": 14.6996 + }, + { + "id": 2370, + "title": "Hell's Kitchen", + "originalTitle": "Hell's Kitchen", + "overview": "Aspiring restaurateurs brave Ramsay and his fiery command of the kitchen as he puts the competitors through an intense culinary academy to prove they possess the right combination of ingredients to win a life-changing grand prize.", + "posterPath": "/shOVFku8daIGRpgjTdMZBxUAvsV.jpg", + "backdropPath": "/kitfuCa2TqX6oY5HvdFRjMMaLwc.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2005-05-30", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.804, + "voteCount": 312, + "popularity": 14.6891 + }, + { + "id": 210081, + "title": "Sherri", + "originalTitle": "Sherri", + "overview": "Sherri Shepherd, actress, comic, and Emmy Award-winning longtime co-host of \"The View\", appears before a live audience with a daily dose of pop culture, comedy, conversations, and daytime talk staples, including celebrity and human interest interviews.", + "posterPath": "/w6K4LsGYTBbuYpDG9qR20g6p1NT.jpg", + "backdropPath": "/7g5ntSj6rQANCZnkDKeRax1hhhD.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2022-09-12", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 3.045, + "voteCount": 11, + "popularity": 14.6562 + }, + { + "id": 113268, + "title": "The Uncanny Counter", + "originalTitle": "경이로운 소문", + "overview": "A group of supernatural demon hunters known as \"Counters,\" each with unique abilities, disguise themselves as employees of a noodle restaurant, while tracking down evil spirits that terrorize the mortal world.", + "posterPath": "/bsbuXbQqryQ8aJlwXFkFXbrYko1.jpg", + "backdropPath": "/jNyK0FF7t7oaU4wMpRkEnEIOVlW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10759 + ], + "genres": [ + "Drama", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2020-11-28", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.321, + "voteCount": 400, + "popularity": 14.6239 + }, + { + "id": 797, + "title": "Have I Got News for You", + "originalTitle": "Have I Got News for You", + "overview": "Hilarious, totally-irreverent, near-slanderous political quiz show, based mainly on news stories from the last week or so, that leaves no party, personality or action unscathed in pursuit of laughs.", + "posterPath": "/917ZwaLnDX5A5iVotS8NGObNtgO.jpg", + "backdropPath": "/56zISqLvl7DuS7QYRb2SvJaFkxc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10763 + ], + "genres": [ + "Comedy", + "News" + ], + "releaseDate": "1990-09-28", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 76, + "popularity": 14.6118 + }, + { + "id": 66025, + "title": "Animal Kingdom", + "originalTitle": "Animal Kingdom", + "overview": "17-year-old Joshua \"J\" Cody moves in with his freewheeling relatives in their Southern California beach town after his mother dies of a heroin overdose. Headed by boot-tough matriarch Janine \"Smurf\" Cody and her right-hand Baz, who runs the business and calls the shots, the clan also consists of Pope, the oldest and most dangerous of the Cody boys; Craig, the tough and fearless middle son; and Deran, the troubled, suspicious \"baby\" of the family.", + "posterPath": "/rzvdKrnSRKPFI0pgqMQknDPpRC9.jpg", + "backdropPath": "/qTFvZUtNwPz8laW5nYgy9FvKLGP.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-06-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 483, + "popularity": 14.5787 + }, + { + "id": 2085, + "title": "Courage the Cowardly Dog", + "originalTitle": "Courage the Cowardly Dog", + "overview": "The bizarre misadventures of a cowardly dog named Courage and his elderly owners in a farmhouse in Nowhere, Kansas.", + "posterPath": "/dzD8EWDvtg7rBCINu0RCH5EUejh.jpg", + "backdropPath": "/cFuk3BU0sid8dby05eyyBPtK4dD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10765, + 35, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Sci-Fi & Fantasy", + "Comedy", + "Kids" + ], + "releaseDate": "1999-11-12", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.187, + "voteCount": 1584, + "popularity": 14.5557 + }, + { + "id": 215803, + "title": "Batang Quiapo", + "originalTitle": "Batang Quiapo", + "overview": "A young man rises to be one of the biggest outlaws in the neighborhood while he navigates his way in life to survive in Quiapo. Hoping to earn the affection of his parents, his feat draws him closer to the truth about his identity.", + "posterPath": "/9McqS8mgMf5NJCAKZIY6J1oOl8y.jpg", + "backdropPath": "/1Xm0WqoT0DjZm5JdG2V6YFabrOz.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 35 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2023-02-13", + "releaseYear": "2023", + "originalLanguage": "tl", + "voteAverage": 6.9, + "voteCount": 108, + "popularity": 14.5315 + }, + { + "id": 4582, + "title": "Ironside", + "originalTitle": "Ironside", + "overview": "When an assassin's bullet confines him to a wheelchair for life ending his career as Chief of Detectives, Robert T. Ironside becomes a consultant to the police department. Detective Sergeant Ed Brown and policewoman Eve Whitfield join with him to crack varied and fascinating cases. Ex-con Mark Sanger is employed by the chief as home help but eventually becomes a fully fledged member of the team also. Officer Whitfield leaves after 4 years service, and is replaced by Officer Fran Belding.", + "posterPath": "/Fu9Sv0pQ0s89uWwwXcaG0kiNW7.jpg", + "backdropPath": "/7lYBvjfgrguOUgnS9NrpysHtaCq.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1967-03-28", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 65, + "popularity": 14.5031 + }, + { + "id": 61511, + "title": "Father Brown", + "originalTitle": "Father Brown", + "overview": "Father Brown is based on G. K. Chesterton's detective stories about a Catholic priest who doubles as an amateur detective in order to try and solve mysteries.", + "posterPath": "/u8LUC3O1hiEDKP2SFZK68iYqMzl.jpg", + "backdropPath": "/eesuJC91i5MPGOZvEtoa11cPqe5.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2013-01-14", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.617, + "voteCount": 124, + "popularity": 14.4966 + }, + { + "id": 79481, + "title": "Fights Break Sphere", + "originalTitle": "斗破苍穹", + "overview": "In a land where no magic is present. A land where the strong make the rules and weak have to obey. A land filled with alluring treasures and beauty, yet also filled with unforeseen danger. Three years ago, Xiao Yan, who had shown talents none had seen in decades, suddenly lost everything. His powers, his reputation, and his promise to his mother. What sorcery has caused him to lose all of his powers? And why has his fiancee suddenly shown up?", + "posterPath": "/lT9pZfrFk8PgdzsQ7QzpCdiCfFF.jpg", + "backdropPath": "/3Wi5mEdCsvApYQZh34gMOHiOjvH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-07", + "releaseYear": "2017", + "originalLanguage": "zh", + "voteAverage": 8.3, + "voteCount": 55, + "popularity": 14.4663 + }, + { + "id": 90282, + "title": "The Morning Show", + "originalTitle": "The Morning Show", + "overview": "A behind-the-scenes look at the lives of the people who help America wake up in the morning, exploring the unique challenges faced by the men and women who carry out this daily televised ritual.", + "posterPath": "/y9x2R87yt2U616736NJrP0d56dt.jpg", + "backdropPath": "/uMsTtNaUEWOE2q64m8zthBIMgen.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.743, + "voteCount": 846, + "popularity": 14.443 + }, + { + "id": 2426, + "title": "Angel", + "originalTitle": "Angel", + "overview": "The vampire Angel, cursed with a soul, moves to Los Angeles and aids people with supernatural-related problems while questing for his own redemption. A spin-off from Buffy the Vampire Slayer.", + "posterPath": "/kEMZk8uVksoWScKA77x68qJEUfI.jpg", + "backdropPath": "/38g8BjnbRpxdTER5guYi6ANWsjk.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1999-10-05", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 960, + "popularity": 14.439 + }, + { + "id": 314, + "title": "Star Trek: Enterprise", + "originalTitle": "Star Trek: Enterprise", + "overview": "During the mid-22nd century, a century before Captain Kirk's five-year mission, Jonathan Archer captains the United Earth ship Enterprise during the early years of Starfleet, leading up to the Earth-Romulan War and the formation of the Federation.", + "posterPath": "/tsbBTABtNgu0ycsFpnIhiQ5woOM.jpg", + "backdropPath": "/gH5HQbMsSfPc0R41JYTefjB7klZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2001-09-26", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.553, + "voteCount": 891, + "popularity": 14.4292 + }, + { + "id": 67026, + "title": "Designated Survivor", + "originalTitle": "Designated Survivor", + "overview": "Tom Kirkman, a low-level cabinet member is suddenly appointed President of the United States after a catastrophic attack during the State of the Union kills everyone above him in the Presidential line of succession.", + "posterPath": "/5R125JAIh1N38pzHp2dRsBpOVNY.jpg", + "backdropPath": "/AhufsCP0kYIkpr0Iy2GrLSM1noL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2016-09-21", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.134, + "voteCount": 1061, + "popularity": 14.4215 + }, + { + "id": 76773, + "title": "Station 19", + "originalTitle": "Station 19", + "overview": "A group of heroic firefighters at Seattle Fire Station 19—from captain to newest recruit—risk their lives and hearts both in the line of duty and off the clock. These brave men and women are like family, literally and figuratively, and together they put their own lives in jeopardy as first responders to save the lives of others.", + "posterPath": "/3gs9wBsvv1GJ3EzLheh5yGuTQis.jpg", + "backdropPath": "/1vwIV2zQ88Dx6PwY7ZFZyamhYhV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2018-03-22", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.203, + "voteCount": 1519, + "popularity": 14.3855 + }, + { + "id": 4454, + "title": "Will & Grace", + "originalTitle": "Will & Grace", + "overview": "Will Truman and Grace Adler are best friends living in New York, and when Grace's engagement falls apart, she moves in with Will. Together, along with their friends, they go through the trials of dating, sex, relationships and their careers, butting heads at times but ultimately supporting one another while exchanging plenty of witty banter along the way.", + "posterPath": "/kTkWxh0e4Lzmn19KWQxzMdKE4NC.jpg", + "backdropPath": "/pIPMPMEZErCxTvQG9HDt4AsnAfn.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1998-09-21", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.844, + "voteCount": 532, + "popularity": 14.3726 + }, + { + "id": 512, + "title": "Third Watch", + "originalTitle": "Third Watch", + "overview": "The exploits of a group of men and women who serve the City of New York as police officers, firemen, and paramedics, all working the same fictional 55th precinct during the 3pm to 11pm shift - the 'Third Watch'.", + "posterPath": "/rWQmgNLdyZGIL6Xuo9ImL0Kh6wt.jpg", + "backdropPath": "/gQYwrYJUf8Vq8biFFqkHCj4QsOk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1999-09-23", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 223, + "popularity": 14.3511 + }, + { + "id": 31572, + "title": "Lupin the 3rd", + "originalTitle": "ルパン三世", + "overview": "Follow the exciting adventures of Arsene Lupin III, the grandson of the world's greatest thief, Arsene Lupin. Together with Daisuke Jigen, Goemon Ishikawa and his love interest Fujiko Mine, he carries out the greatest robberies of all time, all the while evading the control of Inspector Koichi Zenigata.", + "posterPath": "/aywOqgw5opNykCW4R8os1liPVnq.jpg", + "backdropPath": "/961SQWKlq6EQKN5lvXLR04YxSkw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1971-10-24", + "releaseYear": "1971", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 119, + "popularity": 14.3305 + }, + { + "id": 121, + "title": "Doctor Who", + "originalTitle": "Doctor Who", + "overview": "The adventures of The Doctor, a time-traveling humanoid alien known as a Time Lord. He explores the universe in his TARDIS, a sentient time-traveling spaceship. Its exterior appears as a blue British police box, which was a common sight in Britain in 1963 when the series first aired. Along with a succession of companions, The Doctor faces a variety of foes while working to save civilizations, help ordinary people, and right many wrongs.", + "posterPath": "/xinqAmYrZ1TEwowcQhgTkZVtVE0.jpg", + "backdropPath": "/8VWgyQjExeMgeg6Qzv6agduMU1A.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1963-11-23", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 677, + "popularity": 14.2932 + }, + { + "id": 79696, + "title": "Manifest", + "originalTitle": "Manifest", + "overview": "After landing from a turbulent but routine flight, the crew and passengers of Montego Air Flight 828 discover five years have passed in what seemed like a few hours. As their new realities become clear, a deeper mystery unfolds and some of the returned passengers soon realize they may be meant for something greater than they ever thought possible.", + "posterPath": "/eTemCphrglLKrXOsNRhYezHA7H9.jpg", + "backdropPath": "/iZu83GB1IM7VXL2X90m7iLHYUHU.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2018-09-24", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 1704, + "popularity": 14.2812 + }, + { + "id": 33001, + "title": "Haven", + "originalTitle": "Haven", + "overview": "FBI agent Audrey Parker arrives in the small town of Haven, Maine to solve a murder and soon discovers the town's many secrets—which also hold the key to unlocking the mysteries of her lost past.", + "posterPath": "/aceumwROgphFLSyOXFfijaoSZJE.jpg", + "backdropPath": "/jg3iq5KFCVrYHVZrPLqznKW2Fz0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 9648 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2010-07-09", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.544, + "voteCount": 487, + "popularity": 14.2728 + }, + { + "id": 107365, + "title": "Bel-Air", + "originalTitle": "Bel-Air", + "overview": "The journey of a book smart teen whose life is forever transformed when he moves from the streets of west Philadelphia to live with his relatives in one of LA’s wealthiest suburbs.", + "posterPath": "/j8tbXWXrL15RucA6H4khq87dEXa.jpg", + "backdropPath": "/zHdQ6yaqDf3OQO5uhr0auAgwK6O.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-02-13", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 261, + "popularity": 14.2637 + }, + { + "id": 3769, + "title": "Dynasty", + "originalTitle": "Dynasty", + "overview": "The saga of a wealthy Denver family in the oil business: Blake Carrington, the patriarch; Krystle, his former secretary and wife; his children: Adam, lost in childhood after a kidnapping; Fallon, pampered and spoiled; Steven, openly gay; and Amanda, hidden from him by his ex-wife, the conniving Alexis. Most of the show features the conflict between 2 large corporations, Blake's Denver Carrington and Alexis' ColbyCo.", + "posterPath": "/wxKEdlB4Zuq2THGqKYLnGKU37g9.jpg", + "backdropPath": "/Ao5XqVJj74hYWnnEG98MvRLBHdY.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1981-01-12", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 122, + "popularity": 14.2274 + }, + { + "id": 95676, + "title": "La Isla de las Tentaciones", + "originalTitle": "La isla de las tentaciones", + "overview": "Five couples at a critical moment in their relationship search for the answer to the big question: Are they made for each other? The participants will live apart but they will not be alone. They will live with ten single men and ten single women who want to find love. When this experience is over, they will have to decide how they want to return home: with their partner, alone or with their new love.", + "posterPath": "/5UNSRQc1ZCVmkDxi9llNqrUudYt.jpg", + "backdropPath": "/22cTK9FuzZE5WHv6ytPksen2ei1.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 7.3, + "voteCount": 15, + "popularity": 14.225 + }, + { + "id": 3382, + "title": "Charlie's Angels", + "originalTitle": "Charlie's Angels", + "overview": "Beautiful, intelligent, and ultra-sophisticated, Charlie's Angels are everything a man could dream of... and way more than they could ever handle! Receiving their orders via speaker phone from their never seen boss, Charlie, the Angels employ their incomparable sleuthing and combat skills, as well as their lethal feminine charm, to crack even the most seemingly insurmountable of cases.", + "posterPath": "/jxyI5V4LZ5rHDrXv7NpPh4EBCAo.jpg", + "backdropPath": "/jJVfPCkCbXrGOWtzfm1bhQg3HBq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759 + ], + "genres": [ + "Action & Adventure" + ], + "releaseDate": "1976-09-22", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 216, + "popularity": 14.2175 + }, + { + "id": 3750, + "title": "Nip/Tuck", + "originalTitle": "Nip/Tuck", + "overview": "Hotshot plastic surgeons Dr. Sean McNamara and Dr. Christian Troy experience full-blown midlife crises as they confront career, family and romance problems.", + "posterPath": "/v5uEYpNbjGmJC59xqvmPW58aSTl.jpg", + "backdropPath": "/6FrVFsxsXujg7GJiBy1sw0Fdnji.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-07-22", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 504, + "popularity": 14.2002 + }, + { + "id": 85937, + "title": "Demon Slayer: Kimetsu no Yaiba", + "originalTitle": "鬼滅の刃", + "overview": "After a demon attack leaves his family slain and his sister cursed, Tanjiro embarks upon a perilous journey to find a cure and avenge those he's lost.", + "posterPath": "/xUfRZu2mi8jH6SzQEJGP6tjBuYj.jpg", + "backdropPath": "/3GQKYh6Trm8pxd2AypovoYQf4Ay.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.639, + "voteCount": 6985, + "popularity": 14.1938 + }, + { + "id": 80411, + "title": "Daydreamer", + "originalTitle": "Erkenci Kuş", + "overview": "Sanem, a young girl with aspirations of becoming a writer, is forced by her parents to choose between an arranged marriage and finding a proper job. Rushing into a new job at an advertising company, she soon falls for her boss, Can.", + "posterPath": "/6OKMA1gxATeO6JmKB1JOs6wEfqY.jpg", + "backdropPath": "/re0P7crcflI4KgUPWNseeo4uJWi.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10766 + ], + "genres": [ + "Drama", + "Comedy", + "Soap" + ], + "releaseDate": "2018-06-26", + "releaseYear": "2018", + "originalLanguage": "tr", + "voteAverage": 8, + "voteCount": 96, + "popularity": 14.1528 + }, + { + "id": 6357, + "title": "The Twilight Zone", + "originalTitle": "The Twilight Zone", + "overview": "An anthology series containing drama, psychological thriller, fantasy, science fiction, suspense, and/or horror, often concluding with a macabre or unexpected twist.", + "posterPath": "/7uY4pCOxbEdv4M8jTE4uMPVoSIW.jpg", + "backdropPath": "/k4MJtsQKPyKD7nKtROFVMF4K4Lu.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "1959-10-02", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 8.466, + "voteCount": 970, + "popularity": 14.1524 + }, + { + "id": 1514, + "title": "The One Show", + "originalTitle": "The One Show", + "overview": "A topical magazine-style daily television programme broadcast live on BBC One.", + "posterPath": "/7QpzCej3Lwrsnx5A8FePYsUCIzf.jpg", + "backdropPath": "/69TLqW1BeyP3bAPf18GpGqjTb00.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2006-08-14", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 30, + "popularity": 14.1324 + }, + { + "id": 135157, + "title": "Alchemy of Souls", + "originalTitle": "환혼", + "overview": "A powerful sorceress in a blind woman's body encounters a man from a prestigious family, who wants her help to change his destiny.", + "posterPath": "/q2IiPRSXPOZ6qVRj36WRAYEQyHs.jpg", + "backdropPath": "/iKIyTYNYsQB05EspmjrX468UTmL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759, + 9648 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2022-06-18", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.5, + "voteCount": 715, + "popularity": 14.1134 + }, + { + "id": 68073, + "title": "The Loud House", + "originalTitle": "The Loud House", + "overview": "Welcome to the Loud House, where life can get pretty crazy. One boy, TEN girls?! Lincoln Loud wouldn’t change it for the world!", + "posterPath": "/v0xMCeZIkgBUQtiije0IDc8ReHr.jpg", + "backdropPath": "/36iVELhma9MawHkdMDPNRX8onEu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids", + "Mystery" + ], + "releaseDate": "2016-05-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 548, + "popularity": 14.1127 + }, + { + "id": 258742, + "title": "All's Fair", + "originalTitle": "All's Fair", + "overview": "A team of female divorce attorneys leave a male-dominated firm to open their own powerhouse practice. Fierce, brilliant, and emotionally complicated, they navigate high-stakes breakups, scandalous secrets, and shifting allegiances—both in the courtroom and within their own ranks. In a world where money talks and love is a battleground, these women don't just play the game—they change it.", + "posterPath": "/akJ3gusmlRGvKoFzLgJxsIBL4W4.jpg", + "backdropPath": "/xhqklQEaJ7xqsqnwCJZu7hTmTIK.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-11-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.225, + "voteCount": 40, + "popularity": 14.1029 + }, + { + "id": 217837, + "title": "Zomvivor", + "originalTitle": "มหาลัยคลั่ง", + "overview": "When an apocalyptic virus that turns people into zombies ravages a city, a group of students take shelter in a school and fight to survive.", + "posterPath": "/zLLmQNnHdx5KAKZpIxL4pdy4Qb7.jpg", + "backdropPath": "/ke3Ctn0jZru8oys8wAsY5oDIDX4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2025-10-31", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 7.5, + "voteCount": 11, + "popularity": 14.0923 + }, + { + "id": 156640, + "title": "The Midwich Cuckoos", + "originalTitle": "The Midwich Cuckoos", + "overview": "A small fictional village in England is completely subdued by an alien presence for an entire day. Upon waking, it is discovered that numerous women in the town are pregnant.", + "posterPath": "/xfJtH6faQHUVxvKTdvMBys6I6j0.jpg", + "backdropPath": "/xvXoeyZEBQ7qXz2rJ6GSDXhOAGf.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 9648 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2022-06-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.733, + "voteCount": 75, + "popularity": 14.0905 + }, + { + "id": 11890, + "title": "Goede Tijden, Slechte Tijden", + "originalTitle": "Goede Tijden, Slechte Tijden", + "overview": "Goede tijden, slechte tijden, also known as GTST, is the longest-running Dutch soap opera, revolving around the lives of the families Alberts, Sanders, De Jong, Van Houten and Bouwhuis. It all takes place in the fictional town of Meerdijk.", + "posterPath": "/p1oXgtJ0q0wAcEp3tHA5DpiynxL.jpg", + "backdropPath": "/hlVfglhjnlCP5tp8hFvTQKQVaMp.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "1990-10-01", + "releaseYear": "1990", + "originalLanguage": "nl", + "voteAverage": 5.125, + "voteCount": 20, + "popularity": 14.0866 + }, + { + "id": 198182, + "title": "Throne of Seal", + "originalTitle": "神印王座", + "overview": "Six thousand years ago, the Demon God appeared and creatures were turned into demons. The mankind created six Temples to fight the demons. Long Haochen joins the Knights Temple. As he grows, an adventure unfolds. He wins the recognition of others and fights with the Six Temples against the demons for the sake of human beings. He sacrifices himself to protect the people. Could Long win the Throne of Seal and be granted the highest honor in the Knights' Temple? All remained to be revealed.", + "posterPath": "/ehRRWs1EfeYiX4ysLLapWeKG4Pq.jpg", + "backdropPath": "/lCyVptIB3CgO0ls9o0PvT50xshn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-28", + "releaseYear": "2022", + "originalLanguage": "zh", + "voteAverage": 8.8, + "voteCount": 26, + "popularity": 14.0494 + }, + { + "id": 76949, + "title": "La resistencia", + "originalTitle": "La resistencia", + "overview": "", + "posterPath": "/yFwkWTDUjLN0LQmidsUJWEViCmo.jpg", + "backdropPath": "/aG9lB7wVTeStYZ8eCQN0t7VVmW8.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2018-02-01", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 6, + "voteCount": 20, + "popularity": 14.0203 + }, + { + "id": 207332, + "title": "SAKAMOTO DAYS", + "originalTitle": "SAKAMOTO DAYS", + "overview": "Once the greatest hitman of all, Taro Sakamoto retired in the name of love. But when his past catches up, he must fight to protect his beloved family.", + "posterPath": "/wRpCqsJFyKNuh5FMegNPrhzp2NF.jpg", + "backdropPath": "/blSthAPRbEOJBowdxppeQqNPRh9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2025-01-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.08, + "voteCount": 270, + "popularity": 14.0183 + }, + { + "id": 39358, + "title": "Revenge", + "originalTitle": "Revenge", + "overview": "When Emily Thorne moves to the Hamptons, everyone wonders about the new girl, but she knows everything about them, including what they did to her family. Years ago, they took everything from her. Now, one by one, she's going to make them pay.", + "posterPath": "/qx7XytRgg1F03NN5BoK8jx3Cyft.jpg", + "backdropPath": "/xo5iR9QZ9pj8tiGFALs0Ven0HT4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2011-09-21", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.557, + "voteCount": 810, + "popularity": 14.0059 + }, + { + "id": 80240, + "title": "The Queen of Flow", + "originalTitle": "La Reina del Flow", + "overview": "After spending seventeen years in prison unfairly, a talented songwriter seeks revenge on the men who sank her and killed her family.", + "posterPath": "/fuVuDYrs8sxvEolnYr0wCSvtyTi.jpg", + "backdropPath": "/pnyT1foDmmXTsho2DfxN2ePI8ix.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-06-12", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 7.983, + "voteCount": 1500, + "popularity": 13.9951 + }, + { + "id": 709, + "title": "Robot Chicken", + "originalTitle": "Robot Chicken", + "overview": "A series of pop-culture parodies using stop-motion animation of toys, action figures and dolls. The title character was an ordinary chicken until he was run down by a car and subsequently brought back to life in cyborg form by mad scientist Fritz Huhnmorder, who tortures Robot Chicken by forcing him to watch a random selection of TV shows, the sketches that make up the body of each episode.", + "posterPath": "/lMZv3mJC9QRolgzflM3ajtB3o2U.jpg", + "backdropPath": "/5qO7uuI0Vycy4CUYCixlUdyCXGM.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2005-02-20", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.66, + "voteCount": 532, + "popularity": 13.943 + }, + { + "id": 10160, + "title": "Big Brother", + "originalTitle": "Big Brother", + "overview": "American version of the reality game show which follows a group of HouseGuests living together 24 hours a day in the \"Big Brother\" house, isolated from the outside world but under constant surveillance with no privacy for three months.", + "posterPath": "/q2TMOpJITXP2sHd6CrBmO7FvYk1.jpg", + "backdropPath": "/oBUwRT7TbhTeFFTguY1s8RmmJpW.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2000-07-05", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 4.938, + "voteCount": 256, + "popularity": 13.8996 + }, + { + "id": 245648, + "title": "Billionaires' Bunker", + "originalTitle": "El refugio atómico", + "overview": "When a group of billionaires takes shelter in a luxury bunker, an old feud between two families resurfaces amid an unprecedented global conflict.", + "posterPath": "/tXoZOTIwzLIEDzRfOf9c482dBqB.jpg", + "backdropPath": "/cyqKNRLFKCN9Y28ln38hLMESGEj.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.5, + "voteCount": 100, + "popularity": 13.8953 + }, + { + "id": 2038, + "title": "Drake & Josh", + "originalTitle": "Drake & Josh", + "overview": "Fifteen-year-old Drake and Josh are schoolmates, but not close friends. Drake views Josh as weird and a bit of a goof. So, imagine Drake's shock when he finds out that this \"goof\" is about to become his new step-brother and roommate when his mother marries Josh's father. A spin off of The Amanda Show.", + "posterPath": "/udCvGctktHvvf8w51XyTPfcmzDa.jpg", + "backdropPath": "/tiDbvFzWZU2UzToqBazDf3hDe7S.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2004-01-11", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.351, + "voteCount": 1910, + "popularity": 13.8743 + }, + { + "id": 74204, + "title": "Big Mouth", + "originalTitle": "Big Mouth", + "overview": "Teenage friends find their lives upended by the wonders and horrors of puberty in this edgy comedy from real-life pals Nick Kroll and Andrew Goldberg.", + "posterPath": "/1Zio9w1tAd3r5Gu4d9AzTSx2hnT.jpg", + "backdropPath": "/uM6WJodeCyTp7h7NhE4rgd0RbRZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2017-09-29", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.648, + "voteCount": 1166, + "popularity": 13.866 + }, + { + "id": 30048, + "title": "Tony Awards", + "originalTitle": "Tony Awards", + "overview": "The Antoinette Perry Award for Excellence in Theatre, more commonly known as a Tony Award, recognizes achievement in live Broadway theatre. The awards are presented by the American Theatre Wing and The Broadway League at an annual ceremony in New York City. The awards are given for Broadway productions and performances, and an award is given for regional theatre.", + "posterPath": "/6pxoHfywO6bFDOQa9bmWZ1hyKBt.jpg", + "backdropPath": "/43v7fFaHiDjSosdNLM1ytgXkeSe.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "1956-04-01", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 12, + "popularity": 13.851 + }, + { + "id": 123249, + "title": "My Dress-Up Darling", + "originalTitle": "その着せ替え人形は恋をする", + "overview": "High schooler Wakana Gojo wants to become a kashirashi—a master craftsman who makes traditional Japanese Hina dolls. Though he's gung-ho about the craft, he knows nothing about the latest trends, and has a hard time fitting in with his class. The popular kids—especially one girl, Marin Kitagawa—seem like they live in a completely different world. That all changes one day, when she shares an unexpected secret with him, and their completely different worlds collide.", + "posterPath": "/A6mxBwvvv63JXZm3xXKv4SugE0L.jpg", + "backdropPath": "/gWPK2RIVJ6i3myf7Xdw8DqlznT8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2022-01-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.442, + "voteCount": 826, + "popularity": 13.8424 + }, + { + "id": 10980, + "title": "Have Gun, Will Travel", + "originalTitle": "Have Gun, Will Travel", + "overview": "Have Gun – Will Travel is an American Western television series that aired on CBS from 1957 through 1963. It was rated number three or number four in the Nielsen ratings every year of its first four seasons. It was one of the few television shows to spawn a successful radio version. The radio series debuted November 23, 1958.\n\nThe television show is presently shown on the Encore-Western channel.\n\nHave Gun – Will Travel was created by Sam Rolfe and Herb Meadow and produced by Frank Pierson, Don Ingalls, Robert Sparks, and Julian Claman. There were 225 episodes of the TV series, 24 written by Gene Roddenberry. Other contributors included Bruce Geller, Harry Julian Fink, Don Brinkley and Irving Wallace. Andrew McLaglen directed 101 episodes and 19 were directed by series star Richard Boone.", + "posterPath": "/6aJRq7FGs2axLOdZNJ2G4IOQtMx.jpg", + "backdropPath": "/7z1QYCB1cu06u3oJwIupRlZ8SrX.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 10759, + 18 + ], + "genres": [ + "Western", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1957-09-14", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 7.274, + "voteCount": 42, + "popularity": 13.8352 + }, + { + "id": 67915, + "title": "Goblin", + "originalTitle": "쓸쓸하고 찬란하神-도깨비", + "overview": "In his quest for a bride to break his immortal curse, a 939-year-old guardian of souls meets a grim reaper and a sprightly student with a tragic past.", + "posterPath": "/sPkxHNw5BFvuCFGWw825TS7n6X3.jpg", + "backdropPath": "/smSbK5cd8T9XHcxEUcems23BDEF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 35 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2016-12-02", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 8.598, + "voteCount": 2993, + "popularity": 13.8251 + }, + { + "id": 99466, + "title": "Yarichin Bitch Club", + "originalTitle": "ヤリチン☆ビッチ部", + "overview": "First-year Toono transfers from Tokyo to the all-boys boarding school deep in the mountains, \"Mori Moori Private School.\" The friendly Yaguchi who calls out to him becomes his only friend, but his dislike of sports makes him join the most laid-back looking photography club instead of Yaguchi's soccer club. However, the photography club is in name only and is actually nicknamed the \"Yarichin Bitch Club,\" filled with colorful seniors. In contrast to the troubled Toono, Kajima, who joined the club at the same time, is completely unphased and even slips a confession to Toono into the confusion. Toono himself thinks Yaguchi is cute, but Yaguchi finds himself blushing around Kajima and stuff happens. Furthermore, complications arise between the seniors…", + "posterPath": "/lz9FZVmb4zoy6L9of47atKz8uAE.jpg", + "backdropPath": "/lTGTQ02Bci6SIncqE1aljuy3NK7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-09-21", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 43, + "popularity": 13.8244 + }, + { + "id": 70785, + "title": "Anne with an E", + "originalTitle": "Anne with an E", + "overview": "A coming-of-age story about an outsider who, against all odds and numerous challenges, fights for love and acceptance and for her place in the world. The series centers on a young orphaned girl in the late 1890s, who, after an abusive childhood spent in orphanages and the homes of strangers, is mistakenly sent to live with an elderly woman and her aging brother. Over time, 13-year-old Anne will transform their lives and eventually the small town in which they live with her unique spirit, fierce intellect and brilliant imagination.", + "posterPath": "/6P6tXhjT5tK3qOXzxF9OMLlG7iz.jpg", + "backdropPath": "/ywQtHG17LZhAFZyZtBflhtFMtJ7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2017-03-19", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.655, + "voteCount": 4836, + "popularity": 13.8182 + }, + { + "id": 1972, + "title": "Battlestar Galactica", + "originalTitle": "Battlestar Galactica", + "overview": "When an old enemy, the Cylons, resurface and obliterate the 12 colonies, the crew of the aged Galactica protect a small civilian fleet - the last of humanity - as they journey toward the fabled 13th colony, Earth.", + "posterPath": "/99PJSbcO2LeM10uOGWeFihNp77j.jpg", + "backdropPath": "/sEjNaoENrqIZONKNn1iLFB0Us9k.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2004-10-18", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.208, + "voteCount": 1681, + "popularity": 13.8076 + }, + { + "id": 900, + "title": "Skins", + "originalTitle": "Skins", + "overview": "Irreverent comedy drama which follows the messy lives, loves, delirious highs and inevitable lows of a group of raucous teenage friends in Bristol.", + "posterPath": "/yaDeFXW7Lzv6fqGymsUctt1a5fs.jpg", + "backdropPath": "/bm06ncZQxPSEVaoMe6Xt08ul0PG.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2007-01-25", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 8.14, + "voteCount": 1337, + "popularity": 13.7852 + }, + { + "id": 60694, + "title": "Last Week Tonight with John Oliver", + "originalTitle": "Last Week Tonight with John Oliver", + "overview": "A half-hour satirical look at the week in news, politics and current events.", + "posterPath": "/b12eM3FXNjN7yM7XYTIdmeQRud9.jpg", + "backdropPath": "/7ZgTIEbvm72a7nkNy2eWnkFNmdj.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35, + 10763 + ], + "genres": [ + "Talk", + "Comedy", + "News" + ], + "releaseDate": "2014-04-27", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.811, + "voteCount": 753, + "popularity": 13.7817 + }, + { + "id": 114868, + "title": "Record of Ragnarok", + "originalTitle": "終末のワルキューレ", + "overview": "Before eradicating humankind from the world, the gods give them one last chance to prove themselves worthy of survival. Let the Ragnarok battles begin.", + "posterPath": "/kTs2WNZOukpWdNhoRlH94pSJ3xf.jpg", + "backdropPath": "/6pSkqecoNsxSA467Z28uhVDrjXo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-06-17", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.433, + "voteCount": 1753, + "popularity": 13.7538 + }, + { + "id": 71494, + "title": "Golden Globe Awards", + "originalTitle": "Golden Globe Awards", + "overview": "An annual awards ceremony recognizing excellence in film and television, both domestic and foreign, bestowed by the Hollywood Foreign Press Association.", + "posterPath": "/gYG3SHNKui9ps9RfN4u9MMwpy10.jpg", + "backdropPath": "/jiSlSDL0PZsd3DeW9832lk7eBsE.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "1944-01-20", + "releaseYear": "1944", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 17, + "popularity": 13.7229 + }, + { + "id": 4660, + "title": "Adam-12", + "originalTitle": "Adam-12", + "overview": "Adam-12 is a television police drama that followed two police officers of the Los Angeles Police Department, Pete Malloy and Jim Reed, as they patrolled the streets of Los Angeles in their patrol unit, 1-Adam-12.", + "posterPath": "/jXlPZz943xMbqfp2Ne1OvOWaPo.jpg", + "backdropPath": "/dM6fTSA55edFYGPTc7VOaaz9NdK.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1968-09-21", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 43, + "popularity": 13.7161 + }, + { + "id": 243875, + "title": "Georgie & Mandy's First Marriage", + "originalTitle": "Georgie & Mandy's First Marriage", + "overview": "Georgie and Mandy raise their young family in Texas while navigating the challenges of adulthood, parenting, and marriage.", + "posterPath": "/3z2mYFxUkzanb2eeIcVyfJq0G3q.jpg", + "backdropPath": "/pCr3YYJkkLt9fdGVD7I2Z1l6lzK.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-10-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.673, + "voteCount": 136, + "popularity": 13.698 + }, + { + "id": 7869, + "title": "The Penguins of Madagascar", + "originalTitle": "The Penguins of Madagascar", + "overview": "The Penguins of Madagascar is an American CGI animated television series airing on Nickelodeon. It stars nine characters from the DreamWorks Animation animated film Madagascar: The penguins Skipper, Kowalski, Private, and Rico; the lemurs King Julien, Maurice, and Mort; and Mason and Phil the chimpanzees. Characters new to the series include Marlene the otter and a zookeeper named Alice. It is the first Nicktoon produced with DreamWorks Animation.\n\nA pilot episode, \"Gone in a Flash\", aired as part of \"Superstuffed Nicktoons Weekend\" on November 29, 2008, and The Penguins of Madagascar became a regular series on March 28, 2009. The series premiere drew 6.1 million viewers, setting a new record as the most-watched premiere.\n\nAlthough the series occasionally alludes to the rest of the franchise, The Penguins of Madagascar does not take place at a precise time within it. McGrath, who is also the co-creator of the film characters, has said that the series takes place \"not specifically before or after the movie, I just wanted them all back at the zoo. I think of it as taking place in a parallel universe.\"", + "posterPath": "/jfBSIu9r8Kb03ic6FrTb6O5zuyU.jpg", + "backdropPath": "/k6a0Y4AyYJdW4HrnjcYtKx4pvwG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2008-11-28", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 406, + "popularity": 13.6898 + }, + { + "id": 65763, + "title": "New Looney Tunes", + "originalTitle": "New Looney Tunes", + "overview": "Wabbit is an animated series starring Bugs Bunny. The series features many other Looney Tunes characters including Wile E. Coyote, Yosemite Sam, and the Tasmanian Devil.", + "posterPath": "/AdROLFTm3nSnqcmkhPabqdRuETZ.jpg", + "backdropPath": "/h8tzpd1pqyKCu5V4lw3eUiO6L9Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2015-09-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 150, + "popularity": 13.6854 + }, + { + "id": 72649, + "title": "Hot Ones", + "originalTitle": "Hot Ones", + "overview": "The show with hot questions and even hotter wings invites a famous guest over to eat and then interviews them while they're struggling through the heat.", + "posterPath": "/4uudasFgKCVQFNGqfanD6wEGVS1.jpg", + "backdropPath": "/iNt4CmfX70UlqFG6Ixxnhto3IOA.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2015-03-12", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.152, + "voteCount": 69, + "popularity": 13.6796 + }, + { + "id": 127635, + "title": "Spidey and His Amazing Friends", + "originalTitle": "Spidey and His Amazing Friends", + "overview": "Follow Peter Parker, Gwen Stacy and Miles Morales and their adventures as the young heroes team up with Hulk, Ms. Marvel and Black Panther to defeat foes like Rhino, Doc Ock and Green Goblin and learn that teamwork is the best way to save the day.", + "posterPath": "/etO5jDS5WgR4Y1lTyXhQcilJ6u2.jpg", + "backdropPath": "/7CvmnHAVxhDbYE7jPp0PbKunqqs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2021-08-06", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 248, + "popularity": 13.6766 + }, + { + "id": 261615, + "title": "Envious", + "originalTitle": "Envidiosa", + "overview": "After a devastating breakup, Vicky, almost 40, embarks on a quest for new love, unaware it will lead her to a profound—and hilarious—self-discovery.", + "posterPath": "/qYw979lIT163wN2z2P6DHoVEftj.jpg", + "backdropPath": "/lQRjR1WGJPnqK6HEGv7k0RhG8Vy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-09-18", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.767, + "voteCount": 74, + "popularity": 13.6632 + }, + { + "id": 1871, + "title": "EastEnders", + "originalTitle": "EastEnders", + "overview": "The everyday lives of working-class residents of Albert Square, a traditional Victorian square of terrace houses surrounding a park in the East End of London's Walford borough.", + "posterPath": "/z4jgyI5TpoRZiJTNchkVkMrGQyz.jpg", + "backdropPath": "/hUz0UHWSVd6e1g3I6vT4shAsnoY.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 80 + ], + "genres": [ + "Soap", + "Drama", + "Crime" + ], + "releaseDate": "1985-02-19", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 4.128, + "voteCount": 218, + "popularity": 13.6368 + }, + { + "id": 62649, + "title": "Superstore", + "originalTitle": "Superstore", + "overview": "A hilarious workplace comedy about a unique family of employees at a super-sized mega store. From the bright-eyed newbies and the seen-it-all veterans to the clueless summer hires and the in-it-for-life managers, together they hilariously tackle the day-to-day grind of rabid bargain hunters, riot-causing sales and nap-worthy training sessions.", + "posterPath": "/2tpY5qIYwH85njvjI5BnH4VNA6p.jpg", + "backdropPath": "/gwy5pUl8EH1vROVWfEo1TAmqHNK.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-11-30", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.532, + "voteCount": 745, + "popularity": 13.6356 + }, + { + "id": 61056, + "title": "How to Get Away with Murder", + "originalTitle": "How to Get Away with Murder", + "overview": "A sexy, suspense-driven legal thriller about a group of ambitious law students and their brilliant, mysterious criminal defense professor. They become entangled in a murder plot and will shake the entire university and change the course of their lives.", + "posterPath": "/bJs8Y6T88NcgksxA8UaVl4YX8p8.jpg", + "backdropPath": "/rNlYsPO8oqZrxedntqqzfyPJNzq.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2014-09-25", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 1703, + "popularity": 13.5951 + }, + { + "id": 70672, + "title": "Men on a Mission", + "originalTitle": "아는 형님", + "overview": "Male celebs play make-believe as high schoolers, welcoming star transfer students every week and engaging in battles of witty humor and slapstick.", + "posterPath": "/2jIi55JtYKJTL1km8qHMuUilOWo.jpg", + "backdropPath": "/a8a8z4aJr40zYgRMfmSESppX2eO.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2015-12-05", + "releaseYear": "2015", + "originalLanguage": "ko", + "voteAverage": 7.5, + "voteCount": 40, + "popularity": 13.5909 + }, + { + "id": 4349, + "title": "Melrose Place", + "originalTitle": "Melrose Place", + "overview": "Follow the lives of a group of young adults living in a brownstone apartment complex on Melrose Place, in Los Angeles, California.", + "posterPath": "/78gp8RcQEg19BzMkUm2ifMgFITb.jpg", + "backdropPath": "/1SUer2UeRe4LFxil6LJo60KoQrX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1992-07-08", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.893, + "voteCount": 168, + "popularity": 13.5901 + }, + { + "id": 21755, + "title": "Pawn Stars", + "originalTitle": "Pawn Stars", + "overview": "Go inside the colorful world of the pawn business. At the Gold & Silver Pawn Shop on the outskirts of Las Vegas, generations of the Harrison family run the family business, and there’s clashing and camaraderie every step of the way.", + "posterPath": "/8GeBQWQOTu7yLwNfCV6iWyL8xNf.jpg", + "backdropPath": "/dZluxNTlzqZWNb6UsUH3f7nUzGn.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2009-07-19", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.104, + "voteCount": 289, + "popularity": 13.5785 + }, + { + "id": 233347, + "title": "Study Group", + "originalTitle": "스터디그룹", + "overview": "Nicknamed the \"school for future criminals,\" Yuseong Technical High School isn't exactly the ideal place to study. A rarity among his peers, Ga-min is a student with just one goal: to get into university. At a school where it's every man for himself, he is rejected from countless study groups before he decides to form his own. Will he be able to defeat the odds and achieve his dreams?", + "posterPath": "/1x3xfnXQpxVfiRXUTqzX4CxU8yf.jpg", + "backdropPath": "/uYi9bmJPBGC5tI2b6K4mdsUJivK.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2025-01-23", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.42, + "voteCount": 88, + "popularity": 13.5579 + }, + { + "id": 247168, + "title": "Chad Powers", + "originalTitle": "Chad Powers", + "overview": "Eight years after an unforgivable mistake nukes his promising college football career, hotshot quarterback Russ Holliday tries to resurrect his dreams by disguising himself as Chad Powers - a talented oddball who walks on to the struggling South Georgia Catfish.", + "posterPath": "/wgMS8irQKfMrR6mJhKtK6vbxDTC.jpg", + "backdropPath": "/lu4HO4kJx2aZzVgjoRcF9vYPaFI.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-09-30", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 52, + "popularity": 13.5474 + }, + { + "id": 244808, + "title": "Nukitashi the Animation", + "originalTitle": "ぬきたし THE ANIMATION", + "overview": "On Seiran Island, secret society NLNS is united by Junnosuke Tachibana, who is determined to crush a law. They have found a benefactor, an unknown rich man, who offers them a secret base and cash. Their mission is to locate a mysterious girl and stop the law, keeping the SHO off their trail.", + "posterPath": "/y9kuMGKMMtNgpqcHlgZlL4geEtn.jpg", + "backdropPath": "/sKlF9YrVu84DYMDAUZEZDCvDxK2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-19", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 26, + "popularity": 13.5168 + }, + { + "id": 4613, + "title": "Band of Brothers", + "originalTitle": "Band of Brothers", + "overview": "Drawn from interviews with survivors of Easy Company, as well as their journals and letters, Band of Brothers chronicles the experiences of these men from paratrooper training in Georgia through the end of the war. As an elite rifle company parachuting into Normandy early on D-Day morning, participants in the Battle of the Bulge, and witness to the horrors of war, the men of Easy knew extraordinary bravery and extraordinary fear - and became the stuff of legend. Based on Stephen E. Ambrose's acclaimed book of the same name.", + "posterPath": "/8JMXquNmdMUy2n2RgW8gfOM0O3l.jpg", + "backdropPath": "/2yDV0xLyqW88dn5qE7YCRnoYmfy.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2001-09-09", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.58, + "voteCount": 3933, + "popularity": 13.4989 + }, + { + "id": 63401, + "title": "We Bare Bears", + "originalTitle": "We Bare Bears", + "overview": "Three brother bears awkwardly attempt to find their place in civilized society, whether they're looking for food, trying to make human friends, or scheming to become famous on the internet. Grizzly, Panda and Ice Bear stack atop one another when they leave their cave and explore the hipster environs of the San Francisco Bay Area, and it's clear the siblings have a lot to learn about a technologically driven world. By their side on many adventures are best friend Chloe (the only human character in the cast), fame-obsessed panda Nom Nom, and Charlie, aka Bigfoot.", + "posterPath": "/3xWzlLZ0kAD6SkVZTekFM9lxZyP.jpg", + "backdropPath": "/sgR3BjAOcpyxV9Rq7l1BGm3fXQ8.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 16, + 10762 + ], + "genres": [ + "Family", + "Comedy", + "Animation", + "Kids" + ], + "releaseDate": "2015-08-24", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 1821, + "popularity": 13.4952 + }, + { + "id": 32895, + "title": "Rizzoli & Isles", + "originalTitle": "Rizzoli & Isles", + "overview": "Perhaps their strikingly different personalities make the relationship between detective Jane Rizzoli and medical examiner Maura Isles so effective. Jane, the only female cop in Boston's homicide division, is tough, relentless and rarely lets her guard down, while the impeccably dressed Maura displays a sometimes icy temperament — she is, after all, more comfortable among the dead than the living. Together, the best friends have forged a quirky and supportive relationship; they drop the protective shield in each other's company, and combine their expertise to solve Boston's most complex cases.", + "posterPath": "/kuCNyr4XVQ4MZWiNjVS6DypE988.jpg", + "backdropPath": "/suL7cJdywRnTmsT1RNjE78iJTsG.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Mystery", + "Comedy" + ], + "releaseDate": "2010-07-12", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.904, + "voteCount": 459, + "popularity": 13.4921 + }, + { + "id": 21220, + "title": "Father Matteo", + "originalTitle": "Don Matteo", + "overview": "Don Matteo is a thoroughly ordinary Catholic priest with an extraordinary ability to read people and solve crimes. He’s a parish priest who never met an unjustly accused person he didn’t want to help.", + "posterPath": "/eh5ldhghLRmwkkWyuJZDXJiptcP.jpg", + "backdropPath": "/8fvrcC2yv9ewbIcYvDMy6Dd3qqZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 9648, + 80, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Mystery", + "Crime", + "Family" + ], + "releaseDate": "2000-01-07", + "releaseYear": "2000", + "originalLanguage": "it", + "voteAverage": 6.3, + "voteCount": 67, + "popularity": 13.4492 + }, + { + "id": 50821, + "title": "Among Friends", + "originalTitle": "Barátok közt", + "overview": "Miklós introduces viewers into the world of Money and Charm.", + "posterPath": "/kBBbSgNchtMvsgD6z1oI1RRluHP.jpg", + "backdropPath": "/hHMWfDlqKisD5zVcZfz3KEw5U3v.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "1998-10-26", + "releaseYear": "1998", + "originalLanguage": "hu", + "voteAverage": 3.4, + "voteCount": 19, + "popularity": 13.4434 + }, + { + "id": 19758, + "title": "SOKO Leipzig", + "originalTitle": "SOKO Leipzig", + "overview": "SOKO Leipzig is a German police procedural television programme, a spin-off of the earlier German police programme SOKO 5113. It was first broadcast on 31 January 2001, on German television channel ZDF. On 12 November 2008, the first part of a two-part crossover between SOKO Leipzig and British police procedural The Bill was aired, with the same version being shown on both ZDF and British television channel ITV1.", + "posterPath": "/1fiWiLPZnFfIF6s6dcEblG7u749.jpg", + "backdropPath": "/89C9BvL14K26Dr5rTj0pXJVTUcH.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2001-01-31", + "releaseYear": "2001", + "originalLanguage": "de", + "voteAverage": 5.944, + "voteCount": 18, + "popularity": 13.4306 + }, + { + "id": 210733, + "title": "Hidden Love", + "originalTitle": "偷偷藏不住", + "overview": "Since high school, Sang Zhi has had a crush on Duan Jiaxu. When fate brings them together again, they find a chance to embark on a sweet relationship.", + "posterPath": "/riGzESa9N9toumP9OhMmg0QvFPD.jpg", + "backdropPath": "/wQlJJJ50gKphCci0SmoetUXmJN4.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-06-20", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.512, + "voteCount": 209, + "popularity": 13.4281 + }, + { + "id": 3626, + "title": "American Idol", + "originalTitle": "American Idol", + "overview": "Each year, hopeful singers from all over the country audition to be part of one of the biggest shows in American television history. Who will become the new American Idol?", + "posterPath": "/iIlKBCqv5YkjQIWj7hYcFndxoLp.jpg", + "backdropPath": "/jB66SWgijY4bU8J4msxj768U9Qe.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2002-06-11", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.102, + "voteCount": 171, + "popularity": 13.4209 + }, + { + "id": 49009, + "title": "The Goldbergs", + "originalTitle": "The Goldbergs", + "overview": "Before there were parenting blogs, trophies for showing up, and peanut allergies, there was a simpler time called the '80s. For geeky 11-year old Adam these were his wonder years and he faced them armed with a video camera to capture all the crazy. The Goldbergs are a loving family like any other, just with a lot more yelling.", + "posterPath": "/3aQipkhSCHUmaHjImqEqT80k6GP.jpg", + "backdropPath": "/vr2pasVUtMvpsWW8BhFBPbYiOl3.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2013-09-24", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.465, + "voteCount": 357, + "popularity": 13.4154 + }, + { + "id": 3322, + "title": "Oz", + "originalTitle": "Oz", + "overview": "The daily lives of prisoners in Emerald City, an experimental unit of the Oswald Maximum Security Prison where ingroups - Muslims, Latinos, Italians, Aryans - stick close to their mutual friends and terrorize their mutual enemies.", + "posterPath": "/CwqqwYWnMOLUwsqAqveHNnwTGC.jpg", + "backdropPath": "/7C7OEM3NFRraDDnOaUHgDPou3NG.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1997-07-12", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 795, + "popularity": 13.4129 + }, + { + "id": 93, + "title": "Falcon Crest", + "originalTitle": "Falcon Crest", + "overview": "Falcon Crest is an American primetime television soap opera which aired on the CBS network for nine seasons, from December 4, 1981 to May 17, 1990. A total of 227 episodes were produced.\n\nThe series revolves around the feuding factions of the wealthy Gioberti/Channing family in the Californian wine industry. Jane Wyman starred as Angela Channing, the tyrannical matriarch of the Falcon Crest Winery, alongside Robert Foxworth as Chase Gioberti, Angela's nephew who returns to Falcon Crest following the death of his father. The series was set in the fictitious Tuscany Valley northeast of San Francisco.", + "posterPath": "/rgcKhBsHwAlPpeJG9yKip5oWVo9.jpg", + "backdropPath": "/3OX2ysmkK61hJsm4AfjTPtrVgMY.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1981-12-04", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 54, + "popularity": 13.3696 + }, + { + "id": 131927, + "title": "Dexter: New Blood", + "originalTitle": "Dexter: New Blood", + "overview": "10 years after Dexter went missing in the eye of Hurricane Laura, we find him living under an assumed name in the small town of Iron Lake, New York. Dexter may be embracing his new life, but in the wake of unexpected events in this close-knit community, his Dark Passenger beckons.", + "posterPath": "/9EBKgrFIsCFSV1RZKWhYUdbtGiv.jpg", + "backdropPath": "/e6v08948EZVvLrx0sWpmglguY9e.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2021-11-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.941, + "voteCount": 1443, + "popularity": 13.361 + }, + { + "id": 69158, + "title": "The Good Fight", + "originalTitle": "The Good Fight", + "overview": "Picking up one year after the events of the final broadcast episode of \"The Good Wife\", an enormous financial scam has destroyed the reputation of a young lawyer, Maia Rindell, while simultaneously wiping out her mentor and godmother Diane Lockhart's savings. Forced out of her law firm, now called \"Lockhart, Deckler, Gussman, Lee, Lyman, Gilbert, Lurie, Kagan, Tannebaum & Associates\", they join Lucca Quinn at one of Chicago's preeminent law firms.", + "posterPath": "/8qoOHOfbUbrCcHZnDVxGcwOWinV.jpg", + "backdropPath": "/nz6vpYyN1pEwBYeoAVIu2316d0z.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-02-19", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.537, + "voteCount": 322, + "popularity": 13.3598 + }, + { + "id": 259909, + "title": "Dexter: Resurrection", + "originalTitle": "Dexter: Resurrection", + "overview": "Dexter Morgan awakens from a coma to find Harrison gone without a trace. Realizing the weight of what he put his son through, Dexter sets out for New York City, determined to find him and make things right. But closure won't come easy. When Miami Metro's Angel Batista arrives with questions, Dexter realizes his past is catching up to him fast. As father and son navigate their own darkness in the city that never sleeps, they soon find themselves deeper than they ever imagined - and that the only way out is together.", + "posterPath": "/hIawSocuwqgNeRf3JuKuxgMHmSC.jpg", + "backdropPath": "/8J0SjKToFBbg8dKpocVOCsrC77C.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2025-07-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.532, + "voteCount": 358, + "popularity": 13.3389 + }, + { + "id": 578, + "title": "Numb3rs", + "originalTitle": "Numb3rs", + "overview": "Inspired by actual cases and experiences, Numb3rs depicts the confluence of police work and mathematics in solving crime as an FBI agent recruits his mathematical genius brother to help solve a wide range of challenging crimes in Los Angeles from a very different perspective.", + "posterPath": "/wOzbxJmpccPA5MYvBSGbor3WKh3.jpg", + "backdropPath": "/oYwaOeQmE0tuBKy8kt43NFNI4bE.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2005-01-23", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 409, + "popularity": 13.333 + }, + { + "id": 79, + "title": "Dora the Explorer", + "originalTitle": "Dora the Explorer", + "overview": "A young girl named Dora goes on adventures with her red boot-wearing monkey named Boots.", + "posterPath": "/iaJNOSpEQgU4yePsbcC6yxneRNF.jpg", + "backdropPath": "/uEPbIAmsZENHL5B50WNYSyItFjf.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10751, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2000-08-14", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 331, + "popularity": 13.3312 + }, + { + "id": 5917, + "title": "90210", + "originalTitle": "90210", + "overview": "90210 revolves around several students at the fictional West Beverly Hills High School, including new Beverly Hills residents Annie Wilson and Dixon Wilson. Their father, Harry Wilson, has returned from Kansas to his Beverly Hills childhood home with his family to care for his mother, former television and theater actress Tabitha Wilson, who has a drinking problem and clashes with his wife Debbie Wilson. Annie and Dixon struggle to adjust to their new lives while making friends and yet adhering to their parents' wishes.", + "posterPath": "/6uy8Le8X8qqvc5X7pSFn3BJA69M.jpg", + "backdropPath": "/d80flL9gjiYBhK7lqApwrRFGGCb.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-09-02", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.759, + "voteCount": 203, + "popularity": 13.3288 + }, + { + "id": 3845, + "title": "Happy Days", + "originalTitle": "Happy Days", + "overview": "In 1950s Milwaukee the Cunningham family must contend with Fonzie, a motorcycle riding Casanova.", + "posterPath": "/sepIwNPCEhkKvFOQSjXK6tekkjR.jpg", + "backdropPath": "/lyAx1XlcrPaenfwvSYnOl4h4WMk.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1974-01-15", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 287, + "popularity": 13.3021 + }, + { + "id": 82428, + "title": "All American", + "originalTitle": "All American", + "overview": "When a rising high school football player from South Central L.A. is recruited to play for Beverly Hills High, the wins, losses and struggles of two families from vastly different worlds - Compton and Beverly Hills - begin to collide. Inspired by the life of pro football player Spencer Paysinger.", + "posterPath": "/c8FTtjQcQfqSI0McmVc1OOOf7Z7.jpg", + "backdropPath": "/6npymlbLc0SMqqktCpu7X7K4eJy.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-10-10", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.151, + "voteCount": 474, + "popularity": 13.2918 + }, + { + "id": 202555, + "title": "Daredevil: Born Again", + "originalTitle": "Daredevil: Born Again", + "overview": "Matt Murdock, a blind lawyer with heightened abilities, is fighting for justice through his bustling law firm, while former mob boss Wilson Fisk pursues his own political endeavors in New York. When their past identities begin to emerge, both men find themselves on an inevitable collision course.", + "posterPath": "/9lLuhV703HGCbnz6FxnqCwIwzAZ.jpg", + "backdropPath": "/qHCpG49qxs4owLgmhh0T62ErUZv.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-03-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.974, + "voteCount": 589, + "popularity": 13.2906 + }, + { + "id": 127235, + "title": "Invasion", + "originalTitle": "Invasion", + "overview": "Earth is visited by an alien species that threatens humanity's existence. Events unfold in real time through the eyes of five ordinary people across the globe as they struggle to make sense of the chaos unraveling around them.", + "posterPath": "/1PdNB3rYTcf8VXc8rcmZ0SeYxSq.jpg", + "backdropPath": "/i9IEOD1Li1y89xRHKH9kiE8dt9z.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2021-10-21", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 1111, + "popularity": 13.2759 + }, + { + "id": 60866, + "title": "iZombie", + "originalTitle": "iZombie", + "overview": "A medical student who becomes a zombie joins a Coroner's Office in order to gain access to the brains she must reluctantly eat so that she can maintain her humanity. But every brain she eats, she also inherits their memories and must now solve their deaths with help from the Medical examiner and a police detective.", + "posterPath": "/q4nqNwAhzVR7JuYctrWJvUWz3xR.jpg", + "backdropPath": "/tCjXy1iCsr2BVlNczafnkZ40LPn.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10765 + ], + "genres": [ + "Drama", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-03-17", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.793, + "voteCount": 2880, + "popularity": 13.2739 + }, + { + "id": 21762, + "title": "Parenthood", + "originalTitle": "Parenthood", + "overview": "The trials and tribulations of the very large, colorful and imperfect Braverman family.", + "posterPath": "/9KjKLJrrUI1sU9bNsQaQ5H8kTyY.jpg", + "backdropPath": "/72zLfNDaL8JpfLDwmQ2b8DPbeHc.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-03-02", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.463, + "voteCount": 163, + "popularity": 13.2618 + }, + { + "id": 4455, + "title": "Get Smart", + "originalTitle": "Get Smart", + "overview": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry, the show stars Don Adams, Barbara Feldon, and Edward Platt. Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau. Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\" This is the only Mel Brooks production to feature a laugh track.\n\nThe success of the show eventually spawned the follow-up films The Nude Bomb and Get Smart, Again!, as well as a 1995 revival series and a 2008 film remake. In 2010, TV Guide ranked Get Smart's opening title sequence at No. 2 on its list of TV's Top 10 Credits Sequences, as selected by readers.", + "posterPath": "/AqhPucVAvnocglq5WYXbh6t9wuE.jpg", + "backdropPath": "/6ahKNfvLGWYDlhUfSagJfClXkoi.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1965-09-18", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.928, + "voteCount": 416, + "popularity": 13.2423 + }, + { + "id": 947, + "title": "Cheyenne", + "originalTitle": "Cheyenne", + "overview": "Cheyenne Bodie was a big man, a former army scout who went west after the American Civil War and drifted from job to job, here a cowboy, there a lawman, and always a larger-than-life hero.\n\nCHEYENNE is an American western television series of 108 black-and-white episodes broadcast on ABC from 1955 to 1963. The show was the first hour-long western, and in fact the first hour-long dramatic series of any kind, with continuing characters, to last more than one season. It was also the first series to be made by a major Hollywood film studio which did not derive from its established film properties, and the first of a long chain of Warner Brothers original series produced by William T. Orr.", + "posterPath": "/osdglTGStAMbThkUsVJ0DRzvwrq.jpg", + "backdropPath": "/wvnAIBwDLdDHOj60HZFi9BBtxCZ.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1955-09-20", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 6.023, + "voteCount": 22, + "popularity": 13.2403 + }, + { + "id": 293613, + "title": "Physical: Asia", + "originalTitle": "피지컬: 아시아", + "overview": "Elite athletes from eight countries battle for national pride. After grueling tests of raw strength and endurance, only one flag can claim victory.", + "posterPath": "/osa3I6CuabnCEpNgFOvFMLLS7yP.jpg", + "backdropPath": "/823qOjKt0V0N9S6h2uoqu1IA15f.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2025-10-28", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.238, + "voteCount": 21, + "popularity": 13.2361 + }, + { + "id": 90462, + "title": "Chucky", + "originalTitle": "Chucky", + "overview": "After a vintage Chucky doll turns up at a suburban yard sale, an idyllic American town is thrown into chaos as a series of horrifying murders begin to expose the town’s hypocrisies and secrets. Meanwhile, the arrival of enemies — and allies — from Chucky’s past threatens to expose the truth behind the killings, as well as the demon doll’s untold origins.", + "posterPath": "/7KbhQpg6OV2o58SoulRbEtK9HYT.jpg", + "backdropPath": "/lyZmMTwpr6ZCXKA7lszpXcDwNOM.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 35, + 9648 + ], + "genres": [ + "Crime", + "Comedy", + "Mystery" + ], + "releaseDate": "2021-10-12", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.831, + "voteCount": 4130, + "popularity": 13.2231 + }, + { + "id": 1558, + "title": "Home Improvement", + "originalTitle": "Home Improvement", + "overview": "The daily trials and tribulations of handyman Tim Taylor, a TV show host raising three boys with help from his loyal co-host, domineering wife, and unseen neighbor.", + "posterPath": "/sa3J2ZXeg7TiziuXGyfz99HdYDS.jpg", + "backdropPath": "/w0s1EmnmgkBYMSqZIrYgbiRt3j6.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1991-09-17", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 674, + "popularity": 13.2053 + }, + { + "id": 30801, + "title": "2 Days and 1 Night", + "originalTitle": "1박 2일", + "overview": "2 Days & 1 Night is a South Korean reality-variety show with the motto \"real wild road variety.\" Its main concept is to recommend various places of interest that viewers can visit in South Korea.", + "posterPath": "/qezeCEkIKHQM5iwyVeYBuXmYA2h.jpg", + "backdropPath": "/32iRX9xqNH3ErJN6FowxdtgYmiY.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10764 + ], + "genres": [ + "Comedy", + "Reality" + ], + "releaseDate": "2007-08-05", + "releaseYear": "2007", + "originalLanguage": "ko", + "voteAverage": 7.1, + "voteCount": 28, + "popularity": 13.1976 + }, + { + "id": 228305, + "title": "Task", + "originalTitle": "Task", + "overview": "In the working-class suburbs of Philadelphia, an FBI agent heads a task force assembled to put an end to a string of violent robberies led by an unsuspecting family man.", + "posterPath": "/9JdL1aQdAQiyYYQ2xCqbHaEcZt8.jpg", + "backdropPath": "/hEE8TV5jLQZQnpPN4QmYZ1lCJNq.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-09-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 209, + "popularity": 13.1943 + }, + { + "id": 72517, + "title": "Classroom of the Elite", + "originalTitle": "ようこそ実力至上主義の教室へ", + "overview": "When Kiyotaka enters an elite government-sponsored high school, he finds out just how merit-based this education system is.", + "posterPath": "/yuHanbUUIv2UWRxxQFt9n8jtmOJ.jpg", + "backdropPath": "/d3yNn379emGP8xztqeOsB9oLNG2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2017-07-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 729, + "popularity": 13.1892 + }, + { + "id": 954, + "title": "The Rockford Files", + "originalTitle": "The Rockford Files", + "overview": "Cranky but likable L.A. PI Jim Rockford pulls no punches (but takes plenty of them). An ex-con sent to the slammer for a crime he didn't commit, Rockford takes on cases others don't want, aided by his tough old man, his lawyer girlfriend and some shady associates from his past.", + "posterPath": "/fniHEsTeqHMg41GlCYJxZVgtn7H.jpg", + "backdropPath": "/tUKU1WLqMtIZHUl8lP9bLAJx0nl.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1974-09-13", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 7.585, + "voteCount": 118, + "popularity": 13.1874 + }, + { + "id": 155440, + "title": "Insomniacs After School", + "originalTitle": "君は放課後インソムニア", + "overview": "Ganta Nakami is a high school student who suffers from insomnia. He meets Isaki Magari, a girl with the same condition. A relationship forms as they share a secret and catch up on their sleep in their school’s abandoned observatory.", + "posterPath": "/qChtK3uuCc5L5CpSeBpVV4MFRHD.jpg", + "backdropPath": "/leJEC6tORpACQXtW4HvSuRJBTsu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2023-04-11", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 43, + "popularity": 13.1852 + }, + { + "id": 46533, + "title": "The Americans", + "originalTitle": "The Americans", + "overview": "Set during the Cold War period in the 1980s, The Americans is the story of Elizabeth and Philip Jennings, two Soviet KGB officers posing as an American married couple in the suburbs of Washington D.C. and their neighbor, Stan Beeman, an FBI Counterintelligence agent.", + "posterPath": "/w1UBlxEXhbKe8sp0fxFZh7MqTce.jpg", + "backdropPath": "/7RrcmIQ7e37M3vMkUNAKCEA6uEy.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2013-01-30", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 1011, + "popularity": 13.1814 + }, + { + "id": 61865, + "title": "When Calls the Heart", + "originalTitle": "When Calls the Heart", + "overview": "Elizabeth Thatcher, a young school teacher from a wealthy Eastern family, migrates from the big city to teach school in a small coal mining town in the west.", + "posterPath": "/bOLAOkzpj5jW8DZvBmRBd5knyug.jpg", + "backdropPath": "/mTC6WbMEgZ6LLdwRqSDR5NVEslr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "2014-01-11", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 153, + "popularity": 13.1733 + }, + { + "id": 237512, + "title": "Jurassic World: Chaos Theory", + "originalTitle": "Jurassic World: Chaos Theory", + "overview": "The Camp Cretaceous gang comes together to unravel a mystery when they discover a global conspiracy that brings danger to dinosaurs — and to themselves.", + "posterPath": "/c2Od0cY2IeayDj5osUxZSAD1QK.jpg", + "backdropPath": "/qjPC0KYEhdWAIPmCtAkg0j1iJXC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "2024-05-24", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 177, + "popularity": 13.1653 + }, + { + "id": 31268, + "title": "El Capo", + "originalTitle": "El Capo", + "overview": "El Capo, the most wanted drug dealer in Mexico, has been intercepted while hiding with his trusted men, his wife and his lover. During his escape, he declares war on the government and his own past.", + "posterPath": "/hTwfFidPtRU3BUH8mK90jWyPyBr.jpg", + "backdropPath": "/9bdNwt53JFU1b6oor8eDipNO79i.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2009-08-24", + "releaseYear": "2009", + "originalLanguage": "es", + "voteAverage": 7.663, + "voteCount": 1223, + "popularity": 13.1648 + }, + { + "id": 30623, + "title": "Shin Chan", + "originalTitle": "クレヨンしんちゃん", + "overview": "Shin-chan, the boy next door, is a walking disaster, creating chaos wherever he goes. With the body of a child and the mind of an adult, Shinchan is wreaking more havoc than any child before. Shin-chan is carefree, optimistic and gets excited about everything. This 5 year-old likes to do things his way.", + "posterPath": "/zg19Paur3lVVSh8J4LJVO1wgBIg.jpg", + "backdropPath": "/2kZPbV9Yw5QiW0ye0WvveFc09YG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1992-04-13", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 104, + "popularity": 13.1642 + }, + { + "id": 194, + "title": "NYPD Blue", + "originalTitle": "NYPD Blue", + "overview": "Police drama set in New York City, exploring the internal and external struggles of the fictional 15th precinct of Manhattan. Each episode typically intertwined several plots involving an ensemble cast.", + "posterPath": "/hrdusQVSArJPRGnB5bHzd2ISP4V.jpg", + "backdropPath": "/uGGmIOPc2QLNF4t3Ro46wRcYr3t.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1993-09-21", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.988, + "voteCount": 166, + "popularity": 13.1624 + }, + { + "id": 21728, + "title": "The Alfred Hitchcock Hour", + "originalTitle": "The Alfred Hitchcock Hour", + "overview": "A continuation of the anthology series “Alfred Hitchcock Presents”, hosted by the master of suspense and featuring thrillers and mysteries.", + "posterPath": "/6bnJU1YmobWBNokjLruUsZ6cykC.jpg", + "backdropPath": "/5qNlwCIPJm4RkO3MnxfPnnwB310.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "1962-09-20", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 75, + "popularity": 13.1361 + }, + { + "id": 126280, + "title": "Sex/Life", + "originalTitle": "Sex/Life", + "overview": "A woman's daring sexual past collides with her married-with-kids present when the bad-boy ex she can't stop fantasizing about crashes back into her life.", + "posterPath": "/kfcJl5e8CRWDU7e4vX6uNABPRbS.jpg", + "backdropPath": "/9nBVkNBe4x9HKDAzxjxlIqecxCW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-06-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.056, + "voteCount": 1360, + "popularity": 13.1117 + }, + { + "id": 46331, + "title": "Under the Dome", + "originalTitle": "Under the Dome", + "overview": "A small town is suddenly and inexplicably sealed off from the rest of the world by an enormous transparent dome. While military forces, the government and the media positioned outside of this surrounding barrier attempt to break it down, a small group of people inside attempt to figure out what the dome is, where it came from, and when (and if) it will go away.", + "posterPath": "/fwH0ePhd7m3swtCuFeubtR49ZTd.jpg", + "backdropPath": "/qiDOjpLj2KGDwM5MGx9YZpOrBRX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-06-24", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.156, + "voteCount": 3780, + "popularity": 13.097 + }, + { + "id": 126308, + "title": "Shōgun", + "originalTitle": "Shōgun", + "overview": "In Japan in the year 1600, at the dawn of a century-defining civil war, Lord Yoshii Toranaga is fighting for his life as his enemies on the Council of Regents unite against him, when a mysterious European ship is found marooned in a nearby fishing village.", + "posterPath": "/7O4iVfOMQmdCSxhOg1WnzG1AgYT.jpg", + "backdropPath": "/bwSmgmd90hCWwqOKQYTEraeOZhJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2024-02-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.451, + "voteCount": 1533, + "popularity": 13.08 + }, + { + "id": 47640, + "title": "The Strain", + "originalTitle": "The Strain", + "overview": "A high concept thriller that tells the story of Dr. Ephraim Goodweather, the head of the Center for Disease Control Canary Team in New York City. He and his team are called upon to investigate a mysterious viral outbreak with hallmarks of an ancient and evil strain of vampirism. As the strain spreads, Eph, his team, and an assembly of everyday New Yorkers, wage war for the fate of humanity itself.", + "posterPath": "/2BWErT9QcADpf2G4BZ769eSnFTP.jpg", + "backdropPath": "/4YnAZ1KO9goeS4c06VO7HXiO3oO.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2014-07-13", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1928, + "popularity": 13.0784 + }, + { + "id": 41018, + "title": "SOKO Wismar", + "originalTitle": "SOKO Wismar", + "overview": "", + "posterPath": "/jvc2fWkPfr5CdiK18k9VOM6xYZ5.jpg", + "backdropPath": "/eJd5TfoiFG5JOhuMZgdvpTgp8eK.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2004-10-06", + "releaseYear": "2004", + "originalLanguage": "de", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 13.0702 + }, + { + "id": 2389, + "title": "Las Vegas", + "originalTitle": "Las Vegas", + "overview": "Ed Deline is a strict ex-CIA officer who went from being Head of Security to becoming President of Operations of the Montecito, whose job is to run the day-to-day operations of the casino. Following his departure, former Marine Danny McCoy, Ed's former protégé, becomes the Montecito's new President of Operations.", + "posterPath": "/AknZ6uDYvswlIrUKDm2Nte32xge.jpg", + "backdropPath": "/mlEkLMkyL9ldRz4fnLANV4XsHsl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2003-09-22", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.033, + "voteCount": 243, + "popularity": 13.0516 + }, + { + "id": 72351, + "title": "Hilda Hurricane", + "originalTitle": "Hilda Furacão", + "overview": "After breaking off her engagement on her wedding day and going directly to a prostitution house, a young model becomes the city's most famous harlot, known as \"Hilda Hurricane\", in the 50's Brazil. She could do fine if it wasn't for Malthus, a young novice said to be a saint, for whom she falls in love. However, the boy is kept under the strict, severe doctrine of Father Nelson, a conservative priest intolerant even to every minor sin. Things start getting harder when Roberto, Malthus' old friend and a communist reporter (the actual author of the story), tries to interview Hilda and disclosure the real reasons behind her radical change of mind. In the meantime, the middle-classes are terrified by the \"leftist threat\" in Brazilian politics.", + "posterPath": "/xJgDZQDscZpQ5JJ2Ms9QOYoIEk9.jpg", + "backdropPath": "/2kHhLv6RPZUbYcqk3L9RarOYzlA.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768, + 10766 + ], + "genres": [ + "Drama", + "War & Politics", + "Soap" + ], + "releaseDate": "1998-05-27", + "releaseYear": "1998", + "originalLanguage": "pt", + "voteAverage": 8.4, + "voteCount": 19, + "popularity": 13.0343 + }, + { + "id": 68398, + "title": "Dr. Romantic", + "originalTitle": "낭만닥터 김사부", + "overview": "An eccentric, triple board-certified virtuoso surgeon leaves a top job in Seoul and ends up at a provincial hospital, where he mentors young doctors.", + "posterPath": "/9fbRJgZ2zDTnSUId1bOwsllHNr7.jpg", + "backdropPath": "/zxqJmdBBWjLomeyJHt6P4BxJ4KR.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-11-07", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 8.3, + "voteCount": 113, + "popularity": 13.0256 + }, + { + "id": 5092, + "title": "Infinite Challenge", + "originalTitle": "무한도전", + "overview": "Infinite Challenge has been reported as the first \"Real-Variety\" show in Korean television history. The program is largely unscripted, and follows a similar format of challenge-based Reality Television programs, familiar to the audiences in the West, but the challenges are often silly, absurd, or impossible to achieve, so the program takes on the aspect of a satirical comedy variety show, rather than a more standard reality or contest program. In order to achieve its comedic purposes its 6 hosts and staff continuously proclaim, the elements of this show are the 3-Ds, Dirty, Dangerous, and Difficult.", + "posterPath": "/3ZIPTvMnzI5ThmdGeEYQFxJV5Sg.jpg", + "backdropPath": "/s2qJb1FLwp1Mse9lY08JqgMp0kw.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2005-04-23", + "releaseYear": "2005", + "originalLanguage": "ko", + "voteAverage": 7.7, + "voteCount": 20, + "popularity": 13.0255 + }, + { + "id": 4324, + "title": "Dr. Quinn, Medicine Woman", + "originalTitle": "Dr. Quinn, Medicine Woman", + "overview": "Dr. Michaela Quinn journeys to Colorado Springs to be the town's physician after her father's death in 1868.", + "posterPath": "/rF32uo83bzezkEUQ8VGarbCJi32.jpg", + "backdropPath": "/tXJf6radpACrCQPYIU0ARFsVV7z.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1993-01-01", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.614, + "voteCount": 456, + "popularity": 13.0161 + }, + { + "id": 93741, + "title": "Jurassic World Camp Cretaceous", + "originalTitle": "Jurassic World Camp Cretaceous", + "overview": "Six teens attending an adventure camp on the opposite side of Isla Nublar must band together to survive when dinosaurs wreak havoc on the island.", + "posterPath": "/nkCbCmlwjwT6QL44DqG7qE9ch8H.jpg", + "backdropPath": "/4WIglfr4lDFVjCEcXzCeu6cJsOh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure", + "Family" + ], + "releaseDate": "2020-09-18", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.014, + "voteCount": 1884, + "popularity": 13.0155 + }, + { + "id": 4357, + "title": "Mission: Impossible", + "originalTitle": "Mission: Impossible", + "overview": "Mission: Impossible is an American television series that was created and initially produced by Bruce Geller. It chronicles the missions of a team of secret government agents known as the Impossible Missions Force. In the first season, the team is led by Dan Briggs, played by Steven Hill; Jim Phelps, played by Peter Graves, takes charge for the remaining seasons. A hallmark of the series shows Briggs or Phelps receiving his instructions on a recording that then self-destructs, followed by the theme music composed by Lalo Schifrin.\n\nThe series aired on the CBS network from September 1966 to March 1973, then returned to television for two seasons on ABC, from 1988 to 1990, retaining only Graves in the cast. It later inspired a popular series of theatrical motion pictures starring Tom Cruise, beginning in 1996.", + "posterPath": "/1PnUBKbDR1F2w5qicblLg1QGTif.jpg", + "backdropPath": "/com4DoP6rNkf1fs5KiuLPCRVK6V.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "1966-09-17", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 292, + "popularity": 12.9955 + }, + { + "id": 124003, + "title": "Perfect World", + "originalTitle": "完美世界", + "overview": "Born into a unique world where villages fight to gain power and control, the main character, Shi Hao, is a genius blessed by the heavens born under the poorest of conditions. His clan, however, has a mysterious past. To rise up and become the genius he is meant to be, the clan goes through every effort to aid his cultivation as they battle through fanatical monsters and engage in power struggles with other clans. His journey will bring him through unknown lands until he is able to become a person that can truly shake the world.", + "posterPath": "/qy60bm9admmgpkmcPeW4BvRjjVm.jpg", + "backdropPath": "/akLUaWYzhwrm0AKfE1OYvjW6XTh.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2021-04-23", + "releaseYear": "2021", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 20, + "popularity": 12.9874 + }, + { + "id": 10180, + "title": "The Virginian", + "originalTitle": "The Virginian", + "overview": "The Shiloh Ranch in Wyoming Territory of the 1890s is owned in sequence by Judge Henry Garth, the Grainger brothers, and Colonel Alan MacKenzie. It is the setting for a variety of stories, many more based on character and relationships than the usual western.", + "posterPath": "/oAbCE44r6wtmAnfzZI2SxyeaBmW.jpg", + "backdropPath": "/gmQbEibys6LuPTgB7is3AEKTdrE.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1962-09-19", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 34, + "popularity": 12.9868 + }, + { + "id": 232132, + "title": "Saladın: The Conqueror of Jerusalem", + "originalTitle": "Kudüs Fatihi: Selahaddin Eyyubi", + "overview": "The television series centers on the life of Salahudddin, a 12th-century Muslim ruler, and his conquest of Jerusalem. It also delves into his challenges and conflicts against the Crusaders, as well as his ambition to unify the Muslim territories of Syria, northern Mesopotamia, Palestine, and Egypt under his leadership.", + "posterPath": "/5bljg22nvfS0eP320L5GFYJz3Zb.jpg", + "backdropPath": "/jo78r1koYnbEDdD4boh0EFcMpQo.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18, + 10759 + ], + "genres": [ + "War & Politics", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2023-11-13", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 7.1, + "voteCount": 12, + "popularity": 12.9812 + }, + { + "id": 282440, + "title": "Rulers of Fortune", + "originalTitle": "Os Donos do Jogo", + "overview": "A young man aspires to rise through the ranks of Rio's gambling underworld — unaware of the dangerous game of betrayal, lust and blood that awaits him.", + "posterPath": "/2TqtXFRt1sE6ifbaq8PO7bzA8Ai.jpg", + "backdropPath": "/1b2OYNA3Ikq9BBwk6If8As89bge.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-10-29", + "releaseYear": "2025", + "originalLanguage": "pt", + "voteAverage": 7.327, + "voteCount": 26, + "popularity": 12.9679 + }, + { + "id": 4229, + "title": "Dexter's Laboratory", + "originalTitle": "Dexter's Laboratory", + "overview": "Dexter, a boy-genius with a secret laboratory, constantly battles his sister Dee Dee, who always gains access despite his best efforts to keep her out, as well as his arch-rival and neighbor, Mandark.", + "posterPath": "/inJJn8lUPWdvdy2h259UnoHWVqC.jpg", + "backdropPath": "/yqKI437ohJAF9EQYkPYH0PTBDEt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-04-28", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.664, + "voteCount": 849, + "popularity": 12.9362 + }, + { + "id": 2942, + "title": "The Tudors", + "originalTitle": "The Tudors", + "overview": "The Tudors is a history-based drama series following the young, vibrant King Henry VIII, a competitive and lustful monarch who navigates the intrigues of the English court and the human heart with equal vigor and justifiable suspicion.", + "posterPath": "/7wmyiVEhmJ7OUvwBIsvOFqMa0q9.jpg", + "backdropPath": "/cKsmzu5YpayNxc6Gs9KD8wyJV8M.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10749 + ], + "genres": [ + "Drama", + "Romance" + ], + "releaseDate": "2007-04-01", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.795, + "voteCount": 784, + "popularity": 12.9328 + }, + { + "id": 40424, + "title": "Initial D", + "originalTitle": "頭文字D", + "overview": "Takumi’s job as a tofu delivery boy has turned him into one of the most formidable drivers around. Behind the wheel of his Eight-Six, he’s one with the road—and his life shifts into high gear when the underground street racing world takes notice. Drivers from across the region are lining up for a shot at the new guy. Takumi’s not just focused on winning—he’s out to prove he’s the best.", + "posterPath": "/CMG53GMx0OFFmF4dzhlFuebarq.jpg", + "backdropPath": "/zBIIyH8yfdlfvvpEiG9PLwoVXc6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1998-04-18", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 117, + "popularity": 12.928 + }, + { + "id": 259140, + "title": "Ranma1/2", + "originalTitle": "らんま1/2", + "overview": "Akane Tendo meets her new fiancé, Ranma Saotome, a martial arts prodigy with a twist: he magically transforms into a girl upon touching cold water.", + "posterPath": "/zQhwc27CWHM4zx9lJU9bI5FRQOm.jpg", + "backdropPath": "/xMgzRUA1RjxLQn05oJ8IFbf06AO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.246, + "voteCount": 128, + "popularity": 12.9146 + }, + { + "id": 1759, + "title": "The Cosby Show", + "originalTitle": "The Cosby Show", + "overview": "The Cosby Show is an American television situation comedy starring Bill Cosby, which aired for eight seasons on NBC from September 20, 1984 until April 30, 1992. The show focuses on the Huxtable family, an upper middle-class African-American family living in Brooklyn, New York.", + "posterPath": "/dc6sR5FWN4uX8fZENq2UTsrSg3x.jpg", + "backdropPath": "/wWXFRPABf2D0eFjYNXNM0JhmTZF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1984-09-20", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.99, + "voteCount": 455, + "popularity": 12.9009 + }, + { + "id": 226241, + "title": "Vgly", + "originalTitle": "Vgly", + "overview": "Though stuck at the bottom of the social ladder with no money or contacts, aspiring artist Vgly and his crew strive to break into the music business.", + "posterPath": "/SYvwtsk4vWPAtB0wlgLlecWCFc.jpg", + "backdropPath": "/zzMmUE7aRRtHR9GL90zrtvlqXlm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2023-05-25", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 8.4, + "voteCount": 235, + "popularity": 12.8884 + }, + { + "id": 897, + "title": "The Grim Adventures of Billy and Mandy", + "originalTitle": "The Grim Adventures of Billy and Mandy", + "overview": "The exploits of the Grim Reaper, who has been forced into being the best friend of two children. A spin-off of the show Grim & Evil.", + "posterPath": "/kbFIKt6NGppNr7OOn288A8gBObs.jpg", + "backdropPath": "/1eRvnxCQLrMjCieyO8VBsPJ28Jv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2001-08-24", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 994, + "popularity": 12.8794 + }, + { + "id": 1948, + "title": "Degrassi", + "originalTitle": "Degrassi", + "overview": "The life of a group of adolescents going through the trials and tribulations of teendom at Degrassi Community School.", + "posterPath": "/AfqQ4lZAi9LWyhnHm3VCpm2hLpB.jpg", + "backdropPath": "/6Rvq9wwTDyH1k1Qg660KXTknTfG.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2001-10-14", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 103, + "popularity": 12.8779 + }, + { + "id": 4018, + "title": "Quantum Leap", + "originalTitle": "Quantum Leap", + "overview": "Theorizing that one could time travel within his own lifetime, Dr. Sam Beckett stepped into the Quantum Leap accelerator and vanished... He woke to find himself trapped in the past, facing mirror images that were not his own and driven by an unknown force to change history for the better. His only guide on this journey is Al, an observer from his own time, who appears in the form of a hologram that only Sam can see and hear. And so Dr. Beckett finds himself leaping from life to life, striving to put right what once went wrong and hoping each time that his next leap will be the leap home.", + "posterPath": "/ujIGP3e3V6kDQHRhjNYtUE3fHJi.jpg", + "backdropPath": "/5TpptGoxVVght2n6oz8QJklmSTu.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1989-03-26", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 742, + "popularity": 12.8755 + }, + { + "id": 224030, + "title": "High School Return of a Gangster", + "originalTitle": "조폭인 내가 고등학생이 되었습니다", + "overview": "A spirit of a middle school dropout gangster who accidentally possesses an 18-year-old boy’s body who killed himself, goes back to high school to take a revenge against the bullies with his gangster skills and encounters unexpected relationship.", + "posterPath": "/bK5kGsWq9vGALbDgPmNiLFNFVI1.jpg", + "backdropPath": "/d5XO4xMMYukfDgcuAe4IBQ7MBmY.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-05-29", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.532, + "voteCount": 77, + "popularity": 12.859 + }, + { + "id": 79141, + "title": "Scissor Seven", + "originalTitle": "刺客伍六七", + "overview": "Seeking to recover his memory, a scissor-wielding, hairdressing, bungling quasi-assassin stumbles into a struggle for power among feuding factions.", + "posterPath": "/mSLSrOndwNoompAARPHBaxF2E6E.jpg", + "backdropPath": "/80AhZSbY4eYe7HZnmkqX18ZcAFj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-25", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 8.579, + "voteCount": 741, + "popularity": 12.8436 + }, + { + "id": 63210, + "title": "Shadowhunters", + "originalTitle": "Shadowhunters", + "overview": "When Clary Fray's mother has disappeared, Clary joins a band of Shadowhunters; demon killing hunters, and gets caught up in a plan to save the world.", + "posterPath": "/66YHvvVduC21xcMXPpBBF0ywyVZ.jpg", + "backdropPath": "/o0PtXGp2XyoRu0S1uPYzDpMnkOM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-12", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.595, + "voteCount": 1157, + "popularity": 12.8424 + }, + { + "id": 93812, + "title": "The Great", + "originalTitle": "The Great", + "overview": "A genre-bending, anti-historical ride through 18th century Russia following the rise of Catherine the Nothing to Catherine the Great and her explosive relationship with husband Peter, the emperor of Russia.", + "posterPath": "/tpz9UQ3hUwYufNcKWVW00FCjWyc.jpg", + "backdropPath": "/2K84O2cr0jRH7ROeeHJ3zbTR8Uf.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-05-15", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.097, + "voteCount": 1087, + "popularity": 12.8369 + }, + { + "id": 4333, + "title": "The Saint", + "originalTitle": "The Saint", + "overview": "Simon Templar is The Saint, a handsome, sophisticated, debonair, modern-day Robin Hood who recovers ill-gotten wealth and redistributes it to those in need.", + "posterPath": "/zwNVpAJkE4Gu1jv922IH7GOQlen.jpg", + "backdropPath": "/aXwtwGjS7QjwY9HRPb1gH5stxvs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1962-10-04", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 120, + "popularity": 12.7798 + }, + { + "id": 36024, + "title": "Ghost Hound", + "originalTitle": "神霊狩/GHOST HOUND", + "overview": "In an isolated region of Kyushu lies the town of Suiten. Though seeming small and modest, Suiten is not a picturesque place for a vacation, unless it is from the “Unseen World”. Taro, Makoto and Masayuki, three boys with traumatic pasts, learn to let their souls cross between the two parallel worlds. However, the Unseen World is no mere copy of the real Apparent World. The Unseen World is the home of ghosts, but changes are now allowing the souls of the dead to pass over into the Apparent World, with unpredictable effects. Follow the journey of Taro, Makoto and Masayuki, as they cross between the two worlds, trying to unravel a great mystery.", + "posterPath": "/mebvYDOMnnadzDDbJOdjQRnap63.jpg", + "backdropPath": "/aqIOOXlKuhlIbnp3cSNBVd33bNx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-18", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.643, + "voteCount": 21, + "popularity": 12.651 + }, + { + "id": 1436, + "title": "Justified", + "originalTitle": "Justified", + "overview": "A character drama based on the 2001 Elmore Leonard short story \"Fire in the Hole.\" Leonard's tale centers around U.S. Marshal Raylan Givens of Kentucky, a quiet but strong-willed official of the law. The tale covers his high-stakes job, as well as his strained relationships with his ex-wife and father.", + "posterPath": "/ie1quhMk09lDtvtAyQAHTu09R9Z.jpg", + "backdropPath": "/cyieN1P9Xo5SvLasSUT7SaAAzfy.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2010-03-16", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.979, + "voteCount": 791, + "popularity": 12.6437 + }, + { + "id": 61923, + "title": "Star vs. the Forces of Evil", + "originalTitle": "Star vs. the Forces of Evil", + "overview": "Intergalactic warrior Star Butterfly arrives on Earth to live with the Diaz family. She continues to battle villains throughout the universe and high school, mainly to protect her extremely powerful wand, an object that still confuses her.", + "posterPath": "/dKFL1AOdKNoazqZDg1zq2z69Lx1.jpg", + "backdropPath": "/2UElp7Dkm3SiB9ZEdKEWNmAOijB.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2015-01-18", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 1448, + "popularity": 12.6357 + }, + { + "id": 97525, + "title": "To Your Eternity", + "originalTitle": "不滅のあなたへ", + "overview": "An immortal being takes on the form of a human boy, wandering the earth and experiencing the pains and joys of life throughout his story without end.", + "posterPath": "/lA2jRBubr2OLOlbkJXuBXYqv4A9.jpg", + "backdropPath": "/qmeC99iX9YPbxi3Dwsw5VvxIbCC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-12", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 295, + "popularity": 12.6006 + }, + { + "id": 72071, + "title": "The Chi", + "originalTitle": "The Chi", + "overview": "A relevant, timely and distinctive coming-of-age story following a half dozen interrelated characters in the South Side of Chicago. The story centers on Brandon, an ambitious and confident young man who dreams about opening a restaurant of his own someday, but is conflicted between the promise of a new life and his responsibility to his mother and teenage brother back in the South Side.", + "posterPath": "/niD8X5pEXpmRUDhSPdDOgI3Gw5Q.jpg", + "backdropPath": "/ulXewCeBreYuw1fpjpibYQ66RRv.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-01-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 199, + "popularity": 12.596 + }, + { + "id": 73362, + "title": "The Ladies' Paradise", + "originalTitle": "Il paradiso delle signore", + "overview": "Follow Teresa Iorio, a young woman who leaves her rural Sicilian hometown for Milan to find work--and much more--at a newly opened department store: The Ladies' Paradise.", + "posterPath": "/1XKjPCtprWqjKhTiyYORVwgWePA.jpg", + "backdropPath": "/7v3bO3pNnyLHLlwETtmyQxKV2Ba.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10766, + 18 + ], + "genres": [ + "Comedy", + "Soap", + "Drama" + ], + "releaseDate": "2015-12-08", + "releaseYear": "2015", + "originalLanguage": "it", + "voteAverage": 7.633, + "voteCount": 14, + "popularity": 12.5675 + }, + { + "id": 66515, + "title": "Brothers", + "originalTitle": "Ang Probinsyano", + "overview": "Ador is a well known and respected CIDG Police Official, with a loving family as his support. Cardo, on the other hand, loves the solitude of the mountains in the province as a SAF Trooper. Their lives take a sudden turn when Ador gets himself entangled in a syndicate by being betrayed by one of his own colleagues, resulting to his death. To conceal this fact, Cardo was ordered to pretend to be Ador and finish the mission what his brother left behind. He will also be force to pretend to his brother's family and friends, and be re-united with his grandmother, whom he despised, for assuming she abandoned him.", + "posterPath": "/uX5ldo2snjJuZ8P9AxOharboxJn.jpg", + "backdropPath": "/lt9fFOFhR6QI5oIAvfWVx4G7nt0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2015-09-28", + "releaseYear": "2015", + "originalLanguage": "tl", + "voteAverage": 6.7, + "voteCount": 34, + "popularity": 12.5613 + }, + { + "id": 34899, + "title": "Magnificent Century", + "originalTitle": "Muhteşem Yüzyıl", + "overview": "At the age of 26, when his reign began, Sultan Süleyman sought to build an empire more powerful than Alexander the Great and to render the Ottomans invincible. Throughout his 46-year reign, his fame as the greatest warrior and ruler of his age spreads both to the East and West. With his companion Pargalı İbrahim, Süleyman achieves great victories, and makes his name known in the Muslim World. Süleyman called İbrahim his brother, friend and advisor. The television series shows Süleyman's consolidation of his power: Pargalı İbrahim being grand minister of state, reinforcing the rule of law throughout the empire, meeting foreign diplomats, and preparing for military campaigns, all set against the backdrop of the tension between Christian Europe and the Ottoman Empire.", + "posterPath": "/UDvmQWnmIr9U6ZRB1k9ULXBow3.jpg", + "backdropPath": "/gn8k4ztPnrURIIocMOYdWCFknKJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2011-01-06", + "releaseYear": "2011", + "originalLanguage": "tr", + "voteAverage": 8.1, + "voteCount": 795, + "popularity": 12.5539 + }, + { + "id": 138505, + "title": "Marvel Zombies", + "originalTitle": "Marvel Zombies", + "overview": "After the Avengers are overtaken by a zombie plague, a desperate group of survivors discover the key to bringing an end to the super-powered undead, racing across a dystopian landscape and risking life and limb to save their world.", + "posterPath": "/mwKj9ERGFXsWot0nXgQ5yMQf9I7.jpg", + "backdropPath": "/lxQMxqao3vs2ehxESrkQU6acU86.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2025-09-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.347, + "voteCount": 261, + "popularity": 12.5279 + }, + { + "id": 1685, + "title": "Project Runway", + "originalTitle": "Project Runway", + "overview": "Aspiring fashion designers compete for a chance to break into the industry. Each week, a designer is eliminated from the competition after exhibiting their work in front of a judges' panel.", + "posterPath": "/3JKvoVulQXwibxdGQYqBQyZBlBj.jpg", + "backdropPath": "/p3KI6l6jhsJFO6DgJ3dwCo6pGt5.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2004-12-01", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.212, + "voteCount": 107, + "popularity": 12.5135 + }, + { + "id": 228689, + "title": "Genie, Make a Wish", + "originalTitle": "다 이루어질지니", + "overview": "After a thousand years, a quirky genie returns to grant wishes to a woman born without feelings. Can his magic bring love and wonder to her world?", + "posterPath": "/opop2u7Jav6lMNL8fSBTzOeFBDz.jpg", + "backdropPath": "/2ds9EWX7cwGfZiRjYqhyw7SbzsW.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.258, + "voteCount": 61, + "popularity": 12.5019 + }, + { + "id": 2303, + "title": "Hawaii Five-O", + "originalTitle": "Hawaii Five-O", + "overview": "Hawaii Five-O is an American police procedural drama series produced by CBS Productions and Leonard Freeman. Set in Hawaii, the show originally aired for 12 seasons from 1968 to 1980, and continues in reruns. Jack Lord portrayed Detective Lieutenant Steve McGarrett, the head of a special state police task force which was based on an actual unit that existed under martial law in the 1940s. The theme music composed by Morton Stevens became especially popular. Many episodes would end with McGarrett instructing his subordinate to \"Book 'em, Danno!\", sometimes specifying a charge such as \"murder one\".", + "posterPath": "/8iFAlqhfY1D0ithTrfKTxObPlUH.jpg", + "backdropPath": "/9as2hYKrhbKWj4ePtFMftQfEsEX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1968-09-20", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 149, + "popularity": 12.4879 + }, + { + "id": 97852, + "title": "Ramo", + "originalTitle": "Ramo", + "overview": "The series will focus on the conflict between the two families and a great love that will flourish between this struggle.", + "posterPath": "/6K9NaIVDe78LhUXs8I1do8namH6.jpg", + "backdropPath": "/8qGdsEdvyGGxF8taEFetsJuOdM3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2020-01-14", + "releaseYear": "2020", + "originalLanguage": "tr", + "voteAverage": 8.2, + "voteCount": 16, + "popularity": 12.4864 + }, + { + "id": 72750, + "title": "Killing Eve", + "originalTitle": "Killing Eve", + "overview": "A security consultant hunts for a ruthless assassin. Equally obsessed with each other, they go head to head in an epic game of cat-and-mouse.", + "posterPath": "/4wKhTVw8aGq5AZMa0Q1spERdi7n.jpg", + "backdropPath": "/2eR0H27Us1tvbjd95oW7WhiKioC.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.934, + "voteCount": 1401, + "popularity": 12.4767 + }, + { + "id": 257534, + "title": "Devil in Disguise: John Wayne Gacy", + "originalTitle": "Devil in Disguise: John Wayne Gacy", + "overview": "When a teenager goes missing, it becomes clear that many young men and boys have disappeared at the hands of John Wayne Gacy, the prime suspect.", + "posterPath": "/vsXSxLYsAq0VsjWIMRpQGorjLjh.jpg", + "backdropPath": "/kG2mHHu136bviY53DDpnsyVNKuA.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-10-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.231, + "voteCount": 39, + "popularity": 12.4095 + }, + { + "id": 2506, + "title": "Wings", + "originalTitle": "Wings", + "overview": "Brothers Brian and Joe Hackett attempt to run an airline on the New England island of Nantucket while surrounded by their various wacky friends and employees.", + "posterPath": "/eqf5p8fU7liYAMznUBMWMeSYfCQ.jpg", + "backdropPath": "/3wGykQ9hQzX6YVayQRvEDVhU8bF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1990-04-19", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.851, + "voteCount": 134, + "popularity": 12.378 + }, + { + "id": 91363, + "title": "What If...?", + "originalTitle": "What If...?", + "overview": "Taking inspiration from the comic books of the same name, each episode of this animated anthology series questions, revisits and twists classic Marvel Cinematic moments.", + "posterPath": "/lztz5XBMG1x6Y5ubz7CxfPFsAcW.jpg", + "backdropPath": "/jnzoh5qoxRLFRIQAxnl6D3RStPC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-08-11", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.076, + "voteCount": 4494, + "popularity": 12.3714 + }, + { + "id": 241549, + "title": "Murder in a Small Town", + "originalTitle": "Murder in a Small Town", + "overview": "Karl Alberg moves to a quiet coastal town to soothe a psyche that has been battered by big-city police work but finds himself needing to call upon all his skills to solve the murders that continue to wash up on his shore.", + "posterPath": "/r8rdmK4vSIhNDQAtbamEFL2kLhG.jpg", + "backdropPath": "/5puZfo53LmwAkqOGObg59X3qmC7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2024-09-24", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.895, + "voteCount": 38, + "popularity": 12.363 + }, + { + "id": 1930, + "title": "The Beverly Hillbillies", + "originalTitle": "The Beverly Hillbillies", + "overview": "Jed Clampett's swamp is loaded with oil. When a wildcatter discovers the huge pool, Jed sells his land to the O.K. Oil Company and at the urging of cousin Pearl, moves his family to a 35-room mansion in Beverly Hills, California.", + "posterPath": "/sEZs4szkwBXIK3DOm37MnQN9fIe.jpg", + "backdropPath": "/nA19z9LnWYebUt3iqoYvkwRKIUI.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1962-09-26", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 6.868, + "voteCount": 125, + "popularity": 12.3484 + }, + { + "id": 80350, + "title": "New Amsterdam", + "originalTitle": "New Amsterdam", + "overview": "The new medical director breaks the rules to heal the system at America's oldest public hospital. Max Goodwin sets out to tear up the bureaucracy and provide exceptional care, but the doctors and staff are not so sure he can succeed. They've heard this before. Not taking \"no\" for an answer, Dr. Goodwin's instinctive response to problems large and small is four simple words: \"How can I help?\" He has to disrupt the status quo and prove he'll stop at nothing to breathe new life into this underfunded and underappreciated hospital, returning it to the glory that put it on the map.", + "posterPath": "/jsH4AeGZn5Q6h314A3OTUHKxHhR.jpg", + "backdropPath": "/9hfA9zMsyckwZ8WLMVQYKG8YSwY.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-09-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.343, + "voteCount": 1042, + "popularity": 12.3471 + }, + { + "id": 67178, + "title": "Marvel's The Punisher", + "originalTitle": "Marvel's The Punisher", + "overview": "A former Marine out to punish the criminals responsible for his family's murder finds himself ensnared in a military conspiracy.", + "posterPath": "/tM6xqRKXoloH9UchaJEyyRE9O1w.jpg", + "backdropPath": "/jBGjbSDRxOEudW9rmQbWDzJUKq9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2017-11-17", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.137, + "voteCount": 2898, + "popularity": 12.3447 + }, + { + "id": 10029, + "title": "Great Performances", + "originalTitle": "Great Performances", + "overview": "The best in the performing arts from across America and around the world including a diverse programming portfolio of classical music, opera, popular song, musical theater, dance, drama, and performance documentaries.", + "posterPath": "/1RD6s6KEbX36Cb99pAoWmU8gkwh.jpg", + "backdropPath": "/ylnSMSXs7TWjld6FT3laCfhAHzq.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 99, + 18 + ], + "genres": [ + "Comedy", + "Documentary", + "Drama" + ], + "releaseDate": "1971-01-28", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 5.762, + "voteCount": 21, + "popularity": 12.3371 + }, + { + "id": 249551, + "title": "Néro the Assassin", + "originalTitle": "Néro", + "overview": "France, 1504. A ruthless assassin goes on the run with his estranged daughter in his quest to protect her from deadly enemies and evil forces.", + "posterPath": "/u8xIts0oMryEIz1xhJ8zS5D7tRu.jpg", + "backdropPath": "/lMdOqInVxIvEapJjxAvOoHc7tl5.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-10-08", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.927, + "voteCount": 48, + "popularity": 12.321 + }, + { + "id": 278009, + "title": "Old Money", + "originalTitle": "Enfes Bir Akşam", + "overview": "Nihal's affluent life comes under threat when a self-made tycoon with an eye for money — and an even sharper one for love — shakes up Istanbul's elite.", + "posterPath": "/eblsywmEMgaSLp9kVA1mnbCc6Sp.jpg", + "backdropPath": "/tiDVZL3INFjGTbcGhRnLnmmNtKE.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-10", + "releaseYear": "2025", + "originalLanguage": "tr", + "voteAverage": 5.3, + "voteCount": 20, + "popularity": 12.3138 + }, + { + "id": 280945, + "title": "Bon Appétit, Your Majesty", + "originalTitle": "폭군의 셰프", + "overview": "After time traveling to the Joseon era, a talented chef meets a tyrant king. Her modern dishes captivate his palate, but royal challenges await her.", + "posterPath": "/bzYSIw9FTzQXUcWsnDSwlcwok3C.jpg", + "backdropPath": "/rcJH1kg2qIpFJxasgvJzqJUv1jp.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-08-23", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.855, + "voteCount": 165, + "popularity": 12.3103 + }, + { + "id": 2473, + "title": "The Avengers", + "originalTitle": "The Avengers", + "overview": "A quirky spy show of the adventures of eccentrically suave British Agent John Steed and his predominantly female partners. Jonathan Steed - an urbane, proper gentleman spy - teams with various assistants throughout the series' run, including Dr. David Keel, Cathy Gale, Emma Peel and Tara King, to repeatedly save the world from diabolical schemes plotted by equally diabolical evil-doers (among them robots and man-eating monsters).", + "posterPath": "/fQ4GHecDFEAmJcwc10zUrdIDLFd.jpg", + "backdropPath": "/AqZ48TMJRPCpbuy09S0RXFAhvFa.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 10765 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1961-01-07", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 7.741, + "voteCount": 143, + "popularity": 12.2719 + }, + { + "id": 953, + "title": "Maverick", + "originalTitle": "Maverick", + "overview": "The Maverick boys - Bret, Bart, Beau and Brent - are a clan of well-dressed dandies, gamblers who'd much rather make their money playing cards than messing up their fine clothing with actual work. Sly and clever, none of the Mavericks are much for acts of derring do, but they can be courageous when the situation calls for it. Most often, however, they live by their wits and considerable charm.", + "posterPath": "/psVbZjMHt9f9X7EIks9IQdCMZke.jpg", + "backdropPath": "/o0X11m9s7rmiJULBaV6A11hwxe2.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 37 + ], + "genres": [ + "Comedy", + "Western" + ], + "releaseDate": "1957-09-22", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 6.863, + "voteCount": 40, + "popularity": 12.2465 + }, + { + "id": 67075, + "title": "Mob Psycho 100", + "originalTitle": "モブサイコ100", + "overview": "Shigeo Kageyama, a.k.a. \"Mob,\" is a boy who has trouble expressing himself, but who happens to be a powerful esper. Mob is determined to live a normal life and keeps his ESP suppressed, but when his emotions surge to a level of 100%, something terrible happens to him! As he's surrounded by false espers, evil spirits, and mysterious organizations, what will Mob think? What choices will he make?", + "posterPath": "/vR7hwaGQ0ySRoq1WobiNRaPs4WO.jpg", + "backdropPath": "/kP5duNJEbTfXpBs6CITsaZ88pQi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-12", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.486, + "voteCount": 1222, + "popularity": 12.2299 + }, + { + "id": 160, + "title": "Teenage Mutant Ninja Turtles", + "originalTitle": "Teenage Mutant Ninja Turtles", + "overview": "Four turtles fall into the sewers and are befriended by Hamato Yoshi a Japanese man sent to New York who was forced to live in the sewers. One day he sees a strange green glow which transforms the four turtles into human-like creatures. Hamato (now Master Splinter) changes into a giant rat from the green glow and teaches the turtles the skills of the ninja as they team up with news reporter April O'Neil to battle against Yoshi's arch enemy Shredder and Krang, an alien warlord from Dimension X.", + "posterPath": "/AaihPizftZo5YCqzEgHMwkceaEo.jpg", + "backdropPath": "/s1Kr1RntP2b8MdUKTYJxNmcVEBP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1987-12-14", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.75, + "voteCount": 793, + "popularity": 12.2296 + }, + { + "id": 67744, + "title": "MINDHUNTER", + "originalTitle": "MINDHUNTER", + "overview": "An agent in the FBI's Elite Serial Crime Unit develops profiling techniques as he pursues notorious serial killers and rapists.", + "posterPath": "/fbKE87mojpIETWepSbD5Qt741fp.jpg", + "backdropPath": "/a906PH7CDmSOdS7kmnAgdWk5mhv.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2017-10-13", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.099, + "voteCount": 2770, + "popularity": 12.2217 + }, + { + "id": 4620, + "title": "Eureka", + "originalTitle": "Eureka", + "overview": "The sleepy Pacific Northwest town of Eureka is hiding a mysterious secret. The government has been relocating the world's geniuses and their families to this rustic town for years where innovation and chaos have lived hand in hand. U.S. Marshal Jack Carter stumbles upon this odd town after wrecking his car and becoming stranded there. When the denizens of the town unleash an unknown scientific creation, Carter jumps in to try to restore order and consequently learns of one of the country's best kept secrets.", + "posterPath": "/f2l5hUk63hPqYTucnFy2HmElFV0.jpg", + "backdropPath": "/8MQeyFsWrp2ILjbumtxrinmk7t4.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2006-07-18", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.769, + "voteCount": 669, + "popularity": 12.2118 + }, + { + "id": 162, + "title": "Night Court", + "originalTitle": "Night Court", + "overview": "An eccentric fun-loving judge presides over an urban night court and all the silliness going on there.", + "posterPath": "/bpEVtr4NCkbmTdponemKSjt9POc.jpg", + "backdropPath": "/bNYJxbtslqHdbNfIT9XXjbwEZuX.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1984-01-04", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 136, + "popularity": 12.2061 + }, + { + "id": 60863, + "title": "Haikyu!!", + "originalTitle": "ハイキュー!!", + "overview": "Inspired by a small-statured pro volleyball player, Shouyou Hinata creates a volleyball team in his last year of middle school. Unfortunately the team is matched up against the \"King of the Court\" Tobio Kageyama's team in their first tournament and inevitably lose. After the crushing defeat, Hinata vows to surpass Kageyama. After entering high school, Hinata joins the volleyball team only to find that Tobio has also joined.", + "posterPath": "/8WEr48swcqe89Zsy5sdrGCASlIg.jpg", + "backdropPath": "/3mBtXzyOIzh5zJNEgHqIIYTPb6n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1445, + "popularity": 12.2041 + }, + { + "id": 2304, + "title": "Thomas & Friends", + "originalTitle": "Thomas & Friends", + "overview": "Thomas & Friends is a British children's television series, which had its first broadcast on the ITV network on 4 September 1984. It is based on The Railway Series of books by the Reverend Wilbert Awdry and his son, Christopher Awdry. These books deal with the adventures of a group of anthropomorphised locomotives and road vehicles who live on the fictional Island of Sodor. The books were based on stories Wilbert told to entertain his son, Christopher during his recovery from measles. From Series one to four, many of the stories are based on events from Awdry's personal experience.", + "posterPath": "/ovJvWQ8E8aYShcRlTwpqKhuq7FA.jpg", + "backdropPath": "/wIe1HL7oMNwyltsqqx2sCPwNl4w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1984-10-09", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 137, + "popularity": 12.2024 + }, + { + "id": 15819, + "title": "Warehouse 13", + "originalTitle": "Warehouse 13", + "overview": "After saving the life of the President, two secret service agents - Myka Bering and Pete Lattimer - find themselves assigned to the top secret Warehouse 13. The Warehouse is a massive, top secret facility that houses dangerous and fantastical objects. Together, Pete and Myka along with fellow agents Claudia, Steve Jinks and Warehouse caretaker Artie, must recover artifacts from around the globe before they can cause catastrophic damage.", + "posterPath": "/vK6KMBDUzZdwQcxPkfPO1iUSN0r.jpg", + "backdropPath": "/fhmpYAxnF17CRWRcAWSeDRPWJi5.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2009-07-07", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.688, + "voteCount": 724, + "popularity": 12.2023 + }, + { + "id": 2179, + "title": "Quincy, M.E.", + "originalTitle": "Quincy, M.E.", + "overview": "Los Angeles County medical examiner Quincy routinely engages in police investigations.", + "posterPath": "/e0bsxZqhE5fhRjaX2LKu8GuKccE.jpg", + "backdropPath": "/lcuacKO5gwY2IjdmgAoEgSlsaTV.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1976-10-03", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 7.504, + "voteCount": 113, + "popularity": 12.1931 + }, + { + "id": 117067, + "title": "KinnPorsche: The Series", + "originalTitle": "รักโคตรร้าย สุดท้ายโคตรรัก", + "overview": "Porsche agrees to guard mafia heir Kinn for his family's sake, but fighting off danger soon turns into fighting his own feelings.", + "posterPath": "/hdPLe50HbZHsETXQRcIP8gw7cKz.jpg", + "backdropPath": "/wTgDY1izbDCbdgsNS1ujLk7lepG.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2022-04-02", + "releaseYear": "2022", + "originalLanguage": "th", + "voteAverage": 8.673, + "voteCount": 150, + "popularity": 12.1927 + }, + { + "id": 4551, + "title": "America's Got Talent", + "originalTitle": "America's Got Talent", + "overview": "A weekly talent competition where an array of performers – from singers and dancers, to comedians and novelty acts – vie for a $1 million cash prize.", + "posterPath": "/nd5FjRlEdC05GUK4svGj7TpyR2b.jpg", + "backdropPath": "/p7a2f9gewbzG2Hp3iUiqNRyeVYi.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2006-06-21", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 264, + "popularity": 12.1826 + }, + { + "id": 4589, + "title": "Arrested Development", + "originalTitle": "Arrested Development", + "overview": "The story of a wealthy family that lost everything, and the one son who had no choice but to keep them all together.", + "posterPath": "/p4r4RD7RsNcJVoz0H6z3dBoTBtW.jpg", + "backdropPath": "/8qn0u64JXSgnGKe2KkKqrfH7V84.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-11-02", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.932, + "voteCount": 1554, + "popularity": 12.1686 + }, + { + "id": 1900, + "title": "LIVE with Kelly and Mark", + "originalTitle": "LIVE with Kelly and Mark", + "overview": "A morning talk show with A-list celebrity guests, top-notch performances and one-of-a-kind segments that are unrivaled on daytime television, plus spontaneous, hilarious and unpredictable talk.", + "posterPath": "/hBkyypWN3EcOzkozatiCm5VeaG.jpg", + "backdropPath": "/eNjzPQsNNPd8zluKTpv7Axhk8p4.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1988-09-05", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 48, + "popularity": 12.1655 + }, + { + "id": 39852, + "title": "The Sinner", + "originalTitle": "The Sinner", + "overview": "In a small New York town, a haunted detective hunts for answers about perplexing crimes while wrestling with his own demons.", + "posterPath": "/rmibFGdqOe0kKKhPls0jVOdZCWw.jpg", + "backdropPath": "/lVWku9LX2qdJTtAbRzaCDhhWeTK.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-08-02", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.485, + "voteCount": 1166, + "popularity": 12.1528 + }, + { + "id": 61175, + "title": "Steven Universe", + "originalTitle": "Steven Universe", + "overview": "A young boy takes his mother's place in a group of gemstone-based beings, and must learn to control his powers.", + "posterPath": "/gKUuGaeZ9qiJ9Spoq0LrANQSN5x.jpg", + "backdropPath": "/e5YSF0Inv9eL77jv2WQtNOOB3Bg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-11-04", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 1271, + "popularity": 12.1382 + }, + { + "id": 95205, + "title": "The Equalizer", + "originalTitle": "The Equalizer", + "overview": "Robyn McCall, an enigmatic former CIA operative with a mysterious background, uses her extensive skills to help those with nowhere else to turn.", + "posterPath": "/oxJG9F16AUji71jpPxkEOBWanMP.jpg", + "backdropPath": "/z8CzVVAGHRRmgJQ6ZRjr8OuCmlj.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2021-02-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 309, + "popularity": 12.1266 + }, + { + "id": 70625, + "title": "Trace", + "originalTitle": "След", + "overview": "", + "posterPath": "/p7srucCIMPIzKvvVgXQfxruQ4BA.jpg", + "backdropPath": "/ybXAS0uzG26P8JxXrWEUo7PUbCY.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80 + ], + "genres": [ + "Mystery", + "Crime" + ], + "releaseDate": "2007-09-03", + "releaseYear": "2007", + "originalLanguage": "ru", + "voteAverage": 6.727, + "voteCount": 11, + "popularity": 12.107 + }, + { + "id": 46437, + "title": "Kingdom", + "originalTitle": "キングダム", + "overview": "In the Warring States period, young orphan Xin vows to aid King Zheng of Qin in his quest to unify China by becoming a general himself.", + "posterPath": "/dehuJJkKo50nYvCYppigrWejqLe.jpg", + "backdropPath": "/5CGM0vQpq0QBcslUXqoo0unlGPZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2012-06-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 46, + "popularity": 12.1019 + }, + { + "id": 61381, + "title": "black-ish", + "originalTitle": "black-ish", + "overview": "A family man struggles to gain a sense of cultural identity while raising his kids in a predominantly white, upper-middle-class neighborhood.", + "posterPath": "/ga1zJ6UejPIfyL8BA22pK6dqsC8.jpg", + "backdropPath": "/52qTID1ckURhq8MFaV0x7ISRFiE.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-09-24", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.13, + "voteCount": 324, + "popularity": 12.0912 + }, + { + "id": 2406, + "title": "Crossing Jordan", + "originalTitle": "Crossing Jordan", + "overview": "Crossing Jordan is an American television crime/drama series that stars Jill Hennessy as Jordan Cavanaugh, M.D., a crime-solving forensic pathologist employed in the Massachusetts Office of the Chief Medical Examiner.", + "posterPath": "/bywFoHoLZvW2vxDc7n4ToAKkR0y.jpg", + "backdropPath": "/1fLufp1ZI2cofG4rV2xYYk4ahSS.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-09-24", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.169, + "voteCount": 154, + "popularity": 12.0751 + }, + { + "id": 31724, + "title": "Code Geass: Lelouch of the Rebellion", + "originalTitle": "コードギアス 反逆のルルーシュ", + "overview": "Japan has been invaded and conquered by the Britannian Empire. Japan is now known as Area 11 and its citizens known as Elevens. The Britannian Empire takes away Japan's autonomous power and imposes its rule through the use of Knightmares. The Empire's rule has never faltered, but cracks have begun to show...", + "posterPath": "/x316WCogkeIwNY4JR8zTCHbI2nQ.jpg", + "backdropPath": "/5hS2OIuZSKGkR8R5l3bY5zh04Ce.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2006-10-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.339, + "voteCount": 828, + "popularity": 12.0493 + }, + { + "id": 1489, + "title": "Jimmy Kimmel Live!", + "originalTitle": "Jimmy Kimmel Live!", + "overview": "Jimmy Kimmel Live! is an American late-night talk show, created and hosted by Jimmy Kimmel and broadcast on ABC.", + "posterPath": "/bGB6bEbG4qL22C1SFupkdAxYC9i.jpg", + "backdropPath": "/zjJNOVA3SPjhGtGhGN8POG991bg.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2003-01-26", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.461, + "voteCount": 191, + "popularity": 12.0397 + }, + { + "id": 4414, + "title": "Highlander: The Series", + "originalTitle": "Highlander: The Series", + "overview": "Duncan MacLeod cannot die -- he is a 400-year-old immortal, who has seen his share of humanity's history. Still, he risks his life in battle against other immortals and tries to save people from harm.", + "posterPath": "/rlJzuTbdMAa6jOdpKxxTx8KVN88.jpg", + "backdropPath": "/6GzNuxHWvaEzNNVZ5xI0LsqxFCl.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1992-10-03", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 411, + "popularity": 12.0271 + }, + { + "id": 43348, + "title": "Pablo Escobar: The Drug Lord", + "originalTitle": "Pablo Escobar: El Patrón del Mal", + "overview": "Pablo is a man with a natural ability for business. Early in his life, Pablo is introduced to the business of cocaine and the power it yields. A young life of crime lands Pablo in and out of jail as he builds his criminal empire. Pablo expands his power through politics but it is not long before his conflicts as a Congressman and a drug lord collide. Pablo has his enemies executed, but not before the United States activates its own war on the Medellin cartel.", + "posterPath": "/5u02bo70uzUFpEV9Pd0lFkLA9Es.jpg", + "backdropPath": "/1QcHCReXoEIV7WKGaPSUk6ZfK17.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2012-05-28", + "releaseYear": "2012", + "originalLanguage": "es", + "voteAverage": 7.629, + "voteCount": 3660, + "popularity": 12.0065 + }, + { + "id": 14814, + "title": "Keeping Up with the Kardashians", + "originalTitle": "Keeping Up with the Kardashians", + "overview": "A peek inside the exploits and privileged private lives of the blended Kardashian-Jenner family, including sisters Kim, Kourtney and Khloé.", + "posterPath": "/nddXOC8wYpIDv7giLzjjqIg8WDA.jpg", + "backdropPath": "/qnTBxxv7q4xVwgZBLb0vtILLelh.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2007-10-14", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.379, + "voteCount": 914, + "popularity": 11.9876 + }, + { + "id": 7482, + "title": "Leverage", + "originalTitle": "Leverage", + "overview": "A five-person team comprised of a thief, a grifter, a hacker, and a retrieval specialist, led by former insurance investigator Nathan Ford, use their skills to fight corporate and governmental injustices inflicted on ordinary citizens.", + "posterPath": "/t5KJXooBqJLKUClpvYuSKNrcYGy.jpg", + "backdropPath": "/giluKEg4kEG9QlM2E2lJ4ZjMXVo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10759, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2008-12-07", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 408, + "popularity": 11.9765 + }, + { + "id": 496, + "title": "Family Ties", + "originalTitle": "Family Ties", + "overview": "Former 1960s flower children Steven and Elyse Keaton raise their conservative son Alex, daughters Mallory and Jennifer, and later, youngest child Andrew.", + "posterPath": "/vxERANdozlMKgl7VqGxbAvZ6u1O.jpg", + "backdropPath": "/m4G421LlrPxqdtq980PLM91u38Y.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1982-09-22", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.226, + "voteCount": 249, + "popularity": 11.9728 + }, + { + "id": 241454, + "title": "Love Next Door", + "originalTitle": "엄마친구아들", + "overview": "A woman attempting to reboot her life returns to Korea and becomes entangled with her childhood friend — with whom she shares a complicated history.", + "posterPath": "/hikbLeofw2epfaEJptSkQ6b22IV.jpg", + "backdropPath": "/blNanzce8lKnrfjDqWLdPNPy7mo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-08-17", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.038, + "voteCount": 208, + "popularity": 11.9712 + }, + { + "id": 75006, + "title": "The Umbrella Academy", + "originalTitle": "The Umbrella Academy", + "overview": "A dysfunctional family of superheroes comes together to solve the mystery of their father's death, the threat of the apocalypse and more.", + "posterPath": "/qhcwrnnCnN8NE1N6XXKHFmveJR9.jpg", + "backdropPath": "/gHJhN9AJV4PmJ7YpLFa9ldDWuG8.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-02-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.501, + "voteCount": 9794, + "popularity": 11.9685 + }, + { + "id": 60603, + "title": "The Curse of Oak Island", + "originalTitle": "The Curse of Oak Island", + "overview": "Follow brothers Marty and Rick Lagina through their effort to find the speculated - and as of yet undiscovered - buried treasure believed to have been concealed through extraordinary means on Oak Island.", + "posterPath": "/gtkxUUmHDF31iDUOlxQqUXmiU71.jpg", + "backdropPath": "/5pN8ouV9pWL5M7pSbz22IEXtNO8.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10759, + 10764, + 99 + ], + "genres": [ + "Mystery", + "Action & Adventure", + "Reality", + "Documentary" + ], + "releaseDate": "2014-01-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 147, + "popularity": 11.9665 + }, + { + "id": 81723, + "title": "The Gilded Age", + "originalTitle": "The Gilded Age", + "overview": "It’s 1882 and the Gilded Age is in full swing when Marian Brook, a young orphaned daughter of a Southern general, moves in with her rigidly conventional aunts in New York City. With the help of Peggy Scott, an African-American woman masquerading as her maid, Marian gets caught up in the dazzling lives of her rich neighbors as she struggles to decide between adhering to the rules or forging her own path.", + "posterPath": "/4zXlBCc1rNTDtrfMCBFIGKWlwnC.jpg", + "backdropPath": "/jPcQlhoJ3LrOfKwCvGD58P8rC5b.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-01-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.657, + "voteCount": 236, + "popularity": 11.9594 + }, + { + "id": 62875, + "title": "BUNK'D: Learning the Ropes", + "originalTitle": "BUNK'D: Learning the Ropes", + "overview": "Siblings Emma, Ravi, and Zuri Ross leave their extravagant New York City penthouse once again to return to Camp Kikiwaka, a rustic summer camp in Maine where their parents met as teenagers.", + "posterPath": "/at3gMIGpvoofKMgmsnhVFgmBnAe.jpg", + "backdropPath": "/3vcDGyCiot23FqjhAxnZmwvItOH.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-07-31", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 131, + "popularity": 11.9504 + }, + { + "id": 2398, + "title": "Girlfriends", + "originalTitle": "Girlfriends", + "overview": "The series revolves around the friendship of four African-American women in different phases of their lives. They explore the many trials and tribulations that most women face today such as relationships, family, friends and other current issues that will interest most women. Whether it’s getting over a divorce, finding a career, or looking for true love, Girlfriends delivers along with comedy and wit.", + "posterPath": "/buFnsyWEg4pPR7dco5Vbsm6HCIY.jpg", + "backdropPath": "/lJEItmoc7bdqvA0yS5quuBIwW0N.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2000-09-11", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.333, + "voteCount": 42, + "popularity": 11.9408 + }, + { + "id": 8358, + "title": "Lie to Me", + "originalTitle": "Lie to Me", + "overview": "The world's leading deception researcher, Dr. Cal Lightman, studies facial expression, body language and tone of voice to determine when a person is lying and why, which helps law enforcement and government agencies uncover the truth. But his skills also make it easier for him to deceive others.", + "posterPath": "/rrTeGVXHqppoTUydoWV6bCzZs1W.jpg", + "backdropPath": "/1GY7ih45OzZKjNCJ97XHxBCtuSU.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2009-01-21", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.895, + "voteCount": 1608, + "popularity": 11.9244 + }, + { + "id": 4046, + "title": "Spooks", + "originalTitle": "Spooks", + "overview": "Tense drama series about the different challenges faced by the British Security Service as they work against the clock to safeguard the nation. The title is a popular colloquialism for spies, and the series follows the work of a group of MI5 officers based at the service's Thames House headquarters, in a highly secure suite of offices known as The Grid.", + "posterPath": "/5kODxCYihuM49oQWke6GfHdsRT6.jpg", + "backdropPath": "/huWw8v01wsznHGPek2pJITV57hO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2002-05-13", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 135, + "popularity": 11.9015 + }, + { + "id": 71715, + "title": "Good Girls", + "originalTitle": "Good Girls", + "overview": "Three \"good girl\" suburban wives and mothers suddenly find themselves in desperate circumstances and decide to stop playing it safe and risk everything to take their power back.", + "posterPath": "/wpgg6G3UHXepH2Zgpt4W60d6gxR.jpg", + "backdropPath": "/csOIulXwQxsuCFp3ZZ9cYkJmCwH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2018-02-26", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 659, + "popularity": 11.898 + }, + { + "id": 600, + "title": "Renegade", + "originalTitle": "Renegade", + "overview": "Framed for murder, Detective Reno Raines becomes a fugitive bounty hunter who fights crime while trying to clear his name. His troubles began after he testified about police corruption, leading Lt. Donald Dixon to set him up.", + "posterPath": "/9ESXaOpVv2EsORITmUz9z26hqC8.jpg", + "backdropPath": "/8LaQ8T9iMQeU207awX2RPWLSTEf.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "1992-09-19", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 135, + "popularity": 11.8947 + }, + { + "id": 2026, + "title": "Judging Amy", + "originalTitle": "Judging Amy", + "overview": "Judging Amy is an American television drama that was telecast from September 19, 1999, through May 3, 2005, on CBS-TV. This TV series starred Amy Brenneman and Tyne Daly. Its main character is a judge who serves in a family court, and in addition to the family-related cases that she adjudicates, many episodes of the show focus on her own experiences as a divorced mother, and on the experiences of her mother, a social worker who works in the field of child welfare. This series was based on the life experiences of Brenneman's mother.", + "posterPath": "/5Znl8HNStdoHHy0hqdljpDZnVRn.jpg", + "backdropPath": "/AooMxrbknmeFNabPL8Laas4txSn.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1999-09-19", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.494, + "voteCount": 82, + "popularity": 11.8762 + }, + { + "id": 5133, + "title": "Leave It to Beaver", + "originalTitle": "Leave It to Beaver", + "overview": "Leave It to Beaver is an American television situation comedy about an inquisitive and often naïve boy named Theodore \"The Beaver\" Cleaver and his adventures at home, in school, and around his suburban neighborhood. The show also starred Barbara Billingsley and Hugh Beaumont as Beaver's parents, June and Ward Cleaver, and Tony Dow as Beaver's brother Wally. The show has attained an iconic status in the US, with the Cleavers exemplifying the idealized suburban family of the mid-20th century.", + "posterPath": "/1Tl9FH0gFmaFDyW4J3eAowMwt8O.jpg", + "backdropPath": "/x8W6sQ89q6WlbkGQDLZjkso8AjR.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1957-10-04", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 6.873, + "voteCount": 80, + "popularity": 11.8621 + }, + { + "id": 537, + "title": "Hey Arnold!", + "originalTitle": "Hey Arnold!", + "overview": "The daily life of Arnold--a fourth-grader with a wild imagination, street smarts and a head shaped like a football.", + "posterPath": "/c1Yv042okfvMdT1Ulwlat9Tj70B.jpg", + "backdropPath": "/6neiLkVRYIVbbRTLhlSLtt8o5di.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1996-10-07", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 8.017, + "voteCount": 948, + "popularity": 11.837 + }, + { + "id": 61378, + "title": "Madam Secretary", + "originalTitle": "Madam Secretary", + "overview": "After years away from the CIA, Elizabeth McCord is pulled back into the political arena. The newly appointed Secretary of State is tough, fair, and smart, driving international diplomacy, wrangling office politics, and circumventing protocol as she negotiates global and domestic issues, both at the White House and at home.", + "posterPath": "/6Nl1ablo4DNTLb4ZH7Mycz81AEt.jpg", + "backdropPath": "/jzkTau3O7CfG3LkKopxkNWPZf8d.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2014-09-21", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 322, + "popularity": 11.8362 + }, + { + "id": 43982, + "title": "Line of Duty", + "originalTitle": "Line of Duty", + "overview": "A drama about the investigations of AC-12, a controversial police anticorruption unit.", + "posterPath": "/ysGUKnnR1pGYIndjXWcjupGbWpS.jpg", + "backdropPath": "/5ZLEFPayOJr3KhXPoAnLWdVQJem.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2012-06-26", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.231, + "voteCount": 450, + "popularity": 11.8306 + }, + { + "id": 271885, + "title": "As You Stood By", + "originalTitle": "당신이 죽였다", + "overview": "When two women plot to end an abusive marriage through murder, an unexpected visitor arrives — threatening to shatter everything they've carefully planned.", + "posterPath": "/3ciqsMz21p8xp5udriFjRGM5OYs.jpg", + "backdropPath": "/7uVNWsjnmkvqpeqWHq5qpLBv3wd.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2025-11-07", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8, + "voteCount": 47, + "popularity": 11.8225 + }, + { + "id": 74415, + "title": "Grizzy & the Lemmings", + "originalTitle": "Grizzy et les Lemmings", + "overview": "The forest ranger's house is the only area of human civilization in the middle of untamed wilderness in a vast natural reserve in Canada. When the ranger is away, a bear named Grizzy feels that the ranger's house is his territory, given that bears sit at the top of the food chain. After making his way inside the home, Grizzy takes advantage of all the modern conveniences there, including a comfortable sofa, air conditioning and fully equipped kitchen. He's not alone, though, because a group of small creatures called lemmings also populate the ranger's house when he is away. Because Grizzy and the lemmings are not civilized enough to live together in peace, it becomes an atmosphere of madness when the two sides try to outdo each other with tricks.", + "posterPath": "/vpzSerTbEIspXUndYM7MGhhX7dm.jpg", + "backdropPath": "/b2egfASudQeAoTzObV8XAj5Grw0.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2016-12-31", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 7.2, + "voteCount": 29, + "popularity": 11.8142 + }, + { + "id": 35610, + "title": "InuYasha", + "originalTitle": "犬夜叉", + "overview": "Kagome Higurashi is a modern day young girl who lives with her family by the old Higure shrine. Unbeknownst to Kagome, she is the reincarnation of priestess Kikyo and posseses the \"Jewel of Four Souls\" (the Shikon jewel). One ill-fated day, Kagome locates an ancient well near her home and is abruptly transported through the well and into a feudal Japan, inhabited by demons. There, she encounters Inuyasha, son of a powerful demon father and a human mother, who is pinned to a tree by an enchanted arrow.", + "posterPath": "/jgvW9n0EwKtq9nbztWhyTvvoqjS.jpg", + "backdropPath": "/r5xkqlEBhzfffQjxHRMuXBrwKiv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Mystery" + ], + "releaseDate": "2000-10-16", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.576, + "voteCount": 2046, + "popularity": 11.8053 + }, + { + "id": 117581, + "title": "Ginny & Georgia", + "originalTitle": "Ginny & Georgia", + "overview": "Free-spirited Georgia and her two kids, Ginny and Austin, move north in search of a fresh start but find that the road to new beginnings can be bumpy.", + "posterPath": "/vOwunzW4dx3n0J5mH40n9jTRSwY.jpg", + "backdropPath": "/lPmUu3xkoksz3xsa1feIUoOBZrg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-02-24", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 1726, + "popularity": 11.7901 + }, + { + "id": 155, + "title": "3rd Rock from the Sun", + "originalTitle": "3rd Rock from the Sun", + "overview": "The high commander of an alien expedition lands on Earth -- what he considers to be the least-important planet -- in human form as Dick Solomon. Along for the ride are his alien compatriots Harry, Sally and Tommy -- who is the eldest of the group but is now angrily trapped in a teen's body.", + "posterPath": "/sUB4lZghNnwQywKqgjIfJsyBqI2.jpg", + "backdropPath": "/adsc78pBssCRr3iTgzxgdCPI1v2.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10765, + 35, + 18 + ], + "genres": [ + "Family", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "1996-01-09", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 535, + "popularity": 11.7704 + }, + { + "id": 71026, + "title": "Super Wings", + "originalTitle": "출동! 슈퍼윙스", + "overview": "An action-packed preschool series about an adorable jet plane named Jett who travels the world delivering packages to children. On every delivery, Jett encounters a new problem that the he and his friends the Super Wings must work together to solve!", + "posterPath": "/lu2DNsIQgn1Jb6djHvrqJSUQXXl.jpg", + "backdropPath": "/vwgC68MFTgrLaTBaXFnsVAb6y1W.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2014-09-01", + "releaseYear": "2014", + "originalLanguage": "ko", + "voteAverage": 6.4, + "voteCount": 18, + "popularity": 11.7599 + }, + { + "id": 1021, + "title": "Casualty", + "originalTitle": "Casualty", + "overview": "Drama series about the staff and patients at Holby City Hospital's emergency department, charting the ups and downs in their personal and professional lives.", + "posterPath": "/xori6j1eOdXwD5z213t2o8NMcvu.jpg", + "backdropPath": "/rAw00EgDQSA89667sgpe4uawCMN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1986-09-06", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 83, + "popularity": 11.7289 + }, + { + "id": 252, + "title": "Everybody Hates Chris", + "originalTitle": "Everybody Hates Chris", + "overview": "Chris is a teenager growing up as the eldest of three children in Brooklyn, New York during the early 1980s. Uprooted to a new neighborhood and bused to a predominantly white middle school two-hours away by his strict, hard-working parents, Chris struggles to find his place while keeping his siblings in line at home and surmounting the challenges of junior high.", + "posterPath": "/4BYXh0cY3AyyUB05CTLVJO5FjCM.jpg", + "backdropPath": "/qji729gwCW88RpIIWidlaLTul3V.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-09-22", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.073, + "voteCount": 1068, + "popularity": 11.7223 + }, + { + "id": 4316, + "title": "Combat!", + "originalTitle": "Combat!", + "overview": "Combat! is an American television program that originally aired on ABC from 1962 until 1967. The show covered the grim lives of a squad of American soldiers fighting the Germans in France during World War II. The program starred Rick Jason as platoon leader Second Lieutenant Gil Hanley and Vic Morrow as Sergeant \"Chip\" Saunders.", + "posterPath": "/4Xk9VQ5Xa6jkRHBINkHiRzRNgde.jpg", + "backdropPath": "/gRm6VeU3glb0bV0wPJYaTysdfbz.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18 + ], + "genres": [ + "War & Politics", + "Drama" + ], + "releaseDate": "1962-10-02", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 105, + "popularity": 11.7169 + }, + { + "id": 4775, + "title": "Would I Lie to You?", + "originalTitle": "Would I Lie to You?", + "overview": "A comedic panel show featuring team captains Lee Mack and David Mitchell plus two guests per side, hosted by Rob Brydon (formerly Angus Deayton). Each person must reveal embarrassing facts and outrageous lies during a series of different rounds including \"Home Truths\", \"This Is My...\" and \"Quickfire Lies\". It is up to the opposing team to tell tall tales from fantastic facts.", + "posterPath": "/aKwbYr95WANVjAzG8VtvadYWfLH.jpg", + "backdropPath": "/4YNm4rg9Fu9WHBLhSYyjHLUqAQK.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-06-16", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 122, + "popularity": 11.7069 + }, + { + "id": 111453, + "title": "Ghum Hai Kisikey Pyaar Meiin", + "originalTitle": "घुम है किसिकी प्यार में", + "overview": "Sai Joshi, a fearless girl who aspires to become a doctor, marries an IPS officer, Virat Chavan, pretending to be a deal. The story revolves around the life of Sai in orthodox joint family of Virat and how Sai and Virat fall in love.", + "posterPath": "/u3NVGYCpkAgBArXogLuHPfpSNwG.jpg", + "backdropPath": "/5QFtLmg5A6lnuowk1OGVlQKDiud.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766, + 10751 + ], + "genres": [ + "Drama", + "Soap", + "Family" + ], + "releaseDate": "2020-10-05", + "releaseYear": "2020", + "originalLanguage": "hi", + "voteAverage": 5.7, + "voteCount": 70, + "popularity": 11.6934 + }, + { + "id": 2883, + "title": "Dark Shadows", + "originalTitle": "Dark Shadows", + "overview": "Dark Shadows is an American gothic soap opera that originally aired weekdays on the ABC television network, from June 27, 1966, to April 2, 1971. The show was created by Dan Curtis. The story bible, which was written by Art Wallace, does not mention any supernatural elements. It was unprecedented in daytime television when ghosts were introduced about six months after it began.\n\nThe series became hugely popular when vampire Barnabas Collins appeared a year into its run. Dark Shadows also featured werewolves, zombies, man-made monsters, witches, warlocks, time travel, and a parallel universe. A small company of actors each played many roles; indeed, as actors came and went, some characters were played by more than one actor. Major writers besides Art Wallace included Malcolm Marmorstein, Sam Hall, Gordon Russell, and Violet Welles.", + "posterPath": "/eRtnI7qTJIiPUmlY3J8TTM3jlT7.jpg", + "backdropPath": "/fmFsm4dq02k2Xxs7M887unPAiXd.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10766 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Soap" + ], + "releaseDate": "1966-06-27", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 7.261, + "voteCount": 90, + "popularity": 11.684 + }, + { + "id": 63404, + "title": "Taskmaster", + "originalTitle": "Taskmaster", + "overview": "Greg Davies is the Taskmaster, and with the help of his ever-loyal assistant Alex Horne, they will set out to test the wiles, wit, wisdom and skills of five hyper-competitive comedians. Who will be crowned the Taskmaster champion in this brand new game show?", + "posterPath": "/oHLZyN7G7EpXCHxYdpMcuUNCUgS.jpg", + "backdropPath": "/pQMDBrA1AdMLK1mZwNvQSRDxQGP.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-07-28", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.226, + "voteCount": 179, + "popularity": 11.668 + }, + { + "id": 125935, + "title": "Abbott Elementary", + "originalTitle": "Abbott Elementary", + "overview": "In this workplace comedy, a group of dedicated, passionate teachers — and a slightly tone-deaf principal — are brought together in a Philadelphia public school where, despite the odds stacked against them, they are determined to help their students succeed in life. Though these incredible public servants may be outnumbered and underfunded, they love what they do — even if they don’t love the school district’s less-than-stellar attitude toward educating children.", + "posterPath": "/nBe1e3JJEZ6veGrVXNF0fRoLu56.jpg", + "backdropPath": "/asDINJT3b7tEa76uWI1rZ5TWdJF.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-12-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 240, + "popularity": 11.6677 + }, + { + "id": 2808, + "title": "Totally Spies!", + "originalTitle": "Totally Spies !", + "overview": "Totally Spies! depicts three girlfriends 'with an attitude' who have to cope with their daily lives at high school as well as the unpredictable pressures of international espionage. They confront the most intimidating - and demented - of villains, each with their own special agenda for demonic, global rude behavior.", + "posterPath": "/zSu4xj0WKh9W6V2QQl3qPBKMaoI.jpg", + "backdropPath": "/gbmN2y9Dqm6XKEev1kd8GkGLLn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2002-04-03", + "releaseYear": "2002", + "originalLanguage": "fr", + "voteAverage": 7.2, + "voteCount": 253, + "popularity": 11.6617 + }, + { + "id": 4500, + "title": "The Wonder Years", + "originalTitle": "The Wonder Years", + "overview": "The story of Kevin Arnold facing the trials and tribulations of youth while growing up during the 1960s and 70s. Told through narration from an adult Kevin, Kevin faces the difficulties of maintaining relationships and friendships on his enthralling journey into adulthood.", + "posterPath": "/tkaduqdhFrF1vp8L55OJfB5jw8Z.jpg", + "backdropPath": "/XuJi5lKkYLCFpJprfSUZveRof7.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1988-01-31", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 8.327, + "voteCount": 1052, + "popularity": 11.6436 + }, + { + "id": 36301, + "title": "Hamburg Dockland", + "originalTitle": "Notruf Hafenkante", + "overview": "Shows the interaction between Hamburg police officers and paramedics.", + "posterPath": "/JSNSFn5vIIkdZnshTbNra4bcrZ.jpg", + "backdropPath": "/pJuH3WLjEqIrsztrV9t8a0lmRS7.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2007-01-04", + "releaseYear": "2007", + "originalLanguage": "de", + "voteAverage": 6, + "voteCount": 14, + "popularity": 11.6351 + }, + { + "id": 12637, + "title": "Rebelde", + "originalTitle": "Rebelde", + "overview": "Six teenagers with different lives and personalities attend a prominent private school with only one thing in common: their vocation and passion for music.", + "posterPath": "/kQHXg2BOiODkF4yVI75NcodMmAJ.jpg", + "backdropPath": "/4nehqanAuNGF0vwbaGbHhNNiqGX.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 35, + 18 + ], + "genres": [ + "Soap", + "Comedy", + "Drama" + ], + "releaseDate": "2004-10-04", + "releaseYear": "2004", + "originalLanguage": "es", + "voteAverage": 8.406, + "voteCount": 5176, + "popularity": 11.6291 + }, + { + "id": 5375, + "title": "Emergency!", + "originalTitle": "Emergency!", + "overview": "The crew of Los Angeles County Fire Department Station 51, particularly the paramedic team, and Rampart Hospital respond to emergencies in their operating area.", + "posterPath": "/or94yBr8bwDPYYY3n8OIu0Q32S3.jpg", + "backdropPath": "/8hMDtSWCZPtD5iZIDLDpNkGfaCi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1972-01-22", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 46, + "popularity": 11.6073 + }, + { + "id": 45782, + "title": "Sword Art Online", + "originalTitle": "ソードアート・オンライン", + "overview": "In the near future, a Virtual Reality Massive Multiplayer Online Role-Playing Game (VRMMORPG) called Sword Art Online has been released where players control their avatars with their bodies using a piece of technology called Nerve Gear. One day, players discover they cannot log out, as the game creator is holding them captive unless they reach the 100th floor of the game's tower and defeat the final boss. However, if they die in the game, they die in real life. Their struggle for survival starts now...", + "posterPath": "/9m8bFIXPg26taNrFSXGwEORVACD.jpg", + "backdropPath": "/t61TOLBPE2hgtVF7FtRu4M1Tuq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2012-07-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.175, + "voteCount": 2007, + "popularity": 11.5982 + }, + { + "id": 71738, + "title": "The Orville", + "originalTitle": "The Orville", + "overview": "Follow the crew of the not-so-functional exploratory ship in the Earth's interstellar fleet, 400 years in the future.", + "posterPath": "/78xnHh9H5wYcUeZoB0bt1UgInAW.jpg", + "backdropPath": "/2Qg2fViQzWenpUaMjhv0kNhCbE9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10765 + ], + "genres": [ + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-09-10", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.62, + "voteCount": 1304, + "popularity": 11.589 + }, + { + "id": 90660, + "title": "KENGAN ASHURA", + "originalTitle": "ケンガンアシュラ", + "overview": "Ohma Tokita enters a hidden world where corporate disputes are settled in brutal gladiator bouts. Forget the money, he just wants to fight — and win.", + "posterPath": "/tqR96OMBKzHNCNwJB3f3NsCkXbL.jpg", + "backdropPath": "/wJtrctuWTKgIi45zLw9tTjWQFY3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-31", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.348, + "voteCount": 1004, + "popularity": 11.5869 + }, + { + "id": 42444, + "title": "Saint Seiya", + "originalTitle": "聖闘士星矢", + "overview": "Ages ago, the goddess Athena was served by fighters called Saints who channeled the power of the Cosmos within them. Now a youth named Seiya has trained to become a Saint himself by earning the mystical Cloth of Pegasus. He is joined by other Saints with Cloths of their own to fight for Athena.", + "posterPath": "/dhtiYYbob8saEUFWle3aWgVY28M.jpg", + "backdropPath": "/sMJD1x7JH3I7tRgaPe4hoUjzZ6K.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1986-10-11", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 8.47, + "voteCount": 1361, + "popularity": 11.5757 + }, + { + "id": 87083, + "title": "Formula 1: Drive to Survive", + "originalTitle": "Formula 1: Drive to Survive", + "overview": "Drivers, managers and team owners live life in the fast lane - both on and off the track - during one cutthroat season of Formula 1 racing.", + "posterPath": "/bTvsFzYK4ZdbcAIPSEJ3i8uLHSh.jpg", + "backdropPath": "/vMci8LZG3zY9oXIhGXzkFOg0Nu7.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2019-03-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 575, + "popularity": 11.5747 + }, + { + "id": 1274, + "title": "Six Feet Under", + "originalTitle": "Six Feet Under", + "overview": "When death is your business, what is your life? For the Fisher family, the world outside of their family-owned funeral home continues to be at least as challenging as—and far less predictable than—the one inside.", + "posterPath": "/sCgzLaVlFy8KxtxRPvt1V5MNTDb.jpg", + "backdropPath": "/5NOQNDMVXe8t5wIuY6r6b6iUXcc.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-06-03", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 1039, + "popularity": 11.5574 + }, + { + "id": 129552, + "title": "The Night Agent", + "originalTitle": "The Night Agent", + "overview": "Brought together by a midnight phone call, an FBI agent and a cybersecurity expert must unravel an ever-growing web of political conspiracies.", + "posterPath": "/4c5yUNcaff4W4aPrkXE6zr7papX.jpg", + "backdropPath": "/gklrevVndG98GHGDwfm8y8kxESo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "2023-03-23", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.748, + "voteCount": 1007, + "popularity": 11.5475 + }, + { + "id": 45857, + "title": "REBORN!", + "originalTitle": "家庭教師ヒットマン REBORN!", + "overview": "\"No Good\" Tsunayoshi Sawada is next in line to become boss of the powerful Vongola mafia family. The Vongolas' most powerful hitman, a cursed gun-toting infant named Reborn, is sent to teach Tsuna how to be a boss.", + "posterPath": "/6x7mx9f3ufHCC3pNgMoMnzVo3jw.jpg", + "backdropPath": "/3wztM15Bq7TX3Kc8IzApqsOQQjK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2006-10-07", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 178, + "popularity": 11.544 + }, + { + "id": 60802, + "title": "The Last Ship", + "originalTitle": "The Last Ship", + "overview": "Their mission is simple: Find a cure. Stop the virus. Save the world. When a global pandemic wipes out eighty percent of the planet's population, the crew of a lone naval destroyer must find a way to pull humanity from the brink of extinction.", + "posterPath": "/xH529hDtPxhslAEeCrN7gD64ZMX.jpg", + "backdropPath": "/yTUwiQLbr8gHDs8LuU28c8fBQFm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-06-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 991, + "popularity": 11.537 + }, + { + "id": 78483, + "title": "Kakuriyo -Bed & Breakfast for Spirits-", + "originalTitle": "かくりよの宿飯", + "overview": "After losing her grandfather, Aoi—a girl who can see spirits known as ayakashi—is suddenly approached by an ogre. Demanding she pay her grandfather’s debt, he makes a huge request: her hand in marriage! Refusing this absurd offer, Aoi decides to work at the Tenjin-ya bed and breakfast for the ayakashi to pay back what her family owes.", + "posterPath": "/r1SZWuuPcAKcX4EzuEhZsO7LtTk.jpg", + "backdropPath": "/nnivHHZijJw7lyQaQtEhOKKAqs5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 160, + "popularity": 11.5332 + }, + { + "id": 2405, + "title": "Johnny Bravo", + "originalTitle": "Johnny Bravo", + "overview": "Johnny Bravo tells the story of a biceps-bulging, karate-chopping free spirit who believes he is a gift from God to the women of the earth. Unfortunately for Johnny, everyone else sees him as a narcissistic Mama's boy with big muscles and even bigger hair. In short, he is the quintessential guy who 'just doesn't get it.' No matter what he does, or where he finds himself, he always winds up being his own worst enemy.", + "posterPath": "/obbdeoOk8XSXzJrWGiBbaeMMSMl.jpg", + "backdropPath": "/vv2FQBvol6JgL9AO8mwi8jaoaNv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1997-07-07", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.302, + "voteCount": 610, + "popularity": 11.5237 + }, + { + "id": 1711, + "title": "Strictly Come Dancing", + "originalTitle": "Strictly Come Dancing", + "overview": "A dance competition where celebrities compete to be crowned the winner. Who is kicked out of the competition each week is decided by the judges scores and viewer votes. Are today's celebrities fleet of foot or do they have two left feet?", + "posterPath": "/uu7VGiQzhBDjH6oh85QWa8Z5qXY.jpg", + "backdropPath": "/idvmgq7cOoDJ9NbcTx3ymjVOXHg.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "2004-05-15", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.829, + "voteCount": 38, + "popularity": 11.5231 + }, + { + "id": 65555, + "title": "Endless Love", + "originalTitle": "Kara Sevda", + "overview": "Two separate worlds lie on two sides of the road in a seaside town. Both too close and way too far from each other. What happens when two young people from these worlds fall in love? Kemal is one of the three children of a moderate family that lives in one of the inner neighborhoods of the town. His hand to mouth world has pinned all hopes on him. The motive of this world is not high aims, it’s to make a living and survive. It’s Kemal’s last year in mine engineering. His dreams are restricted with the truth and he doesn’t believe in miracles. Especially in miracles like love. Kemal is soon tested with his disbelief and Nihan hops into his monotonous life. After that day Kemal’s world turns upside down and he loses control.", + "posterPath": "/qEkRGqfoV9ziKiPLOa3fZaaYjhG.jpg", + "backdropPath": "/n0lQ50CfQhB8TfB9hzpeBrJBZ6L.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2015-10-14", + "releaseYear": "2015", + "originalLanguage": "tr", + "voteAverage": 7.826, + "voteCount": 688, + "popularity": 11.5057 + }, + { + "id": 31991, + "title": "WWE NXT", + "originalTitle": "WWE NXT", + "overview": "Wrestlers will portray heroes or villains as they follow a series of events that build tension and culminate in a wrestling match or series of matches.", + "posterPath": "/9nLBX5Bf7PW4FAaWJLXpFFdeTlV.jpg", + "backdropPath": "/8BaPwADDUeg752Dxf0VSUHMQuYc.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2010-02-23", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 123, + "popularity": 11.4889 + }, + { + "id": 2289, + "title": "seaQuest DSV", + "originalTitle": "seaQuest DSV", + "overview": "In the early 21st century, mankind has colonized the oceans. The United Earth Oceans Organization enlists Captain Nathan Bridger and the submarine seaQuest DSV to keep the peace and explore the last frontier on Earth.", + "posterPath": "/azbnl41bGqTcp2ajyfm9JYekEHp.jpg", + "backdropPath": "/bcVUkIKsnLozS5Yl8DnZ7nac3GM.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1993-09-12", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 143, + "popularity": 11.4644 + }, + { + "id": 2354, + "title": "Home and Away", + "originalTitle": "Home and Away", + "overview": "Home and Away is set in the fictional town of Summer Bay, a coastal town in New South Wales, and follows the personal and professional lives of the people living in the area. The show initially focused on the Fletcher family, Pippa and Tom Fletcher and their five foster children Frank Morgan, Carly Morris, Steven Matheson, Lynn Davenport and Sally Keating, who would go on to become one of the show's longest-running characters. The show also originally and currently focuses on the Stewart family. During the early 2000s, the central storylines focused on the Sutherlands and later, the Hunters. Home and Away had proved popular when it premiered in 1988 and had risen to become a hit in Australia, and after only a few weeks, the show tackled its first major and disturbing storyline, the rape of Carly Morris; it was one of the first shows to feature such storylines during the early timeslot. H&A has tackled many adult-themed and controversial storylines; something rarely found in its restricted timeslot.", + "posterPath": "/vn0eKMiG69bhQtxb7qLRo8SSqu5.jpg", + "backdropPath": "/pmAzkQJa993nIgPqFtVmOhStHXg.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1988-01-18", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 73, + "popularity": 11.4615 + }, + { + "id": 82596, + "title": "Emily in Paris", + "originalTitle": "Emily in Paris", + "overview": "When ambitious Chicago marketing exec Emily unexpectedly lands her dream job in Paris, she embraces a new life as she juggles work, friends and romance.", + "posterPath": "/qYGIf2QAhSIa5Xbf72QvLtte2e8.jpg", + "backdropPath": "/2p1qKfuUqvB1slMwNTjGYdWKS3K.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.619, + "voteCount": 1460, + "popularity": 11.4606 + }, + { + "id": 61068, + "title": "Gomorrah", + "originalTitle": "Gomorra - La serie", + "overview": "Based on Robert Saviano's bestselling book, this gritty Italian crime drama paints a portrait of the brutal Neapolitan crime organisation the Camorra, as seen through the eyes of Ciro Di Marzo, the obedient and self- confident right-hand man of the clan's godfather, Pietro Savastano.", + "posterPath": "/cXsagSyQQki9vTbV3TTxRCGIIlQ.jpg", + "backdropPath": "/qVyqPzx6wD3Wm3HD4iy3PrJYxGX.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2014-05-06", + "releaseYear": "2014", + "originalLanguage": "it", + "voteAverage": 8.048, + "voteCount": 539, + "popularity": 11.4599 + }, + { + "id": 258579, + "title": "Let This Grieving Soul Retire", + "originalTitle": "嘆きの亡霊は引退したい", + "overview": "Six childhood friends make a vow one day to become treasure hunters, and eventually grow to be the strongest heroes in the world. During his first quest, Krai Andrey realizes he isn’t cut out for the job. Even so, his friends make him their leader. Underpowered in the face of great expectations, Krai embarks on a reluctant hero’s tale of glory, headaches, and wanting to retire early.", + "posterPath": "/egViTAdBqUyUFI2sIBsGbnH5Sun.jpg", + "backdropPath": "/nOcLDLq0JaHmBGZFqHBthrUqMD7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-01", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 29, + "popularity": 11.4578 + }, + { + "id": 63764, + "title": "Senora Acero", + "originalTitle": "Señora Acero", + "overview": "The adventures of Vicenta Acero, the feared coyote who now leads the dynasty of illicit dealings once under the control of her father.", + "posterPath": "/vXhBxsvpW2mGuXRbIK5Yazdp8Zg.jpg", + "backdropPath": "/aZFIRQR0QxIjRMHy7lxSKiug9Z2.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10766 + ], + "genres": [ + "Drama", + "Crime", + "Soap" + ], + "releaseDate": "2014-09-23", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 7.82, + "voteCount": 643, + "popularity": 11.4521 + }, + { + "id": 17404, + "title": "Chopped", + "originalTitle": "Chopped", + "overview": "A high energy, fast paced cooking competition that challenges four up-and-coming chefs to turn a selection of everyday ingredients into an extraordinary three-course meal. After each course, a contestant gets “chopped” by our panel of esteemed culinary luminaries until the last man or woman left standing claims victory.", + "posterPath": "/x7g390tj73dtlGX3ajZrlQRcRpO.jpg", + "backdropPath": "/t9cRI8CKYWlLFhdZF020UIpCim4.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2009-01-13", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.451, + "voteCount": 61, + "popularity": 11.4466 + }, + { + "id": 120142, + "title": "SABIKUI BISCO", + "originalTitle": "錆喰いビスコ", + "overview": "Japan’s post-apocalyptic wasteland replete with dust can only be saved by one thing—fungus. Bisco Akaboshi, a wanted criminal and skilled archer, searches for a legendary mushroom, known as Sabikui, said to devour any and all rust. Joining him on this epic saga to save the country is a giant crab and a young doctor. Can this unlikely trio find the fabled fungi and save the land?", + "posterPath": "/j0svbwWz6I0qOoR8pFIDoAiSFCW.jpg", + "backdropPath": "/1PjeMinKDUgHaWyFdlkCXKlDZnb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-11", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 47, + "popularity": 11.4358 + }, + { + "id": 203505, + "title": "Scandal: Story of an Obsession", + "originalTitle": "Escándalo, relato de una obsesión", + "overview": "Inés is a 42-year-old woman who, when times start to get tough, attempts to drown herself. She is saved by Hugo, a teenage boy who then becomes obsessed with her. A forbidden romance develops between the two, whose consequences end up affecting all those around them.", + "posterPath": "/mra3tUkixvDE0lxQw1ZjuSkCa1U.jpg", + "backdropPath": "/cfoFgrPULUMFAP0XCo6hfjzKZGN.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-01-11", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 6.155, + "voteCount": 29, + "popularity": 11.423 + }, + { + "id": 61418, + "title": "Jane the Virgin", + "originalTitle": "Jane the Virgin", + "overview": "A comedy-drama following a chaste young woman who is accidentally impregnated via artificial insemination as she struggles to inform her devoutly religious family and make the right choices concerning the child. Based on the telenovela \"Juana la virgen.\"", + "posterPath": "/DRRHgvsNEfBloMgIP8bBw4zi4E.jpg", + "backdropPath": "/netPctcZmTb1yW0xhxMgY1zVj3q.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2014-10-13", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.914, + "voteCount": 880, + "popularity": 11.4097 + }, + { + "id": 97617, + "title": "The Misfit of Demon King Academy", + "originalTitle": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "overview": "Anos Voldigord was a tyrannical Demon King that eradicated humans, spirits, and even the gods, but became bored of eternal warfare and reincarnated with dreams of a peaceful world. However, what awaited him in reincarnation after 2000 years were descendants who became too weak after being accustomed to peace, and all sorts of magic that deteriorated to the extreme. Anos enters Demon King Academy that gathers and educates those who are viewed as the reincarnation of the Demon King, but the academy could not see through his true powers and ends up branding him as a misfit.", + "posterPath": "/xBNR7V4s5b0qQfRCiyEvIC5PS6v.jpg", + "backdropPath": "/fxISKAY8c2xYXt2CFLjUU2bEx8n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.452, + "voteCount": 840, + "popularity": 11.398 + }, + { + "id": 1678, + "title": "The Golden Girls", + "originalTitle": "The Golden Girls", + "overview": "Four Southern Florida seniors share a house, their dreams, and a whole lot of cheesecake. Bright, promiscuous, clueless and hilarious, these lovely, mismatched ladies form the perfect circle of friends.", + "posterPath": "/1qoHn5J0Qclte98j1olNbOQOXVz.jpg", + "backdropPath": "/jOHsdywPKOTr9R9y21Wjfti9CIY.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1985-09-14", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 367, + "popularity": 11.3847 + }, + { + "id": 244416, + "title": "Malice", + "originalTitle": "Malice", + "overview": "A charming tutor infiltrates a wealthy family's life, revealing a sinister agenda.", + "posterPath": "/fKhHzRk1VIJY1nz1cRhAfAaYfnA.jpg", + "backdropPath": "/sFcJMla4niXDeOXrrE8StmjzUmt.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-11-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.316, + "voteCount": 19, + "popularity": 11.3691 + }, + { + "id": 61387, + "title": "NCIS: New Orleans", + "originalTitle": "NCIS: New Orleans", + "overview": "A drama about the local field office that investigates criminal cases affecting military personnel in The Big Easy, a city known for its music, entertainment and decadence.", + "posterPath": "/1WJJUUZODmRTcFydLDBUtiztL6x.jpg", + "backdropPath": "/gEEp2TJC8gLVzLmdR8m7dxgPB3p.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 35 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2014-09-23", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.29, + "voteCount": 450, + "popularity": 11.3516 + }, + { + "id": 13335, + "title": "New Tricks", + "originalTitle": "New Tricks", + "overview": "New Tricks is a British comedy-drama that follows the work of the fictional Unsolved Crime and Open Case Squad of the Metropolitan Police Service. Originally led by Detective Superintendent Sandra Pullman, it is made up of retired police officers who have been recruited to reinvestigate unsolved crimes.", + "posterPath": "/mCXWTVOF0DVQvxwhtWWtDYyU7ei.jpg", + "backdropPath": "/fnjJIX6RDPjcbpiyiVa1dlwQxXN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2004-01-01", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 57, + "popularity": 11.3484 + }, + { + "id": 2685, + "title": "Family Matters", + "originalTitle": "Family Matters", + "overview": "A long-running dramedy centering on the Winslow family, a middle-class African American family living in Chicago, and their pesky next-door neighbor, ultra-nerd Steve Urkel. A spin-off of Perfect Strangers.", + "posterPath": "/lIIPV3te2mxBQBHw2rfhwkUYsHf.jpg", + "backdropPath": "/73Ii6WOmDGTccVe3rBZOr82Zfo8.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1989-09-22", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.735, + "voteCount": 321, + "popularity": 11.3465 + }, + { + "id": 2343, + "title": "Lewis", + "originalTitle": "Lewis", + "overview": "Inspector Robert Lewis and Sergeant James Hathaway solve the tough cases that the learned inhabitants of Oxford throw at them.", + "posterPath": "/rwf7nHqAzUFqGEMbN9lxta6UbbX.jpg", + "backdropPath": "/hpEz9LVpzXTV6o1ZVi120WyTQSJ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2007-02-18", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 112, + "popularity": 11.3439 + }, + { + "id": 84105, + "title": "Mirzapur", + "originalTitle": "Mirzapur", + "overview": "The iron-fisted Akhandanand Tripathi is a millionaire carpet exporter and the mafia don of Mirzapur. His son, Munna, is an unworthy, power-hungry heir who will stop at nothing to inherit his father's legacy. An incident at a wedding procession forces him to cross paths with Ramakant Pandit, an upstanding lawyer, and his sons, Guddu and Bablu. It snowballs into a game of ambition, power and greed that threatens the fabric of this lawless city.", + "posterPath": "/p0qM8hhlMF5DuxHBzl2EZR6TehX.jpg", + "backdropPath": "/3dV7pWAdwIPKR2lMIACMfObXdgK.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759, + 18 + ], + "genres": [ + "Crime", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2018-11-15", + "releaseYear": "2018", + "originalLanguage": "hi", + "voteAverage": 8.045, + "voteCount": 165, + "popularity": 11.3375 + }, + { + "id": 17937, + "title": "Ghost Adventures", + "originalTitle": "Ghost Adventures", + "overview": "Paranormal investigator Zak Bagans and his crew, Nick Groff and Aaron Goodwin, search for haunted locations both domestically and internationally. During their investigations, Zak and crew acquaint themselves with the general area; interview locals about the hauntings; and go face-to-face with the evil spirits who reportedly haunt these locations.", + "posterPath": "/xLJZuDxdeUqRFHFlqs0mIk9faMR.jpg", + "backdropPath": "/u64huzTnF3jEYUXJ4BDlpHy2L3K.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2008-10-17", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.685, + "voteCount": 205, + "popularity": 11.3223 + }, + { + "id": 4250, + "title": "Last of the Summer Wine", + "originalTitle": "Last of the Summer Wine", + "overview": "Unencumbered by wives, jobs or any other responsibilities, three senior citizens who've never really grown up explore their world in the Yorkshire Dales. They spend their days speculating about their fellow townsfolk and thinking up adventures not usually favored by the elderly. Last of the Summer Wine premiered as an episode of Comedy Playhouse in 1973. The show ran for 295 episodes until 2010. It is the longest running comedy Britain has produced and the longest running sitcom in the world.", + "posterPath": "/vjI4WdHda9ckCo5YIYVhc8rl6SR.jpg", + "backdropPath": "/88jpREzaBTjadaJ71JbihhL9A1k.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1973-01-04", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 39, + "popularity": 11.32 + }, + { + "id": 2233, + "title": "Blue Heelers", + "originalTitle": "Blue Heelers", + "overview": "Blue Heelers was one of Australia's longest running weekly television drama series. Blue Heelers is a police drama series set in the fictional country town of Mount Thomas. Under the watchful eye of Tom Croydon (John Wood), the men and women of Mount Thomas Police Station fight crime, resolve disputes and tackle the social issues of the day. We watch their successes and their failures and learn to grow with them and their loved ones as the heart of the series develops.", + "posterPath": "/dxCyxmFSHiAonsb94s1QScyHBAk.jpg", + "backdropPath": "/v24AJ7GZULrdDx9nRTezaxUOEuG.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1993-09-10", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.179, + "voteCount": 14, + "popularity": 11.3138 + }, + { + "id": 1891, + "title": "Rome", + "originalTitle": "Rome", + "overview": "A down-to-earth account of the lives of both illustrious and ordinary Romans set in the last days of the Roman Republic.", + "posterPath": "/xLy4fhXUPocgMyFNPFac3tY4jwY.jpg", + "backdropPath": "/b2fhZk0xB2TgMsDXT6goR28PoHX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2005-08-28", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.25, + "voteCount": 1406, + "popularity": 11.3102 + }, + { + "id": 43901, + "title": "Longmire", + "originalTitle": "Longmire", + "overview": "A Wyoming sheriff rebuilds his life and career following the death of his wife. Based on the “Walt Longmire” series of mystery novels written by best-selling author Craig Johnson.", + "posterPath": "/yrdt5lscyJ5j5GSbhl99x3SRN66.jpg", + "backdropPath": "/nh3n0jQeS0FgWH84kzyc8q5yLEp.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 80, + 18 + ], + "genres": [ + "Western", + "Crime", + "Drama" + ], + "releaseDate": "2012-06-03", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.676, + "voteCount": 313, + "popularity": 11.3094 + }, + { + "id": 30669, + "title": "Yu Yu Hakusho", + "originalTitle": "幽☆遊☆白書", + "overview": "After dying to save a boy, delinquent tough guy Yusuke Urameshi is granted another chance at life by redeeming himself as a \"Spirit Detective.\"", + "posterPath": "/5OnjguJwkujo3R23w95EEX8eAEN.jpg", + "backdropPath": "/uNM5dbnPJXJJs1eggepRWjSvdIR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-10-10", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 463, + "popularity": 11.3025 + }, + { + "id": 9537, + "title": "My Family", + "originalTitle": "あたしンち", + "overview": "A light hearted comedy based on the about the daily life of a \"normal\" Japanese family. The Tachibana family consists of a housewife mom, a salary-man dad, and teenager Mikan and Yuzuhiko.", + "posterPath": "/yzXniZFkPjpfroSSQoG4aCCKT7B.jpg", + "backdropPath": "/6T1WTyy9tGlPxC78KUHNCOakY1N.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2002-04-19", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 14, + "popularity": 11.3 + }, + { + "id": 39361, + "title": "Awake", + "originalTitle": "Awake", + "overview": "Michael lives in two separate realities after a car accident. In one reality, his wife Hannah survives the accident; in the other reality, his son Rex survives. Michael does not know which reality is \"real\", and uses the wristbands to differentiate the two. He sees two therapists: Dr. Jonathan Lee in the \"red reality\" and Dr. Judith Evans in the \"green reality\". At work, Michael's erratic behavior triggers clashes with his team; they do not know about Michael's uncanny ability to solve crimes using details from both realities.", + "posterPath": "/piQ9vr0zqHM8Rg9IeJCtUtMadNZ.jpg", + "backdropPath": "/nfR3mCHWE4zdi0ZbjcXeVjvAB18.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-03-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.011, + "voteCount": 190, + "popularity": 11.2934 + }, + { + "id": 199001, + "title": "My Life with the Walter Boys", + "originalTitle": "My Life with the Walter Boys", + "overview": "When a tragedy disrupts her life, a teen moves in with her guardian's big family in a small town and learns new lessons about love, hope and friendship.", + "posterPath": "/jg3YdxDNlxay0NWTxgAPif647Hj.jpg", + "backdropPath": "/5WUsnqUm7xbY3oSwumSLfjyyax.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-12-07", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.77, + "voteCount": 318, + "popularity": 11.2836 + }, + { + "id": 2119, + "title": "Airwolf", + "originalTitle": "Airwolf", + "overview": "As part of a deal with an intelligence agency to look for his missing brother, a renegade pilot goes on missions with an advanced battle helicopter.", + "posterPath": "/4PAN7zPqmR9b73een97WkxqCTQN.jpg", + "backdropPath": "/i9dFFpTMIitrfIAm3GeCXDBGKLE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1984-01-22", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 468, + "popularity": 11.2694 + }, + { + "id": 74428, + "title": "Rosario Tijeras (Mexico)", + "originalTitle": "Rosario Tijeras", + "overview": "Worlds collide when a vengeance-obsessed young woman from the other side of the tracks captures the attention of two well-off friends.", + "posterPath": "/q03eQL8AUx49lVH6IT3IlmWzhQu.jpg", + "backdropPath": "/hsSw3DuG2ah2wgaZeDTwyv5FPh3.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2016-10-30", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 7.585, + "voteCount": 1735, + "popularity": 11.2628 + }, + { + "id": 33922, + "title": "Portlandia", + "originalTitle": "Portlandia", + "overview": "Satirical sketch comedy set and filmed in Portland, Oregon that explores the eccentric misfits who embody the foibles of modern culture.", + "posterPath": "/pfaxCP6YqlFHCL3QytnTanwRTL5.jpg", + "backdropPath": "/kCOLltSpNznhpdHhxCsky3eU1jI.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-01-21", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.957, + "voteCount": 164, + "popularity": 11.261 + }, + { + "id": 31251, + "title": "Victorious", + "originalTitle": "Victorious", + "overview": "Aspiring singer Tori Vega navigates life while attending a performing arts high school called Hollywood Arts.", + "posterPath": "/ulzaIIXNpeMUdhzuooQoOb5cXLD.jpg", + "backdropPath": "/jpR7mT5nFAzWSGPseLpfFisoUtN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762 + ], + "genres": [ + "Comedy", + "Kids" + ], + "releaseDate": "2010-03-27", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.21, + "voteCount": 1683, + "popularity": 11.2515 + }, + { + "id": 66203, + "title": "Soy Luna", + "originalTitle": "Soy Luna", + "overview": "Luna Valente lives with her family in Cancún, Mexico. She goes to school, has her own group of friends, has a job, and loves to skate. However, her life changes when her parents are given a job offer that moves them to Buenos Aires, Argentina. There she finds a new skating rink (named Jam & Roller), learns freestyling, makes new friends, and even falls in love.", + "posterPath": "/4JDmIzhNF7aMsDGlxVwkQ9kv9E6.jpg", + "backdropPath": "/aYIbbd9UbzEILQ5ma5y0aypas1t.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 10751, + 35, + 9648 + ], + "genres": [ + "Soap", + "Family", + "Comedy", + "Mystery" + ], + "releaseDate": "2016-03-14", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 8, + "voteCount": 1083, + "popularity": 11.2466 + }, + { + "id": 500, + "title": "Mad About You", + "originalTitle": "Mad About You", + "overview": "Young, urban newlyweds Paul and Jamie Buchman try to sustain their marital bliss while sidestepping the hurdles of love in the '90s.", + "posterPath": "/vvnslQjc1LnERuroGVh8bPdBi2r.jpg", + "backdropPath": "/bEjFkaFctIXgCUeYn4ei3ECULQi.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1992-09-23", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.682, + "voteCount": 239, + "popularity": 11.2387 + }, + { + "id": 240, + "title": "Jackie Chan Adventures", + "originalTitle": "Jackie Chan Adventures", + "overview": "Jackie Chan teams up in this animé-style adventure with his 11-year-old fictive-niece, Jade, traveling the globe to locate a dozen magical talismans before the sinister Dark Hand does. Helping Jackie and Jade is Uncle, a cantankerous but wise antiquities expert. Though officially Jackie works as an archaeologist, in reality he also assists Captain Black, leader of the covert police squad Section 13.", + "posterPath": "/by2GTFpd2BQ5uJxWPlfcmfrNrfB.jpg", + "backdropPath": "/cjvyqIvCKQtUzd3J5TbVnCFbSNZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-09-09", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 8.168, + "voteCount": 853, + "popularity": 11.228 + }, + { + "id": 1181, + "title": "American Experience", + "originalTitle": "American Experience", + "overview": "TV's most-watched history series brings to life the compelling stories from our past that inform our understanding of the world today.", + "posterPath": "/YkcFBVYG6jvvHBRL1BxraAcOxh.jpg", + "backdropPath": "/9VvaU8b9oRDH6yzvzIIOLweCUvk.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1988-10-04", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 39, + "popularity": 11.2138 + }, + { + "id": 100757, + "title": "Outer Banks", + "originalTitle": "Outer Banks", + "overview": "A tight-knit group of teens unearths a long-buried secret, setting off a chain of illicit events that takes them on an adventure they'll never forget.", + "posterPath": "/ovDgO2LPfwdVRfvScAqo9aMiIW.jpg", + "backdropPath": "/vHuoq8HAmBFge8aiiyhHVVtmQr3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "2020-04-15", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.308, + "voteCount": 1116, + "popularity": 11.2133 + }, + { + "id": 82782, + "title": "The Righteous Gemstones", + "originalTitle": "The Righteous Gemstones", + "overview": "The story of a world-famous televangelist family with a history of deviance, greed and, yes, charitable work, all in the name of Jesus.", + "posterPath": "/bKb54fgtMrS54VMMl8KdDIFlG3g.jpg", + "backdropPath": "/vXPxMNfuapkRXBUhac3LAkuzSzc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-08-18", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.382, + "voteCount": 254, + "popularity": 11.2102 + }, + { + "id": 136283, + "title": "The Glory", + "originalTitle": "더 글로리", + "overview": "Years after surviving horrific abuse in high school, a woman puts an elaborate revenge scheme in motion to make the perpetrators pay for their crimes.", + "posterPath": "/uUM4LVlPgIrww07OoEKrGWlS1Ej.jpg", + "backdropPath": "/AjwoDj77HLlqcpwEGqsnvMXm5my.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-12-30", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.461, + "voteCount": 844, + "popularity": 11.2034 + }, + { + "id": 42878, + "title": "Anger Management", + "originalTitle": "Anger Management", + "overview": "Charlie is a non-traditional therapist specializing in anger management. He has a successful private practice and he performs pro bono counseling for an inmate group at a state prison. Prior to his career as a therapist, he was a major league baseball player whose career was put on the shelf for good by his own struggle with anger issues.", + "posterPath": "/ekItnn6W73RN9muvLTbeRW8LHlo.jpg", + "backdropPath": "/n9JOYF83rMMeYdGWeqcm8bVF8XA.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-06-28", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.209, + "voteCount": 249, + "popularity": 11.1938 + }, + { + "id": 117376, + "title": "Vincenzo", + "originalTitle": "빈센조", + "overview": "At the age of eight, Park Joo Hyeong left for Italy after being adopted. Now an adult, he is known as Vincenzo Cassano and employed by a Mafia family as a consigliere. Due to warring Mafia factions, he flies to South Korea where he gets involved with lawyer Hong Cha Young. She is the type of attorney who will do anything to win a case. Now back in his motherland, he gives an unrivalled conglomerate a taste of his own medicine—with a side of his own version of justice.", + "posterPath": "/dvXJgEDQXhL9Ouot2WkBHpQiHGd.jpg", + "backdropPath": "/sf7NCqyVUNoyjYuwW5oJke1T1lH.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2021-02-20", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8.514, + "voteCount": 1032, + "popularity": 11.1922 + }, + { + "id": 233219, + "title": "ONE: High School Heroes", + "originalTitle": "ONE: 하이스쿨 히어로즈", + "overview": "A former model student, pushed by domestic abuse and bullying, joins a group that stands up to school violence and defends its victims.", + "posterPath": "/tQL4ycHRr9aRkJogCF5J1UEGx7f.jpg", + "backdropPath": "/g4mBFJaj2mfI3ObIbF5UnyhcNS.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-05-30", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.935, + "voteCount": 31, + "popularity": 11.1918 + }, + { + "id": 1660, + "title": "I Dream of Jeannie", + "originalTitle": "I Dream of Jeannie", + "overview": "While on a mission, American astronaut Captain Tony Nelson is forced to make an emergency landing that will forever change his life. On a deserted South Pacific island, Captain Nelson happens upon a bottle containing a beautiful two-thousand-year-old female genie named Jeannie. Rescuing her from the bottle nets Tony the requisite three wishes, and then some, when Jeannie pledges total devotion to her new \"master\".", + "posterPath": "/ljlyB3C3uU8Hd1krfEsYn2BVyaj.jpg", + "backdropPath": "/z5yI0aIRyogoflSXdI17iwTqzjG.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "1965-09-18", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.839, + "voteCount": 799, + "popularity": 11.1868 + }, + { + "id": 62715, + "title": "Dragon Ball Super", + "originalTitle": "ドラゴンボール超(スーパー)", + "overview": "With Majin Buu defeated half-a-year prior, peace returns to Earth, where Son Goku (now a radish farmer) and his friends now live peaceful lives. However, a new threat appears in the form of Beerus, the God of Destruction. Considered the most terrifying being in the entire universe, Beerus is eager to fight the legendary warrior seen in a prophecy foretold decades ago known as the Super Saiyan God. The series retells the events from the two Dragon Ball Z films, Battle of Gods and Resurrection 'F' before proceeding to an original story about the exploration of alternate universes.", + "posterPath": "/qEUrbXJ2qt4Rg84Btlx4STOhgte.jpg", + "backdropPath": "/qA2UwUQbj05aeBMCuC0mHSQ4loE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.185, + "voteCount": 5141, + "popularity": 11.1866 + }, + { + "id": 100868, + "title": "Legacy", + "originalTitle": "Emanet", + "overview": "The story of Yaman, a successful businessman who is incapable of love because of his traumatic childhood. There is only one person that he feels something for, his young nephew Yusuf. When Yusuf's mother dies unexpectedly, his aunt Seher, a beautiful, courageous young woman, moves into the family mansion to take care of him.", + "posterPath": "/wmyqaUTyfEuOBi6uy0Wvw9i3dVH.jpg", + "backdropPath": "/dOpHCDo2bCQIrrnuofKkZExMo3G.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10766 + ], + "genres": [ + "Drama", + "Family", + "Soap" + ], + "releaseDate": "2020-09-07", + "releaseYear": "2020", + "originalLanguage": "tr", + "voteAverage": 7.663, + "voteCount": 80, + "popularity": 11.1857 + }, + { + "id": 3716, + "title": "Dragnet", + "originalTitle": "Dragnet", + "overview": "Follows the cases of a dedicated Los Angeles police detective, Sergeant Joe Friday, and his partners. The show takes its name from the police term \"dragnet\", meaning a system of coordinated measures for apprehending criminals or suspects.", + "posterPath": "/393BVqnVaioYBE5f3LMUwFRAwPQ.jpg", + "backdropPath": "/66Qqh7rJTCOSZgJkVAJa3wfUMMI.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1951-12-16", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 32, + "popularity": 11.1817 + }, + { + "id": 7897, + "title": "Cuéntame cómo pasó", + "originalTitle": "Cuéntame cómo pasó", + "overview": "Recounts the experiences of a middle-class family, the Alcántaras, during the last years of the rule of Francisco Franco and the beginning of the Spanish Transition to democracy.", + "posterPath": "/lF0ip8ZAvweDTuhMaUD1dH3SYhs.jpg", + "backdropPath": "/gS67p2XWTpguQ9MCfd7gkc7hUsZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2001-09-13", + "releaseYear": "2001", + "originalLanguage": "es", + "voteAverage": 7.1, + "voteCount": 56, + "popularity": 11.1685 + }, + { + "id": 32608, + "title": "Ancient Aliens", + "originalTitle": "Ancient Aliens", + "overview": "Did intelligent beings from outer space visit Earth thousands of years ago? From the age of the dinosaurs to ancient Egypt, from early cave drawings to continued mass sightings in the US, each episode gives historic depth to the questions, speculations, provocative controversies, first-hand accounts and grounded theories surrounding this age old debate.", + "posterPath": "/8yR1FK6z1Gx0pyvyXRJrvbxOyuU.jpg", + "backdropPath": "/i5K4wfSG3i7nQaIxPca6YbnhRca.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 9648, + 10765 + ], + "genres": [ + "Documentary", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-04-20", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.988, + "voteCount": 287, + "popularity": 11.1624 + }, + { + "id": 101172, + "title": "Swallowed Star", + "originalTitle": "吞噬星空", + "overview": "On the Earth, a catastrophe triggered the variation of all kinds of species. The superior survived and the inferior were extinct. Under this circumstance, Luo Feng inherited from the owner of Yunmo Star and became one of the three strongest people on the Earth. He lost his flesh during the fight against giant swallowed monster but then he took the flesh of the monster. In the flesh, he developed a human body. Later, he stepped out of the Earth and headed to the universe.", + "posterPath": "/3iPt9bIPNYmhqQ3BVU4plRkkDbf.jpg", + "backdropPath": "/7zPM0NOAnBi5tuauGHp6fGT9pMu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2020-11-29", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 8.594, + "voteCount": 32, + "popularity": 11.162 + }, + { + "id": 732, + "title": "L.A. Law", + "originalTitle": "L.A. Law", + "overview": "L.A. Law is an American television legal drama series that ran for eight seasons on NBC from September 15, 1986, to May 19, 1994.\n\nCreated by Steven Bochco and Terry Louise Fisher, it contained many of Bochco's trademark features including a large number of parallel storylines, social drama and off-the-wall humor. It reflected the social and cultural ideologies of the 1980s and early 1990s, and many of the cases featured on the show dealt with hot-topic issues such as abortion, racism, gay rights, homophobia, sexual harassment, AIDS, and domestic violence. The series often also reflected social tensions between the wealthy senior lawyer protagonists and their less well-paid junior staff.\n\nThe show was popular with audiences and critics, and won 15 Emmy Awards throughout its run, four of which were for Outstanding Drama Series.", + "posterPath": "/hs1TBk6KlPBlnb7ybpqgK6IzcCx.jpg", + "backdropPath": "/hoe6Kfn2UZ7EEyT7rLF6zO2HSk9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "1986-09-15", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 74, + "popularity": 11.1611 + }, + { + "id": 91097, + "title": "Ling Cage", + "originalTitle": "灵笼", + "overview": "In the near future, human inhabitants would have been crowded and congested. It was an urgency to stride out to the universe and find a new home. When everything was under progress in an orderly way, dramatic geological transformations erupted over the courses of decades. Humanity was demolished by this disaster and hardly left anything. Until the nature gradually restored calm, people struggled to their feet from ruins and abysses, stepping again onto this familiar but strange earth. But for us people, dominating everything has been rooted into our blood. Are we still masters of this new world?", + "posterPath": "/p65f4XPIneEjFhASI9HuJId3D3d.jpg", + "backdropPath": "/k6Yg53yBdsfZeRLJh0WgrG2P11f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "2019-07-13", + "releaseYear": "2019", + "originalLanguage": "zh", + "voteAverage": 8.25, + "voteCount": 72, + "popularity": 11.1577 + }, + { + "id": 1621, + "title": "Boardwalk Empire", + "originalTitle": "Boardwalk Empire", + "overview": "Atlantic City at the dawn of Prohibition is a place where the rules don't apply. And the man who runs things -- legally and otherwise -- is the town's treasurer, Enoch \"Nucky\" Thompson, who is equal parts politician and gangster.", + "posterPath": "/kL6SqlVPpfAof2nQbh1VxkUuXBQ.jpg", + "backdropPath": "/7Yj4QbECkH3JavlZxw4NWReoN7B.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2010-09-19", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.01, + "voteCount": 1190, + "popularity": 11.156 + }, + { + "id": 4544, + "title": "Strong Medicine", + "originalTitle": "Strong Medicine", + "overview": "The lives of staff in the womens' health clinic of a fictitious hospital in Philadelphia.", + "posterPath": "/SxrWagwCtPrlI6K50fRl81Omxk.jpg", + "backdropPath": "/1DeieABNUMFcPYuJnic6m1Zknwv.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2000-07-23", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 11.1535 + }, + { + "id": 61565, + "title": "The Brokenwood Mysteries", + "originalTitle": "The Brokenwood Mysteries", + "overview": "In a seemingly quiet country town the newest resident, Detective Inspector Mike Shepherd, finds that murder lurks in even the most homely location.", + "posterPath": "/6qvoTNDALu0SS4TNaggjnrN5wu2.jpg", + "backdropPath": "/hccvVyqdCErrWhgRZH9Fk0w6Fck.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "2014-09-28", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 86, + "popularity": 11.1528 + }, + { + "id": 11250, + "title": "Pasión de Gavilanes", + "originalTitle": "Pasión de gavilanes", + "overview": "The Reyes-Elizondo's idyllic lives are shattered by a murder charge against Eric and León.", + "posterPath": "/91UV7pNcDPhIzJl7EuK36sK5vRG.jpg", + "backdropPath": "/qabMMIpNUUKYFqQxHEWErEEBD8G.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-10-21", + "releaseYear": "2003", + "originalLanguage": "es", + "voteAverage": 7.64, + "voteCount": 2068, + "popularity": 11.1366 + }, + { + "id": 71769, + "title": "The Alienist", + "originalTitle": "The Alienist", + "overview": "New York, 1896. Police commissioner Theodore Roosevelt brings together criminal psychologist Dr. Laszlo Kreizler, newspaper illustrator John Moore and secretary Sara Howard to investigate several murders of male prostitutes.", + "posterPath": "/zUd4RPbfHuB1zIG2iNI5bdZcQo3.jpg", + "backdropPath": "/oDTBlmFiHAslFwj4JU8jkBB6E6V.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2018-01-22", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.523, + "voteCount": 661, + "popularity": 11.1276 + }, + { + "id": 67116, + "title": "Lethal Weapon", + "originalTitle": "Lethal Weapon", + "overview": "A slightly unhinged former Navy SEAL lands a job as a police officer in Los Angeles where he's partnered with a veteran detective trying to keep maintain a low stress level in his life.", + "posterPath": "/grGOtTZ0OfNQoWnNtdJOiY1LB8e.jpg", + "backdropPath": "/yqZ5ACKeNJ30mylUEzvtWZu4pGU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 35 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2016-09-21", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.301, + "voteCount": 775, + "popularity": 11.1257 + }, + { + "id": 2093, + "title": "Matlock", + "originalTitle": "Matlock", + "overview": "Matlock is an American television legal drama, starring Andy Griffith in the title role of criminal defense attorney Ben Matlock. The show, produced by The Fred Silverman Company, Dean Hargrove Productions, Viacom Productions and Paramount Television originally aired from September 23, 1986 to May 8, 1992 on NBC; and from November 5, 1992 until May 7, 1995 on ABC.\n\nThe show's format is similar to that of CBS's Perry Mason, with Matlock identifying the perpetrators and then confronting them in dramatic courtroom scenes. One difference, however, was that whereas Mason usually exculpated his clients at a pretrial hearing, Matlock usually secured an acquittal at trial, from the jury.", + "posterPath": "/2eGYyekQjcAXVmcYW1g4keR4plV.jpg", + "backdropPath": "/6NJdscx3qb2H7h8rEHFn9i6vTcs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1986-03-03", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 127, + "popularity": 11.119 + }, + { + "id": 69500, + "title": "Natsume's Book of Friends", + "originalTitle": "夏目友人帳", + "overview": "Natsume Takashi has the ability to see spirits, which he has long kept secret. However, once he inherits a strange book that belonged to his deceased grandmother, Reiko, he discovers the reason why spirits surround him.", + "posterPath": "/c4B2NFHFH0N8W7ovMsxiGIj7Fgp.jpg", + "backdropPath": "/xHjRfQIRlxug491JrKiEYl9vHM1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Drama" + ], + "releaseDate": "2008-07-08", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 92, + "popularity": 11.1178 + }, + { + "id": 3172, + "title": "Private Practice", + "originalTitle": "Private Practice", + "overview": "Having left behind Seattle Grace Hospital, renowned surgeon Addison Forbes Montgomery moves to Los Angeles for sunnier weather and happier possibilities. She reunites with her friends from medical school, joining them at their chic, co-op, Oceanside Wellness Center in Santa Monica.", + "posterPath": "/pW20ANAGdrgreYJExduUVaWos6H.jpg", + "backdropPath": "/2iYitemZYaZUcmSo0l2p3WHvj5J.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-09-26", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.541, + "voteCount": 344, + "popularity": 11.113 + }, + { + "id": 72002, + "title": "Dynasty", + "originalTitle": "Dynasty", + "overview": "Follows two of America’s wealthiest families, the Carringtons and the Colbys, as they feud for control over their fortune and their children focusing on Fallon Carrington, the daughter of billionaire Blake Carrington, and her soon-to-be stepmother, Cristal, a Hispanic woman marrying into this WASP family and America’s most powerful class.", + "posterPath": "/rVQ35erLIoV8hyh7lIKAMiChmOO.jpg", + "backdropPath": "/bq6AcviGsBmynArhhCpLkR8YN6U.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2017-10-11", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 888, + "popularity": 11.1122 + }, + { + "id": 246, + "title": "Avatar: The Last Airbender", + "originalTitle": "Avatar: The Last Airbender", + "overview": "In a war-torn world of elemental magic, a young boy reawakens to undertake a dangerous mystic quest to fulfill his destiny as the Avatar, and bring peace to the world.", + "posterPath": "/yaGt4GIutpbXHsv48tWceWg6s56.jpg", + "backdropPath": "/7oBGhqJIghRBvOwo5Qe0yM0cnMc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-02-21", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.8, + "voteCount": 4567, + "popularity": 11.0926 + }, + { + "id": 2585, + "title": "Heartbeat", + "originalTitle": "Heartbeat", + "overview": "Set during the 1960s in the fictional North Yorkshire village of Aidensfield, this enduringly popular series interweaves crime and medical storylines.", + "posterPath": "/jAmkMnqyKP6kD9QlXvJxkxMLwDB.jpg", + "backdropPath": "/dRVToyhldkgjzGcrhPlZf4IuK0y.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "1992-04-10", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 32, + "popularity": 11.0904 + }, + { + "id": 5266, + "title": "University Challenge", + "originalTitle": "University Challenge", + "overview": "Academic quiz show where teams of students from UK universities answer questions on all manner of subjects.", + "posterPath": "/yDLoEEFW3D6XSyT8UynTghc1Dyw.jpg", + "backdropPath": "/rouizkkCFwqEzrgsjAiByx6Pd1S.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 10751 + ], + "genres": [ + "Talk", + "Family" + ], + "releaseDate": "1962-09-21", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 11, + "popularity": 11.0629 + }, + { + "id": 30957, + "title": "The Amazing Race", + "originalTitle": "The Amazing Race", + "overview": "This reality competition sees teams embark on a trek around the world to amazing destinations where they must compete in a series of challenges, some mental and some physical. Only when the tasks are completed will they learn of their next location. Teams who are the farthest behind will gradually be eliminated as the contest progresses, with the first team to arrive at the final destination winning the race and the $1 million prize.", + "posterPath": "/x1jq0atcQg6UkaZpco0kFL6QHuM.jpg", + "backdropPath": "/mSkisNewxu55Ivar5EubhcIuoqn.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2001-09-05", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 160, + "popularity": 11.0544 + }, + { + "id": 63706, + "title": "The Last Leg", + "originalTitle": "The Last Leg", + "overview": "Adam Hills and co-hosts Josh Widdicombe and Alex Brooker provide some offbeat commentary on the significant moments of the past seven days.", + "posterPath": "/4euDsPzadRhz0m5CZhQlKcgbZGI.jpg", + "backdropPath": "/23AlZs7Teu9Gl4b4EEIQlh0Inb5.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2013-01-25", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.654, + "voteCount": 26, + "popularity": 11.0516 + }, + { + "id": 236235, + "title": "The Gentlemen", + "originalTitle": "The Gentlemen", + "overview": "When aristocratic Eddie inherits the family estate, he discovers that it's home to an enormous weed empire — and its proprietors aren't going anywhere.", + "posterPath": "/tw3tzfXaSpmUZIB8ZNqNEGzMBCy.jpg", + "backdropPath": "/PqIW7PA74YBURz5slZkxc0K5Pl.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Crime" + ], + "releaseDate": "2024-03-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.875, + "voteCount": 660, + "popularity": 11.0496 + }, + { + "id": 890, + "title": "Neon Genesis Evangelion", + "originalTitle": "新世紀エヴァンゲリオン", + "overview": "At the turn of the century, the Angels returned to Earth, seeking to wipe out humanity in an apocalyptic fury. Devastated, mankind's last remnants moved underground to wait for the day when the Angels would come back to finish the job. Fifteen years later, that day has come... but this time, humanity is ready to fight back with terrifying bio-mechanical weapons known as the Evangelions. Watch as Shinji, Rei, Asuka and the rest of the mysterious shadow agency Nerv battle to save earth from total annihilation.", + "posterPath": "/y2ah9t0navXyIvoHg1uIbIHO3tt.jpg", + "backdropPath": "/xQ8oveiU7D8prmpcL93RozjIuzf.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "1995-10-04", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1943, + "popularity": 11.0451 + }, + { + "id": 2723, + "title": "Samurai Jack", + "originalTitle": "Samurai Jack", + "overview": "A great warrior is displaced to the distant future by the evil shape-shifting wizard Aku. The world has become a bleak place under the rule of Aku, segregated into fantastic tribes and ruled by Aku's evil robot warlords. Jack travels this foreign landscape in search of a time portal that can return him to his home time so he can \"undo the future that is Aku!\".", + "posterPath": "/ddZ7Q2WZ0xAHkVXYvcEgNGFgVkw.jpg", + "backdropPath": "/CrVAqxtdmvelqVcj8pVeQg7wNV.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2001-08-10", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 849, + "popularity": 11.0445 + }, + { + "id": 61457, + "title": "Grantchester", + "originalTitle": "Grantchester", + "overview": "In 1953 at the hamlet of Grantchester, Sidney Chambers—a charismatic, charming clergyman—turns investigative vicar when one of his parishioners dies in suspicious circumstances.", + "posterPath": "/5Itrb1x7OiA5A0XUreRuevR1hA6.jpg", + "backdropPath": "/gBdiLRV3OZLfpsLHTsYKzPMFe5q.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2014-10-06", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.312, + "voteCount": 141, + "popularity": 11.038 + }, + { + "id": 73544, + "title": "Warrior", + "originalTitle": "Warrior", + "overview": "A gritty, action-packed crime drama set during the brutal Tong Wars of San Francisco’s Chinatown in the second half of the 19th century. The series follows Ah Sahm, a martial arts prodigy who immigrates from China to San Francisco under mysterious circumstances, and becomes a hatchet man for one of Chinatown’s most powerful tongs.", + "posterPath": "/hR9qPFMI6BoR63XK6BBX5Ueghan.jpg", + "backdropPath": "/jSBUu67DL0ajUo2e8b2orVX2TOw.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759, + 37 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure", + "Western" + ], + "releaseDate": "2019-04-05", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.976, + "voteCount": 628, + "popularity": 10.9867 + }, + { + "id": 96580, + "title": "Resident Alien", + "originalTitle": "Resident Alien", + "overview": "Crash-landed alien Harry takes on the identity of a small-town Colorado doctor. Arriving with a secret mission, he starts off living a simple life…but things get a bit rocky when he’s roped into solving a local murder and realizes he needs to assimilate into his new world. As he does, he begins to wrestle with the moral dilemma of his mission and asking the big life questions like: “Are human beings worth saving?” and “Why do they fold their pizza before eating it?”", + "posterPath": "/5van3ktOTqWr5lcixh5aR8NlqqW.jpg", + "backdropPath": "/aCbOj4wc6vQUUVNKppssj2PYUy0.jpg", + "mediaType": "tv", + "genreIds": [ + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-27", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.825, + "voteCount": 900, + "popularity": 10.9847 + }, + { + "id": 87623, + "title": "Hercai", + "originalTitle": "Hercai", + "overview": "Miran is seeking revenge for his parents death so he plans to marry daughter Reyyan from the family who were responsible for that. Unexpectedly he falls in love with Reyyan. Will this change the plan?", + "posterPath": "/xDHKKIQrwL3vP3BKov5TeBTzvRD.jpg", + "backdropPath": "/pcZUSUH31odGlq41XktxLVmjNSm.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-03-15", + "releaseYear": "2019", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 725, + "popularity": 10.9666 + }, + { + "id": 33880, + "title": "The Legend of Korra", + "originalTitle": "The Legend of Korra", + "overview": "Avatar Korra, a headstrong, rebellious, feisty young woman who continually challenges and breaks with tradition, is on her quest to become a fully realized Avatar. In this story, the Avatar struggles to find balance within herself.", + "posterPath": "/dZgYvSfuh1YHDrJuILlVQ5oA2hF.jpg", + "backdropPath": "/hmrNfrUl3FFaymDj6Iw5oKQjIs2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-14", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.209, + "voteCount": 2216, + "popularity": 10.9553 + }, + { + "id": 82739, + "title": "Rascal Does Not Dream of Bunny Girl Senpai", + "originalTitle": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "overview": "Puberty Syndrome—a rumored, mysterious syndrome that only affects those in their puberty. For example, a bunny girl suddenly appeared in front of Sakuta Azusagawa. The bunny girl's real identity is Mai Sakurajima, a teenage celebrity who is currently an inactive high school senior. For some reason, her charming figure does not reflect in the eyes of others. In the course of revealing the mystery behind this phenomenon, Sakuta begins to explore his feelings towards Mai. Set in a city where the skies and seas shine, Sakuta unfolds the meaning behind his bizarre encounters on women with the said syndrome.", + "posterPath": "/fbqDG7GjodvaNecgv1q8kfSNPl5.jpg", + "backdropPath": "/8165gnzhyRbkKfm3WFBINdkDQBR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Drama" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1275, + "popularity": 10.9415 + }, + { + "id": 6467, + "title": "Chicago Hope", + "originalTitle": "Chicago Hope", + "overview": "Chicago Hope is an American medical drama television series, created by David E. Kelley. It ran on CBS from September 18, 1994, to May 4, 2000. The series is set in a fictional private charity hospital in Chicago, Illinois.", + "posterPath": "/x8ic33t4NurJul1oXmvKwKtWH28.jpg", + "backdropPath": "/7Mc3flEYVk5u0kZyBHeKMAbmNCM.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1994-09-18", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 76, + "popularity": 10.9291 + }, + { + "id": 50035, + "title": "Clarence", + "originalTitle": "Clarence", + "overview": "In a world of noise, Clarence is a jar of sunshine, pure and simple. He sees the world only in his favorite colors: goofy grape and neon green. Clarence values his friends Jeff and Sumo and his mother Mary more than gold. No matter what happens, good or bad, nothing brings Clarence down.", + "posterPath": "/rUWNAR3FlJDFRabvCBDNA3ryZJw.jpg", + "backdropPath": "/rQeow546hb8vS9T5EcoipqJnoD8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-14", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.961, + "voteCount": 318, + "popularity": 10.9284 + }, + { + "id": 4658, + "title": "ALF", + "originalTitle": "ALF", + "overview": "A furry alien wiseguy comes to live with a terran family after crashing into their garage.", + "posterPath": "/shRed7ZrCRjdIMEYNx2YBVFkkNu.jpg", + "backdropPath": "/ebLHsB8wsBnZnNa9UhGAqYeo33B.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 18 + ], + "genres": [ + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "1986-09-22", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.682, + "voteCount": 1167, + "popularity": 10.927 + }, + { + "id": 212204, + "title": "Twinkling Watermelon", + "originalTitle": "반짝이는 워터멜론", + "overview": "A CODA (child of deaf adult) student born with a gift for music crash lands at an unfamiliar place after time traveling through a suspicious music shop. There, he forms the band Watermelon Sugar with other mysterious youths.", + "posterPath": "/bwTzW1wTgUxUOQruhT8DvinUYgR.jpg", + "backdropPath": "/efaMS00Fevc3fw2dbeP7rh22O6D.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2023-09-25", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.789, + "voteCount": 116, + "popularity": 10.9235 + }, + { + "id": 97890, + "title": "Power Book II: Ghost", + "originalTitle": "Power Book II: Ghost", + "overview": "Picking up just days after the “Power” finale, this sequel series follows Tariq navigating his new life, in which his desire to shed his father’s legacy comes up against the mounting pressure to save his family.", + "posterPath": "/8rbxvwGpPd9MWjdhAoSBj016cns.jpg", + "backdropPath": "/wEWHx6ybjGihzx7e9pammt0BUXW.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2020-09-06", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 342, + "popularity": 10.9213 + }, + { + "id": 1791, + "title": "The Guardian", + "originalTitle": "The Guardian", + "overview": "Nick Fallin is a hotshot lawyer working at his father's ultrasuccessful Pittsburgh law firm. Unfortunately, the high life has gotten the best of Nick. Arrested for drug use, he's sentenced to do 1,500 hours of community service, somehow to be squeezed into his 24/7 cutthroat world of mergers, acquisitions and board meetings. Reluctantly, he's now The Guardian - a part-time child advocate at Legal Aid Services, where one case after another is an eye-opening instance of kids caught up in difficult circumstances.", + "posterPath": "/5USMJz2qw9QBd8yHpguYSz7RzKA.jpg", + "backdropPath": "/dxiQX78VYBhn44SA9lbahgs9eTo.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-09-25", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 51, + "popularity": 10.9207 + }, + { + "id": 62320, + "title": "Grace and Frankie", + "originalTitle": "Grace and Frankie", + "overview": "Elegant, proper Grace and freewheeling, eccentric Frankie are a pair of frenemies whose lives are turned upside down - and permanently intertwined - when their husbands leave them for each other. Together, they must face starting over in their 70s in a 21st century world.", + "posterPath": "/3aD3PaSeF8eHJFLliLlWYw4EcPt.jpg", + "backdropPath": "/jco0oPYZN7bUDZ0xAmstotXI1gB.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2015-05-08", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 350, + "popularity": 10.9157 + }, + { + "id": 1663, + "title": "The Six Million Dollar Man", + "originalTitle": "The Six Million Dollar Man", + "overview": "Follow the adventures of Steve Austin, cybernetically enhanced astronaut turned secret agent, employed by the OSI, under the command of Oscar Goldman and supervised by the scientist who created his cybernetics, Rudy Wells. Steve uses the superior strength and speed provided by his bionic arm and legs, and the enhanced vision provided by his artificial eye, to fight enemy agents, aliens, mad scientists, and a wide variety of other villains.", + "posterPath": "/8AgBpRXvrjnLpZ6RpkmpUvjPXPi.jpg", + "backdropPath": "/kRRYafjTZh8gnZDLKSg5imj80es.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1974-01-18", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 7.264, + "voteCount": 411, + "popularity": 10.906 + }, + { + "id": 2604, + "title": "The Boondocks", + "originalTitle": "The Boondocks", + "overview": "When Robert “Granddad” Freeman becomes legal guardian to his two grandsons, he moves from the tough south side of Chicago to the upscale neighborhood of Woodcrest (a.k.a. \"The Boondocks\") so he can enjoy his golden years in safety and comfort. But with Huey, a 10-year-old leftist revolutionary, and his eight-year-old misfit brother, Riley, suburbia is about to be shaken up.", + "posterPath": "/vAvT2RXjOpgH0COriRm9riPqA0m.jpg", + "backdropPath": "/dtzDqJx7D9wLYkK5M38JkfcPmAa.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 16 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Animation" + ], + "releaseDate": "2005-11-06", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.159, + "voteCount": 406, + "popularity": 10.8858 + }, + { + "id": 4887, + "title": "Barney & Friends", + "originalTitle": "Barney & Friends", + "overview": "Barney & Friends is an American children's television series aimed at children from ages 2 to 5. The series, which first aired on April 6, 1992, features the title character Barney, a purple anthropomorphic Tyrannosaurus rex who conveys educational messages through songs and small dance routines with a friendly, optimistic attitude.", + "posterPath": "/ijt54PA1pZ2ae68ODBk3vfWSK0e.jpg", + "backdropPath": "/ea2Bw6064VpAE7FsLFBlSIb6Qcr.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762 + ], + "genres": [ + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1992-04-06", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.712, + "voteCount": 92, + "popularity": 10.8777 + }, + { + "id": 218843, + "title": "The Seven Deadly Sins: Four Knights of the Apocalypse", + "originalTitle": "七つの大罪 黙示録の四騎士", + "overview": "As a prophecy of doom unfolds on the peaceful land of Britannia, a purehearted boy sets out on a journey of discovery — and revenge.", + "posterPath": "/6SWVJvCIC9B16u6wASZ8FEaNssz.jpg", + "backdropPath": "/dd1tEbUU9NLLo3drq39NknpHQ6v.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.199, + "voteCount": 198, + "popularity": 10.8683 + }, + { + "id": 217528, + "title": "Heweliusz", + "originalTitle": "Heweliusz", + "overview": "After a catastrophic ferry disaster, the off-duty captain seeks answers and justice for those who lost their lives — and those they left behind.", + "posterPath": "/ieDjrlZCmpY5Cp1Jbenqc46WdNp.jpg", + "backdropPath": "/uanBIz4myibV0ytiPgzCVDz1kNg.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-11-05", + "releaseYear": "2025", + "originalLanguage": "pl", + "voteAverage": 7.474, + "voteCount": 38, + "popularity": 10.8612 + }, + { + "id": 66573, + "title": "The Good Place", + "originalTitle": "The Good Place", + "overview": "Eleanor Shellstrop, an ordinary woman who, through an extraordinary string of events, enters the afterlife where she comes to realize that she hasn't been a very good person. With the help of her wise afterlife mentor, she's determined to shed her old way of living and discover the awesome (or at least the pretty good) person within.", + "posterPath": "/qIhsuhoIYR5yTnDta0IL4senbeN.jpg", + "backdropPath": "/tZmlWeFEMvxrjJhBJJcLNXpSRiG.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2016-09-19", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.968, + "voteCount": 1839, + "popularity": 10.846 + }, + { + "id": 58981, + "title": "The Thundermans", + "originalTitle": "The Thundermans", + "overview": "Meet The Thundermans, a typical suburban family that happens to have astounding superpowers. At the center of the action are the 14-year-old Thunderman twins, who share the same bathroom, the same school, and the same annoying little siblings. Their only difference? The sister is a super student with a super sunny disposition who super looks forward to being a superhero someday, and her twin brother is a super villain.", + "posterPath": "/1tIYEyjK1LLcX0jYK3ZouT7601o.jpg", + "backdropPath": "/7Z4mwfQGoARtNxxQEPp5hKNclJi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 10751, + 10765 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-14", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.026, + "voteCount": 587, + "popularity": 10.8368 + }, + { + "id": 196890, + "title": "Chief of War", + "originalTitle": "Chief of War", + "overview": "With Hawaii's four kingdoms divided by war, the ferocious warrior Kaʻiana embarks on an epic mission to unite his people—as an existential threat approaches their shores.", + "posterPath": "/8Mckh3qJRTzXTQNZtpb133RHmO4.jpg", + "backdropPath": "/2c3PCbxVgWen5HrYsaukUmfu4J9.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-07-31", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.393, + "voteCount": 196, + "popularity": 10.8322 + }, + { + "id": 65820, + "title": "Van Helsing", + "originalTitle": "Van Helsing", + "overview": "Vanessa Helsing, the daughter of famous vampire hunter and Dracula nemesis Abraham Van Helsing is resurrected five years in the future to find out that vampires have taken over the world and that she possesses unique power over them. She is humanity’s last hope to lead an offensive to take back what has been lost.", + "posterPath": "/r8ODGmfNbZQlNhiJl2xQENE2jsk.jpg", + "backdropPath": "/5VltHQJXdmbSD6gEJw3R8R1Kbmc.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765, + 10759 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2016-09-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.039, + "voteCount": 900, + "popularity": 10.8322 + }, + { + "id": 103540, + "title": "Percy Jackson and the Olympians", + "originalTitle": "Percy Jackson and the Olympians", + "overview": "Percy Jackson is on a dangerous quest. Outrunning monsters and outwitting gods, he must journey across America to return Zeus's master bolt and stop an all-out war. With the help of his friends Annabeth and Grover, Percy's journey will lead him closer to the answers he seeks: how to fit into a world where he feels out of place, and who he's destined to be.", + "posterPath": "/40eFcTzZier3DWLqldsP5VHxeoD.jpg", + "backdropPath": "/danN2NzJTMouaBEkDWTnyDjDxUt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18, + 10751 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Family" + ], + "releaseDate": "2023-12-19", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 601, + "popularity": 10.8245 + }, + { + "id": 3763, + "title": "Dinosaurs", + "originalTitle": "Dinosaurs", + "overview": "Dinosaurs follows the life of a family of dinosaurs, living in a modern world. They have TV's, fridges, microwaves, and every modern convenience.", + "posterPath": "/rcD2grjO6xAerWLkSgpmGkGhnTH.jpg", + "backdropPath": "/e1mgahsZE1t1lXzuDIvaZY24lSN.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "1991-04-26", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.782, + "voteCount": 1055, + "popularity": 10.8194 + }, + { + "id": 79061, + "title": "Craig of the Creek", + "originalTitle": "Craig of the Creek", + "overview": "Craig and his friends, Kelsey and JP, venture out into a kid-controlled wilderness in the creek.", + "posterPath": "/u4LaONJSBi0khRe2L8nqBk81dlc.jpg", + "backdropPath": "/c1CBVe8UzltKScrjnM3aBFd8SA1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10751, + 10762, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Family", + "Kids", + "Comedy" + ], + "releaseDate": "2018-03-30", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.114, + "voteCount": 255, + "popularity": 10.8011 + }, + { + "id": 10929, + "title": "The Wild Wild West", + "originalTitle": "The Wild Wild West", + "overview": "The Wild Wild West is an American television series. Developed at a time when the television western was losing ground to the spy genre, this show was conceived by its creator, Michael Garrison, as \"James Bond on horseback.\" Set during the administration of President Ulysses Grant, the series followed Secret Service agents James West and Artemus Gordon as they solved crimes, protected the President, and foiled the plans of megalomaniacal villains to take over all or part of the United States.\n\nThe show also featured a number of fantasy elements, such as the technologically advanced devices used by the agents and their adversaries. The combination of the Victorian era time-frame and the use of Verne-esque style technology have inspired some to give the show credit for the origins of the steam punk subculture.", + "posterPath": "/4LSZNCSxDodwCP8EsKRTgMDUKY4.jpg", + "backdropPath": "/4iSl4y1gWZwXmjyS3Ho8HqLWXAK.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18, + 37, + 10765 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama", + "Western", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1965-09-17", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.565, + "voteCount": 77, + "popularity": 10.7909 + }, + { + "id": 799, + "title": "Sherlock Holmes", + "originalTitle": "Sherlock Holmes", + "overview": "Sherlock Holmes uses his abilities to take on cases by private clients and those that the Scotland Yard are unable to solve, along with his friend Dr. Watson.", + "posterPath": "/mVmGmdfdWxVZ2vSbC8De0UG5QJW.jpg", + "backdropPath": "/fnArp9iDW0mM5Hu6JbIUlVuHRGj.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1984-04-24", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 8.127, + "voteCount": 237, + "popularity": 10.766 + }, + { + "id": 217211, + "title": "The Irrational", + "originalTitle": "The Irrational", + "overview": "Alec Mercer is a world-renowned professor of behavioral psychology with a unique insight into human nature who lends his expertise to an array of high-stakes cases involving governments, corporations and law enforcement. However, he meets his match in a female domestic terror suspect who turns his world upside down.", + "posterPath": "/jJtOpfgV4iPu9RtxllHwZgn9dqI.jpg", + "backdropPath": "/w8vJB83ekK6bC0GXqync3sh8IWm.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2023-09-25", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 69, + "popularity": 10.7622 + }, + { + "id": 4068, + "title": "Hogan's Heroes", + "originalTitle": "Hogan's Heroes", + "overview": "Hogan's Heroes is an American television sitcom that ran for 168 episodes from September 17, 1965, to July 4, 1971, on the CBS network. The show was set in a German prisoner of war camp during World War II. Bob Crane starred as Colonel Robert E. Hogan, coordinating an international crew of Allied prisoners running a Special Operations group from the camp. Werner Klemperer played Colonel Wilhelm Klink, the commandant of the camp, and John Banner was the inept sergeant-of-the-guard, Hans Schultz.\n\nThe series was popular during its six-season run. In 2013, creators Bernard Fein through his estate and Albert S. Ruddy acquired the sequel and other separate rights to Hogan's Heroes from Mark Cuban through arbitration and a movie based on the show has been planned.", + "posterPath": "/qifpp3AmNx54Ko4obdwxOWNf0lo.jpg", + "backdropPath": "/a97Q8f3dWiaMg2nq79zG5oZVotp.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 35 + ], + "genres": [ + "War & Politics", + "Comedy" + ], + "releaseDate": "1965-09-17", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.531, + "voteCount": 175, + "popularity": 10.7583 + }, + { + "id": 1825, + "title": "Love, American Style", + "originalTitle": "Love, American Style", + "overview": "An anthology comedy series featuring a line up of different celebrity guest stars appearing in anywhere from one, two, three, and four short stories or vignettes within an hour about versions of love and romance.", + "posterPath": "/aSL7chmSyz6aqTebDd8qxTFlwbW.jpg", + "backdropPath": "/9Ou0cGNLC8dcsvcKMUEi8OL5BSi.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1969-09-29", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 6.105, + "voteCount": 19, + "popularity": 10.7578 + }, + { + "id": 11577, + "title": "The Big Valley", + "originalTitle": "The Big Valley", + "overview": "The Big Valley is an American western television series which ran on ABC from September 15, 1965, to May 19, 1969. The show stars Barbara Stanwyck, as the widow of a wealthy nineteenth century California rancher. It was created by A.I. Bezzerides and Louis F. Edelman, and produced by Levy-Gardner-Laven for Four Star Television.", + "posterPath": "/wjDnSS8JTjSg9g61bkEJKkPug1F.jpg", + "backdropPath": "/kGPdC77DjdRF9J8txKqmD8WMnoj.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1965-09-15", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 6.145, + "voteCount": 55, + "popularity": 10.7451 + }, + { + "id": 3162, + "title": "Hart to Hart", + "originalTitle": "Hart to Hart", + "overview": "Wealthy couple Jonathan and Jennifer Hart, a self-made millionaire and his journalist wife, moonlight as amateur detectives.", + "posterPath": "/rK7eHDVQVYwwuxf91rmSNn6ykQn.jpg", + "backdropPath": "/fyPyyWNmzH7Ugt51K8SqiI0SWNI.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "1979-09-22", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 6.892, + "voteCount": 125, + "popularity": 10.7449 + }, + { + "id": 38974, + "title": "Jessie", + "originalTitle": "Jessie", + "overview": "An idealistic teen from rural Texas embarks on the adventure of a lifetime when she decides to leave behind starry nights for big city lights. Thrilled to be on her own and determined not to be intimidated by New York City, she accepts a job as nanny for a high-profile couple with four kids. Helping to keep her moral compass in check are Bertram, the family's butler, and Tony, the building's 20-year-old doorman.", + "posterPath": "/tspQe0FuiaUj0U1R1norNbiYTe4.jpg", + "backdropPath": "/jDEvpKn1Ry8U7KM4kgC2Iw6ZCJ1.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Kids", + "Drama", + "Family" + ], + "releaseDate": "2011-09-30", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.034, + "voteCount": 667, + "popularity": 10.741 + }, + { + "id": 1486, + "title": "21 Jump Street", + "originalTitle": "21 Jump Street", + "overview": "21 Jump Street revolves around a group of young cops who would use their youthful appearance to go undercover and solve crimes involving teenagers and young adults.", + "posterPath": "/9w2y0146P5EjLw63FHGWRRpqQ6v.jpg", + "backdropPath": "/gTN0SAdXsDUE6SFFRo8QsJgXDIg.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "1987-04-12", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.182, + "voteCount": 181, + "popularity": 10.738 + }, + { + "id": 50712, + "title": "Black Butler", + "originalTitle": "黒執事", + "overview": "In Victorian London, 12-year-old business magnate Ciel Phantomhive thwarts dangers to the queen as he's watched over by his demon butler, Sebastian.", + "posterPath": "/iXGs130TRoUplHf0o86zp9MqAYc.jpg", + "backdropPath": "/5U0dYTkHXPhoExNnEm5iKrpDqtr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 242, + "popularity": 10.7356 + }, + { + "id": 103516, + "title": "Star Trek: Strange New Worlds", + "originalTitle": "Star Trek: Strange New Worlds", + "overview": "Follow Captain Christopher Pike, Science Officer Spock and Number One in the years before Captain Kirk boarded the U.S.S. Enterprise, as they explore new worlds around the galaxy.", + "posterPath": "/w6KapI2JvrCkOPmQhkwYPJNjqeo.jpg", + "backdropPath": "/fZJs6xgU9dqIg9phIXjZAZOInzy.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2022-05-05", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.013, + "voteCount": 681, + "popularity": 10.7348 + }, + { + "id": 14610, + "title": "Secret Lives", + "originalTitle": "Salatut elämät", + "overview": "Salatut elämät (Secret Lives) is a Finnish television soap opera that premiered on MTV3 on 25 January 1999. The series' storylines follow the daily lives of several families who live in the same apartment block in Helsinki.", + "posterPath": "/ugYAGyxwajuplDUUYT8Bzbj8eNR.jpg", + "backdropPath": "/nG2im8JKKNB6dXg9ZmVTuiYqFJI.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1999-01-25", + "releaseYear": "1999", + "originalLanguage": "fi", + "voteAverage": 4.25, + "voteCount": 20, + "popularity": 10.7335 + }, + { + "id": 2919, + "title": "Burn Notice", + "originalTitle": "Burn Notice", + "overview": "A formerly blacklisted spy uses his unique skills and training to help people in desperate situations.", + "posterPath": "/o2fnD3SNiQjGVgA2C3ezaeh2HK.jpg", + "backdropPath": "/jwFJrUXj0SEAVpZsgvRUBi5trLL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2007-06-28", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.467, + "voteCount": 553, + "popularity": 10.7258 + }, + { + "id": 61662, + "title": "Schitt's Creek", + "originalTitle": "Schitt's Creek", + "overview": "Formerly filthy rich video store magnate Johnny Rose, his soap star wife Moira, and their two kids, über-hipster son David and socialite daughter Alexis, suddenly find themselves broke and forced to live in Schitt's Creek, a small depressing town they once bought as a joke.", + "posterPath": "/iRfSzrPS5VYWQv7KVSEg2BZZL6C.jpg", + "backdropPath": "/ftNmVV8LuNVmtB8mzoUTucozVKE.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-01-13", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 626, + "popularity": 10.7209 + }, + { + "id": 70311, + "title": "Quanzhi Fashi", + "originalTitle": "全职法师", + "overview": "After waking up, Mo Fan suddenly finds himself in a world where schools teach magic and monsters eat humans. However, his own situation hasn’t really changed that much. Labelled the loser of his school, he wants to afford a better life for his physical disabled sister, who is in a wheelchair, and his father. To make it possible, he took on the goal to become the best magician and to show everyone that one’s status in society is not important to achieve this.", + "posterPath": "/wirofBlPHzaENMu5RCxx9T2gNjB.jpg", + "backdropPath": "/9fOVK3e3SXQgkjPkCtEN5SRdpEg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2016-09-02", + "releaseYear": "2016", + "originalLanguage": "zh", + "voteAverage": 7.2, + "voteCount": 43, + "popularity": 10.7205 + }, + { + "id": 116799, + "title": "The Lincoln Lawyer", + "originalTitle": "The Lincoln Lawyer", + "overview": "Sidelined after an accident, hotshot Los Angeles lawyer Mickey Haller restarts his career - and his trademark Lincoln - when he takes on a murder case.", + "posterPath": "/4jSaIqEU8CPBBNn4iVCK6wzPjSx.jpg", + "backdropPath": "/jBFOVEE5sMIyT141YIqIwyU8Y1D.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-05-13", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.659, + "voteCount": 412, + "popularity": 10.711 + }, + { + "id": 21768, + "title": "The Dr. Oz Show", + "originalTitle": "The Dr. Oz Show", + "overview": "The Dr. Oz Show is an American syndicated television talk show, hosted by Mehmet Oz, a cardiothoracic surgeon and teaching professor at Columbia University who became famous for his appearances on The Oprah Winfrey Show.\n\nThe fifth season premiered on September 9, 2013.", + "posterPath": "/zvZussCQDXKsmZNF4LCyZC8uuW3.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2009-09-14", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 14, + "popularity": 10.6904 + }, + { + "id": 236994, + "title": "Dragon Ball DAIMA", + "originalTitle": "ドラゴンボールDAIMA", + "overview": "Mysteriously transformed into mini versions of themselves, Goku and his friends travel to the Demon Realm to uncover the truth and find a cure.", + "posterPath": "/8tpLyWAmYhe1D0d62gV3CWFDu2f.jpg", + "backdropPath": "/oUmWLyeko3kYdUr8DBLIsxwcugl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.171, + "voteCount": 545, + "popularity": 10.6809 + }, + { + "id": 235199, + "title": "Pit Babe", + "originalTitle": "พิษเบ๊บ เดอะ ซีรีส์", + "overview": "Babe, a race car driver with unmatched talent, falls for newcomer Charlie, but hidden secrets threaten their passionate romance and racing dreams.", + "posterPath": "/xuLSkVlXXf3OpTwoUWN5c9ubLVC.jpg", + "backdropPath": "/88MnT0RtYqtmBKEmtY91suStj48.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-11-17", + "releaseYear": "2023", + "originalLanguage": "th", + "voteAverage": 8.214, + "voteCount": 28, + "popularity": 10.679 + }, + { + "id": 12926, + "title": "Teresa", + "originalTitle": "Teresa", + "overview": "Teresa Chavez is a young woman with an obsession for money and ambition. Despite her beauty and the fact that she was raised in the bosom of a loving family, she is resentful; her one desire is to leave her humble but poor neighbourhood.", + "posterPath": "/5U8eEPG2ESPOsjDB0J9aXMelctc.jpg", + "backdropPath": "/i5WyNy4tVmRbcOvTfYXWuEpTNK7.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2010-08-02", + "releaseYear": "2010", + "originalLanguage": "es", + "voteAverage": 7.7, + "voteCount": 1789, + "popularity": 10.6705 + }, + { + "id": 61733, + "title": "Empire", + "originalTitle": "Empire", + "overview": "A powerful family drama about the head of a music empire whose three sons and ex-wife all battle for his throne.", + "posterPath": "/gTrzYR6gWMhQ8yINW9JCLeoJHvf.jpg", + "backdropPath": "/FNeJtRUd5XID186SHzjNNneP3f.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2015-01-07", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 744, + "popularity": 10.6694 + }, + { + "id": 2583, + "title": "Prime Suspect", + "originalTitle": "Prime Suspect", + "overview": "Highly skilled Detective Inspector Jane Tennison battles to prove herself in a male dominated world.", + "posterPath": "/3csYNpDP5jhbFQUZwKOXBZY64J6.jpg", + "backdropPath": "/3qaIDtU8gtHBj4m2K4s4upMrplG.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1991-04-07", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 92, + "popularity": 10.6642 + }, + { + "id": 210879, + "title": "Rurouni Kenshin", + "originalTitle": "るろうに剣心 -明治剣客浪漫譚-", + "overview": "Ten years have passed since the end of Bakumatsu, an era of war that saw the uprising of citizens against the Tokugawa shogunate. The revolutionaries wanted to create a time of peace, and a thriving country free from oppression. The new age of Meiji has come, but peace has not yet been achieved. Swords are banned but people are still murdered in the streets. Orphans of war veterans are left with nowhere to go, while the government seems content to just line their pockets with money.", + "posterPath": "/zT77Y6iQGmYGBqbhQi0ySD60o9i.jpg", + "backdropPath": "/xV0Xro8G20SgxYfGrXun26k7eVp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2023-07-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.35, + "voteCount": 130, + "popularity": 10.6609 + }, + { + "id": 197449, + "title": "Loot", + "originalTitle": "Loot", + "overview": "After divorcing her husband of 20 years, Molly Novak must figure out what to do with her $87 billion settlement. She decides to reengage with her charitable foundation and reconnect with the real world—finding herself along the way.", + "posterPath": "/aAcPJPOHLzJtAQQmTrvPzceasOI.jpg", + "backdropPath": "/wk1ylquzPsZFRSuGXyAfZ0gyHmV.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2022-06-23", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.804, + "voteCount": 148, + "popularity": 10.6555 + }, + { + "id": 110562, + "title": "A Woman Scorned", + "originalTitle": "Sadakatsiz", + "overview": "Asya is a successful doctor and she has a perfect life with her husband and her son. But after finding a blonde hair on her husband's scarf, everything changes and she discovers her husband's extramarital affair.", + "posterPath": "/i4dD4K0udXVosxOa7wBXpkCKgP1.jpg", + "backdropPath": "/76aveobsWhFYon5DHP7CAjo9GYJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-10-07", + "releaseYear": "2020", + "originalLanguage": "tr", + "voteAverage": 8.065, + "voteCount": 279, + "popularity": 10.6494 + }, + { + "id": 280100, + "title": "ABO Desire", + "originalTitle": "垂涎", + "overview": "When an arrogant Alpha infiltrates a rival’s company and falls for a seemingly delicate Omega, he’s pulled into a dangerous game that challenges everything he knows.", + "posterPath": "/fKmsS7HRGvhSNiLysVIj1zoBHnt.jpg", + "backdropPath": "/s2GQUEJApbOVZL3vASbm5FWGdYN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-12", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.529, + "voteCount": 17, + "popularity": 10.6464 + }, + { + "id": 1739, + "title": "According to Jim", + "originalTitle": "According to Jim", + "overview": "Jim is the typical all-American guy — a macho \"everyman\" — with a soft spot for his beautiful wife and children. Jim's boyish bravado and humorous antics keep a certain level of turmoil in their home, but there's never a doubt that this \"opposites attract\" couple are in their marriage for keeps!", + "posterPath": "/iNegoiByXFILSmBccfISNpVmTAK.jpg", + "backdropPath": "/hZmWDFV7qVAlhvEqJ23txLD7oHa.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2001-10-03", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.546, + "voteCount": 362, + "popularity": 10.6416 + }, + { + "id": 3469, + "title": "Minder", + "originalTitle": "Minder", + "overview": "Roguish comedy drama following the misadventures of small-time crook Arthur Daley.", + "posterPath": "/4s9hiyQvTaMe1bK91HRCTgDTAoF.jpg", + "backdropPath": "/qBc0ST7YNvZVfCawuoxAm9QXTWB.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10759, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "1979-10-29", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 25, + "popularity": 10.6376 + }, + { + "id": 72350, + "title": "DuckTales", + "originalTitle": "DuckTales", + "overview": "The adventures of billionaire Scrooge McDuck and his nephews Huey, Dewey and Louie, their famous uncle Donald Duck, pilot extraordinaire Launchpad, Mrs. Beakly, Webby and Roboduck. Adventures and hidden treasures are everywhere, in their hometown Duckburg and all around the world.", + "posterPath": "/3klapeIKLp9IBy4uHo7szTeMTdQ.jpg", + "backdropPath": "/tco0lyOHy3bjy2hyishbuCk0Yvg.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Animation" + ], + "releaseDate": "2017-08-12", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 294, + "popularity": 10.6366 + }, + { + "id": 79086, + "title": "Godfather of Harlem", + "originalTitle": "Godfather of Harlem", + "overview": "Loosely based on infamous crime boss Bumpy Johnson, who in the early 1960s returned from ten years in prison to find the neighborhood he once ruled in shambles. With the streets controlled by the Italian mob, Bumpy attempts to regain his piece of Harlem.", + "posterPath": "/avhyzJycLNi3nXov2lREhDkP3ik.jpg", + "backdropPath": "/tgH5BaWIrPGbDNnFyA4aHtamjWF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2019-09-29", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.061, + "voteCount": 702, + "popularity": 10.6258 + }, + { + "id": 51817, + "title": "Teenage Mutant Ninja Turtles", + "originalTitle": "Teenage Mutant Ninja Turtles", + "overview": "The Teenage Mutant Ninja Turtles are back in an all-new animated series on Nickelodeon! Surfacing topside for the first time on their fifteenth birthday, the titular turtles, Leonardo, Michelangelo, Raphael and Donatello, find that life out of the sewers isn't exactly what they thought it would be. Now the turtles must work together as a team to take on new enemies that arise to take over New York City.", + "posterPath": "/n0DN6kJf0kGeuNFUYLT6eZe5ERR.jpg", + "backdropPath": "/9Iq5c65TQrr73zzPGQuiwHLfeb9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10762, + 16, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Kids", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2012-09-28", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.313, + "voteCount": 758, + "popularity": 10.6058 + }, + { + "id": 64196, + "title": "Overlord", + "originalTitle": "オーバーロード", + "overview": "In the year 2138, virtual reality gaming is booming. Yggdrasil, a popular online game is quietly shut down one day. However, one player named Momonga decides to not log out. Momonga is then transformed into the image of a skeleton as \"the most powerful wizard.\" The world continues to change, with non-player characters (NPCs) beginning to feel emotion. Having no parents, friends, or place in society, this ordinary young man Momonga then strives to take over the new world the game has become.", + "posterPath": "/K8ZUjxaj9F0t3AwJDz8ypzBynM.jpg", + "backdropPath": "/q5WJxYTXNNJdEHxFCqd3S8pO4VA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2015-07-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.473, + "voteCount": 1050, + "popularity": 10.6016 + }, + { + "id": 76572, + "title": "Soul Land", + "originalTitle": "斗罗大陆", + "overview": "Tang San spent his life in the Tang Outer Sect, dedicated to the creation and mastery of hidden weapons. Once he stole the secret lore of the Inner Sect to reach the pinnacle of his art, his only way out was death. But after throwing himself off the deadly Hell's Peak he was reborn in a different world, the world of Douluo Dalu, a world where every person has a spirit of their own, and those with powerful spirits can practice their spirit power to rise and become Spirit Masters.\n\nThe spirit that awakens within Tang San is Blue Silver Grass, a useless spirit. Can he overcome the difficulties to reach the high ranks of Spirit Masters and bring the glory of the Tang Sect into this new world?", + "posterPath": "/4ooPDiPcEPylDcFKg9koGkoW6GC.jpg", + "backdropPath": "/rcfUUrQj6Zhk4mG4xtCl8Smupko.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-01-13", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 8.298, + "voteCount": 52, + "popularity": 10.5993 + }, + { + "id": 271605, + "title": "May I Ask for One Final Thing?", + "originalTitle": "最後にひとつだけお願いしてもよろしいでしょうか", + "overview": "In the middle of a ball, Scarlet's fiancé, Kyle, suddenly calls off their engagement. She's falsely accused of being a bully and people unfairly call her a \"Villainess.\" The aristocrats and noble families all denounce her. For years, she had to put up with his abuse and idiocy, but she can't take anymore of it! At her wit's end, she asks for one last favor; to give him a good fist in the face. So begins Scarlet's story of revenge against Kyle and his cronies! A fantasy about an elegant yet rebellious fighter, who doesn't let anyone take advantage of her!!", + "posterPath": "/6WUSl1NP5I66IGiI6n9BwOzZTbY.jpg", + "backdropPath": "/iKYPleY1z2YpO2OBkuUEWICwo5D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 10, + "popularity": 10.5845 + }, + { + "id": 46080, + "title": "Masha and the Bear", + "originalTitle": "Маша и Медведь", + "overview": "Masha is an energetic three-year-old who can’t seem to keep herself out of trouble. Bear is a warm, fatherly figure that does his best to guide his friend and keep her from harm, often ending up the unintended victim of her misadventures.", + "posterPath": "/wPkeRunw71Mm10xQYKAwGG0NLgt.jpg", + "backdropPath": "/uu2qZZ82Ml2u6SgOd68OIIOI0si.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762, + 35 + ], + "genres": [ + "Animation", + "Family", + "Kids", + "Comedy" + ], + "releaseDate": "2009-01-07", + "releaseYear": "2009", + "originalLanguage": "ru", + "voteAverage": 6.9, + "voteCount": 407, + "popularity": 10.5779 + }, + { + "id": 39297, + "title": "Last Man Standing", + "originalTitle": "Last Man Standing", + "overview": "A married father of three tries to maintain his manliness in a world increasingly dominated by women.", + "posterPath": "/ofUvbcwxcA0E7qYUlhBx4gZmAzX.jpg", + "backdropPath": "/m6APcUIeNdFormiiKsGaG8Hdu49.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-10-11", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.261, + "voteCount": 339, + "popularity": 10.5769 + }, + { + "id": 102321, + "title": "Looney Tunes Cartoons", + "originalTitle": "Looney Tunes Cartoons", + "overview": "A series of short form cartoons starring the iconic and beloved Looney Tunes characters. Bugs Bunny, Daffy Duck, Porky Pig and other marquee Looney Tunes characters are featured in their classic pairings in simple, gag-driven and visually vibrant stories.", + "posterPath": "/2pDQfZMJq95hckoaez9ou93Hmqy.jpg", + "backdropPath": "/kxHkP4YnRIWEcW08CpCRqnxiMSH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2020-05-27", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 276, + "popularity": 10.5715 + }, + { + "id": 67824, + "title": "Quotidien", + "originalTitle": "Quotidien", + "overview": "Quotidien is a French television program presented by Yann Barthès and broadcast from September 12, 2016 on TMC.", + "posterPath": "/3cJmSgjsj3aHfnPAVdAm6KyhjMJ.jpg", + "backdropPath": "/iYwUoTRQ9iXconWMZgNajMr8VzL.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2016-09-12", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.4, + "voteCount": 16, + "popularity": 10.5682 + }, + { + "id": 64198, + "title": "Blaze and the Monster Machines", + "originalTitle": "Blaze and the Monster Machines", + "overview": "AJ is an 8-year-old techie who drives monster-truck Blaze, the top racer in Axle City. The two go on adventures that have them taking on problems involving science and math. Many predicaments they face are caused by Blaze's rival, Crusher, a tractor-trailer that will do anything to beat other vehicles to the finish line. The animated series is billed as the first TV show for preschoolers to comprehensively cover areas of science, technology, engineering and math. Each episode introduces different STEM concepts, including buoyancy and trajectory.", + "posterPath": "/5DzjYIdgoePjMlmS7RCyUYWhpIK.jpg", + "backdropPath": "/5KrC0kondGLZ6cgZNrOazPYSXGb.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10751, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2014-10-13", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 52, + "popularity": 10.5652 + }, + { + "id": 1848, + "title": "Winx Club", + "originalTitle": "Winx Club", + "overview": "In a magical universe, witches, warriors begin fighting in the name of good .vs. evil! At a magic school, five teenage girls are selected to defend the universe with their magic.", + "posterPath": "/iAEh0rhHfq0oPdsZbsCSNPRBHXW.jpg", + "backdropPath": "/gPLVnGRW1lXb8wBauIG41kQkoCX.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10765, + 10759, + 9648 + ], + "genres": [ + "Kids", + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2004-01-28", + "releaseYear": "2004", + "originalLanguage": "it", + "voteAverage": 8.046, + "voteCount": 525, + "popularity": 10.5599 + }, + { + "id": 651, + "title": "60 Minutes", + "originalTitle": "60 Minutes", + "overview": "America's popular television News magazine in which an ever changing team of CBS News correspondents contribute segments ranging from hard news coverage to politics to lifestyle and pop culture.", + "posterPath": "/hqsJOrlmItlYJRZ6VEb7YnvGGup.jpg", + "backdropPath": "/bgo1ixOB2U6hxl8Og2TZritWKaD.jpg", + "mediaType": "tv", + "genreIds": [ + 10763 + ], + "genres": [ + "News" + ], + "releaseDate": "1968-09-24", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 79, + "popularity": 10.545 + }, + { + "id": 4498, + "title": "Top Gear", + "originalTitle": "Top Gear", + "overview": "Motoring programme featuring reviews of and reports about cars of all types.", + "posterPath": "/7P7vi7RIn5qthQAZrOBIu8zA3pg.jpg", + "backdropPath": "/eOnQIuFYGbtZGilWPpG96eYuotZ.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1978-07-13", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.86, + "voteCount": 107, + "popularity": 10.54 + }, + { + "id": 208569, + "title": "Will Trent", + "originalTitle": "Will Trent", + "overview": "Special Agent Will Trent was abandoned at birth and endured a harsh coming-of-age in Atlanta's overwhelmed foster care system. Determined to make sure no one feels as he did, he now has the highest clearance rate.", + "posterPath": "/qG5O46gUxxYGImld03tl2zLhvrg.jpg", + "backdropPath": "/imdWToan0MpzCUZfw2nTrjI25dE.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2023-01-03", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.405, + "voteCount": 148, + "popularity": 10.5365 + }, + { + "id": 2345, + "title": "Kim Possible", + "originalTitle": "Kim Possible", + "overview": "If there's danger or trouble, Kim Possible is there on the double to save the world from villains... and still make it home in time for cheerleading practice! Luckily, Kim has her sidekick Ron Stoppable and his pet naked mole-rat Rufus by her side.", + "posterPath": "/xAIm6KkiQKl0UsagMUyhLFzX2X2.jpg", + "backdropPath": "/olYeeEi5aa197P0s8ETXyriP9Ih.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "2002-06-07", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.539, + "voteCount": 534, + "popularity": 10.5184 + }, + { + "id": 50825, + "title": "Sleepy Hollow", + "originalTitle": "Sleepy Hollow", + "overview": "Ichabod Crane is resurrected and pulled two and a half centuries through time to unravel a mystery that dates all the way back to the founding fathers.", + "posterPath": "/2RHj62XneYMCRPAyQrEIrKVij12.jpg", + "backdropPath": "/jHkeqXYUU4khZEig88AFLMUOmep.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-09-16", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.425, + "voteCount": 1087, + "popularity": 10.5178 + }, + { + "id": 54344, + "title": "The Leftovers", + "originalTitle": "The Leftovers", + "overview": "When 2% of the world's population abruptly disappears without explanation, the world struggles to understand just what they're supposed to do about it. This is the story of the people who didn't make the cut.", + "posterPath": "/ri8xr223xBb2TeHX3GKypvQPV2B.jpg", + "backdropPath": "/rK9D7R4nzG3YGBktQY7VD5tGdtb.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2014-06-29", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.649, + "voteCount": 1124, + "popularity": 10.5128 + }, + { + "id": 1950, + "title": "Everwood", + "originalTitle": "Everwood", + "overview": "After the death of his wife, world-class neurosurgeon Dr. Andrew Brown leaves Manhattan and moves his family to the small town of Everwood, Colorado. There he becomes a small-town doctor and learns parenting on the fly as he raises his talented but resentful 15-year-old son Ephram and his 9-year-old daughter Delia.", + "posterPath": "/4zmuA2Ql1QdUtw9OM6MdmtXnZEF.jpg", + "backdropPath": "/pXpK8GnLL0wZkfelg5lCVSOnytN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2002-09-16", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.561, + "voteCount": 206, + "popularity": 10.5045 + }, + { + "id": 4686, + "title": "Ben 10", + "originalTitle": "Ben 10", + "overview": "When 10-year-old Ben Tennyson discovers a mysterious device, he gains the power to change into ten different alien heroes, each with uniquely awesome powers. With such abilities at his disposal, Ben realizes a greater responsibility to help others and stop evildoers, but that doesn't mean he's above a little superpowered mischief now and then.", + "posterPath": "/eogRp6oAPK0SEvQmCrQ78LTlSdp.jpg", + "backdropPath": "/v5hLUEpbn3G3oLXLdF7lFikDivb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "2005-12-27", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.164, + "voteCount": 1738, + "popularity": 10.5039 + }, + { + "id": 226174, + "title": "Matlock", + "originalTitle": "Matlock", + "overview": "After achieving success in her younger years, the brilliant septuagenarian Madeline Matlock rejoins the workforce at a prestigious law firm where she uses her unassuming demeanor and wily tactics to win cases and expose corruption from within. Inspired by the classic television series of the same name.", + "posterPath": "/a9zyLphBfL6N9pDwFVzL5a9fqpH.jpg", + "backdropPath": "/amYND1mIdCYEGVqKEH764W4HBtb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2024-09-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.141, + "voteCount": 110, + "popularity": 10.4899 + }, + { + "id": 4515, + "title": "Lois & Clark: The New Adventures of Superman", + "originalTitle": "Lois & Clark: The New Adventures of Superman", + "overview": "A much more lavish version of the popular Superman television series which had first aired forty years earlier, Lois & Clark focused more on the Man of Steel's early adult years in Metropolis. With the unknowing help of Lois Lane, Clark Kent created Superman there in Metropolis after finding work at the world-famous Daily Planet newspaper, where he meets fellow reporter Lois Lane.", + "posterPath": "/1LbPs6i1h4BKjVUwK5S9GjPCydi.jpg", + "backdropPath": "/2gzPDDhpP86MACQOu5aQg9DKyUc.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1993-09-12", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 473, + "popularity": 10.4827 + }, + { + "id": 1427, + "title": "Broadchurch", + "originalTitle": "Broadchurch", + "overview": "The murder of a young boy in a small coastal town brings a media frenzy, which threatens to tear the community apart.", + "posterPath": "/2NhBFUTg5KVBmGwafxtLwVdsqrr.jpg", + "backdropPath": "/66ieYewiusGZsUAbJGuefdo1GpS.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2013-03-04", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.918, + "voteCount": 919, + "popularity": 10.4784 + }, + { + "id": 127529, + "title": "Bloodhounds", + "originalTitle": "사냥개들", + "overview": "Two young boxers band together with a benevolent moneylender to take down a ruthless loan shark who preys on the financially desperate.", + "posterPath": "/3uflkuhQUh2pnT2V8YgsDkjMfrT.jpg", + "backdropPath": "/b2iWqSFpuy9CS5XWiAmnLzNv9eP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2023-06-09", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.312, + "voteCount": 470, + "popularity": 10.4777 + }, + { + "id": 34891, + "title": "Jake and the Never Land Pirates", + "originalTitle": "Jake and the Never Land Pirates", + "overview": "A crew of kid pirates - leader Jake and pals Izzy and Cubby - and their Never Land adventures as they work to outwit two infamous characters, the one and only Captain Hook and Smee.", + "posterPath": "/uet64gptwR7iDGc0laIRmYNtNH0.jpg", + "backdropPath": "/vV1EQ1zLuZ5yPL7LaBqPayVsggC.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10759 + ], + "genres": [ + "Family", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2011-02-14", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 60, + "popularity": 10.477 + }, + { + "id": 262469, + "title": "Dating Naked UK", + "originalTitle": "Dating Naked UK", + "overview": "In the pursuit of love, 10 singles take the brave steps of stripping off before entering a daring, dating experience. Unclothed they must begin to get to know each other, before their connections are put at risk.", + "posterPath": "/tWHl9QaUaz4sKEUk1qCaGqQDARq.jpg", + "backdropPath": "/nC5gyHQB5zrWOkKMquBueGW7gb5.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2024-08-23", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 27, + "popularity": 10.4741 + }, + { + "id": 108545, + "title": "3 Body Problem", + "originalTitle": "3 Body Problem", + "overview": "Across continents and decades, five brilliant friends make earth-shattering discoveries as the laws of science unravel and an existential threat emerges.", + "posterPath": "/ykZ7hlShkdRQaL2aiieXdEMmrLb.jpg", + "backdropPath": "/ciizJ9Okzt9tBBGK7Q3T14LFT2j.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2024-03-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.479, + "voteCount": 1304, + "popularity": 10.4634 + }, + { + "id": 138971, + "title": "Billy the Kid", + "originalTitle": "Billy the Kid", + "overview": "An epic romantic adventure series based on the life of famous American outlaw Billy the Kid — from his humble Irish roots, to his early days as a cowboy and gunslinger in the American frontier, to his pivotal role in the Lincoln County War and beyond.", + "posterPath": "/hwPPA0sqlU9kGRHDDyl4cVp4Vum.jpg", + "backdropPath": "/wk00DBQ4hmAInKSDw4s7eX3jCAj.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "2022-04-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 144, + "popularity": 10.4495 + }, + { + "id": 4571, + "title": "Hunter", + "originalTitle": "Hunter", + "overview": "Hunter is an American police drama television series created by Frank Lupo, and starring Fred Dryer as Sgt. Rick Hunter and Stepfanie Kramer as Sgt. Dee Dee McCall, which ran on NBC from 1984 to 1991. However, Kramer left after the sixth season to pursue other acting and musical opportunities. In the seventh season, Hunter partnered with two different women officers. The titular character, Sgt. Rick Hunter, was a wily, physically imposing, and often rule-breaking homicide detective with the Los Angeles Police Department. The show's main characters, Hunter and McCall, resolve many of their cases by shooting dead the perpetrators.\n\nThe show's executive producer during the first season was Stephen J. Cannell, whose company produced the series.", + "posterPath": "/mEBo13onK8U45qnIC0Xh8TnxMtv.jpg", + "backdropPath": "/331oYm2437GK7nEjrGhYjKb7Kfd.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1984-09-18", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 91, + "popularity": 10.4495 + }, + { + "id": 202297, + "title": "Fire Country", + "originalTitle": "Fire Country", + "overview": "Seeking redemption and a shortened prison sentence, young convict Bode Donovan joins a firefighting program that returns him to his small Northern California hometown, where he and other inmates work alongside elite firefighters to extinguish massive blazes across the region.", + "posterPath": "/6XnA02VRG4dhBpTZWGZuXQdYGDW.jpg", + "backdropPath": "/r6jUY6q3ObYOeFFWxM7jemS7IWE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-10-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 145, + "popularity": 10.4456 + }, + { + "id": 2440, + "title": "Highway to Heaven", + "originalTitle": "Highway to Heaven", + "overview": "A probationary angel is sent back to Earth to team up with an ex-cop and help people.", + "posterPath": "/fR7BcK3UzQqpX7Earp10nPHitZF.jpg", + "backdropPath": "/nvm6q6p0y7CdRG1JQuGzWLdV7p7.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 10765 + ], + "genres": [ + "Family", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1984-09-19", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.362, + "voteCount": 188, + "popularity": 10.4405 + }, + { + "id": 494, + "title": "Alice", + "originalTitle": "Alice", + "overview": "Alice is an American sitcom television series that ran from August 31, 1976 to March 19, 1985 on CBS. The series is based on the 1974 film Alice Doesn't Live Here Anymore. The show stars Linda Lavin in the title role, a widow who moves with her young son to start her life over again, and finds a job working at a roadside diner on the outskirts of Phoenix, Arizona. Most of the episodes revolve around events at Mel's Diner.", + "posterPath": "/iEEtQs1mPz3kvvaEFR7HVnME9Or.jpg", + "backdropPath": "/aExRXeP3arR3SmcWkxepJzCLa70.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1976-08-31", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 7.071, + "voteCount": 56, + "popularity": 10.4403 + }, + { + "id": 246246, + "title": "Beauty in Black", + "originalTitle": "Beauty in Black", + "overview": "A stripper's fate takes a turn when she crosses paths with the wealthy, dysfunctional family behind a cosmetics dynasty and a devious trafficking scheme.", + "posterPath": "/i98Jl46WBpK7ymttNOakowtNuFF.jpg", + "backdropPath": "/ywJcUIMTCjstPLvvyIiPWP3G3m3.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-10-24", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.562, + "voteCount": 97, + "popularity": 10.4306 + }, + { + "id": 250060, + "title": "The First Frost", + "originalTitle": "难哄", + "overview": "Wen Yifan, by chance, ends up living with her high school classmate Sang Yan, whom she once rejected. They keep their distance until Wen Yifan learns from Sang Yan that she sleepwalks, intertwining their lives once more.", + "posterPath": "/iqFr4kgIdJU73YoJr4Vdf7gFZqr.jpg", + "backdropPath": "/lO2CqipALTHkRblLIRDKgtMgwxX.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-02-18", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.491, + "voteCount": 57, + "popularity": 10.417 + }, + { + "id": 1906, + "title": "Shameless", + "originalTitle": "Shameless", + "overview": "The story of a young group of siblings pretty much abandoned by their parents, surviving by their wits - and humor - on a rough Manchester council estate. Whilst they won't admit it, they need help and find it in Steve, a young middle class lad who falls for Fiona, the oldest sibling, and increasingly finds himself drawn to this unconventional and unique family. Anarchic family life seen through the eyes of an exceptionally bright fifteen year old, who struggles to come of age in the context of his belligerent father, closeted brother, psychotic sister and internet porn star neighbors.", + "posterPath": "/kE30UWJvJZ03KIIJMmL6m6YoG0l.jpg", + "backdropPath": "/unGJ97G8ODR7xFR3Z0ycrPafH7n.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2004-01-13", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.562, + "voteCount": 145, + "popularity": 10.4063 + }, + { + "id": 38657, + "title": "Ridiculousness", + "originalTitle": "Ridiculousness", + "overview": "Rob Dyrdek takes the funniest amateur internet videos and builds them into an episode of edgy, funny, and most importantly, timeless television.", + "posterPath": "/4rJdcHQrE4stnZTEAP0m4gnlVQi.jpg", + "backdropPath": "/gEs0kv3PNIWSYgqTjswTiCHiUe4.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767, + 10764 + ], + "genres": [ + "Comedy", + "Talk", + "Reality" + ], + "releaseDate": "2011-08-29", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.769, + "voteCount": 119, + "popularity": 10.4018 + }, + { + "id": 1530, + "title": "My Three Sons", + "originalTitle": "My Three Sons", + "overview": "A widower and aeronautical engineer named Steven Douglas raises three sons with the help of his father-in-law, and later the boys' great-uncle. An adopted son, a stepdaughter, wives, and another generation of sons join the loving family in later seasons.", + "posterPath": "/jOnSZ87XrV04mu5ZKgr8TUVVVz4.jpg", + "backdropPath": "/9Mk99zaaymurtHuYCW6r8SBVXW0.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1960-09-29", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 35, + "popularity": 10.3896 + }, + { + "id": 4467, + "title": "Late Night with David Letterman", + "originalTitle": "Late Night with David Letterman", + "overview": "Late Night with David Letterman is a nightly hour-long comedy talk show on NBC that was created and hosted by David Letterman. It premiered in 1982 as the first incarnation of the Late Night franchise and went off the air in 1993, after Letterman left NBC and moved to Late Show on CBS. Late Night with Conan O'Brien then filled the time slot. As of March 2, 2009, the slot has been filled by Late Night with Jimmy Fallon. It will be filled by Seth Meyers in the spring of 2014, after Fallon becomes host of The Tonight Show.", + "posterPath": "/kSraSPTeNoiR60ti9amNqLvM3Em.jpg", + "backdropPath": "/ayk5CPDuzmvclZ1VC74Aab2w09L.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "1982-02-01", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 54, + "popularity": 10.3893 + }, + { + "id": 2243, + "title": "Touched by an Angel", + "originalTitle": "Touched by an Angel", + "overview": "Monica, an angel, is tasked with bringing guidance and messages from God to various people who are at a crossroads in their lives.", + "posterPath": "/jiSv0xNx6MGhAFfv05Ov7DgDELJ.jpg", + "backdropPath": "/b73DCbaqYICq3yUbBe5vxtbXjTX.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Family" + ], + "releaseDate": "1994-09-21", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.179, + "voteCount": 176, + "popularity": 10.3889 + }, + { + "id": 62455, + "title": "Locked Up", + "originalTitle": "Vis a vis", + "overview": "Set up to take the blame for corporate fraud, young Macarena Ferreiro is locked up in a high-security women's prison surrounded by tough, ruthless criminals in this tense, provocative Spanish thriller.", + "posterPath": "/1kH9u5DkoDUuIlhFFWjz9VSlKhC.jpg", + "backdropPath": "/iukGFUQQWUdgwTGGDLb1Pw3GoZP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2015-04-20", + "releaseYear": "2015", + "originalLanguage": "es", + "voteAverage": 8.015, + "voteCount": 2488, + "popularity": 10.3854 + }, + { + "id": 47665, + "title": "Black Sails", + "originalTitle": "Black Sails", + "overview": "The pirate adventures of Captain Flint and his men twenty years prior to Robert Louis Stevenson’s classic “Treasure Island.” Flint, the most brilliant and most feared pirate captain of his day, takes on a fast-talking young addition to his crew who goes by the name John Silver. Threatened with extinction on all sides, they fight for the survival of New Providence Island, the most notorious criminal haven of its day – a debauched paradise teeming with pirates, prostitutes, thieves and fortune seekers, a place defined by both its enlightened ideals and its stunning brutality.", + "posterPath": "/mZcSwrDdw6cdOVgXm496DgwrQcQ.jpg", + "backdropPath": "/A7lo83g09i3cDmLRKtDiiYN8w0z.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2014-01-25", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.605, + "voteCount": 1389, + "popularity": 10.3752 + }, + { + "id": 504, + "title": "The Ren & Stimpy Show", + "originalTitle": "The Ren & Stimpy Show", + "overview": "Ren and Stimpy are a mismatch made in animation heaven with nothing in common but a life-long friendship and an incredible knack for getting into trouble. Join them in their bizarre and gross world for some outlandish situations coupled with hilarious jokes.", + "posterPath": "/4plB7fMf1xob12ui7kpgnO3h4tJ.jpg", + "backdropPath": "/c8m4NAE774Vsn5AZvn2bFarUtDX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "1991-08-11", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.625, + "voteCount": 497, + "popularity": 10.3717 + }, + { + "id": 1432, + "title": "Veronica Mars", + "originalTitle": "Veronica Mars", + "overview": "In the fictional town of Neptune, California, student Veronica Mars progresses from high school to college while moonlighting as a private investigator under the tutelage of her detective father.", + "posterPath": "/vOdJETEueGgUqJR4UvwTdUoJhvO.jpg", + "backdropPath": "/rhdvR0brfejyjvvnGwG8Zi28zkU.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 35 + ], + "genres": [ + "Mystery", + "Drama", + "Comedy" + ], + "releaseDate": "2004-09-22", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.814, + "voteCount": 667, + "popularity": 10.3705 + }, + { + "id": 195670, + "title": "XO, Kitty", + "originalTitle": "XO, Kitty", + "overview": "Teen matchmaker Kitty Song Covey thinks she knows everything there is to know about love. But when she moves halfway across the world to reunite with her long-distance boyfriend, she'll soon realize that relationships are a lot more complicated when it's your own heart on the line.", + "posterPath": "/hxvTdKAwv27PUfpXOQp6AwWr6V.jpg", + "backdropPath": "/h0CQ36rm9cSLznve5ocCDtYlnwN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2023-05-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 558, + "popularity": 10.3686 + }, + { + "id": 12447, + "title": "Climax!", + "originalTitle": "Climax!", + "overview": "Climax! is an American anthology series that aired on CBS from 1954 to 1958. The series was hosted by William Lundigan and later co-hosted by Mary Costa. It was one of the few CBS programs of that era to be broadcast in color. Many of the episodes were performed and broadcast live.", + "posterPath": "/fO9xn3sIVQHs5ap4gUnQ4AacONE.jpg", + "backdropPath": "/tc1YJLMCMFyvA1OsFyzMMJ2wIfL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "1954-10-07", + "releaseYear": "1954", + "originalLanguage": "en", + "voteAverage": 3.3, + "voteCount": 11, + "popularity": 10.3638 + }, + { + "id": 104716, + "title": "Ride the Wind", + "originalTitle": "乘风破浪的姐姐", + "overview": "A chinese variety show which features 30 female celebrities all over 30 years old who must compete to debut in a seven-member girlsband.", + "posterPath": "/vLZoRyHLWXvkOdAaNB3cW2q5J3V.jpg", + "backdropPath": "/jnA4mRa81FrWSXZD8ji8nHWRVho.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2020-06-12", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 7.2, + "voteCount": 10, + "popularity": 10.3624 + }, + { + "id": 240456, + "title": "The Count of Monte Cristo", + "originalTitle": "Il Conte di Montecristo", + "overview": "Edmond Dantes, a sailor falsely accused of treason, is imprisoned in the Château d'If off Marseille. After escaping, and adopting the identity of the Count of Monte Cristo, he plans revenge against those who wrongly accused him.", + "posterPath": "/bH85johgKnXDVVHdta9Q0wnG2PI.jpg", + "backdropPath": "/1rVwsEYfvzKB84dlkOVRIRZwSl.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-01-13", + "releaseYear": "2025", + "originalLanguage": "it", + "voteAverage": 7.8, + "voteCount": 118, + "popularity": 10.3615 + }, + { + "id": 2985, + "title": "Andromeda", + "originalTitle": "Andromeda", + "overview": "Captain Dylan Hunt and his crew quest to restore a government that once presided over an extended peace and prosperity.", + "posterPath": "/uAOyxeDiNwYU8GuOebU0FExh49C.jpg", + "backdropPath": "/rY4HsR1MLlddyrotCDskeC4ROXb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-10-02", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 279, + "popularity": 10.3483 + }, + { + "id": 656, + "title": "Curious George", + "originalTitle": "Curious George", + "overview": "With the help of his friend “The Man in the Yellow Hat,” a curious little monkey named George sets out on adventures to learn about the world around him.", + "posterPath": "/AWQF9ZP7X5GqGUoXnyj1NSQjKo.jpg", + "backdropPath": "/vSscKZocnih10gBlT4KLnWA8iyO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2006-09-04", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 125, + "popularity": 10.3417 + }, + { + "id": 2187, + "title": "Reno 911!", + "originalTitle": "Reno 911!", + "overview": "This partially unscripted comedy brings viewers into the squad car as incompetent officers swing into action, answering 911 calls about everything from speeding violations and prostitution to staking out a drug den. Within each episode, viewers catch a \"fly on the wall\" glimpse of the cops' often politically incorrect opinions, ranging from their personal feelings to professional critiques of their colleagues.", + "posterPath": "/phkCW1Hdoijl5i15H7KnnnBhaNL.jpg", + "backdropPath": "/tZ2kKliPcBVEKQOTYbndFdIKIB8.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-07-23", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.186, + "voteCount": 172, + "popularity": 10.3298 + }, + { + "id": 61751, + "title": "All Hail King Julien", + "originalTitle": "All Hail King Julien", + "overview": "King Julien is back and shaking his booty harder than ever! Discover the wild world of Madagascar as the king takes on the jungle’s craziest adventures in this comedy series. With his loyal sidekicks Maurice and Mort, they meet a whole new cast of colorful animals, including ambitious head of security Clover and the villainous Foosa. No one can stop this king from ruling with an iron fist...in the air...wavin' like he just doesn't care.", + "posterPath": "/tsE6Dbx7aejDDmAy4DX55YxE8pT.jpg", + "backdropPath": "/dODynuJvFtLSmyTiiMqRxEKf7t1.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2014-12-19", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.747, + "voteCount": 95, + "popularity": 10.3263 + }, + { + "id": 720, + "title": "DuckTales", + "originalTitle": "DuckTales", + "overview": "Scrooge McDuck finds his hands full at home when nephews Huey, Dewey and Louie move to Duckburg. Joined by their loyal pals Launchpad McQuack, Gyro Gearloose and Mrs. Beakley, the DuckTales gang never fails to deliver a wealth of adventure. Get ready for a fortune of fun with DuckTales!", + "posterPath": "/muplnM90daPCQ5Bn1olcwN1EO22.jpg", + "backdropPath": "/exXuOvRwzkbtZmojV65CJpwc2BU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 35, + 10762 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Comedy", + "Kids" + ], + "releaseDate": "1987-09-18", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.649, + "voteCount": 696, + "popularity": 10.3232 + }, + { + "id": 4477, + "title": "Becker", + "originalTitle": "Becker", + "overview": "Becker is a dedicated, outspoken and talented doctor with a gruff exterior. While he tends to offend those who try to get close to him, he is extremely dedicated to his medical practice in the Bronx, N.Y., where he always goes the extra mile to help those in need. But Dr. John Becker looks at the world around him and sees a society gone mad, full of incongruities and just plain wrong thinking. And he has no qualms about saying anything that comes to mind – anything.", + "posterPath": "/hno1hP545G5xS1l4mLBXaY7NIqn.jpg", + "backdropPath": "/wdQ9nON4M93VDwkwcPAkuVLS2yM.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1998-11-02", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.119, + "voteCount": 138, + "popularity": 10.32 + }, + { + "id": 65844, + "title": "KONOSUBA - God's blessing on this wonderful world!", + "originalTitle": "この素晴らしい世界に祝福を!", + "overview": "After a traffic accident, Kazuma Sato’s disappointingly brief life was supposed to be over, but he wakes up to see a beautiful girl before him. She claims to be a goddess, Aqua, and asks if he would like to go to another world and bring only one thing with him. Kazuma decides to bring the goddess herself, and they are transported to a fantasy world filled with adventure, ruled by a demon king. Now Kazuma only wants to live in peace, but Aqua wants to solve many of this world’s problems, and the demon king will only turn a blind eye for so long…", + "posterPath": "/oRaOeQlwktbGSd2T31FYAcgHZlh.jpg", + "backdropPath": "/rvZJxD36tKoglL8fXoMMWKGQfM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-14", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1377, + "popularity": 10.3146 + }, + { + "id": 3365, + "title": "Grange Hill", + "originalTitle": "Grange Hill", + "overview": "Children's drama series following the lives of students and teachers at Grange Hill comprehensive school.", + "posterPath": "/8SziJYek4dEumfweUY9GnnOtcJS.jpg", + "backdropPath": "/aA7628zqsHEKTqBGiYjzLDYzSUU.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1978-02-08", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 25, + "popularity": 10.3075 + }, + { + "id": 223500, + "title": "WIND BREAKER", + "originalTitle": "WIND BREAKER", + "overview": "Furin High School's delinquents get bad grades, but they excel at protecting their town. Then a victory-obsessed newcomer threatens the balance of power.", + "posterPath": "/3kTFL3PAeTyS8gGZAh0iYG6NNjt.jpg", + "backdropPath": "/czrAvoN103RYYX8lhkZPs2zgnkl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-04-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.054, + "voteCount": 156, + "popularity": 10.3067 + }, + { + "id": 96316, + "title": "Rent-a-Girlfriend", + "originalTitle": "彼女、お借りします", + "overview": "Kinoshita Kazuya is a 20-year-old failure of a college student. He managed to kiss his girlfriend once, but was dumped after a month. Completely spiteful, Kazuya uses a certain method to date a girl. He goes to their meeting place and a beautiful girl brushing her long, black hair behind her ear was there, smiling at him. Her name was Mizuhara Chizuru. Something real is born after just a single rental! A reckless rom-com filled with love and excitement is about to begin!", + "posterPath": "/6ZpDPUNtVw6UdJoStvVlRZ62yAi.jpg", + "backdropPath": "/ullfy98STkno11rDGi44SK6llwx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-07-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 932, + "popularity": 10.2982 + }, + { + "id": 2156, + "title": "The Tyra Banks Show", + "originalTitle": "The Tyra Banks Show", + "overview": "The Tyra Banks Show, also known as and shortened to Tyra or The Tyra Show, is an American talk show hosted by Tyra Banks. The last new episode aired on Friday, May 28, 2010. The show featured many special guest stars which include Mike Epps, Cheryl Tiegs, Miley Cyrus, LL Cool J, Rihanna, Michael Rapaport, and Robbi Morgan.", + "posterPath": "/du7W8UdGmqpqUUCZdOGGZNmD6uS.jpg", + "backdropPath": "/2wMwu8CXTZsnteGLrfVkMXpD0il.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2005-09-12", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 4.8, + "voteCount": 22, + "popularity": 10.2963 + }, + { + "id": 60573, + "title": "Silicon Valley", + "originalTitle": "Silicon Valley", + "overview": "In the high-tech gold rush of modern Silicon Valley, the people most qualified to succeed are the least capable of handling success. Partially inspired by Mike Judge’s own experiences as a Silicon Valley engineer in the late ‘80s, Silicon Valley is an American sitcom that centers around six programmers who are living together and trying to make it big in the Silicon Valley.", + "posterPath": "/4ptpmWBVD9HY9hMh8Cbs6SMiy7p.jpg", + "backdropPath": "/4pfXAnWxOfEJsUgDPW0zqzs5UWv.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.139, + "voteCount": 1808, + "popularity": 10.2913 + }, + { + "id": 299778, + "title": "Tatsuki Fujimoto 17-26", + "originalTitle": "藤本タツキ 17-26", + "overview": "Six studios and seven directors adapt the early works of Tatsuki Fujimoto, the mastermind behind \"Chainsaw Man,\" into an anime anthology. Each episode is an anime adaptation of a short story he drew from ages seventeen to twenty-six, including the first manga he ever submitted for competition. Watch as vivid tales of young love, chaos, madness, and the bonds between people unfold in each episode.", + "posterPath": "/rVBxMx1IrBdxbxbBuOWK8kiurMB.jpg", + "backdropPath": "/4YrYmBx26WZgITKlcceaIz74vj3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-11-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.615, + "voteCount": 26, + "popularity": 10.282 + }, + { + "id": 3051, + "title": "Lost in Space", + "originalTitle": "Lost in Space", + "overview": "The space family Robinson is sent on a five-year mission to find a new planet to colonise. The voyage is sabotaged time and again by an inept stowaway, Dr. Zachary Smith. The family's spaceship, Jupiter II, also carries a friendly robot who endures an endless stream of abuse from Dr. Smith, but is a trusted companion of young Will Robinson", + "posterPath": "/f7xArCMZPBW7SoCsqsOXvc3X8Ry.jpg", + "backdropPath": "/upqfQF1LBPf7IRZao0sxt1BHZlx.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1965-09-15", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.092, + "voteCount": 119, + "popularity": 10.2787 + }, + { + "id": 4464, + "title": "Homicide: Life on the Street", + "originalTitle": "Homicide: Life on the Street", + "overview": "An American police procedural chronicling the work of a fictional version of the Baltimore Police Department's Homicide Unit.", + "posterPath": "/nb5310xlFjx5r9TnpKoaOTQsAlP.jpg", + "backdropPath": "/sEkUddzvrgRd70o28aRiZdwdq2p.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "1993-01-31", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8.081, + "voteCount": 135, + "popularity": 10.2508 + }, + { + "id": 66788, + "title": "13 Reasons Why", + "originalTitle": "13 Reasons Why", + "overview": "After a teenage girl's perplexing suicide, a classmate receives a series of tapes that unravel the mystery of her tragic choice.", + "posterPath": "/nel144y4dIOdFFid6twN5mAX9Yd.jpg", + "backdropPath": "/c4CSgKL6QfkJxsWcGYDyTxpbzpW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2017-03-31", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.563, + "voteCount": 4403, + "popularity": 10.2504 + }, + { + "id": 92685, + "title": "The Owl House", + "originalTitle": "The Owl House", + "overview": "An animated fantasy-comedy series that follows Luz, a self-assured teenage girl who accidentally stumbles upon a portal to a magical world where she befriends a rebellious witch, Eda, and an adorably tiny warrior, King. Despite not having magical abilities, Luz pursues her dream of becoming a witch by serving as Eda's apprentice at the Owl House and ultimately finds a new family in an unlikely setting.", + "posterPath": "/zqjSex7DZn7p4dU7mMktdJ8zQV5.jpg", + "backdropPath": "/mGHrUSt2uA5RaIheSmBfRnRHPS8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759, + 35, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "2020-01-10", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.661, + "voteCount": 1730, + "popularity": 10.242 + }, + { + "id": 36361, + "title": "Ulice", + "originalTitle": "Ulice", + "overview": "Ulice is a Czech soap opera produced and broadcast by Nova. In the Czech language Ulice means street.\n\nThe show describes the lives of the Farský, Jordán, Boháč, Nikl, and Liška families and many other people that live in Prague. Their daily battle against real problems of living in a modern world like divorce, love, betrayal and illness or disease. Ulice often shows crime.", + "posterPath": "/gFEHva8Csx18hMGJJZ6gi4sFSKR.jpg", + "backdropPath": "/cchlQWYrnMPyl1EbjZWCzeAz8l5.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2005-09-05", + "releaseYear": "2005", + "originalLanguage": "cs", + "voteAverage": 4.6, + "voteCount": 33, + "popularity": 10.2359 + }, + { + "id": 1998, + "title": "Moonlighting", + "originalTitle": "Moonlighting", + "overview": "After being duped and going bankrupt, model Maddie is convinced by David to become a partner in a detective agency. Together they solve various cases, while getting comfortable with each other.", + "posterPath": "/yOetTNRQLPmlfO0k5377yhHZyC3.jpg", + "backdropPath": "/mSn5IrrLB6drP1gfwydYAakZG7Y.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 9648, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "1985-03-03", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.529, + "voteCount": 376, + "popularity": 10.2356 + }, + { + "id": 297464, + "title": "The Guest", + "originalTitle": "La huésped", + "overview": "A seemingly perfect household unravels when an unexpected visitor arrives, exposing hidden tensions and political aspirations that threaten to tear the family apart.", + "posterPath": "/fBMRxziwviMBVLOCe1i4qtwRXKj.jpg", + "backdropPath": "/wJBYXpzKHZNWnkfMuXhr40daPan.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-24", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.9, + "voteCount": 31, + "popularity": 10.2329 + }, + { + "id": 42282, + "title": "Girls", + "originalTitle": "Girls", + "overview": "The assorted humiliations, disasters and rare triumphs of four very different twenty-something girls: Hannah, an aspiring writer; Marnie, an art gallery assistant and cousins Jessa and Shoshanna.", + "posterPath": "/ikyT3hnELofnYRsPIqVGgUhDbOT.jpg", + "backdropPath": "/9O2k1lfAMes2UgrWzHVvpMJHjw.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2012-04-15", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.344, + "voteCount": 413, + "popularity": 10.2084 + }, + { + "id": 64432, + "title": "The Magicians", + "originalTitle": "The Magicians", + "overview": "Brakebills University is a secret institution specializing in magic. There, amidst an unorthodox education of spellcasting, a group of twenty-something friends soon discover that a magical fantasy world they read about as children is all too real— and poses grave danger to humanity.", + "posterPath": "/A66dZN98BPEYeFQAhNdNCIXa57d.jpg", + "backdropPath": "/qb9vehNFxTpPrazhD7JJ6QtEtCv.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-12-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.589, + "voteCount": 1654, + "popularity": 10.2081 + }, + { + "id": 232230, + "title": "Lord of Mysteries", + "originalTitle": "诡秘之主", + "overview": "In a Victorian world of steam, dreadnoughts, and occult horrors, Zhou Mingrui awakens as Klein Moretti. He walks a razor’s edge between light and darkness, entangled with warring Churches. This is the legend of unlimited potential…and unspeakable danger.", + "posterPath": "/c8fHePq3yTn3WvZd4hupkHwsjm5.jpg", + "backdropPath": "/AdWWrcYKNXlpeWNJlmK4HCJ6Dj9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-06-28", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.75, + "voteCount": 86, + "popularity": 10.2001 + }, + { + "id": 2595, + "title": "Knots Landing", + "originalTitle": "Knots Landing", + "overview": "The domestic adventures, misdeeds and everyday interactions of five families living on a cul-de-sac in a small California community.", + "posterPath": "/ohcRf8CyVpQiUw2ZTmGQ2I4fH8D.jpg", + "backdropPath": "/umiteWJE7qUkPO3vNxuISjiZVQk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1979-12-27", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 40, + "popularity": 10.1967 + }, + { + "id": 26663, + "title": "What's My Line?", + "originalTitle": "What's My Line?", + "overview": "Four panelists must determine guests' occupations - and, in the case of famous guests, while blindfolded, their identity - by asking only \"yes\" or \"no\" questions.", + "posterPath": "/A9T7xSQFnlxFgZkqC4lmHYPXhq4.jpg", + "backdropPath": "/kuxGPrAiyvIRjysEK97Bzr9248j.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1950-02-02", + "releaseYear": "1950", + "originalLanguage": "en", + "voteAverage": 6.926, + "voteCount": 27, + "popularity": 10.1905 + }, + { + "id": 105009, + "title": "Tokyo Revengers", + "originalTitle": "東京リベンジャーズ", + "overview": "Takemichi Hanagaki is a freelancer that’s reached the absolute pits of despair in his life. He finds out that the only girlfriend he ever had, in middle school, Hinata Tachibana, had been killed by the ruthless Tokyo Manji Gang. The day after hearing about her death, he’s standing on the station platform and ends up being pushed over onto the tracks by a herd of people. He closes his eyes thinking he’s about to die, but when he opens his eyes back up, he somehow had gone back in time 12 years. Now that he’s back living the best days of his life, Takemichi decides to get revenge on his life.", + "posterPath": "/arB3L9pZZBSzUPSC8BEv8c3X0bF.jpg", + "backdropPath": "/ypYVX2NEm0F3HVXlqwvkwMVsW2R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.421, + "voteCount": 1270, + "popularity": 10.1844 + }, + { + "id": 341, + "title": "Brothers and Sisters", + "originalTitle": "Brothers and Sisters", + "overview": "The close-knit Walker family deals with struggles and triumphs.", + "posterPath": "/d5eJF2tve9qBxxAYle1Q8S1HrUU.jpg", + "backdropPath": "/wwim9vwDUrKbXeKcHSwvimWDqcy.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-09-24", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.113, + "voteCount": 190, + "popularity": 10.1836 + }, + { + "id": 3346, + "title": "Petticoat Junction", + "originalTitle": "Petticoat Junction", + "overview": "The Bradley family are proud owners of the Shady Rest Hotel. Kate and her three young daughters do the job of running the hotel.", + "posterPath": "/2kTGzz870hmdmQ074CYTdKFRqSm.jpg", + "backdropPath": "/hQWWSbiUz4HKQxRQJtPXpO8ixJB.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1963-09-24", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 5.705, + "voteCount": 39, + "popularity": 10.1807 + }, + { + "id": 12433, + "title": "A Case For Two", + "originalTitle": "Ein Fall für zwei", + "overview": "Ein Fall für zwei is a German television series, which premiered on September 11, 1981 on ZDF. The series, located in Frankfurt am Main, features two main characters who solve crimes: a defense attorney and a private investigator. Josef Matula, a former German police officer, has gone into private business. His method of investigation is very effective and direct, and he sometimes even resorts to dirty tricks. Claus Theo Gärtner has portrayed the role since the start of the series.", + "posterPath": "/7cztFGBj6xmJLS39UlhRDRWoEAq.jpg", + "backdropPath": "/dJloUF9ojhhGA7AcxTl8Znpuoie.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1981-09-11", + "releaseYear": "1981", + "originalLanguage": "de", + "voteAverage": 5.3, + "voteCount": 16, + "popularity": 10.1805 + }, + { + "id": 331, + "title": "America's Next Top Model", + "originalTitle": "America's Next Top Model", + "overview": "Aspiring models compete for a chance to break into the business with a panel of judges critiquing their progress throughout the competition.", + "posterPath": "/47EIfjYrT80AOfpAIkvSxdpwGOv.jpg", + "backdropPath": "/9kuUPHz99Oojm6GG7mawtIjv4lv.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2003-05-20", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.261, + "voteCount": 138, + "popularity": 10.1788 + }, + { + "id": 124101, + "title": "Hacks", + "originalTitle": "Hacks", + "overview": "Explore a dark mentorship that forms between Deborah Vance, a legendary Las Vegas comedian, and an entitled, outcast 25-year-old.", + "posterPath": "/ulBzMy5DZjBeUo6wHqn8ao0Zn6j.jpg", + "backdropPath": "/dDEj2qS9RGiY6P3Bkzc0EEMaKpR.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-05-13", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 295, + "popularity": 10.1617 + }, + { + "id": 203857, + "title": "The Diplomat", + "originalTitle": "The Diplomat", + "overview": "Amid an international crisis, a US diplomat contends with her high-profile job as ambassador to the UK and her strained marriage to a political star.", + "posterPath": "/cOKXV0FalCYixNmZYCfHXgyQ0VX.jpg", + "backdropPath": "/v6f9FUDDQfGIv8MLRQwlL0zvRjI.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2023-04-20", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 375, + "popularity": 10.1598 + }, + { + "id": 3828, + "title": "Hill Street Blues", + "originalTitle": "Hill Street Blues", + "overview": "A realistic glimpse into the daily lives of the officers and detectives at an urban police station.", + "posterPath": "/elvCmYxmwVzv2va3rLKponOJOfm.jpg", + "backdropPath": "/Am2ZRSkoOQd00kmhUF7QtOFbLWQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1981-01-15", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 114, + "popularity": 10.1513 + }, + { + "id": 3940, + "title": "Judge Judy", + "originalTitle": "Judge Judy", + "overview": "Judge Judy is an American arbitration-based reality court show presided over by retired Manhattan Family Court Judge Judith Sheindlin. The show features Sheindlin adjudicating real-life small claims disputes within a simulated courtroom set. All parties involved must sign contracts, agreeing to arbitration under Sheindlin. The series is in first-run syndication and distributed by CBS Television Distribution.\n\nJudge Judy, which premiered on September 16, 1996, reportedly revitalized the court show genre. Only two other arbitration-based reality court shows preceded it, The People's Court and Jones and Jury. Sheindlin has been credited with introducing the \"tough\" adjudicating approach into the judicial genre, which has led to several imitators. The two court shows that outnumber Judge Judy's seasons, The People's Court and Divorce Court, have both lasted via multiple lives of production and shifting arbiters, making Sheindlin's span as a television arbiter the longest.", + "posterPath": "/pRjTr7Om4qcjxVVZZW68zQA6J8x.jpg", + "backdropPath": "/hbcQ5hArQQ9lCMRo3VVdEco7xC3.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "1996-09-16", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 5.75, + "voteCount": 92, + "popularity": 10.1422 + }, + { + "id": 1918, + "title": "The Twilight Zone", + "originalTitle": "The Twilight Zone", + "overview": "This 1980s revival of the classic sci-fi series features a similar style to the original anthology series. Each episode tells a tale (sometimes two or three) rooted in horror or suspense, often with a surprising twist at the end. Episodes usually feature elements of drama and comedy.", + "posterPath": "/5OYHoUEKE3RJMqiHcJ8XA5kB7bw.jpg", + "backdropPath": "/fy9fhl09shpTLjw4IEqqmVMYM28.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "1985-09-27", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.751, + "voteCount": 239, + "popularity": 10.1299 + }, + { + "id": 230915, + "title": "Khemjira", + "originalTitle": "เขมจิราต้องรอด", + "overview": "With a deadly curse set to claim him at 21, a young man flees to a master of ancient magic—only to face ghosts more dangerous than his fate.", + "posterPath": "/zJHVYs4e8yLyxJvs3PikQV1mBUN.jpg", + "backdropPath": "/hPkZQZvvLVg8KpHEGFTfrg2GCjL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-08-09", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 9.2, + "voteCount": 17, + "popularity": 10.1293 + }, + { + "id": 34742, + "title": "To LOVE-Ru", + "originalTitle": "To LOVEる -とらぶる-", + "overview": "The story is about Rito Yuuki , a high-school boy who cannot confess to the girl of his dreams, Haruna Sairenji. One day when coming home and sulking in the bathtub a mysterious, nude girl, appears out of nowhere. Her name is Lala and she comes from the planet Deviluke, where she is the heir to the throne. Her father wants her to return to her home planet so she can marry one of the husband candidates, but she decides that she wants to marry Rito in order to stay on Earth.", + "posterPath": "/vsWNCisRhrBbUaTR56qCk6pLsEn.jpg", + "backdropPath": "/61vXR9xfgNqidYkBruRXhRTlVzI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-04-04", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.213, + "voteCount": 399, + "popularity": 10.1268 + }, + { + "id": 223876, + "title": "The Sentinels", + "originalTitle": "Les Sentinelles", + "overview": "1915, WWI. French Private Gabriel is presumed dead. Selected for a top-secret program, he’s given a serum that makes him stronger and faster. To see his family again, he must join the Sentinels, elite soldiers on a mission to end the war.", + "posterPath": "/2q9YjhcO8xgde7ofKjBu9FknyBF.jpg", + "backdropPath": "/tAIfga2OoZE2qNUCu7JOzbupCD3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-09-29", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 7.5, + "voteCount": 14, + "popularity": 10.1259 + }, + { + "id": 204832, + "title": "MASHLE: MAGIC AND MUSCLES", + "originalTitle": "マッシュル-MASHLE-", + "overview": "This is a world of magic where magic is used for everything. But deep in the forest exists a young man who spends his time training and bulking up. He can't use magic, but he enjoys a peaceful life with his father. But one day, his life is put in danger! Will his muscular body protect him from the magic users who are out to get him? Powerfully trained muscles crush magic as this abnormal magical fantasy begins!", + "posterPath": "/yORTvQOQTZzZ9JRIpRH4QaIaQBm.jpg", + "backdropPath": "/p1swd15DRtCnNj20U904dbXeVsi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.317, + "voteCount": 585, + "popularity": 10.1249 + }, + { + "id": 4271, + "title": "Farscape", + "originalTitle": "Farscape", + "overview": "A freak accident during an experimental space mission catapults Astronaut John Crichton across a thousand galaxies to an alien battlefield.", + "posterPath": "/fCJx7cCXKOEkmCVIIyP8qk0Pb7Y.jpg", + "backdropPath": "/uo4wPlubpUwjlLm39PF8BxXCqLm.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1999-03-19", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 576, + "popularity": 10.114 + }, + { + "id": 44549, + "title": "Nashville", + "originalTitle": "Nashville", + "overview": "Rayna Jaymes and Juliette Barnes face personal and professional challenges as they navigate their paths as artists and individuals. Surrounding them, and often complicating their lives, are their family, friends and, in some cases, lovers, as well as the up-and-coming performers and songwriters trying to get ahead in the business.", + "posterPath": "/oZ2K2cPeWURnQjCxrvSEnaEcIST.jpg", + "backdropPath": "/ibLYptKeE64xa3zzfgbLcBjtN09.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-10-10", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.607, + "voteCount": 244, + "popularity": 10.1072 + }, + { + "id": 38464, + "title": "Blue Exorcist", + "originalTitle": "青の祓魔師", + "overview": "Humans live in the world of Assiah, demons in Gehenna. The two dimensions are not meant to interfere with each other, but demons still possess creatures in Assiah in spite of this. The humans who can fight these demons are known as exorcists. Rin Okumura is a boy who bears the curse of being Satan's illegitimate son. His foster father sacrificed himself to save him from demons. To avenge his foster father's death as well as to prove himself, Rin decides to follow the path of an exorcist and defeat his own father, Satan. To hone his raw skills, Rin enters True Cross Academy to train with other exorcist candidates.", + "posterPath": "/kpNoqNmElzGUEcEoZyfFwvYXMsR.jpg", + "backdropPath": "/wJzHFl5mq6JFbD6equTleJuzlnk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2011-04-17", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.887, + "voteCount": 494, + "popularity": 10.0824 + }, + { + "id": 70128, + "title": "Genius", + "originalTitle": "Genius", + "overview": "The life stories of history's greatest minds. From their days as young adults to their final years we see their discoveries, loves, relationships, causes, flaws and genius.", + "posterPath": "/waCykVbku2Amh0revf535SOnlmm.jpg", + "backdropPath": "/rzijyomlauJbIEhgWLUfrEINJx0.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-04-25", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 286, + "popularity": 10.0693 + }, + { + "id": 1401, + "title": "Hell on Wheels", + "originalTitle": "Hell on Wheels", + "overview": "The epic story of post-Civil War America, focusing on Cullen Bohannon, a Confederate soldier who sets out to exact revenge on the Union soldiers who killed his wife. His journey takes him west to Hell on Wheels, a dangerous, raucous, lawless melting pot of a town that travels with and services the construction of the first transcontinental railroad, an engineering feat unprecedented for its time.", + "posterPath": "/ckC9pL9yeYpOoK5aJ7GbYYWheK7.jpg", + "backdropPath": "/pXwEO7OYA7LhVPYyGIIqa58wwcF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 37 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Western" + ], + "releaseDate": "2011-11-06", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.568, + "voteCount": 448, + "popularity": 10.0623 + }, + { + "id": 2730, + "title": "I Love Lucy", + "originalTitle": "I Love Lucy", + "overview": "Cuban Bandleader Ricky Ricardo would be happy if his wife Lucy would just be a housewife. Instead she tries constantly to perform at the Tropicana where he works, and make life comically frantic in the apartment building they share with landlords Fred and Ethel Mertz, who also happen to be their best friends.", + "posterPath": "/mPUSrFTvQqwEqTtfukxJBtkbxWj.jpg", + "backdropPath": "/5tGYbT3irV4ZuO7M65HewlVT6fx.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1951-10-15", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 7.889, + "voteCount": 238, + "popularity": 10.0476 + }, + { + "id": 2275, + "title": "The Bionic Woman", + "originalTitle": "The Bionic Woman", + "overview": "After fully recovering from her near fatal bout of bionic rejection, Jaime Sommers, the first female cyborg, is assigned to spy missions of her own.", + "posterPath": "/3V3XrXk1DSp1z0qsGOZRI1K2acd.jpg", + "backdropPath": "/hK7iYSziOzETEok7kRPvZ2y0P2p.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1976-01-14", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 6.95, + "voteCount": 260, + "popularity": 10.0459 + }, + { + "id": 218493, + "title": "Tales of Wedding Rings", + "originalTitle": "結婚指輪物語", + "overview": "Sato is a high school boy in love with his best friend Hime, an unearthly beauty from another realm. So when she moves back to her home world to get married, Sato doesn’t think twice—he follows her and crashes the wedding. Then, after a kiss from Hime, he suddenly becomes the new groom! But here, Hime is a Ring Princess and her husband is destined to be the Ring King: a hero of immense power.", + "posterPath": "/mNuV7Jti0jYQh34OP2WdmhflTDQ.jpg", + "backdropPath": "/uDYwinazoCtQFthSzc083biJPn4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2024-01-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.327, + "voteCount": 49, + "popularity": 10.0395 + }, + { + "id": 83631, + "title": "What We Do in the Shadows", + "originalTitle": "What We Do in the Shadows", + "overview": "A documentary-style look into the daily (or rather, nightly) lives of a group of vampires in Staten Island who have “lived” together for hundreds and hundreds of years.", + "posterPath": "/wa3ZQE9kLnqwN3vQ0NNjg1NPsCa.jpg", + "backdropPath": "/mKikck71CvVISUSTLk29fwRbH4y.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-03-27", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.987, + "voteCount": 902, + "popularity": 10.0269 + }, + { + "id": 65931, + "title": "Bungo Stray Dogs", + "originalTitle": "文豪ストレイドッグス", + "overview": "Stalked by a beastly white tiger, Atsushi Nakajima has no idea that the menace lives inside him—a power that catches the attention of the Armed Detective Agency. Using inhuman abilities to combat crime, this team takes Atsushi under the wing of their most eccentric member, Dazai. Together, they tear through mafia-muddled mysteries while enemies keep an eye on the tiger’s lofty bounty.", + "posterPath": "/6AQmGhkYwAqW2OevjXbsh7tZnNO.jpg", + "backdropPath": "/79lc4Rocfnn9RIv1YlHC0jeBsqf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 80, + 9648, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Crime", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 402, + "popularity": 10.0238 + }, + { + "id": 70796, + "title": "The Marvelous Mrs. Maisel", + "originalTitle": "The Marvelous Mrs. Maisel", + "overview": "It’s 1958 Manhattan and Miriam “Midge” Maisel has everything she’s ever wanted - the perfect husband, kids, and Upper West Side apartment. But when her life suddenly takes a turn and Midge must start over, she discovers a previously unknown talent - one that will take her all the way from the comedy clubs of Greenwich Village to a spot on Johnny Carson’s couch.", + "posterPath": "/zS7fQiOZiKCVH2vlYSiIsFWW8hh.jpg", + "backdropPath": "/vQ77kC1amsZECKIxkUIsMJCtBVp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2017-03-16", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 883, + "popularity": 10.0159 + }, + { + "id": 247767, + "title": "The Studio", + "originalTitle": "The Studio", + "overview": "Desperate for celebrity approval, the newly appointed head of a movie studio and his executive team at Continental Studios must juggle corporate demands with creative ambitions as they try to keep movies alive and relevant.", + "posterPath": "/2c6ofLTa5CRfeQjVA1bWiYBdxQN.jpg", + "backdropPath": "/aSOrTfmIL211gjenXoRzvBoxgYv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-03-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 237, + "popularity": 10.0148 + }, + { + "id": 85991, + "title": "Fruits Basket", + "originalTitle": "フルーツバスケット", + "overview": "After a family tragedy turns her life upside down, 16-year-old high school student Tohru Honda takes matters into her own hands and moves out… into a tent! Unfortunately for her, she pitches her new home on private land belonging to the mysterious Soma clan, and it isn't long before the owners discover her secret. But, as Tohru quickly finds out when the family offers to take her in, the Somas have a secret of their own—when hugged by the opposite sex, they turn into the animals of the Chinese Zodiac!", + "posterPath": "/9TGNcvMm91QXmnnCCYYqnYK0bK7.jpg", + "backdropPath": "/2vIjTPITEoHeetz1jU4UxyHL9tg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 153, + "popularity": 9.9997 + }, + { + "id": 233194, + "title": "Only for Love", + "originalTitle": "以爱为营", + "overview": "Zheng Shu Yi, a reporter who excels at her job and is determined to land a front-page story, has tried very hard to earn an exclusive interview with top financial executive Shi Yan. Their love story then blossoms due to a mistake. Zheng Shu Yi has written numerous reports through her in-depth research of various industries while Shi Yan is constantly looking for socially responsible start-ups to invest in as he hopes to give back to society as much as he can. Shi Yan finds that Zheng Shu Yi's opinions conveyed through her reports coincide with his own, so he agrees to let her write a series of reports on their company. The two eventually open up new opportunities in their career and also find love.", + "posterPath": "/aSDZcX0FIJJRMNiL7n9J39LyK46.jpg", + "backdropPath": "/tchhr4PIgdILmgUqbfm2fbi9b26.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-11-03", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.104, + "voteCount": 53, + "popularity": 9.9898 + }, + { + "id": 1682, + "title": "Teletubbies", + "originalTitle": "Teletubbies", + "overview": "Pre-school fun, fantasy and education with colourful rotund characters Tinky Winky, Dipsy, Laa-Laa and Po in a magical land called Teletubbyland.", + "posterPath": "/paSs4nnYaYVaKG2QGP7kyBrm61A.jpg", + "backdropPath": "/2Ne8sYfnnRVl9BaghudN8bSkMnW.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10762, + 16 + ], + "genres": [ + "Family", + "Kids", + "Animation" + ], + "releaseDate": "1997-03-31", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 4.465, + "voteCount": 159, + "popularity": 9.9868 + }, + { + "id": 45094, + "title": "The Following", + "originalTitle": "The Following", + "overview": "Notorious serial killer Joe Carroll, after being found guilty of murdering 14 female students on the Virginia college campus where he taught literature, escapes from death row. The FBI calls former agent Ryan Hardy to consult on the case, as he was the one responsible for Carroll’s capture in 2003. Ryan, working closely with an FBI team, including Mike Weston and FBI Specialist Debra Parker, piece together the ever-growing web of murders orchestrated by the devious Carroll.", + "posterPath": "/iYBAvTs9WvUe43JwLkCu23J6pcw.jpg", + "backdropPath": "/2HpYUipbaIgYhcO3PkllGF9xy5D.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2013-01-21", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 551, + "popularity": 9.9813 + }, + { + "id": 20111, + "title": "Mobile Suit Gundam SEED", + "originalTitle": "機動戦士ガンダムSEED", + "overview": "Cosmic Era 71. Mankind has developed into two subspecies: Naturals, who reside on Earth, and Coordinators, genetically enhanced humans capable of withstanding the rigors of space who inhabit orbital colonies known as PLANTs. The story revolves around a young Coordinator named Kira Yamato, who becomes involved in the war between the two races after a neutral space colony secretly developing mobile suits for the Earth Alliance is attacked by the PLANTs' military force, ZAFT.", + "posterPath": "/rWgdDIq4JeaI36KdmLPkYcQjBQ3.jpg", + "backdropPath": "/otE9DjFrKMOv0Mkz1o7HfJGCvNF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2002-10-05", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.593, + "voteCount": 54, + "popularity": 9.9708 + }, + { + "id": 213249, + "title": "Sausage Party: Foodtopia", + "originalTitle": "Sausage Party: Foodtopia", + "overview": "After the foods win their war against the humans at the end of the film, they create Cibopolis, a city of their own ruled entirely by foods. But soon, problems arise, including rain, crows, and internal discord among the foods. To find answers, Frank, Brenda, and Barry set out to find a human.", + "posterPath": "/cPLk5uvh0Am0UQlxRP4xqNcVQD3.jpg", + "backdropPath": "/c0T9qkw2mMGPcl4SVS7AeSChgrh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.942, + "voteCount": 181, + "popularity": 9.9703 + }, + { + "id": 69557, + "title": "Fauda", + "originalTitle": "פאודה", + "overview": "A top Israeli agent comes out of retirement to hunt for a Palestinian militant he thought he'd killed, setting a chaotic chain of events into motion.", + "posterPath": "/j8RWvUgEEweL3BCOLCU4s7SFBmv.jpg", + "backdropPath": "/znA4DO7RhBNUsOcEuT3jG8EA7gX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10768 + ], + "genres": [ + "Drama", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2015-02-15", + "releaseYear": "2015", + "originalLanguage": "he", + "voteAverage": 7.5, + "voteCount": 229, + "popularity": 9.9609 + }, + { + "id": 31179, + "title": "The Lone Ranger", + "originalTitle": "The Lone Ranger", + "overview": "The Lone Ranger is an American western television series that ran from 1949 to 1957, starring Clayton Moore with Jay Silverheels as Tonto. The live-action series initially featured Gerald Mohr as the episode narrator. Fred Foy served as both narrator and announcer of the radio series from 1948 to its finish and became announcer of the television version when story narration was dropped there. This was by far the highest-rated television program on the ABC network in the early 1950s and its first true \"hit\".", + "posterPath": "/sAQSKgrYC0l5kQbLk8QXINAK6F4.jpg", + "backdropPath": "/hjYanQ2NcrpEbFLxCkRgBZPPV93.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 10759 + ], + "genres": [ + "Western", + "Action & Adventure" + ], + "releaseDate": "1949-09-15", + "releaseYear": "1949", + "originalLanguage": "en", + "voteAverage": 6.765, + "voteCount": 34, + "popularity": 9.96 + }, + { + "id": 111110, + "title": "ONE PIECE", + "originalTitle": "ONE PIECE", + "overview": "With his straw hat and ragtag crew, young pirate Monkey D. Luffy goes on an epic voyage for treasure.", + "posterPath": "/lXl3ZbY5TksOdt6eYgdyg6vsnFW.jpg", + "backdropPath": "/d0dRxEmbrYbkeJql4j2DDDYEyN.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-08-31", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.122, + "voteCount": 1431, + "popularity": 9.9597 + }, + { + "id": 118357, + "title": "1883", + "originalTitle": "1883", + "overview": "Follow the Dutton family as they embark on a journey west through the Great Plains toward the last bastion of untamed America. A stark retelling of Western expansion, and an intense study of one family fleeing poverty to seek a better future in America’s promised land — Montana.", + "posterPath": "/waLbm384SQDwLTCn6ttPqQS5kfV.jpg", + "backdropPath": "/uQUHCqxHsG9blvtCoL7vluMG9Jp.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "2021-12-19", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.28, + "voteCount": 819, + "popularity": 9.9532 + }, + { + "id": 13943, + "title": "Beavis and Butt-Head", + "originalTitle": "Beavis and Butt-Head", + "overview": "Two dimwitted teenagers discuss TV, heavy-metal music, nachos, and trying to \"score with chicks.\" When the duo aren't sitting on the couch, they try to pick up girls at the local convenience store, slack off at school, or wreak havoc while working at a burger joint.", + "posterPath": "/5hgVcFr4eWGGRpjYwxb03z7wuqg.jpg", + "backdropPath": "/esC8zNwCcP2e3HUPcVa7v94yj1U.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1993-03-08", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.141, + "voteCount": 430, + "popularity": 9.9505 + }, + { + "id": 474, + "title": "Nash Bridges", + "originalTitle": "Nash Bridges", + "overview": "Fun-loving San Francisco Police Department investigator Nash Bridges is part of the elite Special Investigations Unit. He tackles crime using his keen sense of humor and charm. Joe Dominguez comes out of retirement to become Bridges' wisecracking yet more rule-abiding partner.", + "posterPath": "/hJeHSCFoxWN2Pt2lg56CKOi9g87.jpg", + "backdropPath": "/bblnBLNL8w45P8QYXsbC8b1GlLs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1996-03-29", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 108, + "popularity": 9.9495 + }, + { + "id": 70798, + "title": "Istanbullu Gelin", + "originalTitle": "İstanbullu Gelin", + "overview": "Faruk is the owner of a bus company and the leader of a powerful family in Bursa which is a metropol in Turkey. Faruk meets a violonist girl and falls in love with her. But the dominant mother of Faruk isn't happy with her son's relationship.", + "posterPath": "/alVrRNxDGOlULYdXgnOpPrVP7KL.jpg", + "backdropPath": "/raosbKSonz7ZkuZsfxHG5LgH0Wl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 35 + ], + "genres": [ + "Drama", + "Family", + "Comedy" + ], + "releaseDate": "2017-03-03", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 7.4, + "voteCount": 212, + "popularity": 9.9336 + }, + { + "id": 235758, + "title": "Alya Sometimes Hides Her Feelings in Russian", + "originalTitle": "時々ボソッとロシア語でデレる隣のアーリャさん", + "overview": "Alya is a transfer student enjoying popularity at her new high school, often sporting a cold shoulder while earning high marks in class. She ignores her nerdy classmate, Kuze Masachika, except for when she blurts out a flirtatious line to him in Russian. Little does she know, Kuze understands Russian, though he pretends not to. Let’s see where this wacky love story takes them!", + "posterPath": "/hfnzByZIRj6rx8xaxzS2zDilei1.jpg", + "backdropPath": "/3197ZU1CWDjdFsmqvWPZGXAYaoi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-07-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 189, + "popularity": 9.9332 + }, + { + "id": 81144, + "title": "The Neighborhood", + "originalTitle": "The Neighborhood", + "overview": "The nicest guy in the Midwest moves his family into a tough neighborhood in Los Angeles where not everyone appreciates his extreme neighborliness. That includes their new next-door neighbor Calvin.", + "posterPath": "/uItUViUsFAY7wzufTS2zWNbuuAm.jpg", + "backdropPath": "/rca7DzvnlJGYtyOmtC111PCZsJ6.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-10-01", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.578, + "voteCount": 154, + "popularity": 9.9318 + }, + { + "id": 32829, + "title": "Happy Endings", + "originalTitle": "Happy Endings", + "overview": "A fresh and funny take on modern friendship and what one urban family will do to stay friends after the perfect couple who brought them all together break up on their wedding day. The failed wedding forces them all to question their life choices. Then there are Alex and Dave themselves, who strike a truce and must learn to live with the changes their breakup has brought.", + "posterPath": "/lY44BjOnwCqtUO4VoKOz7IcG9RC.jpg", + "backdropPath": "/vXO3m7GNvUhXQwNmqRD8aOGLifh.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-04-13", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.884, + "voteCount": 199, + "popularity": 9.9309 + }, + { + "id": 3266, + "title": "North and South", + "originalTitle": "North and South", + "overview": "The story of the enduring friendship between Orry Main of South Carolina and George Hazard of Pennsylvania, who become best friends while attending the United States Military Academy at West Point but later find themselves and their families on opposite sides of the American Civil War.", + "posterPath": "/yd6Gtg8GntTsOqPf27gGIkS9vIe.jpg", + "backdropPath": "/wbERlP3necHgz9QV3zNP0bGzShC.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "1985-11-03", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 166, + "popularity": 9.9307 + }, + { + "id": 4529, + "title": "Cannon", + "originalTitle": "Cannon", + "overview": "Cannon is a CBS detective television series produced by Quinn Martin which aired from March 26, 1971 to March 3, 1976. The primary protagonist is the title character, private detective Frank Cannon, played by William Conrad. He also appeared on two episodes of Barnaby Jones.\n\nCannon is the first Quinn Martin-produced series to be aired on a network other than ABC. A \"revival\" television film, The Return of Frank Cannon, was aired on November 1, 1980. In total, there were 124 episodes.", + "posterPath": "/8VkW3h6AD5DPgV1kUzmZNFqdK5l.jpg", + "backdropPath": "/kEXmu3LeW6MORhXRm43FMs67gPG.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "1971-09-14", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 6.556, + "voteCount": 36, + "popularity": 9.9159 + }, + { + "id": 205050, + "title": "Shangri-La Frontier", + "originalTitle": "シャングリラ・フロンティア", + "overview": "Rakuro Hizutome only cares about one thing: beating crappy VR games. He devotes his entire life to these buggy games and could clear them all in his sleep. One day, he decides to challenge himself and play a popular god-tier game called Shangri-La Frontier. But he quickly learns just how difficult it is. Will his expert skills be enough to uncover its hidden secrets?", + "posterPath": "/aCGdpgNkgz66R1winFkTFsMAhlC.jpg", + "backdropPath": "/yErVUZkLVak2ICxFC7mMfl3vcNP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 184, + "popularity": 9.8966 + }, + { + "id": 128839, + "title": "La Brea", + "originalTitle": "La Brea", + "overview": "An epic adventure begins when a massive sinkhole opens in the middle of Los Angeles, pulling hundreds of people and buildings into its depths. Those who fell in find themselves in a mysterious and dangerous primeval land, where they have no choice but to band together to survive. Meanwhile, the rest of the world desperately seeks to understand what happened. In the search for answers, one family torn apart by this disaster will have to unlock the secrets of this inexplicable event to find a way back to each other.", + "posterPath": "/wEo5pzSZ3MF4EzNvY2R1OZNX266.jpg", + "backdropPath": "/qhaPuyznsxb13wSQbpqSDqtNuX8.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2021-09-28", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.433, + "voteCount": 1547, + "popularity": 9.8948 + }, + { + "id": 106158, + "title": "Law & Order: Organized Crime", + "originalTitle": "Law & Order: Organized Crime", + "overview": "The detectives of the Organized Crime Control Bureau work to dismantle New York City's most vicious and violent illegal enterprises.", + "posterPath": "/wOffjfafVLyav9CMDgBfIv49J9Y.jpg", + "backdropPath": "/3mDSrhLUX2cAhaPqurNBslPh8rz.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2021-04-01", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 282, + "popularity": 9.8826 + }, + { + "id": 237748, + "title": "Brilliant Minds", + "originalTitle": "Brilliant Minds", + "overview": "A rare condition — face blindness — gives an eccentric yet incredibly gifted neurologist a unique perspective on care, fueling his mission to change the way people see his patients. Alongside a team of brilliant young interns, he solves some of the world's most puzzling psychological cases while navigating the complicated relationships that come with the job.", + "posterPath": "/3hLlllb45emUeZ5BH3ulbYbPbGE.jpg", + "backdropPath": "/wn1aR7LwfXB3ssSHVYUDk1TQQUB.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-09-23", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.42, + "voteCount": 44, + "popularity": 9.8813 + }, + { + "id": 99121, + "title": "Walker", + "originalTitle": "Walker", + "overview": "Cordell Walker, a widower and father of two with his own moral code, returns home to Austin after being undercover for two years, only to discover there's harder work to be done at home.", + "posterPath": "/9uW1W9q0zKPzPdRwIcL3eCDJsfw.jpg", + "backdropPath": "/lBxDdmpCNIIfrPgNQcr7cbVDI6X.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2021-01-21", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 378, + "popularity": 9.8791 + }, + { + "id": 60726, + "title": "Forever", + "originalTitle": "Forever", + "overview": "Doctor Henry Morgan, New York City’s star medical examiner, has a secret. He doesn't just study the dead to solve criminal cases, he does it to solve the mystery that has eluded him for 200 years—the answer to his own inexplicable immortality. This long life has given Henry remarkable observation skills which impresses his new partner, Detective Jo Martinez. Each week, a new case and their budding friendship will reveal layers of Henry’s long and colorful past. Only his best friend and confidant, Abe knows Henry’s secret.", + "posterPath": "/4OnnU4j2tQEOnsPnRZswW91v9vr.jpg", + "backdropPath": "/5ziXtCZye3NowgFJCBrK3kTd7vn.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Crime", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-09-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 608, + "popularity": 9.8767 + }, + { + "id": 4681, + "title": "Zorro", + "originalTitle": "Zorro", + "overview": "Diego de la Vega, the son of a wealthy landowner, returns from his studies in Spain and discovers that Los Angeles is under the command of Capitan Monastario, a cruel man who relishes in the misuse of his power for personal gain. Knowing that he cannot hope to single-handedly defeat Monastario and his troops, Diego resorts to subterfuge. He adopts the secret identity of Zorro, a sinister figure dressed in black, and rides to fight Monastario's injustice.", + "posterPath": "/1i4HdLMCRfEXLeA6JGTsQj6WU3k.jpg", + "backdropPath": "/sMk5YZQIjlfhrLOAgW4igI9xqin.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 10759 + ], + "genres": [ + "Western", + "Action & Adventure" + ], + "releaseDate": "1957-10-10", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 182, + "popularity": 9.8549 + }, + { + "id": 2317, + "title": "My Name Is Earl", + "originalTitle": "My Name Is Earl", + "overview": "When petty criminal Earl Hickey wins the lottery, he sets off on a quest to repair his questionable karma.", + "posterPath": "/57shLTTkHvhLUhyP1t0lNZPoAxD.jpg", + "backdropPath": "/9dTbuwQy6WoVNy9hqBAuwR1MoUU.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-09-20", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.662, + "voteCount": 1054, + "popularity": 9.8492 + }, + { + "id": 1554, + "title": "QI", + "originalTitle": "QI", + "overview": "Comedy quiz show full of quirky facts, in which contestants are rewarded more if their answers are 'quite interesting'.", + "posterPath": "/35SFXXXE05T23n7ztSHwa4cqzSy.jpg", + "backdropPath": "/ikS12cRIPV1ZDVmCVKMNfMmow9Y.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2003-09-11", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.939, + "voteCount": 264, + "popularity": 9.8476 + }, + { + "id": 3772, + "title": "Walker, Texas Ranger", + "originalTitle": "Walker, Texas Ranger", + "overview": "Modern-day Texas Ranger, Cordell Walker's independent crime-solving methods have their roots in the rugged traditions of the Old West. Walker's closest friend is former Ranger, C.D. Parker, who retired after a knee injury, and now owns \"C.D.'s,\" a Country/Western saloon/restaurant. Rookie Ranger, James \"Jimmy\" Trivette is an ex-football player who bases his crime-solving methods on reason and uses computers and cellular phones. Alex Cahill is the Assistant DA who shares a mutual attraction with Walker, but often disagrees with his unorthodox approach to law enforcement.", + "posterPath": "/lldKpGEOlHJXMkb1pi7s7xCExmX.jpg", + "backdropPath": "/ip2jf4xVavxwVcffRRrW5vcIZ2Z.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37, + 80 + ], + "genres": [ + "Drama", + "Western", + "Crime" + ], + "releaseDate": "1993-04-21", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 509, + "popularity": 9.8401 + }, + { + "id": 604, + "title": "Teen Titans", + "originalTitle": "Teen Titans", + "overview": "Fighting for truth, justice and the last slice of pizza, these five superheroes are living proof you're never too young to save the planet. Protecting Earth and beyond, the Teen Titans use martial arts and gadgetry to battle villains.", + "posterPath": "/7DCq6XbJx5WGKPvSMBxYK9uJQWQ.jpg", + "backdropPath": "/oIFxhR3nMmzZmj51gwifNR1whC4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-07-19", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 8.367, + "voteCount": 1278, + "popularity": 9.8379 + }, + { + "id": 245292, + "title": "The Spirealm", + "originalTitle": "致命游戏", + "overview": "Jiu Shi’s skills are pushed to the edge as he faces life-or-death challenges inside a brutal VR maze.", + "posterPath": "/9fg3f2OW0yDnx6SfBWctYCs4ZU7.jpg", + "backdropPath": "/pmUWKAxTWyo9JsKQskECPpWwYrn.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 35 + ], + "genres": [ + "Drama", + "Mystery", + "Comedy" + ], + "releaseDate": "2024-02-02", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 9.2, + "voteCount": 18, + "popularity": 9.8328 + }, + { + "id": 1649, + "title": "Sliders", + "originalTitle": "Sliders", + "overview": "In his basement in San Francisco, boy-genius Quinn Mallory unlocks the doorway to an infinite number of Earths. During a test run, Quinn invites co-worker Wade Welles and his teacher Professor Maximillian Arturo to see his new invention. But an increase in power and an early departure leave all three, plus a washed-up soul singer named Rembrandt \"Crying Man\" Brown, lost in a parallel world. Now they must \"slide\" from world to world, not only adapting to their changing surroundings, but also trying to get back to their world. Will they ever make it home?", + "posterPath": "/9cBXIPl83fE2yQusoEt6vMpSjIJ.jpg", + "backdropPath": "/qgbJ0AySKABiTXHrxOyOhkXQImz.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-03-22", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 456, + "popularity": 9.8296 + }, + { + "id": 85271, + "title": "WandaVision", + "originalTitle": "WandaVision", + "overview": "Wanda Maximoff and Vision—two super-powered beings living idealized suburban lives—begin to suspect that everything is not as it seems.", + "posterPath": "/frobUz2X5Pc8OiVZU8Oo5K3NKMM.jpg", + "backdropPath": "/lOr9NKxh4vMweufMOUDJjJhCRHW.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2021-01-15", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.204, + "voteCount": 12433, + "popularity": 9.829 + }, + { + "id": 2947, + "title": "Veep", + "originalTitle": "Veep", + "overview": "A look into American politics, revolving around former Senator Selina Meyer who finds being Vice President of the United States is nothing like she expected and everything everyone ever warned her about.", + "posterPath": "/cdd78fGdaA3EbK2ToZRWcaaB1fx.jpg", + "backdropPath": "/vKaDMLbdLrThldFj9Vavo6suTS2.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-04-22", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 492, + "popularity": 9.8209 + }, + { + "id": 252650, + "title": "Perfect 10 Liners", + "originalTitle": "สายรหัสเทวดา", + "overview": "First-year students join the elite ‘Perfect 10 Liners’ mentorship circle, where new bonds, secret crushes, and unexpected love stories unfold.", + "posterPath": "/1ZmjzDN2f7ZxzMluOTO5aPztI9e.jpg", + "backdropPath": "/3iIPUMjUuR0dKhKsC4n9zF7isPu.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-10-27", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 9, + "voteCount": 15, + "popularity": 9.8185 + }, + { + "id": 78074, + "title": "Sintonia", + "originalTitle": "Sintonia", + "overview": "Told through three different characters' perspectives, the story of Sintonia explores the interconnection of the music, drug traffic, and religion in São Paulo. In the quest to be somebody, many paths will converge.", + "posterPath": "/safjAD2bBNT1grB23rFff5ChwDv.jpg", + "backdropPath": "/9GTFaWPPctyJeJaImg9HVPPbyOf.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2019-08-09", + "releaseYear": "2019", + "originalLanguage": "pt", + "voteAverage": 8.15, + "voteCount": 220, + "popularity": 9.8074 + }, + { + "id": 215001, + "title": "Destined with You", + "originalTitle": "이 연애는 불가항력", + "overview": "A lawyer bound by a centuries-old curse becomes entangled with a civil servant who holds the key to his freedom — igniting an unexpected romance.", + "posterPath": "/fMiLKTIFB7YCBQSYoTJ7NCrPcD6.jpg", + "backdropPath": "/jJMfTkvU2exHwCFoBHsIqwaHImh.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 35 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2023-08-23", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.073, + "voteCount": 213, + "popularity": 9.803 + }, + { + "id": 113988, + "title": "DAHMER - Monster: The Jeffrey Dahmer Story", + "originalTitle": "DAHMER - Monster: The Jeffrey Dahmer Story", + "overview": "This series examines the gruesome and horrific true crimes of Jeffrey Dahmer and the systemic failures that enabled one of America’s most notorious serial killers to continue his murderous spree in plain sight for over a decade.", + "posterPath": "/f2PVrphK0u81ES256lw3oAZuF3x.jpg", + "backdropPath": "/5vUux2vNUTqwCzb7tVcH18XnsF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-09-21", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 2778, + "popularity": 9.7819 + }, + { + "id": 4429, + "title": "Timon and Pumbaa", + "originalTitle": "Timon and Pumbaa", + "overview": "Set after the events of the \"The Lion King,\" follow Timon and Pumbaa as they go on misadventures in the jungle, as well as across the globe in various.", + "posterPath": "/sn9PTOwI6ktLHZcysCrP8cqOw1b.jpg", + "backdropPath": "/px5mLaDKXmRAp9MxVGaXswmzDyh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "1995-09-08", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 649, + "popularity": 9.7812 + }, + { + "id": 111474, + "title": "Gabby's Dollhouse", + "originalTitle": "Gabby's Dollhouse", + "overview": "This colorful series leads preschoolers room to room through a fantastical dollhouse of delightful mini-worlds and irresistible kitty characters.", + "posterPath": "/lyLvpLsC2WzBFZm2cIEn3VgKwEf.jpg", + "backdropPath": "/qR4tS0urUUaFh6mlRhVUkDZGN5j.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 35, + 16 + ], + "genres": [ + "Kids", + "Comedy", + "Animation" + ], + "releaseDate": "2021-01-05", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 87, + "popularity": 9.7675 + }, + { + "id": 39390, + "title": "Iss Pyaar Ko Kya Naam Doon?", + "originalTitle": "Iss Pyaar Ko Kya Naam Doon?", + "overview": "Khushi and Arnav have diametrically opposite ideologies. If Khushi believes in means, Arnav believes only in ends. Khushi's relationships are the most important to her, whereas Arnav believes all people come with a price and can be manipulated for one's benefit.", + "posterPath": "/bAHnfeAz4yF3SpZdVSOVMUEjMSP.jpg", + "backdropPath": "/cDtIBJRras8B4quvqc0NscjMn63.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10766 + ], + "genres": [ + "Drama", + "Family", + "Soap" + ], + "releaseDate": "2011-06-06", + "releaseYear": "2011", + "originalLanguage": "hi", + "voteAverage": 7.1, + "voteCount": 12, + "popularity": 9.7576 + }, + { + "id": 93449, + "title": "Tamron Hall", + "originalTitle": "Tamron Hall", + "overview": "Former news host and journalist Tamron Hall discusses all things topical and engages those she interviews in thorough meaningful and entertaining conversations.", + "posterPath": "/pOqHc6Q47uGqnCps1DGVMaWyd9v.jpg", + "backdropPath": "/wMVqVtaQdtPJk09eFVEZyN05efT.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2019-09-09", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 17, + "popularity": 9.7498 + }, + { + "id": 271014, + "title": "Black Heart", + "originalTitle": "Siyah Kalp", + "overview": "Sumru left the children she gave birth to at a young age and built a new life and family for herself. Melek and Nuh learn their mother's identity from their grandmother's final words and set out to find her. Sumru, who is now married to one of Cappadocia's wealthiest businessmen, Samet, continues her lavish life with the children she had with him. However, she has different plans regarding Samet's son from his first marriage, Cihan. The paths of Melek and Nuh, who are seeking to confront their mother, will unexpectedly cross with Cihan and his reluctant fiancée, Sevilay.", + "posterPath": "/bRscQAgNbHmLXMSznCBSQEc1vCw.jpg", + "backdropPath": "/3qjr6V5ANTKZVEkSfAFyc3W0AKA.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-09-12", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 8.8, + "voteCount": 12, + "popularity": 9.7365 + }, + { + "id": 3004, + "title": "Newhart", + "originalTitle": "Newhart", + "overview": "Dick Loudon and his wife Joanna decide to leave life in New York City and buy a little inn in Vermont. Dick is a how-to book writer, who eventually becomes a local TV celebrity as host of \"Vermont Today.\" George Utley is the handyman at the inn and Leslie Vanderkellen is the maid, with ambitions of being an Olympic Ski champion; she is later replaced by her cousin Stephanie, an heiress who hates her job. Her boyfriend is Dick's yuppie TV producer, Michael Harris. There are many other quirky characters in this fictional little town, including Dick's neighbors Larry, Darryl, and Darryl...three brothers who buy the Minuteman Cafe from Kirk Devane. Besides sharing a name, Darryl and Darryl never speak.", + "posterPath": "/zBI5YcdsftGE9F6zY6UwYVybsdY.jpg", + "backdropPath": "/pCUfyiLZ1bT7JkffXZdDT0PgbGz.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1982-10-02", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 54, + "popularity": 9.7333 + }, + { + "id": 3498, + "title": "Wizards of Waverly Place", + "originalTitle": "Wizards of Waverly Place", + "overview": "Alex, Justin and Max Russo are not your ordinary kids - they're wizards in training! While their parents run the Waverly Sub Station, the siblings struggle to balance their ordinary lives while learning to master their extraordinary powers.", + "posterPath": "/spVI8Zns4Ep30zzxcoO7f7nwfck.jpg", + "backdropPath": "/7CVy5uTj3JNF8wqb2VnfQdjL07V.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 10762 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2007-10-12", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 8.627, + "voteCount": 1150, + "popularity": 9.7324 + }, + { + "id": 55582, + "title": "Solitary Gourmet", + "originalTitle": "孤独のグルメ", + "overview": "Centered around typical Japanese food, a solitary salesman travelling through the country for business purposes, eats at its various establishments and experiences the various delicacies of Japanese cuisine.", + "posterPath": "/3DEWsJv0OxHON7AEy4Us6m3e7fS.jpg", + "backdropPath": "/n61sgsYJj02oO4AWFWLrGq9toqe.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-01-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.854, + "voteCount": 24, + "popularity": 9.7315 + }, + { + "id": 3497, + "title": "Moesha", + "originalTitle": "Moesha", + "overview": "The everyday life of Moesha Mitchell, a vivacious young woman juggling romance, school, ever-changing family dynamics, and friendships.", + "posterPath": "/6I3VCk8GCscaPM3aKOTJlzIaqhc.jpg", + "backdropPath": "/eQuNP6LUFKJmP4f4iNLJWoi3g3h.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1996-01-23", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 41, + "popularity": 9.7213 + }, + { + "id": 66465, + "title": "The Kapil Sharma Show", + "originalTitle": "The Kapil Sharma Show", + "overview": "", + "posterPath": "/fBPNBNFmcwhYXUpkW2Kb6jbeJOR.jpg", + "backdropPath": "/xV0JOheZzmemwdpq1fahTnfAUoU.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2016-04-23", + "releaseYear": "2016", + "originalLanguage": "hi", + "voteAverage": 7.1, + "voteCount": 36, + "popularity": 9.7075 + }, + { + "id": 60761, + "title": "Ace of the Diamond", + "originalTitle": "ダイヤのA", + "overview": "Eijun Sawamura is a pitcher who joins an elite school with a brilliant catcher named Kazuya Miyuki. Together with the rest of the team, they strive for Japan's storied Koushien championships through hard work and determination.", + "posterPath": "/pp5tCc1wlhR9XmtO1YcHrPB8CDb.jpg", + "backdropPath": "/dfEmmE3RJh3OYxyqOFDBt0qMS0E.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2013-10-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.925, + "voteCount": 67, + "popularity": 9.6977 + }, + { + "id": 92621, + "title": "Brassic", + "originalTitle": "Brassic", + "overview": "A group of working-class friends finding unconventional ways to win at life in suburban northern England. These lads have dealt, scammed, bribed and conned their way through adolescence, but now, their dealing and stealing is catching up with them and a whole load of trouble is heading their way.", + "posterPath": "/tnIq3yiLMZJpaJyRs8FNV7WJs6V.jpg", + "backdropPath": "/hEJE1WsZZqjJsq0Ltpom5qZzWEE.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Crime" + ], + "releaseDate": "2019-08-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.443, + "voteCount": 229, + "popularity": 9.6955 + }, + { + "id": 2359, + "title": "Spin City", + "originalTitle": "Spin City", + "overview": "Workaholic Mike Flaherty is the Deputy Mayor of New York City, serving as Mayor Randall Winston's key strategist and much-needed handler. Mike runs the city with the help of his oddball staff: an anxious and insecure press secretary; a sexist, boorish chief of staff; an impeccably groomed gay activist running minority affairs; a sharp and efficient, man-crazy accountant; and an idealistic young speechwriter. Like Mike, they are all professionally capable but personally challenged.", + "posterPath": "/iuBzOwnUNyce4KVnCDXphFOzv6i.jpg", + "backdropPath": "/eyi5tMbK6fRtXNFffUTIhRiX0LT.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1996-09-17", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.051, + "voteCount": 315, + "popularity": 9.6931 + }, + { + "id": 92967, + "title": "A Miracle", + "originalTitle": "Mucize Doktor", + "overview": "Ali was born in a provincial town and was rejected by his father for adoption. Ali with savant syndrome, who grew up in orphanages, graduated from the faculty of medicine with a first degree.", + "posterPath": "/29ifz2K8kqZD6eb2sTKBP9Hlc3N.jpg", + "backdropPath": "/j9orEeA4twmIEQtHdaAW0L1L7nE.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-09-12", + "releaseYear": "2019", + "originalLanguage": "tr", + "voteAverage": 8.054, + "voteCount": 1033, + "popularity": 9.6867 + }, + { + "id": 3752, + "title": "Fort Boyard", + "originalTitle": "Fort Boyard", + "overview": "A game show set and filmed on the real Fort Boyard in France. The contestants have to complete in physical and endurance challenges to win prize money.", + "posterPath": "/nFQyP89WGXtsDeD7ShiERRZ0kVy.jpg", + "backdropPath": "/vj5UkNjfPC1AC2ES1daJb64RWD8.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10764, + 10759 + ], + "genres": [ + "Family", + "Reality", + "Action & Adventure" + ], + "releaseDate": "1990-07-07", + "releaseYear": "1990", + "originalLanguage": "fr", + "voteAverage": 7.286, + "voteCount": 28, + "popularity": 9.6832 + }, + { + "id": 3476, + "title": "Inspector Morse", + "originalTitle": "Inspector Morse", + "overview": "Inspector Morse is a detective drama based on Colin Dexter's series of Chief Inspector Morse novels. The series starred John Thaw as Chief Inspector Morse and Kevin Whately as Sergeant Lewis, as well as a large cast of notable actors and actresses.", + "posterPath": "/34M8vNNtYqnrV5ilokWkGbc51Ia.jpg", + "backdropPath": "/xcvzQvQv6wsMPRyctek4jhDS8Yi.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1987-01-06", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 134, + "popularity": 9.6695 + }, + { + "id": 85844, + "title": "Wise Man's Grandchild", + "originalTitle": "賢者の孫", + "overview": "A young man is reborn in another world where he is adopted as a baby by the hero Merlin Wolford and named Shin. By his 15th birthday, Shin has accumulated all kinds of power by studying under Merlin, but one thing his adoptive grandfather didn't give him was a lick of common sense.", + "posterPath": "/zlPIFzhr5uvjTmzEU2rjtwazrLX.jpg", + "backdropPath": "/dflKTqHxzT0QWrTxjYOghsfQ0R1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.062, + "voteCount": 338, + "popularity": 9.6574 + }, + { + "id": 4860, + "title": "Waking the Dead", + "originalTitle": "Waking the Dead", + "overview": "A detective team apply new techniques to old crimes as they solve cold cases.", + "posterPath": "/pthoQb9tOrM0gi43ZER4cOKgm8D.jpg", + "backdropPath": "/q5pHoCGndSOcedKDY5nSDIrtBBH.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2001-06-18", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.19, + "voteCount": 42, + "popularity": 9.6547 + }, + { + "id": 239770, + "title": "Doctor Who", + "originalTitle": "Doctor Who", + "overview": "The Doctor and his companion travel across time and space encountering incredible friends and foes.", + "posterPath": "/2JP6NSmBwxg75uTcIHiv5R8PpPi.jpg", + "backdropPath": "/gDtZQmfzvErZpeXOVeCBQE9WkSF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-05-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.452, + "voteCount": 259, + "popularity": 9.6425 + }, + { + "id": 4297, + "title": "The Equalizer", + "originalTitle": "The Equalizer", + "overview": "Robert McCall is a former agent of a secret government agency who is now running his own private crime fighting operation where he fashions himself as \"The Equalizer.\" It is a service for victims of the system who have exhausted all possible means of seeking justice and have nowhere to go. McCall promises to even out the odds for them.", + "posterPath": "/7nrKPxGJWYe5cacNN9AV9bVplNZ.jpg", + "backdropPath": "/izWGnAJpD6Lthmq39s7Uyja2RgW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "1985-09-18", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 64, + "popularity": 9.6387 + }, + { + "id": 67575, + "title": "Moomin", + "originalTitle": "楽しいムーミン一家", + "overview": "In the remote and mysterious Moominvalley live the Moomins, gentle and peaceful creatures. Young Moomintroll and his family experience many strange adventures, both magical and mundane. Based on the children's stories by Tove Jansson.", + "posterPath": "/oNwa7eEqZpnPaNGkFrvvd3mSKeJ.jpg", + "backdropPath": "/231meoDrNjyUqF0sD0xItVw1h7g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762, + 10765, + 35 + ], + "genres": [ + "Animation", + "Family", + "Kids", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1990-04-12", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 84, + "popularity": 9.6341 + }, + { + "id": 2822, + "title": "Felicity", + "originalTitle": "Felicity", + "overview": "Felicity Porter, a sensitive and intelligent girl from the San Francisco Bay Area, decides to give up a slot at Stanford University's pre-med program to follow her long time crush to college in New York City. Things get even more complicated when she meets her dorm's resident advisor and they fall in love.", + "posterPath": "/i6gZ7fVpLBK3l5FkxCzMtEtT7Bz.jpg", + "backdropPath": "/4KUMCCjykGqgzeUpubxlwABm6ok.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1998-09-29", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.645, + "voteCount": 83, + "popularity": 9.6297 + }, + { + "id": 4573, + "title": "Late Night with Conan O'Brien", + "originalTitle": "Late Night with Conan O'Brien", + "overview": "Stepping into the late-late slot vacated by David Letterman, Conan O'Brien stars in a show that far outdoes its competition in sheer strangeness. Along with the celebrity interviews and musical numbers typical of late-night talk shows, this program make frequent use of odd walk-on characters and frequent \"visits\" from celebrity guests.", + "posterPath": "/gJZ1rhLLFpatuAeylJoUI82DKC7.jpg", + "backdropPath": "/q9unI9oHyLUNK97RQPYAGjFs4Xu.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "1993-09-13", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.199, + "voteCount": 148, + "popularity": 9.6288 + }, + { + "id": 60554, + "title": "Star Wars Rebels", + "originalTitle": "Star Wars Rebels", + "overview": "Set between the events of Star Wars: Episodes III and IV, the story unfolds during a dark time when the evil Galactic Empire is tightening its grip of power on the galaxy. Imperial forces have occupied a remote planet and are ruining the lives of its people. The motley but clever crew of the starship Ghost — cowboy Jedi Kanan, ace pilot Hera, street-smart teenager Ezra, the “muscle” Zeb, warrior firebrand Sabine, and cantankerous old astromech droid Chopper — is among a select few who are brave enough to stand against the Empire. Together, they will face threatening new villains, encounter colorful adversaries, embark on thrilling adventures, and become heroes with the power to ignite a rebellion.", + "posterPath": "/jmgR8330sKEJehr27rQ3bODnrlP.jpg", + "backdropPath": "/8BNjxMJMFp0BgqMh4PyuwZMXxh1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-13", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.727, + "voteCount": 949, + "popularity": 9.6262 + }, + { + "id": 1892, + "title": "The Fresh Prince of Bel-Air", + "originalTitle": "The Fresh Prince of Bel-Air", + "overview": "Will, a street-smart teenager, moves from the tough streets of West Philly to posh Bel-Air to live with his Uncle Philip, Aunt Vivian, his cousins — spoiled Hilary, preppy Carlton and young Ashley — and their sophisticated British butler, Geoffrey. Though Will’s antics and upbringing contrast greatly with the upper-class lifestyle of his extended relatives, he soon finds himself right at home as a loved part of the family.", + "posterPath": "/fJXzwxCVr2TEkhhKRKcih9o5DYK.jpg", + "backdropPath": "/uyB27Tx3KtczuSo4tDfmiXhfuCp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1990-09-10", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.922, + "voteCount": 2373, + "popularity": 9.6244 + }, + { + "id": 61692, + "title": "Fresh Off the Boat", + "originalTitle": "Fresh Off the Boat", + "overview": "A '90s-set single-camera comedy about a hip-hop-loving Asian kid growing up in suburban Orlando, being raised by an immigrant father obsessed with all things American and an immigrant mother often bewildered by white culture.", + "posterPath": "/o8ekdtv98EnrymVLw3VJ2WoFBoM.jpg", + "backdropPath": "/xcSH4KdTxvVmLARyrEeZOYrHjGR.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-02-04", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.173, + "voteCount": 281, + "popularity": 9.6205 + }, + { + "id": 3611, + "title": "Cow and Chicken", + "originalTitle": "Cow and Chicken", + "overview": "Follows the surreal adventures of a cow, named Cow, and her chicken brother, named Chicken. They are often antagonized by \"The Red Guy\", who poses as various characters to scam them.", + "posterPath": "/vWhzjxoHLrvl7JUKNDoXUfNqF2x.jpg", + "backdropPath": "/yhqIybnZgmObrauyf3zRy0JD7G3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1997-09-16", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.103, + "voteCount": 487, + "popularity": 9.6182 + }, + { + "id": 61345, + "title": "Z Nation", + "originalTitle": "Z Nation", + "overview": "Three years after the zombie virus has gutted the country, a team of everyday heroes must transport the only known survivor of the plague from New York to California, where the last functioning viral lab waits for his blood.", + "posterPath": "/gXfeDMkEcHoYBvtkbU11g3F81b.jpg", + "backdropPath": "/pYErfWWb52zq9QQFoZ0Qeoo5Yz.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10759, + 18 + ], + "genres": [ + "Mystery", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2014-09-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 917, + "popularity": 9.5719 + }, + { + "id": 4606, + "title": "Garfield and Friends", + "originalTitle": "Garfield and Friends", + "overview": "The animated stories of Garfield the cat, Odie the dog, their owner Jon and the trouble they get into. And also Orson the Pig and his adventures on a farm with his fellow farm animals.", + "posterPath": "/pE6l6I1ICKOu4pDUXxkl87TTLZx.jpg", + "backdropPath": "/69g8NnStOySjRgaRQxmV21gSrrF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1988-09-17", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 380, + "popularity": 9.5679 + }, + { + "id": 85949, + "title": "Star Trek: Picard", + "originalTitle": "Star Trek: Picard", + "overview": "Set twenty years after the events of Star Trek Nemesis, we follow the now-retired Admiral Picard into the next chapter of his life.", + "posterPath": "/bONYUEn7iMFCebhDuqNG7hqqwoO.jpg", + "backdropPath": "/lodNd9ITHf32q8ybHArHqoWOcXf.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2020-01-23", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.278, + "voteCount": 1812, + "popularity": 9.565 + }, + { + "id": 68665, + "title": "Big Hero 6 The Series", + "originalTitle": "Big Hero 6 The Series", + "overview": "Picking up immediately following the events in the feature film, these are the continuing adventures and friendship of 14-year-old tech genius Hiro and his compassionate, cutting-edge robot Baymax. As the new prodigy at San Fransokyo Institute of Technology, Hiro now faces daunting academic challenges and the social trials of being the little man on campus. Off campus, the stakes are raised for the high-tech heroes as they must protect their city from an array of scientifically enhanced villains.", + "posterPath": "/ldG4xXImCPyv5U5gbRmlB8On842.jpg", + "backdropPath": "/mCt3coepPkF6QlDQSO9tqI46yIV.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2017-11-20", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 89, + "popularity": 9.5502 + }, + { + "id": 1406, + "title": "Deadwood", + "originalTitle": "Deadwood", + "overview": "The story of the early days of Deadwood, South Dakota; woven around actual historic events with most of the main characters based on real people. Deadwood starts as a gold mining camp and gradually turns from a lawless wild-west community into an organized wild-west civilized town. The story focuses on the real-life characters Seth Bullock and Al Swearengen.", + "posterPath": "/fWwxYAuqY4Na7fKI3Qq2nFWCwG8.jpg", + "backdropPath": "/dGzPJnh8YcUS4J10sNunohaXMVn.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 80, + 18 + ], + "genres": [ + "Western", + "Crime", + "Drama" + ], + "releaseDate": "2004-03-21", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.117, + "voteCount": 887, + "popularity": 9.5459 + }, + { + "id": 90521, + "title": "Love Island", + "originalTitle": "Love Island", + "overview": "American version of the British dating reality competition in which ten singles come to stay in a villa for a few weeks and have to couple up with one another. Over the course of those weeks, they face the public vote and might be eliminated from the show. Other islanders join and try to break up the couples.", + "posterPath": "/kU2y21cls8WargMaX7KI47URMjD.jpg", + "backdropPath": "/m0TiLZ79RR19Zz0AZruQSBeH39x.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2019-07-09", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 163, + "popularity": 9.5402 + }, + { + "id": 2355, + "title": "Lilo & Stitch: The Series", + "originalTitle": "Lilo & Stitch: The Series", + "overview": "This animated series chronicles the further adventures of renegade scientist Dr. Jumba Jookiba's beloved Experiment 626, who is now living happily as Lilo's alien buddy Stitch. Jumba’s remaining experiments have landed all over Hawaii in the form of dehydrated pods. Lilo and Stitch’s mission is to catch Stitch’s \"cousins\" before they fall into the clutches of the evil Dr. Jacques von Hamsterviel!", + "posterPath": "/997mXFpYV2zdXK4EOctN3hgciaT.jpg", + "backdropPath": "/e3F1DhLs90kk1hWZhoTUanrxjMu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2003-09-20", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 637, + "popularity": 9.5385 + }, + { + "id": 99583, + "title": "Danger Force", + "originalTitle": "Danger Force", + "overview": "Captain Man has a new crew of superhero sidekicks - Danger Force. Captain Man and Schwoz create a fake school to train the kids to harness their uncontrollable superpowers to fight crime.", + "posterPath": "/gsvZYRnpcYJoefRlFWFKx9o0P4H.jpg", + "backdropPath": "/s1pIx94IaokrvqTC5p4rGuECKbW.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10765 + ], + "genres": [ + "Comedy", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-03-28", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 280, + "popularity": 9.5362 + }, + { + "id": 87917, + "title": "For All Mankind", + "originalTitle": "For All Mankind", + "overview": "Explore an aspirational world where NASA and the space program remained a priority and a focal point of our hopes and dreams as told through the lives of NASA astronauts, engineers, and their families.", + "posterPath": "/mNXT1QjRCEasXGH3rHCTQm0A0Su.jpg", + "backdropPath": "/9OQ5BIITkJwRJo9JA6AlCfJIGBQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10768 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 839, + "popularity": 9.5346 + }, + { + "id": 102085, + "title": "Too Hot to Handle", + "originalTitle": "Too Hot to Handle", + "overview": "On the shores of paradise, gorgeous singles meet and mingle. But there’s a twist. To win a $100,000 grand prize, they’ll have to give up sex.", + "posterPath": "/jr21CagMMfglh7YVgcyov3Cj833.jpg", + "backdropPath": "/wV6YSaRbA1RNI7ge71yZn3CJGzN.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2020-04-17", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.615, + "voteCount": 439, + "popularity": 9.5336 + }, + { + "id": 91555, + "title": "All Elite Wrestling: Dynamite", + "originalTitle": "All Elite Wrestling: Dynamite", + "overview": "A world-class roster of diverse male and female wrestlers give fans a new wrestling experience for the first time in 20 years.", + "posterPath": "/gPNWVCp0zrHRmwfovUpUQO44sts.jpg", + "backdropPath": "/4fl55dOJ3d5Du1jZMQ3Ut7DyJmu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2019-10-02", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 79, + "popularity": 9.5297 + }, + { + "id": 67117, + "title": "American Housewife", + "originalTitle": "American Housewife", + "overview": "A family comedy narrated by Katie, a strong-willed mother, raising her flawed family in a wealthy town filled with perfect wives and their perfect offspring.", + "posterPath": "/uDXPOk3fx1kPM1tQdrTdE2f76p2.jpg", + "backdropPath": "/8TLIyltOIjgN1qliQpQ3SCU9DrJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-10-11", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.711, + "voteCount": 171, + "popularity": 9.5177 + }, + { + "id": 289892, + "title": "Helluva Boss", + "originalTitle": "Helluva Boss", + "overview": "In Hell, imp Blitzø (the 'o' is silent) runs an assassin business targeting the world of the living, using a spell book borrowed from a prince of the underworld. With employees Moxxie, Millie, and Loona, they attempt to survive each other while keeping business afloat.", + "posterPath": "/dgtuBsG2F4cGiumtHBKDru7PW9j.jpg", + "backdropPath": "/20OP4f0xDbPttORm9OyIbNu3cNN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-31", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.893, + "voteCount": 56, + "popularity": 9.5003 + }, + { + "id": 256317, + "title": "Countdown", + "originalTitle": "Countdown", + "overview": "When an officer with the Department of Homeland Security is murdered in broad daylight, LAPD detective Mark Meachum is recruited to a secret task force, alongside undercover agents from all branches of law enforcement, to investigate. But the hunt for the killer soon uncovers a plot far more sinister than anyone could have imagined, kicking off a race against time to save a city of millions.", + "posterPath": "/gcSNS5cy1iOmYawIdJCzoc873rQ.jpg", + "backdropPath": "/4pxGvtwxDlATy9nvJMvYL8u25LZ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648 + ], + "genres": [ + "Crime", + "Mystery" + ], + "releaseDate": "2025-06-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 109, + "popularity": 9.4949 + }, + { + "id": 9027, + "title": "Rebelde Way", + "originalTitle": "Rebelde Way", + "overview": "Four teenagers at an elite school in Buenos Aires are drawn together by their love of music, despite their differing social and economic backgrounds.", + "posterPath": "/3ROiiGuYqXkm1CKX1h3KtmSvI8z.jpg", + "backdropPath": "/6WUb3YhgNSpI2Hk33OKiNi0WKUz.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2002-05-27", + "releaseYear": "2002", + "originalLanguage": "es", + "voteAverage": 7.97, + "voteCount": 362, + "popularity": 9.4932 + }, + { + "id": 227114, + "title": "Butterfly", + "originalTitle": "Butterfly", + "overview": "David Jung, a mysterious former US intelligence operative living in hiding in South Korea, has his life blown to pieces when the consequences of an impossible decision from his past come back to haunt him, and he finds himself hunted by Rebecca, a deadly young assassin, and Caddis, the sinister spy organization she works for.", + "posterPath": "/8x1W0TR2VIe7ORaRI9zwDqeJn9q.jpg", + "backdropPath": "/kPOm8uBC7ajkjCWC0NM2lRbhRLs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-08-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.145, + "voteCount": 100, + "popularity": 9.4901 + }, + { + "id": 4123, + "title": "Rumpole of the Bailey", + "originalTitle": "Rumpole of the Bailey", + "overview": "Rumpole of the Bailey is a British television series created and written by the British writer and barrister John Mortimer. It stars Leo McKern as Horace Rumpole, an aging London barrister who defends any and all clients, and has been spun off into a series of short stories, novels, and radio programmes.", + "posterPath": "/4UNZ0w9tc2T7tDbE2DO4wF718I7.jpg", + "backdropPath": "/orhlurp41Litbb4JJ481XmKNIQt.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "1975-12-17", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 20, + "popularity": 9.4897 + }, + { + "id": 49071, + "title": "Valley of the Wolves: Ambush", + "originalTitle": "Kurtlar Vadisi: Pusu", + "overview": "A continuation series of Osman Sinav's The Wolves Of The Valley. This produce focuses on politics, National Security and Regional Middle East problems. The Wolves of The Valley: Ambush serie also attracts attention by two film; The Wolves of The Valley: Iraq and The Wolves of The Valley: Palestine.", + "posterPath": "/wDWkjobSJm8I5r2ctSPtneUjHxT.jpg", + "backdropPath": "/60H7NVQ9W8fto57rD9RbNzR1clu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768, + 10759, + 80 + ], + "genres": [ + "Drama", + "War & Politics", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2007-04-19", + "releaseYear": "2007", + "originalLanguage": "tr", + "voteAverage": 6.191, + "voteCount": 34, + "popularity": 9.4881 + }, + { + "id": 62, + "title": "The Challenge", + "originalTitle": "The Challenge", + "overview": "Each Challenge pits numerous cast members from past seasons of reality shows against each other, dividing them into two separate teams according to different criteria, such as gender, which show they first appeared on, whether or not they're veterans or rookies on the show, etc. The two teams compete in numerous missions in order to win prizes and advance in the overall game.", + "posterPath": "/aLwN4WTtkIQL1Waa86MDY41a1Xh.jpg", + "backdropPath": "/bapuJxfX6zMKHv2i36cItnvGeHi.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1998-04-20", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 70, + "popularity": 9.4875 + }, + { + "id": 81665, + "title": "Summer Camp Island", + "originalTitle": "Summer Camp Island", + "overview": "Oscar and Hedgehog are dropped off at a strange summer camp, full of fantastical things ranging from magical camp counselors to sticky notes that are portals to other dimensions.", + "posterPath": "/syipk7iIpV4DTvGuBuEqrVbAbaY.jpg", + "backdropPath": "/AqCZow3yUrQn8ltGgS0p1dcBqLo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2018-07-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 47, + "popularity": 9.485 + }, + { + "id": 67265, + "title": "Chesapeake Shores", + "originalTitle": "Chesapeake Shores", + "overview": "A divorced mom deals with an old romance and complicated family issues when she returns to her hometown with her twin daughters.", + "posterPath": "/wAWnKnDwrhfUZZ3hKlwr23yBOwM.jpg", + "backdropPath": "/2Qy30HCQ4nJRBLAj6qfBBsk6FQh.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-08-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 140, + "popularity": 9.4793 + }, + { + "id": 1059, + "title": "T. J. Hooker", + "originalTitle": "T. J. Hooker", + "overview": "Sergeant Thomas Jefferson Hooker is a tough-as-nails veteran police officer with the LCPD who turns his back on a gold badge and goes back to patrolling the streets and training recruits. Along with his young partners in blue, Hooker take on Lake City's toughest criminals.", + "posterPath": "/zcHUwD20mqMD4g8LKdpKD12QRhE.jpg", + "backdropPath": "/4pNHwINB5yGbVoZk5Ck0iPApctZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1982-03-13", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.385, + "voteCount": 87, + "popularity": 9.4774 + }, + { + "id": 4269, + "title": "The Transformers", + "originalTitle": "The Transformers", + "overview": "The Transformers is the first animated television series in the Transformers franchise. The series depicts a war among giant robots that can transform into vehicles and other objects.", + "posterPath": "/h4DvodvcLWh7xdpj872Bq0V2DKS.jpg", + "backdropPath": "/1XpTPpBDqMrP1USdJIiH2oBd7UU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1984-10-06", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 405, + "popularity": 9.4664 + }, + { + "id": 34151, + "title": "Enchantment", + "originalTitle": "Incantesimo", + "overview": "Incantesimo is a long-running drama series on Italian television, broadcast on the RAI network.\n\nIt is set in a hospital called Clinica Life in Turin, Italy, and revolves around the life of the doctors and nurses in the hospital. According to the official website, it is \"interested in social themes, the incoherence of daily life, solidarity, love and passion, not forgetting moments of comedy\".\n\nIncantesimo was first broadcast in March 1997, is now in its 10th series and has broadcast 400 episodes.\n\nIncantesimo is also being broadcast on the Chinese CCTV 8 network, dubbed into Mandarin. Many notable Italian actors and actresses have starred in the series including, Orso Maria Guerrini, Delia Boccardo, Kaspar Capparoni, Paolo Malco, Guido Furlani, Alessio Boni, Vanessa Gravina, Paola Pitagora, Alessandra Acciai and Barbara Livi.\n\nThe series was especially popular in Bulgaria, where it was aired on BNT 1 and Nova Television.\n\nIn Armenia it was aired on ArmeniaTV and TV5 in Russian, as well as on Shant TV in Armenian.", + "posterPath": "/35VT38dTB8BobNOvyJCkJTRZwuj.jpg", + "backdropPath": "/fbnuJ5WDR3EjHY9HcfJMLSuNQfR.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1998-06-08", + "releaseYear": "1998", + "originalLanguage": "it", + "voteAverage": 5.5, + "voteCount": 10, + "popularity": 9.4617 + }, + { + "id": 82, + "title": "Animaniacs", + "originalTitle": "Animaniacs", + "overview": "The two Warner Brothers Yakko and Wakko and their Warner sister Dot had been (supposedly) created in the 1930's, but their cartoons were too screwy for the general public to handle. The three Warners were locked up in the studio water tower until they escaped in the 90's. There, they run wild, causing chaos everywhere!", + "posterPath": "/bqUIqC7zMKYkdZpK6I7ZfJE3I3g.jpg", + "backdropPath": "/8TThBwlIZnzCFkj21rv5Nv2lTNG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Family" + ], + "releaseDate": "1993-09-13", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 749, + "popularity": 9.4617 + }, + { + "id": 48865, + "title": "Reign", + "originalTitle": "Reign", + "overview": "Mary, Queen of Scots, faces political and sexual intrigue in the treacherous world of the French court.", + "posterPath": "/epNfFs0gPyrpekecpzyX0XTkZgI.jpg", + "backdropPath": "/ombM2Yd0UORA7AlxXnIQ6ZFd8yE.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-10-17", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 857, + "popularity": 9.4589 + }, + { + "id": 83121, + "title": "Kaguya-sama: Love Is War", + "originalTitle": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "overview": "Considered a genius due to having the highest grades in the country, Miyuki Shirogane leads the prestigious Shuchiin Academy's student council as its president, working alongside the beautiful and wealthy vice president Kaguya Shinomiya. The two are often regarded as the perfect couple by students despite them not being in any sort of romantic relationship.", + "posterPath": "/5khbC6AuNgnvnoDbjIMKCOhEtIc.jpg", + "backdropPath": "/dJ8yrSokdTMnhKJw06MllSfCegb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-01-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 789, + "popularity": 9.458 + }, + { + "id": 13700, + "title": "Indian Idol", + "originalTitle": "Indian Idol", + "overview": "The Indian version of the Pop Idol format.", + "posterPath": "/jCMw8httzGvjTu0NZjiclqUQD6c.jpg", + "backdropPath": "/qlnDrGpDmvKPQEnpge8yY3XTm0F.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2004-10-28", + "releaseYear": "2004", + "originalLanguage": "hi", + "voteAverage": 6.1, + "voteCount": 14, + "popularity": 9.4542 + }, + { + "id": 3253, + "title": "Barney Miller", + "originalTitle": "Barney Miller", + "overview": "Barney Miller is an American situation comedy television series set in a New York City police station in Greenwich Village. The series originally was broadcast from January 23, 1975 to May 20, 1982 on ABC. It was created by Danny Arnold and Theodore J. Flicker. Noam Pitlik directed the majority of the episodes.", + "posterPath": "/wfrcuXAlgbPyUenIbCONhICH23h.jpg", + "backdropPath": "/eGYzysrLrWSVK1qqEGqwU12bXe0.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1975-01-23", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 7.318, + "voteCount": 55, + "popularity": 9.4533 + }, + { + "id": 4396, + "title": "Northern Exposure", + "originalTitle": "Northern Exposure", + "overview": "After receiving a scholarship from the state, a recent Columbia University medical school graduate is required to set up his practice in an eccentric Alaskan town.", + "posterPath": "/BUSw61C2kNoMuKFQTamIgqMC5.jpg", + "backdropPath": "/fi2vspZ6xuHZF1kU8wVXmYzYCMi.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10765 + ], + "genres": [ + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1990-07-12", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 181, + "popularity": 9.4522 + }, + { + "id": 70788, + "title": "Payitaht: Abdulhamid", + "originalTitle": "Payitaht: Abdülhamid", + "overview": "The fight of Abdülhamid II to keep the Ottoman Empire and Caliphate alive.", + "posterPath": "/fmaWiokhUVDsVkCfoWaQEDFZFFP.jpg", + "backdropPath": "/hU0nzL6eKsdzeMaEt3mqWMCwYgM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10768 + ], + "genres": [ + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "2017-02-24", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 26, + "popularity": 9.432 + }, + { + "id": 32390, + "title": "The Real Housewives of Beverly Hills", + "originalTitle": "The Real Housewives of Beverly Hills", + "overview": "A reality series that follows some of the most affluent women in the country as they enjoy the lavish lifestyle that only Beverly Hills can provide.", + "posterPath": "/8ktaCSlCgGDMFzgdYc1LYF6CiWq.jpg", + "backdropPath": "/xmCue1RQDs1BfrHrJwmCD2ETeEb.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2010-10-14", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 100, + "popularity": 9.4228 + }, + { + "id": 154521, + "title": "The Kardashians", + "originalTitle": "The Kardashians", + "overview": "The family you know and love is here with a brand new series, giving an all-access pass into their lives. Kris, Kourtney, Kim, Khloé, Kendall, and Kylie bring the cameras back to reveal the truth behind the headlines. From the intense pressures of running billion-dollar businesses to the hilarious joys of playtime and school drop-offs, this series brings viewers into the fold with a rivetingly honest story of love & life in the spotlight.", + "posterPath": "/pLeSPrwEmxwaV1vqzdVfAgnUvXc.jpg", + "backdropPath": "/iZQj2vw0wImBJZ2rBqzNySD2FgJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2022-04-14", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.492, + "voteCount": 2118, + "popularity": 9.4084 + }, + { + "id": 291904, + "title": "The Wonderfully Weird World of Gumball", + "originalTitle": "The Wonderfully Weird World of Gumball", + "overview": "Welcome back to Elmore, where the laws of reality are a joke, and family life is anything but ordinary. Whether he's battling an evil fast-food empire, facing off against a sentient AI in love with his mom, or trying to stop Banana Joe from wearing pants — Gumball Watterson drags his brother Darwin, sister Anais, and the rest of the town of Elmore along for the ride. With even wilder stories, bigger twists, and surreal humor, the show is so amazing that they had to rename it!", + "posterPath": "/eCr6n6zV8XQ9bKvGbnESyctmooB.jpg", + "backdropPath": "/6jOPWUX8vVAEwmeraGyvJ1N9cho.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2025-10-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 33, + "popularity": 9.3908 + }, + { + "id": 114477, + "title": "Harem in the Labyrinth of Another World", + "originalTitle": "異世界迷宮でハーレムを", + "overview": "High school student Michio Kaga was wandering aimlessly through life and the Internet, when he finds himself transported from a shady website to a fantasy world — reborn as a strong man who can use \"cheat\" powers. He uses his powers to become an adventurer, earn money, and get the right to claim girls that have idol-level beauty to form his very own harem.", + "posterPath": "/drAnsk5w2PX5x3ooPv7I2xr3ksq.jpg", + "backdropPath": "/k4jj6KGcxQzo26PSjfAdQguUTfN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 137, + "popularity": 9.3892 + }, + { + "id": 1803, + "title": "The Facts of Life", + "originalTitle": "The Facts of Life", + "overview": "Mrs. Edna Garrett, housemother and dietitian at the Eastland School, teaches a group of girls in her charge how to solve those problems that every teenager has to face.", + "posterPath": "/45i9VujUbQITmHl3QE3eNs9ZUv3.jpg", + "backdropPath": "/nxqRVJ3QP76CZBaunWl42hQVK0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1979-08-24", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 7.051, + "voteCount": 98, + "popularity": 9.387 + }, + { + "id": 66676, + "title": "Queen of the South", + "originalTitle": "Queen of the South", + "overview": "Teresa flees Mexico after her drug-runner boyfriend is murdered. Settling in Dallas, she looks to become the country's reigning drug smuggler and to avenge her lover's murder.", + "posterPath": "/rzdC5EHkkKJE6OPVdh6gT1pR1c9.jpg", + "backdropPath": "/3NVXTxrzxm5x7MBaQlzeLZk9pRD.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-06-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 452, + "popularity": 9.3841 + }, + { + "id": 81044, + "title": "Joshiochi! 2-kai kara Onnanoko ga... Futtekita!?", + "originalTitle": "じょしおちっ!~2階から女の子が・・・降ってきた!?~", + "overview": "Sousuke Aikawa is a part-time worker who lives in a rundown apartment building where his only consolation is that the landlord is a beautiful woman and the girl who lives above him is cute.\n\nOne day though, the ceiling above him creaks and... Bang! In from the second floor, directly above him, the cute girl comes crashing down on him…!?\n\nIn an erotic encounter that can only be classified as a miracle, hearts and bodies are connected by chance. Then for some reason, he starts to live with both of these beautiful women!? Under this one roof, just what exactly will become of this crowded love triangle...!?", + "posterPath": "/7x8x6dl4leOSw6KGUcOrQew7Eua.jpg", + "backdropPath": "/AgTy5IsOv1FAx02gunir8ZSiUxG.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "2018-07-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.326, + "voteCount": 23, + "popularity": 9.3788 + }, + { + "id": 21561, + "title": "The Outer Limits", + "originalTitle": "The Outer Limits", + "overview": "Anthology series of composed of distinct story episodes, sometimes with a plot twist at the end, with occasional recurring story elements that were often tied together during season-finale clip shows.", + "posterPath": "/1mf3GKgYeEIBhsp61uTGmI58NIB.jpg", + "backdropPath": "/yeuPvfPYK7Y3J3ZWqLF2IcWEi36.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-03-26", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.685, + "voteCount": 227, + "popularity": 9.3725 + }, + { + "id": 44856, + "title": "Wentworth", + "originalTitle": "Wentworth", + "overview": "Bea Smith is locked up while awaiting trial for the attempted murder of her husband and must learn how life works in prison. A modern adaptation and sequel of the iconic Prisoner series.", + "posterPath": "/3nikr0NE3t8UMgI1Ba6hXaeEgKr.jpg", + "backdropPath": "/bPJ6t9O4pFlpZ5OvauM5EGBOd0L.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2013-05-01", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.021, + "voteCount": 284, + "popularity": 9.3657 + }, + { + "id": 117488, + "title": "Yellowjackets", + "originalTitle": "Yellowjackets", + "overview": "This equal parts survival epic, psychological horror story and coming-of-age drama tells the saga of a team of wildly talented high school girls soccer players who become the (un)lucky survivors of a plane crash deep in the remote northern wilderness. The series chronicles their descent from a complicated but thriving team to savage clans, while also tracking the lives they’ve attempted to piece back together nearly 25 years later.", + "posterPath": "/xRnGrn7Z7SC0KIBodocoU1QgDZF.jpg", + "backdropPath": "/ibFWJDWS8cTO6s2vZVd2uKDm8p.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2021-11-14", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.481, + "voteCount": 891, + "popularity": 9.3586 + }, + { + "id": 18053, + "title": "Nurse Jackie", + "originalTitle": "Nurse Jackie", + "overview": "Every day is a matter of life and death in a hectic New York City hospital, but for Nurse Jackie that's the easiest part. Between chronic back pain that won't quit, and a personal life on the constant edge of collapse, it's going to take a white lie here, a bent rule there, and a handful of secret strategies to relieve the pain, and stay one step ahead of total disaster.", + "posterPath": "/efKrmVB9Jwmh6HxFjED6FyeOUpW.jpg", + "backdropPath": "/lyybuNTSkI4vJZdccpinuj7vxCU.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2009-06-08", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.094, + "voteCount": 240, + "popularity": 9.3501 + }, + { + "id": 2284, + "title": "Teenage Mutant Ninja Turtles", + "originalTitle": "Teenage Mutant Ninja Turtles", + "overview": "When four pet turtles were bathed in alien ooze, they began to mutate and became the Teenage Mutant Ninja Turtles. Raised in New York City sewers by their foster father and wise sensei, Master Splinter, Leonardo, Michelangelo, Donatello, and Raphael wage war against crime. Led by Master Splinter, the four turtles learn the ancient martial art of Ninjitsu, mastering skills of stealth, weapons, and fighting. They stop evildoers in all forms, whether barbaric gangs, lowlife crooks, deranged cyborgs, or even the crime syndicate The Foot, led by their archrival, The Shredder.", + "posterPath": "/sEb6sTxyGoguCX4fK1G0hyzyLcv.jpg", + "backdropPath": "/u70hsKRDah3TEq5CkFnmZnbZpmW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids" + ], + "releaseDate": "2003-02-08", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.876, + "voteCount": 202, + "popularity": 9.3365 + }, + { + "id": 229915, + "title": "Night Has Come", + "originalTitle": "밤이 되었습니다", + "overview": "Trapped in a deadly cursed Mafia game, the students of Yoo-il High must play the game to survive while unraveling the mysteries behind the curse.", + "posterPath": "/ah8TT3algh20oiQUWUgxbqX35bn.jpg", + "backdropPath": "/uUbmZ56qBy85zbt8VWKoTGpcoCA.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2023-12-04", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.8, + "voteCount": 106, + "popularity": 9.3288 + }, + { + "id": 33056, + "title": "Childrens Hospital", + "originalTitle": "Childrens Hospital", + "overview": "A hospital isn't a place for lazy people. It's a place for smart people who take care of people who aren't smart enough to keep themselves healthy. So begins Children's Hospital, a parody series that follows the lives, loves and laughs of a hospital staff.", + "posterPath": "/bbnXmarKkuxde9kkeyjAPzZY6Od.jpg", + "backdropPath": "/dRryTOPbS4bnN8Kfp8rEzuh7XyJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2008-12-08", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.081, + "voteCount": 86, + "popularity": 9.3217 + }, + { + "id": 85948, + "title": "Star Trek: Lower Decks", + "originalTitle": "Star Trek: Lower Decks", + "overview": "The lives of the support crew serving on one of Starfleet's least important ships, the U.S.S. Cerritos, in 2380. Ensigns Mariner, Boimler, Rutherford and Tendi have to keep up with their duties and their social lives, often while the ship is being rocked by a multitude of sci-fi anomalies.", + "posterPath": "/i7Em3r7KCyNfkOwMkyqN8UMvK8S.jpg", + "backdropPath": "/kG7GwGBHpCI6lA6SaEydKHHOxkU.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2020-08-06", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.625, + "voteCount": 396, + "popularity": 9.3155 + }, + { + "id": 4397, + "title": "V.I.P.", + "originalTitle": "V.I.P.", + "overview": "While attending a Hollywood premiere with a famous action star, a crazed fan pulls a gun—but her movie hunk turns into a coward, and it's Vallery who becomes the hero. Suddenly, she's thrown into a world of action and danger as owner of a Hollywood protection agency, Vallery Irons Protection (V.I.P.), taking risks to protect others at a price few are willing to pay.", + "posterPath": "/2pHBPVGn2DpYEAHBdT62nc0untt.jpg", + "backdropPath": "/axanatjrKAXS34wMOBtwYjXTbAb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 80 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Crime" + ], + "releaseDate": "1998-09-26", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 5.279, + "voteCount": 68, + "popularity": 9.3102 + }, + { + "id": 64197, + "title": "Nirvana in Fire", + "originalTitle": "琅琊榜", + "overview": "Weakened by illness but strong in mind, Mei Changsu enters court politics to seek justice for a tragedy long forgotten.", + "posterPath": "/taqGVujrSxaRrEXuGlIHGVRi3m4.jpg", + "backdropPath": "/4pBohJyXnAf7yvzyMTD1953RIjY.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-09-19", + "releaseYear": "2015", + "originalLanguage": "zh", + "voteAverage": 8.915, + "voteCount": 65, + "popularity": 9.3047 + }, + { + "id": 2692, + "title": "My Wife and Kids", + "originalTitle": "My Wife and Kids", + "overview": "Michael Kyle is a loving husband and modern-day patriarch who rules his household with a unique and distinct parenting style. As he teaches his three children some of life's lessons, he does so with his own brand of humor.", + "posterPath": "/eyQsN8bU27fdIs2D66gFmcIo0dM.jpg", + "backdropPath": "/v9CyGKG1P2McFMAnOG4X59b7CI7.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "2001-03-28", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.427, + "voteCount": 511, + "popularity": 9.2864 + }, + { + "id": 2132, + "title": "The Dick Van Dyke Show", + "originalTitle": "The Dick Van Dyke Show", + "overview": "The Dick Van Dyke Show centers around the work and home life of television comedy writer Rob Petrie. The plots generally revolve around problems at work, where Rob got into various comedic jams with fellow writers Buddy Sorrell, Sally Rogers and producer Mel Cooley.", + "posterPath": "/w2Tcx36ybQEczP5zkUhPwaehgeL.jpg", + "backdropPath": "/1t4m2WWx581A8jEwp2LG6cCjzrY.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1961-10-03", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 100, + "popularity": 9.2843 + }, + { + "id": 18123, + "title": "Scooby-Doo! Mystery Incorporated", + "originalTitle": "Scooby-Doo! Mystery Incorporated", + "overview": "This incarnation of the popular cartoon series finds Scooby and the gang living in Crystal Cove, a small town with a long history of ghost sightings, monster tales and other mysteries ripe for the sleuths to solve once and for all. But the longstanding Crystal Cove residents, who bank on the town's reputation to attract tourists, are prepared to do what it takes to protect their turf.", + "posterPath": "/crKsdtMuN7Y2JdXmmkzIrQzzo36.jpg", + "backdropPath": "/ttzacVSKybUfVfIYnZ3HAO0iXzJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10751 + ], + "genres": [ + "Animation", + "Mystery", + "Family" + ], + "releaseDate": "2010-07-12", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 1080, + "popularity": 9.2797 + }, + { + "id": 225941, + "title": "I Am Nobody", + "originalTitle": "异人之下", + "overview": "When a student unearths the truth behind his grandfather’s life, he must unveil his secret superpowers to an underworld eager for his emergence.", + "posterPath": "/aZT7iZwR4LE2kk7sXWslgpOP7oT.jpg", + "backdropPath": "/1Lx5oXLVZclQ94jnfAwmanaey7P.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-08-04", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.6, + "voteCount": 38, + "popularity": 9.2671 + }, + { + "id": 225634, + "title": "Monsters: The Lyle and Erik Menendez Story", + "originalTitle": "Monsters: The Lyle and Erik Menendez Story", + "overview": "The story of the Menéndez brothers, who were convicted in 1996 of murdering their parents José and Mary Louise “Kitty” Menéndez.", + "posterPath": "/x9YC2rpXHUFMqI1hCekKDm9UE4w.jpg", + "backdropPath": "/jqZb8jhyo45jvP7VxZCuHLj4oVK.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2024-09-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.617, + "voteCount": 454, + "popularity": 9.2604 + }, + { + "id": 32294, + "title": "Hot in Cleveland", + "originalTitle": "Hot in Cleveland", + "overview": "Three fabulous, eccentric, LA best friends of a certain age have their lives changed forever when their plane unexpectedly lands in Cleveland and they soon rediscover themselves in this new \"promised land.\"", + "posterPath": "/oSd0I8hc62W8xZVCOpZvRXS90Ty.jpg", + "backdropPath": "/nDhhWFhjEaihxFFiqJ7mfUX1DlY.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2010-06-16", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.303, + "voteCount": 122, + "popularity": 9.2594 + }, + { + "id": 2455, + "title": "Coach", + "originalTitle": "Coach", + "overview": "Hayden Fox, the curmudgeonly coach of Minnesota State University's Screaming Eagles football team, tries to navigate his way through the sports world, fatherhood and family life without dropping the ball.", + "posterPath": "/jxfsNMQxlgsoUoLOTF4CB6s5gxO.jpg", + "backdropPath": "/k4pL7iYZh6piaEAEDKppMH0i44W.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1989-02-28", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 57, + "popularity": 9.2496 + }, + { + "id": 154825, + "title": "Business Proposal", + "originalTitle": "사내맞선", + "overview": "In disguise as her friend, Ha-ri shows up to a blind date to scare him away. But plans go awry when he turns out to be her CEO — and makes a proposal.", + "posterPath": "/iLh7L8ZuvgdxFaM9sImyv2iKYLe.jpg", + "backdropPath": "/lq0YqJuffMuZhoKTiC5xDqvtCSn.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-02-28", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.435, + "voteCount": 684, + "popularity": 9.2439 + }, + { + "id": 1028, + "title": "Holby City", + "originalTitle": "Holby City", + "overview": "Drama series about life on the wards of Holby City Hospital, following the highs and lows of the staff and patients.", + "posterPath": "/jVrK2Cl1agZfSjdH1EyPBnTzRPf.jpg", + "backdropPath": "/6VR8b4e2XsPeIz4HWCLafi8PNAW.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1999-01-12", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 45, + "popularity": 9.2371 + }, + { + "id": 46732, + "title": "MTV Video Music Awards", + "originalTitle": "MTV Video Music Awards", + "overview": "An annual award ceremony presented by MTV to honor the best in the music video medium.", + "posterPath": "/nwcFFwWc0CYKW95ytYQqtC5D3sa.jpg", + "backdropPath": "/h1NDX8KuFkefABPujQJ5wWlqRdj.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1984-09-14", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 22, + "popularity": 9.2323 + }, + { + "id": 2129, + "title": "The Adventures of Jimmy Neutron: Boy Genius", + "originalTitle": "The Adventures of Jimmy Neutron: Boy Genius", + "overview": "Jimmy Neutron is the smartest kid in town. As a genius, Jimmy thinks most things can be solved with the invention of a new gizmo. But Jimmy usually takes the easy way out, and his backfiring gadgets result in comedic adventures.", + "posterPath": "/cwmZY5PCWawjE2QZPdBaPBSnoqO.jpg", + "backdropPath": "/1qygvgx7R0dJ1bqHqEZub6CSt5a.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2002-07-20", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.417, + "voteCount": 836, + "popularity": 9.2271 + }, + { + "id": 39014, + "title": "Falling Leaves", + "originalTitle": "Yaprak Dökümü", + "overview": "Yaprak Dökümü is an award-winning Turkish television series based on the novel of the same name by Reşat Nuri Güntekin. The series premiered on 13 September 2005 on Kanal D, and endеd its fifth and final season on 29 December 2010, comprising 174 episodes overall. The show is set in Istanbul, Turkey, and it revolves around the fictional family Tekin, which their arrival in Istanbul tears their family apart, and transforms them in a way they can't imagine.", + "posterPath": "/saWjY37nt2eLWWGoG6w40C5u6Vk.jpg", + "backdropPath": "/w0mzbsYbHZ3GuSncq2MQ065g3vr.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2006-09-13", + "releaseYear": "2006", + "originalLanguage": "tr", + "voteAverage": 6.158, + "voteCount": 19, + "popularity": 9.2191 + }, + { + "id": 80020, + "title": "Super Dragon Ball Heroes", + "originalTitle": "スーパードラゴンボールヒーローズ", + "overview": "Trunks returns from the future to train with Goku and Vegeta. However, it disappears without warning. Then the mysterious Fu bursts in, telling them that Trunks has been imprisoned in the Prison Planet, a mysterious complex in an unknown place in the universes. The group seeks the dragon balls to free Trunks, but an endless battle awaits them! Will Goku and the others rescue Trunks and escape the Prison Planet?", + "posterPath": "/8jq6xv5c1WK7KAPOXCsodm8eUxp.jpg", + "backdropPath": "/xlKKD1TXJvh0YYlVPqqQ3g3ZUjM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-07-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 3101, + "popularity": 9.2184 + }, + { + "id": 72027, + "title": "Raven's Home", + "originalTitle": "Raven's Home", + "overview": "Best friends Raven and Chelsea, now both divorced mothers, are raising their children in a house together. Their house is turned upside down when they realize one of Raven's children inherited the same psychic abilities as their mother.", + "posterPath": "/bEyovwWgUNML5ycWec1WhTU67yr.jpg", + "backdropPath": "/tIcCfzPM12EIJD5esEQyyBKdwEG.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 18 + ], + "genres": [ + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "2017-07-21", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 146, + "popularity": 9.2175 + }, + { + "id": 278196, + "title": "The Summer Hikaru Died", + "originalTitle": "光が死んだ夏", + "overview": "Six months ago, Hikaru vanished for a week. Now, as his best friend Yoshiki senses something amiss and confronts him, the harrowing truth emerges.", + "posterPath": "/nabVYnDTkwNcnEAFfzSFKQfRlpB.jpg", + "backdropPath": "/vqPBAHjrxhyUnZZrnR5CTPDCM7V.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.548, + "voteCount": 63, + "popularity": 9.2163 + }, + { + "id": 114471, + "title": "Ironheart", + "originalTitle": "Ironheart", + "overview": "After the events of Black Panther: Wakanda Forever, technology is pitted against magic when Riri Williams, a young, genius inventor determined to make her mark on the world, returns to her hometown of Chicago. Her unique take on building iron suits is brilliant, but in pursuit of her ambitions, she finds herself wrapped up with the mysterious yet charming Parker Robbins aka \"The Hood.\"", + "posterPath": "/2mdVj5ObYOroWlPWz3gegxi45ND.jpg", + "backdropPath": "/kiOEVg5BkzLE0pWoPKecXd7wZ2Q.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 80 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2025-06-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.39, + "voteCount": 376, + "popularity": 9.212 + }, + { + "id": 2774, + "title": "The Untouchables", + "originalTitle": "The Untouchables", + "overview": "Special Agent Eliot Ness and his elite team of incorruptible agents battle organized crime in 1930s Chicago.", + "posterPath": "/80IDXgaHmcxj6CKRImkpHjnIMcd.jpg", + "backdropPath": "/j4F3iDMZp9QFOKmuVoLX0ivfLhz.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1959-10-15", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 7.832, + "voteCount": 122, + "popularity": 9.2118 + }, + { + "id": 94796, + "title": "Crash Landing on You", + "originalTitle": "사랑의 불시착", + "overview": "A paragliding mishap drops a South Korean heiress in North Korea -- and into the life of an army officer, who decides he will help her hide.", + "posterPath": "/fgBNLPr6mC8pxuR79ENAJY4nBmj.jpg", + "backdropPath": "/o3Htmlg6BfNs8Ew7yjsRzVnYSEs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2019-12-14", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 8.537, + "voteCount": 861, + "popularity": 9.208 + }, + { + "id": 32573, + "title": "Strike Back", + "originalTitle": "Strike Back", + "overview": "The series follows John Porter, a former British Special Forces soldier, who is drafted back into service by Section 20, a fictional branch of the Secret Intelligence Service.", + "posterPath": "/c0ItaC2Grf4WVJ06G87BjNn9pRs.jpg", + "backdropPath": "/2tL3pNaPQb2ioEYswMkDGVTo1pt.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2010-05-05", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 380, + "popularity": 9.1955 + }, + { + "id": 34971, + "title": "Storage Wars", + "originalTitle": "Storage Wars", + "overview": "When rent is not paid on a storage locker for three months in California, the contents can be sold by an auctioneer as a single lot of items in the form of a cash-only auction. The show follows professional buyers who purchase the contents based only on a five-minute inspection of what they can see from the door when it is open. The goal is to turn a profit on the merchandise.", + "posterPath": "/aI4HWTpEnps1lDyxy5vScazpxDy.jpg", + "backdropPath": "/wVuVvxpp1ljzlhBrFW22xktyaFL.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2010-12-01", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 122, + "popularity": 9.1925 + }, + { + "id": 30703, + "title": "Shark Tank", + "originalTitle": "Shark Tank", + "overview": "Aspiring entrepreneurs pitch various business ideas to \"The Sharks\" -- tough, self-made, multi-millionaire and billionaire tycoons -- in hopes of landing an investment.", + "posterPath": "/wztqq3SWfdzcuxvl9oA2HwOXasO.jpg", + "backdropPath": "/lxekzMqu4I1dWG7bK4IaurD5PbM.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2009-08-09", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.763, + "voteCount": 133, + "popularity": 9.1782 + }, + { + "id": 1475, + "title": "The Dead Zone", + "originalTitle": "The Dead Zone", + "overview": "Johnny Smith discovers he has developed psychic abilities after a coma.", + "posterPath": "/j9l4svOscUWoVqGoATtGEDfTms.jpg", + "backdropPath": "/uC6NoapdAI8xy4SHMNtd5jXbWup.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-06-16", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.283, + "voteCount": 159, + "popularity": 9.1758 + }, + { + "id": 155226, + "title": "Big Mouth", + "originalTitle": "빅마우스", + "overview": "A lawyer with a ten-percent winning rate is caught up in a murder case and becomes the notorious and genius con artist, Big Mouse, overnight. In order to survive and protect his family, he tries to reveal the true colors of the privileged people involved in a huge conspiracy.", + "posterPath": "/gJDvYUJcPEDJzB3SnQokifPUtRF.jpg", + "backdropPath": "/rvI4N7I0sI1VNQPp6uRljIJuwkp.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "2022-07-29", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.275, + "voteCount": 307, + "popularity": 9.1751 + }, + { + "id": 2612, + "title": "Deadliest Catch", + "originalTitle": "Deadliest Catch", + "overview": "Forty-foot waves, 700 pound crab pots, freezing temperatures and your mortality staring you in the face…it's all in a day's work for these modern day prospectors. During each episode we will watch crews race to meet their quota and make it home safely.", + "posterPath": "/aqF7wHfA2n89zbBqG6DLuDjrHut.jpg", + "backdropPath": "/qdVdWLUAj9Xxrx0OIT76gWVI4fg.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2005-04-12", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 164, + "popularity": 9.1745 + }, + { + "id": 90937, + "title": "BEASTARS", + "originalTitle": "BEASTARS", + "overview": "In a world where beasts of all kinds coexist, a gentle wolf awakens to his own predatory urges as his school deals with a murder within its midst.", + "posterPath": "/sh9iNWkleOjEHRHj8WPHhmMi8HL.jpg", + "backdropPath": "/11Pfh4yqjKbOgn5vY3AQD9VU4Vc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2019-10-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.427, + "voteCount": 1239, + "popularity": 9.1628 + }, + { + "id": 3713, + "title": "Gunsmoke", + "originalTitle": "Gunsmoke", + "overview": "Gunsmoke is an American radio and television Western drama series created by director Norman MacDonnell and writer John Meston. The stories take place in and around Dodge City, Kansas, during the settlement of the American West. The central character is lawman Marshal Matt Dillon, played by William Conrad on radio and James Arness on television.", + "posterPath": "/x7WjYizqcrA64xi9XLqUWCz5DNk.jpg", + "backdropPath": "/np2bdMQZ2uUiEVVxLiyPG1JzLXW.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 10759, + 18 + ], + "genres": [ + "Western", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1955-09-10", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 107, + "popularity": 9.1624 + }, + { + "id": 2251, + "title": "Taxi", + "originalTitle": "Taxi", + "overview": "Louie De Palma is a cantankerous, acerbic taxi dispatcher in New York City. He tries to maintain order over a collection of varied and strange characters who drive for him. As he bullies and insults them from the safety of his “cage,” they form a special bond among themselves, becoming friends and supporting each other through the inevitable trials and tribulations of life.", + "posterPath": "/pua3A2XSaO6bP6WhVDBRbcyRTAS.jpg", + "backdropPath": "/8Y8vn9feCVUoJRXpWK6xno5VrUz.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1978-09-12", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 164, + "popularity": 9.1593 + }, + { + "id": 224839, + "title": "Shrouding the Heavens", + "originalTitle": "遮天", + "overview": "The story took the nine dragons and the coffin as an introduction and brought out a huge world of primeval ages. Climbing the sky road, and singing songs, to see how Ye Fan shrouding the heavens.", + "posterPath": "/hMPIFy9S8F3gpgpOiRqBvMj9Icg.jpg", + "backdropPath": "/vKGJRT5iBlPQSw7THVMLKL8PLYF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-05-03", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.667, + "voteCount": 12, + "popularity": 9.1587 + }, + { + "id": 64199, + "title": "Sneaky Pete", + "originalTitle": "Sneaky Pete", + "overview": "A con man on the run from a vicious gangster takes cover from his past by assuming the identity of his prison cellmate, Pete, “reuniting” with Pete’s estranged family, a colorful, dysfunctional group that threatens to drag him into a world just as dangerous as the one he’s trying to escape - and, just maybe, give him a taste of the loving family he’s never had.", + "posterPath": "/nNpcea9lLHI4iv8QpOIvHveVnT9.jpg", + "backdropPath": "/f1Z5X3iCCKK5FGu5VvzPkXO7eOl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2015-08-07", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.487, + "voteCount": 383, + "popularity": 9.1476 + }, + { + "id": 157367, + "title": "Palm Royale", + "originalTitle": "Palm Royale", + "overview": "In 1969, an ambitious woman aspires to cross the line between the haves and have-nots to secure her seat at America's most exclusive, fashionable, and treacherous table: Palm Beach high society.", + "posterPath": "/3HDmuo2u2M7s3hWVaDAiYDerODK.jpg", + "backdropPath": "/4dUTs2xkExkG3yKPNzxgGwRX6NF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-03-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 66, + "popularity": 9.144 + }, + { + "id": 223564, + "title": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You", + "originalTitle": "君のことが大大大大大好きな100人の彼女", + "overview": "Rentaro Aijo was rejected 100 times in middle school. He visits a shrine and prays for better luck in high school. The God of Love appears and promises that he'll soon meet 100 people he's destined to date. But there's a catch—once destiny introduces someone to him, the two must happily love each other. If they don't, they'll die. What will befall Rentaro and his 100 girlfriends in high school?", + "posterPath": "/ms7uowQ6gBjfaB2zzwugfr30IKZ.jpg", + "backdropPath": "/jibcH0Gnc7mCXD5vooVqU3e6Wuy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.071, + "voteCount": 168, + "popularity": 9.1429 + }, + { + "id": 60948, + "title": "12 Monkeys", + "originalTitle": "12 Monkeys", + "overview": "The provocative story of Cole, a time traveler from a decimated future in a high-stakes race against the clock. Utilizing a dangerous and untested method of time travel, he journeys from 2043 to the present day on a mission to locate and eradicate the source of a deadly plague that will all but annihilate the human race.", + "posterPath": "/w5u1PqBYfDyfrlkxADTA38jYG3I.jpg", + "backdropPath": "/rgBEfR1A9JVBvoc0xUWv73o4M1M.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2015-01-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 1124, + "popularity": 9.1417 + }, + { + "id": 290276, + "title": "Unspeakable Sins", + "originalTitle": "Pecados inconfesables", + "overview": "A woman in a controlling marriage finds solace — and revenge — in an affair with a younger man, until it spirals into a dangerous fight for survival.", + "posterPath": "/30eSqR2XPGz53eGElt6YAvH7cPX.jpg", + "backdropPath": "/sU03jP3DpUG86IJDmbSyR5gTLel.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-07-30", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.359, + "voteCount": 46, + "popularity": 9.1374 + }, + { + "id": 39373, + "title": "Red vs. Blue", + "originalTitle": "Red vs. Blue", + "overview": "In the distant future, two groups of soldiers battle for control of the least desirable piece of real estate in the known universe: a box canyon in the middle of nowhere.", + "posterPath": "/ieGCVoyOkOo6jNPM9v1L6jGiM0N.jpg", + "backdropPath": "/5YsPnlbb1YjwsOQTzszMCIZLVFu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-04-01", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 74, + "popularity": 9.1306 + }, + { + "id": 115641, + "title": "Konuşanlar", + "originalTitle": "Konuşanlar", + "overview": "This chat show is very different from what you have seen in the past. Every person has a different story, every story has a different side. Hasan Can Kaya first chooses the speakers and then the fun increases with interesting questions.", + "posterPath": "/hIedtfjRs8XByRl9Tnur6WkoLuw.jpg", + "backdropPath": "/yRfroDcvczmBqyoM0VpTggBG7kO.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2020-05-12", + "releaseYear": "2020", + "originalLanguage": "tr", + "voteAverage": 6.2, + "voteCount": 20, + "popularity": 9.1252 + }, + { + "id": 59427, + "title": "Marvel's Avengers", + "originalTitle": "Marvel's Avengers", + "overview": "The further adventures of the Marvel Universe's mightiest general membership superhero team. With an all-star roster consisting of Iron Man, Captain America, Thor, Hulk, Hawkeye, Falcon and, occasionally--when she feels like it and only when she feels like it--Black Widow, the Avengers are a team in the truest sense. The Avengers save the world from the biggest threats imaginable--threats no single super hero could withstand.", + "posterPath": "/aVYPq7FSvsdNQOXVIFnndXJPCXn.jpg", + "backdropPath": "/hutyHRPoY0woAZCJtLmosJHuTjQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-05-26", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 668, + "popularity": 9.1192 + }, + { + "id": 6145, + "title": "Modern Marvels", + "originalTitle": "Modern Marvels", + "overview": "HISTORY’s longest-running series moves to H2. Modern Marvels celebrates the ingenuity, invention and imagination found in the world around us. From commonplace items like ink and coffee to architectural masterpieces and engineering disasters, the hit series goes beyond the basics to provide insight and history into things we wonder about and that impact our lives. This series tells fascinating stories of the doers, the dreamers and sometime-schemers that create everyday items, technological breakthroughs and manmade wonders. The hit series goes deep to explore the leading edge of human inspiration and ambition.", + "posterPath": "/uRMi6q4mazNTZ2HKdiY6RP5noDW.jpg", + "backdropPath": "/s7Puqpq4Yp67l8JfPZYwhDTVNi5.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1993-12-10", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8.067, + "voteCount": 30, + "popularity": 9.1174 + }, + { + "id": 11174, + "title": "The Professionals", + "originalTitle": "The Professionals", + "overview": "The lives of Bodie and Doyle, top agents for Britain's CI5 (Criminal Intelligence 5), and their controller, George Cowley. \n\nThe mandate of CI5 was to fight terrorism and similar high-profile crimes. Cowley, a hard ex-MI5 operative, hand-picked each of his men. Bodie is a cynical ex-SAS paratrooper and mercenary whose nature ran to controlled violence, while his partner, Doyle, comes to CI5 from the regular police force, and is more of an open minded liberal. Their relationship is often contentious, but they are the top men in their field, and the ones to whom Cowley always assigned to the toughest cases.", + "posterPath": "/dcWbH33uUGk8pKmIgqX3hRkBNeN.jpg", + "backdropPath": "/wYUVlnKgWCLIelFd8XSaSnKEltB.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "1977-12-30", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 44, + "popularity": 9.113 + }, + { + "id": 44857, + "title": "The Mindy Project", + "originalTitle": "The Mindy Project", + "overview": "Obstetrician/gynecologist Mindy Lahiri tries to balance her personal and professional life, surrounded by quirky co-workers in a small medical practice in New York City.", + "posterPath": "/A3txgCPox6hJlOZ0TDTOxch7rVa.jpg", + "backdropPath": "/yIPeCad00VP2oUqd7AHcv0K9YOd.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-09-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.256, + "voteCount": 174, + "popularity": 9.1125 + }, + { + "id": 37472, + "title": "Octonauts", + "originalTitle": "Octonauts", + "overview": "Follows an underwater exploring crew made up of stylized anthropomorphic animals, a team of eight adventurers who live in an undersea base, the Octopod, from where they go on undersea adventures with the help of a fleet of aquatic vehicles.", + "posterPath": "/iYUhUSKWKpSBahaWLUQIPckAy8p.jpg", + "backdropPath": "/lbdBBEnto6xPQ8oKHt5P9r3JCfH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2010-10-04", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 48, + "popularity": 9.0935 + }, + { + "id": 56998, + "title": "High School of the Dead", + "originalTitle": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "overview": "The lockers are splattered with blood, the student bodies are piling up and that's not mystery meat they're eating in the cafeteria… it's the faculty! And that's just the start of the worst day of school ever when a nightmarish virus is unleashed, turning humans into flesh eating zombies and converting Fujimi High School into a literal hell on Earth. Now it's a crash course in survival, and the only test or skill that matters is the ability to keep moving, breathing and fighting. Because if nerds, jocks and the surviving staff can't find a way to work together to escape this carnal house of education, they're all going to end up on the menu. And that's assuming there's anyplace safe left to escape to.", + "posterPath": "/oPiNGGZyBzst3hKGFU1mteT0zhe.jpg", + "backdropPath": "/ivWNDYPxDMjc82ajeSPuyq70hu9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-07-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.141, + "voteCount": 911, + "popularity": 9.0919 + }, + { + "id": 82452, + "title": "Avatar the Last Airbender", + "originalTitle": "Avatar the Last Airbender", + "overview": "A young boy known as the Avatar must master the four elemental powers to save a world at war — and fight a ruthless enemy bent on stopping him.", + "posterPath": "/lzZpWEaqzP0qVA5nkCc5ASbNcSy.jpg", + "backdropPath": "/imlTCObfzISogbvcwB1dokoXAIc.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10751, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-02-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.777, + "voteCount": 1000, + "popularity": 9.0918 + }, + { + "id": 72879, + "title": "Tomorrow Is Ours", + "originalTitle": "Demain nous appartient", + "overview": "The story revolves around the people of Sète, France. Their lives are punctuated by family rivalries, romance and scenes from daily life, but also by plots involving police investigations, secrets and betrayals.", + "posterPath": "/24rWFf7CeBVwEEmqLYuQexID8I7.jpg", + "backdropPath": "/kkfqNkGQR5og5sDjJTxTVmI9PW.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10766 + ], + "genres": [ + "Crime", + "Drama", + "Soap" + ], + "releaseDate": "2017-07-17", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 68, + "popularity": 9.0824 + }, + { + "id": 206343, + "title": "Tomb of Fallen Gods", + "originalTitle": "神墓", + "overview": "The book takes the protagonist Chennan's search for his lover Yuxin 10,000 years ago and the pursuit of the secrets of the destruction of gods and demons as clues, leading to the vast six paths, heaven and earth chess game, and deducing a legend full of blood, heroic and poignant, telling the legends of countless heroes and beauties, and discussing human nature, society, life and other elements.", + "posterPath": "/h9eVMvU71tASt6rXqsx0zCEueEz.jpg", + "backdropPath": "/4HMw0WG4wD2oZZ6vVP1iAA1MvxY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-21", + "releaseYear": "2022", + "originalLanguage": "zh", + "voteAverage": 6, + "voteCount": 10, + "popularity": 9.0769 + }, + { + "id": 225647, + "title": "Boots", + "originalTitle": "Boots", + "overview": "After impulsively joining the U.S. Marine Corps, a bullied teen finds new purpose — and unexpected brotherhood — with his motley team of fellow recruits.", + "posterPath": "/eEwe68oPFFDU4ehZ3sXiETE44Rt.jpg", + "backdropPath": "/7a78G7fisRp9N9upjyX5b3GNRNI.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10768 + ], + "genres": [ + "Comedy", + "Drama", + "War & Politics" + ], + "releaseDate": "2025-10-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.983, + "voteCount": 120, + "popularity": 9.0766 + }, + { + "id": 62517, + "title": "Zoo", + "originalTitle": "Zoo", + "overview": "Set amidst a wave of violent animal attacks sweeping across the planet, a young renegade scientist is thrust into a race to unlock the mystery behind this pandemic before time runs out for animals and humans alike.", + "posterPath": "/yg9x4J3ZTslvVSz5Mtu9pH0FWcr.jpg", + "backdropPath": "/6nfKBMKoavRAYoG2OmFU1ol1kNW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-06-30", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.729, + "voteCount": 566, + "popularity": 9.0679 + }, + { + "id": 124834, + "title": "Heartstopper", + "originalTitle": "Heartstopper", + "overview": "Teens Charlie and Nick discover their unlikely friendship might be something more as they navigate school and young love in this coming-of-age series.", + "posterPath": "/wJJt1HG62h3WoGnLcRIbO2nNNkg.jpg", + "backdropPath": "/eGYnmsEs5cutoPQKf2QUlT4RgCH.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-04-22", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.574, + "voteCount": 1615, + "popularity": 9.0666 + }, + { + "id": 255859, + "title": "Wayward", + "originalTitle": "Wayward", + "overview": "A small-town cop suspects that the local school for troubled teens — and its dangerously charismatic founder — may not be all it seems.", + "posterPath": "/t6bk8g9DsITWZXwnw9jrA9RDdCB.jpg", + "backdropPath": "/znwchNfU5Vr2RNbxnI2iVIxVeMD.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-09-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.39, + "voteCount": 100, + "popularity": 9.0654 + }, + { + "id": 1769, + "title": "Johnny Test", + "originalTitle": "Johnny Test", + "overview": "Young Johnny is gung-ho and full of courage. Johnny's brainiac twin sisters, Susan and Mary, use Johnny as their guinea pig for their outrageous scientific experiments. If they can dream it up, Johnny will do it; as long as his genetically engineered super dog, Dukey, can come along.", + "posterPath": "/cGceNrHpUl3utUzE502xSY8l9ST.jpg", + "backdropPath": "/ecxpOnYv7iTUVNUmZRoxRksaC1f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-09-17", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.403, + "voteCount": 238, + "popularity": 9.0643 + }, + { + "id": 4259, + "title": "Studio One", + "originalTitle": "Studio One", + "overview": "An American radio–television anthology series, created in 1947 by Canadian director Fletcher Markle, who came to CBS from the CBC. Studio One, presented by Westinghouse, was one of the first of the anthology TV programs. The episodes were often abridged remakes of movies from years gone by and many future well-known television and movie actors appeared in the productions.", + "posterPath": "/rTauMq9Zi9KM2gGzX0qO80JoBmS.jpg", + "backdropPath": "/sWaYMwzkJrhc4ZrgAvJhE4Nl5Pz.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1948-11-07", + "releaseYear": "1948", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 12, + "popularity": 9.0633 + }, + { + "id": 3902, + "title": "Shaun the Sheep", + "originalTitle": "Shaun the Sheep", + "overview": "Shaun the Sheep thinks and acts like a person in a barnyard, which usually gets him into trouble. The farmer's sheepdog, Bitzer, tries to keep Shaun and his friends out of trouble. The farmer is oblivious to the humanlike features of his flock, who are like one big, happy family.", + "posterPath": "/z2gPfTQd3I0JLWOAEdKYMQRLoun.jpg", + "backdropPath": "/onwny8s0VTTN7te9TJnItgvyWHy.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16 + ], + "genres": [ + "Kids", + "Animation" + ], + "releaseDate": "2007-03-05", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 268, + "popularity": 9.0628 + }, + { + "id": 96677, + "title": "Lupin", + "originalTitle": "Lupin", + "overview": "Inspired by the adventures of Arsène Lupin, gentleman thief Assane Diop sets out to avenge his father for an injustice inflicted by a wealthy family.", + "posterPath": "/h6Z2oogE4mJk2uffdtIlLhb0EHx.jpg", + "backdropPath": "/aY7zv2pfk9H0QxaaL3PBjvalbKQ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2021-01-08", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 7.725, + "voteCount": 2450, + "popularity": 9.0604 + }, + { + "id": 4610, + "title": "Hannah Montana", + "originalTitle": "Hannah Montana", + "overview": "At home and school, she's Miley Stewart, a typical teenager, but when the lights go down and the curtain goes up, she emerges as the glamorous and talented Hannah Montana. Having the \"Best of Both Worlds\" is a complicated proposition, and keeping her identity under wraps leads Miley and her friends into some hilarious capers as she tries to balance her normal life with her rock star persona.", + "posterPath": "/usJAQAA7s9lJGGOGehIZdzKPCke.jpg", + "backdropPath": "/xISF3sT1RZXOS36zPvFeytqlwA2.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2006-03-24", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.141, + "voteCount": 706, + "popularity": 9.0582 + }, + { + "id": 46786, + "title": "Bates Motel", + "originalTitle": "Bates Motel", + "overview": "A \"contemporary prequel\" to the 1960 film Psycho, depicting the life of Norman Bates and his mother Norma prior to the events portrayed in Hitchcock's film, albeit in a different fictional town and in a modern setting. The series begins after the death of Norma's husband, when she purchases a motel located in a coastal Oregon town so she and Norman can start a new life.", + "posterPath": "/xXKcfZE7ulYxgjjYv51s0zDG69s.jpg", + "backdropPath": "/s3pypVJf05ELPCUA6jSW381nLwm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2013-03-18", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 1695, + "popularity": 9.0547 + }, + { + "id": 72637, + "title": "Once", + "originalTitle": "O11CE", + "overview": "The series revolves around Gabo, a soccer-loving teenager who, upon receiving a scholarship from the prestigious Sports Academic Institute (IAD) of Buenos Aires, will see his dream of playing at Los Halcones Dorados, the renowned amateur team of the school, and also his longing to become a professional footballer.", + "posterPath": "/d4vPg3QsTJJh6C5MHARTb5CyqOu.jpg", + "backdropPath": "/gDDwXPs53PYNVM8LASxXOxtxmX5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10766 + ], + "genres": [ + "Comedy", + "Family", + "Soap" + ], + "releaseDate": "2017-06-19", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 8.639, + "voteCount": 1498, + "popularity": 9.0395 + }, + { + "id": 16286, + "title": "Yo soy Betty, la fea", + "originalTitle": "Yo soy Betty, la fea", + "overview": "Beatriz Pinzón Solano is a brilliant economist with a master's degree in finance; she has only one flaw: she's ugly. Everything changes when she starts working at Ecomoda, one of the country's largest companies, where she meets and falls in love with Armando Mendoza. This time, life will give her a second chance to prove she can become the most desired and beloved woman in the world.", + "posterPath": "/iEBOiXiDGaxVR6w8aKgG5MEusuO.jpg", + "backdropPath": "/mQx26Ah233JDp2iEfIzRfcb4nuo.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 35, + 18 + ], + "genres": [ + "Soap", + "Comedy", + "Drama" + ], + "releaseDate": "1999-10-25", + "releaseYear": "1999", + "originalLanguage": "es", + "voteAverage": 8.343, + "voteCount": 3483, + "popularity": 9.0381 + }, + { + "id": 2617, + "title": "Step by Step", + "originalTitle": "Step by Step", + "overview": "Step by Step is an American television sitcom with two single parents, who spontaneously get married after meeting one another during a vacation, resulting in them becoming the heads of a large blended family", + "posterPath": "/4XMxYOxNvxEkfxUKhs8AoGBQiVD.jpg", + "backdropPath": "/aUSTj1kif2dqt65POwHrcyjhXRg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1991-09-20", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 421, + "popularity": 9.031 + }, + { + "id": 30991, + "title": "Cowboy Bebop", + "originalTitle": "カウボーイビバップ", + "overview": "In 2071, roughly fifty years after an accident with a hyperspace gateway made the Earth almost uninhabitable, humanity has colonized most of the rocky planets and moons of the Solar System. Amid a rising crime rate, the Inter Solar System Police (ISSP) set up a legalized contract system, in which registered bounty hunters, also referred to as \"Cowboys\", chase criminals and bring them in alive in return for a reward.", + "posterPath": "/xDiXDfZwC6XYC6fxHI1jl3A3Ill.jpg", + "backdropPath": "/A4PHx94G7mvM3b8vsDJ5HEaQ6uv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 37 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Western" + ], + "releaseDate": "1998-04-03", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1806, + "popularity": 9.0245 + }, + { + "id": 3475, + "title": "The L Word", + "originalTitle": "The L Word", + "overview": "A group of lesbian friends struggle with romance and careers in Los Angeles.", + "posterPath": "/nuBhtv4P5nY9loJ6kXb1hsyc9EA.jpg", + "backdropPath": "/nbZhU0vZI7mBo0BsvpFvD0OPdWi.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2004-01-18", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.639, + "voteCount": 839, + "popularity": 9.0224 + }, + { + "id": 3764, + "title": "Hustle", + "originalTitle": "Hustle", + "overview": "A motley group of London con artists pull of a series of daring and intricate stings.", + "posterPath": "/xty7kinvhVH3RzMdjNQSpJj2pEm.jpg", + "backdropPath": "/q7iwBG89RLMdkXoYGdVxC9rRg8Y.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18, + 9648 + ], + "genres": [ + "Comedy", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2004-02-24", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 172, + "popularity": 9.0196 + }, + { + "id": 121435, + "title": "Chrysalis", + "originalTitle": "Camdaki Kız", + "overview": "", + "posterPath": "/vlMQ9Ws6DLJyj9lfa2ZPqVIvqkb.jpg", + "backdropPath": "/wKzm4hlZHCSTBxIhJSmMJus01q5.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2021-04-08", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 6.9, + "voteCount": 19, + "popularity": 9.014 + }, + { + "id": 67667, + "title": "Beyblade Burst", + "originalTitle": "ベイブレードバースト", + "overview": "Middle schooler Valt Aoi, with his Beyblade Valkyrie (Valtryek), faces off against friends, classmates, and rivals to become the world's number one Blader.", + "posterPath": "/fG7BHxDlntPyB57UuNo9sXmAmLV.jpg", + "backdropPath": "/j0meXFRhxwk13yUaLBSUtqOwx7I.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762, + 10765, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2016-04-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 333, + "popularity": 9.0101 + }, + { + "id": 45952, + "title": "Hunter x Hunter", + "originalTitle": "HUNTER×HUNTER", + "overview": "Gon Freecss discovers that the father he had always been told was dead was actually alive the whole time. Ging is a famous Hunter: an individual who has proven themself an elite member of humanity. Gon becomes determined to follow in his father's footsteps, pass the rigorous Hunter Examination.", + "posterPath": "/eobAuhCJA8oRp814V67WhezVXtQ.jpg", + "backdropPath": "/575sxZXNNulSlIz7DvtWH5r4lkC.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1999-10-16", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 197, + "popularity": 9.01 + }, + { + "id": 28136, + "title": "Rurouni Kenshin", + "originalTitle": "るろうに剣心 明治剣客浪漫譚", + "overview": "The Meiji Era was one of great renewal for Japan, where swords and killing were outlawed. However, many survivors from the time of Revolution still live, lurking in the shadows and waiting for a chance to use their killing blades again. Only Kenshin Himura, formerly one of the most brutal of killers, hopes to keep his swordsman's honor and still live in the new era.", + "posterPath": "/iP6i2AJGkxSugByBRrxNd2Goey8.jpg", + "backdropPath": "/AwhfYDJHEsgUzEkd7Dp3fKaeHHU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "1996-01-10", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 781, + "popularity": 9.0077 + }, + { + "id": 17362, + "title": "Dr. Kildare", + "originalTitle": "Dr. Kildare", + "overview": "The story of a young intern in a large metropolitan hospital trying to learn his profession, deal with the problems of his patients, and win the respect of the senior doctor in his specialty, internal medicine.", + "posterPath": "/1zJFzPsnC3ih1sdY25XbHactXiB.jpg", + "backdropPath": "/vJIdVmdZevYauXkbQqSUTZlN4Kr.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1961-09-27", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 18, + "popularity": 9.003 + }, + { + "id": 4086, + "title": "Diners, Drive-Ins and Dives", + "originalTitle": "Diners, Drive-Ins and Dives", + "overview": "Host Guy Fieri takes a cross-country road trip to visit some of America's classic \"greasy spoon\" restaurants — diners, drive-ins and dives — that have been doing it right for decades.", + "posterPath": "/zeTYGOpVDI68gw47A5EmNhGDP7c.jpg", + "backdropPath": "/tKtxE1KzqKDg3HIXNnlr7VpuWzd.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10764 + ], + "genres": [ + "Documentary", + "Reality" + ], + "releaseDate": "2007-04-23", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.799, + "voteCount": 67, + "popularity": 8.994 + }, + { + "id": 92749, + "title": "Moon Knight", + "originalTitle": "Moon Knight", + "overview": "When Steven Grant, a mild-mannered gift-shop employee, becomes plagued with blackouts and memories of another life, he discovers he has dissociative identity disorder and shares a body with mercenary Marc Spector. As Steven/Marc’s enemies converge upon them, they must navigate their complex identities while thrust into a deadly mystery among the powerful gods of Egypt.", + "posterPath": "/vKDUmKO6F9bSKKyHhg7YGbgcEeF.jpg", + "backdropPath": "/iux1vKPT7Vw1AzetZb4Jz6wfYsm.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2022-03-30", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.662, + "voteCount": 3275, + "popularity": 8.9907 + }, + { + "id": 194916, + "title": "Chiikawa", + "originalTitle": "ちいかわ", + "overview": "The story follows the sometimes happy, sometimes sad, and a tad stressful daily life of \"some sort of small, cute creature\" (Nanka Chiisakute Kawaii Yatsu) known as Chiikawa. Chiikawa enjoys delicious food with bees and rabbits, toils hard every day for the rewards of work, and still maintains a smile.", + "posterPath": "/cXm3mxmlOWJZAyn5fqFI9JpARa3.jpg", + "backdropPath": "/qZXhYuCZR6lkspbu400oWwh6uCs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-04", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.182, + "voteCount": 11, + "popularity": 8.9894 + }, + { + "id": 29173, + "title": "House Hunters International", + "originalTitle": "House Hunters International", + "overview": "This spin-off of the wildly popular House Hunters goes around the globe. Home hunters and their realtors check out all sorts of architectural styles and work through the quirks of buying real estate in other countries.", + "posterPath": "/uzPQ3FvOtmMrvGsNnKPoIJuMJON.jpg", + "backdropPath": "/q0zY5AbqOhCghYWWwzpfT7dhcfb.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2006-03-06", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.083, + "voteCount": 30, + "popularity": 8.9794 + }, + { + "id": 397, + "title": "The Dukes of Hazzard", + "originalTitle": "The Dukes of Hazzard", + "overview": "Cousins Bo and Luke Duke and their car \"General Lee\", assisted by Cousin Daisy and Uncle Jesse, have a running battle with the authorities of Hazzard County (Boss Hogg and Sheriff Coltrane), plus a string of ne'er-do-wells often backed by the scheming Hogg.", + "posterPath": "/r9eXJUxP6zgrpCMEOJzaEXzXLsp.jpg", + "backdropPath": "/usnCQeoAWw4MDCn7q6luOWqSwQO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 35, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "1979-01-26", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 326, + "popularity": 8.9793 + }, + { + "id": 62084, + "title": "Poldark", + "originalTitle": "Poldark", + "overview": "Britain is in the grip of a chilling recession... falling wages, rising prices, civil unrest - only the bankers are smiling. It's 1783 and Ross Poldark returns from the American War of Independence to his beloved Cornwall to find his world in ruins: his father dead, the family mine long since closed, his house wrecked and his sweetheart pledged to marry his cousin. But Ross finds that hope and love can be found when you are least expecting it in the wild but beautiful Cornish landscape.", + "posterPath": "/fTJZHMzlIGSJVPSe7Xz4p5SRwYP.jpg", + "backdropPath": "/p8A1HMw3f3djxMwQRccCuxdy754.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-03-08", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 305, + "popularity": 8.9733 + }, + { + "id": 126485, + "title": "Moving", + "originalTitle": "무빙", + "overview": "Children who live in hiding with superpowers, along with their parents who live with painful secrets of the past, face enormous dangers together.", + "posterPath": "/vf9SNXNAFqzKBGksFwrXhkg9cb7.jpg", + "backdropPath": "/29jWaRhKtey1efp5G7Fu97NAmzz.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 10759 + ], + "genres": [ + "Mystery", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2023-08-09", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.5, + "voteCount": 241, + "popularity": 8.973 + }, + { + "id": 1426, + "title": "Luther", + "originalTitle": "Luther", + "overview": "A dark psychological crime drama starring Idris Elba as Luther, a man struggling with his own terrible demons, who might be as dangerous as the depraved murderers he hunts.", + "posterPath": "/hDxOMX8zzH1FiqKWVBzNaYGBkle.jpg", + "backdropPath": "/A2qdFRq9oJDC5E7fbgSS4POUMDF.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2010-05-04", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.857, + "voteCount": 1137, + "popularity": 8.9631 + }, + { + "id": 50524, + "title": "Pen Tor", + "originalTitle": "เป็นต่อ", + "overview": "A successful man at a publishing company tries to rekindle his romance with an ex-girlfriend as those around him also search for love amidst conflict.", + "posterPath": "/3pCGtGxRjxY9ZBfoCVh3gLhc5Fy.jpg", + "backdropPath": "/xlyT6E0jceTQ9s4BpHY6PkeOilr.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2004-10-07", + "releaseYear": "2004", + "originalLanguage": "th", + "voteAverage": 8.8, + "voteCount": 10, + "popularity": 8.962 + }, + { + "id": 58832, + "title": "Naked and Afraid", + "originalTitle": "Naked and Afraid", + "overview": "What happens when you put two complete strangers - sans clothes - in some of the most extreme environments on Earth? Each male-female duo is left with no food, no water, no clothes, and only one survival item each as they attempt to survive on their own.", + "posterPath": "/plV0HqZs3nHW8PhaLzV18puxtP2.jpg", + "backdropPath": "/7rqkQ2P0Q8QOXL0ITZctnzSx2Jl.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2013-06-23", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 102, + "popularity": 8.9617 + }, + { + "id": 133748, + "title": "Twisted Metal", + "originalTitle": "Twisted Metal", + "overview": "A motor-mouthed outsider with no memory of his past is offered a chance at a better life, but only if he can successfully deliver a mysterious package across a post-apocalyptic wasteland. With the help of a badass axe-wielding car thief, he’ll face savage marauders driving vehicles of destruction and other dangers of the open road, including a deranged clown who drives an all too familiar ice cream truck.", + "posterPath": "/3Zr9qJXqHQwi9IyPBDwukgg1jcZ.jpg", + "backdropPath": "/6wLJiFwmuZNvTiE9aqFqx4dDcWh.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35 + ], + "genres": [ + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2023-07-27", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.798, + "voteCount": 483, + "popularity": 8.9605 + }, + { + "id": 215720, + "title": "Queen of Tears", + "originalTitle": "눈물의 여왕", + "overview": "The queen of department stores and the prince of supermarkets weather a marital crisis—until love miraculously begins to bloom again.", + "posterPath": "/7ZXLZ3KYL3IVvsSHBZaHjcNQzNU.jpg", + "backdropPath": "/wcP3FsRLog4GNEs9PFrDKKQdcof.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-03-09", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.388, + "voteCount": 423, + "popularity": 8.9441 + }, + { + "id": 254002, + "title": "Critical Role", + "originalTitle": "Critical Role", + "overview": "Critical Role is a weekly actual play series that uses tabletop role-playing game mechanics as a means to explore and develop stories from the vast fantasy worlds of Exandria, Aramán, and beyond, with sweeping narratives intricately woven through collaboration between Game Masters and players.", + "posterPath": "/keSNwdzmSgQzluKmqTI6kwDOFa7.jpg", + "backdropPath": "/aqjNyP1wSPcMau2rCqwNfFeLR3V.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2015-03-12", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 18, + "popularity": 8.9421 + }, + { + "id": 2840, + "title": "Earth: Final Conflict", + "originalTitle": "Earth: Final Conflict", + "overview": "Years ago, the Taelons came to Earth, offering friendship and technology to humanity. But there are those who believe the Taelons have more sinister motives.", + "posterPath": "/xOcw7r57ppfPHdaTIauMnE64Npz.jpg", + "backdropPath": "/rRLwVEle5bKWhMXvG7eAjmwyFzJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "1997-10-06", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 92, + "popularity": 8.9388 + }, + { + "id": 231280, + "title": "Good Boy", + "originalTitle": "굿보이", + "overview": "After 11 years, the police revive their special recruitment for former national athletes. Once hailed as heroes, these world-class medalists now face harsh realities. Despite financial struggles, unexpected tragedies, and discrimination within the force, the athletes, each with their own story, reunite as a special task force to take on major crimes with the grit and skills they honed as athletes.", + "posterPath": "/59MAdHaHepsz3uDCU1LyoNQcLlT.jpg", + "backdropPath": "/8l1BN0IIjHmRyW0oDfUfs3F6F4N.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 35, + 10759, + 18 + ], + "genres": [ + "Crime", + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-05-31", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.744, + "voteCount": 129, + "popularity": 8.9276 + }, + { + "id": 35790, + "title": "Cardcaptor Sakura", + "originalTitle": "カードキャプターさくら", + "overview": "Sakura Kinomoto, an elementary school student who discovers that she possesses magical powers after accidentally freeing a set of magical cards from the book they had been sealed in for years. She is then tasked with retrieving those cards in order to avoid an unknown catastrophe from befalling the world.", + "posterPath": "/dj0uI34MOkZMTE233tfRebs0YYx.jpg", + "backdropPath": "/5IpJOGP0HAuwm9zwjt4NyqKe9oc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1998-04-07", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.592, + "voteCount": 772, + "popularity": 8.9238 + }, + { + "id": 2102, + "title": "Simon & Simon", + "originalTitle": "Simon & Simon", + "overview": "A.J. Simon is a polished fellow with a taste for classic cars and tailored suits. Rick Simon is his less refined (but still pleasant) older brother who has a taste for cowboy boots and four-wheel drive pickups. The two of them live in San Diego, where they own a private detective agency.", + "posterPath": "/h1wId4z79SQOOhEnc3oEqf3qpro.jpg", + "backdropPath": "/dSqLtN6RNcIUMZyrbyg1TnHTe1v.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1981-11-24", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 90, + "popularity": 8.9206 + }, + { + "id": 89180, + "title": "Dimension 20", + "originalTitle": "Dimension 20", + "overview": "Heed the call of adventure and enter Dimension 20 where Game Master Brennan Lee Mulligan, joined by comedians and pro gamers, blends comedy with tabletop RPGs.", + "posterPath": "/8xZXCenM9n5HYyrgr5FcP2oHwdx.jpg", + "backdropPath": "/sLjajD8tzEPpn7yieGKehpAE7H.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10764, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Reality", + "Action & Adventure" + ], + "releaseDate": "2018-09-19", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 9.3, + "voteCount": 15, + "popularity": 8.9121 + }, + { + "id": 62117, + "title": "Younger", + "originalTitle": "Younger", + "overview": "Liza Miller, a suddenly single stay-at-home mother, tries to get back into the working world, only to find it’s nearly impossible to start at the bottom at 40-year old. When a chance encounter convinces her she looks younger than she is, Liza tries to pass herself off as 26 and lands a job as an assistant at Empirical Press. Now she just has to make sure no one finds out the secret only she and her best friend Maggie share.", + "posterPath": "/feWw6i09zaX2apzRqd7QbKEAsx9.jpg", + "backdropPath": "/wCdhtaLMNtQ37j4OEch4dSKXyoE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2015-03-31", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.811, + "voteCount": 219, + "popularity": 8.9098 + }, + { + "id": 3218, + "title": "Caillou", + "originalTitle": "Caillou", + "overview": "Caillou is an educational Canadian children's television series, based on the books by author Christine L'Heureux and illustrator Hélène Desputeaux. During the first season, many of the stories in the animated version began with a grandmother introducing the story to her grandchildren, then reading the story about the book. Since 1997, the narrator/grandmother is an unseen character. Caillou first aired on Canada's Teletoon channel in 1998; it later made its United States debut in English on Public Broadcasting Service Public television on September 4, 2000 A 5th Season came out in 2013 = and it airs on PBS Kids. Caillou also airs on PBS Sprout.", + "posterPath": "/86fn0dy8u6vVa2KahZEkc31msm4.jpg", + "backdropPath": "/wg8bwGWOGF1MXOXiqOo4cnh7jee.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "1998-01-01", + "releaseYear": "1998", + "originalLanguage": "fr", + "voteAverage": 5.3, + "voteCount": 73, + "popularity": 8.9074 + }, + { + "id": 221851, + "title": "Marry My Husband", + "originalTitle": "내 남편과 결혼해줘", + "overview": "Kang Ji-won, a terminally ill cancer patient, is killed by her husband and best friend after she witnesses them having an affair. She wakes up 10 years before the incident and decides to seek revenge with the help of Yu Ji-hyuk, a director at the company where she works. Now, she must reclaim her fate and eliminate the trash from her life.", + "posterPath": "/dvmnUM7SqMu84lBcECLQ7Ho77oj.jpg", + "backdropPath": "/bd1uYBQnd9HRex77LTiMughdKKK.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 35 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2024-01-01", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.448, + "voteCount": 624, + "popularity": 8.9049 + }, + { + "id": 206484, + "title": "Jade Dynasty", + "originalTitle": "诛仙", + "overview": "Zhang Xiaofan, who turned into an orphan overnight, becomes a disciple of the Qingyun Sect. After five years of training, he performs well in the Seven Peak Martial Arts Competition. He's sent to the Kongsang Mountain to defeat the evil. During the journey, he and his senior, Lu Xueqi, met with an accident, and got to know and save the lady of the cult, Bi Yao. At the same time, new danger is ahead of him.", + "posterPath": "/oOy0PskfCQyWwsQVdHyM2PoN9H4.jpg", + "backdropPath": "/5fq2lbecTwvpitm7WHfQGa0VGXh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2022-08-02", + "releaseYear": "2022", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 18, + "popularity": 8.9022 + }, + { + "id": 10534, + "title": "The Red Skelton Show", + "originalTitle": "The Red Skelton Show", + "overview": "The Red Skelton Show is an American variety show that was a television staple for two decades, from 1951 to 1971. It was second to Gunsmoke and third to The Ed Sullivan Show in the ratings during that time. Skelton, who had previously been a radio star, had appeared in several motion pictures as well. Although his television series is largely associated with CBS, where it appeared for more than fifteen years, it actually began and ended on NBC. During its run, the program received three Emmy Awards, for Skelton as best comedian and the program as best comedy show during its initial season, and an award for comedy writing in 1961.", + "posterPath": "/6e54gnblIDcwDGOGhzPyV0fB6Rw.jpg", + "backdropPath": "/eUZgRR8bN1EyHmrUXWW9ElBmzGg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767, + 10751 + ], + "genres": [ + "Comedy", + "Talk", + "Family" + ], + "releaseDate": "1951-09-30", + "releaseYear": "1951", + "originalLanguage": "en", + "voteAverage": 7.412, + "voteCount": 17, + "popularity": 8.8991 + }, + { + "id": 125282, + "title": "The Cleaning Lady", + "originalTitle": "The Cleaning Lady", + "overview": "A whip-smart doctor comes to the U.S. for a medical treatment to save her ailing son. But when the system fails and pushes her into hiding, she refuses to be beaten down and marginalized. Instead, she becomes a cleaning lady for the mob and starts playing the game by her own rules.", + "posterPath": "/aoTQhDKiuKpn599yNxp03wr2ZHu.jpg", + "backdropPath": "/eVGaiNUPhwKyiuWH6LfNa60JFyQ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2022-01-03", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.461, + "voteCount": 204, + "popularity": 8.895 + }, + { + "id": 79501, + "title": "Doom Patrol", + "originalTitle": "Doom Patrol", + "overview": "The Doom Patrol’s members each suffered horrible accidents that gave them superhuman abilities — but also left them scarred and disfigured. Traumatized and downtrodden, the team found purpose through The Chief, who brought them together to investigate the weirdest phenomena in existence — and to protect Earth from what they find.", + "posterPath": "/nVN7Dt0Xr78gnJepRsRLaLYklbY.jpg", + "backdropPath": "/sSJZVwCS0tFzcLSaQOjLpv5mFau.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-02-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1405, + "popularity": 8.8945 + }, + { + "id": 237565, + "title": "Family by Choice", + "originalTitle": "조립식 가족", + "overview": "A youth romance about two men and woman who aren't blood related but treated each other as family during their teens and how they meet again after 10 years.", + "posterPath": "/drQh6tu7OupGBtE5zqVJB1AAGoa.jpg", + "backdropPath": "/26hCPlTtSqxnW6HMSzvir9umFCW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2024-10-09", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.884, + "voteCount": 69, + "popularity": 8.8921 + }, + { + "id": 40290, + "title": "MasterChef", + "originalTitle": "MasterChef", + "overview": "This hit cooking competition series sees award-winning chef Gordon Ramsay and other celebrity chefs put a group of contestants through a series of challenges and elimination rounds, in order to turn one home cook into a culinary master.", + "posterPath": "/42gO1qCC6GPtHKNXvOdhunhzyS3.jpg", + "backdropPath": "/kxb02OCWt9VYMvVeoY7dNhSNFT2.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2010-07-27", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 282, + "popularity": 8.8894 + }, + { + "id": 902, + "title": "Yu-Gi-Oh! Duel Monsters", + "originalTitle": "遊☆戯☆王デュエルモンスターズ", + "overview": "Bullies often target someone frail and weak—someone exactly like Yûgi Muto. He treasures his Millennium Puzzle, an ancient Egyptian artifact that was brought into his grandfather's game shop. Believing that solving the puzzle will grant him his wish, he completes the puzzle, unleashing a new personality within him, the soul of the \"King of Games.\" The new personality named Yami Yûgi is the exact opposite of Yûgi. Upon any injustice toward him, Yami Yûgi takes over Yûgi's body and forces the opponent into a \"Shadow Game\".", + "posterPath": "/mM6c5ISlyKWtie2hGiZWo6hmlhU.jpg", + "backdropPath": "/gJYZBM200Flldo6im3EEdXslR1j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2000-04-18", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 997, + "popularity": 8.8841 + }, + { + "id": 46880, + "title": "The Fosters", + "originalTitle": "The Fosters", + "overview": "Stef Foster, a dedicated police officer, and her partner Lena Adams, a school vice principal, have built a close-knit, loving family with Stef's biological son from a previous marriage, Brandon, and their adopted twins, Mariana and Jesus. Their lives are disrupted in unexpected ways when Lena meets Callie, a hardened teen with an abusive past who has spent her life in and out of foster homes. Lena and Stef welcome Callie and her brother, Jude, into their home thinking it's just for a few weeks, until a more permanent placement can be found. But life has something else in store for the Fosters.", + "posterPath": "/iRCmazqaUNNsgZyR6tNDl88pXp3.jpg", + "backdropPath": "/fs5VXKvIUcfTn3nsc3g4s3OIcV4.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-06-03", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.526, + "voteCount": 323, + "popularity": 8.8837 + }, + { + "id": 4275, + "title": "Prisoner", + "originalTitle": "Prisoner", + "overview": "Prisoner is an Australian soap opera that is set in the Wentworth Detention Centre, a fictional women's prison.", + "posterPath": "/9OSK44nb6ZZkMxkX6SLeQszVFke.jpg", + "backdropPath": "/AqhMVAeGQNtBQbD2HJf2m2KrrUX.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1979-02-27", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 33, + "popularity": 8.8809 + }, + { + "id": 277513, + "title": "There's No Freaking Way I'll Be Your Lover! Unless...", + "originalTitle": "わたしが恋人になれるわけないじゃん、ムリムリ!(※ムリじゃなかった!?)", + "overview": "Renako Amaori is leaving her awkward and lonely junior high school life behind, determined to become a normal girl with normal friends in high school. Glamorous, confident Mai Ouzuka is Renako’s total opposite: wealthy, outgoing, and a literal fashion model. Against the odds, the two girls form an immediate connection. Renako thinks she may have found the best friend of her dreams…until Mai’s romantic confession sends her into a tailspin. Renako wants to prove to Mai that being BFFs is better than being girlfriends, but Mai is dead set on convincing Renako that they’re destined to be lovers.", + "posterPath": "/zb3FK85DijFCOlT7ghGtfcZCGOC.jpg", + "backdropPath": "/xMn1Fc4Go36WxZTgx4txH1Lkn3B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.06, + "voteCount": 25, + "popularity": 8.8792 + }, + { + "id": 2686, + "title": "Three's Company", + "originalTitle": "Three's Company", + "overview": "When two single girls, Janet and Chrissy, need a roommate to share their Santa Monica apartment, they decide to offer a room to Jack, a man they find passed out in the bathtub after the going-away party for their last roommate. However, hijinks ensure when Jack must pretend to be gay in order to throw off the scent of the trio's conservative landlady.", + "posterPath": "/6xn9XQ5iwJIa1FkoZAFtnh5tAQl.jpg", + "backdropPath": "/4ubxzr6wNZElImE3EOUsjxvVjYw.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1977-03-15", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.63, + "voteCount": 166, + "popularity": 8.8732 + }, + { + "id": 242054, + "title": "The Residence", + "originalTitle": "The Residence", + "overview": "A brilliant, eccentric detective must solve a murder in the White House residence — where the staff and guests at a state dinner are all suspects.", + "posterPath": "/cJZbg425I9LF3SlJVQDOg4nJEvq.jpg", + "backdropPath": "/rhwN3mIN89zlDveR0gv0VkrspXa.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-03-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.575, + "voteCount": 253, + "popularity": 8.8715 + }, + { + "id": 4274, + "title": "Tom & Jerry Kids Show", + "originalTitle": "Tom & Jerry Kids Show", + "overview": "Tom and Jerry in their childhood days, playing cat-and-mouse games even then.", + "posterPath": "/pApniCXhegDnhxQda7RcpG8gFP0.jpg", + "backdropPath": "/wBzpcUzKnt7yRaldA2rYEF8mOqc.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Comedy" + ], + "releaseDate": "1990-09-08", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 120, + "popularity": 8.87 + }, + { + "id": 284838, + "title": "9-1-1: Nashville", + "originalTitle": "9-1-1: Nashville", + "overview": "Follow heroic first responders, as well as their family saga of power and glamour, in one of America's most diverse and dynamic cities: Nashville, Tennessee.", + "posterPath": "/4Dl0LysUOEWOhitzAfrKFkBeefu.jpg", + "backdropPath": "/eO4cbYrbYIwn6uFZgpvdfD9eY9o.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-10-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 21, + "popularity": 8.8639 + }, + { + "id": 652, + "title": "What's New, Scooby-Doo?", + "originalTitle": "What's New, Scooby-Doo?", + "overview": "Scooby-Doo and the Mystery, Inc. gang are launched into the 21st century, with new mysteries to solve.", + "posterPath": "/7sX80eWq4XHvFGUmCg803iifUcG.jpg", + "backdropPath": "/azYkdfJEkhn94jozR87t46LeCst.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2002-09-14", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.867, + "voteCount": 669, + "popularity": 8.8635 + }, + { + "id": 34587, + "title": "The Valley of The Wolves", + "originalTitle": "Kurtlar Vadisi", + "overview": "Valley of the Wolves was a Turkish television drama which broadcast mainly on Show TV and then transferred to Kanal D, then atv for its last season. It was mostly about an agent named Polat Alemdar who leaked into the mafia after his plastic surgery. The scenario has direct and indirect references to the Turkish politics and political history from a viewpoint of an undercover agent. Valley of the Wolves became one of the most successful TV shows in Turkey and produced a successful feature film named Valley of the Wolves: Iraq.", + "posterPath": "/aGi8EuXsf5bbM4O59Uu0pucLcT.jpg", + "backdropPath": "/zCGR5XTx9rQwvYKuIPcacxCpzKg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10768, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "War & Politics", + "Crime" + ], + "releaseDate": "2003-01-15", + "releaseYear": "2003", + "originalLanguage": "tr", + "voteAverage": 7.295, + "voteCount": 73, + "popularity": 8.8625 + }, + { + "id": 64978, + "title": "Whose Line Is It Anyway?", + "originalTitle": "Whose Line Is It Anyway?", + "overview": "Comedian Aisha Tyler hosts this improv comedy show where the actors on the show - Wayne Brady, Colin Mochrie, Ryan Stiles along with a special guest each episode -must put their comedic skills to the test through a series of spontaneous improv games, prompted only by random ideas supplied by the studio audience.", + "posterPath": "/v8prqphh93EaZQD3tRXCGmN68iG.jpg", + "backdropPath": "/nAY6ZoWlRzzyvYSfWGmg3MdnFme.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2013-07-16", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.661, + "voteCount": 96, + "popularity": 8.8604 + }, + { + "id": 35935, + "title": "Berserk", + "originalTitle": "剣風伝奇ベルセルク", + "overview": "A wandering, sword-wielding mercenary joins a charismatic leader in his ruthless pursuit of glory and recognition in this epic medieval tale.", + "posterPath": "/xctRBSZzvoHDHz38ZZUGxRYetvG.jpg", + "backdropPath": "/99Y64VK0KwyRWfaW6VdpDfPKNMo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1997-10-08", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 722, + "popularity": 8.8546 + }, + { + "id": 49347, + "title": "Elif", + "originalTitle": "Elif", + "overview": "A kind 6-year-old girl is placed under the protection of her mother's best friend, who keeps a well-hidden secret, and is a maid for a wealthy family, in whose mansion she lives.", + "posterPath": "/337YdJG3TUMzpdnbJyP7K9oA72e.jpg", + "backdropPath": "/bhim19hZohZRNNs9fzH0FCnu1n6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10766 + ], + "genres": [ + "Drama", + "Family", + "Soap" + ], + "releaseDate": "2014-09-15", + "releaseYear": "2014", + "originalLanguage": "tr", + "voteAverage": 5.7, + "voteCount": 10, + "popularity": 8.8473 + }, + { + "id": 78173, + "title": "Dragons: Race to the Edge", + "originalTitle": "Dragons: Race to the Edge", + "overview": "Unlock the secrets of the Dragon Eye and come face to face with more dragons than anyone has ever imagined as Hiccup, Toothless and the Dragon Riders soar to the edge of adventure.", + "posterPath": "/y5sNfaTvWR3ObILyf9uV6deAcKT.jpg", + "backdropPath": "/vyhmiHVWUvmH6jrfvtPdcwYc2I8.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10762, + 16, + 10759, + 10765 + ], + "genres": [ + "Family", + "Kids", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-06-26", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.368, + "voteCount": 457, + "popularity": 8.8462 + }, + { + "id": 40758, + "title": "Großstadtrevier", + "originalTitle": "Großstadtrevier", + "overview": "Follow the everyday work of a fictional police station on the Kiez of Hamburg.", + "posterPath": "/fVsntDN3mQAuaDFGiJTKar7fRcu.jpg", + "backdropPath": "/32kAbClMKp2BmwNPH5j8OKzyYt9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1986-12-16", + "releaseYear": "1986", + "originalLanguage": "de", + "voteAverage": 5.8, + "voteCount": 13, + "popularity": 8.8453 + }, + { + "id": 91121, + "title": "How Do You Play?", + "originalTitle": "놀면 뭐하니?", + "overview": "Yoo Jae-suk reunites the producing team of Infinite Challenge and presents you How Do You Play? The Indefinitely expanding YOONIVERSE, based on Yoo's blood, sweat, and tears, will entertain viewers at home. Let's follow Yoo and his friends' new projects every week.", + "posterPath": "/dJd8LFodX9831AeRD3CzWklYcS5.jpg", + "backdropPath": "/dgutaqpLcLMoJInkbglyG8cLuji.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2019-07-27", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 7.7, + "voteCount": 20, + "popularity": 8.84 + }, + { + "id": 227975, + "title": "Fatal Seduction", + "originalTitle": "Fatal Seduction", + "overview": "A married professor is pulled into a passionate affair with a younger man that uncovers a path of tragedy and betrayal from those closest to her.", + "posterPath": "/qV9DjDIMUu7ieCQTQkEe9R83Ooa.jpg", + "backdropPath": "/138GLKdHorsdiG2pqHrIMw05Nc8.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80, + 18 + ], + "genres": [ + "Mystery", + "Crime", + "Drama" + ], + "releaseDate": "2023-07-07", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.53, + "voteCount": 83, + "popularity": 8.8399 + }, + { + "id": 4920, + "title": "Damages", + "originalTitle": "Damages", + "overview": "Damages is an American legal thriller television series created by the writing and production trio of Daniel Zelman and brothers Glenn and Todd A. Kessler. The plot revolves around the brilliant, ruthless lawyer Patty Hewes and her protégée, recent law school graduate Ellen Parsons. Each season features a major case that Hewes and her firm take on, while also examining a chapter of the complicated relationship between Ellen and Patty. The first two seasons center around the law firm Hewes & Associates. Later seasons center more on Patty and Ellen's relationship as Ellen begins to distance herself from Hewes & Associates and begins an independent career.", + "posterPath": "/bowEbW8Q3Oc02BvHBKTL5gWv9Nx.jpg", + "backdropPath": "/lAsz5DYQpXcOONSVuZdZIrtZoIv.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "2007-07-24", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.443, + "voteCount": 229, + "popularity": 8.8398 + }, + { + "id": 110309, + "title": "SK8 the Infinity", + "originalTitle": "SK∞ エスケーエイト", + "overview": "\"S\" is a dangerous, top secret, no-holds-barred downhill skateboarding race down an abandoned mine. When avid skateboarder Reki takes Langa to the mountain where \"S\" is held, Langa, who's never been on a skateboard in his life, finds himself sucked into the world of \"S\", and…?!", + "posterPath": "/kZHnqxP16mb2pVYthJfT4buYk4P.jpg", + "backdropPath": "/rfEhgiJn80Z0YOyU6cU1v9hi0IS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 305, + "popularity": 8.8387 + }, + { + "id": 4014, + "title": "The Flying Doctors", + "originalTitle": "The Flying Doctors", + "overview": "The Flying Doctors is an Australian drama series produced by Crawford Productions that revolved around the everyday lifesaving efforts of the real Royal Flying Doctor Service of Australia.\n\nIt was initially a 1985 mini-series based in the fictional outback town of Cooper's Crossing starring Andrew McFarlane as the newly arrived Dr. Tom Callaghan. The success of the mini series led to its return the following year as an on-going series with McFarlane being joined by a new doctor, Chris Randall, played by Liz Burch. McFarlane left during the first season and actor Robert Grubb came in as new doctor Geoff Standish.\n\nThe series' episodes were mostly self-contained but also featured ongoing storylines, such as Dr. Standish's romance with Sister Kate Wellings. Other major characters included pilot Sam Patterson, mechanic Emma Plimpton, local policeman Sgt. Jack Carruthers and Vic and Nancy Buckley, who ran the local pub/hotel, The Majestic. Andrew McFarlane also later returned to the series, resuming his role as Dr. Callaghan. The popular series ran for nine seasons and was successfully screened internationally.", + "posterPath": "/Aj4xa7lo9RwTV6DpZ3Pcjgp26Ht.jpg", + "backdropPath": "/AfanuPdlRgJqlYq72vVeiuZaCbh.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1986-05-15", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 15, + "popularity": 8.833 + }, + { + "id": 220269, + "title": "The Prisoner of Beauty", + "originalTitle": "折腰", + "overview": "Xiao Qiao, a clever girl from the Qiao family, marries Wei Shao, the brave and kind master of the Wei family. Despite initial wariness due to ancestral grievances, Xiao Qiao and Wei Shao navigate their relationship with humor and determination. As they face challenges together, they come to appreciate each other's qualities through their warm daily life, intertwined with family and national affairs, and work to restore peace and resolve conflicts.", + "posterPath": "/mXbZ5aH4uhao6Dpd884USvATMfo.jpg", + "backdropPath": "/hew9LSQW4wk63aN1Z7cEBTISL9B.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-05-13", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.7, + "voteCount": 30, + "popularity": 8.8324 + }, + { + "id": 56296, + "title": "Orphan Black", + "originalTitle": "Orphan Black", + "overview": "A streetwise hustler is pulled into a compelling conspiracy after witnessing the suicide of a girl who looks just like her.", + "posterPath": "/tjFYkWMafg71sihs1aa7IDx17aS.jpg", + "backdropPath": "/cBmVnbc9KKhsdHCDJU2pibU5Pjs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-03-30", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.813, + "voteCount": 1352, + "popularity": 8.8252 + }, + { + "id": 32025, + "title": "American Pickers", + "originalTitle": "American Pickers", + "overview": "Pickers like Mike Wolfe and Frank Fritz are on a mission to recycle America, even if it means diving into countless piles of grimy junk or getting chased off a gun-wielding homeowner’s land. Hitting back roads from coast to coast, the two men earn a living by restoring forgotten relics to their former glory, transforming one person’s trash into another’s treasure.", + "posterPath": "/obWweSxU8XrAtCqteHLasV8ktmD.jpg", + "backdropPath": "/lcZCw8D6PqiVtsIMbApl7aiACU0.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2010-01-18", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 106, + "popularity": 8.8185 + }, + { + "id": 62816, + "title": "Quantico", + "originalTitle": "Quantico", + "overview": "A diverse group of recruits has arrived at the FBI Quantico Base for training. They are the best, the brightest and the most vetted, so it seems impossible that one of them is suspected of masterminding the biggest attack on New York City since 9/11.", + "posterPath": "/3ofY2mALEiE0QDyRlVOV3sDNMYC.jpg", + "backdropPath": "/3rdQ4cbley3iOIkruTwMKDUzsLj.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2015-09-27", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 696, + "popularity": 8.8126 + }, + { + "id": 4602, + "title": "That's So Raven", + "originalTitle": "That's So Raven", + "overview": "No ordinary teenager; Raven Baxter can see glimpses of the future! Watch her schemes and misadventures as she enlists the help of friends, including best friends Eddie and Chelsea, to change life's little outcomes. Raven's younger brother, Cory, is obsessed with money and creates get-rich-quick schemes to try to earn cash.", + "posterPath": "/fLo2KYsE7gdM8ti1L9pcdaLoLPD.jpg", + "backdropPath": "/xXxTWkQFeUUWr3N8UVl7CpwZI2g.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-01-17", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.196, + "voteCount": 263, + "popularity": 8.8088 + }, + { + "id": 97645, + "title": "Solar Opposites", + "originalTitle": "Solar Opposites", + "overview": "A family of aliens from a much better world must take refuge in middle America after the destruction of their planet. Their mission: protect the Pupa, a living super computer that will one day evolve into its true form, consume them and terraform the Earth.", + "posterPath": "/m431Q9FgkilJGxBnXSot4Gy87b2.jpg", + "backdropPath": "/1cVt0Tm7erwYT5lyae9vUkPr4XY.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-05-08", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 566, + "popularity": 8.8058 + }, + { + "id": 32605, + "title": "The Looney Tunes Show", + "originalTitle": "The Looney Tunes Show", + "overview": "Bugs Bunny, Daffy Duck and the rest of the “Looney Tunes” characters are back with more adventures for a new generation of viewers. The animated series features roommates Bugs and Daffy moving out of the woods and into the suburbs, interacting with their neighbors, who happen to be other \"Looney Tunes\" favorites -- including Sylvester, Tweety, Porky Pig and Foghorn Leghorn.", + "posterPath": "/bZWdejWhkgJmXjdQ70DjiJS7v7O.jpg", + "backdropPath": "/yMrRDXkbfTrK4g98tjRNCcPYtEF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2011-05-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 534, + "popularity": 8.8029 + }, + { + "id": 2430, + "title": "Doc Martin", + "originalTitle": "Doc Martin", + "overview": "Doc Martin is a British television comedy drama series starring Martin Clunes in the title role. It was created by Dominic Minghella after the character of Dr. Martin Bamford in the 2000 comedy film Saving Grace. The show is set in the fictional seaside village of Portwenn and filmed on location in the village of Port Isaac, Cornwall, England, with most interior scenes shot in a converted local barn. Five series aired between 2004 and 2011, together with a feature-length special that aired on Christmas Day 2006. Series 6 began airing on ITV on 2 September 2013.", + "posterPath": "/zmd4ZpdXWnjKVrenqvYyYstOkwK.jpg", + "backdropPath": "/g0LCSXvweUAMW8jB3O2ECMwDAua.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2004-09-02", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 131, + "popularity": 8.802 + }, + { + "id": 114819, + "title": "Dafne and the Rest", + "originalTitle": "Todo lo otro", + "overview": "Dafne and her friends are a bunch of thirty-somethings living dissatisfied lives. Frustrated in love and sex, they work in lousy jobs, trying to find themselves, and some love, in Madrid.", + "posterPath": "/uL2lp8bo8SnOdCzmRJDSEgZiUVW.jpg", + "backdropPath": "/5LIJTWULWWng6aykngK3qMldJus.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-10-26", + "releaseYear": "2021", + "originalLanguage": "es", + "voteAverage": 4.8, + "voteCount": 16, + "popularity": 8.8008 + }, + { + "id": 31654, + "title": "Digimon: Digital Monsters", + "originalTitle": "デジモンアドベンチャー", + "overview": "While at summer camp, seven kids come across seven Digivices and are transported to a strange digital world. In this new world they make friends with creatures that call themselves Digimon who were born to defend their world from various evil forces.", + "posterPath": "/vFJAiBNUlzEVa54mXgHGumr1z1s.jpg", + "backdropPath": "/8pGbYI34B9ruE9Hk42C8SZLT4zn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-03-07", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.059, + "voteCount": 884, + "popularity": 8.7903 + }, + { + "id": 2755, + "title": "Rules of Engagement", + "originalTitle": "Rules of Engagement", + "overview": "Rules of Engagement is a comedy about the different phases of male/female relationships, as seen through the eyes of a newly engaged couple, Adam and Jennifer, a long-time married pair, Jeff and Audrey, and a single guy on the prowl, Russell. As they find out, the often confusing stages of a relationship can seem like being on a roller coaster. People can describe the ride to you, but to really know what it's like you have to experience it for yourself.", + "posterPath": "/tRma9RQCgwLXqkDrCPyrQwsazuJ.jpg", + "backdropPath": "/xYnYBGtDsuduzIznvVKeLnpEtXt.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-02-05", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.094, + "voteCount": 180, + "popularity": 8.7706 + }, + { + "id": 46831, + "title": "Državni posao", + "originalTitle": "Државни посао", + "overview": "The backbone of the \"Državni Posao (Government Job)\" are satirical talks between the three actors, the comments are reminiscent of the \"stand-up\" form. These are short, witty comments and observations on daily life, circumstances, sociopolitical situation, sports, entertainment world, their personal opinions on various topics. The main idea is to present day in a non-existent government company and three employees of thinking about daily events in it, but also about life and society in general. Topics drawn from the daily and weekly press, for various blogs, websites, talk about movies, series, shows - radio and television. The idea is that actors humorously comment on current events, to laugh viewers and encourage them to think about them.", + "posterPath": "/sceVlRK5RvnU1qjNipyWDHQXB7x.jpg", + "backdropPath": "/ucsg6ywfOf0u21sM54orBcXGjGs.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-09-24", + "releaseYear": "2012", + "originalLanguage": "sr", + "voteAverage": 7.9, + "voteCount": 10, + "popularity": 8.7686 + }, + { + "id": 54155, + "title": "Hanna", + "originalTitle": "Hanna", + "overview": "Follow the journey of an extraordinary young girl as she evades the relentless pursuit of an off-book CIA agent and tries to unearth the truth behind who she is.", + "posterPath": "/iYUtjx1EN4SVTgxd2TB4cZTGSQb.jpg", + "backdropPath": "/qLUtXJAylnWFwD8gQxKxbyctpYd.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2019-03-28", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 854, + "popularity": 8.7633 + }, + { + "id": 83275, + "title": "Don't Start the Murmur", + "originalTitle": "Μην Αρχίζεις τη Μουρμούρα", + "overview": "The premise of the series revolves around the daily lives of different couples of all ages from 20 to 65, but who are not connected to each other. Each couple has their own space where they live, while the story of each couple in each episode is not connected to the stories of the other couples.", + "posterPath": "/dwg5aqUOrPWIbdllC19Cp9FjD8a.jpg", + "backdropPath": "/hIPMWqlMg1nrq0tAK3R5NCCn350.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "el", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 8.7581 + }, + { + "id": 1025, + "title": "The Bullwinkle Show", + "originalTitle": "The Bullwinkle Show", + "overview": "A variety show, with the main feature being the serialized adventures of the two title characters, the anthropomorphic moose Bullwinkle and flying squirrel Rocky. The main adversaries in most of their adventures are the Russian-like spies Boris Badenov and Natasha Fatale. Supporting segments include Dudley Do-Right, Peabody's Improbable History, and Fractured Fairy Tales, among others.", + "posterPath": "/cAMWBJyYynFWxJNrIvVnHlN2e9P.jpg", + "backdropPath": "/6wVEWwNpOOIWalkqsoV8SNGBryI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Family" + ], + "releaseDate": "1959-11-19", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 7.149, + "voteCount": 57, + "popularity": 8.7574 + }, + { + "id": 67683, + "title": "Travelers", + "originalTitle": "Travelers", + "overview": "Hundreds of years from now, the last surviving humans discover the means of sending consciousness back through time, directly into people in the 21st century. These \"travelers\" assume the lives of seemingly random people, while secretly working as teams to perform missions in order to save humanity from a terrible future.", + "posterPath": "/aUVeyeyTrQrSFuUkqLCT8FtV7pp.jpg", + "backdropPath": "/yUDJ1r0UQdhb904povev5apjTVh.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-10-17", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.557, + "voteCount": 810, + "popularity": 8.7549 + }, + { + "id": 236338, + "title": "Gushing Over Magical Girls", + "originalTitle": "魔法少女にあこがれて", + "overview": "Hiragi Utena is a major fangirl of the magical girls protecting her city and leaps at the chance to join their ranks. But once she transforms, she learns she's a villain who enjoys being a magical-girl-tormenting sadist instead!", + "posterPath": "/p7vWZL5HhbscGf7OjnprT2977Lt.jpg", + "backdropPath": "/dvIguIZqqQKCt7YiKq7evfk5NW3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2024-01-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 84, + "popularity": 8.7486 + }, + { + "id": 245827, + "title": "Harlan Coben's Lazarus", + "originalTitle": "Harlan Coben's Lazarus", + "overview": "Forensic psychiatrist Dr Joel 'Laz' Lazarus is forced to confront long-buried demons after his father Dr L dies in suspicious circumstances. At first assured his dad's death is a suicide, Laz is soon sucked into a world of murderous conspiracy, and a race to find the killer, by strange visions of people he knows to be dead.", + "posterPath": "/lxUlUBGnYJNxqOwc3baBdLpa3Lx.jpg", + "backdropPath": "/uj4wyiZPmZNRJBjThtqNrZvHN9w.jpg", + "mediaType": "tv", + "genreIds": [ + 9648 + ], + "genres": [ + "Mystery" + ], + "releaseDate": "2025-10-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.449, + "voteCount": 39, + "popularity": 8.7414 + }, + { + "id": 230923, + "title": "Lovely Runner", + "originalTitle": "선재 업고 튀어", + "overview": "Right after Ryu Sun-jae, a top star, ends his life, Im Sol, his top fan, somehow ends up at a time when they were in high school and tries to protect him. A fantasy romance unfolds where people who missed each other in time finally meet.", + "posterPath": "/xJQyrif5M4UMoVBrBlwUabtaRxB.jpg", + "backdropPath": "/6urwgErwqjndIas26NUy6CAdCDE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 35, + 9648 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Comedy", + "Mystery" + ], + "releaseDate": "2024-04-08", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.589, + "voteCount": 219, + "popularity": 8.7404 + }, + { + "id": 60833, + "title": "The Irregular at Magic High School", + "originalTitle": "魔法科高校の劣等生", + "overview": "In a world where magic is not a fairy tale but has existed for one hundred years siblings Tatsuya and Miyuki Shiba prepare to begin their studies at the elite Private Magic University Affiliated High School (Magic High School for short). Entering on different levels of the academic spectrum the two turn the once peaceful campus into a chaotic one.", + "posterPath": "/4mJpMjdghHo4LfvmP1q1mubkEvl.jpg", + "backdropPath": "/lpLZuBJuGDGSzLDVvIDKkdOpLuD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 297, + "popularity": 8.7392 + }, + { + "id": 648, + "title": "The Incredible Hulk", + "originalTitle": "The Incredible Hulk", + "overview": "During an experiment gone bad, radiation turns a scientist into a raging green behemoth whenever he becomes agitated. Unable to control his transformations, David Banner searches for a cure as he crosses the country, fugitive-style, with a dogged tabloid reporter on his trail.", + "posterPath": "/8q7uFuNuMWTWfcpnCpBuZa3KZXx.jpg", + "backdropPath": "/vl2lLJcbbnTcvWH6ZfHlXuLxIaP.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1977-11-04", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 480, + "popularity": 8.7392 + }, + { + "id": 11096, + "title": "The High Chaparral", + "originalTitle": "The High Chaparral", + "overview": "The High Chaparral is an American Western-themed television series starring Leif Erickson and Cameron Mitchell which aired on NBC from 1967 to 1971. The series, made by Xanadu Productions in association with NBC Productions, was created by David Dortort, who had previously created the hit Bonanza for the network. The theme song was also written and conducted by Bonanza scorer David Rose, who also scored the two-hour pilot.", + "posterPath": "/2aiki9WLZWbv6PIl5CESOYdmOGj.jpg", + "backdropPath": "/uK8TlYFhat6hFYSGTwJMO9Uu2WN.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1967-09-10", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 6.604, + "voteCount": 24, + "popularity": 8.7322 + }, + { + "id": 4266, + "title": "Party of Five", + "originalTitle": "Party of Five", + "overview": "Five brothers and sisters are determined to stay together following the tragic loss of their parents.", + "posterPath": "/5LZgFeMynMeeKX8Bn9s1RWe9n9S.jpg", + "backdropPath": "/tEm6hydl6wJ13gfrasriMug96SS.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1994-09-12", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.02, + "voteCount": 124, + "popularity": 8.7252 + }, + { + "id": 26324, + "title": "Flikken Maastricht", + "originalTitle": "Flikken Maastricht", + "overview": "Former Amsterdam police detective Floris Wolfs has been transferred to the police department of the south-Dutch country town Maastricht. His metropolitan experience nicely complements the local expertise of his new country colleagues, who know the folks. Slowly he fits in, while solving countless crimes together with his female partner Eva van Dongen.", + "posterPath": "/lUoL2MxJJJlV8O35bwfUANdrsb6.jpg", + "backdropPath": "/pdrVkjlARTb2bPzyWQqRsNLf5mr.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759 + ], + "genres": [ + "Crime", + "Action & Adventure" + ], + "releaseDate": "2007-09-03", + "releaseYear": "2007", + "originalLanguage": "nl", + "voteAverage": 7, + "voteCount": 26, + "popularity": 8.7144 + }, + { + "id": 65417, + "title": "PJ Masks", + "originalTitle": "PJ Masks", + "overview": "Connor, Greg and Amaya are normal kids by day, but at night they activate their bracelets, which link into their pajamas and give them fantastic super powers, turning them into their alternate identities: the PJ Masks! The team consists of Catboy (Connor), Gekko (Greg) and Owlette (Amaya). Together, they go on adventures, solve mysteries, and learn valuable lessons. Watch the first six seasons of PJ Masks now on Disney+!", + "posterPath": "/sl4flhzM3uJAxfgQ9ibfEGbmn5I.jpg", + "backdropPath": "/jPNHTGz56o2gUkGkfVdsvf7rX4e.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Family", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2015-09-18", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 67, + "popularity": 8.714 + }, + { + "id": 201992, + "title": "The Rookie: Feds", + "originalTitle": "The Rookie: Feds", + "overview": "Special Agent Simone Clark, the oldest rookie in the FBI, is a force of nature, the living embodiment of a dream deferred – and she works together with her new colleagues at the Los Angeles office of the Bureau to bring down the country’s toughest criminals.", + "posterPath": "/sxNKjLrqUDlRzyu4LwLGDUvtUxw.jpg", + "backdropPath": "/x29W9ugA72azQbnjeMBaqQnOtCQ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2022-09-27", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.26, + "voteCount": 102, + "popularity": 8.7096 + }, + { + "id": 1027, + "title": "The Carol Burnett Show", + "originalTitle": "The Carol Burnett Show", + "overview": "The Carol Burnett Show is an American variety/sketch comedy television show starring Carol Burnett, Harvey Korman, Vicki Lawrence, Lyle Waggoner, and Tim Conway. It originally ran on CBS from September 11, 1967, to March 29, 1978, for 278 episodes and originated from CBS Television City's Studio 33. The series won 25 prime time Emmy Awards, was ranked No. 16 on TV Guide's 50 Greatest TV Shows of All Time in 2002 and in 2007 was listed as one of Time magazine's \"100 Best TV Shows of All Time.\"", + "posterPath": "/dGd9pG4PGzpJbdbPEnFxKrJ24z8.jpg", + "backdropPath": "/wdPDHfWwkKlrT3REsctj0qE3xoo.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1967-09-11", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 63, + "popularity": 8.7045 + }, + { + "id": 14955, + "title": "POV", + "originalTitle": "POV", + "overview": "Since its 1988 premiere, this critically acclaimed documentary series has presented hundreds of films that put a human face on contemporary social issues by relating a compelling story in an intimate fashion. \"POV\" has won virtually every major film and broadcasting award available, including 38 Emmys, 22 Peabody Awards and three Oscars.", + "posterPath": "/rJStW9J8LuB6alAA8t3YdRYkhkT.jpg", + "backdropPath": "/oYSwV11VTvtBJoaydKxqH9rGAwL.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1988-07-05", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 11, + "popularity": 8.7019 + }, + { + "id": 252617, + "title": "The Heart Killers", + "originalTitle": "เขาจ้างให้ผมจีบนักฆ่า", + "overview": "A mission to expose two assassin brothers spirals when Kant’s feelings for one of them threaten to blow his cover—and maybe more.", + "posterPath": "/8lFnwJJ9xOLPXJFYuIWlARmF9Gy.jpg", + "backdropPath": "/twagH4GFHRGuqRTpctX1Vkqaivf.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2024-11-20", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 8.944, + "voteCount": 27, + "popularity": 8.7001 + }, + { + "id": 2394, + "title": "This Old House", + "originalTitle": "This Old House", + "overview": "TV's original home-improvement show, following one whole-house renovation over several episodes.", + "posterPath": "/eKLaK1pivbX2z9aLev8IG2I9WG.jpg", + "backdropPath": "/aiGmhwOnyk39X8nmniz1MwPD1Ep.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10764 + ], + "genres": [ + "Documentary", + "Reality" + ], + "releaseDate": "1979-01-01", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 35, + "popularity": 8.6951 + }, + { + "id": 226197, + "title": "The QUEEN of News", + "originalTitle": "新聞女王", + "overview": "The highly-watched 6:30 PM news report is the battleground for news anchors. In the news department, seasoned anchors Man Wai-sum and Leung Ging-yan split into two factions, each vying for the top spot. Wen causes quite a stir and eventually climbs the corporate ladder. The vacancy for the prime-time female anchor sparks a series of storms!", + "posterPath": "/9nrVW6P44OPw2pxkAgEI5fMfjl.jpg", + "backdropPath": "/VHiGsZVvdwoTY4QUozztsVsLVJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-11-17", + "releaseYear": "2023", + "originalLanguage": "cn", + "voteAverage": 8.1, + "voteCount": 15, + "popularity": 8.6914 + }, + { + "id": 94502, + "title": "Chepe Fortuna", + "originalTitle": "Chepe Fortuna", + "overview": "Chepe Fortuna and Niña Cabrales are from different social classes. Chepe is a poor fisherman and Niña is from a wealthy family. He wants to become mayor to stop her wealthy family from building a port to industrialize the town. Niña is an ecologist and dissident from her family. She wants to help the community. Their love is brought together by dreams and the past, though they do not know it.", + "posterPath": "/sadcGjMeSHT8WFH4TlYWrgT2R29.jpg", + "backdropPath": "/8KwiQK3PdhWLD0jiOprCgDimLrV.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 35, + 18 + ], + "genres": [ + "Soap", + "Comedy", + "Drama" + ], + "releaseDate": "2010-07-26", + "releaseYear": "2010", + "originalLanguage": "es", + "voteAverage": 5.923, + "voteCount": 13, + "popularity": 8.6896 + }, + { + "id": 46286, + "title": "Ink Master", + "originalTitle": "Ink Master", + "overview": "A group of the country's most creative and skilled tattoo artists compete for a hundred thousand dollars and the title of Ink Master. The stakes couldn't be higher with \"living canvasses\" donating their skin to be permanently marked in this adrenalized competition elimination.", + "posterPath": "/y2qHivDbnmndHGw3iNhw1LPZIpM.jpg", + "backdropPath": "/kJspjzlXblGQTcjka5vhclbz6Rb.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2012-01-17", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 87, + "popularity": 8.6847 + }, + { + "id": 39775, + "title": "Fantasy Island", + "originalTitle": "Fantasy Island", + "overview": "A magical island hosted by Mr Roarke and Tattoo where weekly guests learn valuable life lessons in their pursuit of fulfilling their dreams. Not all dreams are fulfilled as expected.", + "posterPath": "/ppxhytiPrgojE4eb6Tw0EonDzeP.jpg", + "backdropPath": "/yTJFf7N9ohXjssZQyZ1cSMNopix.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "1978-01-28", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 114, + "popularity": 8.6825 + }, + { + "id": 888, + "title": "Spider-Man", + "originalTitle": "Spider-Man", + "overview": "Bitten by a neogenetic spider, Peter Parker develops spider-like superpowers. He uses these to fight crime while trying to balance it with the struggles of his personal life.", + "posterPath": "/peN9aqevr0edVoctVKGZDWFdTRl.jpg", + "backdropPath": "/tszlsbfyTOPSZe2z6K4mwHtcnmI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1994-11-19", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 1082, + "popularity": 8.678 + }, + { + "id": 10938, + "title": "Bob the Builder", + "originalTitle": "Bob the Builder", + "overview": "Bob the Builder and his machine team are ready to tackle any project. Bob and the Can-Do Crew demonstrate the power of positive thinking, problem-solving, teamwork, and follow-through. The team always shows that “The Fun Is In Getting It Done!”", + "posterPath": "/jfIAxRMSLuMjczB0ezl8L9Ukzfi.jpg", + "backdropPath": "/5tf3hx7RbUovAYGMZ6slmoROWI1.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Family" + ], + "releaseDate": "1999-04-12", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 124, + "popularity": 8.6733 + }, + { + "id": 4605, + "title": "The Suite Life of Zack & Cody", + "originalTitle": "The Suite Life of Zack & Cody", + "overview": "Meet Zack and Cody, 11 year-old identical twins and the newest residents of Boston's swanky Tipton Hotel. Living in a suite with their mom Carey, the boys treat the Tipton like their own personal playground.", + "posterPath": "/7u6LVPMOHqsdYsiu0UqDB0FROLk.jpg", + "backdropPath": "/9NrFyl7VHQmjuohKz9h3dcZ8gyv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762 + ], + "genres": [ + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2005-03-18", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 681, + "popularity": 8.6692 + }, + { + "id": 82684, + "title": "That Time I Got Reincarnated as a Slime", + "originalTitle": "転生したらスライムだった件", + "overview": "Mikami's boring life ends abruptly when he's reincarnated in another world as a slime monster. He then forms a party of monsters, changing everything.", + "posterPath": "/pzujcdPAoH361NObVrtbA7zACE7.jpg", + "backdropPath": "/eJOy7YWAHgOS3V477sdTsq4v9jp.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2018-10-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.419, + "voteCount": 821, + "popularity": 8.6678 + }, + { + "id": 27845, + "title": "The Prince of Tennis", + "originalTitle": "テニスの王子様", + "overview": "Tennis prodigiy Ryoma Echizen enters the tennis powerhouse Seishun Academy. Once he fights his way onto the team, the game will never be the same.", + "posterPath": "/6Q1yvR5q5c5EItFe2QKfN4Y4vGF.jpg", + "backdropPath": "/7apk7MDXON2zZ2ntXgaIusHrUNa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2001-10-10", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.336, + "voteCount": 137, + "popularity": 8.6671 + }, + { + "id": 62917, + "title": "Hidden Truths", + "originalTitle": "Verdades Secretas", + "overview": "A teenager who dreams with a career as a top model becomes part of a prostitution scheme and meets a powerful and obsessive businessman. As a last resort, he marries the girl's mother just to be near her. This series explores the limits of obsession, wealth and pleasure, using the fashion world as backdrop.", + "posterPath": "/rw1bnxgPhfzg9EvBlgbtjLkWBzy.jpg", + "backdropPath": "/lU28XFV7ITJLnWAqRJpvK10deA6.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2015-06-08", + "releaseYear": "2015", + "originalLanguage": "pt", + "voteAverage": 7.8, + "voteCount": 298, + "popularity": 8.6669 + }, + { + "id": 255055, + "title": "Doc", + "originalTitle": "Doc", + "overview": "Dr. Amy Larsen must navigate an unfamiliar world after a brain injury erases the last eight years of her life. She can rely only on her estranged 17-year-old daughter, whom she remembers as a 9-year-old, and a handful of devoted friends, as she struggles to continue practicing medicine, despite having lost nearly a decade of knowledge and experience.", + "posterPath": "/hYHrPWM6qGq2XSbaWUONckBgUir.jpg", + "backdropPath": "/iTt37Rl8AidvU5aQf5M4odroCuF.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-01-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.469, + "voteCount": 48, + "popularity": 8.6656 + }, + { + "id": 92461, + "title": "Bob Hearts Abishola", + "originalTitle": "Bob Hearts Abishola", + "overview": "A love story about a middle-aged compression sock businessman from Detroit who unexpectedly falls for his cardiac nurse, a Nigerian immigrant, while recovering from a heart attack and sets his sights on winning her over.", + "posterPath": "/7NQRz0RcN2ohT98fZv287YEddtW.jpg", + "backdropPath": "/60dGNoEA0FMU5DmofZVpIkrGGu0.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-09-23", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 66, + "popularity": 8.66 + }, + { + "id": 3114, + "title": "Silk Stalkings", + "originalTitle": "Silk Stalkings", + "overview": "Silk Stalkings is a crime drama television series. The series portrays the daily lives of two detectives who solve sexually-based crimes of passion among the ultra-rich of Palm Beach, Florida.", + "posterPath": "/yrJeF2eA1I6JZiN4WOCl1l6PL9f.jpg", + "backdropPath": "/5pYgyjVT016dlW2EYgblqqONzAo.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1991-11-07", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 6.045, + "voteCount": 44, + "popularity": 8.6598 + }, + { + "id": 126824, + "title": "The Patrick Star Show", + "originalTitle": "The Patrick Star Show", + "overview": "Follow a younger Patrick Star living at home with his family, where he hosts his own variety show for the neighborhood from his television-turned-bedroom.", + "posterPath": "/44zbV1t35gxgcSN7sTlkUY85GC9.jpg", + "backdropPath": "/kP7pCxfml6erWC9aB72ALtNawJq.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 16, + 10767 + ], + "genres": [ + "Family", + "Comedy", + "Animation", + "Talk" + ], + "releaseDate": "2021-07-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 48, + "popularity": 8.6579 + }, + { + "id": 261663, + "title": "Blood River", + "originalTitle": "暗河传", + "overview": "Blood River is the realm's most feared assassin guild, jointly run by the Su, Mu, and Xie clans. They can strike royals in court and crush great sects in the wild. When the patriarch is poisoned on a mission, the three clans vie for the top seat. Su Muyu leads the Spider-Shadow unit and shields the dying leader on the road to a cure. He clashes with elder Su Zhe and old friend Su Changhe, and meets master healer Bai Hehuai. After brutal power struggles, Su Changhe becomes new patriarch and Su Muyu heads the Su clan. They launch the \"Other Shore Plan\" to drag Blood River out of the shadow and forge a new destiny, free from being anyone's blade.", + "posterPath": "/jvxV9A8IcgeCqnagkfCsHSg4y5J.jpg", + "backdropPath": "/ftVwJEKXCgCKGCb75e3MXwEBWBV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-10-20", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.6, + "voteCount": 14, + "popularity": 8.65 + }, + { + "id": 226285, + "title": "Elsbeth", + "originalTitle": "Elsbeth", + "overview": "After her successful career in Chicago, Elsbeth Tascioni, an astute but unconventional attorney, utilizes her singular point of view to make unique observations and corner brilliant criminals alongside the NYPD.", + "posterPath": "/7lnNSbT90qwtrn1h9TvEkVFMz2P.jpg", + "backdropPath": "/ezQSOeu9uj4bWulxHR7D5CSNv3r.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 35, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Comedy", + "Mystery" + ], + "releaseDate": "2024-02-29", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.886, + "voteCount": 92, + "popularity": 8.6472 + }, + { + "id": 58937, + "title": "Masters of Sex", + "originalTitle": "Masters of Sex", + "overview": "William Masters and Virginia Johnson are real-life pioneers of the science of human sexuality. Their research touched off the sexual revolution and took them from a midwestern teaching hospital to the cover of Time magazine and multiple appearances on Johnny Carson's couch. He is a brilliant scientist out of touch with his own feelings, and she is a single working mother ahead of her time. The series chronicles their unusual lives, romance, and unlikely pop culture trajectory.", + "posterPath": "/bC42ksckQpjfck2BZ5McaEDN4pk.jpg", + "backdropPath": "/5evkOLJ3HlYrwpy6Q5DlubiHzCJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-09-29", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.067, + "voteCount": 393, + "popularity": 8.6343 + }, + { + "id": 207840, + "title": "Harem Camp!", + "originalTitle": "ハーレムきゃんぷっ!", + "overview": "The story follows teacher and veteran solo camper Kensuke, who forms a camping group with four girls.", + "posterPath": "/dsaYRfBviInhrulwtHOyg1KB4ct.jpg", + "backdropPath": "/xIioKjaioyNLW38OMugFmn15DI6.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2022-10-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 24, + "popularity": 8.6338 + }, + { + "id": 62704, + "title": "Ballers", + "originalTitle": "Ballers", + "overview": "Looking at the lives of former and current football players, the show follows former superstar Spencer Strasmore as he gets his life on track in retirement while mentoring other current and former players through the daily grind of the business of football.", + "posterPath": "/WyIazPyjmcFMC42nWEpI0jr56x.jpg", + "backdropPath": "/gyPWbM1lq7Ufd9cENSl5Phsrb0a.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2015-06-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 789, + "popularity": 8.6323 + }, + { + "id": 72505, + "title": "In Another World with My Smartphone", + "originalTitle": "異世界はスマートフォンとともに。", + "overview": "Touya Mochizuki was accidentally killed, and as an apology, God allows him to be reborn in a fantasy world and will grant him any one wish he desires. And so, Touya chooses to keep his smartphone in the next world. In his second chance at life, he befriends many important figures and comes across the world's secret. He inherits the legacy of an ancient civilization and travels around nonchalantly while possessing powers that rival this world's kings.", + "posterPath": "/k3DboKiicC4ZbJe50sjG1fGdMGX.jpg", + "backdropPath": "/4TI2ZiYBfPi6c7oi4y49R19SbEj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-11", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 142, + "popularity": 8.6295 + }, + { + "id": 634, + "title": "Who's the Boss?", + "originalTitle": "Who's the Boss?", + "overview": "A former professional baseball player, along with his preteen daughter, moves into New York advertising executive Angela Bower's house to be both a housekeeper and a father figure to her young son. Tony 's laid-back personality contrasts with Angela's type-A behavior.", + "posterPath": "/uZjNwfCNi6lX3jmYAxHB1DUuqcB.jpg", + "backdropPath": "/qi925RRpANnzvZ00pybnHgXUA0a.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1984-09-20", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.368, + "voteCount": 288, + "popularity": 8.6283 + }, + { + "id": 1777, + "title": "Boy Meets World", + "originalTitle": "Boy Meets World", + "overview": "The coming of age events and everyday life-lessons of Cory Matthews, a Philadelphian who grows up from a young boy to a married man.", + "posterPath": "/ioIBfLdkp8HmE2HOJlkLKJGXXug.jpg", + "backdropPath": "/ovAAHQ09HFBOCoit0dVpM4R3VKn.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "1993-09-24", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8.26, + "voteCount": 535, + "popularity": 8.6276 + }, + { + "id": 4448, + "title": "America's Funniest Home Videos", + "originalTitle": "America's Funniest Home Videos", + "overview": "America's Funniest Home Videos is the longest-running primetime entertainment show in ABC history. Each week AFV shines the spotlight on hilarious videos. Fans tune in to witness failures and fiascos and to submit their own mishaps for their chance at stardom.", + "posterPath": "/3CER8AdYtynbFBLIGLXv3wscDzl.jpg", + "backdropPath": "/edH0CCAwswUNj8h6CyHJpX5JdIE.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767, + 10764 + ], + "genres": [ + "Comedy", + "Talk", + "Reality" + ], + "releaseDate": "1989-11-26", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 53, + "popularity": 8.6241 + }, + { + "id": 105276, + "title": "Unprincipled", + "originalTitle": "Беспринципные", + "overview": "Collection of satirical sketches, telling about the decent inhabitants of the Patriarchal Ponds and their obscene stories. The series includes touching, outrageous and full of love intimate stories that are not accepted to speak out loud.", + "posterPath": "/uCWVJOIEPSieYZnWy7w8LBG5SU1.jpg", + "backdropPath": "/xcfnOeqKGHyS2CK8r4k5Zq4CP2E.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2020-10-15", + "releaseYear": "2020", + "originalLanguage": "ru", + "voteAverage": 7.6, + "voteCount": 22, + "popularity": 8.6172 + }, + { + "id": 77236, + "title": "A Discovery of Witches", + "originalTitle": "A Discovery of Witches", + "overview": "Closet witch Diana Bishop and centuries-old vampire Matthew Clairmont are drawn into a deadly mystery and forbidden romance when a magical book shows up in an Oxford library.", + "posterPath": "/l7MUpFAE8UEWYnO2Uv7SFtdZ2OJ.jpg", + "backdropPath": "/mZOw5cBXPDfSv1T8IFWsWi8Wktp.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-09-14", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.83, + "voteCount": 806, + "popularity": 8.6167 + }, + { + "id": 249042, + "title": "Adolescence", + "originalTitle": "Adolescence", + "overview": "When a 13-year-old is accused of the murder of a classmate, his family, therapist and the detective in charge are all left asking: what really happened?", + "posterPath": "/20i4nShZZg1g1VFHSB8xpaYM4r7.jpg", + "backdropPath": "/pCT3WLNrBBQeY7DRMw2CD1Pii05.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-03-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.835, + "voteCount": 1264, + "popularity": 8.6125 + }, + { + "id": 45247, + "title": "Chihayafuru", + "originalTitle": "ちはやふる", + "overview": "Chihaya Ayase has spent most of her life supporting her sister’s model career. When she meets a boy named Arata Wataya, he thinks Chihaya has potential to become a great karuta player. As Chihaya dreams of becoming Japan's best karuta player, she is soon separated from her karuta playing friends. Now in high school, Chihaya still plays karuta in the hope that she will one day meet her friends again.", + "posterPath": "/x1yYnCaK8gLnLgQSnd9IGoapHbx.jpg", + "backdropPath": "/e1R4kNrWvSfb8AVViMp0okVJfuk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2011-10-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 58, + "popularity": 8.6113 + }, + { + "id": 2022, + "title": "The Batman", + "originalTitle": "The Batman", + "overview": "A young billionaire Bruce Wayne fights crime and evil as the mysterious vigilante, The Batman.", + "posterPath": "/3w7koeOR2x71XYMJDGpygxYtScI.jpg", + "backdropPath": "/ArED6kTw15Ka5GCvvfXFKanvqsR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2004-09-11", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.013, + "voteCount": 490, + "popularity": 8.6039 + }, + { + "id": 831, + "title": "Loose Women", + "originalTitle": "Loose Women", + "overview": "A panel of four women discuss topical issues, ranging from daily politics and current affairs to celebrity gossip.", + "posterPath": "/d9UVT0nFG16lXzu3kCspwbJ0Tjy.jpg", + "backdropPath": "/mV9mPv9T6CToSq7PzfYT7O1lsKd.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1999-09-06", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 3.2, + "voteCount": 17, + "popularity": 8.5856 + }, + { + "id": 83659, + "title": "Guillermo del Toro's Cabinet of Curiosities", + "originalTitle": "Guillermo del Toro's Cabinet of Curiosities", + "overview": "Bizarre nightmares unfold in eight tales of terror in this visually stunning, spine-tingling horror collection curated by Guillermo del Toro.", + "posterPath": "/a91e9hpWwfCqxJI4xM9Q2RhuxgI.jpg", + "backdropPath": "/gM1diqqPFu5oRpEVsx84SPBYvV3.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-25", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.487, + "voteCount": 930, + "popularity": 8.5791 + }, + { + "id": 2527, + "title": "Emmerdale", + "originalTitle": "Emmerdale", + "overview": "The lives of several families in the Yorkshire Dales revolve around a farm and the nearby village. With murders, affairs, lies, deceit, laughter and tears, it's all there in the village.", + "posterPath": "/szh6mSPgeAqs7Ijp7YHC90oGzkt.jpg", + "backdropPath": "/kkyrixKwSU6fHCUOD9QJj6XKYmi.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1972-10-16", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 4.2, + "voteCount": 99, + "popularity": 8.5778 + }, + { + "id": 74440, + "title": "Harley Quinn", + "originalTitle": "Harley Quinn", + "overview": "Harley Quinn has finally broken things off once and for all with the Joker. Now, she's trying to make it on her own as the criminal Queenpin of Gotham City, with help from Poison Ivy and a ragtag crew of DC castoffs.", + "posterPath": "/9Dm1SEh8Wxt8LNNg02exHQ595zg.jpg", + "backdropPath": "/sNHoOagykUU0WpVBa162w1NP0mP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-11-29", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.308, + "voteCount": 1119, + "popularity": 8.577 + }, + { + "id": 46262, + "title": "Doc McStuffins", + "originalTitle": "Doc McStuffins", + "overview": "A young African-American girl aspires to be a doctor like her mom.", + "posterPath": "/eeGWJaFkxX0vvOFFpNFXrh9QVxl.jpg", + "backdropPath": "/5hXkZ1CQlH24OB5Nr32boR4RgmT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Family" + ], + "releaseDate": "2012-03-23", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.848, + "voteCount": 69, + "popularity": 8.5755 + }, + { + "id": 13837, + "title": "Wanted: Dead or Alive", + "originalTitle": "Wanted: Dead or Alive", + "overview": "Wanted: Dead or Alive is an American Western television series starring Steve McQueen as the bounty hunter Josh Randall. It aired on CBS for three seasons from 1958–61. The black-and-white program was a spin-off of a March 1958 episode of Trackdown, a 1957–59 western series starring Robert Culp. Both series were produced by Four Star Television in association with CBS Television.\n\nThe series launched McQueen into becoming the first television star to cross over into comparable status on the big screen.", + "posterPath": "/mYgwFT8JXW6J5YTs8DuzDDOKXlS.jpg", + "backdropPath": "/9xyvcN6sA4XvZswc0droVTKSGay.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 10759, + 18 + ], + "genres": [ + "Western", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1958-09-06", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 34, + "popularity": 8.5748 + }, + { + "id": 237853, + "title": "WondLa", + "originalTitle": "WondLa", + "overview": "Forced to flee her underground sanctuary for Earth’s surface, Eva discovers a world unlike anything she expected. As she journeys across perilous terrain and unknown civilizations, Eva searches to answer the ultimate question: Is she the last human?", + "posterPath": "/nacwwHnoCz1MX9tIrFTnnNqLmax.jpg", + "backdropPath": "/aPX7aR83rT0HRLoaINo5LWR7FAJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Family" + ], + "releaseDate": "2024-06-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.559, + "voteCount": 85, + "popularity": 8.5744 + }, + { + "id": 4574, + "title": "X-Men", + "originalTitle": "X-Men", + "overview": "The X-Men are an elite team of mutants, genetically gifted human beings with superpowers, sworn to fight for mutant rights against hostile Government agencies, whilst at the same time protecting mankind from mutant supremacist Magneto who seeks to destroy the human race in return for the atrocities committed against mutant kind.", + "posterPath": "/2OFwsFhAobczgJWnVdwd9oZAF2N.jpg", + "backdropPath": "/8GlKBQJTFZp9mpLXJrmNCtdTyxx.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10765, + 16, + 10759 + ], + "genres": [ + "Kids", + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1992-10-31", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 8.164, + "voteCount": 1280, + "popularity": 8.5625 + }, + { + "id": 247756, + "title": "The Monster of Florence", + "originalTitle": "Il Mostro", + "overview": "As a serial killer targets couples and strikes terror in Italy, authorities explore a case from 1968 that may be key to finding The Monster of Florence.", + "posterPath": "/1RRBxq1hEC7rKIp4yac96F9ObL5.jpg", + "backdropPath": "/nYYJBixUNZAk4lmWdE5NBUfIMuw.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2025-10-22", + "releaseYear": "2025", + "originalLanguage": "it", + "voteAverage": 6.167, + "voteCount": 96, + "popularity": 8.5487 + }, + { + "id": 120998, + "title": "Poker Face", + "originalTitle": "Poker Face", + "overview": "Follow Charlie Cale, a woman with an extraordinary ability to tell when someone is lying, as she hits the road and, at every stop, encounters a new cast of characters and crimes she can't help but solve.", + "posterPath": "/8Xm5dyMQC9whMJKnGdFugUAW73C.jpg", + "backdropPath": "/ccOzCmrglAjRGtqv5ClTaBEsWt8.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648 + ], + "genres": [ + "Crime", + "Mystery" + ], + "releaseDate": "2023-01-26", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.47, + "voteCount": 443, + "popularity": 8.5469 + }, + { + "id": 228429, + "title": "Soul Land 2: The Peerless Tang Clan", + "originalTitle": "斗罗大陆Ⅱ绝世唐门", + "overview": "The Tang Sect in a turbulent world. There is nothing but martial spirit here. Ten thousand years after the founding of the Tang Sect, it is in relative decline. An extremely talented man was born. Can the new Shrek Seven Monsters revive the Tang Sect and bring it back to glory? A soul beast of over one million years old; Electrolux who can pick stars; The new soul utensil system that led to the decline of the Tang Sect... A lot of secrets are to be revealed. Can the secret weapons of the Tang Sect be sharp again? Can the Tang Sect regain its former glory?", + "posterPath": "/pzemNbETZKXRzjvBwc1hydqbEeK.jpg", + "backdropPath": "/joTHGlHCzKi0ll7o9NTt0lAujIn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-06-24", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.045, + "voteCount": 11, + "popularity": 8.5429 + }, + { + "id": 14777, + "title": "Agatha Christie's Partners in Crime", + "originalTitle": "Agatha Christie's Partners in Crime", + "overview": "Spirited dialogue, posh Roaring '20s style, and devious mysteries abound as Tommy and Tuppence Beresford mix marriage and mystery solving.", + "posterPath": "/e5KQbdOsCsEHDh2NOCGIY7HCyM3.jpg", + "backdropPath": "/aOzSaXqHm1CFVsSQplzfNPyBBaE.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 35, + 18 + ], + "genres": [ + "Mystery", + "Comedy", + "Drama" + ], + "releaseDate": "1983-10-09", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 16, + "popularity": 8.5427 + }, + { + "id": 46928, + "title": "Sofia the First", + "originalTitle": "Sofia the First", + "overview": "Set in the storybook world of Enchancia, this is the story of Princess Sofia, an adventurous little girl who is learning how to adjust to royal life after her mom marries the king and she becomes a princess overnight.", + "posterPath": "/eZHmUO1OQRpVkAOdj9VwYCCyQew.jpg", + "backdropPath": "/5tLsZoolMwqkCMUwEXYfh61Pajn.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Kids" + ], + "releaseDate": "2013-01-11", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 537, + "popularity": 8.5425 + }, + { + "id": 2407, + "title": "Dark Angel", + "originalTitle": "Dark Angel", + "overview": "Super soldier Max Guevera tries to live a normal life in post-apocalyptic Seattle while eluding capture by government agents from the covert biotech facility she escaped from as a child and searching for her genetically-enhanced brothers and sisters who have dispersed after escape.", + "posterPath": "/j67SlN7bsDokENZLjrrbP5AKZFg.jpg", + "backdropPath": "/m7PpoL6vP4oZnK52O7uFolJPyal.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2000-10-03", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.53, + "voteCount": 478, + "popularity": 8.5377 + }, + { + "id": 9890, + "title": "The Dick Cavett Show", + "originalTitle": "The Dick Cavett Show", + "overview": "The Dick Cavett Show has been the title of several talk shows hosted by Dick Cavett on various television networks.", + "posterPath": "/uDkndfnwbEGeSY4YmZbTRg4U5RQ.jpg", + "backdropPath": "/fvNn1mQS4ecSph1QVSpKCQNyh47.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1968-06-06", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 22, + "popularity": 8.536 + }, + { + "id": 4327, + "title": "Mr. Bean", + "originalTitle": "Mr. Bean", + "overview": "Mr Bean turns simple everyday tasks into chaotic situations and will leave you in stitches as he creates havoc wherever he goes.", + "posterPath": "/pUNQV35kDaKuejnXGNiUeEBurNE.jpg", + "backdropPath": "/3ILUdTEetxZZ8RkPxf5e0H9pCcP.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1990-01-01", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.963, + "voteCount": 1475, + "popularity": 8.5339 + }, + { + "id": 105197, + "title": "Variety Studio: Actors on Actors", + "originalTitle": "Variety Studio: Actors on Actors", + "overview": "PBS SoCal and Variety take you inside the biggest movies and TV shows of the past year through candid conversations with today's hottest actors. Hosted by Variety Film Awards Editor Clayton Davis and Variety Chief Correspondent Elizabeth Wagmeister, each episode brings together pairs of actors engaging in intimate one-on-one discussions about their craft and work.", + "posterPath": "/pgWZXYG0gTKkwRH9pTxoscFmq4H.jpg", + "backdropPath": "/riAGbIUpWdLJckBdI8McejwqLG5.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2014-12-21", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 10, + "popularity": 8.5331 + }, + { + "id": 2437, + "title": "Pocoyo", + "originalTitle": "Pocoyo", + "overview": "Pocoyo, the curious toddler dressed all in blue, joins Pato the yellow duck, Elly the pink elephant, Loula the dog, Sleepy Bird and many others in learning new things and having fun.", + "posterPath": "/1fmaC3t96Napg7TR9SsfOX8q11X.jpg", + "backdropPath": "/3yn2TeZ2oTIlXa2C61meThWn05y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Family" + ], + "releaseDate": "2005-05-10", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 456, + "popularity": 8.5287 + }, + { + "id": 1847, + "title": "Never Mind the Buzzcocks", + "originalTitle": "Never Mind the Buzzcocks", + "overview": "Never Mind the Buzzcocks is a comedy panel game show with a pop and rock music theme. The show is infamous for its dry, sarcastic humour and scathing, provocative attacks on the pop industry.", + "posterPath": "/ez0fX5nA68BJWL8jfP6dYr5WrcL.jpg", + "backdropPath": "/1U1vBOFQGoXaK4tnzuKofM6K93L.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1996-11-12", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.982, + "voteCount": 56, + "popularity": 8.5239 + }, + { + "id": 2855, + "title": "Relic Hunter", + "originalTitle": "Relic Hunter", + "overview": "Sydney Fox is a professor and globe-trotting \"relic hunter\" who looks for ancient artifacts to return to museums and/or the descendants of the original owner. She is aided by her linguistic assistant Nigel and occasionally by her somewhat air-headed secretary Claudia. She often ends up battling rival hunters seeking out artifacts for the money.", + "posterPath": "/t04oqIsBlRnxKOWhBL6SlEQowZ5.jpg", + "backdropPath": "/uAfsRtKnCdtHTF49yyvfyCyL5Uu.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1999-09-25", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 163, + "popularity": 8.5189 + }, + { + "id": 589, + "title": "Remington Steele", + "originalTitle": "Remington Steele", + "overview": "Laura Holt, a licensed private detective, opens a detective agency but finds that potential clients refuse to hire a woman, however qualified. To solve the problem, Laura invents a fictitious male superior whom she names Remington Steele. Through a series of events that unfold in the first episode, \"License to Steele,\" a former thief and con man, whose real name is never revealed, assumes the identity of Remington Steele. Behind the scenes, Laura remains firmly in charge.", + "posterPath": "/3UGDVrdwavyU0WIddhZf4eov6yv.jpg", + "backdropPath": "/cCCyFrM6AtUQXVNOL2D0BTKB64K.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 35 + ], + "genres": [ + "Drama", + "Family", + "Comedy" + ], + "releaseDate": "1982-10-01", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.12, + "voteCount": 138, + "popularity": 8.517 + }, + { + "id": 66786, + "title": "Timeless", + "originalTitle": "Timeless", + "overview": "A mysterious criminal steals a secret state-of-the-art time machine, intent on destroying America as we know it by changing the past. Our only hope is an unexpected team: a scientist, a soldier and a history professor, who must use the machine's prototype to travel back in time to critical events. While they must make every effort not to affect the past themselves, they must also stay one step ahead of this dangerous fugitive. But can this handpicked team uncover the mystery behind it all and end his destruction before it's too late?", + "posterPath": "/wFaS9kROwztTWNxIKBbOLwIgApV.jpg", + "backdropPath": "/9TvRRh8HUAMK9phVXLInPXHUg6K.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-10-03", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.252, + "voteCount": 759, + "popularity": 8.5165 + }, + { + "id": 216445, + "title": "Fireworks of My Heart", + "originalTitle": "我的人间烟火", + "overview": "Fire chief Song Yan and emergency doctor Xu Qin were separated by family opposition when they were younger. Now ten years later, they meet again due to their professions. After experiencing life and death together, they manage to find their way back, working together and encouraging each other. They acknowledge each other's individual growth after years apart, but will they be able to overcome the obstacles in their path this time to stay together?", + "posterPath": "/ecF1kGP2tlCpoWXVsaeYP3W6dZb.jpg", + "backdropPath": "/oQBv5KUDuceheaYL8nMmF7Dg3K8.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-07-05", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 7.9, + "voteCount": 53, + "popularity": 8.5105 + }, + { + "id": 609, + "title": "Green Acres", + "originalTitle": "Green Acres", + "overview": "Green Acres is an American sitcom starring Eddie Albert and Eva Gabor as a couple who move from New York City to a rural country farm. Produced by Filmways as a sister show to Petticoat Junction, the series was first broadcast on CBS, from September 15, 1965 to April 27, 1971.\n\nReceiving solid ratings during its six-year run, Green Acres was cancelled in 1971 as part of the \"rural purge\" by CBS. The sitcom has been in syndication and is available in DVD and VHS releases. In 1997, the two-part episode \"A Star Named Arnold is Born\" was ranked #59 on TV Guide's 100 Greatest Episodes of All Time.", + "posterPath": "/1tCh5D0dyPw8tiknprgbljAAEPw.jpg", + "backdropPath": "/xyh5AtlJ9jGduhKD7Km5Nf2gbCb.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1965-09-15", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.346, + "voteCount": 68, + "popularity": 8.5045 + }, + { + "id": 66310, + "title": "StartUp", + "originalTitle": "StartUp", + "overview": "A desperate banker needs to conceal stolen money. A Haitian-American gang lord wants to go legit. A Cuban-American hacker has an idea that will revolutionize the very future of money itself. Forced to work together, they unwittingly create their version of the American dream - organized crime 2.0.", + "posterPath": "/mXiB1e0x3iaRaaPPVhC1c7rgwPr.jpg", + "backdropPath": "/jiU8ZlDa6CgNVhcODxvHGHTh4wB.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-09-06", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 239, + "popularity": 8.4947 + }, + { + "id": 68507, + "title": "His Dark Materials", + "originalTitle": "His Dark Materials", + "overview": "Lyra is an orphan who lives in a parallel universe in which science, theology and magic are entwined. Her search for a kidnapped friend uncovers a sinister plot involving stolen children and turns into a quest to understand a mysterious phenomenon called Dust. She is later joined on her journey by Will, a boy who possesses a knife that can cut windows between worlds. As she learns the truth about her parents and her prophesied destiny, the two young people are caught up in a war against celestial powers that ranges across many worlds.", + "posterPath": "/g6tIKGc3f1H5QMz1dcgCwADKpZ7.jpg", + "backdropPath": "/t8KjRqfOqNx14cHLwARjR08bjeb.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-11-03", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 1809, + "popularity": 8.4937 + }, + { + "id": 294867, + "title": "Dusk Beyond the End of the World", + "originalTitle": "永久のユウグレ", + "overview": "When tensions around AI spark civil unrest, Akira is caught in the crossfire when he protects his girlfriend from an assassin. Hundreds of years later, he awakens from cryogenic sleep to an unfamiliar world and bonds with the android Yuugure.", + "posterPath": "/xfCA7LKaIE6JbswEVUITSrl6FiH.jpg", + "backdropPath": "/nV2vZlXsbU8cUdLAmTsPVGmySb9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.083, + "voteCount": 12, + "popularity": 8.4898 + }, + { + "id": 86248, + "title": "Upload", + "originalTitle": "Upload", + "overview": "In 2033, people who are near death can be “uploaded” into virtual reality hotels run by 6 tech firms. Cash-strapped Nora lives in Brooklyn and works customer service for the luxurious “Lakeview” digital afterlife. When L.A. party-boy/coder Nathan’s self-driving car crashes, his high-maintenance girlfriend uploads him permanently into Nora’s VR world.", + "posterPath": "/6TPGDrU9MyWbn2TpggJphVAVXiq.jpg", + "backdropPath": "/moH3PdysmUl8vrsYVM4l2ZZiRAd.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 18 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-04-30", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.809, + "voteCount": 1344, + "popularity": 8.4875 + }, + { + "id": 11466, + "title": "Kaamelott", + "originalTitle": "Kaamelott", + "overview": "Kaamelott is a French comedy medieval fantasy television series created, directed, written, scored, and edited by Alexandre Astier, who also starred as the main character. The series, which originally ran for six seasons (referred to as 'books'), ran from January 3, 2005, to October 31, 2009, on M6.\n\nIn this offbeat account of King Arthur's quest for the Grail, virtually every journey, battle or adventure is stopped dead in its tracks by the knights of the round table's most worldly traits: cowardice, greed, idiocy or misplaced chivalry. As a consequence, instead of epic adventures we are treated with the characters' pragmatic and anachronistic take on each and every event in the Grail legend, true to the purest sitcom tradition.", + "posterPath": "/d6P4O0LzE4WFp4GnSkzauUTmC2P.jpg", + "backdropPath": "/1Tcv90k3MzWKsq1zJbxVlsT7YXr.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10765 + ], + "genres": [ + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-01-03", + "releaseYear": "2005", + "originalLanguage": "fr", + "voteAverage": 8.5, + "voteCount": 177, + "popularity": 8.4777 + }, + { + "id": 2005, + "title": "The New Adventures of Winnie the Pooh", + "originalTitle": "The New Adventures of Winnie the Pooh", + "overview": "An American animated children's television series inspired by A. A. Milne's Winnie-the-Pooh stories.", + "posterPath": "/iJFbF43bN1HX5EZl4OFAVmJDl1u.jpg", + "backdropPath": "/pFRX1VUIm0j7a9VI1lQke9tOMZY.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1988-09-10", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.71, + "voteCount": 257, + "popularity": 8.4582 + }, + { + "id": 2518, + "title": "The Tonight Show with Jay Leno", + "originalTitle": "The Tonight Show with Jay Leno", + "overview": "Jay Leno hosts some of the biggest celebrities in the world.", + "posterPath": "/xAFMZ3wFIEXTISryRZD94AAvWng.jpg", + "backdropPath": "/lWkfSWJstUFk7oqyo7MrMoXehoi.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "1992-05-25", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 97, + "popularity": 8.4564 + }, + { + "id": 5200, + "title": "Fireman Sam", + "originalTitle": "Sam Tân", + "overview": "Follow the adventures of fireman Sam and his colleagues as they protect the citizens of the Welsh town of Pontypandy. Whenever the alarm sounds, brave Sam and his co-workers can be counted on to jump into a fire engine, hop onto a helicopter, or even launch an inflatable lifeboat to battle blazes, mount rescue missions, or provide medical attention to those in need.", + "posterPath": "/sXsqaIOjemMuHxGu3XukIyVM7jN.jpg", + "backdropPath": "/dEPV4QKCdo8pqLN4g4h8pn6Jga7.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1987-11-17", + "releaseYear": "1987", + "originalLanguage": "cy", + "voteAverage": 6.081, + "voteCount": 37, + "popularity": 8.4523 + }, + { + "id": 95004, + "title": "Tyler Perry's The Oval", + "originalTitle": "Tyler Perry's The Oval", + "overview": "A seemingly perfect interracial first family becomes the White House's newest residents. But behind closed doors they unleash a torrent of lies, cheating and corruption.", + "posterPath": "/b5PTXErp18fzi8e2MQv2HlEiE23.jpg", + "backdropPath": "/nHhczDKcSsnNFWDHVTMhXcnh9zF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2019-10-23", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 92, + "popularity": 8.4496 + }, + { + "id": 171, + "title": "Martin", + "originalTitle": "Martin", + "overview": "Sassy sitcom centering on radio and television personality Martin Payne. Series focuses on his romantic relationship with girlfriend Gina, her best friend Pam and escapades with best friends Tommy and Cole.", + "posterPath": "/inQQEpHiaSy8BEd9XEFF2W39vO0.jpg", + "backdropPath": "/weME33HlqhoexXlX9wJ0C9VipCU.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1992-08-27", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.668, + "voteCount": 125, + "popularity": 8.4495 + }, + { + "id": 39276, + "title": "Unforgettable", + "originalTitle": "Unforgettable", + "overview": "Former Syracuse, New York, police detective Carrie Wells has hyperthymesia, a rare medical condition that gives her the ability to visually remember everything. She reluctantly joins the New York City Police Department's Queens homicide unit after her former boyfriend and partner asks for help with solving a case. The move allows her to try to find out the one thing she has been unable to remember, which is what happened the day her sister was murdered.", + "posterPath": "/6NsNh4qDhYiGp7SiHyk0Ec3Dns6.jpg", + "backdropPath": "/xadC4VMl6UPRdBINAUgTBmYL7BF.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2011-09-20", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.219, + "voteCount": 326, + "popularity": 8.4489 + }, + { + "id": 105248, + "title": "Cyberpunk: Edgerunners", + "originalTitle": "サイバーパンク: エッジランナーズ", + "overview": "In a dystopia riddled with corruption and cybernetic implants, a talented but reckless street kid strives to become a mercenary outlaw — an edgerunner.", + "posterPath": "/7jSWOc6jWSw5hZ78HB8Hw3pJxuk.jpg", + "backdropPath": "/aQJW88GolybGrVqzIC2hI6coUr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-09-13", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1630, + "popularity": 8.444 + }, + { + "id": 3782, + "title": "Naked City", + "originalTitle": "Naked City", + "overview": "Naked City is a police drama series which aired from 1958 to 1963 on the ABC television network. It was inspired by the 1948 motion picture of the same name, and mimics its dramatic “semi-documentary” format.\n\nIn 1997, the episode “Sweet Prince of Delancey Street” was ranked #93 on TV Guide’s “100 Greatest Episodes of All Time”.", + "posterPath": "/56pxzIXS9dEwtUHsQc4ggDMkSX2.jpg", + "backdropPath": "/AmLAQT63Hhz32zbtiECZJJipO7j.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "1958-09-30", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 8.4321 + }, + { + "id": 207250, + "title": "The Dangers in My Heart", + "originalTitle": "僕の心のヤバイやつ", + "overview": "Kyotaro Ichikawa, a boy barely clinging to the bottom rung of his school's social ladder, secretly believes he’s the tortured lead in some psychological thriller. He spends his days dreaming up ways to disrupt his classmates' peaceful lives and pining after Anna Yamada, the class idol. But Kyotaro's not nearly the troubled teen he pretends to be…and it turns out Anna's a bit odd herself!", + "posterPath": "/mKhMmREBOKXtp3tlv9rnLRxZec5.jpg", + "backdropPath": "/31VJnwcy3VOhoqETJEFIO58ZVfF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 207, + "popularity": 8.4316 + }, + { + "id": 990, + "title": "Big Brother", + "originalTitle": "Big Brother", + "overview": "Big Brother is an Australian reality show based on the international Big Brother format created by John de Mol. Following the premise of other versions of the format, the show features a group of contestants, known as \"housemates\" who live together in a specially constructed house that is isolated from the outside world. The housemates are continuously monitored during their stay in the house by live television cameras as well as personal audio microphones. Throughout the course of the competition, housemates are evicted from the house - eliminated from the competition. The last remaining housemate wins the competition and is awarded a cash prize.", + "posterPath": "/obl5RDSapabogimvwVVAKw5dZhA.jpg", + "backdropPath": "/B26caJsd8TCZTE3KWv0Yg17VPl.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2001-04-24", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 3.8, + "voteCount": 19, + "popularity": 8.4303 + }, + { + "id": 80587, + "title": "Big City Greens", + "originalTitle": "Big City Greens", + "overview": "The offbeat adventures of 10-year-old Cricket Green, a mischievous and optimistic country boy who moves to the big city with his wildly out of place family – older sister Tilly, father Bill and Gramma Alice.", + "posterPath": "/buRk2Vrz8UhF5nZUOADSRZLEU1f.jpg", + "backdropPath": "/vVGmv5mle6lCrgnx8lNv5Q1vZPw.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35 + ], + "genres": [ + "Family", + "Animation", + "Comedy" + ], + "releaseDate": "2018-06-18", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 67, + "popularity": 8.4244 + }, + { + "id": 93149, + "title": "Plunderer", + "originalTitle": "プランダラ", + "overview": "In a post-apocalyptic world dominated by the so-called \"Numbers,\" each human will have their identity branded with their own \"Count,\" which could define any number related to their life. May it be one's walked distance or amount of compliments given to them by others, this Count could lead them to the abyss when it has dropped to zero. In the year 305 of the Alcian calendar, Hina has inherited a mission from her Mother, whose Count has depreciated to zero, to search for the Legendary Red Baron. In her adventure, she meets a half-masked swordsman named Licht who tries to hide his identity, as he is known as a degenerate for having an incredibly low Count.", + "posterPath": "/A0XboGeodpGlj33QUtjPMMwrMkN.jpg", + "backdropPath": "/7BP3aJUCk8Iv20YFAqHcbXpTMwR.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.287, + "voteCount": 770, + "popularity": 8.4211 + }, + { + "id": 114478, + "title": "Star Wars: Visions", + "originalTitle": "Star Wars: Visions", + "overview": "This anthology of animated shorts from around the world celebrates the mythos of Star Wars through unique cultural lenses.", + "posterPath": "/lG9ltUP4FwvsQBcwOJYceDbP48E.jpg", + "backdropPath": "/m2QTmJhe36uKrkQjC1MsNV7Dcqp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-09-22", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 440, + "popularity": 8.4207 + }, + { + "id": 59186, + "title": "Impractical Jokers", + "originalTitle": "Impractical Jokers", + "overview": "This hidden-camera series follows four lifelong friends -- Brian \"Q\"' Quinn, James \"Murr\"' Murray, Joe Gatto and Sal Vulcano -- who take dares to an outrageous level. To find out who is best under pressure, the guys compete in awkward and outrageous hidden-camera hijinks with the loser performing what is deemed to be the most-mortifying challenge yet.", + "posterPath": "/tgwncYaLPoqdxzhHrlDuQdHqkS4.jpg", + "backdropPath": "/9I7aHbHlXwsQais5wBcccWnboTx.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-12-15", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.89, + "voteCount": 385, + "popularity": 8.4153 + }, + { + "id": 73021, + "title": "Disenchantment", + "originalTitle": "Disenchantment", + "overview": "Set in a ruined medieval city called Dreamland, Disenchantment follows the grubby adventures of a hard-drinking princess, her feisty elf companion and her personal demon.", + "posterPath": "/1WynayCqKRzrl4cFZR8NOfiDwd6.jpg", + "backdropPath": "/hHEqDPbO6z4Xje5tOf3Wm1mdMtI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-08-17", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.428, + "voteCount": 1236, + "popularity": 8.4107 + }, + { + "id": 62110, + "title": "Assassination Classroom", + "originalTitle": "暗殺教室", + "overview": "The students of Class 3-E have a mission: kill their teacher before graduation. He has already destroyed the moon, and has promised to destroy the Earth if he can not be killed within a year. But how can this class of misfits kill a tentacled monster, capable of reaching Mach 20 speed, who may be the best teacher any of them have ever had?", + "posterPath": "/qf0l0nQ2t06Es3cSXflqx6l6vsJ.jpg", + "backdropPath": "/zkc2FkVymJDNXisS1mgpr8Ip2J.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 1155, + "popularity": 8.4061 + }, + { + "id": 72819, + "title": "The Demi-Gods and Semi-Devils", + "originalTitle": "天龍八部", + "overview": "The story deals with several separate yet intertwining story lines, revolving around the protagonists Kiu Fung, Duen Yu and Hui Juk.", + "posterPath": "/rChf8CTlmg2jXjS3kXBxl3ujlaB.jpg", + "backdropPath": "/zBCEzIoCrLwnYPkmeM2T6vFgd8y.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1997-07-28", + "releaseYear": "1997", + "originalLanguage": "cn", + "voteAverage": 8.2, + "voteCount": 24, + "popularity": 8.4037 + }, + { + "id": 134373, + "title": "The Sex Lives of College Girls", + "originalTitle": "The Sex Lives of College Girls", + "overview": "Follow four college roommates as they arrive at New England's prestigious Essex College. A bundle of contradictions and hormones, these girls are equal parts lovable and infuriating as they live out their new, free lives on campus.", + "posterPath": "/kTtxblsTsbpLiCr29iAqMppMzG9.jpg", + "backdropPath": "/hxlHxV4g5PDSGk1LP46KUMFSYUG.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-11-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 358, + "popularity": 8.3994 + }, + { + "id": 16420, + "title": "Boys Over Flowers", + "originalTitle": "꽃보다 남자", + "overview": "Unassuming high school girl Jan-di stands up to — and eventually falls for — a spoiled rich kid who belongs to the school's most powerful clique.", + "posterPath": "/keQx2lpwTgvd7CjYXzAblFXWxB7.jpg", + "backdropPath": "/qgIZ66EnXwoZOLNuKHveW5rRHpt.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2009-01-05", + "releaseYear": "2009", + "originalLanguage": "ko", + "voteAverage": 8.26, + "voteCount": 1793, + "popularity": 8.3965 + }, + { + "id": 43082, + "title": "Key & Peele", + "originalTitle": "Key & Peele", + "overview": "Key & Peele is an American sketch comedy television show. It stars Keegan-Michael Key and Jordan Peele, both former cast members of MADtv. Each episode of the show consists of several pre-taped sketches starring the two actors, introduced by Key and Peele in front of a live studio audience.", + "posterPath": "/qxBLWVlKLj04LECpPNBn825ZPf7.jpg", + "backdropPath": "/mBgxHCH5jl6btlBQkxmf2DgnhpV.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-01-31", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.62, + "voteCount": 220, + "popularity": 8.3817 + }, + { + "id": 4033, + "title": "The Jerry Springer Show", + "originalTitle": "The Jerry Springer Show", + "overview": "The Jerry Springer Show is a syndicated television tabloid talk show hosted by Jerry Springer, a former politician, broadcast in the United States and other countries. It is videotaped at the Stamford Media Center in Stamford, Connecticut and is distributed by NBC Universal Television Distribution, although it is not currently broadcast on any NBC-owned stations.", + "posterPath": "/e4rwKIiHFtIewZLb0EqVTmIJGpW.jpg", + "backdropPath": "/vzWc76fcPacr2wzug6RAYaBBCiw.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1991-09-30", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 4.462, + "voteCount": 53, + "popularity": 8.3785 + }, + { + "id": 44337, + "title": "Have I Got a Bit More News for You", + "originalTitle": "Have I Got a Bit More News for You", + "overview": "Based on the week’s news and fronted by guest hosts, this extended version of the satirical news quiz features more of the stuff that wouldn't fit into the regular programme.", + "posterPath": "/aOZuKQ2uWRfZPzn61bnzQT5LhMR.jpg", + "backdropPath": "/5dv4q9x4vTVTT6IHIlfEDvFhJet.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 35 + ], + "genres": [ + "News", + "Comedy" + ], + "releaseDate": "", + "releaseYear": "", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 16, + "popularity": 8.374 + }, + { + "id": 63329, + "title": "Rosewood", + "originalTitle": "Rosewood", + "overview": "Dr. Beaumont Rosewood, Jr. is a brilliant private pathologist who uses wildly sophisticated technology and his drive to live life to the fullest to help a tough-as-nails detective and the Miami PD uncover clues no one else can see.", + "posterPath": "/zjrfQbFzmOaOrgEbJHG2eIwjKbv.jpg", + "backdropPath": "/ea8hQSjnPBHqduZVDX5CyU2FVVp.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-09-23", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 169, + "popularity": 8.3733 + }, + { + "id": 42272, + "title": "Baby Daddy", + "originalTitle": "Baby Daddy", + "overview": "Baby Daddy follows Ben, a young man in his early 20s living the life of a bachelor in New York City with his buddy, Tucker, and his brother, Danny. Their lives are turned upside down when they come home one day to find a baby girl left on the doorstep by an ex-girlfriend of Ben's. After much deliberation, Ben decides to raise the baby with the help of his friends and his protective and sometimes over-bearing mother, Bonnie, and his close female friend, Riley.", + "posterPath": "/lwpaNYFacUITOtfIZ1UDq7vnKeD.jpg", + "backdropPath": "/4iuWl9irvIsFMyFvIpZdSP8VN0z.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-06-20", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.068, + "voteCount": 200, + "popularity": 8.37 + }, + { + "id": 120911, + "title": "The Terminal List", + "originalTitle": "The Terminal List", + "overview": "Navy SEAL Commander James Reece turns to vengeance as he investigates the mysterious forces behind the murder of his entire platoon. Free from the military’s command structure, Reece applies the lessons he’s learned from nearly two decades of warfare to hunt down the people responsible.", + "posterPath": "/jbyaKYNexl1poKZnEmB6Qobn60s.jpg", + "backdropPath": "/eqLwFXX0R7U0crdgQcj0Rxjb9uc.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2022-06-30", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.971, + "voteCount": 1014, + "popularity": 8.3656 + }, + { + "id": 14069, + "title": "In Treatment", + "originalTitle": "In Treatment", + "overview": "Set within the highly charged confines of individual psychotherapy sessions and centering around Dr. Paul Weston, a psychotherapist who exhibits an insightful, reserved demeanor while treating his patients—but displays a crippling insecurity while counseled by his own therapist.", + "posterPath": "/gytzjthKWMji7olvAnBGohbGmWS.jpg", + "backdropPath": "/gpPg6JSixhf9JZbZtD32X3nNYCm.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-01-28", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 178, + "popularity": 8.3517 + }, + { + "id": 100565, + "title": "86 EIGHTY-SIX", + "originalTitle": "86―エイティシックス―", + "overview": "Called “Juggernaut,” these are the unmanned combat drones developed by the Republic of San Magnolia in answer to the attacks by the autonomous unmanned drones of the neighboring Empire of Giad, the “Legion”. But they’re only unmanned in name. In reality, they are piloted by the Eighty-sixers—those considered to be less than human and treated as mere tools. Determined to achieve his own mysterious ends, Shin, the captain of Spearhead Squadron, which is comprised of Eighty-sixers, continues to fight a hopeless war on a battlefield where only death awaits him.", + "posterPath": "/pp2gzafNPiug63UskS2niHK9Y04.jpg", + "backdropPath": "/lSlL2CAPSDJ9gf2MZX0x2u2inKX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10768, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "War & Politics", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 202, + "popularity": 8.3465 + }, + { + "id": 154524, + "title": "Urusei Yatsura", + "originalTitle": "うる星やつら", + "overview": "Tokyo, Tomobiki Town. Lum, the gorgeous princess of the invading alien race of Oni is smitten with high school student Ataru Moroboshi. A dedicated womanizer, Ataru is unfazed by Lum’s fierce electric shock attacks and continues his daily hunt for pretty girls. With a host of other unique characters, including girl-next-door Shinobu, elegant shrine maiden Sakura, Lum’s best friends Oyuki, Benten, and Ran, Buddhist Monk Cherry, Ten, the little brat, heir to a wealthy family Shutaro Mendo and the masculine beauty Ryunosuke…it's a classic slapstick love comedy where anything goes!", + "posterPath": "/yeF9seq2EWgzhEaEbX3gQPmH6Ay.jpg", + "backdropPath": "/9C8klg2GszX2tXKw5xEzJwrL4Do.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-14", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 40, + "popularity": 8.3432 + }, + { + "id": 39107, + "title": "Bubble Guppies", + "originalTitle": "Bubble Guppies", + "overview": "The adventures of seven fish-tailed kids- Molly, Gil, Oona, Deema, Nonny, Goby, and Zooli!", + "posterPath": "/zJ50jTHpOY3wKmuxiONOL77t9DW.jpg", + "backdropPath": "/6apIHPRPfalOcNlvefdPfp41pJM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2011-01-24", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 46, + "popularity": 8.3409 + }, + { + "id": 2391, + "title": "Tales from the Crypt", + "originalTitle": "Tales from the Crypt", + "overview": "Cadaverous scream legend the Crypt Keeper is your macabre host for these forays of fright and fun based on the classic E.C. Comics tales from back in the day. So shamble up to the bar and pick your poison. Will it be an insane Santa on a personal slay ride? Honeymooners out to fulfill the \"til death do we part\" vow ASAP?", + "posterPath": "/265Gpw7wSwwMkUQlksot8B2chRg.jpg", + "backdropPath": "/nwtdRZHTlDqYwuJDc7oVQueHY2l.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648, + 80, + 10765 + ], + "genres": [ + "Comedy", + "Mystery", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1989-06-10", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 937, + "popularity": 8.3401 + }, + { + "id": 196944, + "title": "My Happy Marriage", + "originalTitle": "わたしの幸せな結婚", + "overview": "Miyo's abusive family deems her worthless – but together with her powerful husband-to-be, her true self and hidden powers slowly begin to shine.", + "posterPath": "/5RZIBqSYHhpQF6s8Dgw2aXlA4ZS.jpg", + "backdropPath": "/7uyRCBMQIWwJSWIR2aCrvPjbPzi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 198, + "popularity": 8.3298 + }, + { + "id": 107124, + "title": "Animaniacs", + "originalTitle": "Animaniacs", + "overview": "Yakko, Wakko and Dot return for all-new big laughs and the occasional epic takedown of authority figures in serious need of an ego check. Joining the Warners are Starbox & Cindy on their latest play date while Pinky and the Brain's ideas for world domination lead them to all new adventures.", + "posterPath": "/wmPZzLov9OhiknK4jW4qE6mgvHf.jpg", + "backdropPath": "/kgEFD11dQdi8tCUgdNX1Ul02LlW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-11-20", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.431, + "voteCount": 583, + "popularity": 8.3283 + }, + { + "id": 244571, + "title": "The Believers", + "originalTitle": "สาธุ", + "overview": "When their startup goes deep into debt, three entrepreneurs stage a risky scam using a Buddhist temple to pay back a massive loan before time runs out.", + "posterPath": "/o1vLAHKRBk5KVJYCvezpEJHT2Nu.jpg", + "backdropPath": "/4tG2OvjDu6uU4AHSrd6y6VglluY.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2024-03-27", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 7.2, + "voteCount": 19, + "popularity": 8.3265 + }, + { + "id": 252774, + "title": "The White Olive Tree", + "originalTitle": "白色橄榄树", + "overview": "During an interview mission in the turbulent East Country, Song Ran, a female reporter from Liangcheng Satellite TV, came across a sudden danger. Thankfully, Li Zan, a Chinese explosive engineer who volunteered in the East Country, was able to save her. After multiple interactions, Li Zan discovered that despite appearing weak on the outside, Song Ran was brave, strong, and full of justice and kindness. The same ideals and compatible souls ignited the love between them.\n\nA sudden bombing attack ended their budding relationship, and they fell into a trough of life after returning to China and even losing contact with each other. By chance, they came across each other again, and gradually, their lives got back on track. Together, they planted the seeds of the white olive tree.", + "posterPath": "/sLJ7z9IT0nLXJbuszYbZ4uy8AOO.jpg", + "backdropPath": "/ipSYLg4XSWlNq46SU90LtQ8DuGN.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-02-01", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.6, + "voteCount": 19, + "popularity": 8.3193 + }, + { + "id": 38251, + "title": "Toriko", + "originalTitle": "トリコ", + "overview": "Toriko is a Japanese manga series written and illustrated by Mitsutoshi Shimabukuro. It has been serialized in Weekly Shōnen Jump since May 19, 2008, and has been collected into 25 tankōbon volumes by Shueisha as of July 4, 2013. It follows the adventure of Toriko, a Gourmet Hunter, as he searches for rare, diverse foods to complete a full-course meal. On his journey, he is accompanied by a timid chef who wants to improve his skills.", + "posterPath": "/8NyEmf5xB1HSYM0MzADv8mjUnc4.jpg", + "backdropPath": "/j6u5ekbEjavBLUYBPfoXZh4G4Jg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 31, + "popularity": 8.3074 + }, + { + "id": 2260, + "title": "H2O: Just Add Water", + "originalTitle": "H2O: Just Add Water", + "overview": "H2O: Just Add Water revolves around three teenage girls facing everyday teen problems with an added twist: they cope with the burden of growing a giant fin and transforming into mermaids whenever they come in contact with water.", + "posterPath": "/kHWkoxEarJjIXUenEnJFr0i2Drp.jpg", + "backdropPath": "/waQxGw44tKEsKcLOkAWJsxyz7Bf.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10765 + ], + "genres": [ + "Drama", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-07-07", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.803, + "voteCount": 674, + "popularity": 8.2984 + }, + { + "id": 117030, + "title": "We Baby Bears", + "originalTitle": "We Baby Bears", + "overview": "Follow Grizz, Panda and Ice Bear – as their younger baby selves – traveling in a magical box to fantastic new worlds searching for a place to call home. Along the way, they meet new friends, learn a few lessons and discover that “home” can mean wherever they are, as long as they’re together.", + "posterPath": "/cXJ1m6f8KORhoIcrPSOYap56aAe.jpg", + "backdropPath": "/A1g8X7atNe7sjIEDJIyGbmaDfJn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Kids" + ], + "releaseDate": "2022-01-01", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 273, + "popularity": 8.2821 + }, + { + "id": 153657, + "title": "Bosch: Legacy", + "originalTitle": "Bosch: Legacy", + "overview": "Bosch is now making a living as a private investigator two years after he quit the LAPD and finds himself working with one time enemy and top-notch attorney Honey “Money” Chandler. Meanwhile, Bosch's daughter Maddie is venturing into the world of the LAPD.", + "posterPath": "/ge5gFKCO6m7MuGyjwjoGvqo2q2m.jpg", + "backdropPath": "/wVGiwvE5CtlVPrP0oEO3W70ft6D.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2022-05-05", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.984, + "voteCount": 224, + "popularity": 8.2651 + }, + { + "id": 82591, + "title": "Goblin Slayer", + "originalTitle": "ゴブリンスレイヤー", + "overview": "\"I'm not saving the world. I just kill goblins.\"\n\nRumor has it that, in a certain guild in the middle of nowhere, there is an extraordinary man who has climbed all the way to the Silver rank just by killing goblins. At the same guild, a priestess who's just become a new adventurer has formed her first party... and the man who ends up rescuing that party when they get into trouble is none other than the Goblin Slayer.", + "posterPath": "/x8ZQyxAFjz9jtCGivbOMYUC4Tp3.jpg", + "backdropPath": "/65XyAN0PrUkkfqvGbFRLjk5x3wZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.044, + "voteCount": 569, + "popularity": 8.262 + }, + { + "id": 230069, + "title": "Breathless", + "originalTitle": "Respira", + "overview": "A passionate medical team is devoted to saving lives in a bustling public hospital where tensions — and romance — keep their pulses racing.", + "posterPath": "/s6qEnmFxRqQQhjPAZPNHlwPc75y.jpg", + "backdropPath": "/2f1jxWzp0nCtA3jTWgViOjR1ZLi.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-08-30", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.6, + "voteCount": 99, + "popularity": 8.2594 + }, + { + "id": 254821, + "title": "Perfect Match", + "originalTitle": "五福临门", + "overview": "In the bustling capital of Bianjing during the Northern Song Dynasty, Madam Li moves her family in search of better marriage prospects for her five beautiful but quirky daughters, whose love lives have long been her worry. Each daughter, though famous for her beauty and wit, comes with unique quirks: the eldest, Shou Hua, has no interest in remarrying after early widowhood; the third, Kang Ning, is fierce and headstrong; the fourth, Hao De, is well-meaning but blunt; and the youngest, Le Shan, is spoiled and selective. Challenges abound as they face unexpected setbacks, including a cold reception from the already-married sister they came to visit. As the family reestablishes their business, they navigate a series of humorous and heartwarming misadventures, ultimately finding love and fulfilling their mother’s hopes in this lively tale of family and romance.", + "posterPath": "/nQrLPR8tjWW7qiL76JTfwmQnB7w.jpg", + "backdropPath": "/8t1iCOjk1Q4PsfjNLhD19tkZjhS.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-01-25", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.1, + "voteCount": 56, + "popularity": 8.2565 + }, + { + "id": 31109, + "title": "Ben 10: Ultimate Alien", + "originalTitle": "Ben 10: Ultimate Alien", + "overview": "With his secret identity now revealed to the world, Ben Tennyson continues to fight evil as a superhero with the help of the newly acquired Ultimatrix.", + "posterPath": "/n4KwrlUKO9S4GvOdZzmnz4zOxx7.jpg", + "backdropPath": "/oGEF6kQLGsreSrUtcKg4F2p1Bqz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2010-04-23", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.22, + "voteCount": 865, + "popularity": 8.237 + }, + { + "id": 87739, + "title": "The Queen's Gambit", + "originalTitle": "The Queen's Gambit", + "overview": "In a 1950s orphanage, a young girl reveals an astonishing talent for chess and begins an unlikely journey to stardom while grappling with addiction.", + "posterPath": "/zU0htwkhNvBQdVSIKB9s6hgVeFK.jpg", + "backdropPath": "/34OGjFEbHj0E3lE2w0iTUVq0CBz.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-10-23", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.453, + "voteCount": 5176, + "popularity": 8.2162 + }, + { + "id": 3572, + "title": "Kojak", + "originalTitle": "Kojak", + "overview": "A bald, lollipop sucking police detective with a fiery righteous attitude battles crime in New York City.", + "posterPath": "/7F1eH97Bpi8zQbc172drbJCsOsG.jpg", + "backdropPath": "/lt6sueOPDt721p9nqtpXKa3VZGu.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759, + 18, + 9648 + ], + "genres": [ + "Crime", + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "1973-10-24", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 7.02, + "voteCount": 129, + "popularity": 8.2134 + }, + { + "id": 63070, + "title": "Zimmer frei!", + "originalTitle": "Zimmer frei!", + "overview": "", + "posterPath": "/6Q1jUy5DZbrBRI4vXpmseDJebm1.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1996-07-09", + "releaseYear": "1996", + "originalLanguage": "de", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 8.2114 + }, + { + "id": 153282, + "title": "Sisi", + "originalTitle": "Sisi", + "overview": "\"Sisi\" follows the extraordinary life of Empress Elisabeth of Austria. Modern, honest, and authentic. Told from the perspective of her closest confidants, the series takes a new look at the empress' life and reveals a multi-layered woman.", + "posterPath": "/eR54VLAOWFOR9F9T61yOZJiHnEQ.jpg", + "backdropPath": "/9Ms5Tpm7hyvDfqN9w2apky22CEJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-12-28", + "releaseYear": "2021", + "originalLanguage": "de", + "voteAverage": 7.3, + "voteCount": 108, + "popularity": 8.2093 + }, + { + "id": 61986, + "title": "Bloodline", + "originalTitle": "Bloodline", + "overview": "A dramatic thriller that explores the demons lurking beneath the surface of a contemporary American family. The Rayburns are hard-working pillars of their Florida Keys community. But when the black sheep son comes home for the 45th anniversary of his parents' hotel, he threatens to expose the Rayburns' dark secrets and shameful past, pushing his siblings to the limits of family loyalty.", + "posterPath": "/uEaqgEjAShqrziUia4XBzvXXGXP.jpg", + "backdropPath": "/78s4wDyITtvjMRHHn2Rk7IPCtcg.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-03-20", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.108, + "voteCount": 380, + "popularity": 8.2007 + }, + { + "id": 73833, + "title": "The Ancient Magus' Bride", + "originalTitle": "魔法使いの嫁", + "overview": "Hatori Chise has lived a life full of neglect and abuse, devoid of anything resembling love. Far from the warmth of family, she has had her share of troubles and pitfalls. Just when all hope seems lost, a fateful encounter awaits her. When a man with the head of a beast, wielding strange powers, obtains her through a slave auction, Chise's life will never be the same again.\n\nThe man is a \"magus,\"a sorcerer of great power, who decides to free Chise from the bonds of captivity. The magus then makes a bold statement: Chise will become his apprentice--and his bride!", + "posterPath": "/8jnA4eaJLj3GByaYIw2JroVln40.jpg", + "backdropPath": "/KI2sFvqJHzc95WM7dcX9kM8tY1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2017-10-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 410, + "popularity": 8.1962 + }, + { + "id": 279182, + "title": "Super Cube", + "originalTitle": "超能立方", + "overview": "In an accident, an ordinary boy, Wang Xiaoxiu, obtains a space system called \"Superpower Cube\" from a high-latitude cosmic civilization and gains extraordinary powers. When the school belle, Shen Yao, Wang Xiaoxiu’s longtime crush, confesses her love to him, the delinquent Sun Jun, who also has a crush on her, is provoked. Wang Xiaoxiu resolves the crisis with his wit and extraordinary powers, but it also brings more disasters as a result. Shen Yao is taken to the world of extraordinary beings by a mysterious person, and Wang Xiaoxiu embarks on a journey to rescue her. Fighting in the bizarre universe, he finds the meaning of fairness and justice on the path to becoming a peerless powerhouse.", + "posterPath": "/bkeiYRYgQjJBItx9x3Fnia2XT3t.jpg", + "backdropPath": "/89qSKhLrJOUhp6xgbqgSTpzblbA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-03-21", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.16, + "voteCount": 75, + "popularity": 8.1948 + }, + { + "id": 10918, + "title": "Wetten, dass..?", + "originalTitle": "Wetten, dass..?", + "overview": "A long-running German-language entertainment television show based on the format of the British show You Bet! and the American show Wanna Bet?.", + "posterPath": "/4i8719B3j4z5U5EI1mjw3sOjBWe.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18, + 10764, + 35, + 10767 + ], + "genres": [ + "Drama", + "Reality", + "Comedy", + "Talk" + ], + "releaseDate": "1981-02-14", + "releaseYear": "1981", + "originalLanguage": "de", + "voteAverage": 5.3, + "voteCount": 19, + "popularity": 8.1933 + }, + { + "id": 1719, + "title": "Gargoyles", + "originalTitle": "Gargoyles", + "overview": "In Scotland, 994 A.D. Goliath and his clan of gargoyles defend a medieval castle. In present day, David Xanatos buys the castle and moves it to New York City. When the castle is attacked the gargoyles are awakened from a 1000 year curse.", + "posterPath": "/yDTZYbiRUapeWRJL6EU3ZtLUAYA.jpg", + "backdropPath": "/2HZuIQfSTcay8eoVIqeaGEwUWaB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1994-10-24", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 462, + "popularity": 8.1907 + }, + { + "id": 1931, + "title": "Disney's Adventures of the Gummi Bears", + "originalTitle": "Disney's Adventures of the Gummi Bears", + "overview": "Join the world’s sweetest heroes for high adventure in a mystical land of giants and wizards, ogres and dragons, and wondrous creatures both good and evil. Meet Gruffi, Zummi, Cubbi, Grammi, Tummi, Sunni, and all the legendary Gummis as they laugh, play, foil dastardly plots, and fight for what's right.", + "posterPath": "/mqbX2l5Te3yMdAjDxvs5kRk0bhN.jpg", + "backdropPath": "/i4NXlwt4xgYEYaRn4br8RIKLRzK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "1985-09-14", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 249, + "popularity": 8.187 + }, + { + "id": 31497, + "title": "The League", + "originalTitle": "The League", + "overview": "The League is an American sitcom and semi-improvised comedy about a about a fantasy football league and its members and their everyday lives.", + "posterPath": "/2l9lrTVG0BxU7zqsf5UQ1g4AbBH.jpg", + "backdropPath": "/4MRgkPa85umPuvNpahlQo1JtzMP.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-10-29", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.331, + "voteCount": 213, + "popularity": 8.1805 + }, + { + "id": 32231, + "title": "The Qin Empire", + "originalTitle": "大秦帝国", + "overview": "The rise of the Qin state in the Warring States period during the reign of Duke Xiao of Qin.", + "posterPath": "/zfuObpAXqGEI3FCSTsBw3GKRyOE.jpg", + "backdropPath": "/4NKo41HuTuP0QAypvu2kTJkZIE8.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2009-12-18", + "releaseYear": "2009", + "originalLanguage": "zh", + "voteAverage": 8.3, + "voteCount": 21, + "popularity": 8.1623 + }, + { + "id": 4060, + "title": "Medical Center", + "originalTitle": "Medical Center", + "overview": "Medical Center is a medical drama series which aired on CBS from 1969 to 1976. It was produced by MGM Television.", + "posterPath": "/gRGYVJYF2g12tx61CLIGeh041G.jpg", + "backdropPath": "/p7jchpj096maYfWcwGP9Xda4w7W.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1969-09-24", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 13, + "popularity": 8.1574 + }, + { + "id": 167, + "title": "La Femme Nikita", + "originalTitle": "La Femme Nikita", + "overview": "Nikita is a drug-addicted juvenile delinquent who was accused of killing a police officer in cold blood during an attempted robbery of a pharmacy. She is later arrested and sentenced to death by lethal injection, upon which she was secretly drugged by the government, faking her death. Nikita is then \"recruited\" by a secret government organization and transformed into a highly skilled assassin who cannot be traced.", + "posterPath": "/pFao5i4giBsGl7QQBXi7oMUPzCn.jpg", + "backdropPath": "/8OapOjQUbA52qDdog8GGIIy8bdh.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1997-01-13", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 258, + "popularity": 8.154 + }, + { + "id": 91552, + "title": "Departure", + "originalTitle": "Departure", + "overview": "Follow the mystery of Flight 716 - a passenger plane that vanishes over the Atlantic Ocean. Following the mysterious crash, recently widowed, brilliant aviation investigator Kendra Malley is called in to investigate by her former boss and mentor Howard Lawson.", + "posterPath": "/b52lWChoqjtE6ZgMLK2XjA3unDW.jpg", + "backdropPath": "/fGTYhDELAOt6TsqN7s9Uuc7Ypt6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2019-07-10", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 102, + "popularity": 8.1526 + }, + { + "id": 67199, + "title": "Saint Seiya: The Hades Chapter", + "originalTitle": "聖闘士星矢 冥王ハーデス", + "overview": "Hades is planning to take over the world, to achieve that goal, he sends out deceased Gold Saints to take Athena's head. Seiya and the other Bronze Saints come to help but their help isn't appreciated by the remaining Gold Saints that are still alive.", + "posterPath": "/tJ3DwxuZXttTFLWuAIjI5ugsbtU.jpg", + "backdropPath": "/v7v89HBEx80JWFRdsWhj9Iukp4T.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2002-11-09", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 84, + "popularity": 8.1516 + }, + { + "id": 18614, + "title": "Hung", + "originalTitle": "Hung", + "overview": "Desperate times call for desperate measures and Ray Drecker's situation couldn't be much tougher. The former high school sports legend turned middle-aged high school basketball coach is divorced and struggling to provide for his kids when his already run-down house catches fire. Looking to take on a second job, Ray decides to exploit his best asset in a last-ditch attempt to change his fortunes.", + "posterPath": "/v3ki6W3BGsh3PGDjtHdi6W2v8nQ.jpg", + "backdropPath": "/m0vXVA5jhyseAeXdLXqVwu9vchR.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-06-28", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.518, + "voteCount": 199, + "popularity": 8.1472 + }, + { + "id": 43775, + "title": "Dog with a Blog", + "originalTitle": "Dog with a Blog", + "overview": "Avery Jennings and Tyler James are step-siblings who are complete opposites. The family faces an even bigger adjustment when their new dog, Stan, can talk and also has a blog, unbeknownst to the family. Stan uses his blog to discuss the happenings in the Jennings-James household. Avery and Tyler later learn of Stan's talking ability and agree to keep it a secret from their parents.", + "posterPath": "/3MOm5Yxtm2h4c6ZtBVBhTTNpBn3.jpg", + "backdropPath": "/7lJRlxfvRTHjpOfhRH8X076CfMH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "2012-10-12", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 115, + "popularity": 8.1453 + }, + { + "id": 280078, + "title": "The All-Devouring Whale: Homecoming", + "originalTitle": "鲲吞天下之掌门归来", + "overview": "Fan Lingxiao, a spiritual pet master with exceptional talents, was plotted against during the Level-A sect promotion competition and was devoured by Kun, his own spiritual pet. When he opened his eyes again, he found himself reincarnated into a young man named “Liu Fengmang” and was imprisoned in the White Mansion’s dungeon. Meanwhile, his own sect, Lingxiao Pavilion, was in a perilous state. To uncover the truth of being devoured by Kun and revitalize his sect, Fan Lingxiao, accompanied by his existing spiritual pets, embarked on a brand-new adventure journey with Gu Ling, Cheng Xi, and Yue Tong.", + "posterPath": "/kJD5I0pvRCNhMvLTfI1rZHciCEf.jpg", + "backdropPath": "/qWT1hKlqF5rivsDqDxuV0jyGbyD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-05-01", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.43, + "voteCount": 43, + "popularity": 8.1428 + }, + { + "id": 42573, + "title": "Slam Dunk", + "originalTitle": "スラムダンク", + "overview": "Sakuragi Hanamichi is a junior high punk used to getting into fights and being rejected by girls but upon entering high school he meets the girl of his dreams, Haruko Akagi. He will do anything in order to win her heart including joining the school basketball team that is aiming to conquer the nation lead by Haruko's brother. The problem is that Sakuragi has never played basketball before and a freshman sensation is stealing the spotlight and Haruko's affection from him.", + "posterPath": "/gpkM8VeiYyQuEg9qkAoNplktwe4.jpg", + "backdropPath": "/dEANXnVRmFkSD8jcJlZ0oy8EnB1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1993-10-16", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 8.644, + "voteCount": 939, + "popularity": 8.1423 + }, + { + "id": 90239, + "title": "The Game of Keys", + "originalTitle": "El juego de las llaves", + "overview": "A casual encounter between Adriana and Sergio, two former high school friends, triggers the beginning of the game of the keys where four couples generate new sexual and emotional combinations in a dangerous and lustful game.\n\nThe game consists of everyone putting their keys in a bowl. At random, each one chooses some keys and he must go to spend the night with the owner of the keys. This game will revolutionize the group of friends and their lives. It will make them discover who they are and what they really want.", + "posterPath": "/a2dhpxmBGfpSx6HaeUpSozR1Z9x.jpg", + "backdropPath": "/fVsf39mCyVLPA9Ki7Ejqn7PXF29.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-08-16", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 7.473, + "voteCount": 2016, + "popularity": 8.1393 + }, + { + "id": 46004, + "title": "Date A Live", + "originalTitle": "デート・ア・ライブ", + "overview": "Thirty years ago a strange phenomenon called a \"spacequake\" devastated the center of Eurasia, claiming the lives of at least 150 million people. Since then, smaller spacequakes plague the world on an irregular basis. Shido Itsuka, a seemingly ordinary high schooler comes across a mysterious girl at the ground zero of a spacequake and learns she is one of the \"Spirits\" who are the real cause of the spacequakes that occur when they manifest themselves in the world. He is recruited to make use of his mysterious ability to seal the Spirits' powers thus stopping them from being a threat to mankind. However, there is a catch: to seal a Spirit's power, he must make her fall in love with him and kiss him.", + "posterPath": "/ylCuI1UK38lXkGGykHsDnC974EP.jpg", + "backdropPath": "/lyam6zw2aNwSM6h6sn0wTLgygj6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2013-04-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.318, + "voteCount": 471, + "popularity": 8.139 + }, + { + "id": 4392, + "title": "Big Love", + "originalTitle": "Big Love", + "overview": "The story of Bill Henrickson and his life in suburban Salt Lake City, balancing the needs of his three wives -- Barb, Nicki and Margene-- their seven kids, three new houses and the opening of his newest hardware store. When disturbing news arrives about Bill's father, he is forced to reconnect with his polygamist parents who live on a fundamentalist compound in rural Utah.", + "posterPath": "/fJ6VOFyGh7CDJogPEh6I38rC3vX.jpg", + "backdropPath": "/gEqlce8JAJGUGwSdhZsKSJFFiP6.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-03-12", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.88, + "voteCount": 138, + "popularity": 8.1381 + }, + { + "id": 68854, + "title": "From Me to You: Kimi ni Todoke", + "originalTitle": "君に届け", + "overview": "Nicknamed \"Sadako\" for her spooky appearance, high schooler Sawako begins to break out of her shell when she befriends popular boy Kazehaya.", + "posterPath": "/lLUAZzJc6vfyE2TeY56AGGb3E5K.jpg", + "backdropPath": "/nh0BS0sLXozmkTpOe1Ve33MyxlK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2009-10-07", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.369, + "voteCount": 332, + "popularity": 8.136 + }, + { + "id": 34967, + "title": "Falling Skies", + "originalTitle": "Falling Skies", + "overview": "Falling Skies opens in the chaotic aftermath of an alien attack that has left most of the world completely incapacitated. In the six months since the initial invasion, the few survivors have banded together outside major cities to begin the difficult task of fighting back. Each day is a test of survival as citizen soldiers work to protect the people in their care while also engaging in an insurgency campaign against the occupying alien force.", + "posterPath": "/uP6p0aWcIpYwA0HjY4bYR4naz5g.jpg", + "backdropPath": "/lUincM93AWXWQbq0Y3PIKu10HEL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2011-06-19", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.111, + "voteCount": 1249, + "popularity": 8.1317 + }, + { + "id": 2720, + "title": "TaleSpin", + "originalTitle": "TaleSpin", + "overview": "Baloo the Bear stars in an adventurous comedy of love and conflict with his friend Kit Cloudkicker. Rebecca Cunningham and her daughter Molly purchase Baloo's failing company and Baloo must fly transport runs to clear his debt while dodging Don Karnage and his sky pirates.", + "posterPath": "/gObO6CMSRbQNehvJyF4CwOHC5VI.jpg", + "backdropPath": "/htcQeUWHrB7Hsbnugfb4rMnnJ2.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10762, + 10759 + ], + "genres": [ + "Family", + "Animation", + "Kids", + "Action & Adventure" + ], + "releaseDate": "1990-09-09", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 198, + "popularity": 8.131 + }, + { + "id": 281058, + "title": "Secrets of the Silent Witch", + "originalTitle": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "overview": "Humans couldn’t handle magic without chanting until Monica Everett, the Silent Witch and one of the Seven Sages, made unspoken magecraft possible. Painfully shy, she enjoys seclusion. One day, Louis Miller, the Barrier Mage, delivers the king’s order: Go undercover at a prestigious school for nobles to guard the second prince. Get ready for her silent mission to begin!", + "posterPath": "/2qqAiyfpVdY8qEtxBeNYKreS4t.jpg", + "backdropPath": "/6yC53NuAwy8KhbzsrZ7NDFsSg2p.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 46, + "popularity": 8.1295 + }, + { + "id": 80968, + "title": "Narcos: Mexico", + "originalTitle": "Narcos: Mexico", + "overview": "See the rise of the Guadalajara Cartel as an American DEA agent learns the danger of targeting narcos in 1980s Mexico.", + "posterPath": "/uYcZMiIIUv8NPebpqKbUGhf2M3y.jpg", + "backdropPath": "/64jEzC7YeKEpnn1YwjCGRo9ZvOX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2018-11-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.924, + "voteCount": 1440, + "popularity": 8.1294 + }, + { + "id": 1596, + "title": "Bergerac", + "originalTitle": "Bergerac", + "overview": "Jim Bergerac is a detective sergeant in The Foreigners Office who likes to do things his own way.\n\nWhile dealing with his own personal demons Bergerac has a knack of finding trouble, and sometimes causing it.", + "posterPath": "/1ZarXE2TfNYPl1ojXWov8wuqJTY.jpg", + "backdropPath": "/ik5Lxk1RLXvRwjWBJAF4gbN4jXw.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1981-10-18", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 21, + "popularity": 8.1261 + }, + { + "id": 209845, + "title": "Our Dating Story: The Experienced You and the Inexperienced Me", + "originalTitle": "経験済みなキミと、 経験ゼロなオレが、 お付き合いする話。", + "overview": "Ryuto Kashima is the school's gloomy introvert, and he's got a crush on Runa Shirakawa, the popular girl. After losing a bet to classmates, he confesses his feelings to Runa one day. Shocked and secretly just as inexperienced as Ryuto, Runa agrees to date him. The relationship grows between two people who are as similar as they are different. Will their young love blossom? Time will tell!", + "posterPath": "/ylz5RxpOCWkxIBiCCmNAlJcxYLn.jpg", + "backdropPath": "/rnNVcd81FoRyub0IDeg6wsH04bX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-10-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 45, + "popularity": 8.1206 + }, + { + "id": 217810, + "title": "The Next Prince", + "originalTitle": "ข้ามฟ้าเคียงเธอ", + "overview": "When a reluctant heir is called to compete in a tournament to decide the next king, the royal guard sent to escort him soon becomes his forbidden desire.", + "posterPath": "/x1eBmHCpaOfUqTeiXr2d344WA6x.jpg", + "backdropPath": "/r1uscUpxBMMTzDwzVlbjoRBSNeE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-05-03", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 8.1, + "voteCount": 16, + "popularity": 8.1196 + }, + { + "id": 47450, + "title": "Into the Badlands", + "originalTitle": "Into the Badlands", + "overview": "In a land controlled by feudal barons, a great warrior and a young boy embark on a journey across a dangerous land to find enlightenment. \n\nA genre-bending martial arts series very loosely based on the classic Chinese tale Journey to the West.", + "posterPath": "/jtceMKMxHSriLFUGAUfqHsW7uCo.jpg", + "backdropPath": "/1p9FUL7MKKOW0ZhsXkbpD3DVTy1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2015-11-15", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.613, + "voteCount": 793, + "popularity": 8.1196 + }, + { + "id": 5031, + "title": "The Fall Guy", + "originalTitle": "The Fall Guy", + "overview": "Hollywood stuntman Colt Seavers picks up some extra pocket money by using his rough-and-tumble skills to track and capture bail jumpers.", + "posterPath": "/gV8CB9WbCclGCENBkxoKXYnwh28.jpg", + "backdropPath": "/1XEusS8irQrc060sfFsBPosnPF5.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80 + ], + "genres": [ + "Action & Adventure", + "Crime" + ], + "releaseDate": "1981-11-04", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 7.541, + "voteCount": 160, + "popularity": 8.1178 + }, + { + "id": 6040, + "title": "Ben 10: Alien Force", + "originalTitle": "Ben 10: Alien Force", + "overview": "Five years later, 15-year-old Ben Tennyson chooses to once again put on the Omnitrix and discovers that it has recalibrated and can now transform him into 10 brand new aliens. Joined by his super-powered cousin Gwen Tennyson and his equally powerful former enemy Kevin Levin, Ben is on a mission to find his missing Grandpa Max. In order to save his Grandpa, Ben must defeat the evil DNAliens, a powerful alien race intent on destroying the galaxy, starting with planet Earth.", + "posterPath": "/pGhCUqPaXZ0Xp4dUCT7Q6hjJArf.jpg", + "backdropPath": "/dE28FZ6HKbsM8cJxlYk4WL0vuhU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2008-04-18", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 1142, + "popularity": 8.1118 + }, + { + "id": 15621, + "title": "The Newsroom", + "originalTitle": "The Newsroom", + "overview": "A behind-the-scenes look at the people who make a nightly cable-news program. Focusing on a network anchor, his new executive producer, the newsroom staff and their boss, the series tracks their quixotic mission to do the news well in the face of corporate and commercial obstacles-not to mention their own personal entanglements.", + "posterPath": "/pOC3DmU47X98Sv5vaPnmgjG30eY.jpg", + "backdropPath": "/oNNdRpSQSdRIaWnSFejhw1qk51K.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-06-24", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.074, + "voteCount": 676, + "popularity": 8.1109 + }, + { + "id": 62481, + "title": "Beat Bobby Flay", + "originalTitle": "Beat Bobby Flay", + "overview": "Two talented chefs go head-to-head for the chance to Beat Bobby Flay. To get to Bobby the chefs must first face off against each other, creating a spectacular dish with a secret ingredient of Bobby's choice. Judges Alex Guarnaschelli and Jeff Mauro know Bobby's strengths and his weaknesses. Their goal: Pick the chef who has the skills to take down Bobby Flay in his own arena. The winning chef gets to challenge Bobby with his or her surprise signature dish. If Bobby goes down, the winner can tell the world, \"I beat Bobby Flay!\"", + "posterPath": "/vY8Bep9K9oFSz0C9gnTVipfBciU.jpg", + "backdropPath": "/kSFEIZS3HplqY1uN9U1GR0aEKlP.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2013-08-24", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 27, + "popularity": 8.1095 + }, + { + "id": 93821, + "title": "XL Boss", + "originalTitle": "XL上司。", + "overview": "Running short of money, office lady Saki Watase is introduced to a part-time job where she's tasked with reviewing XL-size condoms. While receiving an escort home after a night of drinking, Saki's \"demon\" boss Keisuke Sudou notices that she's carrying a large quantity of condom. Once Saki explains her circumstances, Keisuke reveals that he is XL-size. A romance between the two thus begins.", + "posterPath": "/g69Q5Wc4DDpjpmWMKg2ElY1QPQt.jpg", + "backdropPath": "/kNfWTUji2C7L0bNuNZ6qHx9vzun.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-10-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 18, + "popularity": 8.1054 + }, + { + "id": 84910, + "title": "The Masked Singer", + "originalTitle": "The Masked Singer", + "overview": "Celebrities compete in a singing competition with one major twist: each singer is shrouded from head to toe in an elaborate costume, complete with full face mask to conceal his or her identity. One singer will be eliminated each week, ultimately revealing his or her true identity.", + "posterPath": "/sT0TpxenCsghbRZ7NiEJg2ubzZx.jpg", + "backdropPath": "/fvL8uPX0j3PF8FXHqGpJTfq0Qzu.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2019-01-02", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 117, + "popularity": 8.102 + }, + { + "id": 4270, + "title": "Living Single", + "originalTitle": "Living Single", + "overview": "Living Single is an American television sitcom that aired for five seasons on the Fox network from August 22, 1993, to January 1, 1998. The show centered on the lives of six friends who share personal and professional experiences while living in a Brooklyn brownstone.\n\nThroughout its run, Living Single became one of the most popular African-American sitcoms of its era, ranking among the top five in African-American ratings in all five seasons. The series was produced by Yvette Lee Bowser's company, Sister Lee, in association with Warner Bros. Television. In contrast to the popularity of NBC's \"Must See TV\" on Thursday nights in the 1990s, many African American and Latino viewers flocked to Fox's Thursday night line-up of Martin, Living Single, and New York Undercover. In fact, these were the three highest-rated series among black households for the 1996–1997 season.", + "posterPath": "/mgttYgspalxaLVrjJ9rxzDG9owO.jpg", + "backdropPath": "/F0aJ6CVPJhIMwBtvHQpMC9FPvm.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1993-08-29", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 47, + "popularity": 8.1014 + }, + { + "id": 15804, + "title": "Batman: The Brave and the Bold", + "originalTitle": "Batman: The Brave and the Bold", + "overview": "The Caped Crusader is teamed up with Blue Beetle, Green Arrow, Aquaman and countless others in his quest to uphold justice.", + "posterPath": "/ukXZ1N9Pd99vDNetFKYNpFYgoXF.jpg", + "backdropPath": "/2ntyHIpPturMsFjjjM7bEr2gaHB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2008-11-14", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 275, + "popularity": 8.088 + }, + { + "id": 88329, + "title": "Hawkeye", + "originalTitle": "Hawkeye", + "overview": "Former Avenger Clint Barton has a seemingly simple mission: get back to his family for Christmas. Possible? Maybe with the help of Kate Bishop, a 22-year-old archer with dreams of becoming a superhero. The two are forced to work together when a presence from Barton’s past threatens to derail far more than the festive spirit.", + "posterPath": "/ct5pNE5dDHryHLDnxyZPYcqO1sz.jpg", + "backdropPath": "/1R68vl3d5s86JsS2NPjl8UoMqIS.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10759 + ], + "genres": [ + "Drama", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2021-11-24", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.819, + "voteCount": 3574, + "popularity": 8.0874 + }, + { + "id": 56387, + "title": "Fist of the North Star", + "originalTitle": "北斗の拳", + "overview": "In the year 199X, human civilization has been all but destroyed by a nuclear holocaust.", + "posterPath": "/yypGXmBPvyJiD7pOeD2R3q84FlA.jpg", + "backdropPath": "/9VdIABPH266DSurwrYHOvbZ9dtk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1984-10-11", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 116, + "popularity": 8.0865 + }, + { + "id": 31585, + "title": "Rookie Blue", + "originalTitle": "Rookie Blue", + "overview": "Ambitious young cops try to prove themselves in their high-stakes careers, in which the smallest mistake can have deadly consequences. At the core of the close-knit group is perfectionist Andy McNally, whose father was a homicide detective before he burned out on the job. The series follows Andy and her four colleagues -- Dov Epstein, Gail Peck, Traci Nash and Chris Diaz -- as they experience the trials, triumphs and tribulations of police work, as well as its effect on their personal lives.", + "posterPath": "/e3hfrKjLHKjj3p82xvvGvfIu628.jpg", + "backdropPath": "/riBPF8AXg5cSAO5cFVy0mJYxqjM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2010-06-24", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 210, + "popularity": 8.0827 + }, + { + "id": 103768, + "title": "Sweet Tooth", + "originalTitle": "Sweet Tooth", + "overview": "On a perilous adventure across a post-apocalyptic world, a lovable boy who's half-human and half-deer searches for a new beginning with a gruff protector.", + "posterPath": "/rgMfhcrVZjuy5b7Pn0KzCRCEnMX.jpg", + "backdropPath": "/xpba0Dxz3sxV3QgYLR8UIe1LAAX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-06-04", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.792, + "voteCount": 1538, + "popularity": 8.0813 + }, + { + "id": 194583, + "title": "The Walking Dead: Dead City", + "originalTitle": "The Walking Dead: Dead City", + "overview": "Maggie and Negan travel to post-apocalyptic Manhattan - long ago cut off from the mainland. The crumbling city is filled with the dead and denizens who have made it a world full of anarchy, danger, beauty, and terror.", + "posterPath": "/wq3vuQzQgbS83zX3malAFWMsSwX.jpg", + "backdropPath": "/4VTmQaT1Rep2jLMyPOImYasCvjp.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-06-18", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.961, + "voteCount": 667, + "popularity": 8.0761 + }, + { + "id": 1526, + "title": "Brookside", + "originalTitle": "Brookside", + "overview": "The ground-breaking soap set in a housing estate on the outskirts of Liverpool.", + "posterPath": "/3oYPtQQBWDiJqLycKm0quMh6gzu.jpg", + "backdropPath": "/ahyiECSHWcZi0lrSiVS4V9QydwP.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1982-11-02", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 19, + "popularity": 8.0746 + }, + { + "id": 116450, + "title": "And Just Like That…", + "originalTitle": "And Just Like That…", + "overview": "This new chapter of “Sex and the City” follows Carrie, Miranda and Charlotte as they navigate the journey from the complicated reality of life and friendship in their 30s to the even more complicated reality of life and friendship in their 50s.", + "posterPath": "/2b6E0pN19IGsmxSv6HyTKydKKdb.jpg", + "backdropPath": "/sHvTsXSWxuW7hoXAqWM4lBLJI50.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-12-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 520, + "popularity": 8.073 + }, + { + "id": 21641, + "title": "Good Luck Charlie", + "originalTitle": "Good Luck Charlie", + "overview": "Teens PJ and Teddy and tween brother Gabe are typical kids -- that is, until their mother has another baby. The arrival of their new sister completely upends the entire household. When their mother heads back to work after Charlie's birth, it's up to the kids and their dad to keep the home fires burning -- and to keep Charlie out of trouble as she learns to sit up, crawl, walk and run. Teddy, as the older sister, makes a personalized video diary for Charlie, in each episode adding a nugget of wisdom for her baby sibling.", + "posterPath": "/cyYwkXW1vd3YpiFVlb7y0hgIzuu.jpg", + "backdropPath": "/u1jUHmL3oKM48HVGmwrscdRK5hy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762 + ], + "genres": [ + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2010-04-04", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 430, + "popularity": 8.0714 + }, + { + "id": 88324, + "title": "Virgin River", + "originalTitle": "Virgin River", + "overview": "After seeing an ad for a midwife, a recently divorced big-city nurse moves to the redwood forests of California, where she meets an intriguing man.", + "posterPath": "/oHEqfmSWR4Ex4V4AJyUn8HGHHnt.jpg", + "backdropPath": "/m1nuMHBCiNy6pMGzRAdH5frNesN.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-12-06", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.923, + "voteCount": 563, + "popularity": 8.0707 + }, + { + "id": 66857, + "title": "Shooter", + "originalTitle": "Shooter", + "overview": "Bob Lee Swagger is an expert marksman living in exile who is coaxed back into action after learning of a plot to kill the president.", + "posterPath": "/oMmqtafm6Rdlka1ejJeC9BDWzyO.jpg", + "backdropPath": "/dyysEEonr5tPcgItlfHItfx5ZCY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10768, + 18 + ], + "genres": [ + "Action & Adventure", + "War & Politics", + "Drama" + ], + "releaseDate": "2016-11-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 694, + "popularity": 8.067 + }, + { + "id": 2428, + "title": "Taggart", + "originalTitle": "Taggart", + "overview": "Taggart is a Scottish detective television program. The series revolves around a group of detectives initially in the Maryhill CID of Strathclyde Police, though various storylines have happened in other parts of the Greater Glasgow area, and as of the most recent series the team have operated out of the fictional John Street police station across the street from the City Chambers.", + "posterPath": "/3PbPPSHjaiZ2jxFUSvbd8clmfaB.jpg", + "backdropPath": "/ptmrDJJgZ1P6xyt2YRNc4IMznvz.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1983-09-06", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 21, + "popularity": 8.0665 + }, + { + "id": 26444, + "title": "Da Capo", + "originalTitle": "D.C.~ダ・カーポ~", + "overview": "Junichi Asakura lives with his adoptive sister Nemu in the crescent-shaped island of Hatsune Jima, a place where cherry blossoms bloom throughout the year. In this island, people have mysterious powers and attributes. For example, Junichi has the power to see other people's dreams, and he was also taught by his grandmother to magically create sweets. One day, Junichi's cousin and childhood friend, Sakura Yoshino came back from America all of a sudden. To Junichi's surprise, she looks exactly the same as the girl that moved away six years ago, and hasn't aged one bit. And she came back to remind Junichi of their childhood promise... It is a bittersweet tale of magic, love, hidden desires, and unattainable dreams.", + "posterPath": "/rfKB8JaUcUgy2cA0ubODfP2FUTC.jpg", + "backdropPath": "/meb3jsOPstWv0yNKKCTikhaT1za.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2003-07-05", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 12, + "popularity": 8.0663 + }, + { + "id": 245219, + "title": "Death by Lightning", + "originalTitle": "Death by Lightning", + "overview": "The story of James Garfield, who rose from obscurity to become America's 20th President — and Charles Guiteau, the man who assassinated him.", + "posterPath": "/KyUrz3GA1FML3XnKkY795XxDxN.jpg", + "backdropPath": "/l89mjyc8tGfhEalwDIeGqmXLR1N.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-11-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 40, + "popularity": 8.0631 + }, + { + "id": 562, + "title": "The Ellen DeGeneres Show", + "originalTitle": "The Ellen DeGeneres Show", + "overview": "The Ellen DeGeneres Show, often shortened to just Ellen, is an American television talk show hosted by comedian/actress Ellen DeGeneres.", + "posterPath": "/PhUYIGUUk1RzWq2Aw3TqH65McE.jpg", + "backdropPath": "/3jMCaxKK4r5A5gu196dCCrk5d6X.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2003-09-08", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.64, + "voteCount": 164, + "popularity": 8.0614 + }, + { + "id": 69629, + "title": "The Gifted", + "originalTitle": "The Gifted", + "overview": "A suburban couple's ordinary lives are rocked by the sudden discovery that their children possess mutant powers. Forced to go on the run from a hostile government, the family joins up with an underground network of mutants and must fight to survive.", + "posterPath": "/nshCqszjTNuqhrB53vrSqWO18sE.jpg", + "backdropPath": "/18inwHlpKnK9mt02wFBJoIVKXI.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2017-10-02", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.606, + "voteCount": 1530, + "popularity": 8.0562 + }, + { + "id": 251, + "title": "Aqua Teen Hunger Force", + "originalTitle": "Aqua Teen Hunger Force", + "overview": "The surreal adventures of three anthropomorphic fast food items: Master Shake, Frylock and Meatwad, and their human nextdoor neighbor, Carl Brutananadilewski.", + "posterPath": "/jCWOkfMLsT2sGHadCkmR65MWtJu.jpg", + "backdropPath": "/5QWdGKrPWJQ3WcafuYA2PXL6uQG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2000-12-30", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.561, + "voteCount": 231, + "popularity": 8.0532 + }, + { + "id": 78648, + "title": "Amazing Saturday", + "originalTitle": "놀라운 토요일", + "overview": "A group of hungry celebrities listen to poppin’ tunes, from recent hits to all-time-favorites, to correctly dictate a part of the lyrics.\n\nThe songs may sound familiar, but the part they must dictate are unclear to the naked ear, as the lyrics are slurred, muffled by strong beats, etc.\n\nIf they get the lyrics right, they get to share exquisite regional dishes. But if they get them wrong, a professional eater gobbles it up instead.", + "posterPath": "/nEwybsfZBSPjcZamPpKDTaTI5g.jpg", + "backdropPath": "/pNdUVPm6RwvG9Ycd2cuYpLbM7lk.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10764 + ], + "genres": [ + "Comedy", + "Reality" + ], + "releaseDate": "2018-04-07", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 7.6, + "voteCount": 10, + "popularity": 8.0491 + }, + { + "id": 108178, + "title": "The Drew Barrymore Show", + "originalTitle": "The Drew Barrymore Show", + "overview": "Drew Barrymore presents human-interest stories, celebrity guests, lifestyle segments and field pieces, all driven by her infectious brand of humor and optimism.", + "posterPath": "/7X3BkHmyPUp2pbYeN1qITgKfrOz.jpg", + "backdropPath": "/zv0KJTB36V59qBfVPd4c5FADQOk.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2020-09-14", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 15, + "popularity": 8.0419 + }, + { + "id": 249586, + "title": "Amsterdam Empire", + "originalTitle": "Amsterdam Empire", + "overview": "When Jack's affair comes to light, his wife Betty hatches a bitter plan to strip him of the thing he loves most: The Jackal, his coffeeshop empire.", + "posterPath": "/bssBGroBgZCHmn4jbbTmttt7VEq.jpg", + "backdropPath": "/2sORBXHcWuh000pKAl93bsMmf76.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-10-30", + "releaseYear": "2025", + "originalLanguage": "nl", + "voteAverage": 6.5, + "voteCount": 23, + "popularity": 8.0416 + }, + { + "id": 2254, + "title": "Sunset Beach", + "originalTitle": "Sunset Beach", + "overview": "Sunset Beach is an American television soap opera that aired on NBC from January 6, 1997 to December 31, 1999. The show follows the loves and lives of the people living in the Orange County coastal area named Sunset Beach, on the coast of California. Although there is a town in California called Sunset Beach, the show's beach scenes were shot on nearby Seal Beach. The show was co-produced by NBC and Spelling Television.\n\nSunset Beach won two Daytime Emmy Awards and was nominated another eleven times. The show also received twenty-two nominations for various other awards.", + "posterPath": "/b4wqMNq1v3oksZ1V88aemWxbx15.jpg", + "backdropPath": "/bhELjzqO7A7q6BZCu3puYiZ5YAv.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1997-01-06", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 34, + "popularity": 8.0331 + }, + { + "id": 95842, + "title": "Joy of Life", + "originalTitle": "庆余年", + "overview": "Zhang Qing, a present-day college student in culture and history major wants to study in professor Ye's postgraduate class, so he decides to write a historical fiction to elaborate his perspective of analyzing ancient literature history with modern concept. In the fiction, Zhang himself acts as a young man Fan Xian with mysterious life who lives in a remote seaside town of Kingdom Qing in his childhood, under the help of a mysterious mentor and a blindfolded watchman. Fan goes to the capital when he grows up, where he experiences plenty of ordeal and temper. Fan persists in adhering the rule of justice and goodness and lives his own glorious life.", + "posterPath": "/7NXlOAFSUPBujmWbnUmqnwNZQhO.jpg", + "backdropPath": "/4eNmWhBfDfAj8qbKHPgW394rAK8.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2019-11-26", + "releaseYear": "2019", + "originalLanguage": "zh", + "voteAverage": 8.1, + "voteCount": 104, + "popularity": 8.0255 + }, + { + "id": 89620, + "title": "Go Fighting", + "originalTitle": "极限挑战", + "overview": "Go Fighting! is classified as a game-variety-reality show, and the MCs and guests complete missions at a landmark to win the objective. Usually each episode will also have an over-arching theme or story. Each episode varies in the challenges and the instructions given to the MCs, and rules are not strictly enforced, resulting in a largely unscripted show.", + "posterPath": "/nYsiHMplUCBFazdAOVr1gQaGy34.jpg", + "backdropPath": "/nSj6EKpNtNCd84OT1MNK9XAUlPM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10764, + 35 + ], + "genres": [ + "Action & Adventure", + "Reality", + "Comedy" + ], + "releaseDate": "2015-06-14", + "releaseYear": "2015", + "originalLanguage": "zh", + "voteAverage": 8.615, + "voteCount": 13, + "popularity": 8.025 + }, + { + "id": 1167, + "title": "The Inspector Lynley Mysteries", + "originalTitle": "The Inspector Lynley Mysteries", + "overview": "DS Barbara Havers is assigned to work with the upper-crust DI Thomas Lynley to solve murders.", + "posterPath": "/d68bISjO6e6cOtgeygJO471FUIh.jpg", + "backdropPath": "/bWTk5MoSYmtr34EQWXsEAFBeNiS.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2002-04-08", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 38, + "popularity": 8.0229 + }, + { + "id": 3797, + "title": "Life", + "originalTitle": "Life", + "overview": "Complex, offbeat Detective Charlie Crews returns to the force after serving time in prison for a crime he didn’t commit. Crews’ new lease on life has provided him with a Zen-like outlook, peace of mind and no need for vengeance, an attitude which can be challenging to maintain when someone he cares about is threatened — or when he is investigating the mystery surrounding the murder he was falsely accused of.", + "posterPath": "/4zTDeRJxdMqH3Si2fIZjQi44k17.jpg", + "backdropPath": "/5Ecv4eIWDBeOPqcA9iWb04NCsmr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2007-09-26", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.677, + "voteCount": 251, + "popularity": 8.0218 + }, + { + "id": 7677, + "title": "We Got Married", + "originalTitle": "우리 결혼했어요", + "overview": "We Got Married is a South Korean reality variety show, one segment of the Sunday Sunday Night program. First broadcast in 2008, the show pairs up Korean celebrities to show what life would be like if they were married. Each week, couples are assigned missions to complete, with candid interviews of the participants to reveal their thoughts and feelings.", + "posterPath": "/mRibuyUmOttydFuuiW3rmKhkldz.jpg", + "backdropPath": "/fVvVv6MrtR1yYFmFErgkn0CkqY.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2008-03-16", + "releaseYear": "2008", + "originalLanguage": "ko", + "voteAverage": 5.6, + "voteCount": 14, + "popularity": 8.0215 + }, + { + "id": 384, + "title": "Doug", + "originalTitle": "Doug", + "overview": "Doug Funnie experiences common predicaments while attending school in his new hometown of Bluffington, Virginia.", + "posterPath": "/fEzGDVHsUlOhU59EKSePobldyIf.jpg", + "backdropPath": "/3MIkLmNbeS8LpXo9JPbntrQrDlP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1991-08-18", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.254, + "voteCount": 232, + "popularity": 8.0082 + }, + { + "id": 1457, + "title": "Pride and Prejudice", + "originalTitle": "Pride and Prejudice", + "overview": "Set in England in the early 19th century, Pride and Prejudice tells the story of Mr and Mrs Bennet's five unmarried daughters after the rich and eligible Mr Bingley and his status-conscious friend, Mr Darcy, have moved into their neighbourhood. While Bingley takes an immediate liking to the eldest Bennet daughter, Jane, Darcy has difficulty adapting to local society and repeatedly clashes with the second-eldest Bennet daughter, Elizabeth.", + "posterPath": "/7od3Mob2qu5lL1l5RsdV6xuEquw.jpg", + "backdropPath": "/6d1yCaiI7AexmtGX2vORqEbZ0oV.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1995-09-24", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 8.214, + "voteCount": 520, + "popularity": 8.0073 + }, + { + "id": 62313, + "title": "Lip Sync Battle", + "originalTitle": "Lip Sync Battle", + "overview": "Each episode features two A-list celebrities like you've never seen them before - syncing their hearts out in hysterically epic performances. Hosted by LL Cool J with colorful commentary by social media maven and supermodel co-host, Chrissy Teigen. The mic is off, the battle is on!", + "posterPath": "/AYmEExaBgjiEIwrLPb7AoH4nqy.jpg", + "backdropPath": "/qLjfvVsup0R4FS8Hp1dza5J70QK.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2015-04-02", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 114, + "popularity": 8.0071 + }, + { + "id": 46028, + "title": "Girl Meets World", + "originalTitle": "Girl Meets World", + "overview": "The adventures of relatable and adventurous Riley Matthews, the tween daughter of Cory and Topanga Matthews, and her bold best friend Maya as they traverse the twists and turns of teenage years at Manhattan's John Quincy Adams Middle School where Riley's dad is their History teacher.", + "posterPath": "/xhU1KkPtM9fpE1HKpdghX0VlyYF.jpg", + "backdropPath": "/pJvLprQwTVEOSBPs25y4rM214ch.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2014-06-27", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.289, + "voteCount": 709, + "popularity": 8.0064 + }, + { + "id": 654, + "title": "Reba", + "originalTitle": "Reba", + "overview": "After her dentist husband of 20 years leaves her for his dental hygienist, Reba Hart's seemingly perfect world is turned upside down.​", + "posterPath": "/3pdrwxTNxKdwuc95vOotrbnvJVa.jpg", + "backdropPath": "/ebslbqRYv1SK9JlkWqASf9JUYQw.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2001-10-05", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.476, + "voteCount": 106, + "popularity": 8.0028 + }, + { + "id": 60910, + "title": "Life Below Zero", + "originalTitle": "Life Below Zero", + "overview": "Viewers go deep into an Alaskan winter to meet six tough and resilient residents as they try to stay one step ahead of storms and man-eating beasts to make it through to spring. The closest neighbor to Sue Aikens is more than 300 miles away. Eric Salitan subsists solely on what he hunts and forages. Chip and Agnes Hailstone catch fish for currency in bartering for supplies, and Andy and Kate Bassich use their pack of sled dogs for transportation.", + "posterPath": "/a1pZCA3nmZvQGI1L21Riuglfw6f.jpg", + "backdropPath": "/rlr7ldDpT67kuublz5W6QGDR6OJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 99 + ], + "genres": [ + "Reality", + "Documentary" + ], + "releaseDate": "2013-05-19", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 44, + "popularity": 8.0025 + }, + { + "id": 213830, + "title": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "originalTitle": "転生したら第七王子だったので、気ままに魔術を極めます", + "overview": "Prince Lloyd wasn't always a prince...in fact, his previous life is one he remembers perfectly: he was a sorcerer, of sorts. So when he was forced to reincarnate, he decided to continue his studies, prince of the realm or no! But his new life has its own sets of challenges...including being a 10-year-old! What's the 7th prince/sorcerer to do?!", + "posterPath": "/ruLkQB8i1yazHgO0QCWpyJRRTs9.jpg", + "backdropPath": "/ed9Mgo1gBO9Za0zAyNIpTvtjTDU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.631, + "voteCount": 88, + "popularity": 8.0001 + }, + { + "id": 6231, + "title": "Oshin", + "originalTitle": "おしん", + "overview": "Oshin is a Japanese serialized morning television drama, which aired on broadcaster NHK from April 4, 1983 to March 31, 1984. The series follows the life of Shin Tanokura during the Meiji period up to the early 1980s. Shin was called \"Oshin\", which is an archaic Japanese cognomen.", + "posterPath": "/hut6ivvxG1da3ZC6tyJHlh9C7kw.jpg", + "backdropPath": "/uJfG4BnmbahCKWpqh88dFYJ91Jx.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10768 + ], + "genres": [ + "Drama", + "Family", + "War & Politics" + ], + "releaseDate": "1983-04-04", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 18, + "popularity": 7.9992 + }, + { + "id": 21145, + "title": "Natural World", + "originalTitle": "Natural World", + "overview": "Natural World is a nature documentary television series broadcast annually on BBC Two and regarded by the BBC as its flagship natural history brand. It is currently the longest-running series in its genre on British television, with more than 400 episodes broadcast since its inception in 1983.\n\nNatural World is produced by the BBC Natural History Unit in Bristol, but individual programmes can be in-house productions, collaborative productions with other broadcasters or films made and distributed by independent production companies and purchased by the BBC. Natural World programmes are often broadcast as PBS Nature episodes in the USA. Since 2008, most Natural World programmes have been shot and broadcast in high definition.", + "posterPath": "/lM2O6k77POzauRNR6iAcOFZKwqY.jpg", + "backdropPath": "/jqfueFlkLu6YsIDpwu4QqBPPutW.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1983-10-30", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 26, + "popularity": 7.9967 + }, + { + "id": 43323, + "title": "Comedy Bang! Bang!", + "originalTitle": "Comedy Bang! Bang!", + "overview": "Based on Scott Aukerman’s popular podcast of the same name, COMEDY BANG! BANG! cleverly riffs on the well-known format of the late night talk show, infusing celebrity appearances and comedy sketches with a tinge of the surreal. In each episode, Aukerman engages his guests with unfiltered and improvisational lines of questioning, punctuated by banter and beats provided by bandleader, one-man musical mastermind Reggie Watts, to reinvent the traditional celebrity interview. Packed with character cameos, filmic shorts, sketches and games set amongst an off-beat world, COMEDY BANG! BANG! delivers thirty minutes of absurd laugh-loaded fun featuring some of the biggest names in comedy.", + "posterPath": "/5undCFoglpvKYFmu404ve9mh6on.jpg", + "backdropPath": "/wn4JtSxtYzLiYu5PoKggz8KvRDZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2012-06-08", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 39, + "popularity": 7.9914 + }, + { + "id": 134, + "title": "Space: 1999", + "originalTitle": "Space: 1999", + "overview": "The crew of Moonbase Alpha must struggle to survive when a massive explosion throws the Moon from orbit into deep space.", + "posterPath": "/77Jn71Aw4mct3phi7wpjLdvO9U5.jpg", + "backdropPath": "/3igZ4K3pKIEoD2nyvgmmVOMuz3E.jpg", + "mediaType": "tv", + "genreIds": [ + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy" + ], + "releaseDate": "1975-09-04", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 145, + "popularity": 7.9911 + }, + { + "id": 66627, + "title": "Murders in...", + "originalTitle": "Meurtres à...", + "overview": "Murders in... is a collection of French-Belgian police TV movies taking place each time in a different French city and region.", + "posterPath": "/bbksBu0z69O6qq8PVcPvs5vPL6i.jpg", + "backdropPath": "/3TqeyJTHfrgS3UJcT9Q3KhLcrxe.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "2013-04-23", + "releaseYear": "2013", + "originalLanguage": "fr", + "voteAverage": 7.4, + "voteCount": 16, + "popularity": 7.9906 + }, + { + "id": 84299, + "title": "Al Hayba", + "originalTitle": "الهيبة", + "overview": "In a village by the Lebanon-Syria border, the head of an arms-smuggling clan contends with family conflicts, power struggles and complicated love.", + "posterPath": "/heUxSI3Ul0L53XuziidcWv9GoQo.jpg", + "backdropPath": "/qaKnYL4XAHIdUDoxF3ZGyb8FEaw.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2017-05-27", + "releaseYear": "2017", + "originalLanguage": "ar", + "voteAverage": 6.5, + "voteCount": 29, + "popularity": 7.9862 + }, + { + "id": 62505, + "title": "Unforgotten", + "originalTitle": "Unforgotten", + "overview": "London police detectives Cassie Stuart and Sunny Khan investigate historic cold cases involving missing persons, murder and long-hidden secrets.", + "posterPath": "/bfysfq7JDBWKLpkKPaOU2FpfmB.jpg", + "backdropPath": "/ywEk2WXTXELEAL4LcE6QhduJj09.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2015-10-08", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 178, + "popularity": 7.984 + }, + { + "id": 1941, + "title": "GARO", + "originalTitle": "牙狼<GARO>", + "overview": "The Makai fight a secret war against the demon forces known as Horrors, evil creatures that manifest themselves through darkness to devour Humanity. On the frontlines are the Makai Knights, given the task of watching over a district and eliminating any Horrors that manifest there.\n\nGARO follows the tales of the Knights bearing the title of ‘Golden Knight Garo’, and their duty to vanquish the Horrors and protect Humanity from the darkness.", + "posterPath": "/3IBGi1F4oRlykR0k9beIwygn8YM.jpg", + "backdropPath": "/mvi2YbFePpq68xaHEwezpmSEdsv.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2005-10-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.696, + "voteCount": 28, + "popularity": 7.9791 + }, + { + "id": 129478, + "title": "The King's Affection", + "originalTitle": "연모", + "overview": "When the crown prince is killed, his twin sister assumes the throne while trying to keep her identity and affection for her first love a royal secret.", + "posterPath": "/2Qim2grFzfNJ4h3QSTzxi8CsKdG.jpg", + "backdropPath": "/4r7scgI5aUrShN0YzriAatWd15e.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-10-11", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8.191, + "voteCount": 286, + "popularity": 7.9783 + }, + { + "id": 100883, + "title": "Never Have I Ever", + "originalTitle": "Never Have I Ever", + "overview": "After a traumatic year, all an Indian-American teen wants is to go from pariah to popular -- but friends, family and feeling won't make it easy on her.", + "posterPath": "/hd5fnBixab6IzfUwjC5wfdbX3eM.jpg", + "backdropPath": "/umVYLVZ7T85TkIHudxK799lPnLQ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-04-27", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.078, + "voteCount": 1821, + "popularity": 7.9738 + }, + { + "id": 1532, + "title": "Starsky & Hutch", + "originalTitle": "Starsky & Hutch", + "overview": "Streetwise Detective David Starsky partners up with a more intellectual partner, Kenneth 'Hutch' Hutchinson, to protect citizens and patrol the streets of Bay City.", + "posterPath": "/aBj5oTi1uibVcXDoCJeKseJNY2d.jpg", + "backdropPath": "/9GEghzkUfxWNQ65BbRwfysKOVoS.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "1975-09-10", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 185, + "popularity": 7.9725 + }, + { + "id": 1346, + "title": "Wow! Wow! Wubbzy!", + "originalTitle": "Wow! Wow! Wubbzy!", + "overview": "Happy-go-lucky Wubbzy bounces his way into wacky, fun-filled adventures in the town of Wuzzleburg with his best friends: inventor Widget, book-smart Walden, and sweet-as-can-be Daizy.", + "posterPath": "/uaPYHkMe5vwOseuPAVgSUwnvgWN.jpg", + "backdropPath": "/kIpwdWJBtnggoD2fvMHKwFPT6RU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "2006-08-28", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 34, + "popularity": 7.9705 + }, + { + "id": 11053, + "title": "Daniel Boone", + "originalTitle": "Daniel Boone", + "overview": "Daniel Boone is an American action-adventure television series starring Fess Parker as Daniel Boone that aired from September 24, 1964 to September 10, 1970 on NBC for 165 episodes, and was made by 20th Century Fox Television. Ed Ames co-starred as Mingo, Boone's Cherokee friend, for the first four seasons of the series. Albert Salmi portrayed Boone's companion Yadkin in season one only. Dallas McKennon portrayed innkeeper Cincinnatus. Country Western singer-actor Jimmy Dean was a featured actor as Josh Clements during the 1968–1970 seasons. Actor and former NFL football player Rosey Grier made regular appearances as Gabe Cooper in the 1969 to 1970 season. The show was broadcast \"in living color\" beginning in fall 1965, the second season, and was shot entirely in California and Kanab, Utah.", + "posterPath": "/lL4XDk4wRELIqciMtjcrD4TQ5m6.jpg", + "backdropPath": "/ocGIgjb53YKuPoLykhxO2orKrlc.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 37 + ], + "genres": [ + "Action & Adventure", + "Western" + ], + "releaseDate": "1964-09-24", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 6.968, + "voteCount": 31, + "popularity": 7.9592 + }, + { + "id": 61440, + "title": "Strike the Blood", + "originalTitle": "ストライク・ザ・ブラッド", + "overview": "Kojou Akatsuki's days as an ordinary high school student in the Demon District of Itogami Island come to an abrupt end after a fateful encounter leaves him with the remarkable abilities of a vampire. It isn't long before he is thrust into the center of attention when it is discovered that he is the fourth primogenitor, an immensely powerful vampire whom most consider to be merely a legend. Fearing Kojou's destructive potential, the Lion King Organization sends in an apprentice sword-shaman, Yukina Himeragi, to monitor, and should he become a threat, kill the boy deemed the world's most powerful vampire. Forced together by circumstance, the two form an unlikely alliance as Kojou comes to terms with his abilities and they both struggle to protect the city from various emerging chaotic forces.", + "posterPath": "/rbGaCkEVS7PE5fKKMAmvO4XZXyA.jpg", + "backdropPath": "/cw8B3TTL8LSmAu31Db9MzFNJ273.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 73, + "popularity": 7.9559 + }, + { + "id": 81358, + "title": "Mr Inbetween", + "originalTitle": "Mr Inbetween", + "overview": "Ray Shoesmith is a father, ex-husband, boyfriend and best friend: tough roles to juggle in the modern age. Even harder when you’re a criminal for hire.", + "posterPath": "/cXviefgSi6KNhbbEjwOHqgpNQ0o.jpg", + "backdropPath": "/55S9cYstHjxnukajslwq2fmNL1p.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2018-09-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.221, + "voteCount": 273, + "popularity": 7.9521 + }, + { + "id": 158339, + "title": "Three Sisters", + "originalTitle": "Üç Kız Kardeş", + "overview": "Once upon a time in a beautiful yet mysterious country, there lived three sisters named Türkan, Dönüş, and Derya. As a close-knit family, they would dream of a promising future every night. Perhaps such an upbringing, that was similar to a fairy tale on the pine-scented streets of Ayvalık, had not prepared them for the grim reality of adulthood. Over time, the sisters discover that life and the choices that are accompanied by it are not as easy as they seem. Inconceivable secrets can be hidden even by those who are trusted the most and horrific illnesses can lead to the resurrection of the past. This leads them to the question: Is there anything in the world that time cannot heal?", + "posterPath": "/3kaHac8zpJykxVdXM6Fse3AYj9W.jpg", + "backdropPath": "/gCLhbOZJaYv5HjKMU4aMntLMUQs.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2022-02-22", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 7.9516 + }, + { + "id": 60732, + "title": "Maken-Ki! Battling Venus", + "originalTitle": "マケン姫っ!", + "overview": "This romantic comedy is about Takeru Ohyama, a typical perverted teenage boy. His new school doesn't require entrance exams, and it just turned co-ed! Unfortunately, his dreams of a happy high school life are dashed when he finds out the school is much more than it seems. All of the students wield a special item—a Maken—to unleash their magical abilities in duels! Can Takeru find a Maken that works for him? Even while trying to fit in at a new school and dealing with all kinds of girl problems?", + "posterPath": "/wQub2j7xzXxjtjELPqDYgDmru4r.jpg", + "backdropPath": "/eH2E2Lq6vy0oVMDOR2IdpnRP9kK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2011-10-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 43, + "popularity": 7.9461 + }, + { + "id": 61025, + "title": "@midnight with Chris Hardwick", + "originalTitle": "@midnight with Chris Hardwick", + "overview": "Chris Hardwick will lead three celebrity contestants down the ultimate internet wormhole. Culling from the darkest recesses of social media, they will compete to determine who has the funniest take on the day's pop culture.", + "posterPath": "/eVvxhRtJzl8nom2rAFxg60QkaYo.jpg", + "backdropPath": "/yB7XMbcMk7Kz7YtDuFLgEA1qDy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2013-10-21", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 19, + "popularity": 7.9399 + }, + { + "id": 100010, + "title": "Big Sky", + "originalTitle": "Big Sky", + "overview": "Private detective Cassie Dewell partners with ex-cop Jenny Hoyt on a search for two sisters who have been kidnapped by a truck driver on a remote highway in Montana. When they discover that these are not the only girls who have disappeared in the area, they must race against the clock to stop the perpetrator before another woman is taken.", + "posterPath": "/4CUK42x0TvcWvuRXfjAFQlCeRdf.jpg", + "backdropPath": "/qdZCF4FXQwOgkd8PIIQelbDqAYO.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2020-11-17", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.259, + "voteCount": 284, + "popularity": 7.9393 + }, + { + "id": 15632, + "title": "The Cleveland Show", + "originalTitle": "The Cleveland Show", + "overview": "The bizarre adventures of Cleveland Brown and his family.", + "posterPath": "/Qp4gvTc5Cp15VBdt77oXKQ54xF.jpg", + "backdropPath": "/2CmVYL5aOebxlE4cUl5xU4kcgdc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-09-27", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 439, + "popularity": 7.9364 + }, + { + "id": 994, + "title": "Inspector Rex", + "originalTitle": "Kommissar Rex", + "overview": "After his handler is killed, police dog Rex teams up with recently-divorced inspector Richard Moser to investigate crimes and solve mysteries on the streets of Vienna. And they sometimes get help from their two-legged friend, Inspector Stockinger.", + "posterPath": "/tCzMaMoOdA1cPzV3Ll32ftg3EVO.jpg", + "backdropPath": "/6x0qhCN23KE2NMOvMLVxFWYlsDd.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 10759, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1994-11-10", + "releaseYear": "1994", + "originalLanguage": "de", + "voteAverage": 7.1, + "voteCount": 264, + "popularity": 7.936 + }, + { + "id": 256128, + "title": "The Best Thing", + "originalTitle": "爱你", + "overview": "Suffering from insomnia and migraines, Shen Xifan consults a traditional Chinese medicine doctor, He Suye. As their lives intersect, an unexpected romance blossoms.", + "posterPath": "/77ZOUKUU20A63FLHHwA4QNejbTq.jpg", + "backdropPath": "/rFnuaqPvuELiAdedkxiS8oDMNTQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-02-25", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.378, + "voteCount": 37, + "popularity": 7.9314 + }, + { + "id": 117378, + "title": "Mouse", + "originalTitle": "마우스", + "overview": "A psychopath's ruthless serial murders have left the entire nation gripped with fear and chaos. A honest and justice-seeking rookie police officer and a veteran detective with tragic past, face against the killer. After the encounter with the psychopath, their lives totally change.", + "posterPath": "/qz0axqEwwIa5uaMsUYKGs9u29ut.jpg", + "backdropPath": "/4Fj8sRNtqcMPR2H2zpXQ1rHrlGz.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 10765 + ], + "genres": [ + "Crime", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-03-03", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8.4, + "voteCount": 297, + "popularity": 7.9295 + }, + { + "id": 52823, + "title": "Weekly Idol", + "originalTitle": "주간 아이돌", + "overview": "Weekly Idol is back with all new hosts. Cho Sae Ho, Hwang Kwang Hee and Nam Chang Hee are sticking together as a new unit group for Weekly Idol, a.k.a CKN Trio, to turn the idol world upside down! Get ready for their hot debut! Cho Sae Ho transforms himself into an idol expert. The hottest entertainer in the show business is marching into the idol world after taking over variety shows and he's more than ready to dominate the show with his amazing look and talents. They say idols understand each other best! As soon as being discharged from military service, Hwang Kwang Hee is reenlisted in Weekly Idol as a senior and a mentor to cheer his fellow idol friends. And lastly, the hidden card of the trio, Nam Chang Hee joins Weekly Idol. With his irresistible charms and talents, Nam Chang Hee becomes the irreplaceable member of Weekly Idol and shows off his amazing chemistry with idols.", + "posterPath": "/uZP58JwdBzCwPBh9h3ZbGsVKMAQ.jpg", + "backdropPath": "/tb0w5OFohHZAv3h5GkT8ajYnanp.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2011-07-23", + "releaseYear": "2011", + "originalLanguage": "ko", + "voteAverage": 6.85, + "voteCount": 10, + "popularity": 7.9222 + }, + { + "id": 94523, + "title": "Magia Record: Puella Magi Madoka Magica Side Story", + "originalTitle": "マギアレコード 魔法少女まどか☆マギカ外伝", + "overview": "Few people know the truth: the world is safe thanks to the Magical Girls who are forced to slay Witches. Even though these girls are putting their lives on the line for a wish, rumors say they can be saved in Kamihama City. That’s where Iroha Tamaki is headed in search of answers; she can’t remember the wish she made to Kyubey.", + "posterPath": "/5o32Jnu6MWJr7lfiGapVq0BSYiK.jpg", + "backdropPath": "/bYxnvBgl1mY2Qu26Zmg4zINrhgo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-01-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 77, + "popularity": 7.9188 + }, + { + "id": 2567, + "title": "Hercules", + "originalTitle": "Hercules", + "overview": "Follow Herc's many labors during the years he spent training on how to be a hero under the tutelage of satyr Phil. Many of the Olympian Gods and Goddesses pay visit to the young hero-to-be and help or hinder him in his new adventures.", + "posterPath": "/4icNpPakVKxuVrHSR9I8BQ5GCeK.jpg", + "backdropPath": "/RYdH7j8X1JWVc5mdMofcu9CAyY.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 16, + 10759 + ], + "genres": [ + "Comedy", + "Kids", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1998-08-31", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 317, + "popularity": 7.9177 + }, + { + "id": 242867, + "title": "Watson", + "originalTitle": "Watson", + "overview": "A year after the death of his friend and partner Sherlock Holmes at the hands of Moriarty, Dr. John Watson resumes his medical career as the head of a clinic dedicated to treating rare disorders. However, he soon finds that his old life is not done with him yet.", + "posterPath": "/budWBUBPXWlsGWxRPdkWIsBlbqu.jpg", + "backdropPath": "/mVA8aPYRm3Fu0a0qf9CKF659kWx.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-01-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 4.959, + "voteCount": 49, + "popularity": 7.9162 + }, + { + "id": 121876, + "title": "Divas Hit the Road", + "originalTitle": "花儿与少年", + "overview": "", + "posterPath": "/s4WOcsEQ1pLjdKWEy7dcFDlWfI4.jpg", + "backdropPath": "/kIgzX0QdvK3vtaoHBpj9fUy7DP9.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2014-04-25", + "releaseYear": "2014", + "originalLanguage": "zh", + "voteAverage": 6.9, + "voteCount": 12, + "popularity": 7.912 + }, + { + "id": 513, + "title": "Batman Beyond", + "originalTitle": "Batman Beyond", + "overview": "As new villains overrun Gotham City of the future, the aging Bruce Wayne hangs up the cape of the once invincible Batman. But when troubled teenager Terry McGinnis stumbles upon the Dark Knight's secret, a new alliance is forged. And a triumphant new Batman is born.", + "posterPath": "/1lgYfelvpinIMalYDt5rzudsFOH.jpg", + "backdropPath": "/vOVcZwpfWtLSdCxZZjWgrphFxhY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-01-10", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 584, + "popularity": 7.912 + }, + { + "id": 128904, + "title": "Dark Winds", + "originalTitle": "Dark Winds", + "overview": "This psychological thriller follows two Navajo police officers, Leaphorn and Chee, in the 1970s Southwest as their search for clues in a grisly double murder case forces them to challenge their own spiritual beliefs and come to terms with the trauma of their pasts.", + "posterPath": "/kDlrMN0P9ByrEH2GoRbBFeZHbcf.jpg", + "backdropPath": "/uNvpN37f9HbvsDBQFhHU5m2EnVo.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2022-06-12", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 152, + "popularity": 7.9104 + }, + { + "id": 1546, + "title": "Recess", + "originalTitle": "Recess", + "overview": "Join a group of six fourth-grade best friends at Third Street Elementary School on their fun-filled adventures in their school playground. Through the ups-and-downs of adolescence, they must wrestle with authority, avoid the school snitch, and try their best to win at kick-ball.", + "posterPath": "/nRKCxiZROeNaC5H80hVqSqWMYZr.jpg", + "backdropPath": "/PJSgscE4Es0TXmgIqp3X6ey8Ux.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "1997-09-13", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.723, + "voteCount": 497, + "popularity": 7.9093 + }, + { + "id": 39279, + "title": "Hart of Dixie", + "originalTitle": "Hart of Dixie", + "overview": "New Yorker Zoe Hart has it all figured out - after graduating top of her class from medical school, she'll follow in her father's footsteps and become a cardio-thoracic surgeon. But when her dreams fall apart, Zoe decides to work at a small practice in Bluebell, Alabama.", + "posterPath": "/xOwH2ZUtdzqeat5RhiD3oes2ASx.jpg", + "backdropPath": "/yDgfmgwHamK6DbKJ5tqb3QF6ipv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2011-09-26", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 308, + "popularity": 7.9016 + }, + { + "id": 61223, + "title": "Akame ga Kill!", + "originalTitle": "アカメが斬る!", + "overview": "Young Tatsumi travels to the capital of the Empire in order to earn money for his starving people and encounters a world of unimaginable depravity, dominated by the ruthless Prime Minister who controls the child Emperor. Tatsumi is recruited by Night Raid, a group of assassins dedicated to eliminating corruption by mercilessly killing officials and privileged nobles.", + "posterPath": "/rMpvMbSlPbm5QYfFem9fx2Jnttq.jpg", + "backdropPath": "/3XAGgklKkJhv5M9m5NkfhBYb7l8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2014-07-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.267, + "voteCount": 1157, + "popularity": 7.9006 + }, + { + "id": 13549, + "title": "Science Ninja Team Gatchaman", + "originalTitle": "科学忍者隊ガッチャマン", + "overview": "Science Ninja Team Gatchaman is a five-member superhero team that is composed of the main characters in several anime created by Tatsuo Yoshida and originally produced in Japan by Tatsunoko Productions and later adapted into several English-language versions. It is also known by the abbreviated name Gatchaman.\n\nThe original series, produced in 1972, was eponymously named Kagaku Ninja Tai Gatchaman and is most well known to the English-speaking world as the adaptation titled Battle of the Planets. The series received additional English adaptations with G-Force: Guardians of Space and ADV Films' uncut 2005 release. Tatsunoko also uses the official translation Science Commando Gatchaman, as shown in numerous related products and media. Because the English-language versions are notoriously inconsistent not only with one another but also with the original Japanese series, viewers most familiar with the English versions often experience some confusion upon re-examining the series after a long hiatus.\n\nThe original 1972 Kagaku Ninja Tai Gatchaman series was followed by an animated film, two sequel series, Gatchaman II, and Gatchaman Fighter. In the 90's, episodes from both series were dubbed into English by Saban as Eagle Riders. In 1994, the original series was remade as a condensed OVA series.", + "posterPath": "/9qPFWl6LUbA18kBkV6Hi19Pi0Tf.jpg", + "backdropPath": "/cBUFwjc7tpbLZKh4uG1IhkZUuiX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1972-10-01", + "releaseYear": "1972", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 85, + "popularity": 7.8892 + }, + { + "id": 21116, + "title": "Das Traumschiff", + "originalTitle": "Das Traumschiff", + "overview": "The series is about a cruise ship that travels to places around the world.", + "posterPath": "/6Jb2jvnbly0E0xLvpTCLsr9wD2O.jpg", + "backdropPath": "/s4ZnPpSVJwtq8sclFuYz5zYQLeS.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "1981-11-22", + "releaseYear": "1981", + "originalLanguage": "de", + "voteAverage": 4.75, + "voteCount": 16, + "popularity": 7.889 + }, + { + "id": 219937, + "title": "Dexter: Original Sin", + "originalTitle": "Dexter: Original Sin", + "overview": "In 1991 Miami, Dexter Morgan transitions from student to avenging serial killer. When his bloodthirsty urges can't be ignored any longer, Dexter must learn to channel his inner darkness. With the guidance of his father, Harry, he adopts a Code designed to help him find and kill people who deserve to be eliminated from society without getting on law enforcements' radar. This is a particular challenge for young Dexter as he begins a forensics internship at the Miami Metro Police Department.", + "posterPath": "/j5bP7spdfS0NpDLKDlqJYyJPi1j.jpg", + "backdropPath": "/jmcRdwSOb1Bo1snMtxTSWOqbvgR.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2024-12-15", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.191, + "voteCount": 335, + "popularity": 7.8835 + }, + { + "id": 77240, + "title": "Captain Tsubasa", + "originalTitle": "キャプテン翼", + "overview": "The passionate story of an elementary school student whose thoughts and dreams revolve almost entirely around the love of soccer. 11-year-old Tsubasa Oozora started playing football at a very young age, and while it was mostly just a recreational sport for his friends, for him, it developed into something of an obsession. In order to pursue his dream to the best of his elementary school abilities, Tsubasa moves with his mother to Nankatsu city, which is well-known for its excellent elementary school soccer teams. But although he was easily the best in his old town, Nankatsu has a lot more competition, and he will need all of his skill and talent in order to stand out from this new crowd.", + "posterPath": "/zHgc9nTXiP77qoy14BO7WUFTwkp.jpg", + "backdropPath": "/dSvRkislUYBu8jWpqRpUsfNFNcr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-04-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 712, + "popularity": 7.8801 + }, + { + "id": 73107, + "title": "Barry", + "originalTitle": "Barry", + "overview": "A listless hitman is enthralled by theatre acting and becomes eager to leave his old life behind in pursuit of a new career.", + "posterPath": "/j1XpwD11f0BAEI7pX6UdMhUVX2F.jpg", + "backdropPath": "/cj0zZiJfFj3xn9p0K3kx8qHSyng.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2018-03-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.896, + "voteCount": 1053, + "popularity": 7.8792 + }, + { + "id": 10710, + "title": "Wheeler Dealers", + "originalTitle": "Wheeler Dealers", + "overview": "Experienced car dealer Mike Brewer is joined by multi-talented mechanics in a monumental motoring mission: to find and restore iconic cars to later sell for a profit at their LA-based shop. In the series, Mike has the challenging job of finding vehicles that have money-making potential. He then hands them over to a mechanic, who tackles everything from bare metal re-sprays to gearbox swaps to bring them back to their former glory.", + "posterPath": "/AoX3ig7Dl6l8hz3Xj0oREF2AD5g.jpg", + "backdropPath": "/mSoxiYLinM6BNXNr3rPkwdqhA97.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 99 + ], + "genres": [ + "Reality", + "Documentary" + ], + "releaseDate": "2003-10-05", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 62, + "popularity": 7.8761 + }, + { + "id": 158258, + "title": "Duty After School", + "originalTitle": "방과 후 전쟁활동", + "overview": "When mysterious alien spheres start invading the world, high school students are called upon to join the world’s first war against extraterrestrial forces.", + "posterPath": "/vtokuvfqLbfJaSCW6EWhWtrmz2s.jpg", + "backdropPath": "/5kMIZHO8OYOC08urACEFFqmFA4p.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-03-31", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 96, + "popularity": 7.8745 + }, + { + "id": 99489, + "title": "The Penthouse", + "originalTitle": "펜트하우스", + "overview": "A woman puts everything on the line to achieve her goal of being able to move into a luxury penthouse in the Gangnam District. In the process, she gradually finds herself turning into a monster.", + "posterPath": "/wybv1VgIOMhcHdU3ooikn2LuR1o.jpg", + "backdropPath": "/pstYidrrIc3C31KG5gleALGYX9Q.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2020-10-26", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.4, + "voteCount": 242, + "popularity": 7.8742 + }, + { + "id": 2321, + "title": "The Unit", + "originalTitle": "The Unit", + "overview": "A covert team of special forces operatives risk their lives on undercover missions around the globe, while their wives maintain the homefront, protecting their husbands' secrets.", + "posterPath": "/ftwhXqizcVRo4pgqFnTysR9tAIM.jpg", + "backdropPath": "/5BIY5hMbVDbe5SjkIDD9TI7hPCI.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2006-03-07", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 202, + "popularity": 7.8732 + }, + { + "id": 1988, + "title": "ThunderCats", + "originalTitle": "ThunderCats", + "overview": "The inhabitants of the planet Thundera evacuate just before it is destroyed. They were pursued by a band of mutants. All but one of their escape ships was destroyed. Only a small group of Thunderans (Thundercats) remained. With only half engine power, the group, which was led by Jaga, had to set a course for the nearest planet. Jaga commanded their ship while the other seven were in their stasis tubes. Jaga died on their journey to Third Earth and their ship crashed there. Soon they made friends with various groups in the area and they designed a fortress. Mumm-Ra the centuries-old embodiment of evil, along with the mutants that destroyed the rest of the Thunderans are a constant threat. But Lion-O, the new leader of the Thundercats, with his weapon the \"Sword of Omens\" will help the Thundercats to have a standing chance.", + "posterPath": "/6TO2Ma9S6lhlZaXRNH7OVuPwh0U.jpg", + "backdropPath": "/lWsof34OJY8VV691mZxNq97cKkX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "1985-01-23", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 1067, + "popularity": 7.8701 + }, + { + "id": 42253, + "title": "K-ON!", + "originalTitle": "けいおん!", + "overview": "Yui Hirasawa has no clue which club to join, but she’s determined to do something this year. As luck would have it, she discovers a flyer for the Light Music Club and decides this is the club for her. But there's one problem: She first must learn guitar!", + "posterPath": "/70hf2538UAf7mzzNgvqTlWq6PDf.jpg", + "backdropPath": "/pYa81GUfKspR81chpcyVuTDqPCC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-04-03", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.921, + "voteCount": 165, + "popularity": 7.8695 + }, + { + "id": 2144, + "title": "The Lucy Show", + "originalTitle": "The Lucy Show", + "overview": "The Lucy Show is an American sitcom that aired on CBS from 1962–68. It was Lucille Ball's follow-up to I Love Lucy. A significant change in cast and premise for the 1965–66 season divides the program into two distinct eras; aside from Ball, only Gale Gordon, who joined the program for its second season, remained. For the first three seasons, Vivian Vance was the co-star.\n\nThe earliest scripts were entitled The Lucille Ball Show, but when this title was declined, producers thought of calling the show This Is Lucy or The New Adventures of Lucy, before deciding on the title The Lucy Show. Ball won consecutive Emmy Awards as Outstanding Lead Actress in a Comedy Series for the series' final two seasons, 1966–67 and 1967–68.", + "posterPath": "/sdmFoI7pKzE4XoIVrVNt4ouXlbH.jpg", + "backdropPath": "/wi0teAZxA29lG0w6bMFHWi9Xshb.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1962-10-01", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 46, + "popularity": 7.8683 + }, + { + "id": 83639, + "title": "Girl from Nowhere", + "originalTitle": "เด็กใหม่", + "overview": "A mysterious, clever girl named Nanno transfers to different schools, exposing the lies and misdeeds of the students and faculty at every turn.", + "posterPath": "/9hDXqzN5l4lBmEtb8IstXr91k8z.jpg", + "backdropPath": "/zcYqSMR4PcD4zFnVuXIGgt2Qi5.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2018-10-27", + "releaseYear": "2018", + "originalLanguage": "th", + "voteAverage": 8.504, + "voteCount": 910, + "popularity": 7.8615 + }, + { + "id": 30977, + "title": "A Certain Scientific Railgun", + "originalTitle": "とある科学の超電磁砲", + "overview": "Misaka's electro-manipulation skills - and her delightfully destructive railgun projectile movement - make her a rock star in Academy City. The techno-metropolis is filled with supernaturally powerful students known as Espers, including Misaka's flirtatious friend and roommate, Shirai Kuroko. She uses her teleportation skills as a member of the Judgment law enforcement team, fighting crime alongside fellow agent Uiharu. Joined by their friend Saten, a spunky Level 0 Esper, Misaka, Kuroko, and Uiharu have a blast taking on danger whenever and wherever it arises.", + "posterPath": "/dZt1dqw0K4JGhwcqTh8yExHYK9w.jpg", + "backdropPath": "/cGgqLzBGUY0dxsE5i3W7SXBGRbe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 113, + "popularity": 7.8476 + }, + { + "id": 2203, + "title": "First Wave", + "originalTitle": "First Wave", + "overview": "Framed for murder and on the run, a former thief struggles to expose the vanguard of an alien invasion with the help of a conspiracy theorist and newly discovered prophecies of Nostradamus.", + "posterPath": "/os8qvB3iGLbOGgmHacDLaf1QrHx.jpg", + "backdropPath": "/9q84THOPkb4rQgEGstanCoNcrDY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-09-09", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 60, + "popularity": 7.8433 + }, + { + "id": 4020, + "title": "8 Out of 10 Cats", + "originalTitle": "8 Out of 10 Cats", + "overview": "8 Out of 10 Cats is a British television comedy panel game produced by Zeppotron for Channel 4. It was first broadcast on 3 June 2005. The show is based on statistics and opinion polls, and draws on polls produced by a variety of organizations and new polls commissioned for the programme, carried out by company Harris Poll. The show's title is derived from a well-known advertising tagline for Whiskas cat food, which originally claimed that \"8 out of 10 cats prefer Whiskas\".", + "posterPath": "/1v9PXvumKXZT9AKzNjqdAADNPKS.jpg", + "backdropPath": "/s6ed2W9N7a3zz216ZbHtWSWxWG5.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-06-03", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 46, + "popularity": 7.8423 + }, + { + "id": 50, + "title": "Pacific Blue", + "originalTitle": "Pacific Blue", + "overview": "Pacific Blue is an American crime drama series about a team of police officers with the Santa Monica Police Department who patrolled its beaches on bicycles. The show ran for five seasons on the USA Network, from March 2, 1996 to April 9, 2000, with a total of one hundred and one episodes. Often compared as \"Baywatch on bikes,\" the series enjoyed a popular run among the Network's viewers, and was popular in France, Israel, Sweden, Bulgaria, Norway, Spain, Russia, Austria, Germany, Italy, South America, Canada, Denmark, Poland, and other foreign markets.", + "posterPath": "/lVyEixUIkSWSuUQ1RO4fQMXcXgB.jpg", + "backdropPath": "/6rhSLEiDRWvw9MpK94KawXDz8sg.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80, + 10768 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime", + "War & Politics" + ], + "releaseDate": "1996-03-02", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 5.341, + "voteCount": 91, + "popularity": 7.8402 + }, + { + "id": 30, + "title": "St. Elsewhere", + "originalTitle": "St. Elsewhere", + "overview": "St. Elsewhere is an American medical drama television series that originally ran on NBC from October 26, 1982 to May 25, 1988. The series starred Ed Flanders, Norman Lloyd and William Daniels as teaching doctors at a lightly-regarded Boston hospital who gave interns a promising future in making critical medical and life decisions.", + "posterPath": "/mEfcA56iisaOfnK8FsY1sSE2wLu.jpg", + "backdropPath": "/heotfhl53QuJw3YGfNFLhsfZs27.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1982-10-26", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 90, + "popularity": 7.8391 + }, + { + "id": 74225, + "title": "GOING SEVENTEEN", + "originalTitle": "GOING SEVENTEEN", + "overview": "GOING SEVENTEEN is a variety show by SEVENTEEN. The show is all about SEVENTEEN doing activities, challenges and everything else.", + "posterPath": "/kMtJMPS1f5YMLbiJrk2vJixDGEK.jpg", + "backdropPath": "/rLEJNDWfJ66n6W0pS9LTDlO36Q8.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35, + 10767 + ], + "genres": [ + "Reality", + "Comedy", + "Talk" + ], + "releaseDate": "2017-06-05", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 9.7, + "voteCount": 11, + "popularity": 7.8371 + }, + { + "id": 207863, + "title": "Mayfair Witches", + "originalTitle": "Mayfair Witches", + "overview": "An intuitive young neurosurgeon discovers that she is the unlikely heir to a family of witches. As she grapples with her newfound powers, she must contend with a sinister presence that has haunted her family for generations.", + "posterPath": "/eDl1veju2Hf3tyFmGAedtGXb9Yv.jpg", + "backdropPath": "/9DHo5qXkG0titQmr2PF92N3aYYk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 303, + "popularity": 7.8355 + }, + { + "id": 879, + "title": "All My Children", + "originalTitle": "All My Children", + "overview": "All My Children is an American television soap opera that aired on ABC for 41 years, from January 5, 1970 to September 23, 2011, and on The Online Network since April 29, 2013 via Hulu, Hulu Plus, and iTunes. Created by Agnes Nixon, All My Children is set in Pine Valley, Pennsylvania, a fictitious suburb of Philadelphia which is modeled on the actual Philadelphia suburb of Rosemont.", + "posterPath": "/4zYDW6wunTm5gm8vo4dfhpvkT0w.jpg", + "backdropPath": "/k6wPlUYtoxpQB9M63I6z2oSHLuz.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "1970-01-05", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 6.271, + "voteCount": 24, + "popularity": 7.8319 + }, + { + "id": 45956, + "title": "Celebrity Big Brother", + "originalTitle": "Celebrity Big Brother", + "overview": "Celebrity Big Brother is a British reality television game show in which a number of celebrity contestants live in an isolated house trying to avoid being evicted by the public with the aim of winning a large cash prize being donated to the winner's nominated charity at the end of the run.", + "posterPath": "/729Z7o1ycoEzk9fcPHn3iuteVfF.jpg", + "backdropPath": "/z90GEQHD9pKqfJwW4Y8tamBWAqa.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2001-03-08", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 4.898, + "voteCount": 44, + "popularity": 7.8307 + }, + { + "id": 2408, + "title": "The Wild Thornberrys", + "originalTitle": "The Wild Thornberrys", + "overview": "Travel the world with the Thornberrys and come face-to-face with blue sheep in Nepal, emus in Australia, marmots in Pakistan, flash floods in Siberia, Egyptian burial chambers, a runaway hot air balloon, a rock slide on the Karakoram Highway and more!", + "posterPath": "/6SHAvvwmOFJwFhbkAqa6MjsiO7P.jpg", + "backdropPath": "/nVj1LYX8uOsdGVb9LcLN4YUTkDs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Kids", + "Family" + ], + "releaseDate": "1998-09-01", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.959, + "voteCount": 278, + "popularity": 7.8274 + }, + { + "id": 95269, + "title": "Toilet-Bound Hanako-kun", + "originalTitle": "地縛少年花子くん", + "overview": "To be united with her crush, a hopeless romantic summons the ghost in the girls' bathroom at her school. But she's shocked when the ghost is a boy!", + "posterPath": "/dkCOZgUiJONrRelavbk5f5pYnyK.jpg", + "backdropPath": "/ccV1IW9PedwxoPRgTIsMyitft3A.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 10759, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2020-01-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 754, + "popularity": 7.8198 + }, + { + "id": 5022, + "title": "The Real World", + "originalTitle": "The Real World", + "overview": "Each year, seven strangers in their twenties, from different backgrounds and countries, are chosen to come live together in a major city.", + "posterPath": "/pqeqlmK1KEBfEfABnPjEr7oXjWL.jpg", + "backdropPath": "/65RVlBDkRXisSZzNhXVD8bU2Us4.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1992-05-21", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.588, + "voteCount": 40, + "popularity": 7.819 + }, + { + "id": 480, + "title": "Lou Grant", + "originalTitle": "Lou Grant", + "overview": "The trials of a former television station manager turned newspaper city editor, and his journalist staff.", + "posterPath": "/m03ZVjhCnkS6KakipWjQ9xGtS65.jpg", + "backdropPath": "/18wS3MdzWlaWoKB8WtjBqGx2Kac.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1977-09-20", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 27, + "popularity": 7.8174 + }, + { + "id": 32651, + "title": "The Interns", + "originalTitle": "Интерны", + "overview": "Witness the life of four young medical interns who experience various hilarious situations every day with their mentor and the hospital staff.", + "posterPath": "/nGRNrIyBo6J0WiuCtlammxtSUoC.jpg", + "backdropPath": "/fSLnRSDjSyw3yXHuXdyYMdLY7ho.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2010-03-29", + "releaseYear": "2010", + "originalLanguage": "ru", + "voteAverage": 6.9, + "voteCount": 110, + "popularity": 7.8075 + }, + { + "id": 76560, + "title": "Mrs. Fazilet and Her Daughters", + "originalTitle": "Fazilet Hanım ve Kızları", + "overview": "The story of Fazilet, mother of Hazan and Ece, eager to make money using the modeling skills of her younger daughter, Ece. While Hazan pursues a career as a coach in sports, far from her mother's wishes and falls in love with a rich spoiled man.", + "posterPath": "/hJe1m8eKqb14xE0ers6dAZm1QrS.jpg", + "backdropPath": "/A4V6jJNHNNvMdICvs3CaH70zIvh.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2017-03-25", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 7.971, + "voteCount": 69, + "popularity": 7.8061 + }, + { + "id": 21494, + "title": "V", + "originalTitle": "V", + "overview": "A re-imagining of the 1980s miniseries about the world's first encounter with an alien race in which the aliens call themselves The Visitors, and have a seemingly friendly agenda that may or may not be a cover for something more malevolent.", + "posterPath": "/mqw71hv3uZf8YuBGzoQ0l5XQNAE.jpg", + "backdropPath": "/A4eWZ3lbbouRScudg7bwZBSFOk6.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2009-11-03", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.802, + "voteCount": 764, + "popularity": 7.7974 + }, + { + "id": 80885, + "title": "Ninja Hattori-kun", + "originalTitle": "忍者ハットリくん", + "overview": "11-year-old Kenichi Mitsuba is an average kid who goes to secondary school and struggles with his studies, he is very stubborn and is very lazy and therefore always ends up frustrating his parents and teacher. He loves to find an easy way of things. He befriends Hattori Kanzo, a ninja from the Iga Clan, and he becomes part of the Mitsuba family along with his brother, Shinzo and his ninja dog, Shishimaru. Hattori helps Kenichi with his problems, and constantly keeps an eye on him, as a good friend. The main antagonist Kemumaki, a Koga ninja and his ninja cat, Kagechiyo always troubles Kenichi, mainly because of their feud over one girl, Yumeko. Kenichi asks Hattori to take revenge as a recurring storyline in many episodes. Although Hattori is a good friend, Kenichi sometimes fights with Hattori due to misunderstandings created by Kemumaki. Sometimes Jippou, Togejirou and Tsubame help him.", + "posterPath": "/9PUkpvq0wJnJ2M00dtgxKn6LptB.jpg", + "backdropPath": "/tJF9M5niAnb4fm881PGc2GwS0e1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1981-09-28", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 33, + "popularity": 7.796 + }, + { + "id": 30980, + "title": "A Certain Magical Index", + "originalTitle": "とある魔術の禁書目録", + "overview": "Touma Kamijou is a student living in Academy City, a highly advanced place in terms of technology. Despite being gauged as a level zero esper (no powers), he possesses on his right hand the Imagine Breaker, an ability that negates any power whatsoever. Touma finds a young girl named Index who is trying to run away from Necessarius, a powerful magic organization that she is member of. Blessed with the skill of memorizing any sort of information, she holds 103,000 forbidden magical books within her head. As science and magic cross paths, Touma must face several dangers amid espers and magicians who appear in the exciting scientific town.", + "posterPath": "/v3Ka0J3iMte50oiH4cmXPISM3rm.jpg", + "backdropPath": "/73uQJImy9J9w93zFEh8JtdQVOQR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Mystery" + ], + "releaseDate": "2008-10-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.54, + "voteCount": 173, + "popularity": 7.7924 + }, + { + "id": 215072, + "title": "A Shop for Killers", + "originalTitle": "킬러들의 쇼핑몰", + "overview": "A niece who lost her parents and grew up in the hands of an uncle who runs a shopping mall faces a new truth after her uncle's sudden death.", + "posterPath": "/7yUY1HUyQuybbvkAAhLzQ7x1l9g.jpg", + "backdropPath": "/zistuio0YaQoRX6nEbwxw6nPpSe.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 9648, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Mystery", + "Crime" + ], + "releaseDate": "2024-01-17", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.103, + "voteCount": 131, + "popularity": 7.7888 + }, + { + "id": 219826, + "title": "My Name Is Farah", + "originalTitle": "Adım Farah", + "overview": "A murder unintentionally witnessed by Farah, who had to flee her country and illegally struggle to survive with her son, and Tahir Lekesiz, whom she met on the same night, will change their lives forever.", + "posterPath": "/Aj4qfs1KxhdfcPphWyJiTNYXirE.jpg", + "backdropPath": "/ebtobUiMRbq0T3R1mBVI69Ux937.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2023-03-01", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 8.633, + "voteCount": 15, + "popularity": 7.7874 + }, + { + "id": 114413, + "title": "Home Economics", + "originalTitle": "Home Economics", + "overview": "The heartwarming yet uncomfortable relationship between three adult siblings: one in the 1%, one middle-class and one barely holding on.", + "posterPath": "/svYYne5mdKQVyIFwzkMVS2t35Ok.jpg", + "backdropPath": "/y4m4AgDPcoWB3f5ezc1YHsCJbGx.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-04-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 45, + "popularity": 7.7744 + }, + { + "id": 1778, + "title": "Zoey 101", + "originalTitle": "Zoey 101", + "overview": "Zoey 101 is an American television series which originally aired on Nickelodeon from January 9, 2005 until May 2, 2008. It focuses on the lives of teenager Zoey Brooks and her friends as they attend Pacific Coast Academy, a fictional boarding school in Southern California. It was created by Dan Schneider. It was initially filmed at Pepperdine University in Malibu, California, then at stages in Valencia, California beginning in season 3. It was nominated for an \"Outstanding Children's Program\" Emmy in 2005. Zoey 101 was the most expensive production ever for Nickelodeon series, as it was shot completely on location in Malibu. It was also Nickelodeon's best performance for a series premiere in almost eight years. Despite this, many critics have made negative comments about the show, its setting, and its characters.", + "posterPath": "/3eOM57RTccTSvqcYFhWwm9DAba8.jpg", + "backdropPath": "/92adEq7w76pC5Lry50N0PTsjJ1.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-01-09", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.108, + "voteCount": 1052, + "popularity": 7.7736 + }, + { + "id": 194764, + "title": "The Penguin", + "originalTitle": "The Penguin", + "overview": "With the city in peril following the seawall's collapse, Oswald \"Oz\" Cobb seeks to fill the power vacuum left by the death of Carmine Falcone and finally give his mother Francis the life he's always promised. But first, Oz must confront his enemies and his own demoralizing reputation as \"the Penguin.\"", + "posterPath": "/vOWcqC4oDQws1doDWLO7d3dh5qc.jpg", + "backdropPath": "/4TdmuuwiIiKw3JOjIuhdgYxRXnN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2024-09-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.391, + "voteCount": 1149, + "popularity": 7.7732 + }, + { + "id": 65294, + "title": "A Series of Unfortunate Events", + "originalTitle": "A Series of Unfortunate Events", + "overview": "The orphaned Baudelaire children face trials, tribulations and the evil Count Olaf, all in their quest to uncover the secret of their parents' death.", + "posterPath": "/qg7WXAatXyQq6zO3SnWnRJEayeZ.jpg", + "backdropPath": "/mMGnFsjWnxrpahPW4H5dzLEYuFm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10751, + 35, + 9648 + ], + "genres": [ + "Action & Adventure", + "Family", + "Comedy", + "Mystery" + ], + "releaseDate": "2017-01-13", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.395, + "voteCount": 970, + "popularity": 7.7621 + }, + { + "id": 79242, + "title": "Chilling Adventures of Sabrina", + "originalTitle": "Chilling Adventures of Sabrina", + "overview": "Magic and mischief collide as half-human, half-witch Sabrina navigates between two worlds: mortal teen life and her family's legacy, the Church of Night.", + "posterPath": "/yxMpoHO0CXP5o9gB7IfsciilQS4.jpg", + "backdropPath": "/8AdmUPTyidDebwIuakqkSt6u1II.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765, + 18 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-10-26", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.187, + "voteCount": 3673, + "popularity": 7.7609 + }, + { + "id": 15080, + "title": "KVN", + "originalTitle": "КВН", + "overview": "KVN is a Russian humour TV show and competition where teams compete by giving funny answers to questions and showing prepared sketches. The programme was first aired by the First Soviet Channel on November 8, 1961. Eleven years later, in 1972, when few programmes were being broadcast live, Soviet censors found the students' impromptu jokes offensive and anti-Soviet and banned KVN. The show was revived fourteen years later during the Perestroika era in 1986, with Alexander Maslyakov as its host. It is one of the longest-running TV programmes on Russian Television. It also has its own holiday on November 8, the birthday of the game, which KVN players celebrate every year since it was announced and widely celebrated for the first time in 2001.", + "posterPath": "/r7KYctEbAYvDU2zgStURDhtHvIC.jpg", + "backdropPath": "/wOryMcKBIJgxHdJmavmRtjnDnM.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 10767 + ], + "genres": [ + "Family", + "Comedy", + "Talk" + ], + "releaseDate": "1961-11-08", + "releaseYear": "1961", + "originalLanguage": "ru", + "voteAverage": 6.5, + "voteCount": 17, + "popularity": 7.7581 + }, + { + "id": 91801, + "title": "Welcome to Demon School! Iruma-kun", + "originalTitle": "魔入りました!入間くん", + "overview": "Fourteen-year-old Iruma Suzuki has just been abandoned and sold to a demon by his irresponsible parents! Surprisingly, the next thing he knows he's living with the demon who has adopted him as his new grandson and has been transferred into a school in the Netherworld where his new demon grandfather works as the principal. Thus begins the cowardly Iruma-kun's extraordinary school life among the otherworldly as he faces his true self, takes on challenges, and rises to become someone great.", + "posterPath": "/aed6I1EMR4Lbk8bdikWrndbn5Og.jpg", + "backdropPath": "/d8bAI2EDM7L2q94wDZfjb82KRoh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.275, + "voteCount": 278, + "popularity": 7.7536 + }, + { + "id": 107371, + "title": "A Will Eternal", + "originalTitle": "一念永恒", + "overview": "One will to create oceans. One will to summon the mulberry fields. One will to slaughter countless devils. One will to eradicate innumerable immortals. Only my will... is eternal. A Will Eternal tells the tale of Bai Xiaochun, an endearing but exasperating young man who is driven primarily by his fear of death and desire to live forever, but who deeply values friendship and family.", + "posterPath": "/1ZUiYywoHiNTgzIN8vBOxxcxzj0.jpg", + "backdropPath": "/8kjea5G7lMYRit7U9rSOLLZZOUh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-08-12", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 8.9, + "voteCount": 16, + "popularity": 7.7535 + }, + { + "id": 90228, + "title": "Dune: Prophecy", + "originalTitle": "Dune: Prophecy", + "overview": "Ten thousand years before the ascension of Paul Atreides, sisters Valya and Tula Harkonnen establish the fabled sect and female order that would become known as the Bene Gesserit to control the future of humankind.", + "posterPath": "/oWVohNsxkxA3u92EzRo8fTuXIS0.jpg", + "backdropPath": "/lBoHzOgft2QfpjkVVvZCqeM4ttT.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2024-11-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.286, + "voteCount": 491, + "popularity": 7.7481 + }, + { + "id": 64513, + "title": "American Crime Story", + "originalTitle": "American Crime Story", + "overview": "An anthology series centered around some of history's most famous criminal investigations.", + "posterPath": "/dtIS3Qk8ny1FWQLiuJ77MTDX5bZ.jpg", + "backdropPath": "/j8NSaQJqnSOx8vsxwEukY3oATNj.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-02-02", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 1011, + "popularity": 7.7429 + }, + { + "id": 4600, + "title": "Robin Hood", + "originalTitle": "Robin Hood", + "overview": "An updated series following the life of Robin Hood and his Merry Men in Sherwood forest. Together they steal from the rich and give to the poor - all the while avoiding their enemies Sir Guy of Gisborne and the Sheriff of Nottingham.", + "posterPath": "/wz0CSuIiUpvHtpbPxVhMQWKtLTG.jpg", + "backdropPath": "/9Xg1HLQsCteuHTKvUrtqnsKXkN4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 35 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2006-10-07", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 119, + "popularity": 7.7423 + }, + { + "id": 215866, + "title": "American Primeval", + "originalTitle": "American Primeval", + "overview": "A mother and son fleeing from their past form a found family while confronting a harsh landscape of freedom and cruelty in the American West.", + "posterPath": "/ff0s9OHGNSZL6cVteIb7LNvTnJD.jpg", + "backdropPath": "/1FxG2lmDYsCM1svJf7H79HNNwu2.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18, + 10759 + ], + "genres": [ + "Western", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-01-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 389, + "popularity": 7.7411 + }, + { + "id": 5835, + "title": "Goosebumps", + "originalTitle": "Goosebumps", + "overview": "Anything can turn spooky in this horror anthology series based on the best-selling books by master of kid horror, R.L. Stine. In every episode, see what happens when regular kids find themselves in scary situations, and how they work to confront and overcome their fears.", + "posterPath": "/q2QsZaG8ucaAZXvpQ6c4wTGqvkB.jpg", + "backdropPath": "/pRpHVBQyKwyfFnvXBDALKacqyVw.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 10762, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Kids", + "Comedy" + ], + "releaseDate": "1995-10-27", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.922, + "voteCount": 612, + "popularity": 7.741 + }, + { + "id": 25707, + "title": "Captain Tsubasa", + "originalTitle": "キャプテン翼", + "overview": "Tsubasa Ozora loves playing football since he was a little child. After moving to the japanese town of Nankatsu together with his mother, the 11-year-old boy quickly finds friends and joins the local football team of his elementary school. Together with his newly made friends and Brazilian mentor Roberto, Tsubasa starts his exciting journey to chase after his most desired dream - one day winning the FIFA World Cup.", + "posterPath": "/wXoaJS4N1aG6dY4vipxyvJ5g4pZ.jpg", + "backdropPath": "/bwQHVs25LNYpPzfvDIYdVJjk2fW.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 16 + ], + "genres": [ + "Comedy", + "Drama", + "Animation" + ], + "releaseDate": "1983-10-13", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 807, + "popularity": 7.74 + }, + { + "id": 46052, + "title": "Doctor-X: Surgeon Michiko Daimon", + "originalTitle": "ドクターX ~外科医・大門未知子~", + "overview": "Daimon Michiko is a 37-year-old freelance surgeon who is part of a questionable “doctor placement service” that has her wander from hospital to hospital. The harsh environment at the hospitals led many doctors to retire from their positions, forcing hospitals to make use of said program to fill the empty spots at least temporary. However, Michiko doesn’t look like a doctor at all with her flashy clothes and eccentric attitude. In the first episode she raises objections to a certain operation which is planned to be done by the head of a hospital who hasn’t performed an operation for a very long time. This causes Michiko to incur odium at the hospital, however, everyone becomes frozen when Michiko points out the outdated skills of the director. She also holds a scrupulous compliance when it comes to her working hours, never does any unnecessary chores that don’t require a medical license, and couldn’t care less about the power struggles within the hospitals. Nobody knows how she acquired such a top-level skill that allows her to claim exorbitant sums as reward, but her private life is an even greater mystery to everyone around her. Tanaka plays a rookie surgeon, Uchida an anesthetist, Kishibe the head of the placement service, and Ito the head of the surgical department of this institution.", + "posterPath": "/5DjPvjvhDCyy6fH8Ko7Fkq0Zbiw.jpg", + "backdropPath": "/le8QyslLxUVN5VeFLPoMPqfO1nm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2012-10-18", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 29, + "popularity": 7.7391 + }, + { + "id": 42083, + "title": "Joséphine, Guardian Angel", + "originalTitle": "Joséphine, ange gardien", + "overview": "Josephine Delamarre is a guardian angel that Heaven sends to earth. With her psychological insight, ability of persuasion and magical powers, she manages to help people who have problems. She appears at the beginning of each mission; when the mission is completed, she disappears with a click of her fingers.", + "posterPath": "/bklI8tXDDScpibUCvrAjF9KwMtF.jpg", + "backdropPath": "/weC2iMAMsrVulQX3Op6h033BY5d.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1997-12-15", + "releaseYear": "1997", + "originalLanguage": "fr", + "voteAverage": 5.759, + "voteCount": 27, + "popularity": 7.7379 + }, + { + "id": 2035, + "title": "20/20", + "originalTitle": "20/20", + "overview": "20/20 is an American television newsmagazine that has been broadcast on ABC since June 6, 1978. Created by ABC News executive Roone Arledge, the show was designed similarly to CBS's 60 Minutes but focuses more on human interest stories than international and political subjects. The program's name derives from the \"20/20\" measurement of visual acuity.\n\nThe hour-long program has been a staple on Friday evenings for much of the time since it moved to that timeslot from Thursdays in September 1987, though special editions of the program occasionally air on other nights.", + "posterPath": "/cmqmilQ6l9zAWImNCvRLtXlvQ3Q.jpg", + "backdropPath": "/qi4Wdw3Bw0WZaJHjvx0N53jTPsL.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 99 + ], + "genres": [ + "News", + "Documentary" + ], + "releaseDate": "1978-06-06", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 33, + "popularity": 7.7323 + }, + { + "id": 4278, + "title": "Friday Night Lights", + "originalTitle": "Friday Night Lights", + "overview": "The trials and triumphs of life in the small town of Dillon, Texas, where high school football is everything.", + "posterPath": "/Eu7MzZY1DldJ683z7vLkILHNRD.jpg", + "backdropPath": "/dzHSMD1IY6RriYxkS3T2ysFdvdp.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-10-03", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.993, + "voteCount": 300, + "popularity": 7.7308 + }, + { + "id": 292516, + "title": "Reminder", + "originalTitle": "Aşkı Hatırla", + "overview": "Deniz, a reliable, famous architect, and Güneş, a phenomenal editor, who decided to separate six months ago while on their way to a wedding, are swept into a journey that will change their lives with a message that arrives on their phones on the evening of the day they met by chance. This new adventure will make them discover the missing pieces of their old relationship and remind them of love.", + "posterPath": "/lce2rcSk4vn5qRNktkayCFGDHQE.jpg", + "backdropPath": "/fjFQ67nfMbNY1aEknktqqeJWReV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-06-18", + "releaseYear": "2025", + "originalLanguage": "tr", + "voteAverage": 7.45, + "voteCount": 30, + "popularity": 7.7254 + }, + { + "id": 10952, + "title": "Rawhide", + "originalTitle": "Rawhide", + "overview": "The tale of trail boss Gil Favor and his trusty foreman Rowdy Yates as they drives cattle across the old west. Along the way they meet up with adventure and drama.", + "posterPath": "/lz5B4BoaOxNJuvjGe9LcS3GpBEK.jpg", + "backdropPath": "/aiprRusbCwJEkYCnfaxJY5bX7B8.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1959-01-09", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 7.208, + "voteCount": 48, + "popularity": 7.716 + }, + { + "id": 222176, + "title": "Cat's Eyes", + "originalTitle": "Cat's Eyes", + "overview": "In 2023, Alexia, Tam and Sylia are reunited in the City of Light after many years apart. At the same time, a work of art that belonged to their father – who had died ten years earlier in a mysterious fire at his art gallery – reappears in a prestigious exhibition at the Eiffel Tower. The sisters decide to risk everything to steal the painting, in the hope that they will finally solve the mystery of what happened to their father.", + "posterPath": "/sk2qhWP7EyhcvHjvdsCbjInqJGw.jpg", + "backdropPath": "/rbYaYW9HgtuRvmnPmPbD5DRhHZb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35 + ], + "genres": [ + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2024-11-06", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.5, + "voteCount": 33, + "popularity": 7.7091 + }, + { + "id": 11366, + "title": "Big Brother", + "originalTitle": "Big Brother", + "overview": "A British reality television game show in which a number of contestants live in an isolated house for several weeks, trying to avoid being evicted by the public with the aim of winning a large cash prize at the end of the run.", + "posterPath": "/cx0YldpEMh1EBpwwdgY1Awcg6ty.jpg", + "backdropPath": "/3SWOj8ydFrxiuZdLg63fDAt4jYR.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2000-07-18", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 4.3, + "voteCount": 64, + "popularity": 7.7038 + }, + { + "id": 64572, + "title": "Alvinnn!!! and The Chipmunks", + "originalTitle": "Alvinnn!!! and The Chipmunks", + "overview": "Everyone's favorite chipmunks -- Alvin, Simon and Theodore -- are back in this computer-animated version of the classic animated series. The brothers are famous rock stars who tour around the world with their best friends, the Chipettes.", + "posterPath": "/9s8yTj7UzE45qMFr3BLHGDq7nwG.jpg", + "backdropPath": "/uWBqLLeEY8rxJEw8U4CDUv1OLmC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2015-08-03", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 61, + "popularity": 7.7026 + }, + { + "id": 73157, + "title": "Future Man", + "originalTitle": "Future Man", + "overview": "Josh Futturman, a janitor by day/world-ranked gamer by night, is tasked with preventing the extinction of humanity after mysterious visitors from the future proclaim him the key to defeating the imminent super-race invasion.", + "posterPath": "/49mOgAEa4eKpPsoBH8UvvXwEMDT.jpg", + "backdropPath": "/migX5UM28N9QmV5n9Rk3wWiApiP.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-11-14", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 545, + "popularity": 7.6962 + }, + { + "id": 94686, + "title": "Tyler Perry's Sistas", + "originalTitle": "Tyler Perry's Sistas", + "overview": "There's nothing that bonds a group of single black women together more than sidestepping the land mines of living, working and dating in Atlanta. In a sea of swipe-lefts, social media drama and unrealistic #relationshipgoals, these friends try to find their Mr. Right.", + "posterPath": "/9UtwdSXDkDMvqAdMJsbB8JLlBEH.jpg", + "backdropPath": "/8pWr7esugITmgrH22OXVmRg8xks.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-10-23", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 126, + "popularity": 7.6958 + }, + { + "id": 88384, + "title": "Astrid et Raphaëlle", + "originalTitle": "Astrid et Raphaëlle", + "overview": "Astrid Nielsen works in the library of the judicial police. She has Asperger's syndrome. With an incredible memory, she excels at analyzing files of ongoing investigations. The district commander decides to use it to the fullest, entrusting her with very complex investigations which have remained unsolved to date.", + "posterPath": "/rhzLDXqjNyXOwUWvTV0TR1SJRHd.jpg", + "backdropPath": "/myrp6HO70ZOeG2rCVjkkFZGIZUh.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2020-03-13", + "releaseYear": "2020", + "originalLanguage": "fr", + "voteAverage": 8, + "voteCount": 62, + "popularity": 7.6919 + }, + { + "id": 214875, + "title": "Rubble & Crew", + "originalTitle": "Rubble & Crew", + "overview": "Follow Rubble and his pup family as they use their awesome construction vehicles to build and repair whatever the town of Builder Cove needs in high-stakes adventures.", + "posterPath": "/5MA1tqT0yI57IlPBy0KRN6G2mhN.jpg", + "backdropPath": "/5SWWe369D4Fjs2RDVhMagNJLlps.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2023-02-03", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 31, + "popularity": 7.6897 + }, + { + "id": 46105, + "title": "The Fixies", + "originalTitle": "Фиксики", + "overview": "\"And who are the fixies - a big, big secret!\" - that's what the song about the fixies sings. Until recently, people knew almost nothing about these little people who live inside cars and appliances. Fixies take care of machines from the inside, cleaning them, lubricating them, fixing minor malfunctions. They are skilled and diligent craftsmen. Fixies are used to hiding from people, but they are everywhere: in computers, refrigerators, TVs ... Everyone remembers the cases when a non-working device suddenly began to work if it is lightly tapped. It's simple: a fixer woke up inside and made everything work. And now you can watch cartoons about these mysterious hard-working people and get to know them better...", + "posterPath": "/96CHOc8JUbLQ6SROGt2BVwtsGjH.jpg", + "backdropPath": "/irYNBBhWP5vObARm9VO2f5WJc2i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2011-03-24", + "releaseYear": "2011", + "originalLanguage": "ru", + "voteAverage": 7.2, + "voteCount": 15, + "popularity": 7.6865 + }, + { + "id": 34415, + "title": "The Killing", + "originalTitle": "The Killing", + "overview": "The Killing is an American crime drama television series based upon the Danish television series Forbrydelsen. Set in Seattle, Washington, the series follows the various murder investigations by homicide detectives Sarah Linden and Stephen Holder.", + "posterPath": "/3yiwAUNGn1rsPSVmFgVwPVJFtYf.jpg", + "backdropPath": "/LjXBJaNaBGgAsNHDYfFTwGOUWb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.845, + "voteCount": 822, + "popularity": 7.6863 + }, + { + "id": 62957, + "title": "Der Bergdoktor", + "originalTitle": "Der Bergdoktor", + "overview": "A medic lives with his small and strange family between the mountains and every episode he comes across a situation with not only his patients but also his family and friends.", + "posterPath": "/4sQVzAPWG2QfJOITaayRnxKjXuw.jpg", + "backdropPath": "/6yvjGPn6u5iWdEH4w91WQ4KsW2N.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 35 + ], + "genres": [ + "Drama", + "Family", + "Comedy" + ], + "releaseDate": "2008-02-07", + "releaseYear": "2008", + "originalLanguage": "de", + "voteAverage": 5.5, + "voteCount": 26, + "popularity": 7.6858 + }, + { + "id": 106301, + "title": "CARDFIGHT!! VANGUARD", + "originalTitle": "カードファイト!! ヴァンガード", + "overview": "Third-year middle school student Yu-yu Kondo lives in Kanazawa city of the country of Kaga. Being unable to reject requests, Yu-yu often gets caught up in his sister's hobbies. When Yu-yu could no longer bear it and ran away from home, he was saved by Megumi Okura. Megumi invites Yu-yu to the Night Amusement Park \"Wonder Hill\" where her friends gather. The amusement park is where many youths of the Vanguard-centric group \"Team Blackout\" gather. And this is how Yu-yu encounters Vanguard and was drawn in by the appeal of Vanguard and the world and friends he had never seen before.", + "posterPath": "/arGGGiyE2CK4CJ0hPfoyR0Knkvh.jpg", + "backdropPath": "/1uuWlEEAZHnPX1VnwqJc7pfo2YM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-04-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 10, + "popularity": 7.6827 + }, + { + "id": 70802, + "title": "Prophet Joseph", + "originalTitle": "یوسف پیامبر", + "overview": "This story basically follows the most important happenings in Prophet Josephs life, from the view of muslims. The most important happenings are: 1. his travel to egypt 2. his rise and growing up in Egypt 3. his life problems when his \"owner\" Zuleikha falls in love with him and wants him to return the love to him. 4. his stay in prison, and how he reforms the prisoners. 5. his return by the side of the Pharao. 6. his uprising to the side of the pharao as his advisor. 7. his brothers coming to egypt, and how he decides to make them regret their mistakes so they can receive forgivness, and peace. 8. his reunion with his family after more than 20 years.", + "posterPath": "/h7nsyR0I53gM6P1Inxl438UnqS7.jpg", + "backdropPath": "/u4yhC4Q8bS1w7FWIPpKsmY4nv9E.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-08-22", + "releaseYear": "2009", + "originalLanguage": "fa", + "voteAverage": 7.742, + "voteCount": 31, + "popularity": 7.6826 + }, + { + "id": 231, + "title": "The Soup", + "originalTitle": "The Soup", + "overview": "With this satirical series, the E! Entertainment Network returns to a format they helped create with the popular '90s show Talk Soup. Only this time instead of just poking fun at talk shows, they're setting their sights on all things in entertainment, reality TV, pop culture, and politics.", + "posterPath": "/kUCMWgkia4jnGUmbQkHpk9L95VK.jpg", + "backdropPath": "/ppwW0bAMRqEMrgu248dfEHjzNbY.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2004-07-01", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.069, + "voteCount": 29, + "popularity": 7.6813 + }, + { + "id": 6732, + "title": "Pleasant Goat and Big Big Wolf", + "originalTitle": "喜羊羊与灰太狼", + "overview": "Pleasant Goat and Big Big Wolf is a Chinese animated television series which was created by Huang Weiming, Lin Yuting and Luo Yinggeng, and produced by Creative Power Entertaining. The show is about a group of goats living on the Green Pasture, Qing Qing Grasslands/Plains, and the story revolving around a clumsy wolf who wants to eat them. Toon Express Group owns the copyrights of the characters.", + "posterPath": "/3TEX73koX9NroUA9lVwFDMTZtaC.jpg", + "backdropPath": "/4rqGhqQ3aHv5TN7z59OsnLFhD8t.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-08-03", + "releaseYear": "2005", + "originalLanguage": "zh", + "voteAverage": 7.4, + "voteCount": 17, + "popularity": 7.6811 + }, + { + "id": 44606, + "title": "Beauty and the Beast", + "originalTitle": "Beauty and the Beast", + "overview": "Detective Catherine Chandler is a smart, no-nonsense homicide detective. When she was a teenager, she witnessed the murder of her mother at the hands of two gunmen and herself was saved by someone – or something. Years have passed and while investigating a murder, Catherine discovers a clue that leads her to Vincent Keller, who was reportedly killed in 2002. Catherine learns that Vincent is actually still alive and that it was he who saved her many years before. For mysterious reasons that have forced him to live outside of traditional society, Vincent has been in hiding for the past 10 years to guard his secret – when he is enraged, he becomes a terrifying beast, unable to control his super-strength and heightened senses.", + "posterPath": "/5sXs3tFu1EGvhXJ4lkIMD6UyOea.jpg", + "backdropPath": "/lq9Luf1EEFzFI6kA5kzrU7KwS7r.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-11", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 450, + "popularity": 7.6725 + }, + { + "id": 5451, + "title": "Without Breasts There Is No Paradise", + "originalTitle": "Sin Senos no hay Paraíso", + "overview": "The tragic story of Catalina Santana, whose ambition is so strong that she will risk her life due to her obsession with having bigger breasts to attract drug lords and have all the luxuries in the world.", + "posterPath": "/pSsQ5rFalyT7ehwgeSlITgBSi5S.jpg", + "backdropPath": "/3qSacGout8iH1VqMmJQx7cmBykY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2008-06-16", + "releaseYear": "2008", + "originalLanguage": "es", + "voteAverage": 7.521, + "voteCount": 1289, + "popularity": 7.67 + }, + { + "id": 62017, + "title": "The Man in the High Castle", + "originalTitle": "The Man in the High Castle", + "overview": "Explore what it would be like if the Allied Powers had lost WWII, and Japan and Germany ruled the United States. Based on Philip K. Dick's award-winning novel.", + "posterPath": "/xhoDZbMNeyCA0BGPZQsdIiO43Dp.jpg", + "backdropPath": "/pLio7Lod6YoNMM7ybFVjIJjwIxe.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2015-01-15", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.527, + "voteCount": 1394, + "popularity": 7.6664 + }, + { + "id": 158373, + "title": "NieR:Automata Ver1.1a", + "originalTitle": "NieR:Automata Ver1.1a", + "overview": "The distant future, 5012.\n\nThe sudden aerial invasion of Earth by <Aliens> and their creations <Machine Lifeforms> led mankind to the brink of extinction. The surviving number of humans who took refuge on the moon to organize a counterattack using <android> soldiers to recapture Earth.\n\nHowever, the war reaches a stalemate as the <Machine Lifeforms> continue to multiply infinitely. In turn, humanity deploys anew unit of android soldiers as an ultimate weapon: <YoRHa>\n\nNewly dispatched to Earth <2B> joins <9S>, the analyst currently stationed there, where amid their mission, they encounter a myriad of mysterious phenomena...\n\nThis is the story of these lifeless <androids> and their endless fight for the sake of mankind.", + "posterPath": "/qHSCYOXHV3EKXKkMxUvC9rGx4Av.jpg", + "backdropPath": "/bGRKHQsmLUz2hQB8W3nYnCIc9Y0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.068, + "voteCount": 168, + "popularity": 7.6646 + }, + { + "id": 76231, + "title": "Mayans M.C.", + "originalTitle": "Mayans M.C.", + "overview": "Set in the aftermath of Jax Teller’s death, Ezekiel \"EZ\" Reyes is fresh out of prison and a prospect in the Mayans M.C. charter on the Cali/Mexi border. Now, EZ must carve out his new identity in a town where he was once the golden boy with the American Dream in his grasp.", + "posterPath": "/510A0upV9WRAynEgs1E2B3eBxi5.jpg", + "backdropPath": "/bPt7NTQQvrEIBIqwfgWOkjDTIZn.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2018-09-04", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 804, + "popularity": 7.6625 + }, + { + "id": 86423, + "title": "Locke & Key", + "originalTitle": "Locke & Key", + "overview": "After their dad's murder, three siblings move with their mom to his ancestral estate, where they discover magical keys that unlock powers — and secrets.", + "posterPath": "/zuxGfRKziGHPogipnEXXykdDmyT.jpg", + "backdropPath": "/nYxqUQaYGUv3pgMfe9BQ2WtUMQu.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2020-02-07", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.765, + "voteCount": 1380, + "popularity": 7.6614 + }, + { + "id": 12323, + "title": "Beyond Belief: Fact or Fiction", + "originalTitle": "Beyond Belief: Fact or Fiction", + "overview": "Can you tell the difference between fact and fiction? Several stories of strange, mysterious and incredible occurrences are chronicled during each episode. It is up to the viewer to decide which stories actually happened and which were completely fabricated by the show’s writers. The answer is revealed by Jonathan Frakes at the conclusion of each episode.", + "posterPath": "/3UgSHZGJwxZC03sx96ITTZDmquC.jpg", + "backdropPath": "/meku4H3J2lIxIqo7M8wkCqJ52cb.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 9648, + 10764 + ], + "genres": [ + "Documentary", + "Mystery", + "Reality" + ], + "releaseDate": "1997-05-25", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 58, + "popularity": 7.6607 + }, + { + "id": 122194, + "title": "CSI: Vegas", + "originalTitle": "CSI: Vegas", + "overview": "Facing an existential threat that could bring down the Crime Lab, a brilliant team of forensic investigators must welcome back old friends and deploy new techniques to preserve and serve justice in Sin City.", + "posterPath": "/8DtOnaOQPiptM9umpV0Xntwv9t3.jpg", + "backdropPath": "/aP0V3qTB1iy3JW90EKVpLPNhMia.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2021-10-06", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 303, + "popularity": 7.6581 + }, + { + "id": 46440, + "title": "Samurai Girls", + "originalTitle": "百花繚乱", + "overview": "The story takes place in Japan in the early 21st century, in an alternate reality where the Tokugawa Shogunate has remained in power. In this reality, student councils are tasked with oppressing schools. Yagyuu Muneakira is a high school student who rebels against his student council with the help of girls who've had the names of famous samurai heroes passed on to them. ", + "posterPath": "/HTVddlolhBpsE2JDPRpUrfv74G.jpg", + "backdropPath": "/3KmLNxQu4NNnqw0gYX8ZAI9V2s3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2010-10-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 34, + "popularity": 7.6527 + }, + { + "id": 155537, + "title": "Black Bird", + "originalTitle": "Black Bird", + "overview": "As Jimmy Keene begins a 10-year prison sentence, he gets an incredible offer: If he can elicit a confession from suspected killer Larry Hall, Jimmy will be freed. Completing this mission becomes the challenge of a lifetime.", + "posterPath": "/qu312pwM61NPTr7nexvovCClDNP.jpg", + "backdropPath": "/o2C222QdW4dmoyd2dgPlnCcI3cW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-07-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.076, + "voteCount": 869, + "popularity": 7.6445 + }, + { + "id": 110356, + "title": "My Name", + "originalTitle": "마이 네임", + "overview": "Following her father's murder, a revenge-driven woman puts her trust in a powerful crime boss — and enters the police force under his direction.", + "posterPath": "/l3Bn2jgYndSFvcPpddqMxQXiiCe.jpg", + "backdropPath": "/x0eIZv8bJYjfTu7VkTOxHU8B91c.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2021-10-15", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8.232, + "voteCount": 993, + "popularity": 7.6428 + }, + { + "id": 64752, + "title": "The Lion Guard", + "originalTitle": "The Lion Guard", + "overview": "Simba's son, Kion, assembles a group of animals to protect the Pride Lands, known as the Lion Guard.", + "posterPath": "/AtDL8ZrOZxW1jakT2R3LcMdLvQD.jpg", + "backdropPath": "/4Hpw6RzaIjEotwc7vLv3cgZ9GST.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16 + ], + "genres": [ + "Kids", + "Animation" + ], + "releaseDate": "2016-01-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.594, + "voteCount": 255, + "popularity": 7.6427 + }, + { + "id": 207784, + "title": "Delicious in Dungeon", + "originalTitle": "ダンジョン飯", + "overview": "Dungeons, dragons... and delicious monster stew!? Adventurers foray into a cursed buried kingdom to save their friend, cooking up a storm along the way.", + "posterPath": "/9t3DYdGxK3i4WRzKvIZwJd4kBnr.jpg", + "backdropPath": "/xC5GyeIzLsSRizJE5LedGShNgBa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 271, + "popularity": 7.6389 + }, + { + "id": 44914, + "title": "The Return", + "originalTitle": "La Patrona", + "overview": "La Patrona is a Spanish-language telenovela produced by United States-based television network Telemundo Studios, Miami and Mexican Argos Comunicación. The telenovela is a remake of the Venezuelan telenovela La Dueña, written by José Ignacio Cabrujas.\n\nThe name reflects a local term or slang in Mexico to address a person recognized as the main boss. However, the title is also a reflection of both the protagonist and the antagonist struggle to conquer power, authority and respect in a labor field traditionally deemed to be a man's job.", + "posterPath": "/sY5Uf3VQmxA3MVxSgdDrHQcKwCV.jpg", + "backdropPath": "/2pjskb0guIdWvdSvQbjDvPfQYxm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2013-01-08", + "releaseYear": "2013", + "originalLanguage": "es", + "voteAverage": 7.693, + "voteCount": 309, + "popularity": 7.634 + }, + { + "id": 258901, + "title": "SANDA", + "originalTitle": "SANDA", + "overview": "In near-future Japan with ultra-low birthrates, children are treasured but monitored. Santa is banned as dangerous. One snowy December 25th, middle-schooler Kazushige Sanda, descendant of Santa, is attacked by classmate Fuyumura who wants him to find her missing friend, Ono. \"Santa, please find my friend.\" To protect children from adults, Sanda decides to become Santa and fight the adults.", + "posterPath": "/uPMJU0u3kOk9ITrsJnHpBFvEK0H.jpg", + "backdropPath": "/7gphZmKk3BVAeIK4AdN8GLmtoZ2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery", + "Drama" + ], + "releaseDate": "2025-10-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 11, + "popularity": 7.6334 + }, + { + "id": 62959, + "title": "BattleBots", + "originalTitle": "BattleBots", + "overview": "BattleBots promises to wow viewers with next generation robots—bigger, faster and stronger than ever before. The show will focus on the design and build of each robot, the bot builder backstories, their intense pursuit of the championship and the spectacle of the event.", + "posterPath": "/zqZiksZMPIhOIVrnDLV03XZ6x5A.jpg", + "backdropPath": "/mwFItkiu74dDVCxuFG5UezVFVPJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2015-06-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 50, + "popularity": 7.631 + }, + { + "id": 25117, + "title": "Tomorrow's Joe", + "originalTitle": "あしたのジョー", + "overview": "A young drifter named Joe Yabuki wanders through the slums of Tokyo, but when the local ruffians try to give him a hard time he teaches them a rough lesson with his fists. The spectacle sparks a gleam in the eye of an old drunk who happens to be watching—Danpei Tange, a failed boxer and former coach who sees something special in the boy. He pleads with Joe to train with him off, but the cocky young fighter brushes him. Later, though, when Joe is arrested and put in a juvenile detention facility, he realizes that he’s going to need to hone his raw fighting skills if he wants to survive. Thus is born a partnership that might just take Joe all the way to the top…", + "posterPath": "/b7xpXIT5imM3G92Asshnobt8VNi.jpg", + "backdropPath": "/tFwx94xIVKI5heRXdcmYLoI0GhU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1970-04-01", + "releaseYear": "1970", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 27, + "popularity": 7.6239 + }, + { + "id": 80867, + "title": "I Want You To Make a Disgusted Face and Show Me Your Underwear", + "originalTitle": "嫌な顔されながらおパンツ見せてもらいたい", + "overview": "A project where a number of women in different costumes show their panties while they make a disgusted face.", + "posterPath": "/gZFxEYP1ALHapZg4Wk1hJ4L1w4L.jpg", + "backdropPath": "/rniGk0uIxTtZkoQGTnp3nJeYSXX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-07-14", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 24, + "popularity": 7.62 + }, + { + "id": 117465, + "title": "Hell's Paradise", + "originalTitle": "地獄楽", + "overview": "For a chance at a pardon, a ninja assassin joins other condemned criminals on a journey to a mysterious island to retrieve an elixir of immortality.", + "posterPath": "/1V9I7SvZbYoMbSvdtnlkkq9SB1k.jpg", + "backdropPath": "/vjiIuR3XGpoGSumQ7DziPAmxIYR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 349, + "popularity": 7.6145 + }, + { + "id": 68569, + "title": "Mother", + "originalTitle": "Anne", + "overview": "A child being scolded rescued by her teacher after falsifying her death", + "posterPath": "/p5SrEMWe1UiETqy5QkwRrBFcyna.jpg", + "backdropPath": "/mZD8Y1qlVUY7kwExzdUgZXjiyOK.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2016-10-25", + "releaseYear": "2016", + "originalLanguage": "tr", + "voteAverage": 7.725, + "voteCount": 40, + "popularity": 7.6131 + }, + { + "id": 66046, + "title": "Mystery Music Show: King of Mask Singer", + "originalTitle": "미스터리 음악쇼 복면가왕", + "overview": "Competitors are given elaborate masks to wear in order to conceal their identity, thus removing factors such as popularity, career and age that could lead to prejudiced voting. In the first round, a pair of competitors sing the same song, while in the second and third rounds they each sing a solo song. After the First Generation, the winner of the Third Round goes on to challenge the Mask King, and is either eliminated or replaces the previous Mask King through live voting. The identities of the singers are not revealed unless they have been eliminated.", + "posterPath": "/vlnAfmirzYx1TSxXuaPhHjkPPmK.jpg", + "backdropPath": "/xDXaptzkHFHGyQ2QGZ3aGnEE1dK.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ko", + "voteAverage": 5.6, + "voteCount": 11, + "popularity": 7.6125 + }, + { + "id": 60580, + "title": "Jodha & Akbar", + "originalTitle": "Jodha Akbar", + "overview": "Jodha Akbar is an epic drama about a sixteenth century story of the political marriage of convenience between a Mughal emperor Abu'l-Fath Jalal ud-din Muhammad Akbar and a Rajput princess Jodha Bai. The show focuses on how their political marriage brings love between them to an extent that it changed the fate of India. This period drama also portrays the wars of that time along with the relations between the Mughals and the Rajputs. The drama also focuses on the functioning of the queens, the courts, courtesans, the ministers and their influence on the love story of Jalal ud-din Muhammad Akbar and Jodha Bai. The show also highlights on how Mughal emperor Jalal ud-din Muhammad acquires the title of Akbar from the people.", + "posterPath": "/w95kRZ4YvebswNjLBwdaOHCah0K.jpg", + "backdropPath": "/dkyZ6k3FNcC5mxh2X2h48dfFMay.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2013-06-18", + "releaseYear": "2013", + "originalLanguage": "hi", + "voteAverage": 5.5, + "voteCount": 14, + "popularity": 7.6086 + }, + { + "id": 1437, + "title": "Firefly", + "originalTitle": "Firefly", + "overview": "In the year 2517, after the arrival of humans in a new star system, follow the adventures of the renegade crew of Serenity, a \"Firefly-class\" spaceship.", + "posterPath": "/vZcKsy4sGAvWMVqLluwYuoi11Kj.jpg", + "backdropPath": "/te4VJNMipsFQofCkiytuyswGDlV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-09-20", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 8.342, + "voteCount": 2253, + "popularity": 7.6016 + }, + { + "id": 68005, + "title": "Yosuga no Sora", + "originalTitle": "ヨスガノソラ", + "overview": "Kasugano Haruka and his sister Sora have lost both their parents in an accident, and with them all their support. They decide to move out of the city to the rural town where they once spent summers with their late grandfather. At first everything seems familiar and peaceful, but changes come as Haruka starts to remember things from his youth.", + "posterPath": "/9F80WGUD6WYfoEDMImf988NlXhC.jpg", + "backdropPath": "/5nPRHOeP8D3O4bfgCICu218H1OI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2010-10-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 92, + "popularity": 7.6003 + }, + { + "id": 133727, + "title": "Acapulco", + "originalTitle": "Acapulco", + "overview": "In 1984, Maximo Gallardo's dream comes true when he gets the job of a lifetime at Acapulco's hottest resort, Las Colinas. But he soon realizes that working there will be far more complicated than he ever imagined.", + "posterPath": "/gzBkO4zFr75A13GKnjvTeg25pze.jpg", + "backdropPath": "/1zWgb5owPiYWmoJ5SEpv6XJb8CQ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-10-08", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.323, + "voteCount": 362, + "popularity": 7.599 + }, + { + "id": 1481, + "title": "The 4400", + "originalTitle": "The 4400", + "overview": "4400 centers on the return of 4400 people who, previously presumed dead or reported missing, reappear on Earth. Though they have not aged physically, some of them seem to have deeper alterations ranging from superhuman strength to an unexplained healing touch. A government agency is formed to track the 4400 people after one of them commits a murder.", + "posterPath": "/nWpatnVtPVxjsn7mMiRZNAalEMf.jpg", + "backdropPath": "/2yWQg2FBynT8vFQw3kmBlOTdrXy.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-07-11", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.176, + "voteCount": 698, + "popularity": 7.5971 + }, + { + "id": 36994, + "title": "Workaholics", + "originalTitle": "Workaholics", + "overview": "The misadventures of three recent college dropouts, roommates, and co-workers at a telemarketing company and their drug dealer.", + "posterPath": "/kXg4tFUHN7h7bNdBTeLIIKqw9UJ.jpg", + "backdropPath": "/zDSvUcCR2nkrGhLUTIgqQ18P27U.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-04-06", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.408, + "voteCount": 289, + "popularity": 7.596 + }, + { + "id": 43221, + "title": "Finding Your Roots", + "originalTitle": "Finding Your Roots", + "overview": "Noted Harvard scholar Henry Louis Gates, Jr. has been helping people discover long-lost relatives hidden for generations within the branches of their family trees. Professor Gates utilizes a team of genealogists to reconstruct the paper trail left behind by our ancestors and the world’s leading geneticists to decode our DNA and help us travel thousands of years into the past to discover the origins of our earliest forebears.", + "posterPath": "/h9JX8nX12nl2AfUdO3aqg2IwmGu.jpg", + "backdropPath": "/6dC7Mq1jBZOfKB5tkH09yn7OYHp.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2012-03-24", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 15, + "popularity": 7.5892 + }, + { + "id": 14009, + "title": "The Addams Family", + "originalTitle": "The Addams Family", + "overview": "A satirical inversion of the ideal of the perfect American nuclear family, they are an eccentric wealthy family who delight in everything grotesque and macabre, and are never really aware that people find them bizarre or frightening. In fact, they themselves are often terrified by \"normal\" people.", + "posterPath": "/9eqmCtAY9d2WwafLBYXRKYepgeA.jpg", + "backdropPath": "/vPWjtsNklEMYiSF0BiQ1QLHbCSC.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1964-09-18", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.996, + "voteCount": 420, + "popularity": 7.5892 + }, + { + "id": 3719, + "title": "48 Hours", + "originalTitle": "48 Hours", + "overview": "This newsmagazine series investigates intriguing crime and justice cases that touch on all aspects of the human experience. Over its long run, the show has helped exonerate wrongly convicted people, driven the reopening — and resolution — of cold cases, and changed numerous lives. CBS News correspondents offer an in-depth look into each story, with the emphasis on solving the mystery at its heart.", + "posterPath": "/3EcsnopdPnX0mACZTECCUkP4ARV.jpg", + "backdropPath": "/pj4yCkPyG9atZtvcPs4wx5iVOBH.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 80, + 99 + ], + "genres": [ + "News", + "Crime", + "Documentary" + ], + "releaseDate": "1988-01-19", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 51, + "popularity": 7.5836 + }, + { + "id": 123591, + "title": "The Smurfs", + "originalTitle": "Les Schtroumpfs", + "overview": "Blue and small, standing only three apples high, the Smurfs might be hard to tell apart at first. However, each Smurf is a distinct individual with his or her own personality, their names say it all", + "posterPath": "/uiOT3X9p9eB1V5QQeSP0yAIP5gV.jpg", + "backdropPath": "/znf5Z1LSFYFOsRGClXwclqIhf83.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2021-04-18", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 7.1, + "voteCount": 187, + "popularity": 7.5784 + }, + { + "id": 135934, + "title": "The Legend of Vox Machina", + "originalTitle": "The Legend of Vox Machina", + "overview": "They're rowdy, they're ragtag, they're misfits turned mercenaries for hire. Vox Machina is more interested in easy money and cheap ale than actually protecting the realm. But when the kingdom is threatened by evil, this boisterous crew realizes that they are the only ones capable of restoring justice.", + "posterPath": "/b5A0qkGrZJTyVv3gT6b8clFEz9R.jpg", + "backdropPath": "/xRQNXmR9HG32FJqaRh8TqVUMfTA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-27", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 546, + "popularity": 7.5783 + }, + { + "id": 35442, + "title": "Cardfight!! Vanguard", + "originalTitle": "カードファイト!! ヴァンガード", + "overview": "Aichi Sendou is a timid third-year middle school student who has always lived his life looking backwards rather than forward. However, he has a card called \"Blaster Blade\" that was given to him when he was little, which is the sole thing that sustains him. Then Toshiki Kai, a cool-hearted high schooler, introduces Aichi to a card game called \"Vanguard\". When participants battle they picture they are on a planet called \"Clay\", and since Vanguard features a never before seen game system it has become popular around the world. Aichi immediately likes Vanguard, so he begins to play it with his friends Misaki Togura and Kamui Katsuragi, and others like his new rival Kai (who is one of the best Vanguard players). Aichi plays every day and he strives with all his soul and heart to play better, so when he battles Kai, Kai will recognize Aichi's worth.", + "posterPath": "/mm0ULBbs9XrHq4OAE8VUa84wvgi.jpg", + "backdropPath": "/3oJOO1vYBsXqkTbWtt8RFXLTfx3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2011-01-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 7.5775 + }, + { + "id": 85021, + "title": "Gangs of London", + "originalTitle": "Gangs of London", + "overview": "When the head of a criminal organisation, Finn Wallace is assassinated, the sudden power vacuum his death creates threatens the fragile peace between the intricate web of gangs operating on the streets of the city. Now it’s up to the grieving, volatile and impulsive Sean Wallace to restore control and find those responsible for killing his father.", + "posterPath": "/tcs6El8ZI1s9CUSHJcrGP6b01F9.jpg", + "backdropPath": "/9aJ6KwLASA38WzdMRVjk7ILpuTv.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2020-04-23", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.808, + "voteCount": 631, + "popularity": 7.5716 + }, + { + "id": 1454, + "title": "Hero", + "originalTitle": "ヒーロー", + "overview": "Former delinquent turned unconventional prosecutor Kohei Kuryu shakes up the legal world with his street-smart instincts and unorthodox style, clashing with ambitious colleague Maiko Amamiya while his relentless pursuit of justice gradually transforms those around him.", + "posterPath": "/iYn15DBsknTElGBG60kyf1OSbS2.jpg", + "backdropPath": "/5QDEBG1SChssTjzzFYznTyMw1iE.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-01-08", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 31, + "popularity": 7.5592 + }, + { + "id": 4624, + "title": "Roswell", + "originalTitle": "Roswell", + "overview": "Bizarre things start happening in the little New Mexico town where UFOs were spotted in 1947. Cut to 1999, when a cute high-school student saves the life of a teenage waitress. Surrounded by cliques of clever, angst-filled classmates, the two form a bond that threatens the survival of a secret universe involving superhuman powers, a yen for hot sauce and an alien gene pool.", + "posterPath": "/47CaTpah62bxbAkWANDzZdJxkxw.jpg", + "backdropPath": "/qq9ZQLpYAj0PwI2uWPPuLyCNW6h.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1999-10-06", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.705, + "voteCount": 468, + "popularity": 7.559 + }, + { + "id": 2199, + "title": "Tales of the Unexpected", + "originalTitle": "Tales of the Unexpected", + "overview": "A British television anthology of stories, often with sinister and wryly comedic undertones, and a twist at the end. With early episodes written and presented by Roald Dahl, the series featured a plethora of big name guest stars.", + "posterPath": "/vfG5gafbtxtfMvgDdNi56evx4Og.jpg", + "backdropPath": "/pd6OT8CjLWM48BOY7qubIKNbtYl.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1979-03-24", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 47, + "popularity": 7.5559 + }, + { + "id": 111819, + "title": "TSUKIMICHI -Moonlit Fantasy-", + "originalTitle": "月が導く異世界道中", + "overview": "Makoto Misumi is just an ordinary high school student living a regular life, but all of a sudden gets summoned to the other world to become a \"hero.\" The goddess of the other world, however, insults him for being different and strips his \"hero\" title, before casting him off to the wilderness at the edge of the world. As he wanders the wilderness, Makoto encounters dragons, spiders, orcs, dwarves, and all sorts of non-human tribes. Because Makoto comes from a different world, he is able to unleash unimaginable magical powers and combat skills. But just how will he handle his encounters with various species and survive in his new environment. In this fantasy, Makoto tries to transform the other world into a better place despite the humans and gods having turned their backs on him.", + "posterPath": "/7XQ2dMEARAdUZQscnIJFPI54q3r.jpg", + "backdropPath": "/ciPDoPMqd3icCBHsIlhIb3UyOd2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2021-07-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 396, + "popularity": 7.5481 + }, + { + "id": 76075, + "title": "Laid-Back Camp", + "originalTitle": "ゆるキャン△", + "overview": "Nadeshiko, a high school student who had moved from Shizuoka to Yamanashi, decides to see the famous, 1000 yen-bill-featured Mount Fuji. Even though she manages to bike all the way to Motosu, she's forced to turn back because of worsening weather. Unable to set her eyes on her goal, she faints partway to her destination. When she wakes up, it's night, in a place she's never been before, with no way of knowing how to get home. Nadeshiko is saved when she encounters Rin, a girl who is out camping by herself. This outdoorsy girls story begins with this first encounter between Nadeshiko and Rin.", + "posterPath": "/fsTqmos9zikrNJfP0uwFsmuZOh.jpg", + "backdropPath": "/cm3lmKnEAYLs2eJmn4AcFIu18X4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 110, + "popularity": 7.5449 + }, + { + "id": 90027, + "title": "Carnival Row", + "originalTitle": "Carnival Row", + "overview": "In a mystical and dark city filled with humans, fairies and other creatures, a police detective investigates a series of gruesome murders leveled against the fairy population. During his investigation, the detective becomes the prime suspect and must find the real killer to clear his name.", + "posterPath": "/jyhxT10e2z9IDsKoIQDKhyxSQJt.jpg", + "backdropPath": "/7gfLuaqVBdtNxKIxp9uc8sOUlQg.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10765 + ], + "genres": [ + "Crime", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-08-29", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.699, + "voteCount": 1339, + "popularity": 7.5442 + }, + { + "id": 250923, + "title": "Nobody Wants This", + "originalTitle": "Nobody Wants This", + "overview": "An agnostic sex podcaster and a newly single rabbi fall in love, but can their relationship survive their wildly different lives and meddling families?", + "posterPath": "/cUpIceeJJoRqUHSCzh6jRSmlpkA.jpg", + "backdropPath": "/q8BwtVM3t0SOtB1nZsXpOKZp8IM.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-09-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.484, + "voteCount": 218, + "popularity": 7.5419 + }, + { + "id": 2222, + "title": "The Division", + "originalTitle": "The Division", + "overview": "The Division is an American crime drama television series created by Deborah Joy LeVine and starring Bonnie Bedelia. The series focused on a team of women police officers in the San Francisco Police Department. The series premiered on Lifetime on January 7, 2001 and ended on June 28, 2004 after 88 episodes.", + "posterPath": "/5FE02HHz3Uv9T0yThBq1SahJ4yV.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-01-07", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.077, + "voteCount": 13, + "popularity": 7.5413 + }, + { + "id": 46879, + "title": "Mickey Mouse", + "originalTitle": "Mickey Mouse", + "overview": "In this series of cartoon shorts, Mickey Mouse finds himself in silly situations all around the world! From New York to Paris to Tokyo, Mickey experiences new adventures with his friends!", + "posterPath": "/aAJ5T2Ab28vbbP9s6wWqdtK3arQ.jpg", + "backdropPath": "/qqaCwVzDmocRBI5Kl4RGgfwabn1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 18 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Drama" + ], + "releaseDate": "2013-06-28", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.605, + "voteCount": 233, + "popularity": 7.5358 + }, + { + "id": 246485, + "title": "The Dead Girls", + "originalTitle": "Las muertas", + "overview": "The story of the Baladro sisters, known as “Las Poquianchis”, who built a brothel empire and became merciless killers in 1960s Mexico.", + "posterPath": "/29VlRRFkGiFJFRZJBrYGPF2Ypz9.jpg", + "backdropPath": "/rmIQiFYnTDttJMehqkw2GEaO18Y.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-09-10", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.1, + "voteCount": 60, + "popularity": 7.5328 + }, + { + "id": 115464, + "title": "Last Summer", + "originalTitle": "Son Yaz", + "overview": "Idealist Public Prosecutor Selim Kara receives an offer he cannot refuse from the organized crime leader Selçuk Taşkın, whom he sent to prison 8 years ago. Selçuk Taşkın wants to testify in one of Prosecutor Selim's cases and his testimony will destroy the whole criminal organization. However, there is only one condition for this; the personal protection of his son, Akgün Gökalp Taşkın.", + "posterPath": "/x9OMWw7OIoAMmFV6vFidAoPt6QU.jpg", + "backdropPath": "/4Cz7CI71yz2WcMAcKoX3AlxnCHS.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2021-01-01", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 8.25, + "voteCount": 28, + "popularity": 7.5307 + }, + { + "id": 36046, + "title": "City Hunter", + "originalTitle": "シティーハンター", + "overview": "Ryo Saeba works the streets of Tokyo as the City Hunter. He's a \"sweeper\" and with his sidekick Kaori Makimura, he keeps the city clean. People hire the City Hunter to solve their dangerous problems, which he does with a Colt Python. When Ryo's not working on a case, he's working on getting the ladies, and Kaori must keep him in check with her trusty 10 kg hammer.", + "posterPath": "/4BA0FDKiJD0N4ljYhlwOVjQKszR.jpg", + "backdropPath": "/saZTZ8t7rgC5OysidZoUCqMVS4o.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "1987-04-06", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 58, + "popularity": 7.5253 + }, + { + "id": 155780, + "title": "Batwheels", + "originalTitle": "Batwheels", + "overview": "The Batwheels are a team of sentient super-powered crimefighting vehicles that help Batman, Robin and Batgirl—as well as a host of additional DC Super Heroes—keep Gotham City safe. Created only recently by the Batcomputer, our mechanized heroes must navigate the growing pains of being a newly formed super-team as well as the growing pains that come with just being a kid.", + "posterPath": "/nDNUuNNoFaZFNjSwWCG5XwaOf9f.jpg", + "backdropPath": "/tRo9pMhE2OOrePz4Pw3eirPBnxr.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Comedy" + ], + "releaseDate": "2022-10-15", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 22, + "popularity": 7.5065 + }, + { + "id": 16997, + "title": "The Pacific", + "originalTitle": "The Pacific", + "overview": "Track the intertwined real-life stories of three U.S. Marines – Robert Leckie, John Basilone, and Eugene Sledge – across the vast canvas of the Pacific Theater during World War II. A companion piece to the 2001 miniseries Band of Brothers.", + "posterPath": "/x9Y1IMFdY8Ma222KcQadFEau0EB.jpg", + "backdropPath": "/nWfpVLgioDXQsAbfL6UJxYz6d3d.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10768 + ], + "genres": [ + "Drama", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2010-03-14", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.781, + "voteCount": 2445, + "popularity": 7.5051 + }, + { + "id": 55165, + "title": "The investigation was conducted", + "originalTitle": "Следствие вели...", + "overview": "The author's cycle of documentary programs of the NTV channel about the most high-profile crimes committed in the USSR. The story is accompanied by stories about the daily life of the inhabitants of the USSR. Presenter - Leonid Kanevskiy. Documentary television films are devoted to criminal cases from 1917 to 1991.", + "posterPath": "/fTRRrjf3KPpiFx1knqPpvczZdf2.jpg", + "backdropPath": "/pTjml856AMpYbr0qI0iKZVX60q4.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 99 + ], + "genres": [ + "Mystery", + "Documentary" + ], + "releaseDate": "2006-01-20", + "releaseYear": "2006", + "originalLanguage": "ru", + "voteAverage": 8.1, + "voteCount": 16, + "popularity": 7.5008 + }, + { + "id": 517, + "title": "The Ultimate Fighter", + "originalTitle": "The Ultimate Fighter", + "overview": "The next generation of UFC stars are produced in an intense elimination tournament that separates the contenders from the pretenders.", + "posterPath": "/k3NlkqDeYmKTsx7QIQWjXXo0DeW.jpg", + "backdropPath": "/n2sp8LcMza8lK83Q4BatOc4zgrM.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2005-01-17", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 49, + "popularity": 7.4991 + }, + { + "id": 30093, + "title": "Mobile Fighter G Gundam", + "originalTitle": "機動武闘伝Gガンダム", + "overview": "In the Year F.C. (Future Century) 60, much of mankind inhabits space colonies which orbit the Earth. Dominance over the colonies is decided once every four years by a large tournament in which each nation sends a single representative to fight the others with a giant robot called a Gundam. Domon Kashuu is selected to represent Neo-Japan in one of these tournaments, but he fights less to ensure his nation's victory than to find his brother, who has been blamed for the deaths of Domon's parents and the disappearance of a very dangerous weapon, the Devil Gundam (Dark Gundam).", + "posterPath": "/iuA29rs5TCFED8qVcEjJdn9YJKr.jpg", + "backdropPath": "/17TPRG3Ys6GoLJnYaRCVGWDEAFM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16, + 10768 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation", + "War & Politics" + ], + "releaseDate": "1994-04-22", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.407, + "voteCount": 27, + "popularity": 7.4945 + }, + { + "id": 4576, + "title": "Just Shoot Me!", + "originalTitle": "Just Shoot Me!", + "overview": "See the inner workings of a high-style magazine owned by Jack Gallo, who has hired his quick-tempered but talented daughter, Maya, to write for the publication. Challenging her at every turn is Nina, a vain and superficial former model. Then there's photographer Elliot, a man who is very popular with his portrait subjects as well as other women. completing the core staff is her father's assistant, Dennis, a glorified secretary who is generally disrespectful to one and all.", + "posterPath": "/xP2JuabiJvvmVvGsHjDj4IL8gcO.jpg", + "backdropPath": "/26Xu6NIWdhQA2OgZ6HKa7D69HNB.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1997-03-04", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.63, + "voteCount": 165, + "popularity": 7.493 + }, + { + "id": 56568, + "title": "NANA", + "originalTitle": "NANA", + "overview": "Nana Osaki is a guarded and ambitious young woman with a strong will and a rough past. She is the vocalist for a punk band called Black Stones and she desires fame and recognition more than anything else. Nana Komatsu is an outgoing and flighty young woman with a weak will and a stable past. Her life revolves around her desire to find love and marriage. The two meet for the first time while traveling to Tokyo - in pursuit of their respective dreams - and they later decide to be roommates. Although drastically different people, the two become very close and together they find out if their biggest dreams have room for their best friend.", + "posterPath": "/mUZ5FMw2Xcj6VAakhIQ2KMgmp3w.jpg", + "backdropPath": "/xqbimh1vOdiGAYnu0bz3y3TcIBj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.448, + "voteCount": 230, + "popularity": 7.4887 + }, + { + "id": 4303, + "title": "Superman: The Animated Series", + "originalTitle": "Superman: The Animated Series", + "overview": "Superman, an incredibly powerful alien from the planet Krypton, defends Metropolis from supercriminals. Superman hides his identity behind the glasses of Clark Kent; a mild-mannered reporter for the newspaper the Daily Planet. At the Daily Planet Superman works with fellow reporter Lois Lane and photographer Jimmy Olsen.", + "posterPath": "/p7FauEh0yeZtIPWnD3pBvG6j8sd.jpg", + "backdropPath": "/yDsLb8WRHplh7X5EpHDFHl7TP8T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1996-09-06", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 355, + "popularity": 7.488 + }, + { + "id": 63498, + "title": "Close Up with The Hollywood Reporter", + "originalTitle": "Close Up with The Hollywood Reporter", + "overview": "Some of this year's most talked about talent open up about the challenges and triumphs of creating critically acclaimed series and performances.", + "posterPath": "/h7X59O3T4VWVAUzZ00LEpbwA3GP.jpg", + "backdropPath": "/gpDkx5Mog0jISp5rI7YbxQPKnCK.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2015-08-02", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.184, + "voteCount": 19, + "popularity": 7.4879 + }, + { + "id": 247453, + "title": "Everyone Loves Me", + "originalTitle": "别对我动心", + "overview": "On the day Yue Qianling resigned, she coincidentally crossed paths with her secret crush, Gu Xun, who had just joined as the head of the 9th Business Unit. She didn't hesitate to return to the company to boldly pursue Gu Xun, but he remained indifferent. He even harshly rejected her confession in front of the entire school. Little did she know, Gu Xun had long fallen for his fearless online friend \"Sticky Dough Twist\". Who would have expected that his online friend turned out to be Yue Qianling herself? Upon discovering the truth, Gu Xun had no choice but to embark on a humorous and heartwarming \"reverse pursuit\" journey.", + "posterPath": "/sgWR52ebu4rRCgJjYxCliCITh7H.jpg", + "backdropPath": "/kVd2xlSYIPbXBVVxvb8f1tjh1aV.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-03-01", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 8.1, + "voteCount": 31, + "popularity": 7.4874 + }, + { + "id": 7704, + "title": "Legend of the Seeker", + "originalTitle": "Legend of the Seeker", + "overview": "The adventures of woodsman Richard Cypher, who discovers that he was born to fulfill a prophecy of becoming a guardian hero to oppressed people. With the help of a mysterious woman named Kahlan and a wise old wizard named Zedd, he must stop a ruthless and bloodthirsty tyrant from unleashing an ancient evil and enslaving the world.", + "posterPath": "/ibclBUwEjsvfi8hpdO2i9jdOMUI.jpg", + "backdropPath": "/4XKzTeqiZOvmvs8iSh6GK4l3Hii.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2008-11-01", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.426, + "voteCount": 319, + "popularity": 7.4797 + }, + { + "id": 93221, + "title": "The Great North", + "originalTitle": "The Great North", + "overview": "Follow the Alaskan adventures of the Tobin family as a single dad does his best to keep his weird bunch of kids close, especially as the artistic dreams of his only daughter lead her away from the family fishing boat and into the glamorous world of the local mall.", + "posterPath": "/7Ww56dPIuXn4NZGrJJPdoafLHGu.jpg", + "backdropPath": "/61sQakosFlSETNNCS9Mn2SqFVUf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-01-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.953, + "voteCount": 75, + "popularity": 7.4783 + }, + { + "id": 712, + "title": "Designing Women", + "originalTitle": "Designing Women", + "overview": "Julia Sugarbaker, Mary Jo Shively, Charlene Frazier-Stillfield and Suzanne Sugarbaker are associates at their design firm, Sugarbaker and Associates. Julia is the owner and is very outspoken and strong-willed. Mary Jo is a divorced single-parent whom is just as strong-willed as Julia, but isn't as self-confident. Charlene is the naive and trusting farm girl from Poplar Bluff, Missouri. Suzanne is the self-centered ex-beauty queen whom has a number of wealthy ex-husbands.", + "posterPath": "/pqhes4TGTDj9zMg9agrADKo8RnL.jpg", + "backdropPath": "/n2g2XEvPYKpbo7MXvV6AoCG5OkA.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1986-09-29", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 32, + "popularity": 7.4652 + }, + { + "id": 129600, + "title": "Baki Hanma", + "originalTitle": "範馬刃牙", + "overview": "To gain the skills he needs to surpass his powerful father, Baki enters Arizona State Prison to take on the notorious inmate known as Mr. Unchained.", + "posterPath": "/x145FSI9xJ6UbkxfabUsY2SFbu3.jpg", + "backdropPath": "/7Scw0BdXGWzbDY3tDjKu8WervN2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-09-30", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 531, + "popularity": 7.4643 + }, + { + "id": 90955, + "title": "The Naked Director", + "originalTitle": "全裸監督", + "overview": "Follows the rise of Tooru Muranishi, one of Japan's most notorious directors of adult video. Adapted from a biography of the man, this series depicts the character, his art, vision and his interactions with the approving and disapproving folk around him.", + "posterPath": "/nbeRva0jrmJAvRflXAe89CbD3Kg.jpg", + "backdropPath": "/xOnj0sVT7lgBBKKWaHiO7ktQogJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-08-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 182, + "popularity": 7.4636 + }, + { + "id": 2802, + "title": "Waterloo Road", + "originalTitle": "Waterloo Road", + "overview": "Affairs, scandals, blackmail and many, many headteachers. Who said education was easy?", + "posterPath": "/gZoVJ0iVcyFDtrS8a7vFaiQfNa8.jpg", + "backdropPath": "/8I8Sf3EE0PSYw8ydb8wnrFf1ed5.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2006-03-09", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 29, + "popularity": 7.4629 + }, + { + "id": 80550, + "title": "The Conners", + "originalTitle": "The Conners", + "overview": "This iconic family—Dan, Jackie, Darlene, Becky and D.J.—grapples with parenthood, dating, an unexpected pregnancy, financial pressures, aging and in-laws in working-class America.", + "posterPath": "/xUXN3E67qVyTiftGptfhcmfDasW.jpg", + "backdropPath": "/nF3cVSsdejUKHjAmlR8bOa3n51i.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-10-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 118, + "popularity": 7.4589 + }, + { + "id": 276880, + "title": "Please Put Them On, Takamine-san", + "originalTitle": "履いてください、鷹峰さん", + "overview": "Student council president Takane Takamine is a popular star student. On the other hand, Koushi Shirota doesn't have many friends. That all changes when Koushi accidentally discovers Takane's ability to go back in time and alter past actions just by changing her lingerie. After some pestering, Koushi agrees to help Takane and be her closet, by having spare lingerie on hand.", + "posterPath": "/mN5yLKKW89XomkKE9hFEjsaww3s.jpg", + "backdropPath": "/5AYXcPhbtPe6i1MPnutPhCV6qNd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 123, + "popularity": 7.4574 + }, + { + "id": 34921, + "title": "The Wiggles", + "originalTitle": "The Wiggles", + "overview": "A show geared for babies up to older toddlers. This show is full of music, teaching kids songs and easy dances.", + "posterPath": "/e4O9IXM3ZmuDsrEICslrwqCl7MT.jpg", + "backdropPath": "/nnH6rWF1osVe245jy9hKYAiz96o.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10751 + ], + "genres": [ + "Kids", + "Family" + ], + "releaseDate": "1998-07-31", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.143, + "voteCount": 21, + "popularity": 7.4553 + }, + { + "id": 71785, + "title": "Mr. Osomatsu", + "originalTitle": "おそ松さん", + "overview": "Sequel/spin-off of the gag manga classic Osomatsu-kun, entailing the lives of the now 20-something NEET virgin Matsuno sextuplets and the bizarre adventures they find themselves into in the modern day.", + "posterPath": "/vEsmh6m9fUhJzGfLxUpliT3vqdh.jpg", + "backdropPath": "/kdTRIa25We8UDRNuBC9fhXRlHGY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-10-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 25, + "popularity": 7.4492 + }, + { + "id": 330, + "title": "Little People, Big World", + "originalTitle": "Little People, Big World", + "overview": "Matt & Amy Roloff enlist the help of their four children Jeremy, Zack, Molly & Jacob to help expand the business of Roloff farms. As the kids grow older, the family grows larger and the Roloffs learn how to keep their family relationships strong.", + "posterPath": "/WE35ee67i9pzb0yqVIGxz0nSrp.jpg", + "backdropPath": "/vytqfH9mt77DrpoojA2IqbN3FbY.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2006-03-04", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.385, + "voteCount": 26, + "popularity": 7.4491 + }, + { + "id": 101591, + "title": "BMF", + "originalTitle": "BMF", + "overview": "The drug trafficking drama is inspired by the true story of two brothers who rose from the decaying streets of southwest Detroit in the late 1980s and gave birth to one of the most influential crime families in the country. It revolves around brothers Demetrius \"Big Meech\" Flenory and Terry \"Southwest T\" Flenory, who together took their vision beyond the drug trade and into the world of hip-hop. The drama, per Starz, will tell a story about love, family and capitalism in the pursuit of the American dream.", + "posterPath": "/5gUlUufL3fom30qxKawwlWuD7kC.jpg", + "backdropPath": "/4L5Ta7BasGDZ3KtdxjgnFqdAiHK.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2021-09-26", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.022, + "voteCount": 293, + "popularity": 7.4398 + }, + { + "id": 64706, + "title": "Prison School", + "originalTitle": "監獄学園", + "overview": "There was a time when the Hachimitsu Private Academy was a revered and elite all-girls' boarding school on the outskirts of Tokyo but a recent policy revision is allowing boys into the student body. On his first day, Kiyoshi Fujino discovers that he's one of only five boys enrolled at the school. Completely overwhelmed by the thousands of girls on campus, the few boys find that their situation is less than ideal.", + "posterPath": "/tqtd72674k19IfGYJ2wdGJGvXX.jpg", + "backdropPath": "/7FqF8p7XsjgHOqVI9uwYy45jDDS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-11", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.059, + "voteCount": 707, + "popularity": 7.4363 + }, + { + "id": 38206, + "title": "Dragons' Den", + "originalTitle": "Dragons' Den", + "overview": "Canadian version of the reality show in which budding entrepreneurs pitch their business ideas to a panel of venture capitalists in the hopes of securing business financing.", + "posterPath": "/6iNBoC9WdW0mJNvMtm1UkKJe6jv.jpg", + "backdropPath": "/lS6uOQ6RfndvMJbwaBuMfjPdbJ2.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2006-10-03", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 19, + "popularity": 7.4345 + }, + { + "id": 8872, + "title": "Aquarion", + "originalTitle": "アクエリオン", + "overview": "Set in the future, a giant fighting machine called the Aquarion is humanity's only effective weapon in the fight against the technologically advanced species called the Shadow Angels.", + "posterPath": "/b7nYCiRLElXOcSICrZ8jdBqQP1m.jpg", + "backdropPath": "/ooZ594lyG7jtLyj2aXkzgPb4wim.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.542, + "voteCount": 24, + "popularity": 7.434 + }, + { + "id": 1567, + "title": "CatDog", + "originalTitle": "CatDog", + "overview": "The life and times of a cat and a dog with a unique twist: they're connected, literally. They share one body with a Dog's head at one end and Cat's head on the other. Adding to their dilemma is Cat's annoyance with Dog, mainly caused by Dog's stupidity and Cat's up-tight personality. Characters: Cat - Cat is the smarter one of the two brothers, and is always hatching some kind of plot to get his brother to calm down, so that Cat doesn't get beat around and hurt. Even though most of these plots involve messing with Dog's feeble mind, they often backfire on Cat, much to his dismay. It may not show all the time but, he deeply loves, and cares for his brother Dog. Dog - Dog is the more lovable of the two brothers, Dog loves to play and party and play some more, he loves baseball and playing fetch with frisbees, balls, sticks, etc, He is very friendly, and happy, but does have a breaking point. He's very sensitive, and if he fails at something he feels horrible, and worthless", + "posterPath": "/fkSCg9negcHAVO3gXohqEidqrsX.jpg", + "backdropPath": "/yKHeZmJTFOp4lbWQE0iRKqKhP5X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1998-04-04", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.047, + "voteCount": 427, + "popularity": 7.4277 + }, + { + "id": 18520, + "title": "Drop Dead Diva", + "originalTitle": "Drop Dead Diva", + "overview": "A shallow model suddenly dies in an accident only to find her soul resurfacing in the body of a brilliant, plus-sized attorney.", + "posterPath": "/fbu2O3hbU1ZROpjU01YCAMLz1sR.jpg", + "backdropPath": "/cfJoy6gW8XQytBRktBqYw5cXibt.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2009-07-12", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.722, + "voteCount": 272, + "popularity": 7.4245 + }, + { + "id": 46639, + "title": "American Gods", + "originalTitle": "American Gods", + "overview": "An ex-con becomes the traveling partner of a conman who turns out to be one of the older gods trying to recruit troops to battle the upstart deities. Based on Neil Gaiman's fantasy novel.", + "posterPath": "/3KCAZaKHmoMIN9dHutqaMtubQqD.jpg", + "backdropPath": "/uY3MJohUpY7UMMTK90BIhX5txEs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-30", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 1716, + "popularity": 7.4235 + }, + { + "id": 63164, + "title": "Sgt. Frog", + "originalTitle": "ケロロ軍曹", + "overview": "Alien frogs come to take over the planet & get into all kinds of trouble while living under the roof of a small family.", + "posterPath": "/9cgmkJnUVawW1o6jmmy8kqIl5IJ.jpg", + "backdropPath": "/hiYSi32T8y67KicU6JpMAx4IHu9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-03", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 25, + "popularity": 7.4175 + }, + { + "id": 69459, + "title": "Wounded Love", + "originalTitle": "Vatanım Sensin", + "overview": "Azize finds herself with her 3 children and mother-in-law in a difficult fight. She raises her children while fighting the difficulties of the war period and her husband's absence whom she loves more than anything. It's about war, love, greed, treason and sacrifice.", + "posterPath": "/v4fiUUJZJZJSLovPoRnxXfBCpJz.jpg", + "backdropPath": "/tLcPw07fShk90bT5sv3HFxMajMO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2016-11-01", + "releaseYear": "2016", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 83, + "popularity": 7.4094 + }, + { + "id": 1706, + "title": "The Pretender", + "originalTitle": "The Pretender", + "overview": "Raised in a secret facility built for experimenting on children, Jarod is a genius who can master any profession and become anyone he has to be. When he realizes as an adult that he's actually a prisoner and his captors are not as benevolent as he's been told, he breaks out. While trying to find his real identity, Jarod helps those he encounters and tries to avoid the woman sent to retrieve him.", + "posterPath": "/76q5tPOPQkQYIuZu2SG6viZcp2b.jpg", + "backdropPath": "/uSNmMsfadV5dEhYEwqn6Kojctj9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-09-19", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.374, + "voteCount": 203, + "popularity": 7.4089 + }, + { + "id": 4330, + "title": "Millennium", + "originalTitle": "Millennium", + "overview": "A retired FBI serial-profiler joins the mysterious Millennium Group, a team of underground ex-law enforcement experts dedicated to fighting against the ever-growing forces of evil and darkness in the world.", + "posterPath": "/ctTG2tps3tbcYvFAguKgsc6y8C7.jpg", + "backdropPath": "/7cmCid1B70AwhbdPpKvSVxAyqll.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648, + 10765 + ], + "genres": [ + "Crime", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-10-25", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.669, + "voteCount": 261, + "popularity": 7.4036 + }, + { + "id": 262700, + "title": "Umamusume: Cinderella Gray", + "originalTitle": "ウマ娘 シンデレラグレイ", + "overview": "Unbeknownst to those around her, the staggering potential of this ashen-haired “Beast” will soon catapult her to the national stage—and down the path of a legend. Follow her journey as the gates open on this hot-blooded Cinderella story!", + "posterPath": "/ncq5uKIcifVITPIYT2G1KpUPMoW.jpg", + "backdropPath": "/kCqOvdTazSJYorYTZMJUrbzcdxW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 7.4027 + }, + { + "id": 61671, + "title": "Unbreakable Kimmy Schmidt", + "originalTitle": "Unbreakable Kimmy Schmidt", + "overview": "When a woman is rescued from a doomsday cult and lands in New York City, she must navigate a world she didn’t think even existed anymore.", + "posterPath": "/eMFHl0HyLg7k04OVeE4xPvT6XhY.jpg", + "backdropPath": "/iWQMxRDCTruFjbQ79qxpHAmklNw.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-03-06", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 588, + "popularity": 7.4025 + }, + { + "id": 33852, + "title": "Lost Girl", + "originalTitle": "Lost Girl", + "overview": "The gorgeous and charismatic Bo is a supernatural being called a succubus who feeds on the energy of humans, sometimes with fatal results. Refusing to embrace her supernatural clan and its rigid hierarchy, Bo is a renegade who takes up the fight for the underdog while searching for the truth about her own mysterious origins.", + "posterPath": "/6eDCAW4jnyjtR0OwujK1JU2gu2u.jpg", + "backdropPath": "/9jlwGGx9zTkEV5mnuyQXDTUMCw3.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2010-09-12", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.727, + "voteCount": 432, + "popularity": 7.402 + }, + { + "id": 100049, + "title": "TONIKAWA: Over the Moon for You", + "originalTitle": "トニカクカワイイ", + "overview": "Nasa Yuzaki falls in love at first sight after an encounter with the mysterious Tsukasa. When Nasa earnestly confesses his feelings, she replies, \"I'll date you, but only if we're married.\" Nasa and Tsukasa's cute and precious newlywed life of love is about to begin!", + "posterPath": "/jJKTrIfZKoFV66HGMzSa4tkObK0.jpg", + "backdropPath": "/rnf2BDKeF1sxPEPhAcdvL0auuxr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.476, + "voteCount": 1538, + "popularity": 7.3943 + }, + { + "id": 333, + "title": "Jewel in the Palace", + "originalTitle": "대장금", + "overview": "Orphaned Jang-geum becomes the first female physician in the Joseon Dynasty and her determination is tested when people around her start showing their true faces.", + "posterPath": "/oiDr9sZPluqKJH8o0vuX5Dh61dh.jpg", + "backdropPath": "/mkmlUSTmOb2LI5A6aU1gHaRDElG.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-09-15", + "releaseYear": "2003", + "originalLanguage": "ko", + "voteAverage": 8.491, + "voteCount": 267, + "popularity": 7.3927 + }, + { + "id": 2474, + "title": "A Touch of Frost", + "originalTitle": "A Touch of Frost", + "overview": "Jack Frost is a gritty, dogged and unconventional detective with sympathy for the underdog and an instinct for moral justice who attracts trouble like a magnet. Despite some animosity with his superintendent, Norman “Horn-rimmed Harry” Mullett, Frost and his ever-changing roster of assistants manage to solve cases via his clever mind, good heart, and cool touch.", + "posterPath": "/dgpUNSkIWdU1i9vjc7MQPfGBFLo.jpg", + "backdropPath": "/wPT3xuLb4OM5IKCAiHiMblxiqX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "1992-12-06", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 72, + "popularity": 7.3896 + }, + { + "id": 60550, + "title": "Mahabharat", + "originalTitle": "Mahabharat", + "overview": "Mahabharat is a 2013 drama TV series on Star Plus based on Indian legendary epic of the same name. It has been produced by Swastik Pictures and features actors such as Saurabh Raj Jain as Lord Krishna, Shaheer Sheikh as Arjuna, Pooja Sharma as Draupadi, Aham Sharma as Karna and Arav Chowdhary as Bhishma Pitamah. The producers had creative associations with writer Salim Khan, author Devdutt Pattanaik, designer Bhanu Athaiya, music directors Ajay-Atul and Ismail Darbar, action director Ram Shetty and set designer Omang Kumar. The casting of the show is done by Sahil Ansari, Mahesh Chandra Bhatt, Arun Mitra. It started broadcasting on 16 September 2013.", + "posterPath": "/eV8G3F2MWmtjprghsxZncxCdS90.jpg", + "backdropPath": "/jr47QrP0jSHzszN7U1FBQRLMQ7S.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2013-09-16", + "releaseYear": "2013", + "originalLanguage": "hi", + "voteAverage": 8.708, + "voteCount": 24, + "popularity": 7.3884 + }, + { + "id": 32709, + "title": "Mike & Molly", + "originalTitle": "Mike & Molly", + "overview": "A comedy about a working class Chicago couple who find love at an Overeaters Anonymous meeting.", + "posterPath": "/5TeRoql7yzyeFWMEA0aiEmd21HJ.jpg", + "backdropPath": "/kdFJW01rAJV4qN7ArkJ4l3Ll9T3.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2010-09-20", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.671, + "voteCount": 252, + "popularity": 7.3883 + }, + { + "id": 249039, + "title": "Black Rabbit", + "originalTitle": "Black Rabbit", + "overview": "A rising-star restaurateur is forced into New York's criminal underworld when his chaotic brother returns to town with loan sharks on his trail.", + "posterPath": "/4e9CraVtGY00jLP2YGwsuEtaIjR.jpg", + "backdropPath": "/efbDkbMBPcHAfnsvJ9SXCdHgMBw.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-09-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.012, + "voteCount": 125, + "popularity": 7.384 + }, + { + "id": 10184, + "title": "Snapped", + "originalTitle": "Snapped", + "overview": "The fascinating cases of every day, seemingly average moms, wives and girlfriends accused of murder. Did they really do it? And if so, why?", + "posterPath": "/46YGiC5kJhX6ArAwOR8ONwCTgck.jpg", + "backdropPath": "/2JnYs1mNl63cfwPPqlnwZwsF74r.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 99 + ], + "genres": [ + "Crime", + "Documentary" + ], + "releaseDate": "2004-08-06", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 37, + "popularity": 7.3786 + }, + { + "id": 1693, + "title": "The Bernie Mac Show", + "originalTitle": "The Bernie Mac Show", + "overview": "The Bernie Mac Show is an American sitcom that aired on Fox for five seasons from November 14, 2001 to April 14, 2006. The series featured comic actor Bernie Mac and his wife Wanda raising his sister's three kids: Jordan, Bryana, and Vanessa.", + "posterPath": "/auTnAsA5USO1901qti1mxbUIVoE.jpg", + "backdropPath": "/8gn8kABdGu32PXf9xWT3f0PCS60.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2001-11-14", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 63, + "popularity": 7.3623 + }, + { + "id": 39483, + "title": "Major Crimes", + "originalTitle": "Major Crimes", + "overview": "Major Crimes explores how the American justice system approaches the art of the deals as law enforcement officers and prosecutors work together to score a conviction. Los Angeles Police Captain Sharon Raydor heads up a special squad within the LAPD that deals with high-profile or particularly sensitive crimes.", + "posterPath": "/fZ502JXujnxVtprmigTO2jA205P.jpg", + "backdropPath": "/8AkvTlCLmGipNEGL9wYVfWMiPLd.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2012-08-13", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.381, + "voteCount": 202, + "popularity": 7.3619 + }, + { + "id": 124271, + "title": "NCIS: Hawaiʻi", + "originalTitle": "NCIS: Hawaiʻi", + "overview": "Jane Tennant, the first female Special Agent in Charge of NCIS Pearl Harbor, and her unwavering team of specialists balance duty to family and country while investigating high-stakes crimes involving military personnel, national security and the mysteries of the sun-drenched island paradise itself.", + "posterPath": "/4R8xtDx2ge0GjEOnEwoR8V8X82q.jpg", + "backdropPath": "/5j8IF8gWOTw2WgxYYvrAlGf9eJ6.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2021-09-20", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.76, + "voteCount": 308, + "popularity": 7.3549 + }, + { + "id": 105214, + "title": "Dark Desire", + "originalTitle": "Oscuro deseo", + "overview": "Married Alma spends a fateful weekend away from home that ignites passion, ends in tragedy and leads her to question the truth about those close to her.", + "posterPath": "/uxFNAo2A6ZRcgNASLk02hJUbybn.jpg", + "backdropPath": "/9CBdzw7CK2m6WpfEfqe73V8i5O0.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2020-07-15", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 7.3, + "voteCount": 4254, + "popularity": 7.3543 + }, + { + "id": 94244, + "title": "Obliterated", + "originalTitle": "Obliterated", + "overview": "A special forces team thwarts a deadly plot in Sin City and parties accordingly. But when the real threat emerges, they must sober up to save Las Vegas.", + "posterPath": "/tWPAKr5RaZCQ1jaO2VRmvcIOrKh.jpg", + "backdropPath": "/jEDILaZtJOqNTEnFqWnYsCEVHpr.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 18 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-11-30", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.003, + "voteCount": 193, + "popularity": 7.3534 + }, + { + "id": 203737, + "title": "Oshi No Ko", + "originalTitle": "【推しの子】", + "overview": "A small-town doctor gets sucked into the ruthless world of show business when he crosses paths with a popular teen idol who holds a secret.", + "posterPath": "/okbW9NdKRNKgIUTVA8YZAUGwIUx.jpg", + "backdropPath": "/gArCVC4ML529WMCEqOXbALdQbUq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-04-12", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 282, + "popularity": 7.3525 + }, + { + "id": 16183, + "title": "A Grande Família", + "originalTitle": "A Grande Família", + "overview": "The daily lives of a typical Brazilian middle-class family, that are always very close and tries, in their way, to survive the financial and relationship difficulties.", + "posterPath": "/draJzGrnfB8gEqCGJrPhNORu0nz.jpg", + "backdropPath": "/tHrXHeIP62d14mi3PWZE06olVzo.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2001-03-29", + "releaseYear": "2001", + "originalLanguage": "pt", + "voteAverage": 8.395, + "voteCount": 38, + "popularity": 7.3499 + }, + { + "id": 138501, + "title": "Agatha All Along", + "originalTitle": "Agatha All Along", + "overview": "Agatha Harkness gathers a coven of witches and sets off down, down, down The Witches' Road.", + "posterPath": "/mGsxKwXUjojitRv2E9qMTbxbBRd.jpg", + "backdropPath": "/tYLXJW1sZQU09VWY1BhSVPKGIwc.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2024-09-18", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.498, + "voteCount": 865, + "popularity": 7.3491 + }, + { + "id": 17463, + "title": "Kid vs. Kat", + "originalTitle": "Kid vs. Kat", + "overview": "Ten-year-old Coop Burtonburger's life takes a turn for the worse when his little sister, Millie, brings home a mysterious stray cat who, in reality, is an evil cybernetic alien in disguise. To make matters worse, neither his family nor anyone else believes him, except for his best friend, Dennis. Now, Coop risks his life every day as he attempts to foil the cat's diabolical schemes and prove to the world that the family pet is an evil mastermind.", + "posterPath": "/1f3DyCY4Xe6ZxN2blj0gNdWhS71.jpg", + "backdropPath": "/sEOXPdfhXcZwxLAFEqkhuSIHquL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10751, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Family", + "Kids" + ], + "releaseDate": "2008-10-25", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.903, + "voteCount": 319, + "popularity": 7.3398 + }, + { + "id": 4328, + "title": "A Country Practice", + "originalTitle": "A Country Practice", + "overview": "A Country Practice was an Australian television drama series. At its inception, one of the longest-running of its kind, produced by James Davern of JNP Productions, who had wrote the pilot episode and entered a script contest for the network in 1979, coming third and winning a merit award. It ran on the Seven Network for 1,058 episodes from 18 November 1981 to 22 November 1993. It was produced in ATN-7's production facility at Epping, Sydney. After its lengthy run on the seven network it was picked up by network ten with a mainly new cast from April to November 1994 for 30 episodes, although the ten series was not as successful as its predecessor . The Channel Seven series was also filmed on location in Pitt Town, while, the Channel Ten series was filmed on location in Emerald, Victoria.", + "posterPath": "/hxtsmmB1NsglgitpfmUMCQ2Cjnt.jpg", + "backdropPath": "/3i9g6Yex8FhXK99kxuVBFAWX9XM.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1981-11-18", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 13, + "popularity": 7.3385 + }, + { + "id": 5622, + "title": "Hamtaro", + "originalTitle": "とっとこハム太郎", + "overview": "The cute and cuddly pet of 10-year-old Laura, Hamtaro is a small hamster with a big sense of adventure! Join Hamtaro and the adorable rodent rascals who captured the hearts of millions of children the world over.", + "posterPath": "/heeMIthcPavUaNJJl0YPARva2ua.jpg", + "backdropPath": "/wHCjJBVS6ZmrOwW4l2fun6q6cIQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2000-07-07", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 7.874, + "voteCount": 206, + "popularity": 7.3372 + }, + { + "id": 33841, + "title": "R. L. Stine's The Haunting Hour", + "originalTitle": "R. L. Stine's The Haunting Hour", + "overview": "R. L. Stine's The Haunting Hour is a Canadian/American original anthology horror-fantasy series, with episodes each half an hour long. The series is based on The Haunting Hour: Don't Think About It Movie, and the books The Haunting Hour and Nightmare Hour anthology by R. L. Stine.", + "posterPath": "/keZqyr8EQLCjHejuZ3U4HAopxrY.jpg", + "backdropPath": "/dgccDynwRvjMAixMjrsd1JHgicn.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2010-10-29", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.17, + "voteCount": 215, + "popularity": 7.3322 + }, + { + "id": 2751, + "title": "The New Alfred Hitchcock Presents", + "originalTitle": "The New Alfred Hitchcock Presents", + "overview": "The New Alfred Hitchcock Presents is an American anthology series that aired on NBC from 1985 to 1986, and on the USA Network from 1987 to 1989. The series is an updated re-imagining of the classic 1955 series Alfred Hitchcock Presents.", + "posterPath": "/mCJgmCdMZRArcP3pOg6cZ6OpxpV.jpg", + "backdropPath": "/Zef1eiCoLb7vWutWNAa3zeyxd6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "1985-09-29", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.191, + "voteCount": 55, + "popularity": 7.3303 + }, + { + "id": 606, + "title": "Ed, Edd n Eddy", + "originalTitle": "Ed, Edd n Eddy", + "overview": "Three adolescent boys, Ed, Edd \"Double D\", and Eddy, collectively known as \"the Eds\", constantly invent schemes to make money from their peers to purchase their favorite confectionery, jawbreakers. Their plans usually fail though, leaving them in various predicaments.", + "posterPath": "/nfKenwmfmdtoXGhaYiDIftrBchw.jpg", + "backdropPath": "/f307veKEFZqvFRkMkffDEXf280w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "1999-01-04", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.863, + "voteCount": 768, + "popularity": 7.3217 + }, + { + "id": 9921, + "title": "Back at the Barnyard", + "originalTitle": "Back at the Barnyard", + "overview": "What do farm animals really do when the humans aren't looking? Just ask Otis, a carefree \"party cow\" who inherited the job of keeping the barn... and it's residents... in order. But instead of responsibility, Otis is driven by an insatiable need for fun, fun, fun. Along with his barnyard friends Pip, Pig and Freddy, Otis will stop at nothing in his pursuit of a good time... which usually means a few close calls with humans and other threats to what really goes on behind closed barndoors.", + "posterPath": "/9O988PZT6hOyA9Pqb14YAEA1r6C.jpg", + "backdropPath": "/bZwU0IGdCXeaans9nrPwkHONZe5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2007-09-29", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 134, + "popularity": 7.3186 + }, + { + "id": 33301, + "title": "Franklin & Bash", + "originalTitle": "Franklin & Bash", + "overview": "When they're not hanging out at their favorite hot dog stand pontificating on what they'd go through to enjoy a night with their favorite female celebrities, Jared Franklin and Peter Bash are chasing down their latest clients...sometimes literally. With business cards in hand, they're ready to nab a client within seconds after a car accident, arrest for solicitation or any other incident where their legal services may be needed. Once in the courtroom, they show their flair for the dramatic and the shocking.", + "posterPath": "/so3xbOsAcG5lkxgfRjHbTFkXxM0.jpg", + "backdropPath": "/unl2ZNBSUhu0gHLPRH31QAyxl2i.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2011-06-01", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 85, + "popularity": 7.3133 + }, + { + "id": 13897, + "title": "Ben Casey", + "originalTitle": "Ben Casey", + "overview": "", + "posterPath": "/sAqkISpjTRolBuLSh9wjIDl4kQa.jpg", + "backdropPath": "/xN7bXpJ5RXQl4zbiUVmV7mnKqy3.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1961-10-02", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 14, + "popularity": 7.3102 + }, + { + "id": 76557, + "title": "Welcome to Waikiki", + "originalTitle": "으라차차 와이키키", + "overview": "Kang Dong-Goo dreams of becoming a movie director, but he is cynical due to bad luck. Cheon Joon-Ki wanted to follow in his father's footsteps and become an actor, but he is now just a minor actor. Bong-Doo-Sik came to Seoul to become a scenario writer, but things have not been easy for him.", + "posterPath": "/pggzZamoLNTiRgoYz8WVCISMCqv.jpg", + "backdropPath": "/6dxB0dFDeBwB3jwhKlLdPEKYFD6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-02-05", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 7.8, + "voteCount": 93, + "popularity": 7.309 + }, + { + "id": 47035, + "title": "Uncle Grandpa", + "originalTitle": "Uncle Grandpa", + "overview": "The adventures of Uncle Grandpa who is out to help every child and adult in the world through the power of imagination. With his mystical R.V. and eternal optimism, Uncle Grandpa is always ready to greet the day - and everyone he meets - with his signature, \"Good Mornin'.\"", + "posterPath": "/zLVOgigPMsd2hkwmcY5AqNhqgcn.jpg", + "backdropPath": "/cyH8Ni1OSMtBbloEmI9eE69Xi7j.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10765, + 10751 + ], + "genres": [ + "Comedy", + "Animation", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2013-09-02", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 109, + "popularity": 7.3081 + }, + { + "id": 87428, + "title": "Why Women Kill", + "originalTitle": "Why Women Kill", + "overview": "Three women living in three different decades: a housewife in the '60s, a socialite in the '80s and a lawyer in 2018, deal with infidelity in their marriages.", + "posterPath": "/fI3E1G5N8oimMeyYn5UzWRT2cST.jpg", + "backdropPath": "/61YttrsiP6B4sJo98HFMuHKPV3G.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2019-08-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 346, + "popularity": 7.3041 + }, + { + "id": 61915, + "title": "K.C. Undercover", + "originalTitle": "K.C. Undercover", + "overview": "K.C. Cooper, a high school math whiz and karate black-belt, learns that her parents are spies when they recruit her to join them in the secret government agency, The Organization. While she now has the latest spy gadgets at her disposal, K.C. has a lot to learn about being a spy, including keeping her new gig a secret from her best friend Marisa. Together, K.C. and her parents, Craig and Kira, and her younger siblings, Ernie and Judy (a humanoid robot), try to balance everyday family life while on undercover missions, near and far, to save the world.", + "posterPath": "/52iv1yPKYR4nezoX7lMLcK9yt6q.jpg", + "backdropPath": "/cA3uEd2CWCMr7yzRX9wcoDq1bZz.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 35, + 10751, + 18 + ], + "genres": [ + "Kids", + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "2015-01-18", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 186, + "popularity": 7.302 + }, + { + "id": 2328, + "title": "Power Rangers", + "originalTitle": "Power Rangers", + "overview": "A team of teenagers with attitude are recruited to save Angel Grove from the evil witch, Rita Repulsa, and later, Lord Zedd, Emperor of all he sees, and their horde of monsters.", + "posterPath": "/qx3SJlAp2RK656TusqKx1qEqVMW.jpg", + "backdropPath": "/i01wnWz0Z3rMATqbkAVLHEaGbNP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1993-08-28", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.093, + "voteCount": 812, + "popularity": 7.3014 + }, + { + "id": 13887, + "title": "Lawman", + "originalTitle": "Lawman", + "overview": "Lawman is an American western television series originally telecast on ABC from 1958 to 1962 starring John Russell as Marshal Dan Troop and featuring Peter Brown as Deputy Marshal Johnny McKay. The series was set in Laramie, Wyoming during 1879 and the 1880s. Warner Bros. already had several western series on the air at the time, having launched Cheyenne with Clint Walker as early as 1955. The studio continued the trend in 1957 with the additions of Maverick with James Garner and Jack Kelly, Colt .45 with Wayde Preston, and Sugarfoot with Will Hutchins. One year later, Warner Bros. added Lawman and Bronco with Ty Hardin.\n\nPrior to the beginning of production, Russell and Brown and producer Jules Schermer made a pact to maintain the quality of the series so that it would not be seen as \"just another western.\" At the start of season two, Russell and Brown were joined by Peggie Castle as Lily Merrill, the owner of the Birdcage Saloon, and a love interest for Dan.", + "posterPath": "/18XzHfhbRKw9Cl8cKH7WkV9yjYr.jpg", + "backdropPath": "/ip8YxqNF5xNg4A8jQP9cBmZ6muv.jpg", + "mediaType": "tv", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1958-10-05", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 10, + "popularity": 7.298 + }, + { + "id": 39957, + "title": "Perception", + "originalTitle": "Perception", + "overview": "Dr. Daniel Pierce, a neuroscientist and professor, is recruited to help the federal government crack difficult cases. His intimate knowledge of human behavior and masterful understanding of the mind give him an extraordinary ability to read people, but his eccentric view of the world and less-than-stellar social skills can often interfere with his work.", + "posterPath": "/5L6MsJVdMDbdGZ4P1lGBunOp0VZ.jpg", + "backdropPath": "/mEuysnOZceRFx1BbRcz4gsCkSzN.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2012-07-09", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.156, + "voteCount": 257, + "popularity": 7.2957 + }, + { + "id": 62822, + "title": "Humans", + "originalTitle": "Humans", + "overview": "In a parallel present where the latest must-have gadget for any busy family is a 'Synth' - a highly-developed robotic servant that's so similar to a real human it's transforming the way we live.", + "posterPath": "/iBjjSGgnjAQBSQGO9pYIh7Gp2PO.jpg", + "backdropPath": "/fS2AKTDK0VwZo7dq9sG38D9cuu.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2015-06-14", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.463, + "voteCount": 665, + "popularity": 7.2947 + }, + { + "id": 233742, + "title": "Newtopia", + "originalTitle": "뉴토피아", + "overview": "Jae-yoon, a late military enlistee, and his girlfriend, Young-joo, break up over the phone over growing misunderstandings. But a zombie outbreak rocks the world. A national emergency is declared, a plane crashes in the city center, and Jae-yoon and his unit get trapped on top of a Seoul skyscraper. Young-joo risks the zombie-filled streets to find him. Can their love survive the apocalypse?", + "posterPath": "/cIC36RA59lg9ruYtPc7UA3f72yy.jpg", + "backdropPath": "/olRPEYjyjzoMAODjOMjF2K1VlzO.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2025-02-07", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.901, + "voteCount": 181, + "popularity": 7.2943 + }, + { + "id": 4027, + "title": "Richard & Judy", + "originalTitle": "Richard & Judy", + "overview": "Richard & Judy was a British chat show presented by the married couple Richard Madeley and Judy Finnigan. The show originally aired on Channel 4, from 2001 to 2008, but later moved to digital channel, Watch, in October 2008. The programme featured a number of celebrities and a book club. Its final episode aired in July 2009 due to low ratings.", + "posterPath": "/eGBCP2UOeZhX0GijSI8NZX6xxXt.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2001-11-26", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 2.9, + "voteCount": 12, + "popularity": 7.2918 + }, + { + "id": 36210, + "title": "Blue Dragon", + "originalTitle": "BLUE DRAGON", + "overview": "A terrible and mysterious enemy attacks the small village of Shu and his friend Kluke. The great warrior Zola, followed by Jiro, will help them discover the ability to evoke shadows.", + "posterPath": "/kz1WUNjTUnjQCYvvpn4Jx0ZV22A.jpg", + "backdropPath": "/465oZoaiJRuFAgEja2OkObV1iL2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 38, + "popularity": 7.2897 + }, + { + "id": 34163, + "title": "Urusei Yatsura", + "originalTitle": "うる星やつら", + "overview": "The invasion of an alien race known as the Oni begins a new life for Ataru Moroboshi, a lecherous trouble-making tenth grader in the small town of Tomobiki. After unwittingly proposing to the Oni princess Lum Invader instead of his sweetheart Shinobu, Ataru becomes a conduit for aliens arriving on Earth, causing all sorts of havoc for him and his companions, not to mention his own reputation!", + "posterPath": "/bs0Q5TMYVUTNXCPbuPBNylzqrxk.jpg", + "backdropPath": "/v9ODt8XqxhdlGsImgVi7NBKeMDX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1981-10-14", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 40, + "popularity": 7.2831 + }, + { + "id": 36576, + "title": "Ojciec Mateusz", + "originalTitle": "Ojciec Mateusz", + "overview": "", + "posterPath": "/leUaUGUOcGSyzgQuNA95uLxwlyv.jpg", + "backdropPath": "/eYaB6xRMEYu13vlTIMSPJBDn54w.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2008-12-07", + "releaseYear": "2008", + "originalLanguage": "pl", + "voteAverage": 5.3, + "voteCount": 10, + "popularity": 7.2769 + }, + { + "id": 2309, + "title": "Danny Phantom", + "originalTitle": "Danny Phantom", + "overview": "Danny Fenton was once your typical kid until he accidentally blew up his parents' laboratory and became ghost-hunting superhero Danny Phantom. Now half-ghost, Danny's picked up paranormal powers, but only his sister, Jazz, and best friends, Samantha and Tucker, know his secret. Danny's busy fighting ghosts, saving Casper High and hiding his new identity all while trying to graduate.", + "posterPath": "/pBUOFBmZLaIxzjDjQP7d3QZrd4w.jpg", + "backdropPath": "/lnHFty7PsAnizaNjb509Kps6qeP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-03", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.329, + "voteCount": 1140, + "popularity": 7.2756 + }, + { + "id": 10042, + "title": "Doc", + "originalTitle": "Doc", + "overview": "Doc is a medical drama/family drama with strong Christian undertones starring Billy Ray Cyrus as Dr. Clint \"Doc\" Cassidy, a Montana doctor who takes a job in a New York City medical clinic. It ran from March 11, 2001 to November 28, 2004 on PAX. Although set in New York City, all the episodes were shot in and around Toronto, Ontario, Canada.", + "posterPath": "/4hNOf5ulemoI7EqYg8fDVIclFzq.jpg", + "backdropPath": "/94IX4eV3goPM1Ftcw9nYtBRmjBI.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2001-03-11", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 14, + "popularity": 7.2728 + }, + { + "id": 4615, + "title": "Hercules: The Legendary Journeys", + "originalTitle": "Hercules: The Legendary Journeys", + "overview": "The legendary son of Zeus journeys across the earth fighting monsters and helping people.", + "posterPath": "/AbmVXsi7Btr6cvppvaHAZflnjTC.jpg", + "backdropPath": "/4OQnb2QoifmFCe3TnUS2kxt3afM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-01-29", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.954, + "voteCount": 565, + "popularity": 7.2715 + }, + { + "id": 44277, + "title": "Amazing Detective Di Renjie", + "originalTitle": "神探狄仁杰", + "overview": "Di Renjie is Tang dynasty magistrate and statesman, who investigates mysterious murders.", + "posterPath": "/tIdH4eYwzl1kcz26G5aB6oHjIpa.jpg", + "backdropPath": "/lqEfFszUcZdjI7wdk7kCoCUdKLt.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2004-08-05", + "releaseYear": "2004", + "originalLanguage": "zh", + "voteAverage": 9.118, + "voteCount": 17, + "popularity": 7.2701 + }, + { + "id": 43865, + "title": "Psycho-Pass", + "originalTitle": "PSYCHO-PASS サイコパス", + "overview": "In the year 2113, people are given brain scans to determine how likely they are to commit a crime. Those who fail are apprehended, or even killed.", + "posterPath": "/uWnP6qTcc4imPJ9ZHaXlPQlcYnB.jpg", + "backdropPath": "/2HtnTJLs3CDUTu6ug8rib5vNnU2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Crime", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2012-10-12", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.715, + "voteCount": 441, + "popularity": 7.2626 + }, + { + "id": 95486, + "title": "Falling Into Your Smile", + "originalTitle": "你微笑时很美", + "overview": "After joining an all-male e-sports team, an amateur gamer tests her skills and leads her team to the world championships.", + "posterPath": "/ka19734c2ENU74uykVqt1tVTjJI.jpg", + "backdropPath": "/l3QyCntq6m4E7WTCLsq4DC7NLW1.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-06-23", + "releaseYear": "2021", + "originalLanguage": "zh", + "voteAverage": 8, + "voteCount": 99, + "popularity": 7.2611 + }, + { + "id": 4626, + "title": "Ugly Betty", + "originalTitle": "Ugly Betty", + "overview": "Wannabe writer Betty Suarez is a plain girl from Queens, who is smart, hardworking and savvy but lacks a fashionable sense of style. When publishing mogul Bradford Meade puts his son Daniel in charge of Mode magazine, he hires Betty to be Daniel's new assistant -- mostly because he knows that she may be the only woman in Manhattan with whom the younger man won't sleep.", + "posterPath": "/prGylxnFpIWMcvHh9sUC46hmiIC.jpg", + "backdropPath": "/5syecfwO1pkIVViRG3j7UuStCpm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2006-09-28", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.392, + "voteCount": 263, + "popularity": 7.2585 + }, + { + "id": 3213, + "title": "Marcus Welby, M.D.", + "originalTitle": "Marcus Welby, M.D.", + "overview": "Marcus Welby, M.D. is an American medical drama television program that aired on ABC from September 23, 1969, to July 29, 1976. It starred Robert Young as a family practitioner with a kind bedside manner and James Brolin as the younger doctor he often worked with, and was produced by David Victor and David J. O'Connell. The pilot, A Matter of Humanities, had aired as an ABC Movie of the Week on March 26, 1969.", + "posterPath": "/areZG2JxZUYjCs2oDpkf2TW1ziX.jpg", + "backdropPath": "/9SZWGari27b3SNIKXPKGkXPZ91n.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1969-09-23", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 19, + "popularity": 7.2564 + }, + { + "id": 296243, + "title": "Unburied", + "originalTitle": "Cometierra", + "overview": "Aylín, a teenager from a working-class neighborhood, discovers her supernatural abilities: when she eats soil, she has visions that help her find missing people. Together with her brother and friends, she learns to master this new power. As her skills strengthen, she becomes a heroine fighting against the violence and injustice plaguing her neighborhood.", + "posterPath": "/nL8b75uzqtQliip7R3smUXI8wAd.jpg", + "backdropPath": "/dnB98op1crXpolR1PXg61jW4ej3.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2025-10-31", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6, + "voteCount": 11, + "popularity": 7.2549 + }, + { + "id": 5325, + "title": "Army Wives", + "originalTitle": "Army Wives", + "overview": "Army Wives is an American drama series that follows the lives of four army wives, one army husband, and their families.", + "posterPath": "/sv6rOBEMXapqVrsGgwTuUizZoDe.jpg", + "backdropPath": "/ddttjSeT7LcsoCfNGcASJH2tljW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2007-06-03", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.405, + "voteCount": 37, + "popularity": 7.2488 + }, + { + "id": 63398, + "title": "Life in Pieces", + "originalTitle": "Life in Pieces", + "overview": "Comedy about one big happy family and their sometimes awkward, often hilarious and ultimately beautiful milestone moments as told by its various members. Of the three siblings, middle child Matt may have just found his true love, his co-worker, Colleen; his coddled youngest brother, Greg, and his wife, Jen, are overwhelmed by the birth of their first child; and the eldest, Heather, and her husband, Tim, are dreading their impending empty nest so much, they're considering having another baby. Their parents are Joan the family's adoring matriarch who would do anything for her kids - as long as she agrees with it - and John, the gregarious patriarch who's searching for ways to soften the blow of turning 70. As the family's lives unfold in four short stories each week, they try to savor these little pieces of time that flash by but stay with you forever, because these moments add up to what life's all about.", + "posterPath": "/vac76nqALSJfy9AN0D9sSh1fQFE.jpg", + "backdropPath": "/bk8s15CzE4KWrL67n7Iljvza0ny.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-09-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 139, + "popularity": 7.2475 + }, + { + "id": 31295, + "title": "Misfits", + "originalTitle": "Misfits", + "overview": "When five young outsiders on Community Service get caught in a strange storm, they discover that they have developed superpowers.", + "posterPath": "/1yjmRIp8A92FlAw5JpouQ50ATUA.jpg", + "backdropPath": "/y5oDHhdNng3ff3KQzcX6qpzBuMU.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2009-11-12", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.612, + "voteCount": 956, + "popularity": 7.2452 + }, + { + "id": 39859, + "title": "Awkward.", + "originalTitle": "Awkward.", + "overview": "An irreverent look at the conflict, chaos and humor that defines teenage life through the eyes of 15-year-old Jenna Hamilton whose life begins to change when a simple accident becomes an epic misunderstanding and is blown way out of proportion. Narration in the first-person voice of Jenna's blog posts captures the humor within the struggles and experiences everyone can relate to from their formative years.", + "posterPath": "/7PLO6PdGmfKiV3KER2Rd08Ga8kM.jpg", + "backdropPath": "/yFFW6MtYRjBHppYWskmG81pR7xV.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2011-07-19", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 408, + "popularity": 7.2437 + }, + { + "id": 100350, + "title": "Girls5eva", + "originalTitle": "Girls5eva", + "overview": "When a one-hit-wonder girl group from the '90s gets sampled by a young rapper, its members reunite to give their pop star dreams one more shot. They may be grown women balancing spouses, kids, jobs, debt, aging parents and shoulder pain, but can't they also be Girls5Eva?", + "posterPath": "/1RplQ2ooky3kONomTNhsptZxqAV.jpg", + "backdropPath": "/8tq7EvFyTWzmBbT7GiwechTdlWa.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-05-06", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 55, + "popularity": 7.2419 + }, + { + "id": 240150, + "title": "Fourever You", + "originalTitle": "เพราะรักนำทาง", + "overview": "Easter joins a northern Thai university to escape his past but reunites with his ex, Hill. Meanwhile, his roommate North faces chaos with his flirty creditor.", + "posterPath": "/pXVftluKQpsG2QhjBKQJAkVlAUR.jpg", + "backdropPath": "/eJG2NOUsqSAxmSaQrvML2viDRmo.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-10-03", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 8.273, + "voteCount": 11, + "popularity": 7.2402 + }, + { + "id": 72636, + "title": "Made in Abyss", + "originalTitle": "メイドインアビス", + "overview": "Located in the center of a remote island, the Abyss is the last unexplored region, a huge and treacherous fathomless hole inhabited by strange creatures where only the bravest adventurers descend in search of ancient relics. In the upper levels of the Abyss, Riko, a girl who dreams of becoming an explorer, stumbles upon a mysterious little boy.", + "posterPath": "/f6U3odfIb3pCXMGKRTQGGF9o1Qg.jpg", + "backdropPath": "/uzp513qTcHsAavlCJ58x5d73bzy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.36, + "voteCount": 587, + "popularity": 7.2348 + }, + { + "id": 2490, + "title": "The IT Crowd", + "originalTitle": "The IT Crowd", + "overview": "The comedic misadventures of Roy, Moss, and their grifting supervisor Jen, a 'motley crew' of IT support workers at a large corporation headed by a hotheaded yuppie.", + "posterPath": "/qZXkBoOUYzvKI4UCMzDQ5kqWHjh.jpg", + "backdropPath": "/dqtpDD9Ro1uSdEOX8P1T6M3QdFI.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-02-03", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 8.165, + "voteCount": 1516, + "popularity": 7.2305 + }, + { + "id": 138357, + "title": "Call of the Night", + "originalTitle": "よふかしのうた", + "overview": "Ko's new companion, Nazuna, could offer him dark gifts and a vampire's immortality. But there are conditions that Ko must meet before he can sink his teeth into vampirism, and he'll discover just how far he's willing to go to satisfy his desires.", + "posterPath": "/rDhwDG2ii8c3nCcfUNp6mogGQ93.jpg", + "backdropPath": "/ohgC4YPhYO4mjTW64JRK0abx6lQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.585, + "voteCount": 124, + "popularity": 7.2274 + }, + { + "id": 240686, + "title": "Legend of the Female General", + "originalTitle": "锦月如歌", + "overview": "A female general with a gentle appearance but a strong inner spirit, and a male general with a cold exterior and internal but with stronger martial prowess. The two join forces to combat deceit, assist the weak, and eliminate external threats.", + "posterPath": "/r1EMXYnqFDk9tzkkoxFwFjxCEvC.jpg", + "backdropPath": "/khubsaD2dRS2M3rIfLDgU7d7YYH.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-08-06", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.974, + "voteCount": 19, + "popularity": 7.2239 + }, + { + "id": 45998, + "title": "KissXSis", + "originalTitle": "kiss×sis", + "overview": "The story begins with Keita Suminoe, a male third-year junior-high school student studying for his high school entrance exams. He is living in a home with his older twin stepsisters, Ako and Riko, who share no blood relation to him, and they help him prepare for his exams. Even though he initially dislikes himself for it, he begins to become attracted to his two step-sisters, and his two parents encourage him to eventually get married to one of them.", + "posterPath": "/sQi05fGIosyEu51AHg9nSgipmhN.jpg", + "backdropPath": "/porr8fbCNEth5B2t6f5L2YfZc2C.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-04-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 116, + "popularity": 7.2228 + }, + { + "id": 34660, + "title": "Saiyuki", + "originalTitle": "最遊記", + "overview": "Many years ago, humans and demons lived in harmony. But that unity ended when demons started attacking humans and plotted a mission to unleash Gyumao - an evil demon imprisoned for thousands of years. Now, Genjo Sanzo, a rogue priest, must team up with three demons - Sha Gojyo, Son Goku, and Cho Hakkai - and embark on a perilous journey to the west to stop these demons from resurrecting Gyumao and restore the balance between humans and demons on Earth.", + "posterPath": "/b5tfbzJ8RIIoM6zzjpp9o9zjmrG.jpg", + "backdropPath": "/ypxQFuwYXa0yDBvl3zjwh8dY7Ie.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2000-04-04", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 16, + "popularity": 7.2218 + }, + { + "id": 229192, + "title": "The Demon Hunter", + "originalTitle": "沧元图", + "overview": "Meng Chuan witnessed his mother killed before his eyes, so he trained very hard hoping to one day avenge her death. But his peaceful days were broken as his wedding engagement being called off, an invasion by foreign forces, the sanctuary fallen into enemy hands… In order to protect the people of Ning City, he picked up his sword and vowed to be the strongest. This is a heavy responsibility and a long journey…", + "posterPath": "/ryAX7owZUxkpaBU3VbsQdtI2zLz.jpg", + "backdropPath": "/2KvYzwZm8bCzz9fdhjScUgAOjCK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2023-06-22", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 9.4, + "voteCount": 15, + "popularity": 7.2216 + }, + { + "id": 83095, + "title": "The Rising of the Shield Hero", + "originalTitle": "盾の勇者の成り上がり", + "overview": "Iwatani Naofumi, a run-of-the-mill otaku, finds a book in the library that summons him to another world. He is tasked with joining the sword, spear, and bow as one of the Four Cardinal Heroes and fighting the Waves of Catastrophe as the Shield Hero. Excited by the prospect of a grand adventure, Naofumi sets off with his party. However, merely a few days later, he is betrayed and loses all his money, dignity, and respect. Unable to trust anyone anymore, he employs a slave named Raphtalia and takes on the Waves and the world. But will he really find a way to overturn this desperate situation?", + "posterPath": "/yjq2n0agGJfmZQ9NpbYIhuBofcq.jpg", + "backdropPath": "/de6iC707SwuMsE3y2fo5OHCOsvj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-01-09", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1500, + "popularity": 7.2139 + }, + { + "id": 248852, + "title": "UNTAMED", + "originalTitle": "UNTAMED", + "overview": "In the vast expanse of Yosemite National Park, a woman's death draws a federal agent into lawless terrain — where nature obeys no rules but its own.", + "posterPath": "/tclYY8RGieQwkJXDxZGf505Zybr.jpg", + "backdropPath": "/oGsh97JAA6LYu92B6TEswrjac8W.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2025-07-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 301, + "popularity": 7.2025 + }, + { + "id": 62974, + "title": "8 Out of 10 Cats Does Countdown", + "originalTitle": "8 Out of 10 Cats Does Countdown", + "overview": "Jimmy Carr hosts proceedings as the 8 Out of 10 Cats crew take over the words and numbers quiz.", + "posterPath": "/184DSdPhc4G9vDyeuiddNPaSzIi.jpg", + "backdropPath": "/rALzi6BHoWdXuHjbOhzGjIKfhV4.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10764, + 10767 + ], + "genres": [ + "Comedy", + "Reality", + "Talk" + ], + "releaseDate": "2013-04-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.261, + "voteCount": 94, + "popularity": 7.1982 + }, + { + "id": 61720, + "title": "Violetta", + "originalTitle": "Violetta", + "overview": "A musically talented teenager returns to her native Buenos Aires with her father, Herman, after living in Europe for several years, navigating the trials and tribulations of growing up.", + "posterPath": "/b3MUGJeKakAZwQa7lNJxTP1pJmD.jpg", + "backdropPath": "/xuFNUGqEJ4cKNR7eKCowhDruhSd.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 35, + 10766 + ], + "genres": [ + "Family", + "Drama", + "Comedy", + "Soap" + ], + "releaseDate": "2012-05-14", + "releaseYear": "2012", + "originalLanguage": "es", + "voteAverage": 8.1, + "voteCount": 308, + "popularity": 7.1981 + }, + { + "id": 2745, + "title": "Aladdin", + "originalTitle": "Aladdin", + "overview": "Coming on the heels of the direct-to-video sequel The Return of Jafar, the series picked up where that installment left off, with Aladdin now living in the palace, engaged to beautiful and spunky Princess Jasmine. \"Al\" and Jasmine went together into peril among sorcerers, monsters, thieves, and more. Monkey sidekick Abu, the animated Magic Carpet, and the fast-talking, shape-shifting Genie came along to help, as did sassy, complaining parrot Iago, formerly Jafar’s pet but now an antihero.", + "posterPath": "/nlaiczW81kY46GBdfIcTrBIqr8I.jpg", + "backdropPath": "/jPyKuRjloYkjVWNPtXCrYxtg3Bu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1994-02-06", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 357, + "popularity": 7.1969 + }, + { + "id": 90872, + "title": "All Rise", + "originalTitle": "All Rise", + "overview": "A look at the personal and professional lives of the judges, lawyers, clerks, bailiffs and cops who work at an L.A. County courthouse.", + "posterPath": "/lgDVAetqJvCoBrZin2MpsYUdnwT.jpg", + "backdropPath": "/cjpOEE5PhoEZb7hyupj0MV3eJtD.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2019-09-23", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 119, + "popularity": 7.1959 + }, + { + "id": 4336, + "title": "Drawn Together", + "originalTitle": "Drawn Together", + "overview": "The world's first animated reality series gathers icons from all corners of the cartoon universe and lets them loose, with plenty of cameras to catch their exploits. Here's what happens when eight cartoon characters stop being polite and start getting real.", + "posterPath": "/12gxxU70l3Ng7WlllpA7QmeqTQF.jpg", + "backdropPath": "/vmfWHWnLfy6aT2caIgeSapYX8Aq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10764 + ], + "genres": [ + "Animation", + "Comedy", + "Reality" + ], + "releaseDate": "2004-10-27", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.191, + "voteCount": 1313, + "popularity": 7.1866 + }, + { + "id": 61459, + "title": "Parasyte -the maxim-", + "originalTitle": "寄生獣 セイの格率", + "overview": "A species of parasitic aliens descends on Earth and quickly infiltrates humanity by entering the brains of vulnerable targets; insatiable beings that gain total control of their host and are capable of transforming themselves to feed on unsuspecting prey. High school student Shinichi Izumi falls victim to one of these parasites, but the creature fails to take over his brain and ends up in his right hand.", + "posterPath": "/cXBfjZSdJelu2r0wKD7qCxS71kb.jpg", + "backdropPath": "/zfk6siC4KRXurG4jJzSXHy9szGQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2014-10-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 1335, + "popularity": 7.1859 + }, + { + "id": 5148, + "title": "Stargate Universe", + "originalTitle": "Stargate Universe", + "overview": "The adventures of a present-day, multinational exploration team traveling on the Ancient spaceship Destiny many billions of light years distant from the Milky Way Galaxy. They evacuated there and are now trying to figure out a way to return to Earth, while simultaneously trying to explore and to survive in their unknown area of the universe.", + "posterPath": "/dHOaOZGUhnoRXeK9mhYeSRPh59H.jpg", + "backdropPath": "/tK8eRUWVY8AVdDUPUxSzrmlLb0R.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2009-10-02", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 748, + "popularity": 7.1817 + }, + { + "id": 58566, + "title": "Chiquititas", + "originalTitle": "Chiquititas", + "overview": "Based on the original version of same name created by Cris Morena, the series tells the story of a group of orphans living in a manor, known as Raio de Luz, struggling and being guided by a young woman, Carol, that assumes a maternal figure for them. Their experiences such as discovering first love, deceptions, loneliness and friendship, as well as adventures in fantasy, are depicted throughout the series. The narrative is followed by musical themes and videoclips.", + "posterPath": "/b23MVqShzKA6JcRYuFqTRc7MmRB.jpg", + "backdropPath": "/taVpgDdtwqgPbgwIFEBSU4I5vuV.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10751, + 10766 + ], + "genres": [ + "Kids", + "Family", + "Soap" + ], + "releaseDate": "2013-07-15", + "releaseYear": "2013", + "originalLanguage": "pt", + "voteAverage": 8.3, + "voteCount": 42, + "popularity": 7.1792 + }, + { + "id": 65708, + "title": "Taboo", + "originalTitle": "Taboo", + "overview": "Adventurer James Keziah Delaney returns to London from Africa in 1814 along with fourteen stolen diamonds to seek vengeance after the death of his father.", + "posterPath": "/om1wVOuEtwH3krHutIWO9sJzkS5.jpg", + "backdropPath": "/gder6NtVlBIpenWWMOwpbQK05Uc.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2017-01-07", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.889, + "voteCount": 1393, + "popularity": 7.1778 + }, + { + "id": 74280, + "title": "Hey Duggee", + "originalTitle": "Hey Duggee", + "overview": "Animated preschool series about a clubhouse that is run by a big dog called Duggee.", + "posterPath": "/y0r27LkhX6AZNqo2Q5FUYmwi5wz.jpg", + "backdropPath": "/rLt2ZvpYJ210QcG6AAzcDzoHxzn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Family", + "Comedy" + ], + "releaseDate": "2014-12-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 17, + "popularity": 7.1775 + }, + { + "id": 4344, + "title": "Rescue Me", + "originalTitle": "Rescue Me", + "overview": "Rescue Me revolves around the lives of the men in a New York City firehouse, the crew of 62 Truck. Examining the fraternal nature and relationships of firefighters, the series tackles the daily drama of the life-and-death situations associated with being a firefighter, while exploring the ways the men use dark humor to protect their true emotions.", + "posterPath": "/gnOwOb82chSJkQEZ9pd6jf2ZrEX.jpg", + "backdropPath": "/lTVQIpIQbh7Rrwuhv8fBmM7BHaJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2004-07-21", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 174, + "popularity": 7.1775 + }, + { + "id": 82328, + "title": "Bitter Lands", + "originalTitle": "Bir Zamanlar Çukurova", + "overview": "The love story of Zuleyha, ​​who grew up without a father and works with Yilmaz as an auxiliary weaver in order to earn money for her brother, a gambler. The lives of these two young people blinded by the love of one ordinary night will turn into a dark nightmare. This nightmare will take them first from Istanbul and far away, and later to the estate of the Yaman family. In the first episode of the series, Yilmaz and Zuleyha set out to work on the Yaman estate. However, because of one of Zuleyha's lies - the lives of all of them will change radically.", + "posterPath": "/eqSfCYEnNWSmsnCPYI8jzR80ML4.jpg", + "backdropPath": "/8vXYq2l38DsPzGD8lpokinZiPuV.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2018-09-13", + "releaseYear": "2018", + "originalLanguage": "tr", + "voteAverage": 7.72, + "voteCount": 214, + "popularity": 7.1768 + }, + { + "id": 11285, + "title": "The Mysterious Cities of Gold", + "originalTitle": "太陽の子エステバン", + "overview": "The adventures of a young Spanish boy named Esteban who joins a voyage to the New World in search of the lost Cities of Gold and his father.", + "posterPath": "/fodyzO7msj5M7f8JdkGGdnL9OxU.jpg", + "backdropPath": "/ocRWQvMe0LwzbtseQ1B1xExkPm1.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10759, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1982-06-29", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 79, + "popularity": 7.1758 + }, + { + "id": 1638, + "title": "Providence", + "originalTitle": "Providence", + "overview": "Providence is an American television drama series.", + "posterPath": "/owtXGigAp8xFaEwdelHwCdU2WK9.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1999-01-08", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 24, + "popularity": 7.1702 + }, + { + "id": 270734, + "title": "Murdaugh: Death in the Family", + "originalTitle": "Murdaugh: Death in the Family", + "overview": "Maggie and Alex enjoy a lavish life of privilege as members of one of South Carolina's most powerful legal dynasties. But when their son Paul is involved in a deadly boat crash, the family is faced with a test unlike any they've ever encountered. As details come to light and new challenges emerge, the family's connections to several mysterious deaths raise questions which threaten everything Maggie and Alex hold dear.", + "posterPath": "/fqNT4hsPdA0999NEMuLVeja4Cm2.jpg", + "backdropPath": "/pIbemkVivwk1SKVvmKlo53edMZt.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-10-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 18, + "popularity": 7.1689 + }, + { + "id": 253193, + "title": "A Dream Within a Dream", + "originalTitle": "书卷一梦", + "overview": "When Song Xiaoyu is unexpectedly pulled into a scripted world as a tragic heroine fated to be discarded by the villainous male lead, she tries to escape, only to be trapped in an endless loop of fatal outcomes each time she strays from the plot. No matter how hard she resists, the story keeps pushing her toward Nan Heng, the cold and calculating lead. As she navigates this paper-thin world where every character is bound by fate, Song Xiaoyu must fight not just for her survival, but for control over her own story.", + "posterPath": "/iGPTJ9RS5hnVhH3hs53x8qieBRV.jpg", + "backdropPath": "/hznQvZZXABPjYz6aUWoonpLYhmx.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-06-26", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.7, + "voteCount": 17, + "popularity": 7.1633 + }, + { + "id": 203489, + "title": "Mike Judge's Beavis and Butt-Head", + "originalTitle": "Mike Judge's Beavis and Butt-Head", + "overview": "Two teenage heavy-metal music fans occasionally do idiotic things because they're bored. For them, everything is \"cool\" or \"sucks.\"", + "posterPath": "/75am8jsmRHHcpIPkm4RyrMn851A.jpg", + "backdropPath": "/rAUxCUyroOvjbTYZDXaRLJRoVHr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-08-04", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.151, + "voteCount": 76, + "popularity": 7.163 + }, + { + "id": 216074, + "title": "2.5 Dimensional Seduction", + "originalTitle": "2.5次元の誘惑", + "overview": "When cosplayer Ririsa joins Okumura's manga club, the line between 2D and 3D blurs when she asks him to be her photographer.", + "posterPath": "/clrEz6ad3cFEae5q08iWsbnhhCW.jpg", + "backdropPath": "/bG48yR8UzifLLeYdmNj8kdF9T5B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.313, + "voteCount": 57, + "popularity": 7.1608 + }, + { + "id": 7406, + "title": "All Creatures Great and Small", + "originalTitle": "All Creatures Great and Small", + "overview": "The trials and misadventures of the staff at a country veterinary office in Yorkshire. James Herriot, a young animal surgeon, moves to a small Yorkshire town to begin his first job.", + "posterPath": "/inl6wqdRPoLEDXttC33x9PBoMbN.jpg", + "backdropPath": "/kqpOg91jYda1G3RU7MpjdHllAGy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1978-01-08", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.756, + "voteCount": 45, + "popularity": 7.1592 + }, + { + "id": 84980, + "title": "MÄR: Märchen Awakens Romance", + "originalTitle": "MÄR-メルヘヴン-", + "overview": "Dreaming of a magical world every night, the young Toramizu Ginta yearns to be able to go there. With only his friend Koyuki believing in his dreams, Ginta remains positive despite the slander he receives from others over his dreams. But his wishes are answered, as one day a large door appears in front of Ginta, summoning him to the land of MAR Heaven. In this land, the weapons known as ARMS exist. While initially Ginta greatly enjoyed the discovery of this magical world, he soon learns of the terrible wars that have once plagued MAR Heaven and the upcoming war that may soon appear", + "posterPath": "/8GCxSybC4X4nKPT2qZPTow30D2H.jpg", + "backdropPath": "/bKFyxWvs7zJz0PX0EBFGuLngqJc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2005-04-03", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.182, + "voteCount": 11, + "popularity": 7.1565 + }, + { + "id": 241020, + "title": "Red Roses", + "originalTitle": "Kızıl Goncalar", + "overview": "“Kızıl Goncalar” tells the poignant story of Meryem, married off at 14 in an Islamic sect, and now battling bravely to prevent her daughter Zeynep from suffering the same fate as the bride of the sheikh’s grandson. Guided by her sister-in-law, a former sect member, they realize they must flee to save Zeynep from the sect’s powerful clutches. Fearfully hiding her plans from her cruel husband, Meryem must first earn money as a carer in the home of secular psychiatrist Levent, who agrees to help her. Despite their clashing religious and progressive beliefs, Meryem and Levent are drawn together emotionally, but the turmoil in their lives deepens as the identity of his daughter is revealed.", + "posterPath": "/1WQfxJbZGMSSBHiJn713tQJygRi.jpg", + "backdropPath": "/iltzs5RqJlgYRvhyi8cLKhsiBOo.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-12-18", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 5.6, + "voteCount": 16, + "popularity": 7.1554 + }, + { + "id": 105590, + "title": "Chespirito", + "originalTitle": "Chespirito", + "overview": "", + "posterPath": "/xj00t4cWlaWyzDD7PI5bQXlV3Kn.jpg", + "backdropPath": "/vZdh8k5fXqnW4EbsVKivE2x0JH5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1970-10-15", + "releaseYear": "1970", + "originalLanguage": "es", + "voteAverage": 8.177, + "voteCount": 395, + "popularity": 7.1519 + }, + { + "id": 61864, + "title": "Good Witch", + "originalTitle": "Good Witch", + "overview": "Cassie Nightingale, Middleton’s favorite enchantress, and her young-teenage daughter Grace, who shares that same special intuition as her mom, welcome Dr. Sam Radford and his son to town. When the New York transplants move in next to the Grey House, they are immediately spellbound by the mother-daughter duo next door, but Sam and Cassie quickly find they may not see eye to eye. With her signature charm, Cassie attempts to bring everyone together, ensuring all of Middleton is in for new changes, big surprises and, of course, a little bit of magic!\n\n\"Good Witch” is based on Bell’s beloved character Cassie, the raven-haired enchantress who kept audiences spellbound for seven installments of Hallmark Channel's longest-running and highest-rated original movie franchise of all time.", + "posterPath": "/c5B9CdRs9MY6Fgknv5uZQKWtl6F.jpg", + "backdropPath": "/eLNcBfr3212D09aYx0VChy1EpDY.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10765 + ], + "genres": [ + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-02-28", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 268, + "popularity": 7.1515 + }, + { + "id": 67676, + "title": "The Disastrous Life of Saiki K.", + "originalTitle": "斉木楠雄のΨ難", + "overview": "High school sophomore Kusuo Saiki swore as a child that he would keep his psychic talents hidden, but his abilities still make his life difficult.", + "posterPath": "/tpym31HVeQgenaubvCxkMF3kFHy.jpg", + "backdropPath": "/880MssZkJrpkyAK4UaMXdRkkcG3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-11", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 348, + "popularity": 7.1406 + }, + { + "id": 45388, + "title": "Missing", + "originalTitle": "Missing", + "overview": "Jess Mastriani was a normal person who only wanted to take over her parents' restaurant in Indiana. But that changed when she was hit by lightning. After that she began seeing visions of missing people. Jess decides to use her newfound ability to be a consultant to the FBI, helping locate missing individuals. Eventually, she is hired by the bureau full-time and trained to become an agent, but her by-the-book nature sometimes clashes with the personality of her partner. Jess and her colleagues work out of the FBI's Washington, D.C., office.", + "posterPath": "/5RdCx8fplh39dYh3YkwI7x3zSda.jpg", + "backdropPath": "/q3d36UDKGDoq4m2SR9uQwOMpVYs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 9648, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2003-08-02", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.778, + "voteCount": 27, + "popularity": 7.1401 + }, + { + "id": 253372, + "title": "The Institute", + "originalTitle": "The Institute", + "overview": "When 14 year old genius Luke Ellis is kidnapped, he awakens at The Institute, a facility full of children who all got there the same way he did, and who are all possessed of unusual abilities. In a nearby town, haunted former police officer Tim Jamieson has come looking to start a new life, but the peace and quiet won’t last, as his story and Luke’s are destined to collide.", + "posterPath": "/7JXZdWifaa6wL0XLRi0GJOlOA8y.jpg", + "backdropPath": "/mcU5nwUqPJB6GeElDhKA68LKhqD.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 111, + "popularity": 7.1394 + }, + { + "id": 197368, + "title": "Blue Orchestra", + "originalTitle": "青のオーケストラ", + "overview": "In the fall of his third and final year of middle school, Hajime Aono, a violin prodigy, stopped playing violin for his own personal reasons. But it was also that year when he got to know a girl who told him about a high school with a prestigious school orchestra. Suddenly, the gears in the clock of Aono's life began to turn again. This is the story of a youth drama that brings forth the harmony between music and the heart!", + "posterPath": "/5FVHmNW0ARlYSa7R0BZCuEfo7ei.jpg", + "backdropPath": "/yJAIWO6zGyXE72qVJ7sFGTqpTa1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-04-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.533, + "voteCount": 16, + "popularity": 7.1335 + }, + { + "id": 12598, + "title": "Black Lagoon", + "originalTitle": "BLACK LAGOON", + "overview": "The story follows a team of pirate mercenaries known as the Lagoon Company, that smuggles goods in and around the seas of Southeast Asia in the early to mid 1990s. Their base of operations is located in the fictional harbor city of Roanapur in southeast Thailand near the border of Cambodia.", + "posterPath": "/sQlHhWScg6qmakL1ywtcjjVKKqV.jpg", + "backdropPath": "/9Sz85jzgFAt2NUWV6e9AfJUSRkM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Crime" + ], + "releaseDate": "2006-04-09", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 491, + "popularity": 7.1321 + }, + { + "id": 926, + "title": "Scooby-Doo, Where Are You!", + "originalTitle": "Scooby-Doo, Where Are You!", + "overview": "Fred, Daphne, Velma, Shaggy, and the talking dog, Scooby-Doo, travel on the Mystery Machine van, in search of weird mysteries to solve.", + "posterPath": "/lTzUSCtXR77CmGmEHcaxpxu2b4h.jpg", + "backdropPath": "/m8xpVIsZlCVndlDxLrM8AUIg5GG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "1969-09-13", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 7.833, + "voteCount": 776, + "popularity": 7.1321 + }, + { + "id": 2181, + "title": "Route 66", + "originalTitle": "Route 66", + "overview": "After discovering that his late father has gone through most of the family fortune, Tod Stiles hits the title trans-America highway in his Corvette in search of adventure with friend Buz Murdock, a survivor of New York's mean streets. The two work odd jobs as they meet and interact with colorful characters and find themselves plunged into one situation after another, some of them romantic, some of them very dangerous. Later, Linc Case, a Vietnam war hero trying to find himself, takes over as Tod's travel companion.", + "posterPath": "/6T4wbgACiIggTUIcIwBvm88MDKs.jpg", + "backdropPath": "/y1YdPfMLlQxU9GTnk6tFqiokRgS.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "1960-10-07", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 17, + "popularity": 7.1319 + }, + { + "id": 53425, + "title": "Wayward Pines", + "originalTitle": "Wayward Pines", + "overview": "Imagine the perfect American town... beautiful homes, manicured lawns, children playing safely in the streets. Now imagine never being able to leave. You have no communication with the outside world. You think you're going insane. You must be in Wayward Pines.", + "posterPath": "/mK9MowBCPEn7RbsDXqN0MxyPc4.jpg", + "backdropPath": "/5n3dwYOqekTyANEyRs0GNhZPfOs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-05-14", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.864, + "voteCount": 851, + "popularity": 7.1263 + }, + { + "id": 4107, + "title": "The Steve Harvey Show", + "originalTitle": "The Steve Harvey Show", + "overview": "Down on his luck and out of money, former R&B star Steve Hightower lands a music teacher gig at an inner-city Chicago school. Showing who's in charge with his unorthodox approach, Steve discovers a new groove at Washington High School.", + "posterPath": "/iGUWv21kgKc79bpYxImk2nTIPin.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1996-08-25", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 25, + "popularity": 7.1257 + }, + { + "id": 46922, + "title": "Ben 10: Omniverse", + "originalTitle": "Ben 10: Omniverse", + "overview": "A year after the events that took place during the \"Final Battle\" and equipped with an all-new completed Omnitrix, 16-year-old Ben Tennyson has to face new enemies.", + "posterPath": "/Re9I5tauOspaJxYCIqRqavKT4F.jpg", + "backdropPath": "/jm3VtQRbxLysEEYcUSwuj67LvXS.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2012-08-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.257, + "voteCount": 502, + "popularity": 7.1181 + }, + { + "id": 37863, + "title": "Fullmetal Alchemist", + "originalTitle": "鋼の錬金術師", + "overview": "Two young brothers are raised as alchemists, but when they are severely injured trying to perform a forbidden act, they begin searching for the one thing that can save them; the fabled philosopher's stone.", + "posterPath": "/7qVSNBKsrER8P77DfsSQfrPK04L.jpg", + "backdropPath": "/p1z1B4bMf6tgUA4VLpI4smLxbCf.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-04", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8.225, + "voteCount": 981, + "popularity": 7.1162 + }, + { + "id": 96462, + "title": "It's Okay to Not Be Okay", + "originalTitle": "사이코지만 괜찮아", + "overview": "Desperate to escape from his emotional baggage and the heavy responsibility he’s had all his life, a psychiatric ward worker begins to heal with help from the unexpected – a woman who writes fairy tales but doesn’t believe in them.", + "posterPath": "/8XSJfLeImX8NszDUFnK1lbseCi8.jpg", + "backdropPath": "/4IzdfRrxgbvtnE0ZBNEjlcFcxgc.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-06-20", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.518, + "voteCount": 1427, + "popularity": 7.113 + }, + { + "id": 66370, + "title": "Ode to Joy", + "originalTitle": "欢乐颂", + "overview": "Five independent career women living in the Ode to Joy apartment building navigate love, ambition, and personal growth as they chase fulfillment on their own terms. From a successful businesswoman returning from New York to a small-town girl trying to make it in the big city, each faces unique challenges and romantic entanglements while discovering who they truly want to be.", + "posterPath": "/tvVittrRPohBv5rQXWbghTDOPn9.jpg", + "backdropPath": "/zod4ZmqjOioiPfKqLfAFl4e6xof.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-04-18", + "releaseYear": "2016", + "originalLanguage": "zh", + "voteAverage": 6.3, + "voteCount": 20, + "popularity": 7.1068 + }, + { + "id": 4521, + "title": "Jake and the Fatman", + "originalTitle": "Jake and the Fatman", + "overview": "Jake and the Fatman is a television crime drama starring William Conrad as prosecutor J. L. \"Fatman\" McCabe and Joe Penny as investigator Jake Styles.\n\nThe series ran on CBS for five seasons from 1987 to 1992. Diagnosis: Murder was a spin-off of this series.", + "posterPath": "/3WBkepiTwgemGDZadyJTV5SmS4l.jpg", + "backdropPath": "/aRimNw72sdpdvd0i3LqAxkwYdJ1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "1987-09-26", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 52, + "popularity": 7.1014 + }, + { + "id": 210268, + "title": "Burn the House Down", + "originalTitle": "御手洗家、炎上する", + "overview": "After her mother took the blame for a tragic fire 13 years ago, Anzu plots revenge by working as a housekeeper under a pseudonym for her icy stepmother.", + "posterPath": "/s4Ot7YP5GjEW8ggmjXbf79u6b2N.jpg", + "backdropPath": "/g0UxlBGBBFTYgv4Gk2b3ZlZCjQa.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2023-07-13", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 63, + "popularity": 7.0965 + }, + { + "id": 71411, + "title": "El Chapo", + "originalTitle": "El Chapo", + "overview": "A look at the life of notorious drug kingpin, El Chapo, from his early days in the 1980s working for the Guadalajara Cartel, to his rise to power of during the '90s and his ultimate downfall in 2016.", + "posterPath": "/3FzlvQ5Ea35Zdz71Ye7JSvB6VdB.jpg", + "backdropPath": "/4kp7ZwgminnWqgFwO5QEiWS5BNa.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2017-04-23", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 7.523, + "voteCount": 1626, + "popularity": 7.0919 + }, + { + "id": 2045, + "title": "Birds of a Feather", + "originalTitle": "Birds of a Feather", + "overview": "Birds of a Feather is a British sitcom that was broadcast on BBC One from 1989 until 1998 and on ITV from 2013. Starring Pauline Quirke, Linda Robson and Lesley Joseph, it was created by Laurence Marks and Maurice Gran, who also wrote some of the episodes along with many other writers.\n\nThe first episode sees sisters Tracey Stubbs and Sharon Theodopolopodos brought together when their husbands are sent to prison for armed robbery. Sharon, who lived in an Edmonton council flat, moves into Tracey's expensive house in Chigwell, Essex. Their next-door neighbour, and later friend, Dorien Green is a middle-aged married woman who is constantly having affairs with younger men. In the later series the location is changed to Hainault. The series ended on Christmas Eve 1998 after a 9-year-run.", + "posterPath": "/9Y8SEh4l96XfdXIMcxdyFWajqX5.jpg", + "backdropPath": "/gTh9fKx2Nau9YYRttkrdyNZzlRR.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1989-10-16", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 22, + "popularity": 7.0915 + }, + { + "id": 65784, + "title": "Slasher", + "originalTitle": "Slasher", + "overview": "Thirty years ago, in the sleepy community of Waterbury, a killer known as “The Executioner” murdered Sarah Bennett's parents. Now Sarah and her husband Dylan have returned to town, only to find herself the centerpiece in a series of horrifying murders centered around the seven deadly sins.", + "posterPath": "/A4j6zNyypLbsn0vJfrajlgNazc5.jpg", + "backdropPath": "/ba89FQhQuJXW52PV3RUMq9l973W.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80, + 18 + ], + "genres": [ + "Mystery", + "Crime", + "Drama" + ], + "releaseDate": "2016-03-04", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 330, + "popularity": 7.0911 + }, + { + "id": 31356, + "title": "Big Time Rush", + "originalTitle": "Big Time Rush", + "overview": "Four teenage friends move from Minneapolis to Los Angeles to form a potential chart-topping boy band after Kendall is inadvertently discovered by an eccentric record executive, Gustavo Rocque. As they seize this opportunity of a lifetime, these friends embark on an exciting comedy and music-filled journey to prove to themselves and their record label that they are serious about their new career choice.", + "posterPath": "/9N61wXR7FqsuByDVSEjM6qcPhKH.jpg", + "backdropPath": "/vctELFdxJdQBtgPlJFiF6aNnUcQ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762 + ], + "genres": [ + "Comedy", + "Kids" + ], + "releaseDate": "2009-11-28", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 1665, + "popularity": 7.0869 + }, + { + "id": 85213, + "title": "wtFOCK", + "originalTitle": "wtFOCK", + "overview": "The story of Dutch speaking young teenagers and pupils in a high school in Antwerp, and their troubles, scandals and everyday life. Each season is told from a different person's point of view.", + "posterPath": "/2fBRL2r5vuwbf5z3ryQElwaHXgp.jpg", + "backdropPath": "/jIOFY8ZLtfjupbSEEvxxAAMcYhI.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-10-06", + "releaseYear": "2018", + "originalLanguage": "nl", + "voteAverage": 8.2, + "voteCount": 19, + "popularity": 7.0862 + }, + { + "id": 37807, + "title": "Beyblade: Metal Saga", + "originalTitle": "メタルファイト ベイブレード", + "overview": "A new cast of characters take on the continued battle between good and evil. Gingka, our hero, and his group of loyal friends take on a dangerous group called the Dark Nebula. Dark Nebula’s mission is to take over the world and unleash their evil upon it; but before they can do so, they must destroy Gingka as he is the only person that’s strong enough to stand in their way. The plot thickens as friends become enemies and enemies become allies. Everything starts and ends with Gingka as he struggles to find the strength to defend his world and the honor of Beyblade.", + "posterPath": "/AvzR1LroQFPs8mtvW761BZX92qx.jpg", + "backdropPath": "/dHQ6u5nRMCHGHLCl220iCah6jX0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 38, + "popularity": 7.0845 + }, + { + "id": 1310, + "title": "Sanctuary", + "originalTitle": "Sanctuary", + "overview": "The adventures of the beautiful, enigmatic and always surprising Dr. Helen Magnus, a brilliant scientist who holds the secrets of a clandestine population called Abnormals—a group of strange and sometimes terrifying beings that hide among humans. Magnus seeks to protect this threatened phenomena as well as unlock the mysteries behind their existence.", + "posterPath": "/7KIBYETkRSfHNsfWAWAt7uq7oGm.jpg", + "backdropPath": "/gTyZ24A6H4YgdYzmJ2VWoYoGTzs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-03", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 281, + "popularity": 7.0802 + }, + { + "id": 61463, + "title": "The Affair", + "originalTitle": "The Affair", + "overview": "The emotional effects of an extramarital relationship between Noah, a New York City schoolteacher and budding novelist with a wife of twenty years and four children and Alison, a young waitress and wife from Montauk at the end of Long Island, trying to piece her life back together in the wake of a tragedy.", + "posterPath": "/8scKJeu6GoxMqpt7UO5aMeU0TOn.jpg", + "backdropPath": "/1uJaqlVeZ5MQvwCX7TRwf3dIduA.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-10-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.658, + "voteCount": 392, + "popularity": 7.0787 + }, + { + "id": 2396, + "title": "Punk'd", + "originalTitle": "Punk'd", + "overview": "What happens when the biggest stars in the world get too high on the Hollywood hog? When their bank accounts start swelling bigger than their heads? Master prankster Ashton Kutcher is there to punk 'em down to earth.", + "posterPath": "/sqcaFHnnJU1nIbUikN3cpm9Mjn9.jpg", + "backdropPath": "/9ERhB2NEcwpOaWJeE4q64wPSBSV.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10764 + ], + "genres": [ + "Comedy", + "Reality" + ], + "releaseDate": "2003-03-17", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.111, + "voteCount": 95, + "popularity": 7.0786 + }, + { + "id": 240932, + "title": "Wild Cards", + "originalTitle": "Wild Cards", + "overview": "A spirited con woman and a demoted by-the-book detective are given the chance to redeem themselves. The catch? They have to find a way to work together each using their unique skills to solve crimes.", + "posterPath": "/lIhkV9LNwViVD2bylPTFQvDD21e.jpg", + "backdropPath": "/iKQm68NeKhrQMV7sbP2Ivmtm1Uk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 9648 + ], + "genres": [ + "Drama", + "Comedy", + "Mystery" + ], + "releaseDate": "2024-01-10", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 48, + "popularity": 7.0764 + }, + { + "id": 1712, + "title": "The Munsters", + "originalTitle": "The Munsters", + "overview": "A family of friendly monsters that have misadventures all while never quite understanding why people react to them so strangely.", + "posterPath": "/oeDBaQMkPJzWwqNMIrrsrp8DD2i.jpg", + "backdropPath": "/cNgZbUkqhIxb2yrEKusHPOaAb4d.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 10751 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "1964-09-24", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.921, + "voteCount": 449, + "popularity": 7.0759 + }, + { + "id": 355, + "title": "The Bachelor", + "originalTitle": "The Bachelor", + "overview": "A single bachelor dates multiple women over several weeks, narrowing them down to hopefully find his true love.", + "posterPath": "/6JQpAiVuQYgDoB9Ce3qoO3hMtFF.jpg", + "backdropPath": "/avhmusUsXztQw5152QyWgXyoe0G.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2002-03-25", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 67, + "popularity": 7.0744 + }, + { + "id": 3319, + "title": "Darkwing Duck", + "originalTitle": "Darkwing Duck", + "overview": "The adventures of superhero Darkwing Duck, aided by his sidekick Launchpad McQuack. In his secret identity of Drake Mallard, he lives in a suburban house with his adopted daughter Gosalyn, next door to the bafflingly dim-witted Muddlefoot family. A spin-off of DuckTales.", + "posterPath": "/1gJMSXS0gwM8gDJnzVSITcxbQc.jpg", + "backdropPath": "/aTSHegWfhzonUnouL6dhBxK9S9M.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1991-09-06", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 315, + "popularity": 7.0726 + }, + { + "id": 21567, + "title": "The Outer Limits", + "originalTitle": "The Outer Limits", + "overview": "The Outer Limits is an anthology tv series of self-contained sci-fi-horror stories, sometimes with a plot twist at the end.", + "posterPath": "/p87hnTFR91vJuw8lLKVhG5NLw7n.jpg", + "backdropPath": "/7rsml8nSsAm5Wg1Tx7Uj9Wf7Fxd.jpg", + "mediaType": "tv", + "genreIds": [ + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy" + ], + "releaseDate": "1963-09-16", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 7.792, + "voteCount": 156, + "popularity": 7.0707 + }, + { + "id": 62474, + "title": "Seaside Hotel", + "originalTitle": "Badehotellet", + "overview": "At Andersen’s Seaside Hotel by the North Sea dunes, meet three young people as they try to emancipate themselves from the plans other people have made on their behalf.", + "posterPath": "/2YrFeKSc23Glr9g3GSgOclEjizd.jpg", + "backdropPath": "/lUIrxz7HwqdBQwCzJYysdYy34uH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-12-30", + "releaseYear": "2013", + "originalLanguage": "da", + "voteAverage": 7.6, + "voteCount": 32, + "popularity": 7.0695 + }, + { + "id": 54728, + "title": "Beyblade", + "originalTitle": "爆転シュートベイブレード", + "overview": "Thirteen-year-old Takao Kinomiya (Tyson Granger), along with his fellow teammates, Kai Hiwatari, Max Mizuhura (Max Tate), and Rei Kon (Ray Kon), strive to become the greatest Beybladers in the world. With the technical help of the team's resident genius, Kyoujyu (Kenny), and with the powerful strength of their BitBeasts, the Bladebreakers armed with their Beys attempt to reach their goal.", + "posterPath": "/l6ZQhEHjtOd9t6lOvVGzs5YEHcG.jpg", + "backdropPath": "/9feA6Kd1G456nq2XrDqpDQpFlcG.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Kids", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2001-01-08", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.728, + "voteCount": 228, + "popularity": 7.0692 + }, + { + "id": 18352, + "title": "The Garfield Show", + "originalTitle": "The Garfield Show", + "overview": "Your favorite lazy, fat cat is at it again. Garfield, Odie, Jon and the rest of the gang are back for more funny misadventures. Whether he's scarfing down lasagna or tricking Nermal the kitten, Garfield is guaranteed to crack you up. But remember: He hates Mondays!", + "posterPath": "/jBAXfUHvVTBCsCwP1xNG6B3bZ0d.jpg", + "backdropPath": "/9iSVTnGkNsdaPRuK7iig6wnwC9W.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2009-11-02", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.355, + "voteCount": 107, + "popularity": 7.0605 + }, + { + "id": 1527, + "title": "Due South", + "originalTitle": "Due South", + "overview": "Constable Benton Fraser, an officer of the Royal Canadian Mounted Police, is attached to the Canadian consulate but works with Chicago Police Department to solve crimes.", + "posterPath": "/zspyArCSKZj8bykYUdNYdhQBirI.jpg", + "backdropPath": "/cfpEjMTT3BZxa7ohtK4fY7ETL81.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 35 + ], + "genres": [ + "Drama", + "Crime", + "Comedy" + ], + "releaseDate": "1994-09-22", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.558, + "voteCount": 77, + "popularity": 7.0596 + }, + { + "id": 61581, + "title": "Vanderpump Rules", + "originalTitle": "Vanderpump Rules", + "overview": "Follow the passionate, volatile and hot-and-bothered-staff at Lisa Vanderpump’s West Hollywood mainstay SUR. Lisa balances her motherly instincts and shrewd business sense to keep control over this wild group of employees as they pursue their dreams and each other while working at her “Sexy, Unique Restaurant.”", + "posterPath": "/qovZ9pIWArGLTOguUFIWPccErqW.jpg", + "backdropPath": "/zvXUxv3BGYvtdhG8oCqeCxrCkti.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2013-01-07", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 49, + "popularity": 7.0496 + }, + { + "id": 52083, + "title": "Amagami SS", + "originalTitle": "アマガミSS", + "overview": "A second-year high school boy finds himself uneasy during Christmas time due to an experience in the past. However, this year at Christmas, he gets his last chance to ask out a graduating female senior named Haruka Morishima — or one of several other classmates. The story of the anime will be arranged in an omnibus format, with each heroine getting her own version of the story animated. Each heroine will sing her own version of the ending theme song.", + "posterPath": "/fpMyFbUqu3eFl5Xm4sgGNEamrdE.jpg", + "backdropPath": "/nHHqSwdnV60GaqzqZlj9rByAX5f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2010-07-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.213, + "voteCount": 47, + "popularity": 7.0466 + }, + { + "id": 85349, + "title": "Amphibia", + "originalTitle": "Amphibia", + "overview": "The adventures of 13-year-old, self-centered Anne Boonchuy who is magically transported to the fictitious world of Amphibia, a rural marshland full of frog-people. With the help of an excitable young frog named Sprig, Anne will become a hero and discover the first true friendship of her life.", + "posterPath": "/bFCgv9iWZECWSDxNQYc9soqvwjx.jpg", + "backdropPath": "/6vk1WNHyNKR4oQooBJpZ8pGksBz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10759, + 10765, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2019-06-17", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 314, + "popularity": 7.0402 + }, + { + "id": 326, + "title": "Red Dwarf", + "originalTitle": "Red Dwarf", + "overview": "The adventures of the last human alive and his friends, stranded three million years into deep space on the mining ship Red Dwarf.", + "posterPath": "/cU9RFlyvJXbzyCzCGRqRmZrTDZU.jpg", + "backdropPath": "/gBeHadaylDePYy6Gy2xyDVeYLkP.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1988-02-15", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 8.049, + "voteCount": 412, + "popularity": 7.0382 + }, + { + "id": 424, + "title": "Torchwood", + "originalTitle": "Torchwood", + "overview": "The exploits of a team of people whose job is to investigate the unusual, the strange and the extraterrestrial.", + "posterPath": "/8fxK9SMaKvQMI4a4VAclf2qEtpD.jpg", + "backdropPath": "/9PGSbmsLggGnEglyEje8K3w6Rb1.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2006-10-22", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 538, + "popularity": 7.031 + }, + { + "id": 253905, + "title": "When the Phone Rings", + "originalTitle": "지금 거신 전화는", + "overview": "A rising politician and his mute wife's tense marriage begins to unravel after a call from a kidnapper turns their lives upside down.", + "posterPath": "/glWP5Y7CVeqrOjJpLckQjuLFjQJ.jpg", + "backdropPath": "/2vtI9xzD6qpDzY9m8kV67QY0qfM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2024-11-22", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.392, + "voteCount": 264, + "popularity": 7.0303 + }, + { + "id": 14750, + "title": "Na Wspólnej", + "originalTitle": "Na Wspólnej", + "overview": "Na Wspólnej is a Polish soap opera. It has been running since 2003 on the TVN channel as its flagship primetime weekday soap opera. It is loosely based on the German production Unter Uns and it follows the lives of the inhabitants of an apartment block in Wspólna Street, Warsaw. Episodes tend to last around 20 minutes. It is a Polish version of the Hungarian \"Barátok közt\".\n\nThe series is shot almost entirely in Warsaw and produced by the Polish branch of Freemantle Media. On 9 September 2008 it celebrated its 1000th episode; \"Na Wspólnej\" was the fourth Polish television series ever to achieve such status. A special episode was broadcast in which characters from some other of TVN's most popular shows visited Wspólna Street.", + "posterPath": "/uksRhdaOn64bO5d33d7rcTbrhJI.jpg", + "backdropPath": "/pmB8uYJF1WKQCZnJjhnAx2IJjhk.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2003-01-27", + "releaseYear": "2003", + "originalLanguage": "pl", + "voteAverage": 4.1, + "voteCount": 10, + "popularity": 7.0256 + }, + { + "id": 38472, + "title": "Marvel's Jessica Jones", + "originalTitle": "Marvel's Jessica Jones", + "overview": "After a tragic ending to her short-lived super hero stint, Jessica Jones is rebuilding her personal life and career as a detective who gets pulled into cases involving people with extraordinary abilities in New York City.", + "posterPath": "/paf9wL3mOW9LT3ZjRxXqJcjeMEv.jpg", + "backdropPath": "/g9ju2o4LioYYOyihBvf9lVX8XL.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2015-11-20", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 2490, + "popularity": 7.0208 + }, + { + "id": 33091, + "title": "The Glades", + "originalTitle": "The Glades", + "overview": "This crime series follows Jim, a Chicago cop who gets kicked off the force after being shot and wrongfully accused by his ex-captain of having an affair with his wife. After receiving his payout, Jim decides to moves to a small Florida town to join the state police.", + "posterPath": "/44mkq0KpOngpJSs22m0LdP37Jpp.jpg", + "backdropPath": "/kcl9SVzvtMJCGwx5PD1x04Ijnw7.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2010-07-11", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.918, + "voteCount": 134, + "popularity": 7.0131 + }, + { + "id": 155710, + "title": "Life on Call", + "originalTitle": "Жизнь по вызову", + "overview": "The story of an unusual businessman Alexander Schmidt, nicknamed Magic, who is ready to fulfill the most daring and explicit sex fantasies of his clients.", + "posterPath": "/g2QMkEUPj9nYT7kHvpT5IaDZ7tq.jpg", + "backdropPath": "/n0hOMEHTxUvHwHfqNKgrXNFODkP.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-08-25", + "releaseYear": "2022", + "originalLanguage": "ru", + "voteAverage": 7.6, + "voteCount": 36, + "popularity": 7.0082 + }, + { + "id": 115, + "title": "A Different World", + "originalTitle": "A Different World", + "overview": "A Different World is a spin-off series from The Cosby Show and originally centered on Denise Huxtable and the life of students at Hillman College, a fictional mixed but historically black college in the state of Virginia. After Bonet's departure in the first season, the remainder of the series primarily focused more on Southern belle Whitley Gilbert and mathematics whiz Dwayne Wayne. The series frequently depicted members of the major historically black fraternities and sororities.", + "posterPath": "/v7fuifcJjcqQxAsOjPviupcmFIZ.jpg", + "backdropPath": "/ebTL1Lyvr0LVBrMlhgQp6lqijC6.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1987-09-24", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 68, + "popularity": 7.0059 + }, + { + "id": 35894, + "title": "Zatch Bell!", + "originalTitle": "金色のガッシュベル!!", + "overview": "Takamine Kiyomaro, a depressed don't-care-about-the-world guy, was suddenly given a little demon named Zatch Bell to take care of. Little does he know that Zatch is embroiled in an intense fight to see who is the ruler of the demon world.", + "posterPath": "/cBcHLTG8UgtKi1i1iN0XVcRAB78.jpg", + "backdropPath": "/n4MfPSRk5PzHeVrm43NHam8oH5d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2003-04-06", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8.443, + "voteCount": 253, + "popularity": 7.0056 + }, + { + "id": 55546, + "title": "De Slimste Mens ter Wereld", + "originalTitle": "De Slimste Mens ter Wereld", + "overview": "Do we still sing the praises of folly like Erasmus, or is it trendy again to be smart? And if so, who is the smartest? Who can talk about the medals won at the Olympic Games in London, but at the same time knows who Captain Haddock is? Who knows whether Lacan was a hair growth product or a psychoanalyst and can also program their own digital television? Who has déjà vu when leafing through the Encyclopedia Britannica and when reading the interviews with the new Miss Waregem Koerse? Who, oh who, is the smartest person in Flanders, Belgium, Europe, and by extension, the world? That is determined by a fierce battle between three fellow human beings. Every day, someone is eliminated, someone who may not be the smartest, but who is perhaps cherished in their family circle because of their many other talents. The others advance and are joined by a new challenger every day.", + "posterPath": "/7UdVk8oKB3TbBDGRlB0dSzVyf8F.jpg", + "backdropPath": "/ekn5C01gRQYwPC69LU7XlXk1EXA.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2003-09-01", + "releaseYear": "2003", + "originalLanguage": "nl", + "voteAverage": 7.7, + "voteCount": 11, + "popularity": 6.9972 + }, + { + "id": 235351, + "title": "The Legend of Heroes", + "originalTitle": "金庸武侠世界", + "overview": "In the late Southern Song Dynasty, as the Jin forces invaded, the Guo and Yang families faced tragedy. Taoist Qiu Chuji and the Seven Freaks of Jiangnan bet to train their descendants in martial arts. Guo Jing and Yang Kang, growing up under different circumstances, face various challenges. Guo Jing and Huang Rong develop a relationship amid turmoil, while Yang Kang's actions affect those around him.", + "posterPath": "/fVOEMyOJx6pQ3ngacvkxiMZbnMD.jpg", + "backdropPath": "/sbCiZJJEsXEZ7kcZ7oVgQySuRJa.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2024-06-17", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.6, + "voteCount": 11, + "popularity": 6.9942 + }, + { + "id": 123542, + "title": "LINK CLICK", + "originalTitle": "时光代理人", + "overview": "Using superpowers to enter their clientele’s photos one by one, Cheng Xiaoshi and Lu Guang take their work seriously at “Time Photo Studio,” a small photography shop set in the backdrop of a modern metropolis. Each job can be full of danger, but nothing is more important than fulfilling every order, no matter the scale…or peril involved!", + "posterPath": "/hCt2bLRGTCjHGqtV5FP3Img6w1h.jpg", + "backdropPath": "/w3agwUSMpJ4X9t1jGrDtqqRPjDQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2021-04-30", + "releaseYear": "2021", + "originalLanguage": "zh", + "voteAverage": 8.2, + "voteCount": 94, + "popularity": 6.9925 + }, + { + "id": 43020, + "title": "Continuum", + "originalTitle": "Continuum", + "overview": "The series centers on the conflict between a group of rebels from the year 2077 who time-travel to Vancouver, BC, in 2012, and a police officer who accidentally accompanies them. In spite of being many years early, the rebel group decides to continue its violent campaign to stop corporations of the future from replacing governments, while the police officer endeavours to stop them without revealing to anyone that she and the rebels are from the future.", + "posterPath": "/s2rTk8cNuaeyaLhrd3PIKCFyYZ9.jpg", + "backdropPath": "/vNwCFyc5Y2Mrtu94L95KoZHKQ8y.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2012-05-27", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.469, + "voteCount": 890, + "popularity": 6.9878 + }, + { + "id": 81499, + "title": "A Million Little Things", + "originalTitle": "A Million Little Things", + "overview": "A group of friends from Boston who feel stuck in life experience an unexpected wake-up call after one of their friends dies unexpectedly.", + "posterPath": "/Li7uDf1jUEOP4HJaKHX3iXxlad.jpg", + "backdropPath": "/nz7wluvOuF8zwePBp2WydDEShOB.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-09-26", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.313, + "voteCount": 142, + "popularity": 6.9876 + }, + { + "id": 241609, + "title": "Your Friends & Neighbors", + "originalTitle": "Your Friends & Neighbors", + "overview": "When a financial titan suddenly finds himself divorced and jobless, he starts robbing his wealthy neighbors to stay afloat. Stealing from his own social circle strangely exhilarates him—but he gradually gets tangled in a deadly web.", + "posterPath": "/5Red8BT8N0YaWumXMQhuoGP40Ox.jpg", + "backdropPath": "/8NX2kBLHS6vSrl8Lg3Y2JAqzmy9.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-04-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.343, + "voteCount": 137, + "popularity": 6.9866 + }, + { + "id": 33987, + "title": "Corazon Valiente", + "originalTitle": "Corazon Valiente", + "overview": "Angela and Samantha were best friends when they were little, but a trap of fate separated them for many years. An unmissable story of loyalty, friendship, courage and love.", + "posterPath": "/4YWuiRyqnfalauuFC06S5yw92gH.jpg", + "backdropPath": "/qgGX0Ej8f72MAPpFEA4vn4UUDZS.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 10759 + ], + "genres": [ + "Soap", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2012-03-06", + "releaseYear": "2012", + "originalLanguage": "es", + "voteAverage": 7.731, + "voteCount": 364, + "popularity": 6.981 + }, + { + "id": 87478, + "title": "Isekai Quartet", + "originalTitle": "異世界かるてっと", + "overview": "A mysterious switch appeared one day. Upon pressing it, they were sent to a different alternative world!! There are also characters from other alternative worlds gathered together...!?", + "posterPath": "/1qkHR7hYbYKEUQORG2WuWmXlT0S.jpg", + "backdropPath": "/nLDxVvCnQaRRqWjvER9j5bsrre9.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-04-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 58, + "popularity": 6.9787 + }, + { + "id": 68006, + "title": "Taken", + "originalTitle": "Taken", + "overview": "The origin story of younger, hungrier, former Green Beret Bryan Mills as he deals with a personal tragedy that shakes his world. As he fights to overcome the incident and exact revenge, Mills is pulled into a career as a deadly CIA operative, a job that awakens his very particular, and very dangerous, set of skills.", + "posterPath": "/5TgdridU2w1pVsbQB2pt1xvazBX.jpg", + "backdropPath": "/f3kPFcnHNFFIb0fVZpbiJHX5GYb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 35 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2017-02-27", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 260, + "popularity": 6.9754 + }, + { + "id": 1720, + "title": "Foster's Home for Imaginary Friends", + "originalTitle": "Foster's Home for Imaginary Friends", + "overview": "Children who create imaginary friends usually take care of them until they are 7-8 years old. Imaginary friends, left on their own after this event, continue to live in this home founded by old Madam Foster.", + "posterPath": "/kj6oGL4qqFDY8PGmTloqGQ2TblS.jpg", + "backdropPath": "/r6NeRD3diZI7dWEFrRhrwYWoxyB.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10751, + 10765, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Family", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2004-08-13", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.816, + "voteCount": 500, + "popularity": 6.9726 + }, + { + "id": 24835, + "title": "Clannad", + "originalTitle": "CLANNAD", + "overview": "Tomoya Okazaki is a third year high school student resentful of his life. His mother passed away from a car accident when he was younger, causing his father to resort to alcohol and cigarettes. This results in fights between the two until Tomoya's shoulder is injured in a fight. Since then, Tomoya has had distant relationships with his father, causing him to become a delinquent over time. While on a walk to school, he meets a strange girl named Nagisa Furukawa who is a year older, but is repeating due to illness. Due to this, she is often alone as most of her friends have moved on. The two begin hanging out and slowly, as time goes by, Tomoya finds his life shifting in a new direction.", + "posterPath": "/jPBMYp4ddXkGJDSxxmaKBjzv2r3.jpg", + "backdropPath": "/vB7HwJNhlRA9tPViK32bK0hVCmb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-05", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 460, + "popularity": 6.9649 + }, + { + "id": 91997, + "title": "PLUTO", + "originalTitle": "PLUTO", + "overview": "When the world's seven most advanced robots and their human allies are murdered one by one, Inspector Gesicht soon discovers that he's also in danger.", + "posterPath": "/agf5sETjlO35s3EDA7wwGliZ5UW.jpg", + "backdropPath": "/mKs3dnks8MAXzIdIZMN2machwer.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648, + 80 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery", + "Crime" + ], + "releaseDate": "2023-10-26", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 211, + "popularity": 6.9629 + }, + { + "id": 61599, + "title": "The Librarians", + "originalTitle": "The Librarians", + "overview": "A group of librarians set off on adventures in an effort to save mysterious, ancient artifacts. Based on the series of \"The Librarian\" movies.", + "posterPath": "/jnEzRcKFqaSXLAP87gVKTXawwGg.jpg", + "backdropPath": "/1EBMUCxPjGQneeyshurFBpqXVL9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 35 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2014-12-07", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 503, + "popularity": 6.9623 + }, + { + "id": 16281, + "title": "WWE Superstars", + "originalTitle": "WWE Superstars", + "overview": "WWE Superstars is a professional wrestling television program produced by WWE that originally aired on WGN America in the United States. It debuted on April 16, 2009 and ended its domestic broadcasting on April 7, 2011. After the final domestic TV broadcast the show moved to an internet broadcast format while maintaining a traditional television broadcast in international markets. The show features mid-to-low card WWE superstars and divas, in a format similar to the former show WWE Heat which served the same purpose. Big names such as John Cena and Randy Orton previously appeared on the show at its beginning. The show also previously featured talent from the now-defunct ECW brand.", + "posterPath": "/595BCIq8CJUjYHlx0xwkfiesMLF.jpg", + "backdropPath": "/11CP0Do4gIJCHpyiaI4oOTEzcsB.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2009-04-16", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 33, + "popularity": 6.9612 + }, + { + "id": 241576, + "title": "Had I Not Seen the Sun", + "originalTitle": "如果我不曾見過太陽", + "overview": "Filmmaker Zhou Pin-yu interviews a serial killer in prison — an encounter that triggers a string of mysterious events tied to a buried past.", + "posterPath": "/uY4ETb9evtpvjJiXKpgh21cOBno.jpg", + "backdropPath": "/b9nrdh1VaspBckmaDwftW4mcOyC.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2025-11-13", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 6.727, + "voteCount": 11, + "popularity": 6.9585 + }, + { + "id": 272059, + "title": "TO BE HERO X", + "originalTitle": "凸变英雄X", + "overview": "In a world full of brilliant heroes, it’s the trust of fans that turns heroes into superheroes. If a hero loses the people’s trust, they lose their special abilities. Trust value is collected, quantified, and used to determine a hero’s ranking, displayed on their wrist. Every two years, the top heroes go to a tournament to fight, determine new trust values, and earn their rankings.", + "posterPath": "/7ynNG9lYS9HIR8cYMgawO19VPkg.jpg", + "backdropPath": "/4b0oKiGtlwX19b0y6tQQC1ea0o5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.8, + "voteCount": 81, + "popularity": 6.9564 + }, + { + "id": 106734, + "title": "Domina", + "originalTitle": "Domina", + "overview": "The extraordinary rise of Livia Drusilla, who overcame adversity to become the most powerful woman in the world. Follow Livia’s journey from a naïve young girl whose world crumbles in the wake of Julius Caesar’s assassination, to Rome’s most powerful and influential Empress.", + "posterPath": "/n0VBBiQmmYmskL4FVnOi9EsMxkD.jpg", + "backdropPath": "/gwOB22HY1VHsS4QhaeIUR5xcQUb.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-05-14", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 103, + "popularity": 6.9563 + }, + { + "id": 396, + "title": "The District", + "originalTitle": "The District", + "overview": "The District is a television police drama which aired on CBS from October 7, 2000 to May 1, 2004. The show followed the work and personal life of the chief of Washington, D.C.'s Police Department.", + "posterPath": "/hnd8bGqWZhtEdCwDf5YXdIDaJei.jpg", + "backdropPath": "/uU3tSAxLwjY1YTCavhj80r2C97j.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2000-10-07", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 19, + "popularity": 6.9539 + }, + { + "id": 41822, + "title": "Top Chef", + "originalTitle": "Top Chef", + "overview": "An American reality competition show in which chefs compete against each other in culinary challenges and are judged by a panel of professional chefs and other notables from the food and wine industry with one or more contestants eliminated in each episode.", + "posterPath": "/z61ri5TRlMCdFLlcdOnyQt4OzAd.jpg", + "backdropPath": "/1fXznFH7cmHxSli5PRbnNvvte3Y.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2006-03-08", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 64, + "popularity": 6.9528 + }, + { + "id": 10492, + "title": "Hazel", + "originalTitle": "Hazel", + "overview": "Hazel is an American sitcom about a fictional live-in maid named Hazel Burke and her employers, the Baxters. The five-season, 154-episode series aired in primetime from September 28, 1961 until April 11, 1966 and was produced by Screen Gems. The show aired on NBC for its first four seasons, and then on CBS for its final season. The first season, except for one color episode was in black and white, the remainder in color.\n\nThe show was based on the popular single-panel comic strip by cartoonist Ted Key, which appeared in the Saturday Evening Post.", + "posterPath": "/zNFivasZZWSvGr3bORJ8h9ZUNcW.jpg", + "backdropPath": "/h4MZoeUzX4h5jOgccSodxEyxeAe.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1961-09-28", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 20, + "popularity": 6.9456 + }, + { + "id": 97860, + "title": "Tower of God", + "originalTitle": "神之塔 -Tower of God-", + "overview": "Reach the top, and everything will be yours. At the top of the tower exists everything in this world, and all of it can be yours. You can become a god. This is the story of the beginning and the end of Rachel, the girl who climbed the tower so she could see the stars, and Bam, the boy who needed nothing but her.", + "posterPath": "/8v8ANBJNUzvA8F6sM20DBt3zZ44.jpg", + "backdropPath": "/gcvJgJScIt0a5sRt8uLIkGM9IhI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2020-04-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 486, + "popularity": 6.9451 + }, + { + "id": 1922, + "title": "All in the Family", + "originalTitle": "All in the Family", + "overview": "Archie Bunker, a working class bigot, constantly squabbles with his family over the important issues of the day.", + "posterPath": "/s2Y9QWyuyjRP78DZsatknEjn0iN.jpg", + "backdropPath": "/qP6w5T2aMTTkIW5qFqziWhgYlPu.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1971-01-12", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 170, + "popularity": 6.9448 + }, + { + "id": 196400, + "title": "Mobile Suit Gundam: The Witch from Mercury", + "originalTitle": "機動戦士ガンダム 水星の魔女", + "overview": "A. S. (Ad Stella) 122 ― An era when a multitude of corporations have entered space and built a huge economic system. Suletta Mercury, a lone girl from the remote planet Mercury, transfers to the Asticassia School of Technology, run by the Beneritt Group which dominates the mobile suit industry.", + "posterPath": "/gBkDlMaAVOVMRWWlRUHhkLAhNE3.jpg", + "backdropPath": "/8A5sNxppHn68k1FtEiEIBTu73yv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2022-10-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.549, + "voteCount": 92, + "popularity": 6.9446 + }, + { + "id": 37632, + "title": "Switched at Birth", + "originalTitle": "Switched at Birth", + "overview": "The story of two teenage girls who discover they were accidentally switched as newborns in the hospital. Bay Kennish grew up in a wealthy family with two parents and a brother, while Daphne Vasquez, who lost her hearing at an early age due to a case of meningitis, grew up with a single mother in a working-class neighborhood. Things come to a dramatic head when both families meet and struggle to learn how to live together for the sake of the girls.", + "posterPath": "/db5XnOxGcUHeNhBRNbHfqTlzXmk.jpg", + "backdropPath": "/atwkAlHM9NQjEOes09YuSrwsPPQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2011-06-06", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.481, + "voteCount": 211, + "popularity": 6.9395 + }, + { + "id": 7011, + "title": "Bernard", + "originalTitle": "Bernard", + "overview": "Bernard is a series of animated shorts centered on the fictional polar bear and main character of the same name. It is a Korean-Spanish-French co-production. Each three-minute episode focuses on the bear's curiosity and have many moments of slapstick. Bernard never speaks with the exception of unintelligible noises.\n\nBernard is accompanied in the cartoons by a few other characters: Lloyd and Eva the penguins, Zack the lizard, Goliat the chihuahua, Sam the baby, Pilot the dog, Pokey the porcupine and Santa Claus. He usually gets knocked unconscious or severely injured at the end of an episode, due to some calamity caused by his bumbling.", + "posterPath": "/9SXIJY21rm67eQvlPBTTXIiRumG.jpg", + "backdropPath": "/dg1gRMrZIoZo2PmvqRAh6zxUSCC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Family" + ], + "releaseDate": "2006-12-18", + "releaseYear": "2006", + "originalLanguage": "ko", + "voteAverage": 5.602, + "voteCount": 49, + "popularity": 6.9377 + }, + { + "id": 14188, + "title": "The Angry Video Game Nerd", + "originalTitle": "The Angry Video Game Nerd", + "overview": "The Angry Video Game Nerd is an adult web television series of comedic retrogaming video reviews created by and starring James Rolfe. The show's format revolves around his commentary and review of older, but unsuccessful video games which are deemed to be of particularly low-quality, unfair difficulty or poor design.\n\nThe series began as a feature on YouTube and later became a program on ScrewAttack Entertainment before moving to GameTrailers exclusively. The show was renamed The Angry Video Game Nerd to prevent any trademark issues with Nintendo and due to the fact he started reviewing games from non-Nintendo consoles such as those made by Atari and Sega.\n\nRolfe's character, \"The Nerd\" is a short-tempered and foul-mouthed video game fanatic. He derives comic appeal from excessive and inventive use of anger, profanity, and habitual consumption of alcohol while reviewing video games.", + "posterPath": "/h5s62a2ctgCWAcnPw8oOpks6PJE.jpg", + "backdropPath": "/9idqqnOF9VKXdch4rT2fhVjSlyL.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 99 + ], + "genres": [ + "Comedy", + "Documentary" + ], + "releaseDate": "2004-05-25", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 138, + "popularity": 6.9364 + }, + { + "id": 40521, + "title": "Home with Kids", + "originalTitle": "家有儿女", + "overview": "Xia Donghai returns to China with his son to reunite with his daughter and marries Liu Mei, a nurse with her own son. The blended family navigates different parenting styles and the mischievous behavior of their children, leading to both humorous and challenging situations.", + "posterPath": "/knQh5E3YazUwkupxvfSyy11VqW0.jpg", + "backdropPath": "/nK0Jyx2qMisDcPIahU1C5956UvL.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2005-02-12", + "releaseYear": "2005", + "originalLanguage": "zh", + "voteAverage": 7.1, + "voteCount": 19, + "popularity": 6.9337 + }, + { + "id": 67997, + "title": "Koh-Lanta", + "originalTitle": "Koh-Lanta", + "overview": "Fourteen to eighteen contestants have to survive on an uninhabited island for 40 days (20 days in the special editions). It's up to them to find food to accompany the meagre ration of rice provided at the start of the adventure. They have to build a shelter to protect themselves from the elements (bad weather, insects, etc.) and maintain the fire that they managed to build or that they won in the first comfort test.", + "posterPath": "/r6hw3Q2NLWZY3TkpfePFqeGLtVJ.jpg", + "backdropPath": "/vtTtD9Qocy35ER3BCJ4Gcoeeofu.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2001-08-04", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 7, + "voteCount": 13, + "popularity": 6.9331 + }, + { + "id": 66276, + "title": "The Night Of", + "originalTitle": "The Night Of", + "overview": "After a night of partying with a female stranger, a man wakes up to find her stabbed to death and is charged with her murder.", + "posterPath": "/q13XJHdnsmxQL9rXRcnNDrZGHjO.jpg", + "backdropPath": "/szxeyhCWt7C4hTdq60QYbrslGXn.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2016-07-10", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.983, + "voteCount": 1216, + "popularity": 6.9326 + }, + { + "id": 931, + "title": "He-Man and the Masters of the Universe", + "originalTitle": "He-Man and the Masters of the Universe", + "overview": "When Adam, Prince of the planet Eternia, raises his magic sword he transforms into He-Man (the most powerful man in the universe). With his allies and friends, he battles the evil Skeletor and his minions to protect the secrets of Castle Greyskull.", + "posterPath": "/tawmMe0D3ncyzEmmfMraGucXBCA.jpg", + "backdropPath": "/3sTfEJ0kE8C4SUkiVH2ZzWb5aDe.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1983-09-05", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.332, + "voteCount": 391, + "popularity": 6.9313 + }, + { + "id": 253376, + "title": "The Girlfriend", + "originalTitle": "The Girlfriend", + "overview": "Laura has it all: a glittering career, a loving husband, and her precious son, Daniel. But her perfect life unravels when Daniel brings home Cherry, a girlfriend who changes everything. After a tense introduction, Laura becomes convinced Cherry is hiding something. Is she a manipulative social climber, or is Laura just paranoid? The truth is a matter of perspective.", + "posterPath": "/ktrp3tdZ5IQpFux4nLy8z70bt3n.jpg", + "backdropPath": "/lnVWmFvLv2pTZGsuAJytiqKu541.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-09-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.132, + "voteCount": 87, + "popularity": 6.9279 + }, + { + "id": 154494, + "title": "Lycoris Recoil", + "originalTitle": "リコリス・リコイル", + "overview": "A spirited secret agent and her aloof colleague work in an unassuming, charming cafe while happily helping their customers' out in any way they can.", + "posterPath": "/hcPLwLGEU4alv9sOWvzSY4IorxV.jpg", + "backdropPath": "/xIBS2ZIvQZbf6xBMzCi3ml2FSyp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2022-07-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.138, + "voteCount": 195, + "popularity": 6.9222 + }, + { + "id": 68421, + "title": "Altered Carbon", + "originalTitle": "Altered Carbon", + "overview": "After 250 years on ice, a prisoner returns to life in a new body with one chance to win his freedom: by solving a mind-bending murder.", + "posterPath": "/66rKwpSexUZ3yTv5lBS1bjU4Ykk.jpg", + "backdropPath": "/A6I3M4MIA2Pi2gS6vGdg2eVlVXT.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-02-02", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 2137, + "popularity": 6.921 + }, + { + "id": 302540, + "title": "The Bad Guys: Breaking In", + "originalTitle": "The Bad Guys: Breaking In", + "overview": "How did the Bad Guys break into the bad guy business in the first place? Find out in this hilarious prequel series set before the hit films.", + "posterPath": "/12ybD4BvgSpmhSjknFPvf1Nu7CC.jpg", + "backdropPath": "/pXdkJvhBcPf8oEj831ASMkLPXKT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 35, + 10751 + ], + "genres": [ + "Animation", + "Crime", + "Comedy", + "Family" + ], + "releaseDate": "2025-11-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 16, + "popularity": 6.9132 + }, + { + "id": 80281, + "title": "Larva", + "originalTitle": "라바", + "overview": "Two curious worms spend their days investigating the otherworldly objects that fall through the grate into their subterranean world.", + "posterPath": "/jDZ2rAmJ8mTojT929wTRMFKpv2L.jpg", + "backdropPath": "/1WCzuy60z4Caww11JSZgwOmz3RF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "2011-03-26", + "releaseYear": "2011", + "originalLanguage": "ko", + "voteAverage": 7.2, + "voteCount": 20, + "popularity": 6.912 + }, + { + "id": 61746, + "title": "Inside No. 9", + "originalTitle": "Inside No. 9", + "overview": "An anthology of darkly comic twisted tales, each one taking place behind a door marked 'number 9'.", + "posterPath": "/lbHTsN5x7h6aCt7DqPQN4kYHfky.jpg", + "backdropPath": "/vWBIeHJsnNp6pmBc0UvFH2eOoJX.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648, + 80, + 10765, + 18 + ], + "genres": [ + "Comedy", + "Mystery", + "Crime", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2014-02-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.028, + "voteCount": 254, + "popularity": 6.9118 + }, + { + "id": 202411, + "title": "Monarch: Legacy of Monsters", + "originalTitle": "Monarch: Legacy of Monsters", + "overview": "After surviving Godzilla's attack on San Francisco, Cate is shaken yet again by a shocking secret. Amid monstrous threats, she embarks on a globetrotting adventure to learn the truth about her family—and the mysterious organization known as Monarch.", + "posterPath": "/uwrQHMnXD2DA1rvaMZk4pavZ3CY.jpg", + "backdropPath": "/t9i4Icf1LsGIgkpnokQaC4hzxLa.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2023-11-16", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 948, + "popularity": 6.9105 + }, + { + "id": 4550, + "title": "7th Heaven", + "originalTitle": "7th Heaven", + "overview": "Reverend Eric Camden and his wife Annie have always had their hands full caring for seven children, not to mention the friends, sweethearts and spouses that continually come and go in the Camden household.", + "posterPath": "/dGmY2VP6mzAM6s8HkRVc1qzpK83.jpg", + "backdropPath": "/poaxhWMnvrMeEmG6j3wLWNhZvJj.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 35 + ], + "genres": [ + "Family", + "Drama", + "Comedy" + ], + "releaseDate": "1996-08-26", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 219, + "popularity": 6.9095 + }, + { + "id": 46910, + "title": "Catfish: The TV Show", + "originalTitle": "Catfish: The TV Show", + "overview": "Nev and his co-hosts -- from Max to Kamie to celebrity guests -- help people in dubious online relationships track down their baes IRL so they can sort out what's fact and what's fiction.", + "posterPath": "/gy6kqWfIWaVyjU7ifa3KkkTDSHd.jpg", + "backdropPath": "/yg6goCewFMVYQC9Vypz6YpwVOUf.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 18 + ], + "genres": [ + "Reality", + "Drama" + ], + "releaseDate": "2012-11-12", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.708, + "voteCount": 137, + "popularity": 6.9086 + }, + { + "id": 69581, + "title": "The Worst Witch", + "originalTitle": "The Worst Witch", + "overview": "Mayhem and mishaps follow young witch Mildred Hubble wherever she goes. She just can't help it! But with her friends' help, Mildred always manages to avoid disaster just in time.", + "posterPath": "/fLhJKgPKeBsQaSe0i7VOnRQl37r.jpg", + "backdropPath": "/rboZ8THSUD68ux24f9wuf4ptBln.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 9648, + 10765 + ], + "genres": [ + "Kids", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-11", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 198, + "popularity": 6.9074 + }, + { + "id": 261579, + "title": "Secret Level", + "originalTitle": "Secret Level", + "overview": "Adult animated series of original short stories which are set within the worlds of beloved video games. Each episode serves as a gateway to a new adventure, unlocking exciting worlds from beloved gaming classics and highly anticipated new titles.", + "posterPath": "/856MRq23grNxpeVl1PdFgmmLiT0.jpg", + "backdropPath": "/5AvZxT1BtPyP9ua1SjcUyWUMIiz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-12-10", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.378, + "voteCount": 439, + "popularity": 6.9062 + }, + { + "id": 3976, + "title": "So You Think You Can Dance", + "originalTitle": "So You Think You Can Dance", + "overview": "Dancers selected in open auditions across America take part in a rigorous competition designed to best display their talents, training and personalities to a panel of judges and viewers as they strive to win votes and avoid elimination.", + "posterPath": "/e4JAJ3UGBmAshXQG69uH9AgnZkp.jpg", + "backdropPath": "/umD3dTVTK5caOaN35OfoGZysvhM.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2005-07-20", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.784, + "voteCount": 74, + "popularity": 6.9062 + }, + { + "id": 2223, + "title": "The F.B.I.", + "originalTitle": "The F.B.I.", + "overview": "The F.B.I. is an American television series that was broadcast on ABC from 1965 to 1974. It was sponsored by the Ford Motor Company, and the characters almost always drove Ford vehicles in the series. Alcoa was co-sponsor of Season One only.", + "posterPath": "/tUlL68lFmnonSg180QJ59ipnd7c.jpg", + "backdropPath": "/1xFGbReR3wAm6CHA2nPAJhXHMxW.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1965-09-19", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 5.391, + "voteCount": 23, + "popularity": 6.9041 + }, + { + "id": 14666, + "title": "The Listener", + "originalTitle": "The Listener", + "overview": "Toby Logan is a highly skilled paramedic with a secret – he can read minds. Toby never really knew his parents and grew up in foster care, this coupled with his secret, which he shares with no one, has made him a bit of a loner. Until now, Toby has kept his ability hidden, exploring its possibilities only with his long time mentor and confidante Dr. Ray Mercer.", + "posterPath": "/8408RJvs3zRjA0e69I1zJTRxQye.jpg", + "backdropPath": "/h6GA4qaV6WUpULdAl0NdYKtXsUL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2009-06-04", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 116, + "popularity": 6.9015 + }, + { + "id": 243224, + "title": "The Immortal Ascension", + "originalTitle": "凡人修仙传", + "overview": "Han Li, an ordinary, poor boy from a mountain village, joins a small martial arts sect by chance. Despite his mediocre talent, he eventually cultivates himself into an immortal through hard work and careful planning.", + "posterPath": "/kG8YooBxqX5BByifbA0wYeVVRYe.jpg", + "backdropPath": "/tOpyQG9MAnFN4YiDgyk5NnCGa7X.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-27", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.3, + "voteCount": 30, + "popularity": 6.8985 + }, + { + "id": 66825, + "title": "A Terra Prometida", + "originalTitle": "A Terra Prometida", + "overview": "", + "posterPath": "/k9YPIO7IX5EYfjd1LzYYXDXrruF.jpg", + "backdropPath": "/2oiLsxKo72UekCXEOtSEzSKy3XE.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "pt", + "voteAverage": 7.725, + "voteCount": 443, + "popularity": 6.8955 + }, + { + "id": 31499, + "title": "Fish Hooks", + "originalTitle": "Fish Hooks", + "overview": "This inventive animated comedy series, set inside a giant fish tank in Bud's Pet Shop, presents high school life as seen through the eyes of three BFFs (best fish friends), Bea, Milo and Oscar. Together they experience the typical life challenges and triumphs, including friendship, dating and sports, along with more atypical situations such as giant lobster attacks and, with the use of special land suits, school field trips to the hamster cages. The series was created by children's book illustrator Noah Z. Jones and features a notable voice cast. It's produced using an innovative mixture of digital animation and photo collage", + "posterPath": "/gkmlFc6kE2djINsy2RWGVHlex73.jpg", + "backdropPath": "/sFJQKAJ7WdQaGLssnOwFhlRMaSZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2010-09-03", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 87, + "popularity": 6.8953 + }, + { + "id": 31631, + "title": "Covert Affairs", + "originalTitle": "Covert Affairs", + "overview": "A young CIA operative, Annie Walker, is mysteriously summoned to headquarters for duty as a field operative. While Annie believes she's been promoted for her exceptional linguistic skills, there may be something or someone from her past that her CIA bosses are really after. Auggie Anderson is a CIA military intelligence agent who was blinded while on assignment and is Annie's guide in this world of bureaucracy, excitement and intrigue.", + "posterPath": "/pRWUGSGdByQHW93DH2braqkRjZa.jpg", + "backdropPath": "/rOigzdLeQedRF4ebFQMHELjfINC.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2010-07-13", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.88, + "voteCount": 255, + "popularity": 6.8891 + }, + { + "id": 129959, + "title": "Kung Fu Panda: The Dragon Knight", + "originalTitle": "Kung Fu Panda: The Dragon Knight", + "overview": "Follow the adventures of Po, who partners up with a no-nonsense English knight named Wandering Blade to find a collection of four powerful weapons before a mysterious pair of weasels do, and save the world from destruction.", + "posterPath": "/7C9TKvU5dNyhvoG9kQvRFsg6vlA.jpg", + "backdropPath": "/j7FL6KfjEjrGSXt6peQw7U3VL0R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "2022-07-14", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 242, + "popularity": 6.8842 + }, + { + "id": 70, + "title": "This Hour Has 22 Minutes", + "originalTitle": "This Hour Has 22 Minutes", + "overview": "This Hour Has 22 Minutes is a weekly Canadian television comedy that airs on CBC Television. Launched in 1993 during Canada's 35th general election, the show focuses on Canadian politics, combining news parody, sketch comedy and satirical editorials. Originally featuring Cathy Jones, Rick Mercer, Greg Thomey and Mary Walsh, the series featured satirical sketches of the weekly news and Canadian political events. The show's format is a mock news program, intercut with comic sketches, parody commercials and humorous interviews of public figures. The on-location segments are frequently filmed with slanted camera angles.", + "posterPath": "/shWjVJtL7NBLcGiylwWwXLm9nlR.jpg", + "backdropPath": "/2z85pmHUqfkktqDuqaxksGSW8S8.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 35 + ], + "genres": [ + "News", + "Comedy" + ], + "releaseDate": "1993-10-11", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 51, + "popularity": 6.8836 + }, + { + "id": 90388, + "title": "Fire in His Fingertips", + "originalTitle": "指先から本気の熱情", + "overview": "Office worker Ryou Fujihashi is trapped inside her apartment which has set ablaze. The firefighters arrive in time to save her, and one of them happens to be Souma Mizuno, Fujihashi's childhood friend who she had a crush on. As the apartment fire gets put out, an old love gets rekindled.", + "posterPath": "/yHUDRf2e9FGeWXPsT5lVF3iCUwc.jpg", + "backdropPath": "/lLOLKqe6r7uESLDcoO4TaZPHNdW.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-07-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 20, + "popularity": 6.8827 + }, + { + "id": 945, + "title": "Burke's Law", + "originalTitle": "Burke's Law", + "overview": "Burke's Law is an American detective series that ran on ABC from 1963 to 1965 and was revived on CBS in the 1990s. The show starred Gene Barry as Amos Burke, millionaire captain of Los Angeles police homicide division, who was chauffeured around to solve crimes in his Rolls-Royce Silver Cloud II.", + "posterPath": "/ePKRW7T0RCgzSzuVJPwHxcqBPXG.jpg", + "backdropPath": "/1vS7Z2RPXpFVXC0aIOP8VsCIrmh.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1963-09-20", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 11, + "popularity": 6.8826 + }, + { + "id": 1850, + "title": "Caroline in the City", + "originalTitle": "Caroline in the City", + "overview": "Caroline in the City is an American situation comedy that ran on the NBC television network. It stars Lea Thompson as cartoonist Caroline Duffy, who lives in Manhattan in New York City. The series premiered on September 21, 1995 in the \"Must See TV\" Thursday night block after Seinfeld. The show ran for 97 episodes over four seasons, before it was cancelled; its final episode was broadcast on April 26, 1999.", + "posterPath": "/eI7GP4fL77x6zsn2d505GzzCTnK.jpg", + "backdropPath": "/cDuItxWcfn9ZMtLAOkUH5UNpfRN.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1995-09-21", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 30, + "popularity": 6.8784 + }, + { + "id": 2530, + "title": "Mr. Bean: The Animated Series", + "originalTitle": "Mr. Bean: The Animated Series", + "overview": "The animated daily trials and tribulations of clueless yet clever loner Mr Bean (aided by his best friend Teddy of course!) as he stumbles from one mishap to the next, always finding complex solutions to the simplest of problems.", + "posterPath": "/1V2PSez4pNZ9a4Bbomm7KZiQJ44.jpg", + "backdropPath": "/zVuWmf6oqB91OANUKWo0VqCLov4.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2002-01-05", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 435, + "popularity": 6.8769 + }, + { + "id": 75758, + "title": "Lost in Space", + "originalTitle": "Lost in Space", + "overview": "After crash-landing on an alien planet, the Robinson family fights against all odds to survive and escape. But they're surrounded by hidden dangers.", + "posterPath": "/y8NJnTXzb4rio9uvVYFVrXEMofU.jpg", + "backdropPath": "/tJAGIHi7tzyVwOhfuoLkJPubj3b.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2018-04-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1768, + "popularity": 6.8762 + }, + { + "id": 206586, + "title": "The Walking Dead: The Ones Who Live", + "originalTitle": "The Walking Dead: The Ones Who Live", + "overview": "Rick and Michonne are thrown into another world, built on a war against the dead... And ultimately, a war against the living. Can they find each other and who they were in a place and situation unlike any they've ever known before? Are they enemies? Lovers? Victims? Victors? Without each other, are they even alive – or will they find that they, too, are the Walking Dead?", + "posterPath": "/ywbacot78IuNhGW4uVZPxxxVTkm.jpg", + "backdropPath": "/5PCKxpFcCTDFT3b1olJGPaAIM9e.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-02-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 619, + "popularity": 6.8742 + }, + { + "id": 94951, + "title": "Mythic Quest", + "originalTitle": "Mythic Quest", + "overview": "Meet the team behind the biggest multiplayer video game of all time. But in a workplace focused on building worlds, molding heroes, and creating legends, the most hard-fought battles don’t occur in the game—they happen in the office.", + "posterPath": "/7QxQlpqEjx3vRpEtuh6Y0R6eY9O.jpg", + "backdropPath": "/cP82Jtvn7DwVt0mWaDFm7QhWHez.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2020-02-07", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.246, + "voteCount": 415, + "popularity": 6.8712 + }, + { + "id": 278847, + "title": "Top Form", + "originalTitle": "กอดกันมั้ย นายตัวท็อป", + "overview": "Akin, a veteran actor and five-time \"Sexiest Man of the Year,\" loses his title to rising star Jin, who secretly admires and loves him despite the rivalry.", + "posterPath": "/5cDIWdKQX3V6Gcf75H7PQcFV1an.jpg", + "backdropPath": "/iOZ4hgeQqQ4b4Bs0ibppG8ZRPVe.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-03-20", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 9.2, + "voteCount": 20, + "popularity": 6.8673 + }, + { + "id": 262920, + "title": "The Asset", + "originalTitle": "Legenden", + "overview": "A young agent goes undercover to befriend a drug smuggler's wife. But the closer she gets to her target, the more complicated her mission becomes.", + "posterPath": "/ugreFeu0Ng7wnfX6ZRNoQa2sbxX.jpg", + "backdropPath": "/n9YnfHabjCNwCHUXfT6DPxzFa3e.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-10-27", + "releaseYear": "2025", + "originalLanguage": "da", + "voteAverage": 7.175, + "voteCount": 57, + "popularity": 6.8661 + }, + { + "id": 128098, + "title": "Interview with the Vampire", + "originalTitle": "Interview with the Vampire", + "overview": "A century-old vampire from New Orleans reunites with an ailing journalist to recount his life of bloodlust and his tumultuous relationship with the rakish Frenchman who turned him.", + "posterPath": "/Afv4pPhqVMg2wOmhuDLiGUw4r4O.jpg", + "backdropPath": "/r5RoeEWuslP6svlZsHsCKo7TZs7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.367, + "voteCount": 308, + "popularity": 6.8653 + }, + { + "id": 13999, + "title": "The X Factor", + "originalTitle": "The X Factor", + "overview": "The X Factor is a British television music competition to find new singing talent, contested by aspiring singers drawn from public auditions.", + "posterPath": "/8vBwAUaiFEcQQHx2vgj5cG6OB6b.jpg", + "backdropPath": "/aNYE3GKV0MsmlQtwzZI7bEq55Xq.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2004-09-04", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5.108, + "voteCount": 97, + "popularity": 6.8651 + }, + { + "id": 157161, + "title": "Shadow Detective", + "originalTitle": "형사록", + "overview": "A veteran detective who is about to retire unfolds a breathtaking psychological warfare with a mysterious man who follows his path while hiding his identity.", + "posterPath": "/bQlLY4OWGKKFCS1OwkIC9n6hsm7.jpg", + "backdropPath": "/gDyrrcqa4Gt8fYq4Cw7IBwBplcQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2022-10-26", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 6.098, + "voteCount": 42, + "popularity": 6.8626 + }, + { + "id": 96884, + "title": "Dragon Quest: The Adventure of Dai", + "originalTitle": "ドラゴンクエスト ダイの大冒険", + "overview": "Young Dai embarks on an epic journey to become a legendary hero, training with his loyal companions to save the world from the resurrected Demon King.", + "posterPath": "/i28TVlLozR09hqkGsSlu5wa1X2J.jpg", + "backdropPath": "/vp9FfcIS8j2oNkgYlCx3US5te67.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 124, + "popularity": 6.8576 + }, + { + "id": 113036, + "title": "American Horror Stories", + "originalTitle": "American Horror Stories", + "overview": "An anthology series of stand alone episodes delving into horror myths, legends and lore.", + "posterPath": "/8b9FGJ9WhpkeGFOHYgKjPT5AXS6.jpg", + "backdropPath": "/r2ogqivZ9dwpU4ya7EKHA9kMcrL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-15", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 926, + "popularity": 6.8568 + }, + { + "id": 81046, + "title": "The Dragon Prince", + "originalTitle": "The Dragon Prince", + "overview": "An extraordinary discovery inspires two human princes and an elven assassin to team up on an epic quest to bring peace to their warring lands.", + "posterPath": "/d7PIRa6ez7ZEl9D4JUrnSsmcnVD.jpg", + "backdropPath": "/sD3OAmfxHRXWmZFROjRRL3HcPXj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-09-14", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.219, + "voteCount": 671, + "popularity": 6.8546 + }, + { + "id": 433, + "title": "Terminator: The Sarah Connor Chronicles", + "originalTitle": "Terminator: The Sarah Connor Chronicles", + "overview": "The series picks up four years after the events of Terminator 2: Judgment Day with John and Sarah Connor trying to stay under-the-radar from the government, as they plot to destroy the computer network, Skynet, in hopes of preventing Armageddon.", + "posterPath": "/vkMRWrVrNeX42ruRV5Q15mlBACG.jpg", + "backdropPath": "/AqZMuwCcMFbKIZigk7OryaUdsXo.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2008-01-13", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.496, + "voteCount": 952, + "popularity": 6.8523 + }, + { + "id": 103254, + "title": "Yashahime: Princess Half-Demon", + "originalTitle": "半妖の夜叉姫", + "overview": "In feudal Japan, half-demon twins Towa and Setsuna are separated from each other during a forest fire. While desperately searching for her younger sister, Towa wanders into a mysterious tunnel that sends her into present-day Japan, where she is found and raised by Kagome Higurashi’s brother, Sota, and his family. Ten years later, the tunnel that connects the two eras has reopened, allowing Towa to be reunited with Setsuna, who is now a demon slayer working for Kohaku. But to Towa’s shock, Setsuna appears to have lost all memories of her older sister", + "posterPath": "/78l5gFTXyLp9KE4uSWJgSRb9RGj.jpg", + "backdropPath": "/1kRDKwsjADXThhVZhgD3BYURPqa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.334, + "voteCount": 164, + "popularity": 6.8384 + }, + { + "id": 215995, + "title": "Smoke", + "originalTitle": "Smoke", + "overview": "When an arson investigator begrudgingly teams up with a police detective, their race to stop two arsonists ignites a twisted game of secrets and suspicions.", + "posterPath": "/c6xRvQCL07MVNamjfVU2an600q9.jpg", + "backdropPath": "/4F7IE2OEcHsWZwIu1OvXDyiRD84.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-06-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 86, + "popularity": 6.8316 + }, + { + "id": 18604, + "title": "Three Kingdoms", + "originalTitle": "三国", + "overview": "A Chinese television series based on the events in the late Eastern Han Dynasty and the Three Kingdoms period.", + "posterPath": "/nxr6UloLZw6nnsnjCzm5vLhMcfC.jpg", + "backdropPath": "/q4aKVMmOo2EzOcQ5xbCoh3sIV3L.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-05-02", + "releaseYear": "2010", + "originalLanguage": "zh", + "voteAverage": 8, + "voteCount": 28, + "popularity": 6.8197 + }, + { + "id": 12500, + "title": "Rainbow", + "originalTitle": "Rainbow", + "overview": "Children's puppet programme featuring music and stories. Join George, Bungle, Zippy, and all their friends at the Rainbow House, always an exciting place to be.", + "posterPath": "/cAORJWMV0ufuYrYSFrznDTh22AU.jpg", + "backdropPath": "/iRFXa8YSfUfM2d8CM2S4IuQQrcg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762 + ], + "genres": [ + "Comedy", + "Kids" + ], + "releaseDate": "1972-10-16", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 19, + "popularity": 6.8193 + }, + { + "id": 76880, + "title": "SKAM France", + "originalTitle": "SKAM France", + "overview": "Skam France follows five french girls and their friends as they go to high-school.", + "posterPath": "/mif2dTIqHIdTjHIUxBY3yHjZpH7.jpg", + "backdropPath": "/d92qTJea9EYXnQBcOtAjlYDVjOW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-02-09", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 8.177, + "voteCount": 48, + "popularity": 6.817 + }, + { + "id": 87247, + "title": "Bakugan", + "originalTitle": "Bakugan", + "overview": "Follow the adventures of Dan Kouzo and his best friends: the first kids on Earth to bond with the mysterious creatures known as Bakugan!", + "posterPath": "/lg6QqCdvZOZM7EWf9zFJL12EsKv.jpg", + "backdropPath": "/qsjFoAc3Y5JlsSPsOY84bt82OzN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-12-23", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 24, + "popularity": 6.8144 + }, + { + "id": 85723, + "title": "Raised by Wolves", + "originalTitle": "Raised by Wolves", + "overview": "After Earth is ravaged by a great religious war, an atheistic android architect sends two of his creations, Mother and Father, to start a peaceful, godless colony on the planet Kepler-22b. Their treacherous task is jeopardized by the arrival of the Mithraic, a deeply devout religious order of surviving humans.", + "posterPath": "/mTvSVKMn2Npf6zvYNbGMJnYLtvp.jpg", + "backdropPath": "/na2xUduK8HviOFT97TiFG2MkJmY.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-09-03", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.52, + "voteCount": 1696, + "popularity": 6.8139 + }, + { + "id": 66599, + "title": "Private Eyes", + "originalTitle": "Private Eyes", + "overview": "Ex-pro hockey player Matt Shade irrevocably changes his life when he teams up with fierce P.I. Angie Everett to form an unlikely investigative powerhouse.", + "posterPath": "/yPt9IuY2D8g6Lpwh8O8wCDixzt9.jpg", + "backdropPath": "/3gRDZotvt7FqNyTU4bU9S2OCEPi.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 35 + ], + "genres": [ + "Crime", + "Drama", + "Comedy" + ], + "releaseDate": "2016-05-26", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.309, + "voteCount": 141, + "popularity": 6.8081 + }, + { + "id": 38867, + "title": "Lab Rats", + "originalTitle": "Lab Rats", + "overview": "Leo is an ordinary teenager who has moved into a high-tech \"smart'' house with his mother, inventor stepfather and Eddy, the computer that runs the house. Leo's life becomes less ordinary when, one day, he discovers a secret underground lab that houses three experiments: superhuman teenagers. The trio -- Adam, the strong one, Bree, the fast one and Chase, the smart one -- convinces Leo and his parents to let them leave their lab and join Leo at school, where they try to fit in while having to manage their unpredictable bionic strengths. As Leo figures out a way to keep his new pals' bionic abilities a secret, they help him build self-confidence.", + "posterPath": "/lcQMvn9ZptPd3dxn0a17viRfi7Y.jpg", + "backdropPath": "/qu7fEmeN0taTZj8R3L4MfbfoaHS.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 10762 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2012-02-27", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 166, + "popularity": 6.8042 + }, + { + "id": 62046, + "title": "Scream Queens", + "originalTitle": "Scream Queens", + "overview": "The super-charged comedy-horror series is a modern take on the classic whodunit with a killer cast. ", + "posterPath": "/yeayXZYSU8xdmC8i5g5jTdxeggp.jpg", + "backdropPath": "/3wssj86c6b2WQLWGF8BTF2oRG02.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 35 + ], + "genres": [ + "Mystery", + "Comedy" + ], + "releaseDate": "2015-09-22", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.859, + "voteCount": 1772, + "popularity": 6.8017 + }, + { + "id": 587, + "title": "Barnaby Jones", + "originalTitle": "Barnaby Jones", + "overview": "Barnaby Jones is a television detective series starring Buddy Ebsen and Lee Meriwether as father- and daughter-in-law who run a private detective firm in Los Angeles. The show ran on CBS from January 28, 1973 to April 3, 1980, beginning as a midseason replacement. William Conrad guest starred as Frank Cannon of Cannon on the first episode of Barnaby Jones, \"Requiem for a Son\" and the two series had a two-part crossover episode in 1975, \"The Deadly Conspiracy\".", + "posterPath": "/wn1kkCGHJcUQ7C8umfQH9LL2zXR.jpg", + "backdropPath": "/wofevfOdZrHPqFnhZTkHHV25IOO.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1973-01-28", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 6.929, + "voteCount": 28, + "popularity": 6.7989 + }, + { + "id": 216467, + "title": "Mission: Yozakura Family", + "originalTitle": "夜桜さんちの大作戦", + "overview": "Taiyo Asano has been on his own ever since his parents died and the only one who seems to care for him is his childhood friend and classmate, Mutsumi Yozakura. But Mutsumi has a secret—she is the head of a family of spies! And on top of that, her brother Kyoichiro is dangerously protective of her! To stop Kyoichiro from killing him, Taiyo and Mutsumi must take the ultimate leap—marriage! Because in the Yozakura family, family cannot kill family.", + "posterPath": "/dTtXbR0DenriganfBidZxFLk4Xx.jpg", + "backdropPath": "/xUC6mdVESvJN2umz8mNxKn89Htf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 54, + "popularity": 6.7905 + }, + { + "id": 258902, + "title": "English Teacher", + "originalTitle": "English Teacher", + "overview": "A high school teacher in Austin tries to balance the competing demands of the students and their parents in a world where the rules seem to change every day.", + "posterPath": "/iSLATWqOkbzizf00LTXWvzgKKDs.jpg", + "backdropPath": "/mzCTs9DIcOb95Tl4myzpnI0vP0f.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-09-02", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 50, + "popularity": 6.7894 + }, + { + "id": 60930, + "title": "Magnificent Century: Kösem", + "originalTitle": "Muhteşem Yüzyıl: Kösem", + "overview": "Tells the legendary story between the Sultan of Kosem and Ahmed I.", + "posterPath": "/4cSbpfXX9YPMPi1Ggauh7Xm7qmW.jpg", + "backdropPath": "/vbxUtuW59PUut2yfV4KIdq09Ss1.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-11-12", + "releaseYear": "2015", + "originalLanguage": "tr", + "voteAverage": 7.7, + "voteCount": 384, + "popularity": 6.7874 + }, + { + "id": 84200, + "title": "Justice League Unlimited", + "originalTitle": "Justice League Unlimited", + "overview": "The galaxy's most powerful superheroes return to battle the allied villains and criminal plots that endanger the universe.", + "posterPath": "/8PY0OZ1xUbguPipb0a1uL6mg5Ka.jpg", + "backdropPath": "/3NF0qCnYVjczbeEUZBcJg2SlNVt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2004-07-31", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 831, + "popularity": 6.785 + }, + { + "id": 13899, + "title": "Laramie", + "originalTitle": "Laramie", + "overview": "Laramie is an American Western television series that aired on NBC from 1959 to 1963. A Revue Studios production, the program originally starred John Smith as Slim Sherman, Robert Fuller as Jess Harper, Hoagy Carmichael as Jonesy and Robert L. Crawford, Jr., as Andy Sherman.", + "posterPath": "/gZSnbWABcJ98UP9kYPjUbZ6fuDH.jpg", + "backdropPath": "/7LiMDsUQTjXgaXIrgJeTvaXnRkB.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1959-09-15", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 6.618, + "voteCount": 17, + "popularity": 6.783 + }, + { + "id": 254483, + "title": "Your Sky", + "originalTitle": "กี่หมื่นฟ้า", + "overview": "Due to an unforeseen situation, a naive freshman and the campus’s popular senior agree to pretend to be a couple — but their fake deal begins to affect their real feelings.", + "posterPath": "/g581Ja76fFNjj3GcB94fCLw3NHY.jpg", + "backdropPath": "/2dkxU9V6qMSgIdkVXUF1nKbfZtO.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-17", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 8.333, + "voteCount": 19, + "popularity": 6.7782 + }, + { + "id": 46707, + "title": "WWE Main Event", + "originalTitle": "WWE Main Event", + "overview": "WWE Main Event is a professional wrestling television program produced by WWE that airs on Peacock and streams on Hulu Plus in the United States. The show features WWE wrestlers and complements WWE's primary programs Raw and SmackDown.", + "posterPath": "/yVZdqmVMI09F7GzFvDJCc36oBkT.jpg", + "backdropPath": "/lswRmm6czR4QTnwXRtacMfyxgJ0.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10764 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Reality" + ], + "releaseDate": "2012-10-03", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 58, + "popularity": 6.7761 + }, + { + "id": 34045, + "title": "Sister Wives", + "originalTitle": "Sister Wives", + "overview": "Husband Kody Brown, along with his four wives (only one of which is legally married to Kody) and their combined 18 children, attempts to navigate life as a \"normal\" family in a society that shuns their lifestyle.", + "posterPath": "/lnSXPiP9nYx23AbaekTCdTBq722.jpg", + "backdropPath": "/bpD0l55NTyHzIGX0QdTdogTk1ro.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 18, + 10751 + ], + "genres": [ + "Reality", + "Drama", + "Family" + ], + "releaseDate": "2010-09-26", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 51, + "popularity": 6.7761 + }, + { + "id": 73223, + "title": "Black Clover", + "originalTitle": "ブラッククローバー", + "overview": "Asta and Yuno are two orphans who want the same thing: to become the Wizard King. Locked in a friendly rivalry, they work hard towards their goal. While Yuno excels at magic, Asta has a problem uncommon in this world: he has no powers! But, on the day they receive their grimoires, they surprise everyone. To reach their goal, they’ll each find their own path to greatness—with or without magic.", + "posterPath": "/kaMisKeOoTBPxPkbC3OW7Wgt6ON.jpg", + "backdropPath": "/oUsm3pq6rUga7lVGQFS3g84etVE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2017-10-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.492, + "voteCount": 2007, + "popularity": 6.7751 + }, + { + "id": 16906, + "title": "The Beatles Anthology", + "originalTitle": "The Beatles Anthology", + "overview": "A documentary series on the career of The Beatles.", + "posterPath": "/97zhDkOLlrkaIiIvROPsAMSqnzQ.jpg", + "backdropPath": "/uYEzlVmr8nVxdnmIW3Be3QNgIWo.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1995-11-19", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 87, + "popularity": 6.7718 + }, + { + "id": 28032, + "title": "Eurovision Song Contest", + "originalTitle": "Eurovision Song Contest", + "overview": "The Eurovision Song Contest is an international song competition, organised annually by the European Broadcasting Union (EBU) and featuring participants representing primarily European countries. Each participating country submits an original song to be performed on live television and radio, transmitted to national broadcasters via the EBU's Eurovision and Euroradio networks, with competing countries then casting votes for the other countries' songs to determine the winner.", + "posterPath": "/kG2UO5pT91NckAe3tS6WrgxOB3P.jpg", + "backdropPath": "/8CdehvFQlICUmqIwa9G3WmrABUz.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10751, + 10767 + ], + "genres": [ + "Reality", + "Family", + "Talk" + ], + "releaseDate": "1956-05-24", + "releaseYear": "1956", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 33, + "popularity": 6.7701 + }, + { + "id": 17635, + "title": "Forbidden Love", + "originalTitle": "Aşk-ı Memnu", + "overview": "Having lost his wife eleven years ago, Adnan devoted all his attention to his daughter Nihal and his son Bülent. Adnan, who lives in one of the most prominent mansions along the Bosporus in Istanbul with a relative's son Behlül, and his children's nanny, meets Bihter who is also a socialite couple's daughter she is very elegant and beautiful, everyone who meets her get stunned and jealous of her, and he falls in love with her. While searching for peace, safety and happiness in Adnan's mansion, Bihter meets passion. Behlül and Bihter fall completely into each other and become drowned by their infatuation with each other. Their secret love affair will soon affect every member of the family.", + "posterPath": "/xHulNzEqtgkTuwrRorBRXdGzHML.jpg", + "backdropPath": "/zcEKO2vdfXAJoAnlgARyhGthLvK.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2008-09-04", + "releaseYear": "2008", + "originalLanguage": "tr", + "voteAverage": 6.717, + "voteCount": 53, + "popularity": 6.7671 + }, + { + "id": 4734, + "title": "Jumong", + "originalTitle": "주몽", + "overview": "Jumong  examines the life of Jumong Taewang, founder of the kingdom of Goguryeo. Few details have been found in the historical record about Jumong, so much of the series is fictionalized.", + "posterPath": "/oJj4tsSLu65tjcCx5yqHECfehD5.jpg", + "backdropPath": "/lTMZILzENFZm9b0Qs6ry4Rg6Z7T.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18 + ], + "genres": [ + "War & Politics", + "Drama" + ], + "releaseDate": "2006-05-15", + "releaseYear": "2006", + "originalLanguage": "ko", + "voteAverage": 7.561, + "voteCount": 49, + "popularity": 6.7666 + }, + { + "id": 242876, + "title": "Raising Voices", + "originalTitle": "Ni una más", + "overview": "When a 17-year-old reports a sexual assault at her high school, an investigation upends her life and tests her relationships.", + "posterPath": "/lCU77Jp0iWN2e1WuSJvR7M35ebN.jpg", + "backdropPath": "/ieiq46OoeTrLkjtclmhii6iRyzP.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-05-31", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.748, + "voteCount": 422, + "popularity": 6.7637 + }, + { + "id": 76757, + "title": "Golden Kamuy", + "originalTitle": "ゴールデンカムイ", + "overview": "A Russo-Japanese War veteran partners with an Ainu girl to find a treasure stolen from her people, but they’re not the only ones pursuing the gold.", + "posterPath": "/KjatL82mrWDogOlswIxwdrpe2n.jpg", + "backdropPath": "/6qwbib8digp121qA9xj3STeq2KC.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2018-04-09", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.544, + "voteCount": 79, + "popularity": 6.7633 + }, + { + "id": 2286, + "title": "The Real Ghostbusters", + "originalTitle": "The Real Ghostbusters", + "overview": "The continuing adventures of paranormal investigators Dr. Peter Venkman, Dr. Egon Spengler, Dr. Ray Stantz, Winston Zeddemore, their secretary Janine Melnitz and their mascot ghost Slimer.", + "posterPath": "/jsBHJJkMh2CqhKOea84Ek05w9D8.jpg", + "backdropPath": "/fE1HSYnlUlGYBdq81oLuiOnTDC7.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1986-09-13", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 283, + "popularity": 6.7626 + }, + { + "id": 2153, + "title": "Arthur", + "originalTitle": "Arthur", + "overview": "The show revolves around the lives of 8-year-old Arthur Read, an anthropomorphic aardvark, his friends and family, and their daily interactions with each other.", + "posterPath": "/nYN8okmcsmhd4bGVcqifZ5OCumB.jpg", + "backdropPath": "/5k3JpB88vubqYVSHHiAhk2T8z17.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "1996-10-07", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 173, + "popularity": 6.7611 + }, + { + "id": 1615, + "title": "Chip 'n' Dale Rescue Rangers", + "originalTitle": "Chip 'n' Dale Rescue Rangers", + "overview": "Chip and Dale head a small, eccentric group of animal characters who monitor not only the human world, but the animal community as well, solving mysteries wherever they may be. The \"Rescue Rangers\" take the cases that fall through the cracks.", + "posterPath": "/44VE1LaaZq4bZhMDo6Yi29NO4H.jpg", + "backdropPath": "/p5I7g4WUA20U0qR8Gtz96DPJVIx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family", + "Action & Adventure" + ], + "releaseDate": "1989-03-04", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.559, + "voteCount": 522, + "popularity": 6.7542 + }, + { + "id": 228547, + "title": "When I Fly Towards You", + "originalTitle": "当我飞奔向你", + "overview": "Set off by a sweet chance encounter, 16-year-old Su Zaizai finds herself helplessly drawn to Zhang Lurang — her smart, charming yet distant schoolmate.", + "posterPath": "/mjCChwZcEZ9902tUAG1hWZlfOHm.jpg", + "backdropPath": "/lszTdpvocgGlOo6DBmqBO50qd1h.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2023-06-13", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.8, + "voteCount": 88, + "popularity": 6.75 + }, + { + "id": 53787, + "title": "Aria", + "originalTitle": "ARIA", + "overview": "Set in the early 24th century against the backdrop of the city of Neo Venezia on the planet Mars. No longer the barren red planet, Mars has been flooded, inhabited and is something of a tourist hub for those looking for rest, relaxation and a gondola ride – the primary mode of travel in Neo Venezia. The Undines are professional gondoliers, tour guides for the people passing through. Akari Mizunashi is an Undine in training and this is a piece of her story.", + "posterPath": "/1XgXgWmsX1Un8eBHPjcBYpoae6M.jpg", + "backdropPath": "/9ZfSM7eZVLbjYdZB31tlUi2egR8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2005-10-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.533, + "voteCount": 30, + "popularity": 6.75 + }, + { + "id": 62264, + "title": "Ash vs Evil Dead", + "originalTitle": "Ash vs Evil Dead", + "overview": "Bruce Campbell reprises his role as Ash Williams, an aging lothario and chainsaw-handed monster hunter who’s spent the last three decades avoiding maturity, and the terrors of the Evil Dead. But when a Deadite plague threatens to destroy all of mankind, he’s forced to face his demons — both metaphorical and literal.", + "posterPath": "/zsX1atjvymc4CKu72jE400QJGzL.jpg", + "backdropPath": "/kTllqBdy0vjwoMhvzZPABD3Bo4k.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 10765 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-31", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.727, + "voteCount": 1687, + "popularity": 6.746 + }, + { + "id": 96102, + "title": "Hospital Playlist", + "originalTitle": "슬기로운 의사생활", + "overview": "Every day is extraordinary for five doctors and their patients inside a hospital, where birth, death and everything in between coexist.", + "posterPath": "/8MSjQkH2FrG0t4l84L5HmiSFrS7.jpg", + "backdropPath": "/ji7KaBHhxb6ngHEHxXHcfEzi9bu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-03-12", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.503, + "voteCount": 158, + "popularity": 6.7385 + }, + { + "id": 6673, + "title": "The Marvelous Misadventures of Flapjack", + "originalTitle": "The Marvelous Misadventures of Flapjack", + "overview": "A young boy who grew up inside a talking whale sets sail for magical Candied Island, accompanied by Capt. K'nuckles, a crusty old pirate.", + "posterPath": "/8dpk0bjBgX93ZkQxEI1daNSj3OW.jpg", + "backdropPath": "/80KgNNF0bpoDvU5iNXT07Lgb2wL.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Animation" + ], + "releaseDate": "2008-06-05", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.051, + "voteCount": 369, + "popularity": 6.7367 + }, + { + "id": 71885, + "title": "grown-ish", + "originalTitle": "grown-ish", + "overview": "Zoey Johnson heads to college and begins her hilarious journey to adulthood but quickly discovers that not everything goes her way once she leaves the nest.", + "posterPath": "/nq09OaG43ZESp8uwdkFEBC7iFbk.jpg", + "backdropPath": "/6kFHosHtE5cUYt2Jq4DuSPYYz2t.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-01-03", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 158, + "popularity": 6.7336 + }, + { + "id": 247723, + "title": "The Hunting Party", + "originalTitle": "The Hunting Party", + "overview": "A small team of investigators are assembled to track down and capture the most dangerous killers our country has ever seen, all of whom have just escaped from a top-secret prison that's not supposed to exist.", + "posterPath": "/vbKxeQ69YTS3kcGgpsMmzogUfsk.jpg", + "backdropPath": "/hI5I93wdIjN3DuU8q1lgAn4XER.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-01-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 47, + "popularity": 6.7335 + }, + { + "id": 3744, + "title": "Buzz Lightyear of Star Command", + "originalTitle": "Buzz Lightyear of Star Command", + "overview": "Buzz Lightyear of Star Command is an American animated science fiction/adventure/comedy series produced by Walt Disney Television Animation. The series originally aired on UPN and ABC from October 2000 to January 2001 as part of Disney's One Saturday Morning programming block. It follows the adventures of space ranger Buzz Lightyear, who first appeared in the film Toy Story as an action figure and one of the film's protagonists.", + "posterPath": "/jxxwtAbfG4es0rWOUQ5NFJ354nH.jpg", + "backdropPath": "/mUcyG56SxR8c9QLQwcDT93VB0Cm.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10765, + 10751, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Sci-Fi & Fantasy", + "Family", + "Comedy" + ], + "releaseDate": "2000-10-02", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 69, + "popularity": 6.7334 + }, + { + "id": 16395, + "title": "MasterChef Australia", + "originalTitle": "MasterChef Australia", + "overview": "MasterChef Australia is a Logie Award-winning Australian competitive cooking game show based on the original British MasterChef. It is produced by Shine Australia and screens on Network Ten.", + "posterPath": "/m5akdtbWznF8KpOewKyKw0C36s1.jpg", + "backdropPath": "/vg4QxGpweriMUGkcXNgjbFDqWFK.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2009-04-27", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 77, + "popularity": 6.7245 + }, + { + "id": 6000, + "title": "Celebrity Juice", + "originalTitle": "Celebrity Juice", + "overview": "The outrageous comedy panel show hosted by the irrepressible Keith Lemon. Each episode sees top celebrities going head to head in a series of hilarious rounds unlike any other panel show.", + "posterPath": "/5wnYgf4qu8gXmPP9KherAbt2iTD.jpg", + "backdropPath": "/5FHVsxPLn1t8w9NEhcucuwSC3yp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2008-09-24", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.607, + "voteCount": 28, + "popularity": 6.7222 + }, + { + "id": 66389, + "title": "Submission", + "originalTitle": "Submission", + "overview": "Beautiful but unfulfilled Ashley has her eyes opened to the tantalizing possibilities of BDSM when she discovers the popular erotic novel SLAVE by Nolan Keats. But her fascination with the mysterious Mr. Keats leads her into a sexy but dangerous love triangle, and tests the boundaries of her own sexual limitations.", + "posterPath": "/uD2J4giOBcTRUOwcoN33WYCDuKF.jpg", + "backdropPath": "/bcs8l51qpjNdFZK64VhUXZkRSsL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2016-05-12", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.986, + "voteCount": 70, + "popularity": 6.721 + }, + { + "id": 62858, + "title": "Colony", + "originalTitle": "Colony", + "overview": "In the near future a family must make difficult decisions as they balance staying together with trying to survive. They live in Los Angeles, which has been occupied by a force of outside intruders. While some people have chosen to collaborate with the authorities and benefit from the new order, others have rebelled — and suffer the consequences.", + "posterPath": "/qfS0mp22XfTig2EK3jWKiyx7kNy.jpg", + "backdropPath": "/cAgRehPSCjCVrP25zfeffbuptYY.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2016-01-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.866, + "voteCount": 622, + "popularity": 6.7209 + }, + { + "id": 80671, + "title": "Cells at Work!", + "originalTitle": "はたらく細胞", + "overview": "This is a story about you. A tale about the inside of your body... According to a new study, the human body consists of approximately 37 trillion cells. These cells are hard at work every day within a world that is your body. From the oxygen-carrying red blood cells to the bacteria-fighting white blood cells, get to know the unsung heroes and the drama that unfolds inside of you! It's the oddly relatable and interesting story that is the life of cells!", + "posterPath": "/sgwwEGvNy7vCJN8IVnl44tuVlMZ.jpg", + "backdropPath": "/aOQL8UYduNxDePbynZROLZ1nfsf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2018-07-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.088, + "voteCount": 296, + "popularity": 6.7207 + }, + { + "id": 240442, + "title": "Sword and Beloved", + "originalTitle": "天地剑心", + "overview": "The drama series revolves around Wangquan Fugui, who is trained as the ultimate demon-slayer of the Yiqi Alliance since childhood, meeting Qing Tong, a spider demon who infiltrates Wangquan Manor as a spy. Qing Tong’s presence allows Fugui to broaden his horizon and change his view on demons. Yearning for freedom, Fugui’s fervor for attaining world peace is gradually ignited. After experiencing extreme agony, he leaves Wangquan Manor with Qing Tong, embarking on a journey of self-enlightenment.", + "posterPath": "/vW0BW5OiQufPnCyWhi4czVL3nhf.jpg", + "backdropPath": "/kSx7TUpI5uJUqgPMtu5R7Q3VZRe.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-25", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 6.636, + "voteCount": 11, + "popularity": 6.717 + }, + { + "id": 2413, + "title": "Gomer Pyle, U.S.M.C.", + "originalTitle": "Gomer Pyle, U.S.M.C.", + "overview": "Gomer Pyle, U.S.M.C. is an American situation comedy that originally aired on CBS from September 25, 1964, to May 2, 1969. The series was a spinoff of The Andy Griffith Show, and the pilot was aired as the finale of the fourth season of The Andy Griffith Show on May 18, 1964. The show ran for five seasons and a total of 150 episodes. In 2006, CBS Home Entertainment began releasing the series on DVD. The final season was released in November 2008.\n\nThe series was created by Aaron Ruben, who also produced the show with Sheldon Leonard and Ronald Jacobs. Filmed and set in California, it stars Jim Nabors as Gomer Pyle, a naive but good-natured gas-station attendant from the town of Mayberry, North Carolina, who enlists in the United States Marine Corps. Frank Sutton plays Gomer's high-octane, short-fused Gunnery Sergeant Vince Carter, and Ronnie Schell plays Gomer's friend Gilbert \"Duke\" Slater. Allan Melvin played in the recurring role of Gunnery Sergeant Carter's rival, Sergeant Charley Hacker. The series never discussed nor addressed the then-current Vietnam War, instead focusing on the relationship between Gomer and Sergeant Carter. The show retained high ratings throughout its run.", + "posterPath": "/iBtGm3Dk2mdOftPeEtiOMhAy2lw.jpg", + "backdropPath": "/8k8KuDOvHkguHxpfdusApFYmAOZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1964-09-25", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 32, + "popularity": 6.7164 + }, + { + "id": 64353, + "title": "Versailles", + "originalTitle": "Versailles", + "overview": "The story of a young Louis XIV on his journey to become the most powerful monarch in Europe, from his battles with the fronde through his development into the Sun King. Historical and fictional characters guide us in a world of betrayal and political maneuvering, revealing Versailles in all its glory and brutality.", + "posterPath": "/fMqCRNpc2FadD0n7vJLRmlS0aEt.jpg", + "backdropPath": "/cWe83yD8s7B1OZ71ntIS5fCeqWC.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-11-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.712, + "voteCount": 219, + "popularity": 6.7156 + }, + { + "id": 1809, + "title": "The Odd Couple", + "originalTitle": "The Odd Couple", + "overview": "Felix and Oscar are two divorced men. Felix is neat and tidy while Oscar is sloppy and casual. They share a Manhattan apartment, and their different lifestyles inevitably lead to conflicts.", + "posterPath": "/1iYyu877Rc5LXacfyoTHjUP0xJK.jpg", + "backdropPath": "/hIcdjwYzMUDeF1m48IJvxHjFNve.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1970-09-24", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 7.81, + "voteCount": 63, + "popularity": 6.7142 + }, + { + "id": 69555, + "title": "Workin' Moms", + "originalTitle": "Workin' Moms", + "overview": "Four women juggle love, careers, and parenthood. They support, challenge, and try not to judge each other as life throws them curveballs. Whether it is an identity crisis, a huge job opportunity, postpartum depression, or an unplanned pregnancy – they face both the good and bad with grace and humour.", + "posterPath": "/1TJkVKx7IeLadTFxOpUN3QEGI7Z.jpg", + "backdropPath": "/mANwSZL2IybGu12l6JT0bImiD7s.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-01-10", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 114, + "popularity": 6.7141 + }, + { + "id": 18011, + "title": "Vecinos", + "originalTitle": "Vecinos", + "overview": "The everyday life of people in Mexican neighborhoods, where anything can be found. Each episode interacts between these peculiar neighbors, where they encounter real and fictitious problems.", + "posterPath": "/aZRmvPsCO5MawSedQ1eeeDo1xia.jpg", + "backdropPath": "/vDFCOeT5KSA84AI3ATB4eCHrL6l.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762 + ], + "genres": [ + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2005-07-10", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 8.1, + "voteCount": 1082, + "popularity": 6.7137 + }, + { + "id": 285356, + "title": "Watari-kun's ****** Is About to Collapse", + "originalTitle": "渡くんの××が崩壊寸前", + "overview": "Naoto Watari lives solely for his little sister, Suzushiro, until his chaotic childhood friend, Satsuki, storms back into his life. Without uttering a single word, her very presence ignites buried memories and unravels his rigid routine. As tensions rise and secrets surface, Naoto’s devotion to Suzushiro clashes with unresolved pain, threatening to collapse his fragile world.", + "posterPath": "/mKcZjgm4nT6wb1neM20P8pfAZaT.jpg", + "backdropPath": "/wlDhjgzU1NnlZT3jd40OgnC2wL9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2025-07-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 10, + "popularity": 6.7134 + }, + { + "id": 262352, + "title": "The Assassin", + "originalTitle": "The Assassin", + "overview": "Secluded on a remote Greek island, retired assassin Julie has a somewhat thorny reunion with her estranged son, Edward, visiting from England. Armed with questions around new information on his paternity, Edward battles to find the right time to speak to his frustratingly distant mother. But, when the moment finally presents itself, things take a deadly turn as Julie’s dangerous past catches up with her and they are forced to flee the island and go on the run together.", + "posterPath": "/3O2UgEszp1CVbL8p9XnKkFDkbk3.jpg", + "backdropPath": "/7EB84rTBUmjY2tPhNpGjxnKJVeo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-07-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.875, + "voteCount": 48, + "popularity": 6.711 + }, + { + "id": 203599, + "title": "Scoop", + "originalTitle": "東張西望", + "overview": "Scoop is a comprehensive information programme of Television Broadcasts Limited.\n\nThe content of the program is mainly based on entertainment news and personal follow-up of the artists, and will also be interspersed with the latest trends of TVB dramas and artists. Some entertainment news content clips will be rebroadcast on the next day's \"Entertainment Live\".\n\nThis program will be broadcast on Jade Channel from 19:30-20:00 (Hong Kong time) from June 6, 2005, and will be broadcast every day from March 3, 2019, and will be broadcast on myTV (later myTV SUPER) to provide \"Program Review\".", + "posterPath": "/qo6y0XvSBlKM3XCbYVdcR3a6qyQ.jpg", + "backdropPath": "/aCiXh5QX6bg0BtpFEBXKaZYScB4.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 10764, + 99 + ], + "genres": [ + "News", + "Reality", + "Documentary" + ], + "releaseDate": "2005-06-06", + "releaseYear": "2005", + "originalLanguage": "cn", + "voteAverage": 7.2, + "voteCount": 13, + "popularity": 6.7089 + }, + { + "id": 862, + "title": "In the Heat of the Night", + "originalTitle": "In the Heat of the Night", + "overview": "In the Heat of the Night is an American television series based on the motion picture and novel of the same name starring Carroll O'Connor as the white police chief William Gillespie, and Howard Rollins as the African-American police detective Virgil Tibbs. It was broadcast on NBC from 1988 until 1992, and then on CBS until 1995. Its executive producers were Fred Silverman, Juanita Bartlett and Carroll O'Connor. TGG Direct released the first season of the series to DVD on August 28, 2012.", + "posterPath": "/tZ1EH5HiMclbP6DWgIl8D7qETv2.jpg", + "backdropPath": "/ploUH2EYcNQhjWivB9zC6HdfHxn.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1988-03-06", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.46, + "voteCount": 63, + "popularity": 6.7066 + }, + { + "id": 235577, + "title": "The Judge from Hell", + "originalTitle": "지옥에서 온 판사", + "overview": "A cruel and vicious judge, who wields power only for herself, meets a warm and cheerful detective who puts the victims first.", + "posterPath": "/9vhLHbUiiP9HiXfJw5OUC7KoaJG.jpg", + "backdropPath": "/dNwVnRWE4LRLJ9f3WIWOnIURPwn.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 80, + 9648 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Crime", + "Mystery" + ], + "releaseDate": "2024-09-21", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.602, + "voteCount": 142, + "popularity": 6.7029 + }, + { + "id": 37584, + "title": "Ikki Tousen", + "originalTitle": "一騎当千", + "overview": "In the Kanto region of Japan, seven high schools take place in a turf war for territorial supremacy: Nanyo Academy, Kyosho Academy, Seito Academy, Yoshu Academy, Rakuyo High School, Gogun High School, and Yoshu Private School. The fighters of each school bear the sacred jewels called magatama, which contains the essence of warriors from the Three Kingdoms era of Ancient China 1800 years ago, as well as their fates.", + "posterPath": "/eV0cphNP9cyYL28Rxcs1C3lbEGj.jpg", + "backdropPath": "/xIXMFc3Kp1Y9C7AbjWzuHYG1OE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2003-07-30", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.507, + "voteCount": 70, + "popularity": 6.6981 + }, + { + "id": 69291, + "title": "Miss Kobayashi's Dragon Maid", + "originalTitle": "小林さんちのメイドラゴン", + "overview": "Kobayashi lives alone in an apartment, until one day, Tohru appeared and they ended up living together. Tooru looks down on humans as inferior and foolish, but having been saved by Kobayashi-san, she does everything she can to repay the debt and help her with various things, although not everything goes according to plan.\n\nA mythical everyday life comedy about a hard working office lady living with a dragon girl.", + "posterPath": "/tNznuhcf7WKzEmPQEsIgGMrB3Az.jpg", + "backdropPath": "/pNortuSqxj9DuwPARTZrsy2F3Bs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.318, + "voteCount": 849, + "popularity": 6.6919 + }, + { + "id": 139353, + "title": "Cutie Pie", + "originalTitle": "นิ่งเฮียก็หาว่าซื่อ", + "overview": "Lian, a cool businessman, and Kuea, a free-spirited musician, face an arranged marriage. After breaking off their engagement, Lian begins to fall for Kuea.", + "posterPath": "/wErkJHHVjxezm6unGOSXYwIInQm.jpg", + "backdropPath": "/9vwwqwydBaMTH023CsOXi96eTgH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-02-19", + "releaseYear": "2022", + "originalLanguage": "th", + "voteAverage": 7.741, + "voteCount": 58, + "popularity": 6.6918 + }, + { + "id": 232766, + "title": "Mercy for None", + "originalTitle": "광장", + "overview": "After severing ties with his gang, a former gangster returns to uncover the truth behind his brother's death — embarking on a relentless path of revenge.", + "posterPath": "/AjL335mFBe7LgCqo3w0RNBSbbZU.jpg", + "backdropPath": "/fWJjsS2Tr2dlpYuw3o7Lifvgkru.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-06-06", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.77, + "voteCount": 124, + "popularity": 6.6846 + }, + { + "id": 14511, + "title": "WordGirl", + "originalTitle": "WordGirl", + "overview": "Disguised as mild-mannered fifth-grader Becky Botsford, WordGirl arrived on Earth when she and her monkey sidekick Captain Huggy Face crashed their spaceship. Now they fight crime and defend the town from a plethora of madcap villains and scoundrels, while at the same time enriching viewers' vocabulary usage.", + "posterPath": "/vDxyfOf1lHfETsol3uhrjf9tLfg.jpg", + "backdropPath": "/8HjqF4vGxpKtw86iXFpXWdn8IYY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Family" + ], + "releaseDate": "2007-09-07", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 18, + "popularity": 6.684 + }, + { + "id": 34141, + "title": "D.Gray-man", + "originalTitle": "D.Gray-man", + "overview": "Darkness is moving in, and young exorcist Allen Walker is humanity's greatest hope against the wicked forces conspiring to bring civilization to its knees. Akuma – cruel spirits born of tragedy and lost souls – lurk in every shadow, willing and eager to do the bidding of their leader, the dread Millennium Earl. With an eye cursed to see evil in its truest form and blessed with an arm to slay soul-devouring demons, Allen stands ready to confront the gathering evil. Should he fail, Innocence will be lost forever. The war to decide the fate of mankind has begun – and the carnage will be endless.", + "posterPath": "/txCtE7ToSLuG8sy8tAIh9q5JAYS.jpg", + "backdropPath": "/p0dpg6vwRbGIoWB7hS7AqcqAkYi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-10-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 159, + "popularity": 6.6808 + }, + { + "id": 4781, + "title": "Germany's Next Topmodel", + "originalTitle": "Germany's Next Topmodel", + "overview": "Germany's Next Topmodel is a German reality television show, based on a concept that was introduced by Tyra Banks with America's Next Top Model. The competition is hosted by Heidi Klum. She also serves as the lead judge and executive producer of the show.", + "posterPath": "/wkQuRYdYJMOKO4F5qpQ6DV2ySuY.jpg", + "backdropPath": "/77rbkHE0CWjZmbtSSiPocpClG2h.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2006-01-25", + "releaseYear": "2006", + "originalLanguage": "de", + "voteAverage": 4.6, + "voteCount": 10, + "popularity": 6.6748 + }, + { + "id": 35094, + "title": "Wild Kratts", + "originalTitle": "Wild Kratts", + "overview": "The adventures of Chris and Martin Kratt as they encounter incredible wild animals, combining science education with fun and adventure as the duo travels to animal habitats around the globe.", + "posterPath": "/iiwKP22iKZhdZMq1FsiucBlbchr.jpg", + "backdropPath": "/lQ1WqzCSyjH3Zhe11776cnP7ESO.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35 + ], + "genres": [ + "Family", + "Animation", + "Comedy" + ], + "releaseDate": "2011-01-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 51, + "popularity": 6.6734 + }, + { + "id": 65503, + "title": "Aikatsu!", + "originalTitle": "アイカツ!", + "overview": "Ichigo Hoshimiya is a regular, ordinary middle school girl. But when her best friend Aoi invites her to join the idol training academy, Starlight Academy, her whole world is turned upside down. As she encounters all kinds of rivals and learns what it takes to be an idol, she uses her Aikatsu Cards to challenge countless auditions.", + "posterPath": "/tRALkRAPfXlDsJ8XPx9Shz4mvsC.jpg", + "backdropPath": "/7uFbgLPpWRSBlbC96EjNaaRHg2Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 25, + "popularity": 6.6707 + }, + { + "id": 11095, + "title": "Tour of Duty", + "originalTitle": "Tour of Duty", + "overview": "The trials of a U.S. Army platoon serving in the field during the Vietnam War.", + "posterPath": "/uVH3fzDl5vqYolREnppV4Os45gd.jpg", + "backdropPath": "/lSYcgYOedOTLOg92WwncU726PoE.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18, + 10759 + ], + "genres": [ + "War & Politics", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1987-09-24", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 168, + "popularity": 6.6666 + }, + { + "id": 42509, + "title": "Steins;Gate", + "originalTitle": "Steins;Gate", + "overview": "A group of friends have customized their microwave so that it can send text messages to the past. As they perform different experiments, an organization named SERN who has been doing their own research on time travel tracks them down and now the characters have to find a way to avoid being captured by them.", + "posterPath": "/5zxePQEsUKLYDh2kpXGQAeInjUU.jpg", + "backdropPath": "/gDvxT2z6TNxervG97WfpePRZ3aR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery", + "Comedy" + ], + "releaseDate": "2011-04-06", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.434, + "voteCount": 882, + "popularity": 6.6648 + }, + { + "id": 38409, + "title": "RuPaul's Drag Race: Untucked", + "originalTitle": "RuPaul's Drag Race: Untucked", + "overview": "The access-all-areas pass to the drama that you didn't see on the runway—the backstage bitchiness, the catfights, the struggles, the tears and the secrets. See what happens behind the scenes of RuPaul's Drag Race when the queens let their tucks breathe... and let their emotions flow.", + "posterPath": "/35b9oBymLiEOUL9e3WRrJF6aDUK.jpg", + "backdropPath": "/xxgmphUJJOGwhKFKFU3aIKPv96O.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2010-02-01", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 49, + "popularity": 6.6629 + }, + { + "id": 236033, + "title": "The Double", + "originalTitle": "墨雨云间", + "overview": "Xue Fangfei, the daughter of a well-off county magistrate lost everything after a major upheaval. Saved by Jiang Li, the daughter of the Secretariat Director, she took on the identity of Jiang Li and returned to the capital. With the help of Duke Xiao Heng and others, she overcame numerous hardships, tirelessly fought against injustice, rescued her father who had been wrongly imprisoned, assisted Xiao Heng in upholding justice, protecting the common people, and ultimately regained a beautiful life.", + "posterPath": "/u4zFeoSUlqp18yPbzppi5oZRlgH.jpg", + "backdropPath": "/8zIi5neowf6iu7dK6tlLPvOAC5y.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 35 + ], + "genres": [ + "Drama", + "Mystery", + "Comedy" + ], + "releaseDate": "2024-06-02", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 8.2, + "voteCount": 36, + "popularity": 6.6621 + }, + { + "id": 46129, + "title": "Löwenzahn", + "originalTitle": "Löwenzahn", + "overview": "Each 30 minute episode is dedicated to a separate issue or theme and consists mainly of related short featurettes, which explain, explore and educate how things of everyday life and even complex systems work. It spans a wide variety of topics from technology and industry to something as mundane as how the postal service works.", + "posterPath": "/2qS4TNPkZycFHXQO1SpqISe6irV.jpg", + "backdropPath": "/FSp8tU6g8dGv1BkL5V01XcrX3p.jpg", + "mediaType": "tv", + "genreIds": [ + 10751 + ], + "genres": [ + "Family" + ], + "releaseDate": "1981-03-24", + "releaseYear": "1981", + "originalLanguage": "de", + "voteAverage": 7.8, + "voteCount": 18, + "popularity": 6.6621 + }, + { + "id": 122587, + "title": "A Couple of Cuckoos", + "originalTitle": "カッコウの許嫁", + "overview": "16-year-old super-studier Nagi Umino, second-year student at the Megurogawa Academy high school, was switched at birth. On his way to a dinner to meet his birth parents, he accidentally meets the brash, outspoken, Erika Amano, who is determined to make Nagi her fake boyfriend as she never wants to actually marry. But once Nagi makes it to dinner, he finds his parents have decided to resolve the hospital switch by conveniently having him marry the daughter his birth parents raised...who turns out to be none other than Erika herself!", + "posterPath": "/tWDX9uDAzOJhsvunl6PabHdhFx0.jpg", + "backdropPath": "/tC51lHaYqyMKUE1W4rcr2vhi9QG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-24", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 67, + "popularity": 6.6612 + }, + { + "id": 10649, + "title": "The Donna Reed Show", + "originalTitle": "The Donna Reed Show", + "overview": "Revolves around typical family problems, such as firing a clumsy housekeeper, throwing a retirement bash for a colleague, and finding quality time away from the children.", + "posterPath": "/emKpcFHWRosNoQQGyOU0lSn8yAM.jpg", + "backdropPath": "/iej9q5kjTbEPJFxuKKHQBVT9XO.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1958-09-24", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 17, + "popularity": 6.6579 + }, + { + "id": 249010, + "title": "Kelders van Geheime", + "originalTitle": "Kelders van Geheime", + "overview": "Kelders van Geheime (Cellars of Secrets) is a South African, Afrikaans-language telenovela based on the wheeling's and dealings of the community that lives on Soebatskloof (a wine farm in the Cape). The series focuses on three families: the Abrahams, Syster and Marais households. These families will have to stand together, agree (or agree to disagree), and work together to earn their bread and butter – and a glass of wine.", + "posterPath": "/3qgJdhBQ4dDDdFJY7Yxt6SVVIy4.jpg", + "backdropPath": "/3z4zE7WvIyQYadqxDQ7MCpSRbOG.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2024-05-06", + "releaseYear": "2024", + "originalLanguage": "af", + "voteAverage": 6, + "voteCount": 13, + "popularity": 6.6574 + }, + { + "id": 35753, + "title": "The Familiar of Zero", + "originalTitle": "ゼロの使い魔", + "overview": "Louise Françoise Le Blanc de La Vallière’s name is so long and her spell-casting skills are so poor that everyone at the Tristain Academy of Magic just calls her “Louise the Zero.” Louise’s humiliation only increases during an important second-year test, she inexplicably summons Saito Hiraga, a totally normal teenager from Tokyo. Now she’s stuck with him and Saito’s stuck with the lousy life of being a familiar.", + "posterPath": "/edpG7IAoHtEfQ2XMMjcpBarlOF4.jpg", + "backdropPath": "/to2gpUoxeNQlbjfswI8mXldaql0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-07-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.435, + "voteCount": 588, + "popularity": 6.6545 + }, + { + "id": 254476, + "title": "When Destiny Brings the Demon", + "originalTitle": "献鱼", + "overview": "Modern-day office drone Zou Yan accidentally stumbles into the world of cultivation and wakes up as Liao Tingyan, a disciple of the Qinggutian Sect. She's soon selected to serve the reclusive Grandmaster Sima Jiao, a powerful cultivator who's been secretly sealed inside a mountain for 500 years. Twisted by isolation and rage, he's cold, hot-tempered, and bent on revenge. Liao Tingyan doesn't know that \"her\" original identity is a demonic assassin. But to his surprise, she shows no ill will, no ambition, and no desire at all. Her nature fascinates him. Thus begins an unlikely romance between a villainous immortal and a healing-type \"slacker,\" a connection that defies fate and spans lifetimes.", + "posterPath": "/15yDwRPWsI75RdJaBVgb4K5m94I.jpg", + "backdropPath": "/7VxcQrVD2POXg29q5wIFOGD7AY7.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-08-16", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.2, + "voteCount": 10, + "popularity": 6.6532 + }, + { + "id": 127, + "title": "Boston Public", + "originalTitle": "Boston Public", + "overview": "Principal Steven Harper runs Winslow High School as best as he can while dealing with the demands of the faculty, the students and their parents.", + "posterPath": "/yUEMfetlqwab7mOzrZIoAOGwfKi.jpg", + "backdropPath": "/rnPqZmAM7MgBHJmmh8ODtR2pITq.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2000-10-23", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.594, + "voteCount": 48, + "popularity": 6.6518 + }, + { + "id": 230003, + "title": "The Cage", + "originalTitle": "La Cage", + "overview": "Dreaming of going pro, a young fighter struggles to be seen until an unexpected face-off lands him a shot at the big time — and a ruthless rivalry.", + "posterPath": "/4qoqqvKbugSYYE2rfpOmLb0I5kP.jpg", + "backdropPath": "/wTVcYDdghQNroQLuBnae9cDp2va.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2024-11-08", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 6.849, + "voteCount": 96, + "popularity": 6.6484 + }, + { + "id": 32377, + "title": "Armored Trooper VOTOMS", + "originalTitle": "装甲騎兵ボトムズ", + "overview": "The story of stoic Armored Trooper pilot Chirico Cuvie and his quest for answers after a sudden betrayal leaves him on the run from his own military.", + "posterPath": "/hYv6w515vwe3IowcvbPrk4R6ckl.jpg", + "backdropPath": "/1YTo2OpO7GP6k5cq9A0pR6hAWZP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-04-01", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.067, + "voteCount": 15, + "popularity": 6.6481 + }, + { + "id": 2913, + "title": "Are You Afraid of the Dark?", + "originalTitle": "Are You Afraid of the Dark?", + "overview": "This spooky anthology series for kids recounts ghost stories told by the young members of the Midnight Society as they gather around a campfire. Each episode opens with members of the Midnight Society at their secret spot in the woods, where they prepare their fire and the night's storyteller announces the title of the his or her offering. However, the cameras soon leave the storyteller and switch to the tale being told.", + "posterPath": "/48ZsVWU57qVPZ4QkKXZbTYVShy4.jpg", + "backdropPath": "/xp5zva2Zav7mTxy3gApo2QM1GMC.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10762, + 18 + ], + "genres": [ + "Mystery", + "Kids", + "Drama" + ], + "releaseDate": "1992-08-15", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 8.174, + "voteCount": 598, + "popularity": 6.6474 + }, + { + "id": 250988, + "title": "House of Guinness", + "originalTitle": "House of Guinness", + "overview": "Dublin, 1868. The Guinness family patriarch is dead, and his four children — each with dark secrets to hide — hold the brewery's fate in their hands.", + "posterPath": "/cDjJBbJcOj7PsWAveLFdSa4J8zJ.jpg", + "backdropPath": "/1ELIdCCzB1afeO0KQh2lvUaOxjd.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-25", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.618, + "voteCount": 89, + "popularity": 6.6448 + }, + { + "id": 11515, + "title": "The Defenders", + "originalTitle": "The Defenders", + "overview": "The Defenders is an American courtroom drama series . It starred E. G. Marshall and Robert Reed as father-and-son defense attorneys who specialized in legally complex cases, with defendants such as neo-Nazis, conscientious objectors, civil rights demonstrators, a schoolteacher fired for being an atheist, an author accused of pornography, and a physician charged in a mercy killing.", + "posterPath": "/g4QCPffsJqElwCu8f1JvvuaRVsc.jpg", + "backdropPath": "/8kX9xQPQGOpA8tQX5SS2IxEk544.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1961-09-16", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 10, + "popularity": 6.6424 + }, + { + "id": 19612, + "title": "Mashin Hero Wataru", + "originalTitle": "魔神英雄伝ワタル", + "overview": "Mashin Hero Wataru is a comedy/adventure Super Robot multimedia franchise originally consisting of 45 episode anime series created by Sunrise first aired on April 15, 1988. Sunrise credited \"Hajime Yatate\" for the storyline and Shuji Iuchi directed the series. The series employs a kinetic visual gag style, often employing characters running with their feet over their shoulders derived from Sunrise's previous Super Robot anime series Choriki Robo Galatt.", + "posterPath": "/mpoPs9ToEm5OXhiwEpfkdgJDHgz.jpg", + "backdropPath": "/hb96dbC0aRwVpboLTilg6cAqrIE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1988-04-16", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 6.846, + "voteCount": 13, + "popularity": 6.6378 + }, + { + "id": 65798, + "title": "Letterkenny", + "originalTitle": "Letterkenny", + "overview": "Letterkenny follows Wayne, a good-ol’ country boy in Letterkenny, Ontario trying to protect his homegrown way of life on the farm, against a world that is constantly evolving around him. The residents of Letterkenny belong to one of three groups: Hicks, Skids, and Hockey Players. The three groups are constantly feuding with each other over seemingly trivial matters; often ending with someone getting their ass kicked.", + "posterPath": "/zrB0Viy72GYKiLrtSs7SQVz5QWl.jpg", + "backdropPath": "/wdHK7RZNIGfskbGCIusSKN3vto6.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-02-07", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 188, + "popularity": 6.6347 + }, + { + "id": 118588, + "title": "Seduced by My Best Friend", + "originalTitle": "黒ギャルになったから親友としてみた。", + "overview": "Shion and Rui are the dream team when it comes to hitting on women. Tonight was going to be another night of hooking up with girls for Shion, but he ended up taking a strange drug. When he woke up... he'd turned into a girl?! Rui came looking for Shion, but didn't recognize him, and started hitting on him...", + "posterPath": "/kRytTcYHz6pq3cPEwNTAOkSQhQ4.jpg", + "backdropPath": "/kWmMpYtfrflLoElevbtpQxsz5M6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 23, + "popularity": 6.6323 + }, + { + "id": 44317, + "title": "Saint Seiya Omega", + "originalTitle": "聖闘士星矢Ω", + "overview": "An anime-original spin-off/sequel based on the Saint Seiya series: The god of war and guardian of his namesake planet, Mars, was once sealed away by Seiya, but time has passed and his revival is at hand. Meanwhile, Saori Kido is raising the boy Kouga, whose life Seiya saved, and he's been training every day to become a Saint in order to prepare for the coming crisis. Unaware of his destiny, when Kouga awakens to the power of his Cosmo hidden inside him, the curtain will rise upon the legend of a new Saint.", + "posterPath": "/qjgGUtZsosDehY49oshGU72TwTa.jpg", + "backdropPath": "/anrVGmcs2fn8cn8WNZ7Low6NkSQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2012-04-01", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 232, + "popularity": 6.6271 + }, + { + "id": 3033, + "title": "Laverne & Shirley", + "originalTitle": "Laverne & Shirley", + "overview": "Best friends, roommates, and polar opposites, Laverne DeFazio and Shirley Feeney work together at the Shotz Brewery in Milwaukee and keep each other's spirits up at home.", + "posterPath": "/mUMK8AZ5uvJoTXqgGjYQNoIkf5N.jpg", + "backdropPath": "/6BlEWrhG1MVfsxo42Isrl9QJupQ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1976-01-27", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 65, + "popularity": 6.6237 + }, + { + "id": 78950, + "title": "Miracle Workers", + "originalTitle": "Miracle Workers", + "overview": "The first season of this comedy anthology is set in the offices of Heaven Inc. When God plans to destroy the Earth, two low-level angels must convince their boss to save humanity. They bet him they can pull off their most impossible miracle yet: help two humans fall in love.", + "posterPath": "/yrvfcgR0R9uGxyMYrQGxe7Gu47i.jpg", + "backdropPath": "/vb8XuUMHDICiAay2QUxEuCCMPQ0.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-02-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 296, + "popularity": 6.6215 + }, + { + "id": 1921, + "title": "Gilligan's Island", + "originalTitle": "Gilligan's Island", + "overview": "The slapstick adventures of hapless Gilligan, long-suffering Skipper and their gang of mismatched castaways, all stranded on an uncharted desert isle after their tiny ship hit stormy weather.", + "posterPath": "/7PjIzzCh43hNU77C8oKLdL7XXge.jpg", + "backdropPath": "/4Y2XnGhGnir8nx9pf7WGAAcho7K.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1964-09-26", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 245, + "popularity": 6.6163 + }, + { + "id": 3425, + "title": "Ultraman", + "originalTitle": "ウルトラマン", + "overview": "Hayata is a member of the Science Patrol, an organization tasked with investigating bizarre anomalies. He is mortally wounded when accidently encountering an alien being from Land of Light, who grants Hayata new life as the two are merged into one. Now, whenever a threat arises that is too great for the Science Patrol to handle, Hayata activates the beta capsule and becomes the hero known as Ultraman.", + "posterPath": "/7BanECmWCduOuJ5LzCjY93IdyPU.jpg", + "backdropPath": "/nQViCFfoObO5Xs8oHVjyfF4rHeL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 9648 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "1966-07-17", + "releaseYear": "1966", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 53, + "popularity": 6.6142 + }, + { + "id": 240558, + "title": "King & Conqueror", + "originalTitle": "King & Conqueror", + "overview": "The story of a clash that defined the future of a country and a continent for a thousand years. Harold of Wessex and William of Normandy were two men destined to meet at the Battle of Hastings in 1066. These two former allies with no design on the British throne found themselves forced by circumstance and personal obsession into a war for possession of its crown.", + "posterPath": "/8SW0c0tUFWjpWBz2UYr0U57a8kB.jpg", + "backdropPath": "/bEhOXB2Pmda0tgRya5tLEaDr1qY.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-08-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.065, + "voteCount": 46, + "popularity": 6.6123 + }, + { + "id": 65676, + "title": "My Teen Romantic Comedy SNAFU", + "originalTitle": "やはり俺の青春ラブコメはまちがっている。", + "overview": "So exactly what’s going to happen when Hachiman Hikigaya, an isolated high school student with no friends, no interest in making any and a belief that everyone else’s supposedly great high school experiences are either delusions or outright lies, is coerced by a well meaning faculty member into joining the one member “Volunteer Services Club” run by Yukino Yukinoshita, who’s smart, attractive and generally considers everyone in her school to be her complete inferior?", + "posterPath": "/sb5MNoeZGHX21qvtwhmizUsJJqq.jpg", + "backdropPath": "/5VL7HC4aeLhepAaGxaQBUBWgIGo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2013-04-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 547, + "popularity": 6.6116 + }, + { + "id": 37567, + "title": "Dr. Slump", + "originalTitle": "Dr.スランプ アラレちゃん", + "overview": "Senbei Norimaki, known by his nickname Dr. Slump, a genius yet under-respected inventor and roboticist, creates an android by the name of Arale, and poses her as his little sister. What starts as an experiment in robotics turns into an adventure every day for the residents of Penguin Village, a wacky rural community with several colorful characters interacting with Arale and her creator.", + "posterPath": "/q19uWJMNLcyQ0I14DaH4XVwW8TQ.jpg", + "backdropPath": "/4K9mqtNbipQI7qfmLN4xCNitLL4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1981-04-08", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 130, + "popularity": 6.6089 + }, + { + "id": 7246, + "title": "Blackadder", + "originalTitle": "Blackadder", + "overview": "Black Adder traces the deeply cynical and self-serving lineage of various Edmund Blackadders throughout British history, from the muck of the Middle Ages to the frontline of the First World War.", + "posterPath": "/y3rXOeklqhZ7BTBveW5WLJqyjgU.jpg", + "backdropPath": "/ArLn4fRjLqqMtyPTB22qaTK4Cxt.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1983-06-15", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 509, + "popularity": 6.6086 + }, + { + "id": 32815, + "title": "Raising Hope", + "originalTitle": "Raising Hope", + "overview": "James \"Jimmy\" Chance is a clueless 24-year-old who impregnates a serial killer during a one-night-stand. Earning custody of his daughter after the mother is sentenced to death, Jimmy relies on his oddball but well-intentioned family for support in raising the child.", + "posterPath": "/5f34dJ1nKeghLXp5dWZfa8SWCzN.jpg", + "backdropPath": "/45hDcAQdlNxHLPX07ZMC33ISfXq.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2010-09-21", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 309, + "popularity": 6.6067 + }, + { + "id": 79622, + "title": "Hunters", + "originalTitle": "Hunters", + "overview": "A diverse band of Nazi Hunters living in 1977 New York City discover that hundreds of high ranking Nazi officials are living among us and conspiring to create a Fourth Reich in the U.S. The eclectic team of Hunters set out on a bloody quest to bring the Nazis to justice and thwart their new genocidal plans.", + "posterPath": "/mjsz10d1abJXZwT9b8CTgniRJh9.jpg", + "backdropPath": "/qiHP7bcwRVvxDoeH6PpvkwmpYyS.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2020-02-20", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 599, + "popularity": 6.6029 + }, + { + "id": 80986, + "title": "DC's Stargirl", + "originalTitle": "DC's Stargirl", + "overview": "Courtney Whitmore, a smart, athletic and above all else kind girl, discovers her step-father has a secret: he used to be the sidekick to a superhero. \"Borrowing\" the long-lost hero’s cosmic staff, she becomes the unlikely inspiration for an entirely new generation of superheroes.", + "posterPath": "/68EbeOUOG66a23bCwP9VK4WzwTj.jpg", + "backdropPath": "/b5lKppEquuQWm6fTjGcu2g8FJgs.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2020-05-18", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.709, + "voteCount": 1139, + "popularity": 6.6025 + }, + { + "id": 241554, + "title": "Murderbot", + "originalTitle": "Murderbot", + "overview": "In a high-tech future, a rogue security robot secretly gains free will. To stay hidden, it reluctantly joins a new mission protecting scientists on a dangerous planet...even though it just wants to binge soap operas.", + "posterPath": "/mIKfKo2uDk3itzAPYIcSeYr4KtF.jpg", + "backdropPath": "/if4r7bXrDH50GhNwCo3Bz8F2LOg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10765 + ], + "genres": [ + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-05-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.285, + "voteCount": 340, + "popularity": 6.6 + }, + { + "id": 26318, + "title": "Slayers", + "originalTitle": "スレイヤーズ", + "overview": "Follows the exploits of the young sorceress Lina Inverse, whose life revolves around food, treasure, and fighting. After stealing treasure from a group of bandits, Lina is accosted by stragglers during her journey to the next town. She's not in any real danger, but a dim-witted but good-natured swordsman named Gourry Gabriev springs to her rescue anyways. The two team up, and head to Atlas City, fighting foes they encounter on the way. Unbeknownst to them, two mysterious figures are hot on their tail, and they are especially interested in the “treasure” Lina and Gourry have stolen.", + "posterPath": "/qoKUaJVQBYtEXYJebksIA8dwGdD.jpg", + "backdropPath": "/9M97xCfMuYAxRt4Yy3UTF3e7JGP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1995-04-07", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 46, + "popularity": 6.5996 + }, + { + "id": 113985, + "title": "Outer Range", + "originalTitle": "Outer Range", + "overview": "A rancher fighting for his land and family stumbles upon an unfathomable mystery at the edge of Wyoming’s wilderness, forcing a confrontation with the Unknown in ways both intimate and cosmic in the untamable American West.", + "posterPath": "/9leGmIDamsWJELYz0pZkr2EXUFf.jpg", + "backdropPath": "/wI4aGtreUx7vFtZGcyiFoOX3qf3.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-14", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.907, + "voteCount": 365, + "popularity": 6.5988 + }, + { + "id": 50137, + "title": "RWBY", + "originalTitle": "RWBY", + "overview": "The future-fantasy world of Remnant is filled with ravenous monsters, treacherous terrain, and more villains than you can shake a sniper-scythe at. Fortunately, Beacon Academy is training Huntsmen and Huntresses to battle the evils of the world, and Ruby, Weiss, Blake, and Yang are ready for their first day of class.", + "posterPath": "/pTLBkalS00rc9FSxgdt4bcwWdvH.jpg", + "backdropPath": "/gvqUljGv6Jo7V1R4H1rJPAW3Qla.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-07-18", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.796, + "voteCount": 194, + "popularity": 6.5977 + }, + { + "id": 241405, + "title": "Dying for Sex", + "originalTitle": "Dying for Sex", + "overview": "After Molly Kochan receives a diagnosis of Stage IV metastatic breast cancer, she leaves her husband and explores the full breadth and complexity of her sexual desires for the first time in her life.", + "posterPath": "/xaKb3cTh8mT6fgLSXuqo4JoS0dU.jpg", + "backdropPath": "/bVgcsQddGZ71kTXGrFJOn1fDEZj.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-04-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.477, + "voteCount": 88, + "popularity": 6.5911 + }, + { + "id": 44305, + "title": "DreamWorks Dragons", + "originalTitle": "DreamWorks Dragons", + "overview": "From the creators of \"How to Train Your Dragon\" comes a new series that takes Hiccup and Toothless to the edge of adventure.", + "posterPath": "/gFhBIF8oXjpdVk1NbI4kP4l8LAe.jpg", + "backdropPath": "/lXMmT078fOOvCAg5f6tKNrMNpOS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2012-08-07", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 734, + "popularity": 6.5839 + }, + { + "id": 67195, + "title": "Legion", + "originalTitle": "Legion", + "overview": "David Haller, AKA Legion, is a troubled young man who may be more than human. Diagnosed as schizophrenic, David has been in and out of psychiatric hospitals for years. But after a strange encounter with a fellow patient, he’s confronted with the possibility that the voices he hears and the visions he sees might be real.", + "posterPath": "/xhJtYVTsdXQCIlB5hAXkMCPUG9y.jpg", + "backdropPath": "/87eP7ITTrOWvkA4EqCuoRdyjzLy.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-02-08", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.506, + "voteCount": 1484, + "popularity": 6.5838 + }, + { + "id": 67070, + "title": "Fleabag", + "originalTitle": "Fleabag", + "overview": "A portrait into the mind of a dry-witted, sexual, angry, porn-watching, grief-riddled woman, trying to make sense of the world. As she hurls herself headlong at modern living, Fleabag is thrown roughly up against the walls of contemporary London, with all its frenetic energy, late nights, and bright lights.", + "posterPath": "/27vEYsRKa3eAniwmoccOoluEXQ1.jpg", + "backdropPath": "/52FrqXobnTvkt5otdkcWcToIReH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-07-21", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.28, + "voteCount": 1694, + "popularity": 6.5829 + }, + { + "id": 81425, + "title": "Talking Tom and Friends", + "originalTitle": "Talking Tom and Friends", + "overview": "Armed with technological gear, great ideas and an unfailing sense of humour, Talking Tom and his friends are on a mission to reach stardom at all costs.", + "posterPath": "/u6We7ht3z8bSIaUF8P7DEwopOPi.jpg", + "backdropPath": "/yLLRJwHlRwADEojNwVhqAxSH8hh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2014-12-23", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 15, + "popularity": 6.5819 + }, + { + "id": 71116, + "title": "Castle Rock", + "originalTitle": "Castle Rock", + "overview": "Based on the stories of Stephen King, the series intertwines characters and themes from the fictional town of Castle Rock.", + "posterPath": "/6dnUpv9ghx84pgxlMOb4uuJrWDs.jpg", + "backdropPath": "/qyRJPtJkJz7wtS4UJnJez9S3WOM.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2018-07-25", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.229, + "voteCount": 630, + "popularity": 6.581 + }, + { + "id": 39898, + "title": "Kung Fu Panda: Legends of Awesomeness", + "originalTitle": "Kung Fu Panda: Legends of Awesomeness", + "overview": "Now living in his permanent home at the Jade Palace with the rest of the Furious Five, Po the Panda trains, battles, learns, teaches, stumbles, gabs and \"geeks out\" as the newest hero in the Valley of Peace.", + "posterPath": "/rkq5Jt7boR5v65bDbELHz3DW7sv.jpg", + "backdropPath": "/yQ2ke3rpDxZm6NcIRIs4LPhjXi7.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2011-09-19", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 198, + "popularity": 6.5789 + }, + { + "id": 66488, + "title": "Chelsea", + "originalTitle": "Chelsea", + "overview": "It's not her first talk show, but it is a first of its kind. Ideas, people and places that fascinate her, all in her unique style.", + "posterPath": "/lDbyyKRDk5FmDY98eCc97gUEZod.jpg", + "backdropPath": "/wPNBOUMxSWKysHxQW4Q1hC99L4k.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2016-05-11", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 76, + "popularity": 6.5782 + }, + { + "id": 97085, + "title": "Van der Valk", + "originalTitle": "Detective Van der Valk", + "overview": "Set against the backdrop of the city of Amsterdam, Piet Van der Valk and his team investigate a series of high-profile cases immersed in the worlds of art, politics, addiction, mysticism and the fashion industry.", + "posterPath": "/hXhLu31ro2O8C5vRBzLjFP4yACO.jpg", + "backdropPath": "/xnT4XnJhMFExcV8dUNiIwIDF3OD.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2020-01-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 48, + "popularity": 6.578 + }, + { + "id": 226362, + "title": "The Eternaut", + "originalTitle": "El Eternauta", + "overview": "After a devastating toxic snowfall kills millions, Juan Salvo and a group of survivors in Buenos Aires must resist an invisible threat from another world.", + "posterPath": "/ucI5KroZLP0KyJqQnAdOpzhVvBs.jpg", + "backdropPath": "/yMjGzK7L4gwzpQNNtFKDeG79upo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-30", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.536, + "voteCount": 425, + "popularity": 6.5771 + }, + { + "id": 48462, + "title": "The Heirs", + "originalTitle": "상속자들", + "overview": "After a chance encounter in LA, two teens from different social backgrounds reunite at an exclusive high school attended by Korea's über rich.", + "posterPath": "/n4RX9QVXjHbMB31TDWqqRLjshgu.jpg", + "backdropPath": "/zv8uqdLsJzuVkZZYF7pr1DtSQei.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-10-09", + "releaseYear": "2013", + "originalLanguage": "ko", + "voteAverage": 7.795, + "voteCount": 645, + "popularity": 6.5694 + }, + { + "id": 61415, + "title": "Fate/stay night [Unlimited Blade Works]", + "originalTitle": "Fate/stay night [Unlimited Blade Works]", + "overview": "This story focuses primarily on the heroine Rin Tohsaka. After her father’s death, Rin enters the Holy Grail War as the sole heir to the prestigious Tohsaka Household, with her servant Archer. But, she soon finds out that Shirou Emiya, a boy from her high school has gotten himself involved in the battles and unexpectedly saves him when he is fatally injured. Before long, Rin sets out to strike down the conspiracies surrounding the Holy Grail War along with Shirou and his summoned servant Saber. And so, the story begins to explore the truth behind Shirou’s powers and the nature behind his unyielding will to become a “hero.”", + "posterPath": "/jyqi5BkDoKKIA2WAoz3HBtRHld3.jpg", + "backdropPath": "/uqOcBHNHsmYPePmrvYhjraRxLdJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-12", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.006, + "voteCount": 340, + "popularity": 6.5642 + }, + { + "id": 3755, + "title": "Sister, Sister", + "originalTitle": "Sister, Sister", + "overview": "Twins Tia Landry and Tamera Campbell were separated and adopted at birth. Fourteen years later, they encounter each other by chance at the mall. After the families meet, Tia's widowed father agrees to let Tamera and her single mother move in with them.", + "posterPath": "/fzJHEbfgRM5uJaon5AVxwJxFMSF.jpg", + "backdropPath": "/iMchJspN4irOysGlYXKeqgTDOO1.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Kids", + "Drama" + ], + "releaseDate": "1994-04-01", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.067, + "voteCount": 120, + "popularity": 6.5632 + }, + { + "id": 3796, + "title": "Trailer Park Boys", + "originalTitle": "Trailer Park Boys", + "overview": "Follow the booze-fueled misadventures of three longtime pals and petty serial criminals who run scams from their Nova Scotia trailer park.", + "posterPath": "/nIcIwVTYcZnW1BDzexGfFO7KmX1.jpg", + "backdropPath": "/4RttvRiea7C5BaD1YJXpny6nGSx.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2001-04-22", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.71, + "voteCount": 293, + "popularity": 6.561 + }, + { + "id": 14451, + "title": "Shugo Chara!", + "originalTitle": "しゅごキャラ!", + "overview": "Shugo Chara! centers on elementary school girl Amu Hinamori, whose popular exterior, referred to as \"cool and spicy\" by her classmates, contrasts with her introverted personality. When Amu wishes for the courage to be reborn as her would-be self, she is surprised to find three colorful eggs the next morning, which hatch into three Guardian Characters: Ran, Miki, and Su.", + "posterPath": "/aHzXsG3NMgen50YoBHvl4f8V5Fa.jpg", + "backdropPath": "/6htIjVL46IZoTvX2KfXRbTVGrBb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.794, + "voteCount": 17, + "popularity": 6.5606 + }, + { + "id": 4636, + "title": "Viper", + "originalTitle": "Viper", + "overview": "Viper is an action-adventure TV series about a special task force set up by the federal government to fight crime in the fictional city of Metro City, California that is perpetually under siege from one crime wave after another. The weapon used by this task force is an assault vehicle that masquerades as a Dodge Viper RT/10 roadster and coupe. The series takes place in \"the near future\". The primary brand of vehicles driven in the show were Chrysler or subsidiary companies.\n\nThe Viper Defender \"star car\" was designed by Chrysler Corporation engineers. The exterior design of the car was produced by Chrysler stylist Steve Ferrerio.", + "posterPath": "/zBNq9usIgXBhUw4jgHpetSvSZKp.jpg", + "backdropPath": "/3UScqNjM7GVB9oo20fVFHkSeTye.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-01-02", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.082, + "voteCount": 49, + "popularity": 6.5599 + }, + { + "id": 246027, + "title": "No One Saw Us Leave", + "originalTitle": "Nadie nos vio partir", + "overview": "A mother faces stigma and a painful separation when her husband takes their children abroad, forever changing her life.", + "posterPath": "/zZjZNhYWwRgyyJyYqBpU02uV4ja.jpg", + "backdropPath": "/qLUqBpWFvags0yOPVBsH1pxt3SA.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-15", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.3, + "voteCount": 25, + "popularity": 6.559 + }, + { + "id": 103051, + "title": "Paatal Lok", + "originalTitle": "पाताल लोक", + "overview": "A down and out cop lands the case of a lifetime when four suspects are nabbed in the assassination attempt of a prime time journalist. The case turns out to be a devious maze where nothing is what it looks like. The pursuit of it leads him to the dark netherworld - the 'Paatal Lok', and to shocking discoveries in the past of the four suspects.", + "posterPath": "/qL8f1E0W42CFHG8NtpyJFMPeKnw.jpg", + "backdropPath": "/lgbMRcbGAbLr6LxF4wi514TpFpj.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2020-05-15", + "releaseYear": "2020", + "originalLanguage": "hi", + "voteAverage": 7.4, + "voteCount": 96, + "popularity": 6.5587 + }, + { + "id": 210916, + "title": "The Recruit", + "originalTitle": "The Recruit", + "overview": "Recruited out of law school by the CIA, a daredevil young attorney leaps unprepared into the dangerous world of international espionage.", + "posterPath": "/mLbFg0u2DPYuB5CILzwWk3kdI8b.jpg", + "backdropPath": "/rey2eh6752C2UbGYRileKk1PVTo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2022-12-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.453, + "voteCount": 423, + "popularity": 6.5562 + }, + { + "id": 1386, + "title": "Tales from the Darkside", + "originalTitle": "Tales from the Darkside", + "overview": "Tales from the Darkside is an anthology horror TV series created by George A. Romero, each episode was an individual short story that ended with a plot twist. The series' episodes spanned the genres of horror, science fiction, and fantasy, and some episodes featured elements of black comedy or more lighthearted themes.", + "posterPath": "/dlpqUF9io9Sl00jb7vhlqaTyFvq.jpg", + "backdropPath": "/fU8wiNXv4k26KhOhnCZPq0I2TY4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1984-09-30", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 88, + "popularity": 6.5557 + }, + { + "id": 1549, + "title": "WWE SmackDown", + "originalTitle": "WWE SmackDown", + "overview": "The superstars of World Wrestling Entertainment's \"SmackDown\" brand collide each and every Friday on WWE Friday Night SmackDown.", + "posterPath": "/1WA4RvB4aJ7LY4s9xEw0SkRaS5x.jpg", + "backdropPath": "/qD6lxVdmkUNY6Gcc7eRYlxTH79p.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1999-04-29", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 179, + "popularity": 6.5553 + }, + { + "id": 204082, + "title": "Squid Game: The Challenge", + "originalTitle": "Squid Game: The Challenge", + "overview": "In this reality competition show inspired by \"Squid Game,\" 456 players put their skills to the ultimate test for a life-changing $4.56 million prize.", + "posterPath": "/eAjXAgdjPMZH9Ugub7XYPowFoS1.jpg", + "backdropPath": "/qgYK2c5Yl6h0K7s0ClLa3lIcKuV.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2023-11-22", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.457, + "voteCount": 600, + "popularity": 6.5543 + }, + { + "id": 67391, + "title": "The K2", + "originalTitle": "더케이투", + "overview": "A patriotic bodyguard who was abandoned by his country and colleagues, a hidden daughter of leading Presidential candidate who regards love as a tool for revenge, and the First Lady contender who hides her ambition and charisma behind a kind and friendly personality.", + "posterPath": "/egziV2hfeNcDTQwZCGgtbKfUEpD.jpg", + "backdropPath": "/3xHzNBfXfzfd3cLZMhkwJCl4xR9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2016-09-23", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 7.694, + "voteCount": 163, + "popularity": 6.5537 + }, + { + "id": 4285, + "title": "My Fair Princess", + "originalTitle": "还珠格格", + "overview": "Centers around the legend of Princess Huanzhu during the reign of the Qianlong Emperor of the Qing Dynasty.", + "posterPath": "/6HRRG1GeNc1BfvvykQ5zfdEOVSW.jpg", + "backdropPath": "/b6lZg69n0pejkK6LTGIcCqEGFns.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1998-04-28", + "releaseYear": "1998", + "originalLanguage": "zh", + "voteAverage": 7.7, + "voteCount": 42, + "popularity": 6.5524 + }, + { + "id": 220377, + "title": "El Turco", + "originalTitle": "El Turco", + "overview": "Balaban, a soldier in the Janissary army, settles in Moena in northern Italy after the Battle of Vienna in 1683 and fights for the rights of the local people.", + "posterPath": "/sUJ6hzDvznBJDrfHMuQm8Qm183F.jpg", + "backdropPath": "/mIYq8g2yqiK0RxoNmoLx0VopHgX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-04-02", + "releaseYear": "2025", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 22, + "popularity": 6.5505 + }, + { + "id": 80828, + "title": "The Nevers", + "originalTitle": "The Nevers", + "overview": "In the last years of Victoria's reign, London is beset by the \"Touched\": people — mostly women — who suddenly manifest abnormal abilities, some charming, some very disturbing. Among them are Amalia True, a mysterious, quick-fisted widow, and Penance Adair, a brilliant young inventor. They are the champions of this new underclass, making a home for the Touched, while fighting the forces of… well, pretty much all the forces — to make room for those whom history as we know it has no place.", + "posterPath": "/v6Xmj8Fy7ZruVTz3y2Po7O0TQh4.jpg", + "backdropPath": "/mhFYqrTLk5JlzzdHkyu4NVzasDj.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.934, + "voteCount": 686, + "popularity": 6.5499 + }, + { + "id": 78, + "title": "Dateline", + "originalTitle": "Dateline", + "overview": "Dateline NBC, or simply Dateline, is a weekly American television newsmagazine series. It was previously the network's flagship newsmagazine, but now focuses mainly on true crime stories with only occasional editions that focus on other topics.", + "posterPath": "/xj9zonhdomfBpEhZQmAON5u3CiB.jpg", + "backdropPath": "/4m8QH2C6hBQQ08EgwaOtOv7ATFh.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 99 + ], + "genres": [ + "Crime", + "Documentary" + ], + "releaseDate": "1992-03-31", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.396, + "voteCount": 48, + "popularity": 6.5491 + }, + { + "id": 111141, + "title": "Maid", + "originalTitle": "Maid", + "overview": "After fleeing an abusive relationship, a young mother finds a job cleaning houses as she fights to provide for her child and build them a better future.", + "posterPath": "/4brWcSXdH31BZUTtRTHj2BYFe6M.jpg", + "backdropPath": "/i65eDmzPilc9FSVboIKdSSZ8Q0E.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-09-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.976, + "voteCount": 829, + "popularity": 6.5489 + }, + { + "id": 1039, + "title": "Trapper John, M.D.", + "originalTitle": "Trapper John, M.D.", + "overview": "Trapper John, M.D. is an American television medical drama and spin-off of the film MASH, concerning a lovable doctor who became a mentor and father figure in San Francisco, California. The show ran on CBS from September 23, 1979, to September 4, 1986.", + "posterPath": "/rUqIscf4OwAs061JVDh3wdNRye9.jpg", + "backdropPath": "/bJEWmOZp0EGjKAbezny2zpkmw0o.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1979-09-23", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 21, + "popularity": 6.5475 + }, + { + "id": 50666, + "title": "Seksenler", + "originalTitle": "Seksenler", + "overview": "Turkey's series about the events experienced in the 1980s", + "posterPath": "/lRFRmCUmD8UzLhG4MnbJptX8FTL.jpg", + "backdropPath": "/kNcXpTKuchASCk5hFejbra14rvo.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 18 + ], + "genres": [ + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "2012-01-24", + "releaseYear": "2012", + "originalLanguage": "tr", + "voteAverage": 7.188, + "voteCount": 16, + "popularity": 6.5434 + }, + { + "id": 41551, + "title": "Police District", + "originalTitle": "Distretto di Polizia", + "overview": "The events of Police District unfold in the rooms of the 10th Tuscolano, a police station on the outskirts of Rome where current events intertwine with the private lives of the inspectors, officers and commissioners who, over the course of 11 intense seasons, have created one of the greatest successes on Italian TV.", + "posterPath": "/yBgG7Mkx3IfpHhZep5K4o0ZDrpW.jpg", + "backdropPath": "/6a6tiGpZaaHSA5nMvMN1GWjYcHi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2000-09-26", + "releaseYear": "2000", + "originalLanguage": "it", + "voteAverage": 6.7, + "voteCount": 13, + "popularity": 6.5431 + }, + { + "id": 69346, + "title": "Saga of Tanya the Evil", + "originalTitle": "幼女戦記", + "overview": "On the front lines of the war, Tanya Degurechaff, blond hair, blue eyes, and porcelain white skin, commands her squad with lisping voice. Actually, she is one of Japan's most elite salary men, reborn as a little girl into a world of magical warfare after angering a mysterious being who calls himself God.", + "posterPath": "/5nwiHomKZBBF9DLrolfZapi3fDm.jpg", + "backdropPath": "/gI3rLwLZ9fHuqcEXYiCBvVpUHb0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2017-01-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.219, + "voteCount": 405, + "popularity": 6.5347 + }, + { + "id": 17174, + "title": "Ghosts", + "originalTitle": "Ghosts", + "overview": "A cash-strapped young couple inherits a grand country house, only to find it is both falling apart and teeming with the ghosts of former inhabitants.", + "posterPath": "/3Xz4JtqISyVCKct96O94k4Mz5sU.jpg", + "backdropPath": "/2FXDdIGjDhEoBkuFk5NhHWLd3VX.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 228, + "popularity": 6.5306 + }, + { + "id": 13795, + "title": "Tales of Wells Fargo", + "originalTitle": "Tales of Wells Fargo", + "overview": "Jim Hardie helps Wells Fargo agents battle the bad guys.", + "posterPath": "/qqm4UkpOT7pno9zt25nSmbt7MIh.jpg", + "backdropPath": "/rGZo3xBJM2VYHn30LY7G0xwYu1n.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1957-03-18", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 6.929, + "voteCount": 14, + "popularity": 6.5201 + }, + { + "id": 8624, + "title": "Eastbound & Down", + "originalTitle": "Eastbound & Down", + "overview": "Years after he turned his back on his hometown, a burned-out major league ballplayer returns to teach phys ed at his old middle school.", + "posterPath": "/grAnpm6mv6aipoGeS0yS6RuTZSG.jpg", + "backdropPath": "/yQNtCRbofKQAPKRKy101tV0BEKI.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2009-02-15", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.393, + "voteCount": 327, + "popularity": 6.5193 + }, + { + "id": 96775, + "title": "My Home My Destiny", + "originalTitle": "Doğduğun Ev Kaderindir", + "overview": "", + "posterPath": "/ykDPCmjkXD3rRdlFE7VqnjyUpas.jpg", + "backdropPath": "/wTh8q0Uj5pMHNcW5KFJ8WZ7snt1.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-12-26", + "releaseYear": "2019", + "originalLanguage": "tr", + "voteAverage": 7.4, + "voteCount": 25, + "popularity": 6.5185 + }, + { + "id": 75214, + "title": "Violet Evergarden", + "originalTitle": "ヴァイオレット・エヴァーガーデン", + "overview": "The war is over, and Violet Evergarden needs a job. Scarred and emotionless, she takes a job as a letter writer to understand herself and her past.", + "posterPath": "/61EwFPqc0r1uJo6la49J55F8bQ8.jpg", + "backdropPath": "/2e2AEk7Jmn8CztM62hoUyEEWw0B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.468, + "voteCount": 894, + "popularity": 6.5173 + }, + { + "id": 60839, + "title": "Broad City", + "originalTitle": "Broad City", + "overview": "Broad City follows two women throughout their daily lives in New York City, making the smallest and mundane events hysterical and disturbing to watch all at the same time.", + "posterPath": "/fRu9zQFdWHjEVyHwnIYqm0LRoKA.jpg", + "backdropPath": "/koWH7LZWZ8zUmr1rNKDhMWdkr99.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2014-01-22", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.104, + "voteCount": 227, + "popularity": 6.5148 + }, + { + "id": 61888, + "title": "The Last Man on Earth", + "originalTitle": "The Last Man on Earth", + "overview": "The year is 2022, and after an unlikely event, only one man is left on earth: Phil Miller, who used to be just an average guy who loved his family and hated his job at the bank. Now, in his RV, Phil searches the country for other survivors.", + "posterPath": "/9TcvdOIBEnIDXbLvFUKluRDa3tZ.jpg", + "backdropPath": "/6g6NdCgFxO8qVp0cosVOm4xdjQG.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2015-03-01", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.892, + "voteCount": 922, + "popularity": 6.5127 + }, + { + "id": 99353, + "title": "Love Is Blind", + "originalTitle": "Love Is Blind", + "overview": "Nick and Vanessa Lachey host this social experiment where single men and women look for love and get engaged, all before meeting in person.", + "posterPath": "/8XhV6ke8ltRYoG4SYmibF2bGwrC.jpg", + "backdropPath": "/5sZyCtojLzqYAsz0qH9QMllu55I.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2020-02-13", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.247, + "voteCount": 95, + "popularity": 6.512 + }, + { + "id": 88055, + "title": "Servant", + "originalTitle": "Servant", + "overview": "A Philadelphia couple are in mourning after an unspeakable tragedy creates a rift in their marriage and opens the door for a mysterious force to enter their home.", + "posterPath": "/plsSSobmPSSz4hm8vYMXeIVkJJP.jpg", + "backdropPath": "/7nsRpSCYcDGLcDmFAISHC8zMQ0D.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2019-11-28", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.542, + "voteCount": 852, + "popularity": 6.507 + }, + { + "id": 235503, + "title": "Lada Gold", + "originalTitle": "Лада Голд", + "overview": "Arthur, the grandson of crime boss Midas, is forced to return from the Netherlands to Russia for his grandfather's funeral. Pavel, the grandson of the hero policeman Ogurtsov, famous throughout Tolyatti, got bogged down in problems with his family, girlfriend and money. Both guys embark on the adventure of a lifetime on Lada 21043, made entirely of gangster gold. The car and the guys are being hunted by the leaders of three gangster groups who have just been released from prison — Bald, Buba and Grishka the singer, as well as the boundless Shamray, who will do anything to regain gold, influence and power.", + "posterPath": "/3XDCNC2iU3sX87WPNPEmIt3ELAU.jpg", + "backdropPath": "/8yDdyFC95yuCSc9fa21dleFgNPF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10759 + ], + "genres": [ + "Comedy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2023-09-21", + "releaseYear": "2023", + "originalLanguage": "ru", + "voteAverage": 7.3, + "voteCount": 11, + "popularity": 6.5056 + }, + { + "id": 2586, + "title": "Sanford and Son", + "originalTitle": "Sanford and Son", + "overview": "The misadventures of a cantankerous junk dealer and his frustrated son.", + "posterPath": "/zIGPWBFjfnOzqsMxZeQ4UmuPggQ.jpg", + "backdropPath": "/9bKG3fEyUjDizCL164OgfFGYTUs.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1972-01-14", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 91, + "popularity": 6.5011 + }, + { + "id": 9160, + "title": "Candy Candy", + "originalTitle": "キャンディ・キャンディ", + "overview": "This story is about a girl, Candy, who is a orphan. She is a nice and optimistic girl and she has a warm heart. When she was a child, she lived in an orphanage called Pony's Home. She had a good friend called Ann. And she met the \"handsome boy on the hill\" who is a important person in her life, on the hill behind the orphanage.\n\nShe was adopted by the Loka's family. What's awaiting her are the bad-hearted Leo and his sister, Eliza. One day, in the rose garden, she met a boy, who is identical to the \"handsome boy on the hill\" who she had met in her childhood. The boy is called Antony. Thereafter, a fantastic story that she has never expected begins.", + "posterPath": "/fBidRE6eaO41CqApwkpXyj9v9hi.jpg", + "backdropPath": "/6d6qoDzMDKMub3xJ6MO0dpjAQUs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10762 + ], + "genres": [ + "Animation", + "Drama", + "Kids" + ], + "releaseDate": "1976-10-15", + "releaseYear": "1976", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 673, + "popularity": 6.4989 + }, + { + "id": 207484, + "title": "Outlander: Blood of My Blood", + "originalTitle": "Outlander: Blood of My Blood", + "overview": "From the battlefields of World War I to the rugged Highlands of 18th century Scotland, two fated couples must defy the forces that seek to tear them apart, unfolding in surprising and unforeseen ways in this romantic saga that unfolds across time.", + "posterPath": "/z5iW51VQe9GCGhMMeKdmQL3jgCg.jpg", + "backdropPath": "/eIzZbii038RzFgKMHIJZEekONfa.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-08-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 67, + "popularity": 6.4988 + }, + { + "id": 219446, + "title": "The Family", + "originalTitle": "Aile", + "overview": "Aile is a story of Aslan who is the son of a large family, runs a nightclub. An extremely shrewd man. He is a dark and mysterious character. Psychologist Devin will enter the life of this difficult man and it becomes intense.", + "posterPath": "/o1FRgsUSD0mqrmwZtCDtGmZbCh3.jpg", + "backdropPath": "/pGNjkVKZ6icRj3WsceB5Nd4i6fI.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2023-03-07", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 7.7, + "voteCount": 35, + "popularity": 6.4982 + }, + { + "id": 13905, + "title": "12 O'Clock High", + "originalTitle": "12 O'Clock High", + "overview": "This series chronicles the adventures--in the air and on the ground--of the men of the 918th Bombardment Group of the U.S. Eighth Air Force. First commanded by irascible General Frank Savage--and later by Colonel Joe Gallagher, the son of a Pentagon General--the Group is stationed in England, and flies long-range bombing missions into German-held Europe.", + "posterPath": "/ocq6H8uIitqJQO4qD1odhRYaEbC.jpg", + "backdropPath": "/kGa3yb1tRe4JKilMclfBUYdTBC9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "1964-09-18", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 20, + "popularity": 6.4965 + }, + { + "id": 18202, + "title": "Cougar Town", + "originalTitle": "Cougar Town", + "overview": "Jules Cobb is a mom in her forties facing the often humorous challenges, pitfalls and rewards of life's next chapter. Along for the journey is her son, her ex-husband, her husband/neighbor and her friends who together make up her dysfunctional, but supportive and caring extended family... even if they have a funny way of showing it sometimes.", + "posterPath": "/AvxlfUW8OVQ630v7Se1mesDYbfW.jpg", + "backdropPath": "/2Fc9ap5qsYmOZkSZnwMk9kNoLVQ.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-09-23", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.458, + "voteCount": 253, + "popularity": 6.4949 + }, + { + "id": 245927, + "title": "Paradise", + "originalTitle": "Paradise", + "overview": "The tranquility in a serene, wealthy community inhabited by some of the world's most prominent individuals explodes when a shocking murder occurs and a high stakes investigation unfolds.", + "posterPath": "/sJUti0JDtE1IYl7RVJARAGyKHqz.jpg", + "backdropPath": "/qV2REPQ7pPlmQT7Mljkca0wi4Bx.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-01-26", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 280, + "popularity": 6.4946 + }, + { + "id": 105971, + "title": "Star Wars: The Bad Batch", + "originalTitle": "Star Wars: The Bad Batch", + "overview": "The 'Bad Batch' of elite and experimental clones make their way through an ever-changing galaxy in the immediate aftermath of the Clone Wars.", + "posterPath": "/cDQAvfgAqnKuklerrZylZr6PCQa.jpg", + "backdropPath": "/sjxtIUCWR74yPPcZFfTsToepfWm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-05-04", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 1098, + "popularity": 6.4925 + }, + { + "id": 64163, + "title": "The Testament of Sister New Devil", + "originalTitle": "新妹魔王の契約者", + "overview": "Toujou Basara is a high school student whose father has suddenly just remarried. His father then departs overseas leaving Basara with two new beautiful step-sisters. Little does he know, his new sisters, Mio and Maria are actually the new Demon Lord and a succubus!? Almost trapped into a life of servitude, Basara forms a reverse contract by accident and ends up becoming Mio's master! Hijinks ensue as Basara finds himself in one ecchi situation after another. However, Mio's life is in danger as she is pursued by demons and heroes!", + "posterPath": "/4yrW5uBgcx7GSehJotlxWjAD0NQ.jpg", + "backdropPath": "/dXGaX995fsbiqJgFRj0CEJKxZVV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 338, + "popularity": 6.4907 + }, + { + "id": 46412, + "title": "Utawarerumono", + "originalTitle": "うたわれるもの", + "overview": "Hakuoro has lost his memory after succumbing to serious injuries. But thanks to an elderly woman and her granddaughter Eruruu, he is nursed back to health. His face is covered by a strange irremovable mask and he occasionally sees beastly visions. Eruruu now cares for him as he becomes accustomed to the village and its inhabitants, who all bear strange ears (the women also have tails). Though these people venerate the forces of nature, desecration of an altar forces them to take drastic measures to preserve their lives from the wrath of Mutikapa-sama, guardian of the forest.", + "posterPath": "/9skPAAxMLG25aYROr3UT1JJi9UQ.jpg", + "backdropPath": "/61wohujGWIWPRFxereT1o7uCArN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.077, + "voteCount": 26, + "popularity": 6.4893 + }, + { + "id": 101048, + "title": "Doc", + "originalTitle": "Doc – Nelle tue mani", + "overview": "When Doctor Andrea Fanti loses 12 years of memories from a brain injury, he finds himself adjusting to a world full of strangers.", + "posterPath": "/6yFfvnYMGXYmGbtmiIrRuRzJzUU.jpg", + "backdropPath": "/tOydUcBWP6aV28bCqcafKYxfJH4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2020-03-26", + "releaseYear": "2020", + "originalLanguage": "it", + "voteAverage": 8.1, + "voteCount": 194, + "popularity": 6.4839 + }, + { + "id": 139060, + "title": "Chained Soldier", + "originalTitle": "魔都精兵のスレイブ", + "overview": "Destructive monsters from the Mato dimension threaten the earth, while women gifted with powers from Peaches try to stop them. But to save the world, Yuuki must be willing to become Chief Kyoka's servant both on the battlefield and at home.", + "posterPath": "/9SFBctEZE0X4t1A2q16MC7EJrsC.jpg", + "backdropPath": "/t02dITrzFNNFEaogaxSOgibpZfp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.578, + "voteCount": 64, + "popularity": 6.4806 + }, + { + "id": 1042, + "title": "Revolutionary Girl Utena", + "originalTitle": "少女革命ウテナ", + "overview": "Utena is a tomboyish school girl who attends the prestigious Ohtori Academy. Her strong sense of chivalry pulls her into a series of duels with other members of the Student Council for the possession of the Rose Bride.", + "posterPath": "/riqymWBPqKmWpIvS3lVDYjZhwQ5.jpg", + "backdropPath": "/802aSsZzIyOhbaL1bt19gp0RVYq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-04-02", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8.151, + "voteCount": 63, + "popularity": 6.4776 + }, + { + "id": 67385, + "title": "Naked Attraction", + "originalTitle": "Naked Attraction", + "overview": "The show looks at whether a partner can be found based solely on the naked body and animal magnetism. Two singletons join host Anna Richardson as they seek to choose a date from a selection of six naked people, who will be revealed to them one body part at a time. They then get dressed and head off on a date, to see if there is any chemistry when the clothes come on.", + "posterPath": "/rqrgb2CvBcaUD9UsTGynOBHmwqh.jpg", + "backdropPath": "/6fEANxuz4apmPvRurbVP5l5Ux1P.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2016-07-25", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 40, + "popularity": 6.4768 + }, + { + "id": 111800, + "title": "The Old Man", + "originalTitle": "The Old Man", + "overview": "Dan Chase absconded from the CIA decades ago and now lives off the grid. When an assassin arrives and tries to take Chase out, the old operative learns that to ensure his future he now must reconcile his past.", + "posterPath": "/8Ec9zCZl2Go8WhDN1JWjjgQRlEi.jpg", + "backdropPath": "/x5VGLsI5Hgc1UgbQUCYIS6SIfYf.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2022-06-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 415, + "popularity": 6.4762 + }, + { + "id": 8392, + "title": "Popeye the Sailor", + "originalTitle": "Popeye the Sailor", + "overview": "Follows the adventures of the famed spinach-eating sailor man.\n\nPopeye is one of the most popular cartoon characters of all time. This spunky but loveable spinach-eating sailor continues to delight young and old with his comic adventures, and the entire gang is around to provide plenty of rousing fun and action: Olive Oyl, Swee'Pea, Wimpy and Bluto.", + "posterPath": "/tQPDl1S1pRg2jzCQWtVUuauZSqa.jpg", + "backdropPath": "/2YeQEGqzE0FDto39IiWRlDg9lN6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1960-06-10", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 7.131, + "voteCount": 392, + "popularity": 6.4735 + }, + { + "id": 114294, + "title": "Judy Justice", + "originalTitle": "Judy Justice", + "overview": "The Honorable Judy Sheindlin, retired Judge of the Manhattan family Court, brings her signature blend of sharp wit and wisdom, hilarious candor and unwavering honesty that has made her America’s favorite judge for over 25 years, as she presides over real cases, arbitrates binding decisions and delivers what only she can: “Judy Justice.”", + "posterPath": "/k15qqWRA2ngsltHeGtOcw5qxrQD.jpg", + "backdropPath": "/gBYnHblm9zDbt5YSkLnUUYa0E1v.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2021-10-31", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 14, + "popularity": 6.4675 + }, + { + "id": 66870, + "title": "Magi: Adventure of Sinbad", + "originalTitle": "マギ シンドバッドの冒険", + "overview": "Thirty years before the events of Magi, a brave and handsome young man named Sinbad set sail and started his adventure. The future High King of Seven Seas gradually matured through various encounters and farewells, taking him towards kingship step by step.", + "posterPath": "/7yE2vCroqyu6uudSUdwWKGN1tO4.jpg", + "backdropPath": "/kLx1IuDOeAK6MhNAD7lUPdkhw2G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2016-04-17", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.061, + "voteCount": 164, + "popularity": 6.4671 + }, + { + "id": 284419, + "title": "Kuma - The Other Wife", + "originalTitle": "Kuma - The Other Wife", + "overview": "", + "posterPath": "/xnAGrqenGzNk2Jj4Mzx3wIUgB8Y.jpg", + "backdropPath": "/t7nsWpN8r6R6qfcLbuRzgwz59qu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2025-02-07", + "releaseYear": "2025", + "originalLanguage": "tr", + "voteAverage": 8.214, + "voteCount": 14, + "popularity": 6.4629 + }, + { + "id": 2051, + "title": "The Price Is Right", + "originalTitle": "The Price Is Right", + "overview": "\"Come on down!\" The Price Is Right features a wide variety of games and contests with the same basic challenge: Guess the prices of everyday (or not-quite-everyday) retail items. ", + "posterPath": "/7MSqORrf1RZsmLUTQ2XoEJEtzt5.jpg", + "backdropPath": "/p0umYdTa7csDT9SkZX8DD52Sy4a.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1972-09-04", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 90, + "popularity": 6.457 + }, + { + "id": 130237, + "title": "Aharen-san wa Hakarenai", + "originalTitle": "阿波連さんははかれない", + "overview": "Socially awkward Aharen-san has personal boundary issues, either getting too close or too far from her classmates. When fellow student Raido picks up an eraser she drops, Aharen-san decides they’re now best friends. Whether studying, playing the arcade, or just eating lunch—she’s along for the ride. What follows is an impromptu bonding that shows affection can blossom in the unlikeliest of places!", + "posterPath": "/nt758dS28jXoUNJ49fB1uPjXO2L.jpg", + "backdropPath": "/umSMlEN5RIYzlLvSFI2nfme1W02.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 74, + "popularity": 6.4549 + }, + { + "id": 501, + "title": "Battlestar Galactica", + "originalTitle": "Battlestar Galactica", + "overview": "When the 12 Colonies of Man are wiped out by a cybernetic race called the Cylons, Commander Adama and the crew of the battlestar Galactica lead a ragtag fleet of human survivors in search of a \"mythical planet\" called Earth.", + "posterPath": "/27jl4H9PauenZlmVBbOO1pr1lGf.jpg", + "backdropPath": "/88sdvwvX91VOYqGJUY1XQO84XIb.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1978-09-17", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 260, + "popularity": 6.4546 + }, + { + "id": 258348, + "title": "Clevatess", + "originalTitle": "クレバテス-魔獣の王と赤子と屍の勇者", + "overview": "One of the Lords of Dark Beasts, Clevatess’s reign shatters when he revives a hero he personally slayed and adopts an orphaned humanoid baby—the last hope to save a dying world. Now bound together, what fate awaits this unlikely trio?", + "posterPath": "/7sWrMBhOS1x4RUCr3o2I4ld13fq.jpg", + "backdropPath": "/5nmg2cEZxA09VyDvioAuqd5jOW0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-07-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.065, + "voteCount": 55, + "popularity": 6.4538 + }, + { + "id": 64264, + "title": "Game Shakers", + "originalTitle": "Game Shakers", + "overview": "A live-action sitcom about two 12-year-old girls who start a multi-million-dollar gaming company and take on rap superstar Double G as a business partner.", + "posterPath": "/7TMp3RMf9DCZaaR9XeAQ1N6tby4.jpg", + "backdropPath": "/7XQopautHwQzRqbIpQWu3paiAeW.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-09-12", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.426, + "voteCount": 129, + "popularity": 6.4519 + }, + { + "id": 29200, + "title": "G.I. Joe: A Real American Hero", + "originalTitle": "G.I. Joe: A Real American Hero", + "overview": "G.I. Joe: A Real American Hero is a half-hour American animated television series based on the successful toyline from Hasbro and the comic book series from Marvel Comics. The cartoon had its beginnings with two five-part mini-series in 1983 and 1984, then became a regular series that ran in syndication from 1985 to 1986. Ron Friedman created the G.I. Joe animated series for television, and wrote all four miniseries. The fourth mini-series was intended to be a feature film, but due to production difficulties was released as a television mini-series.", + "posterPath": "/nq3hyd68PeUbm1Wz3nQMkUUaYZ1.jpg", + "backdropPath": "/f7otxzK1w3sBxT8PeHJCFTb8ebf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids" + ], + "releaseDate": "1983-09-12", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.584, + "voteCount": 77, + "popularity": 6.4511 + }, + { + "id": 25760, + "title": "Higurashi: When They Cry", + "originalTitle": "ひぐらしのなく頃に", + "overview": "After moving into the quiet town of Hinamizawa, Maebara Keiichi spends his days blissfully in school often playing games with his local friends. However, appearances can be deceiving. One fateful day, Keiichi stumbles upon news of a murder that had occurred in Hinamizawa. From this point on, horrific events unfold in front of Keiichi, as he soon learns his close friends may not be all that they seem.", + "posterPath": "/z6GrUoKte5lzPxR7HWyiSLVieUC.jpg", + "backdropPath": "/uVKUGxUSfdsGk9mvLt9mDkbATw5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.674, + "voteCount": 221, + "popularity": 6.4486 + }, + { + "id": 1964, + "title": "The Jeffersons", + "originalTitle": "The Jeffersons", + "overview": "Sitcom following a successful African-American couple, George and Louise “Weezyö Jefferson as they “move on up” from working-class Queens to a ritzy Manhattan apartment. A spin-off of All in the Family.", + "posterPath": "/iFjIaWr9qDKMLnnh8tHwO6Tzp6D.jpg", + "backdropPath": "/JdMKUtYVUKUqXaMh2ZzlxAphR8.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1975-01-18", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 7.286, + "voteCount": 117, + "popularity": 6.4471 + }, + { + "id": 63623, + "title": "Fuller House", + "originalTitle": "Fuller House", + "overview": "D.J. Tanner-Fuller is a widow and mother of three. Things become too much to handle, so she asks for help from her sister Stephanie and her best-friend Kimmy.", + "posterPath": "/gp9u9KgxQmk5zKBcup5J8cslikd.jpg", + "backdropPath": "/aiXDRO3jglLdpkBjTJTJ1o8yQbL.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2016-02-26", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 562, + "popularity": 6.4469 + }, + { + "id": 247662, + "title": "Hotel Costiera", + "originalTitle": "Hotel Costiera", + "overview": "Shortly after Daniel, or DD as everybody knows him, starts working at the hotel, one of the owner’s daughters disappears. He must do whatever it takes to find her and bring her home while still solving the ever-changing problems of the exclusive hotel guests.", + "posterPath": "/biWik6unl9bLfpJVCNvjso2GhAE.jpg", + "backdropPath": "/xmFV4Rc10kFTInBUsYVjyendz1s.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-09-24", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 24, + "popularity": 6.4443 + }, + { + "id": 46078, + "title": "The Voronins", + "originalTitle": "Воронины", + "overview": "The main characters of the series are an ordinary family. The family consists of the following: Kostya (a sports journalist), his wife Vera (a housewife) and their children: Masha and the twins Philip and Kirill. Right on the same landing, where the apartment of the young Voronin family is located, Kostya’s parents live: Galina Ivanovna (housewife, Kostya and Lyonya’s mother, Vera’s mother-in-law), Nikolai Petrovich (Kostya’s and Lyonya’s father, Vera’s father-in-law) and Lyonya (the major of the police) - Kostya's older brother.", + "posterPath": "/lKW2c9KrIhKy272AYZCzY2SSVcM.jpg", + "backdropPath": "/mIKv5ABEKVajXvfxms9SGKxNpRW.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-11-16", + "releaseYear": "2009", + "originalLanguage": "ru", + "voteAverage": 6.674, + "voteCount": 46, + "popularity": 6.4415 + }, + { + "id": 346, + "title": "American Dragon: Jake Long", + "originalTitle": "American Dragon: Jake Long", + "overview": "American Dragon is a coming of age comedy-action series about Jake Long, a 13-year-old Asian-American boy who strives to find balance in his life as a skateboard-grinding, New York 'tween while learning to master his mystical powers (in his secret identity) as the American Dragon, the protector and guardian of all magical creatures secretly living amidst the human world.", + "posterPath": "/ntsNm1IiARWtUgNY9SI7VRCLOVD.jpg", + "backdropPath": "/3lTao8ECc1OidUuelD3NcR01DmI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Family", + "Kids" + ], + "releaseDate": "2005-01-21", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 490, + "popularity": 6.4412 + }, + { + "id": 67175, + "title": "Elena of Avalor", + "originalTitle": "Elena of Avalor", + "overview": "The story of a brave teenager who has saved her kingdom from an evil sorceress and must now learn to rule as a crown princess until she’s old enough to be queen.", + "posterPath": "/se8bejjwLz56qm1gOCLpVjK8iVk.jpg", + "backdropPath": "/3kkTGvxNgO34q2aw3VKXAY3xtxP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2016-07-22", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 80, + "popularity": 6.4358 + }, + { + "id": 3690, + "title": "Tyler Perry's House of Payne", + "originalTitle": "Tyler Perry's House of Payne", + "overview": "The show revolved around a multi-generational family living under one roof in Atlanta led by patriarch Curtis Payne and his wife Ella.", + "posterPath": "/2NdUdJnZnwI6skvm6OXWrK2D42U.jpg", + "backdropPath": "/4bzSEBjVb3QwPaJ39Rp2gmH9Bug.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-06-06", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 62, + "popularity": 6.4357 + }, + { + "id": 34, + "title": "Keeping Up Appearances", + "originalTitle": "Keeping Up Appearances", + "overview": "Hyacinth Bucket (whose name, she insists, is pronounced \"Bouquet\") is a suburban housewife in the West Midlands. She would be the first to tell you that she is a gracious hostess, a respected citizen, and a well-connected member of high society. If you don't believe that, just ask her best friend Elizabeth, held captive in Hyacinth's kitchen; or the postmen and neighbours who bristle at the sound of her voice; or Richard, her weary and compliant husband.\n\nIn fact, Hyacinth's reputation could be as perfect as her new lounge set, if not for her senile father's love of running wild in the nip. Oh, and she would prefer it if her brother-in-law was a sharper dresser. And that her husband was more ambitious. And that her sisters were more presentable. And do take your shoes off before you come in the house, dear. Mind that you don't brush against the wallpaper.", + "posterPath": "/5dwn4Lfav9mXfJmYhHNeMLWhuZj.jpg", + "backdropPath": "/7PVrAFtg3eAkRhfXzCE00j6XtKn.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1990-10-29", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.678, + "voteCount": 157, + "popularity": 6.4257 + }, + { + "id": 45783, + "title": "Kuroko's Basketball", + "originalTitle": "黒子のバスケ", + "overview": "In the story, Kagami Taiga has just enrolled into Seirin High School when he meets Kuroko Tetsuya of the school's basketball team. Kuroko happens to be the shadowy sixth member of the legendary Generation of Miracles basketball team. Together, Kagami and Kuroko aim to take their team to the inter-high school championship - against Kuroko's former teammates.", + "posterPath": "/qi8dlAgQEeahpEn1AOb5BJEOcVB.jpg", + "backdropPath": "/fOyOP702oDeGyM2H4I8mQ5pdKne.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2012-04-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 582, + "popularity": 6.4256 + }, + { + "id": 206, + "title": "Picket Fences", + "originalTitle": "Picket Fences", + "overview": "An aging Sheriff tries to keep the peace in Rome, Wisconsin, a small town plagued by bizarre and violent crimes.", + "posterPath": "/kXJggp02MtkGdEtBfMkjI2ie3Z5.jpg", + "backdropPath": "/jJHlswOAySQQijIoLqDFiIleWN6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1992-09-18", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 51, + "popularity": 6.4245 + }, + { + "id": 230448, + "title": "Mr. Plankton", + "originalTitle": "Mr. 플랑크톤", + "overview": "A man plagued by misfortune and his ex, the unluckiest bride-to-be, are forced to accompany one another on the final journey of his life.", + "posterPath": "/c31cvdNNiAMvb4XVjAwYLNn3LNO.jpg", + "backdropPath": "/7LmwKWqnd0sYLQvz0VvjdW5J8sN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-11-08", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.1, + "voteCount": 102, + "popularity": 6.4214 + }, + { + "id": 64122, + "title": "The Shannara Chronicles", + "originalTitle": "The Shannara Chronicles", + "overview": "A young Healer armed with an unpredictable magic guides a runaway Elf in her perilous quest to save the peoples of the Four Lands from an age-old Demon scourge.", + "posterPath": "/yzoaoBSMww5D22Kfrd2LEJumIzl.jpg", + "backdropPath": "/h3iaMumqJlv2Z1CcIdGNVMJrB2a.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-05", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 997, + "popularity": 6.4204 + }, + { + "id": 45845, + "title": "Fate/Zero", + "originalTitle": "Fate/Zero", + "overview": "The Fourth Holy Grail War has begun, and seven mages must summon heroes from history to battle each other to the death. Only one mage-and-hero pair will remain to claim the Grail and have their wishes granted! Kiritsugu Emiya was once an assassin but now fights in this war to save the world from those who would destroy it with the Grail’s power.", + "posterPath": "/chUbHBiMX7buj8TzOEIjHHPCJfF.jpg", + "backdropPath": "/l6UO4qEHwUdjPyavbP6yGA06cS3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-10-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.004, + "voteCount": 352, + "popularity": 6.4184 + }, + { + "id": 39416, + "title": "Geordie Shore", + "originalTitle": "Geordie Shore", + "overview": "Geordie Shore is a British reality television series broadcast on MTV. Based in Newcastle upon Tyne, it premiered on 24 May 2011, and is the British spin-off of the American show Jersey Shore. \"Geordie\" is the regional nickname and dialect given to the people of the Tyneside area of North East England, and is closely associated with the city of Newcastle upon Tyne and its environs where the show is set. However the show includes cast members from various parts of North East England.", + "posterPath": "/wIejP20xVqiASjr9eKVzkj763PG.jpg", + "backdropPath": "/oG4K2smrj7ZBK6MdXCCZogsXKGM.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 18 + ], + "genres": [ + "Reality", + "Drama" + ], + "releaseDate": "2011-05-24", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.99, + "voteCount": 49, + "popularity": 6.417 + }, + { + "id": 50878, + "title": "Empresses in the Palace", + "originalTitle": "甄嬛传", + "overview": "Zhen Huan, a 17-year-old innocent introduced into the imperial court as the latest concubine of Emperor Yong Zheng. Her dreams of a new life of love and prosperity are swiftly dashed as she enters a dog-eat-dog world of treachery and corruption.", + "posterPath": "/gLJ1d3OHxYOkiBCNNPJA1lzehjI.jpg", + "backdropPath": "/c41yiFWQcJd1i8HLlyj8rEbeUcV.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-11-17", + "releaseYear": "2011", + "originalLanguage": "zh", + "voteAverage": 8.5, + "voteCount": 63, + "popularity": 6.4103 + }, + { + "id": 71886, + "title": "Siren", + "originalTitle": "Siren", + "overview": "The coastal town of Bristol Cove is known for its legend of once being home to mermaids. When the arrival of a mysterious girl proves this folklore all too true, the battle between man and sea takes a very vicious turn as these predatory beings return to reclaim their right to the ocean.", + "posterPath": "/k906XXqqFMT93v2WMkIOtUcEAlV.jpg", + "backdropPath": "/nMVuvboq4tSM22dkZb7ekQi9WKS.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-03-29", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.734, + "voteCount": 3393, + "popularity": 6.4091 + }, + { + "id": 2621, + "title": "Mastermind", + "originalTitle": "Mastermind", + "overview": "Mastermind is a British quiz show, well known for its challenging questions, intimidating setting and air of seriousness.\n\nDevised by Bill Wright, the basic format of Mastermind has never changed — four and in later contests five contestants face two rounds, one on a specialised subject of the contestant's choice, the other a general knowledge round. Wright drew inspiration from his experiences of being interrogated by the Gestapo during World War II.\n\nThe atmosphere is helped by Mastermind's famously ominous theme music, \"Approaching Menace\" by the British composer Neil Richardson. The quiz programme originated and was recorded in Manchester at studios such as New Broadcasting House and Granada Studios, before permanently moving to MediaCityUK in 2011.", + "posterPath": "/1CuyXvdlNGsNRaC62Q7Pp3hIIGt.jpg", + "backdropPath": "/hFxxFhK6ooj9FHDmB7fGqYbfKty.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1972-09-11", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 11, + "popularity": 6.3994 + }, + { + "id": 62255, + "title": "Seraph of the End", + "originalTitle": "終わりのセラフ", + "overview": "After a mysterious virus wipes out ninety percent of humanity, vampires emerge from the recesses of the earth to enslave mankind, treating them like livestock. After growing tired of donating blood in exchange for protection, 12-year-old Yuichiro Hyakuya and his best friend Mikaela Hyakuya plot an escape along with the other orphans. After being the only successful runaway, Yuichiro joins the Moon Demon Company, an extermination unit of the Japanese Imperial Demon Army dedicated to killing off vampires.", + "posterPath": "/5IlxL2PfQ8CyY4TLRru9TcU56b3.jpg", + "backdropPath": "/yz9fEOBPG5Ks3uPzPyFetQpR6QX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.862, + "voteCount": 426, + "popularity": 6.3991 + }, + { + "id": 18779, + "title": "Royal Pains", + "originalTitle": "Royal Pains", + "overview": "A young E.R. doctor who, after being wrongly blamed for a patient's death, moves to the Hamptons and becomes the reluctant \"doctor for hire\" to the rich and famous. When the attractive administrator of the local hospital asks him to treat the town's less fortunate, he finds himself walking the line between doing well for himself and doing good for others.", + "posterPath": "/4WW26JPHeG5mgrFkgjvv3Qmgcwg.jpg", + "backdropPath": "/syfmYmITnWPJU3hhaP0ckny5hMN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2009-06-04", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.745, + "voteCount": 153, + "popularity": 6.395 + }, + { + "id": 37305, + "title": "Soul Eater", + "originalTitle": "ソウルイーター", + "overview": "Set in the Shinigami technical school for weapon meisters, the series revolves around 3 groups of each a weapon meister and a human weapon. Trying to make the latter a \"Death Scythe\" which is the highest title for a weapon and thus fit for use by the Shinigami, they must collect the souls of 99 evil humans and 1 witch. Maka & Soul Eater, Black Star & Tsubaki, and Death the Kid with Patty and Liz Thompson are the characters Soul Eater revolves around. Besides taking the time to gather souls, these students of Shibusen defend Death City from some of the most powerful of creatures while still attending school and trying to become stronger.", + "posterPath": "/hI5AhxFTSFabTG7Fvhczyb5ZIh8.jpg", + "backdropPath": "/yOkNYWCOWLh3HFtUlo3QT1g5pHG.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-04-07", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.775, + "voteCount": 314, + "popularity": 6.3903 + }, + { + "id": 66761, + "title": "Medici: Masters of Florence", + "originalTitle": "I Medici", + "overview": "The story of the Medici family of Florence, their ascent from simple merchants to power brokers sparking an economic and cultural revolution. Along the way, they also accrue a long list of powerful enemies.", + "posterPath": "/vFtsI6Nk3cy2l4LGoh1aFRZKaQ7.jpg", + "backdropPath": "/7hvvNS52ConVZFvZtgy1j0NeCCO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2016-10-18", + "releaseYear": "2016", + "originalLanguage": "it", + "voteAverage": 7.738, + "voteCount": 320, + "popularity": 6.3888 + }, + { + "id": 42421, + "title": "Panty & Stocking with Garterbelt", + "originalTitle": "パンティ&ストッキングwithガーターベルト", + "overview": "Panty and Stocking are nasty angels who were banished from the pearly gates for being foul-mouthed bad girls! Now they spend their days hunting ghosts in the lecherous abyss between Heaven and Earth. Panty likes sex, Stocking likes sweets, and their afro-sporting main man Garterbelt has a fetish we can't mention.", + "posterPath": "/RPiVM7JIoAsOZEX0rW8tKQFvCR.jpg", + "backdropPath": "/zX12leCOrQLCIyNKYXKcVPvAJiY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.726, + "voteCount": 84, + "popularity": 6.3879 + }, + { + "id": 66980, + "title": "Babylon Berlin", + "originalTitle": "Babylon Berlin", + "overview": "Beneath the decadence of 1929 Berlin, lies an underworld city of sin. Police investigator Gereon Rath has been transferred from Cologne to the epicenter of political and social changes in the Golden Twenties.", + "posterPath": "/om7Ri353ddUsg0gDJsOZIQJBRwL.jpg", + "backdropPath": "/7hezSIqkDjhP7MNGFN9vRkyWgO9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2017-10-13", + "releaseYear": "2017", + "originalLanguage": "de", + "voteAverage": 7.8, + "voteCount": 375, + "popularity": 6.3833 + }, + { + "id": 9907, + "title": "Chowder", + "originalTitle": "Chowder", + "overview": "An aspiring young chef named Chowder has adventures as an apprentice in Mung Daal's catering company. Although he means well, Chowder often finds himself in predicaments due to his perpetual appetite and his nature as a scatterbrain. He is also pestered by Panini, the apprentice of Mung's rival Endive, who wants Chowder to be her boyfriend, which he abhors.", + "posterPath": "/4H5diUE5bKp9dxcisJ3wbZzvAg7.jpg", + "backdropPath": "/7Q4cQUkzBGRO820SXHk9EIIoLVk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2007-11-02", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 8.181, + "voteCount": 427, + "popularity": 6.3828 + }, + { + "id": 55866, + "title": "Candice Renoir", + "originalTitle": "Candice Renoir", + "overview": "Candice Renoir had put her career on standby for 10 years. When she returns from Singapore to resume service in a port town in the south of France, she feels a bit “rusty”. Despite the obvious defiance of her unit and a cynical superior who doesn’t make her job any easier, she is determined to turn her so-called weaknesses into strengths, solving the most complex cases with her common sense, her acute observation and her practical nature seasoned by a busy daily routine.\n\nOnly Candice can catch a killer because she knows the chemical composition of a window-cleaning product or determine the hour of a murder from the cooking-time of kebabs… Candice is only naive on the outside, and nobody can resist her!", + "posterPath": "/rRMnzom4uxM2MOzO84LODaUrNUg.jpg", + "backdropPath": "/9y96QqoRptfRCnh8ex0MDez5Hp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2013-04-19", + "releaseYear": "2013", + "originalLanguage": "fr", + "voteAverage": 7.1, + "voteCount": 65, + "popularity": 6.3821 + }, + { + "id": 84234, + "title": "Balthazar", + "originalTitle": "Balthazar", + "overview": "Facing a series of complex murder cases, new police commander Hélène Bach must learn to work with the brilliant yet exasperating Raphaël, who can make the dead speak like no-one else.", + "posterPath": "/98ZGgws85ybGSZ52NWx0iwbmXfL.jpg", + "backdropPath": "/Z0UN39PL1p7i5eLSCVMorRdjU8.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2018-12-06", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 7.723, + "voteCount": 121, + "popularity": 6.3801 + }, + { + "id": 21729, + "title": "Gurren Lagann", + "originalTitle": "天元突破グレンラガン", + "overview": "When a young laborer escapes to the world aboveground, he discovers a violent land in which humans battle robots controlled by a power-hungry noble.", + "posterPath": "/xL6HsYsk5N9PKwk6jFwMNQq3K3M.jpg", + "backdropPath": "/rfgtmeFvT0bU3AjX6b7C4Vj8iBY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-01", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 556, + "popularity": 6.3783 + }, + { + "id": 156933, + "title": "Presumed Innocent", + "originalTitle": "Presumed Innocent", + "overview": "A horrific murder upends the Chicago Prosecuting Attorney's Office when one of its own is suspected of the crime—leaving the accused fighting to keep his family together.", + "posterPath": "/7MXg0BxuSRWz2yKc03M40du2mrc.jpg", + "backdropPath": "/dzsg5Akwfw1lsVoaPmvLcLSrKkh.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2024-06-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.881, + "voteCount": 518, + "popularity": 6.3764 + }, + { + "id": 77493, + "title": "Shakespeare & Hathaway - Private Investigators", + "originalTitle": "Shakespeare & Hathaway - Private Investigators", + "overview": "Frank Hathaway, a hardboiled private investigator, and his rookie sidekick Lu Shakespeare form the unlikeliest of partnerships as they investigate the secrets of rural Warwickshire's residents.", + "posterPath": "/tYH31SwQ7UVlg7wZScgdRGhVYjR.jpg", + "backdropPath": "/2uDu0cA6GKatzZuleR7ee3SRyNi.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 9648 + ], + "genres": [ + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "2018-02-26", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 41, + "popularity": 6.3729 + }, + { + "id": 11105, + "title": "Forensic Files", + "originalTitle": "Forensic Files", + "overview": "Real crimes, disease outbreaks and accidents around the world are solved by experts using scientific laboratory analysis which helps them find previously undetectable evidence. Brilliant scientific work helps convict the guilty and free the innocent.", + "posterPath": "/k7zrsnodHEe3UUdwHG207rjdbrB.jpg", + "backdropPath": "/fjRkgcVW0KJTVqUTF4aWkTDH1qT.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 99 + ], + "genres": [ + "Crime", + "Documentary" + ], + "releaseDate": "1996-04-21", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 75, + "popularity": 6.3726 + }, + { + "id": 10365, + "title": "Matt Houston", + "originalTitle": "Matt Houston", + "overview": "Matt Houston is an American crime drama series that aired on ABC from 1982 to 1985. Created by Lawrence Gordon, the series was produced by Aaron Spelling.", + "posterPath": "/9Z7mPPey5QWueCrdgvjjAdElKn2.jpg", + "backdropPath": "/jBfq2cDjFiDtDA7WGUyrCA5SecP.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1982-09-26", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 25, + "popularity": 6.3724 + }, + { + "id": 31941, + "title": "Blue Mountain State", + "originalTitle": "Blue Mountain State", + "overview": "Three incoming freshman in a big-time, Midwestern college football program have to juggle football, girls, class and nonstop hazing.", + "posterPath": "/dPWBuJZa9ARvDTvHBQnwcGic8ue.jpg", + "backdropPath": "/A9Ld3VO4vPwXV2vV9CmtmnHwrXD.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2010-01-11", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.575, + "voteCount": 440, + "popularity": 6.3701 + }, + { + "id": 46698, + "title": "Randy Cunningham: 9th Grade Ninja", + "originalTitle": "Randy Cunningham: 9th Grade Ninja", + "overview": "Randy Cunningham: 9th Grade Ninja is an American animated television series created by Jed Elinoff and Scott Thomas for Disney XD. It is produced by Titmouse, Inc. and Boulder Media Limited. Many of the character designs were supplied by Jhonen Vasquez, the creator of Invader Zim. The series premiered on September 17, 2012.", + "posterPath": "/uy864Z278ijIfCxQGmPMSp6eKkP.jpg", + "backdropPath": "/sPt4zHJYBfRAJVdUfbedzKCOU1q.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-08-13", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.408, + "voteCount": 65, + "popularity": 6.3567 + }, + { + "id": 61260, + "title": "Velvet", + "originalTitle": "Velvet", + "overview": "In 1950s Spain, the heir to a fashion house romances a beautiful seamstress who works for the company, despite the objections of his family.", + "posterPath": "/2MvMjjdY1zNIKEjiTsbngzdYYfy.jpg", + "backdropPath": "/fOLKnuODub9EGwLGzlhjr8g1khp.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2014-01-17", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 6.2, + "voteCount": 59, + "popularity": 6.3554 + }, + { + "id": 99145, + "title": "The Thaw", + "originalTitle": "Odwilż", + "overview": "Set in Szczecin, Poland, the series begins after the body of a young woman is discovered under the melting ice. It asks ‘Who was she? Why did she die? Who did she leave behind?", + "posterPath": "/pgrdtzrel0eypTQpP1BXi8VcrOV.jpg", + "backdropPath": "/6Gmqi22GyK9HuYjHVnvOKAFgLd0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2022-04-01", + "releaseYear": "2022", + "originalLanguage": "pl", + "voteAverage": 6.466, + "voteCount": 58, + "popularity": 6.3553 + }, + { + "id": 67761, + "title": "Legends of Chamberlain Heights", + "originalTitle": "Legends of Chamberlain Heights", + "overview": "An urban animated series mixing raucous comedy and social commentary that centers on three high school freshman basketball benchwarmers: Jamal, Grover, and Milk. The three friends tackle life with some wins and some losses, but failure doesn’t faze them since they're legends...even if it’s just in their own minds.", + "posterPath": "/oA9l1kHyvMGRPxmnXYWudeOeNeE.jpg", + "backdropPath": "/g1BwrkFcagyFUUMAEzpcua6lidV.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2016-09-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.107, + "voteCount": 14, + "popularity": 6.3546 + }, + { + "id": 5216, + "title": "Rederiet", + "originalTitle": "Rederiet", + "overview": "This Swedish soap opera follows the lives of the captain and crew of the MS Freja, a cruiseferry that travels on the Baltic Sea between between Stockholm, Sweden and Turku, Finland.", + "posterPath": "/p3ae3ZkzMgiWdxlwJMkBHhfLNN6.jpg", + "backdropPath": "/oaCuj8R5GkSdPaDUnpzt8Tdg1NB.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1992-08-20", + "releaseYear": "1992", + "originalLanguage": "sv", + "voteAverage": 7.8, + "voteCount": 10, + "popularity": 6.3444 + }, + { + "id": 13023, + "title": "El Chapulín Colorado", + "originalTitle": "El Chapulín Colorado", + "overview": "", + "posterPath": "/qF8NDpVBSTDhdLlEjVAhNhfqB8K.jpg", + "backdropPath": "/lSXLJsQl2FOwx3Gwy4FFjWdQpQa.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 80, + 10765, + 9648 + ], + "genres": [ + "Comedy", + "Family", + "Crime", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "1973-02-28", + "releaseYear": "1973", + "originalLanguage": "es", + "voteAverage": 8.04, + "voteCount": 740, + "popularity": 6.3432 + }, + { + "id": 61664, + "title": "Sense8", + "originalTitle": "Sense8", + "overview": "One gunshot, one death, one moment out of time that irrevocably links eight minds in disparate parts of the world, putting them in each other's lives, each other's secrets, and in terrible danger. Ordinary people suddenly reborn as \"Sensates.\"", + "posterPath": "/kmyvlQ9QKzgdZY31rXaUlgCnzrB.jpg", + "backdropPath": "/TePSNzSC8NoOkB7D7eIP3nIL1V.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2015-06-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.741, + "voteCount": 1759, + "popularity": 6.3377 + }, + { + "id": 72925, + "title": "Stargate Origins", + "originalTitle": "Stargate Origins", + "overview": "Follow Catherine Langford, the young woman who witnessed her father uncover the Stargate in Giza in 1928, as she embarks on an unexpected adventure to unlock the mystery of what lies beyond the Stargate in order to save Earth from unimaginable darkness.", + "posterPath": "/esec4AKT1BVNeQbPMO9rCHHvSvd.jpg", + "backdropPath": "/msWDheS03pXcpS0EgnHDleBZuJ7.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-02-14", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.099, + "voteCount": 162, + "popularity": 6.3328 + }, + { + "id": 39379, + "title": "Full Metal Panic!", + "originalTitle": "フルメタル・パニック!", + "overview": "Kaname Chidori’s one of the most popular girls at her high school – unfortunately, it’s her growing popularity off campus she should be worrying about. Unbeknownst to Kaname, terrorists are plotting her abduction, believing she possesses the rare and coveted abilities of “the Whispered.” That’s where Sousuke Sagara enters the picture. He’s a hotshot soldier from the clandestine counter-terrorist organization known as Mithril – and he’s going undercover at Kaname’s school to try and keep her safe. He may be an ace in the cockpit of an Arm Slave mech, but there’s no training in the world that could prepare him for the warzone of high school.", + "posterPath": "/aXvI0S1kLpFYhXuHIMjinXe4uiM.jpg", + "backdropPath": "/r5jl8KCfUtAqB1tvCJ7wxCew1ZK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-01-08", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.973, + "voteCount": 129, + "popularity": 6.3312 + }, + { + "id": 196322, + "title": "Dark Matter", + "originalTitle": "Dark Matter", + "overview": "Jason Dessen is abducted into an alternate version of his life. To get back to his true family, he embarks on a harrowing journey to save them from the most terrifying foe imaginable: himself.", + "posterPath": "/c6MRUtPk0nEPQ9FBD9RdRKt2rIm.jpg", + "backdropPath": "/wFEAy4xRes1eeclsu7Z73Vzz7ET.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-05-07", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 551, + "popularity": 6.3276 + }, + { + "id": 62564, + "title": "Sound! Euphonium", + "originalTitle": "響け!ユーフォニアム", + "overview": "After swearing off music due to an incident at the middle school regional brass band competition, euphonist Kumiko Oumae enters high school hoping for a fresh start. As fate would have it, she ends up being surrounded by people with an interest in the high school brass band. Kumiko finds the motivation she needs to make music once more with the help of her bandmates, some of whom are new like novice tubist Hazuki Katou; veteran contrabassist Sapphire Kawashima; and band vice president and fellow euphonist Asuka Tanaka. Others are old friends, like Kumiko's childhood friend and hornist-turned-trombonist Shuuichi Tsukamoto, and trumpeter and bandmate from middle school, Reina Kousaka.\n\nHowever, in the band itself, chaos reigns supreme. Despite their intention to qualify for the national band competition, as they currently are, just competing in the local festival will be a challenge—unless the new band advisor Noboru Taki does something about it.", + "posterPath": "/l0hKrx6PjQRrHiMzK2Fanen2xbL.jpg", + "backdropPath": "/jErTDsVzUFwQm7Ox5Un9AsGxukV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2015-04-08", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 93, + "popularity": 6.3272 + }, + { + "id": 157950, + "title": "NCIS: Sydney", + "originalTitle": "NCIS: Sydney", + "overview": "The brilliant and eclectic team of U.S. NCIS Agents and the Australian Federal Police (AFP) are grafted into a multi-national taskforce to keep naval crimes in check in the most contested patch of ocean on the planet.", + "posterPath": "/6dYDa6h1AOZ7iZ1zv3nlw7qhErX.jpg", + "backdropPath": "/9HumTe8VKGfH6PSgfRxoDEPYzDK.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2023-11-10", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.937, + "voteCount": 63, + "popularity": 6.324 + }, + { + "id": 239389, + "title": "Fangs of Fortune", + "originalTitle": "大梦归离", + "overview": "During the Zhenyuan era, the accidental death of the Bai Ze goddess, who governed both human and demon realms, leads to chaos as demon beasts run rampant. Disguised as Zhao Yuanzhou, the demon leader Zhu Yan offers to form a demon-hunting bureau to help restore order.\n\nWen Xiao, suspicious of Zhao Yuanzhou, joins the bureau along with her childhood friend Zhuo Yichen, skilled archer Pei Sijing, and the talented but timid doctor Bai Jiu. Together, they confront the creatures from \"The Classic of Mountains and Seas\" and uncover the darker truths behind the chaos.", + "posterPath": "/ifugPKhZOjmTwj9y1nNGhOSfPmi.jpg", + "backdropPath": "/6Y6aik8orBzHXIsWnZuX6UXgcrW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 9648 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2024-10-25", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 8.714, + "voteCount": 21, + "popularity": 6.3238 + }, + { + "id": 670, + "title": "Baby Looney Tunes", + "originalTitle": "Baby Looney Tunes", + "overview": "The world's most beloved animated characters as precocious preschoolers, discovering the world one baby step at a time.", + "posterPath": "/l7SLxIuRdyrpIVWSEDBdtxCOSCI.jpg", + "backdropPath": "/Mo7Dmx1bhOe6fMich6uHXKcHey.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2002-09-07", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 307, + "popularity": 6.323 + }, + { + "id": 3579, + "title": "The Angry Beavers", + "originalTitle": "The Angry Beavers", + "overview": "The Angry Beavers is an American animated television series created by Mitch Schauer for the Nickelodeon channel. The series revolves around Daggett and Norbert Beaver, two young beaver brothers who have left their home to become bachelors in the forest near the fictional Wayouttatown, Oregon.", + "posterPath": "/9KYUA9tZrVNVXk2LTaYNMqGpHUj.jpg", + "backdropPath": "/ta4Py9F1nHmttpAYEg4vB8wN08z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "1997-04-19", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.922, + "voteCount": 243, + "popularity": 6.3202 + }, + { + "id": 67593, + "title": "District 31", + "originalTitle": "District 31", + "overview": "After years of keeping his detectives at the headquarters, the Montreal PD has decided to reassign them to neighbourhood precincts in an effort to get closer to the population. Nadine Legrand and Patrick Bissonnette have to find their footing in their new work place: District 31.", + "posterPath": "/7jUIXs36f5VHwmZDTE1zqJS5kOh.jpg", + "backdropPath": "/sOGI46WuQDHRFkGAtK468LWp8d9.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-09-12", + "releaseYear": "2016", + "originalLanguage": "fr", + "voteAverage": 5.229, + "voteCount": 35, + "popularity": 6.3188 + }, + { + "id": 82104, + "title": "The Order", + "originalTitle": "The Order", + "overview": "Out to avenge his mother's death, a college student pledges a secret order and lands in a war between werewolves and practitioners of dark magic.", + "posterPath": "/yMPjmuSd5Fac8YMNOwofGALQWjR.jpg", + "backdropPath": "/AtcZyZizpGhofYumo1JrjuIFkXv.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-03-07", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.635, + "voteCount": 885, + "popularity": 6.3185 + }, + { + "id": 93233, + "title": "Centaurworld", + "originalTitle": "Centaurworld", + "overview": "Centaurworld follows a war horse who is transported from her embattled world to a strange land inhabited by silly, singing centaurs of all species, shapes, and sizes. Desperate to return home, she befriends a group of these magical creatures and embarks on a journey that will test her more than any battle she's ever faced before.", + "posterPath": "/2klp8BwNDbmV5pfBSWhNjr1MktC.jpg", + "backdropPath": "/oDOGL42BM7bbUcroJcYp9xsw07v.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-07-30", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 80, + "popularity": 6.3147 + }, + { + "id": 18162, + "title": "ABC Afterschool Special", + "originalTitle": "ABC Afterschool Special", + "overview": "Dramatically presented situations, often controversial, of interest to children and teenagers. Several episodes were either in animated form or presented as documentaries. Topics included illiteracy, substance abuse and teenage pregnancy.", + "posterPath": "/uOx0dDmt72hjIC5gmCzxEdn8qt0.jpg", + "backdropPath": "/cgGqcvi2Hmi7jgjtoWa0bDqixj6.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1972-10-04", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 14, + "popularity": 6.3146 + }, + { + "id": 29452, + "title": "Heidi, Girl of the Alps", + "originalTitle": "アルプスの少女ハイジ", + "overview": "After becoming an orphan, Heidi is forced to live with her grandfather Öhi who lives in the mountain Alps. However he is a very bitter man who only accepts to take her in by force. Heidi's kindness may be able to open Öhi's heart. Along with Peter the goat carer and the crippled Klara, Heidi has a lot of adventures.", + "posterPath": "/jVI5WYnITj1KfF2wFZWR0EezyH3.jpg", + "backdropPath": "/cafsMt9cQlaRCNVqf5KXtTUQP6V.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10751 + ], + "genres": [ + "Animation", + "Drama", + "Family" + ], + "releaseDate": "1974-01-06", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 7.316, + "voteCount": 198, + "popularity": 6.3129 + }, + { + "id": 60728, + "title": "Kill la Kill", + "originalTitle": "キルラキル", + "overview": "Honnouji Academy is forcefully ruled by the iron-fisted control of its student council and its president, Satsuki Kiryuin. Transfer student, Ryuko Matoi, arrives on campus carrying a giant sword, that is actually half of a scissor. She is looking for the woman who holds the other half of her sword who killed her father. It is said that Satsuki Kiryuin knows the identity of the killer but when Ryuko confronts her she is beaten by the student council and their powerful \"Goku Uniforms\" whom she cannot match in strength. However, once Ryuko receives her own \"Kamui\" by the name of Senketsu, the odds are lifted in her favor.", + "posterPath": "/4F1WtP3dFIwLPOfa3u29VEVnNkf.jpg", + "backdropPath": "/hsmYzDPyfiv3IlkxZsbeO92C7mP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.155, + "voteCount": 512, + "popularity": 6.3121 + }, + { + "id": 5829, + "title": "Flashpoint", + "originalTitle": "Flashpoint", + "overview": "The Strategic Response Unit (SRU) is an elite team of cops who specialize in high-risk critical incidents. Trained in tactics and psychology, they deal with extreme situations, where split-second decisions could save a life...or cost one.", + "posterPath": "/3Bp3vJrPxnrN8iRDaclsVUPwgWa.jpg", + "backdropPath": "/6SlgW0xylNr2NikrZvMRd5tTwAo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2008-07-11", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.292, + "voteCount": 144, + "popularity": 6.311 + }, + { + "id": 51821, + "title": "Justice Pao", + "originalTitle": "包青天", + "overview": "Justice Bao is a 236-episode television series from Taiwan, first airing on Chinese Television System from February 1993 to January 1994. The show stars Jin Chao-chun as the Chinese official Bao Zheng in the Song Dynasty. It was hugely popular in Greater China as well as many other countries in the Far East.\n\nThe series was originally scheduled for just 15 episodes. However, the show garnered high ratings when the initial episodes aired. Due to its popularity, CTS expanded the show to 236 episodes.\n\nThe TVB and ATV Home networks in Hong Kong both bought the series in an attempt to gain viewers. Competition between the two networks during the showing of the series was so severe that identical episodes were shown on both channels on the same night. It was also one of the first dramas that used NICAM technology.", + "posterPath": "/9jdHOuYgpx4DwU2VeniJOnNUAT7.jpg", + "backdropPath": "/lSFz1ChGVh2EsepmbTDKPLGG66X.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "1993-03-23", + "releaseYear": "1993", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 12, + "popularity": 6.3108 + }, + { + "id": 1925, + "title": "That Girl", + "originalTitle": "That Girl", + "overview": "That Girl is an American sitcom that ran on ABC from 1966 to 1971. It stars Marlo Thomas as the title character Ann Marie, an aspiring actress, who moves from her hometown of Brewster, New York to try to make it big in New York City. Ann has to take a number of offbeat \"temp\" jobs to support herself in between her various auditions and bit parts. Ted Bessell played her boyfriend Donald Hollinger, a writer for Newsview Magazine; Lew Parker and Rosemary DeCamp played Lew Marie and Helen Marie, her concerned parents. Bernie Kopell, Ruth Buzzi and Reva Rose played Ann and Donald's friends. That Girl was developed by writers Bill Persky and Sam Denoff, who had served as head writers on The Dick Van Dyke Show earlier in the 1960s.", + "posterPath": "/uQtkMZZQre3Kf17tSnOy41ijAfV.jpg", + "backdropPath": "/odibULDlYVrOWolHV4eK5MsZrcp.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1966-09-08", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 6.125, + "voteCount": 32, + "popularity": 6.3096 + }, + { + "id": 93846, + "title": "The King: Eternal Monarch", + "originalTitle": "더 킹 : 영원의 군주", + "overview": "Korean emperor Lee Gon tries to close the doors to a parallel world which was opened by demons; a detective tries to protect the people and the one she loves.", + "posterPath": "/7SLlbkzOJb8v9wXVYIcqozx2hxe.jpg", + "backdropPath": "/bgTm5TTI6uoY0RbLA3Fbl5z32JG.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-04-17", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.3, + "voteCount": 885, + "popularity": 6.3087 + }, + { + "id": 14774, + "title": "ECW Hardcore TV", + "originalTitle": "ECW Hardcore TV", + "overview": "No rules. No regulations. The only commandment is to be extreme. Welcome to the show that started a revolution.", + "posterPath": "/sl8cqt6WD7tlXrMJMsLwI0VcsAC.jpg", + "backdropPath": "/tX7XE0QHIMaAvdwTYRXYuQMhEkm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759 + ], + "genres": [ + "Action & Adventure" + ], + "releaseDate": "1993-04-06", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 6.3065 + }, + { + "id": 531, + "title": "Saved by the Bell: The New Class", + "originalTitle": "Saved by the Bell: The New Class", + "overview": "Six friends grow and learn at Bayside High.", + "posterPath": "/swcPz0DvX09H3FEcNHhWhZp4fRN.jpg", + "backdropPath": "/zPos6SjnlahyTc4QquMCcKOlR8v.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1993-09-11", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 5.889, + "voteCount": 45, + "popularity": 6.3055 + }, + { + "id": 259453, + "title": "Suits LA", + "originalTitle": "Suits LA", + "overview": "Ted Black, a former federal prosecutor from New York, has reinvented himself representing the most powerful clients in Los Angeles. But his firm is at a crisis point, and in order to survive, he must embrace a role he held in contempt his entire career.", + "posterPath": "/3hYiNPkcLoI3QWDokOHQJIfn55O.jpg", + "backdropPath": "/ljAdFwDLQLlOBIwheKmAdcUS0HM.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-02-23", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.947, + "voteCount": 48, + "popularity": 6.302 + }, + { + "id": 114461, + "title": "Ahsoka", + "originalTitle": "Ahsoka", + "overview": "Former Jedi Knight Ahsoka Tano investigates an emerging threat to a vulnerable galaxy.", + "posterPath": "/eiJeWeCAEZAmRppnXHiTWDcCd3Q.jpg", + "backdropPath": "/loDy1LWCkPjECjVTRmyKtOoUpNN.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-08-22", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.466, + "voteCount": 1099, + "popularity": 6.2983 + }, + { + "id": 136311, + "title": "Shrinking", + "originalTitle": "Shrinking", + "overview": "Jimmy is struggling to grieve the loss of his wife while being a dad, friend, and therapist. He decides to try a new approach with everyone in his path: unfiltered, brutal honesty. Will it make things better—or unleash uproarious chaos?", + "posterPath": "/cVmrNYgm5wcEexbXg4laNn3u4vq.jpg", + "backdropPath": "/hI9z1UuNhBthvkm3iJ8m3zv43Pf.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2023-01-26", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 494, + "popularity": 6.2972 + }, + { + "id": 259669, + "title": "Olympo", + "originalTitle": "Olympo", + "overview": "When a swimmer collapses at a high-performance sports center, Amaia investigates the extreme risks her fellow athletes are taking to feed their ambition.", + "posterPath": "/2X06R82PG2HVZl6h7YeXXT11EEP.jpg", + "backdropPath": "/fWOagGfFtMm70U8BtWPlVRW6efu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-06-20", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.7, + "voteCount": 128, + "popularity": 6.2895 + }, + { + "id": 72089, + "title": "Puppy Dog Pals", + "originalTitle": "Puppy Dog Pals", + "overview": "Fun-loving pug puppies, brothers Bingo and Rolly, have thrill-seeking appetites that take them on exhilarating adventures in their neighborhood and around the globe.", + "posterPath": "/Aa6Bo1lcuFxT3D1twy7DVX7pY03.jpg", + "backdropPath": "/bXnKc8abo2NwlZxyiVlkPvNxu3e.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751, + 35, + 18 + ], + "genres": [ + "Animation", + "Kids", + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "2017-04-14", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 5.658, + "voteCount": 19, + "popularity": 6.2848 + }, + { + "id": 5675, + "title": "Panorama", + "originalTitle": "Panorama", + "overview": "Current affairs programme, featuring interviews and investigative reports on a wide variety of subjects.", + "posterPath": "/iIJ7magQx7z1rtkr3HotrBD2JK7.jpg", + "backdropPath": "/fv3K9SWlXQaCzVsnh6RnzLu84xA.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10763 + ], + "genres": [ + "Documentary", + "News" + ], + "releaseDate": "1953-11-11", + "releaseYear": "1953", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 13, + "popularity": 6.2846 + }, + { + "id": 5653, + "title": "MegaMan NT Warrior", + "originalTitle": "ロックマン エグゼ", + "overview": "In the year 20XX, a young boy named Netto Hikari receives a very special gift as he enters the 5th grade: his very own customized Net Navi, Rockman.", + "posterPath": "/roZllkX4mOoDAKljFtpYJzD41Kn.jpg", + "backdropPath": "/whXYrUSNqkzGnxDkPv6wXr7gki8.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-03-04", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 22, + "popularity": 6.2845 + }, + { + "id": 208336, + "title": "Revenge of Others", + "originalTitle": "3인칭 복수", + "overview": "A boy falls to his death at school, but Ok Chan-mi does not believe that her twin brother, Park Won-seok, committed suicide. Chan-mi transfers to her brother's school, Yongtan High, and meets Ji Soo-heon, who witnessed her brother's death. A \"hero,\" who avenges bullied students, appears at Yongtan High. Chan-mi speculates that it may be connected to her brother and starts looking for this hero.", + "posterPath": "/ccej6D8J81DDJWqhP7OG6PA6xcl.jpg", + "backdropPath": "/zbzldNycqQy1O9gP5vwJf9HECwk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2022-11-09", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.296, + "voteCount": 287, + "popularity": 6.2843 + }, + { + "id": 236457, + "title": "The Boy Next World", + "originalTitle": "คนละกาลเวลา", + "overview": "A stranger claims to be Phu’s lover from another universe. It sounds crazy—until Phu’s heart starts to believe him.", + "posterPath": "/7QvZozNBhCESIcyB5NJzJlxuU1p.jpg", + "backdropPath": "/rRf5wPH5b3INUvMDytjmS98l2WJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-05", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 8.667, + "voteCount": 15, + "popularity": 6.2835 + }, + { + "id": 115036, + "title": "The Book of Boba Fett", + "originalTitle": "The Book of Boba Fett", + "overview": "Legendary bounty hunter Boba Fett and mercenary Fennec Shand must navigate the galaxy’s underworld when they return to the sands of Tatooine to stake their claim on the territory once ruled by Jabba the Hutt and his crime syndicate.", + "posterPath": "/gNbdjDi1HamTCrfvM9JeA94bNi2.jpg", + "backdropPath": "/oMWnpUUCeIqvTdP3IYZ0JnPdrmU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-12-29", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.522, + "voteCount": 2835, + "popularity": 6.2793 + }, + { + "id": 86836, + "title": "Why the Hell Are You Here, Teacher!?", + "originalTitle": "なんでここに先生が!?", + "overview": "Ichiro Sato is about as average as a student can get... except for his above-average ability to land himself in totally awkward, intensely risqué situations with his no-nonsense teacher, Kana Kojima! Ichiro has his hands full dealing with these steamy shenanigans and unexpected encounters in the most unlikely places. At least it can’t get any worse, right?", + "posterPath": "/1yss3gl6mMNT9Txvdtvnu2KTWt9.jpg", + "backdropPath": "/9UolwLE0kfN4orxKwXdevJPWjNI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.423, + "voteCount": 686, + "popularity": 6.2782 + }, + { + "id": 1260, + "title": "Duckman", + "originalTitle": "Duckman", + "overview": "Together with Cornfed, his portly, porcine partner in crime solving, this defective detective amazingly manages to solve crimes and be a single parent to his hilariously dysfunctional sons at the same time.", + "posterPath": "/tUSieKYAFqgb8x4UZjqOtjkh16y.jpg", + "backdropPath": "/ej0YCWVNp1N39eX9jTZmxgq7FhT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1994-03-05", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 70, + "popularity": 6.2776 + }, + { + "id": 54671, + "title": "Penny Dreadful", + "originalTitle": "Penny Dreadful", + "overview": "Some of literature's most terrifying characters, including Dr. Frankenstein, Dorian Gray, and iconic figures from the novel Dracula are lurking in the darkest corners of Victorian London. Penny Dreadful is a frightening psychological thriller that weaves together these classic horror origin stories into a new adult drama.", + "posterPath": "/hQSdrXBYTbLGHYDIseHkBOPXTgL.jpg", + "backdropPath": "/3bViM60LioKQJwsExm5oyLRYagC.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2014-05-11", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.829, + "voteCount": 1440, + "popularity": 6.2745 + }, + { + "id": 136322, + "title": "Dragons: The Nine Realms", + "originalTitle": "Dragons: The Nine Realms", + "overview": "Set 1,300 years after the events of How to Train Your Dragon, dragons are now just a legend to the modern world. When a geological anomaly opens an immense, miles-deep fissure in the Earth’s surface, scientists from all over the world gather at a new research facility to study the mysterious phenomenon. Soon a group of misfit kids, brought to the site by their parents, uncover the truth about dragons and where they’ve been hiding -- a secret they must keep to themselves to protect what they’ve discovered.", + "posterPath": "/4iVAFGq8KhFdvsP5dHVvVqs5ALu.jpg", + "backdropPath": "/jRN6Qbrqm9hpiX8s1Ie90l1mxnF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-12-23", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 282, + "popularity": 6.2727 + }, + { + "id": 12337, + "title": "The Life and Legend of Wyatt Earp", + "originalTitle": "The Life and Legend of Wyatt Earp", + "overview": "The Life and Legend of Wyatt Earp is a television western series loosely based on the life of frontier marshal Wyatt Earp. The half-hour black-and-white program aired for 229 episodes on ABC from 1955 to 1961 and featured Hugh O'Brian in the title role.", + "posterPath": "/sq7meZ5XvxFKZmsTcM54q28IqHp.jpg", + "backdropPath": "/1vtc8g1iTqH6nNM1m9M9yqYLPyj.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "1955-09-06", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 20, + "popularity": 6.2721 + }, + { + "id": 73870, + "title": "Génial!", + "originalTitle": "Génial!", + "overview": "Two teams composed of a known personality and a contestant chosen from the public battle to guess the outcomes of astonishing scientific experiments.", + "posterPath": "/wZ8n9gzzHxLeH6e0XW42CBKVnaP.jpg", + "backdropPath": "/xG3P4ik2fTa94R1EEqyJx9Uhwd7.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10767 + ], + "genres": [ + "Family", + "Talk" + ], + "releaseDate": "2010-09-09", + "releaseYear": "2010", + "originalLanguage": "fr", + "voteAverage": 2.9, + "voteCount": 12, + "popularity": 6.269 + }, + { + "id": 253391, + "title": "Sheriff Country", + "originalTitle": "Sheriff Country", + "overview": "Mickey Fox investigates criminal activity and patrols the streets of small-town Edgewater while contending with her ex-con father and a mysterious incident involving her wayward daughter.", + "posterPath": "/hBrbAYp4SGMkNYZGPeFhEd0xW7Z.jpg", + "backdropPath": "/mhTIUNa9BI019NuXrUBYYCkZ199.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-10-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 17, + "popularity": 6.2665 + }, + { + "id": 4402, + "title": "The New Adventures of Old Christine", + "originalTitle": "The New Adventures of Old Christine", + "overview": "Single working mom Christine Campbell has just learned that her ex is dating a much younger woman with the same first name. To avoid any confusion, the new girlfriend is dubbed New Christine, which leaves her with the unfortunate nickname Old Christine.", + "posterPath": "/j1u9EGyEQEVFjl5VxK7NbRCxdZ1.jpg", + "backdropPath": "/y3p2SxZw5hRHO906UckifLbRDjL.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-03-13", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.059, + "voteCount": 101, + "popularity": 6.2651 + }, + { + "id": 92779, + "title": "My Girlfriend is an Alien", + "originalTitle": "外星女生柴小七", + "overview": "The alien girl Chai Xiaoqi tells the story of Fang Xiaoqi, the overbearing president of the alien girl who died from the \"Cape Town Planet\", who was suffering from the \"rainy weather heterosexual amnesia\". A high-energy hilarious and romantic cross-star love story. The female host Chai Xiaoqi is not only an alien, but also a true-handed witch. Once she inhales the hormones emitted by the males in the earth, she will fall into the \"flowery state\" and suffer from various diseases. The fun and ridiculously ridiculous romance will restore the singularity of the girl in the perfection of the girl. In order to survive on the human earth, Chai Xiaoqi will use his various super powers to solve one accident after another, like a roller coaster. The ups and downs will make the audience hooked. The male lord is cold and is an alternative overbearing president.", + "posterPath": "/sOtUZ34xeQiEZh6n0tC8vkaTNQF.jpg", + "backdropPath": "/zW7Z7xniks8aQ2BViwF2o2ZOHec.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-08-19", + "releaseYear": "2019", + "originalLanguage": "zh", + "voteAverage": 7.8, + "voteCount": 49, + "popularity": 6.2625 + }, + { + "id": 5721, + "title": "The Secret Life of the American Teenager", + "originalTitle": "The Secret Life of the American Teenager", + "overview": "Amy and her friends at Grant High learn to define themselves while they navigate the perilous waters of contemporary adolescence. Between their love triangles, secrets, drama, accusations, gossip, confusion, and scandalous rumors, there's never a dull moment.", + "posterPath": "/k2XTj9D0tzca3dSgvVojU9xk8F5.jpg", + "backdropPath": "/bH9Sf6wzJqYeBzhOsqGXwcLSUgR.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2008-07-01", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 132, + "popularity": 6.2603 + }, + { + "id": 75820, + "title": "Mr. Sunshine", + "originalTitle": "미스터 션샤인", + "overview": "Set in the early 1900s, this drama tells the story of a young man from Korea who grows up in the United States. When he returns to Korea as a US Marine Corps officer, he meets and falls in love with a noblewoman who is fighting for Korean independence. Their romance is complicated by social class and political ideology.", + "posterPath": "/p7ljjykSsiyWstGVAwIkbdfPzRV.jpg", + "backdropPath": "/gQwa6X2nmTHkmDgAifU4wacNqp4.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-07-07", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 8.4, + "voteCount": 173, + "popularity": 6.2552 + }, + { + "id": 32803, + "title": "Celebrity Ghost Stories", + "originalTitle": "Celebrity Ghost Stories", + "overview": "Compelling, surprising and downright spooky — celebrities share their real-life personal encounters with the paranormal in each one-hour special. From encounters with ghosts and angry spirits to haunted homes, unexplainable spells and magic, these descriptive, first person narratives from our favorite stars delivers a brand new way of experiencing the thrills and chills of the addictive world of the paranormal.", + "posterPath": "/2nQByTYVW27g3XyZNQeStzm1mD4.jpg", + "backdropPath": "/tRfqx8O8gqvJd9ssxr36kIYpzJt.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10765, + 9648, + 10767 + ], + "genres": [ + "Reality", + "Sci-Fi & Fantasy", + "Mystery", + "Talk" + ], + "releaseDate": "2009-10-03", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 18, + "popularity": 6.251 + }, + { + "id": 32716, + "title": "Kickin' It", + "originalTitle": "Kickin' It", + "overview": "Run by Sensei Rudy, the Bobby Wasabi Martial Arts Academy is the worst dojo in the nationwide Bobby Wasabi chain and is in danger of closing. But things change when Jack reluctantly joins the dojo and meets his new crew, including tough guy slacker Jerry and confident martial arts expert Kim. The crew teaches a group of neighborhood goofballs about life, karate, and how to \"kick it.\" Jack and the gang quickly realize their newfound friendship will take them places they've never imagined and, united, they can become unstoppable.", + "posterPath": "/40qRQPoUnCx6g50NIyQBS0OdxaP.jpg", + "backdropPath": "/rUC7l7tX9YOwkHjHwu4r62BGNEE.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10759, + 35 + ], + "genres": [ + "Family", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2011-06-13", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 182, + "popularity": 6.2406 + }, + { + "id": 2543, + "title": "The Persuaders!", + "originalTitle": "The Persuaders!", + "overview": "An English aristocrat and an American millionaire come together to tackle crime.", + "posterPath": "/jDzoUNUwVKIPMaf67wAg4Nby3oo.jpg", + "backdropPath": "/mMsOXipsdhRxxDvdNGQZk02yOa0.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 80 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "1971-09-17", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 7.625, + "voteCount": 124, + "popularity": 6.2399 + }, + { + "id": 1149, + "title": "KO One", + "originalTitle": "終極一班", + "overview": "Gifted with special powers, fighting skills and slick hair, the rowdy KO One navigates tough friendships and high school romance.", + "posterPath": "/tnrWCtRdYUiVMTTnAWvGLYXUj6I.jpg", + "backdropPath": "/6tsAZGCoyZo965h2uV3fgGwfDJj.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2005-11-26", + "releaseYear": "2005", + "originalLanguage": "zh", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 6.2395 + }, + { + "id": 248830, + "title": "Stick", + "originalTitle": "Stick", + "overview": "Pryce Cahill was headed for golf greatness when an on-course meltdown derailed his career. Now struggling to stay afloat, he goes all in to mentor Santi—a teenage phenom with immense potential—and maybe save himself.", + "posterPath": "/y8EWrf5Ry1WmYksWT7MOPWexvr5.jpg", + "backdropPath": "/pr1vZU0cxyWEtrXSaozLZiLFfxr.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-06-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 85, + "popularity": 6.237 + }, + { + "id": 127706, + "title": "Kiff", + "originalTitle": "Kiff", + "overview": "This series follows Kiff, an optimistic squirrel whose best intentions often lead to complete chaos, and her best friend Barry, a sweet and mellow bunny. Set in the bustling mountains, where animals and magical creatures live together in harmony, the series features the duo, who take the town by storm with their endless adventures and zest for life.", + "posterPath": "/h7xhJ1uWu7FurJ3W5iKzrfiPF3K.jpg", + "backdropPath": "/bfeOXOhilwMYcO0ruvFXruBsv4H.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-03-10", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.342, + "voteCount": 20, + "popularity": 6.231 + }, + { + "id": 657, + "title": "Rocko's Modern Life", + "originalTitle": "Rocko's Modern Life", + "overview": "Rocko is a wallaby who has emigrated to America from Australia. He lives in O-Town and tries to get through life but, of course, comes across a multitude of dilemmas and misadventures he must get through. Other characters include Rocko's best friend, Heffer, a steer who has been raised by wolves, Filbert, a paranoid hypochondriac turtle, Rocko's faithful (but none-too-bright) dog Spunky, and Ed Bighead who detests Rocko and hates having him for a next door neighbor. On this show, Rocko has such adventures as trying to adapt to a new vacuum cleaner, having Heffer move in temporarily after his parents kick him out, and going to a movie theater.", + "posterPath": "/ydi5M4Dq10Doi9PPkkN95T8ao7Z.jpg", + "backdropPath": "/fnfip1s0pXo5drZ267dVvkdxELJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1993-09-18", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 7.401, + "voteCount": 302, + "popularity": 6.2305 + }, + { + "id": 40050, + "title": "Daniel Tiger's Neighborhood", + "originalTitle": "Daniel Tiger's Neighborhood", + "overview": "The life of 4-year-old Daniel Tiger and his friends as they learn fun and practical strategies and skills necessary for growing and learning.", + "posterPath": "/pUbHrEFTWegyhIxFmtpOpAQsbfT.jpg", + "backdropPath": "/yAIpWHcLmS1O2aCrx4oBhXtwoHt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2012-09-03", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 28, + "popularity": 6.2285 + }, + { + "id": 50180, + "title": "Heiter bis tödlich - Morden im Norden", + "originalTitle": "Heiter bis tödlich - Morden im Norden", + "overview": "Morden im Norden is a German Police that has been broadcast by Das Erste. The show is set in Lübeck, Germany\n\nMorden im Norden is part of a series of commonly branded shows with similar themes called \"Heiter bis tödlich\".", + "posterPath": "/czaVdhFGpMdHtgRGxepEBkvwLRd.jpg", + "backdropPath": "/kiMl4TWLrfK2MzDgyL8mKclo8AG.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2012-02-21", + "releaseYear": "2012", + "originalLanguage": "de", + "voteAverage": 5.4, + "voteCount": 11, + "popularity": 6.2268 + }, + { + "id": 253941, + "title": "The Paper", + "originalTitle": "The Paper", + "overview": "The documentary crew that immortalized Dunder Mifflin's Scranton branch is in search of a new subject when they discover a historic Toledo newspaper, The Truth Teller, and the eager publisher trying to revive it.", + "posterPath": "/ySA5MvhoxTdezNUMe0ifPmhxH4w.jpg", + "backdropPath": "/qtMVO0McAXN4IV30SMFAVmXraBL.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-09-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 51, + "popularity": 6.2245 + }, + { + "id": 71322, + "title": "Aussie Gold Hunters", + "originalTitle": "Aussie Gold Hunters", + "overview": "Three hard-core crews of gold prospectors take the gamble of a lifetime and battle to strike it big, deep in the wild west of outback Australia. The soaring highs and the crushing lows of the gold season are revealed as the crews pursue their all-important targets - braving brutal heat, punishing conditions, mechanical breakdowns and constant pressure.", + "posterPath": "/pZfb5gtb0ZuzmJH7ka0tRPfDwIY.jpg", + "backdropPath": "/tq6gAGxpoCJUubZzCridf9wEgpw.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 99 + ], + "genres": [ + "Reality", + "Documentary" + ], + "releaseDate": "2016-08-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 15, + "popularity": 6.2226 + }, + { + "id": 2198, + "title": "101 Dalmatians: The Series", + "originalTitle": "101 Dalmatians: The Series", + "overview": "After foiling Cruella DeVil's plot to make a fur coat with the puppies' skins, the Dearly Family (Roger and Anita Dearly, Nanny, Pongo, Perdita, their 15 birth puppies and 84 adopted puppies) move to a new farm home in the country. Join Pongo and Perdy's pups, brave Lucky, tubby Rolly and Cadpig the runt, together with their chicken friend Spot, as they defend their new home from Cruella DeVil (Anita's boss and now new neighbor), continually get in and out of trouble, sneak into Grutely, and have all sorts of crazy adventures around the farm. Also along for the fun is Tripod, Patch, Two-Tone, Wizzer, Dipstick, Mooch, and the rest of their barnyard friends.", + "posterPath": "/3XnznfCQvfAKDUnuQLaXtkb36hL.jpg", + "backdropPath": "/tSMDSTG50LHBp4BA5hYCiQnLBA4.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10759 + ], + "genres": [ + "Kids", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1997-09-13", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.553, + "voteCount": 76, + "popularity": 6.2212 + }, + { + "id": 12536, + "title": "Yu-Gi-Oh! GX", + "originalTitle": "遊戯王デュエルモンスターズGX", + "overview": "Ten years after the Ceremonial Battle, a teenage boy named Judai Yuuki (Jaden Yuki) heads off in order to join the Duel Academia (Duel Academy) located on a remote island off the coast of Japan. There he meets his fellow students and gains a few friends, along with a few enemies. Judai is put into the lowest rank of Osiris Red (Slifer Red), but he continues to test his skills against the students and faculty to prove his worth as a Duelist and earn the respect of everyone around him.", + "posterPath": "/vhY30rXaM5axSpAdr1M1HRQrQGa.jpg", + "backdropPath": "/thC21OmJxXR0FoUrkEk644rRO2M.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2004-10-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 292, + "popularity": 6.2206 + }, + { + "id": 233753, + "title": "Forever Love", + "originalTitle": "盲心千金", + "overview": "Lin Zi Tong is the rich young heiress of the Li group: she is beautiful, cheerful, smart and straightforward. She has everything for her, including a devoted boyfriend, Chi Shan.\n\nBut when she goes through family changes, this innocent young miss has to become stronger to not only face adversity but also the betrayal of her boyfriend, Chi Shan, and her so-called best friend, Xia Yu Wei, a deceitful hypocrite who on the surface treats Lin Zi Tong like a sister but is actually very jealous and wants to steal everything from her.\n\nSheng Mo Yao is a brilliant medical student who succeeds in everything he does. He is handsome, appears sharp, cold and mysterious and is willing to do everything to protect Lin Zi Tong and help her in the shadows.", + "posterPath": "/t7Y8FTAIjcZ5WsRn8u0fb3h4gYB.jpg", + "backdropPath": "/8l6jtafrpst9hkFbHUMz9g5p6r5.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-08-31", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.14, + "voteCount": 25, + "popularity": 6.2193 + }, + { + "id": 15069, + "title": "American Masters", + "originalTitle": "American Masters", + "overview": "American Masters is a PBS television series which produces biographies on enduring writers, musicians, visual and performing artists, dramatists, filmmakers, and others who have left an indelible impression on the cultural landscape of the United States.", + "posterPath": "/mDoEhkA6wxYiqugY4CvkQ9LEvAx.jpg", + "backdropPath": "/11LgO8kkANe7cRmbF2afFYI41xx.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1986-06-23", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 21, + "popularity": 6.218 + }, + { + "id": 4545, + "title": "Blossom", + "originalTitle": "Blossom", + "overview": "Blossom Russo is a highly intelligent and spunky teenager. The youngest of three, she lives with her divorced musician father, Nick, eldest brother and recovering substance abuser Anthony, and decidedly not-so-bright middle brother Joey. Along for the ride is Blossom's ditzy best friend, Six, who sometimes shows flashes of great perception.", + "posterPath": "/qZVQ73nf4N43LLvKzs0cSkXRne5.jpg", + "backdropPath": "/eDnrGNNMD8IyitmRojrRomY9vtW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "1990-07-05", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.097, + "voteCount": 108, + "popularity": 6.2117 + }, + { + "id": 81502, + "title": "The Story of Ming Lan", + "originalTitle": "知否知否应是绿肥红瘦", + "overview": "Sheng Minglan, the intelligent but overlooked sixth daughter of the Sheng family, hides her talents to survive a difficult childhood and avenge her mother’s death. As she navigates family struggles and political intrigue, she forms a complex bond with Gu Tingye. Together, they rise as a powerful couple, balancing love, loyalty, and duty in a changing empire.", + "posterPath": "/flNWgUPwtkAGv8wyxxBlKaAwLzt.jpg", + "backdropPath": "/64YigOkGkBVUvWo9WpR45y4zjuf.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-12-23", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 7.3, + "voteCount": 34, + "popularity": 6.2104 + }, + { + "id": 38148, + "title": "Beck", + "originalTitle": "Beck", + "overview": "Beck follows Swedish police officer Martin Beck and his team as they investigate various crimes.", + "posterPath": "/oOHVlOM3l0etyCVAWA3ity4EJqm.jpg", + "backdropPath": "/p0NHPkOgaRdo304kn5xJLqD9UvO.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1999-12-12", + "releaseYear": "1999", + "originalLanguage": "sv", + "voteAverage": 6.768, + "voteCount": 56, + "popularity": 6.2096 + }, + { + "id": 90296, + "title": "Tokyo Vice", + "originalTitle": "Tokyo Vice", + "overview": "A first-hand account of the Tokyo Metropolitan Police beat following Jake Adelstein, an American journalist who embeds himself into the Tokyo Vice police squad to reveal corruption. Based on Jake Adelstein’s non-fiction book of the same name.", + "posterPath": "/epJDlI9kK6KIjf3uaPpoSPr7wm3.jpg", + "backdropPath": "/fGhZTONMDkwSaE5V4FDxf26uenl.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2022-04-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 339, + "popularity": 6.2088 + }, + { + "id": 112470, + "title": "Ici tout commence", + "originalTitle": "Ici tout commence", + "overview": "This television drama series is centered around the prestigious culinary school of renowned chef Auguste Armand. The show follows the lives of students and staff as they navigate the challenges and pressures of the culinary world—delving into their personal and professional lives, revealing secrets, rivalries, and complex relationships.", + "posterPath": "/x9HeaagUAyyGl1fQ6exQcpELBxP.jpg", + "backdropPath": "/vgeDRVpSUa4Hvovg4C6dgm4dfUW.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2020-11-02", + "releaseYear": "2020", + "originalLanguage": "fr", + "voteAverage": 6.8, + "voteCount": 90, + "popularity": 6.2079 + }, + { + "id": 35, + "title": "Cracker", + "originalTitle": "Cracker", + "overview": "The wise-cracking Fitz is a brilliant but flawed criminal psychologist with a remarkable insight into the criminal mind.", + "posterPath": "/6TafPjjdnquokIOxHywBtUvI5DS.jpg", + "backdropPath": "/puKcLOO8aLWGRa2odGa8OgXbDTS.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1993-09-27", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.574, + "voteCount": 115, + "popularity": 6.2078 + }, + { + "id": 54511, + "title": "Being Mary Jane", + "originalTitle": "Being Mary Jane", + "overview": "Mary Jane Paul is a one-woman-show: a successful TV news anchor, and an entirely self-sufficient powerhouse who remains devoted to a family that doesn't share her motivation. Intense drama and unforgettable moments unfold as Mary Jane juggles her life, her relationships, her work, and commitments to her family.", + "posterPath": "/j4lx9nB4C1H9axyuZYn8GX2DYak.jpg", + "backdropPath": "/nLu4tQ4Q8oGep7QuSVKhn4fT4KY.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-07-02", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 50, + "popularity": 6.207 + }, + { + "id": 67883, + "title": "Insecure", + "originalTitle": "Insecure", + "overview": "Follows the awkward experiences and racy tribulations of a modern-day African-American woman.", + "posterPath": "/sGMwPIE6m9QI3LzCRXnZG8opZtB.jpg", + "backdropPath": "/jS2R26p1S7JQtSCo4MjA9El45A8.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-10-09", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 212, + "popularity": 6.2045 + }, + { + "id": 6550, + "title": "Wiseguy", + "originalTitle": "Wiseguy", + "overview": "Vinnie Terranova does time in a New Jersey penitentiary to set up his undercover role as an agent for the OCB (Organized Crime Bureau) of the United States. His roots in a traditional Italian city neighborhood form the underlying dramatic base throughout the series, bringing him into conflict with his conservative mother and other family members while acting undercover as syndicate enforcer.", + "posterPath": "/pDKRxvfp5vB3FrHZ0g3oHvnHQKG.jpg", + "backdropPath": "/aeJjEI77LBvtQTmQKK0jYhHZ3sR.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1987-09-16", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 34, + "popularity": 6.202 + }, + { + "id": 24710, + "title": "Nadia: The Secret of Blue Water", + "originalTitle": "ふしぎの海のナディア", + "overview": "In mankind's grasp for the future, a sinister foe known only as Gargoyle begins his plans to take over the world. Nadia, with the help of a young inventor, Jean Ratlique, and Captain Nemo of the submarine Nautilus, must fight to save the world from Gargoyle and Neo-Atlantis.", + "posterPath": "/gRucHR87gd3ZwvIP0V1IlEiLMzM.jpg", + "backdropPath": "/VQe5q9BD3itFA30VNHOmcKWrSr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Family" + ], + "releaseDate": "1990-04-13", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 87, + "popularity": 6.199 + }, + { + "id": 56559, + "title": "Theatre of Darkness: Yamishibai", + "originalTitle": "闇芝居", + "overview": "Yamishibai is a picture-story style of animation whose motif is surrounded and based off the rumors, and urban legends throughout the history of Japan.", + "posterPath": "/coYJ1i9QLlHZTanckLZ4iceptlj.jpg", + "backdropPath": "/upkcoee5VhPeTTbLdPERtCVhy4N.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2013-07-15", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 57, + "popularity": 6.1988 + }, + { + "id": 76121, + "title": "DARLING in the FRANXX", + "originalTitle": "ダーリン・イン・ザ・フランキス", + "overview": "The story is set in the distant future. The land is ruined, and humanity establishes the mobile fort city Plantation. Pilots produced inside Plantation live in Mistilteinn, also know as the \"birdcage.\" Children live there knowing nothing of the outside world or the freedom of the sky. Their lives consist of battling to carry out missions. Their enemies are mysterious giant lifeforms known as Kyouryuu, and the children pilot robots called Franxx to face off against them. For the children, riding the Franxx proves their existence.\n\nA boy named Hiro is called Code:016, and he was once known as a prodigy. However, he has fallen behind, and his existence seems unnecessary. Not piloting a Franxx is the same as ceasing to exist. One day, a mysterious girl known as \"Zero Two\" appears before him. Two horns grow out of her head.", + "posterPath": "/m6R8gI3brohD6izeVCXFmuGeV2m.jpg", + "backdropPath": "/tKh3pc5MEjCIGV7hSJX76qi8aGA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2018-01-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.538, + "voteCount": 1852, + "popularity": 6.1958 + }, + { + "id": 91875, + "title": "Prodigal Son", + "originalTitle": "Prodigal Son", + "overview": "The son of a notorious serial killer becomes an acclaimed criminal psychologist who uses his unique insight into how killers think to help the NYPD.", + "posterPath": "/sp5BL7O4SnnTnXf9ECNrXbJQyqt.jpg", + "backdropPath": "/27qMrYslAN7LGMpXWKHNm0EkVRy.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2019-09-23", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.112, + "voteCount": 442, + "popularity": 6.1956 + }, + { + "id": 21926, + "title": "Big Brother", + "originalTitle": "Big Brother", + "overview": "100 days, 24-hour surveillance, a container and no contact with the outside world: the residents live together in their new shared flat in a container for 100 days and are under 24-hour camera surveillance. Big Brother sees everything. Big Brother sets the rules. Big Brother is unpredictable.", + "posterPath": "/ojPXByoWcWJrs2WZcEv8p0qBhtS.jpg", + "backdropPath": "/t1b9cgIHwEMn1RpfjJtDNvri24Q.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2000-03-01", + "releaseYear": "2000", + "originalLanguage": "de", + "voteAverage": 3.538, + "voteCount": 13, + "popularity": 6.1914 + }, + { + "id": 85853, + "title": "Perry Mason", + "originalTitle": "Perry Mason", + "overview": "Set in 1932 Los Angeles, the series focuses on the origin story of famed defense lawyer Perry Mason. Living check-to-check as a low-rent private investigator, Mason is haunted by his wartime experiences in France and suffering the effects of a broken marriage. L.A. is booming while the rest of the country recovers from the Great Depression — but a kidnapping gone very wrong leads to Mason exposing a fractured city as he uncovers the truth of the crime.", + "posterPath": "/5QcaEyfSbJEmiaxf7ch8nBl0GO4.jpg", + "backdropPath": "/2KzRW0vaaO91zTeWuCHPMaJjesu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2020-06-21", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.227, + "voteCount": 348, + "popularity": 6.1894 + }, + { + "id": 27023, + "title": "The Oscars", + "originalTitle": "The Oscars", + "overview": "An annual American awards ceremony honoring cinematic achievements in the film industry. The various category winners are awarded a copy of a statuette, officially the Academy Award of Merit, that is better known by its nickname Oscar.", + "posterPath": "/sSsBn4CeTAnSF6uWCwr3zpKknYV.jpg", + "backdropPath": "/AvydGD3Y03ad7QLxQ3tAZ3VVkng.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "1953-03-19", + "releaseYear": "1953", + "originalLanguage": "en", + "voteAverage": 6.961, + "voteCount": 76, + "popularity": 6.1891 + }, + { + "id": 2651, + "title": "Profiler", + "originalTitle": "Profiler", + "overview": "Rachel Burke is a criminal profiler, one of the best, actually.\n\nShe, along with a sophisticated team of specialists on the FBI's Violent Crimes Task Force in Atlanta, investigates crimes throughout the country.\n\nTogether, they solve the toughest of cases while trying to live their lives as best they can.", + "posterPath": "/rZPFS2CRMZOy2LV4hE64KBxAbGg.jpg", + "backdropPath": "/e014XdmeBhOsouYYRUzAY05dBKQ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1996-09-21", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.021, + "voteCount": 70, + "popularity": 6.1891 + }, + { + "id": 61441, + "title": "Yowamushi Pedal", + "originalTitle": "弱虫ペダル", + "overview": "A timid, anime-loving teen gets drawn into a school cycling club, where his new friends help him face tough challenges to develop his racing talent.", + "posterPath": "/688PJsb1sVWgosrQCbwT32vJKfI.jpg", + "backdropPath": "/3t5i6QjBmi8VPqTtYfvkzWPnqzO.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 18 + ], + "genres": [ + "Comedy", + "Animation", + "Drama" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 45, + "popularity": 6.1867 + }, + { + "id": 247246, + "title": "The Fairly OddParents: A New Wish", + "originalTitle": "The Fairly OddParents: A New Wish", + "overview": "Ten-year-old Hazel Wells has just moved to the big city of Dimmadelphia because of her dad’s new job. On top of being in an unfamiliar environment, it’s the first time she’s been without her brother, Antony, who’s just left for college, leaving her lonely and unsure of herself. All that changes when the pink-and-green-haired neighbors next door reveal that they are no ordinary neighbors…they’re Cosmo and Wanda, fairy godparents! And they’re coming out of retirement to make all of Hazel’s wishes come true.", + "posterPath": "/ePgVXUAo1z8Bs2iLewcZ5ZH2wBR.jpg", + "backdropPath": "/voeuYrKelMCQBqR2xWxyHgB0fS5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2024-05-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 46, + "popularity": 6.185 + }, + { + "id": 69087, + "title": "Voice", + "originalTitle": "보이스", + "overview": "It's 3 minutes for hearers, but a life for the callers. A crime thriller chasing even the slightest sounds to rescue people's lives calling for urgent help.", + "posterPath": "/gMgzUEvNljCkNjUDlGaYyLn2zyz.jpg", + "backdropPath": "/i8iujCYtGOG8f6ui90ADs5NxHKb.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-01-14", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 7.3, + "voteCount": 68, + "popularity": 6.1849 + }, + { + "id": 45937, + "title": "Streets of Broken Lights", + "originalTitle": "Улицы разбитых фонарей", + "overview": "Russian detectives unwind the ball of the most intricate and cruel crimes. They are consummate professionals, the best cops in town. Even on the most dangerous missions, this quartet never loses their sense of humor. It is it that helps them find the most incredible ways out of any situation. They uphold the law and emerge victorious.", + "posterPath": "/szNH2weSSwKndvpD06qGcp06Bb8.jpg", + "backdropPath": "/7DbntjK2j6bO952KLwXJ3MRmOlW.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10759, + 35, + 18 + ], + "genres": [ + "Mystery", + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "1998-01-04", + "releaseYear": "1998", + "originalLanguage": "ru", + "voteAverage": 6.05, + "voteCount": 20, + "popularity": 6.1822 + }, + { + "id": 62884, + "title": "Forged in Fire", + "originalTitle": "Forged in Fire", + "overview": "Competitors re-create weapons from historical periods ranging from Japanese katanas to medieval broadswords to ancient throwing blades. Each entry is judged on its artistry as well as its functionality and accuracy.", + "posterPath": "/qTeChgTbGdrxRy6X3TFRW83e1U2.jpg", + "backdropPath": "/xOnS8d82wB19YcVWT2r2RDGsQOm.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2015-06-22", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 147, + "popularity": 6.1786 + }, + { + "id": 65143, + "title": "Descendants of the Sun", + "originalTitle": "태양의 후예", + "overview": "After a chance meeting in a hospital, an ardent soldier falls for a gifted surgeon. Opposing philosophies tear them apart, but fate has other plans.", + "posterPath": "/s1zXuYyMMrgpet6BBrMqGlHnvc8.jpg", + "backdropPath": "/o9Z8O0gdi6Qvvzk86RdnnBjBGDq.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2016-02-24", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 8.364, + "voteCount": 773, + "popularity": 6.1767 + }, + { + "id": 65320, + "title": "SKAM", + "originalTitle": "SKAM", + "overview": "The story of young teenagers and pupils from Hartvig Nissens upper secondary school in Oslo, and their troubles, scandals and everyday life. Each season is told from a different person's point of view.", + "posterPath": "/mkgQX2mRSn7aDSlFtnpUtNintbA.jpg", + "backdropPath": "/vHLF4DtO3y058kvqYdNNP6rbi6m.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-09-25", + "releaseYear": "2015", + "originalLanguage": "no", + "voteAverage": 8.2, + "voteCount": 728, + "popularity": 6.1764 + }, + { + "id": 68267, + "title": "Trollhunters: Tales of Arcadia", + "originalTitle": "Trollhunters: Tales of Arcadia", + "overview": "After uncovering a mysterious amulet, an average teen assumes an unlikely destiny and sets out to save two worlds.", + "posterPath": "/9VZmMzINVdO3ZYGsKItU39pNO2l.jpg", + "backdropPath": "/oyi9AeavhrKTbISf4tZ83S7xp29.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Family", + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-12-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.451, + "voteCount": 1120, + "popularity": 6.1759 + }, + { + "id": 10821, + "title": "Blue's Clues", + "originalTitle": "Blue's Clues", + "overview": "Blue's Clues is a colorful and learning series that is targeted at the younger crowd, but can be enjoyed by all. The host, Steve Burns, invites viewers daily into the Blue's Clues house to help him out, learn and have fun. The show is based around the host looking for three clues that Blue provides by labelling them with a pawprint to figure something out and in the process, having an adventure.", + "posterPath": "/dSCi1cLsKiQ7713m8Lf9J8iHbRH.jpg", + "backdropPath": "/m94lERZlYkFyn3wzoMwLUBeriRI.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 35, + 16, + 10751 + ], + "genres": [ + "Kids", + "Comedy", + "Animation", + "Family" + ], + "releaseDate": "1996-09-08", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 259, + "popularity": 6.1744 + }, + { + "id": 66433, + "title": "Scarlet Heart: Ryeo", + "originalTitle": "달의 연인 - 보보경심 려", + "overview": "A story of a 25-year-old Go Hajin who is transported back in time to the Goryeo Dynasty. She then wakes up in the body of Lady Hae Soo and finds herself amongst the ruling princes of the Wang Family.", + "posterPath": "/pjdPGHqUe60ZGQJR1TItVNaV4it.jpg", + "backdropPath": "/i987SrMmgf7hk3EYAARHZ4q4KvX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10768 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2016-08-29", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 8.512, + "voteCount": 552, + "popularity": 6.1733 + }, + { + "id": 61663, + "title": "Your Lie in April", + "originalTitle": "四月は君の嘘", + "overview": "Kousei Arima was a genius pianist until his mother's sudden death took away his ability to play. Each day was dull for Kousei. But, then he meets a violinist named Kaori Miyazono who has an eccentric playing style. Can the heartfelt sounds of the girl's violin lead the boy to play the piano again?", + "posterPath": "/rRjfH3ckTYz8z8aSkJshFL4VyK9.jpg", + "backdropPath": "/x6jWDL4H9TaBLGEvyej0qKiirBU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-10-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.574, + "voteCount": 1083, + "popularity": 6.1731 + }, + { + "id": 72844, + "title": "The Haunting of Hill House", + "originalTitle": "The Haunting of Hill House", + "overview": "Flashing between past and present, a fractured family confronts haunting memories of their old home and the terrifying events that drove them from it.", + "posterPath": "/38PkhBGRQtmVx2drvPik3F42qHO.jpg", + "backdropPath": "/sNtNXwtEbdw4LaCFxFQwL2Jv4yW.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2018-10-12", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.114, + "voteCount": 2554, + "popularity": 6.1726 + }, + { + "id": 2674, + "title": "Neighbours", + "originalTitle": "Neighbours", + "overview": "Neighbours is an Australian television soap opera. The show's storylines concern the domestic and professional lives of the people who live and work in Erinsborough, a fictional suburb of Melbourne, Victoria. The series primarily centres around the residents of Ramsay Street, a short cul-de-sac, and its neighbouring areas, the Lassiters complex, which includes a bar, hotel, cafe, news office and park. Neighbours began with three families created by Watson – the Ramsays, the Robinsons and the Clarkes. Watson said that he wanted to show three families who are friends living in a small street. The Robinsons and the Ramsays had a long history and were involved in an ongoing rivalry.", + "posterPath": "/bXY78bQsKCIiD17Sr6yO4wLIXqS.jpg", + "backdropPath": "/fi3F610zUye8u7HaaGYUGviZTwj.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 10751, + 35 + ], + "genres": [ + "Soap", + "Drama", + "Family", + "Comedy" + ], + "releaseDate": "1985-03-18", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 57, + "popularity": 6.1631 + }, + { + "id": 32368, + "title": "The Killing", + "originalTitle": "Forbrydelsen", + "overview": "The Killing is a Danish police procedural set in the Copenhagen main police department and revolves around Detective Inspector Sarah Lund and her team, with each season series following a different murder case day-by-day and a one-hour episode covering twenty-four hours of the investigation. The series is noted for its plot twists, season-long storylines, dark tone and for giving equal emphasis to the story of the murdered victim's family alongside the police investigation. It has also been singled out for the photography of its Danish setting, and for the acting ability of its cast.", + "posterPath": "/p8Vc9kF4Ju059FWI9G47GyiDM89.jpg", + "backdropPath": "/iLvnc1aK2b2PNQhbyn4IVpDcmcX.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2007-01-07", + "releaseYear": "2007", + "originalLanguage": "da", + "voteAverage": 7.979, + "voteCount": 268, + "popularity": 6.1624 + }, + { + "id": 2823, + "title": "Empty Nest", + "originalTitle": "Empty Nest", + "overview": "Widowed pediatrician Harry Weston is a miracle worker when it comes to dealing with his young patients, but he's more challenged by the other people surrounding him: daughters Barbara and Carol; his wisecracking office assistant, nurse LaVerne Todd; and obnoxious neighborhood mooch Charley Dietz. Thank goodness he always finds a friendly shoulder (and a warm, wet tongue) in Dreyfuss, his enormous dog.", + "posterPath": "/99I4RHS7Vh9dPrYhKyYp2i1lOcn.jpg", + "backdropPath": "/cL8CITUZ4PuRxkP7ZoSE0mtTqOA.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1988-10-08", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 25, + "popularity": 6.1624 + }, + { + "id": 32708, + "title": "Body of Proof", + "originalTitle": "Body of Proof", + "overview": "Dr. Megan Hunt was in a class of her own, a brilliant neurosurgeon at the top of her game. But her world is turned upside down when a devastating car accident puts an end to her time in the operating room. Megan resumes her career as a medical examiner, determined to solve the puzzle of who or what killed the victims.", + "posterPath": "/8LyLUgvwawgnNKOzIFX5lSgTNeq.jpg", + "backdropPath": "/14aJrAGtZvAgCwIhZOfVMTqIjtp.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648, + 35 + ], + "genres": [ + "Drama", + "Crime", + "Mystery", + "Comedy" + ], + "releaseDate": "2011-03-29", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 176, + "popularity": 6.1622 + }, + { + "id": 240440, + "title": "The Story of Pearl Girl", + "originalTitle": "珠帘玉幕", + "overview": "After narrowly escaping an abusive pearl farm, a young woman with unmatched talent carves out her own fate as treachery meets the world of jewelry.", + "posterPath": "/rggdEAQkad1SFGJUg48tlhjWSXa.jpg", + "backdropPath": "/hEDk1zwZCFH5J6olXiTWx4Mk07L.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-01", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 8, + "voteCount": 12, + "popularity": 6.16 + }, + { + "id": 259710, + "title": "Confidence Queen", + "originalTitle": "컨피던스 맨 KR", + "overview": "Three con artists with different backgrounds, team up for a daring and adventurous scheme of revenge against the villains of this era.", + "posterPath": "/wUCmw1B6MBRiN6TUSbssKHuJnV0.jpg", + "backdropPath": "/brugu6L6cGP7I0G1EH7id46brj2.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 35, + 18 + ], + "genres": [ + "Crime", + "Comedy", + "Drama" + ], + "releaseDate": "2025-09-06", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.712, + "voteCount": 26, + "popularity": 6.1585 + }, + { + "id": 32406, + "title": "The Big C", + "originalTitle": "The Big C", + "overview": "A suburban mother faces her cancer diagnosis while trying to find humor and happiness as well.", + "posterPath": "/osq7LBsULx9DEs67LeYZnGGyr70.jpg", + "backdropPath": "/c1msGIqjHNZOGFtMXJXVQqdz23F.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2010-08-16", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 109, + "popularity": 6.1574 + }, + { + "id": 155292, + "title": "Scott Pilgrim Takes Off", + "originalTitle": "Scott Pilgrim Takes Off", + "overview": "Scott Pilgrim meets the girl of his dreams, Ramona Flowers, only to find out her seven evil exes stand in the way of their love.", + "posterPath": "/nHROk2C6bv8LqtvyYd0tCMURbxC.jpg", + "backdropPath": "/gUJzW87AXPqb4LVMJx3qQ5VWILP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-11-17", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 362, + "popularity": 6.1556 + }, + { + "id": 1466, + "title": "Joey", + "originalTitle": "Joey", + "overview": "The charming and still-single Joey has struck out on his own and moved to Hollywood, hoping to truly make it as an actor. After reuniting with his high-strung sister Gina, Joey moves in with Michael, his 20-year-old genius nephew, who unbelievably is literally a rocket scientist. However, what Joey lacks in book smarts he makes up for with people smarts – making him the best new friend his nephew could ask for.", + "posterPath": "/bU5yBQsmt0CnIpi9z8zB3iL7ZHP.jpg", + "backdropPath": "/vF2hoPhXa6OaQYDZE6C7HET2wLE.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2004-09-09", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.253, + "voteCount": 340, + "popularity": 6.1521 + }, + { + "id": 281044, + "title": "Solo Camping for Two", + "originalTitle": "ふたりソロキャンプ", + "overview": "Gen Kinokura just wanted to enjoy his peaceful solo camping trips—no distractions, no problems. Enter Shizuku Kusano, a clueless but enthusiastic newbie who crashes his campsite (literally). Now, this bothered outdoorsman is stuck teaching her the ropes. Laughs, mishaps, and heartwarming moments await this duo-camp adventure under the stars!", + "posterPath": "/r1UVwYCQ4q02T40bdnRgTFLkOXc.jpg", + "backdropPath": "/lPpKeKWD0dfHB8ZakfEavurVZ1T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 11, + "popularity": 6.1506 + }, + { + "id": 64010, + "title": "Reply 1988", + "originalTitle": "응답하라 1988", + "overview": "Take a nostalgic trip back to the late 1980s through the lives of five families and their five teenage kids living in a small neighbourhood in Seoul.", + "posterPath": "/mqhYVbe20pB0PQXVZVdtbMakOCF.jpg", + "backdropPath": "/sZH7lGs06skRKkrqp1LRi57VVMb.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-11-06", + "releaseYear": "2015", + "originalLanguage": "ko", + "voteAverage": 8.8, + "voteCount": 192, + "popularity": 6.1483 + }, + { + "id": 44242, + "title": "Devious Maids", + "originalTitle": "Devious Maids", + "overview": "The series centers on four Latina maids working in the homes of Beverly Hills’ wealthiest and most powerful families, and a newcomer who made it personal after a maid was murdered and determined to uncover the truth behind her demise, and in the process become an ally in their lives.", + "posterPath": "/gn61HHk9KRa9RKeFCz476EqLR61.jpg", + "backdropPath": "/1SZ5zNq9zTSC6e47VtTNt624Wu9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2013-06-23", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.063, + "voteCount": 144, + "popularity": 6.1479 + }, + { + "id": 106502, + "title": "Leverage: Redemption", + "originalTitle": "Leverage: Redemption", + "overview": "The Hitter, the Hacker, the Grifter and the Thief are together again, this time with help from a new tech genius and corporate fixer, to take on a new kind of villain. From the man who created an opioid crisis from the comfort of his boardroom to the shadowy security firm that helps hide dangerous secrets for a price - when someone needs help, they provide... Leverage.", + "posterPath": "/i3Evib4bHONndY7pZ9gbznYUcGj.jpg", + "backdropPath": "/eW4hXSkTfPJImqWl1YyecbAM5d2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2021-07-08", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 100, + "popularity": 6.1448 + }, + { + "id": 61709, + "title": "Dragon Ball Z Kai", + "originalTitle": "ドラゴンボール改「カイ」", + "overview": "Rejoin Goku and his friends in a series of cosmic battles! Toei has redubbed, recut, and cleaned up the animation of the original 1989 animated series. The show's story arc has been refined to better follow the comic book series on which it is based. The show also features a new opening and ending. In the series, martial artist Goku, and his various friends, battle increasingly powerful enemies to defend the world against evil. Can Earth's defender defeat demons, aliens, and other villains?", + "posterPath": "/je57jXdeWeJO9tGoWSJi4MCuXbN.jpg", + "backdropPath": "/oz5zbMBKCUsb7hsbjdxvK8yagPD.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 792, + "popularity": 6.1428 + }, + { + "id": 218344, + "title": "Blue Lights", + "originalTitle": "Blue Lights", + "overview": "Follows rookie police officers working in Belfast, a city in which being a frontline response cop comes with unique pressures and dangers.", + "posterPath": "/7sBx40gwTCSiZ9NI8WWARjQq1hm.jpg", + "backdropPath": "/kjFoqKiR155jQn77bBkwBD3zjvO.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2023-03-27", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.402, + "voteCount": 98, + "popularity": 6.1398 + }, + { + "id": 2637, + "title": "Come Dine with Me", + "originalTitle": "Come Dine with Me", + "overview": "Amateur chefs compete against each other by hosting a dinner party for the other contestants. Each competitor then rates the host's performance with the winner winning a £1,000 cash prize. An element of comedy is added to the show through comedian Dave Lamb, who provides a dry and \"bitingly sarcastic\" narration.", + "posterPath": "/enFfviWZwnIKn9DhyMa7cXqKx6Q.jpg", + "backdropPath": "/oniNKYLHR0M5y7i4V1K1FhpCl7G.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2005-01-10", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 31, + "popularity": 6.136 + }, + { + "id": 33623, + "title": "The Avengers: Earth's Mightiest Heroes", + "originalTitle": "The Avengers: Earth's Mightiest Heroes", + "overview": "The most powerful villains on the planet escape from prison. However, none of the superheroes can stop them without help, not even S.H.I.E.L.D. The Avengers then join forces to fight evil, and discover that as a group they are stronger.", + "posterPath": "/r1JDhMrqCOZKh7lc0vQlRYQ46cE.jpg", + "backdropPath": "/vgPDKfOerEyF260CvozVEWj9T8n.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2010-10-20", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 751, + "popularity": 6.1355 + }, + { + "id": 34109, + "title": "Bakugan Battle Brawlers", + "originalTitle": "爆丸バトルブローラーズ", + "overview": "Centers on the lives of creatures called Bakugan and the battle brawlers who possess them.", + "posterPath": "/vptVwP1uej035bHzirMtEMSndn.jpg", + "backdropPath": "/fI3m5UjTMyigglkFeQWkPJgFLSC.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-05", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.31, + "voteCount": 381, + "popularity": 6.1311 + }, + { + "id": 41733, + "title": "I'm Mita, Your Housekeeper", + "originalTitle": "家政婦のミタ", + "overview": "A family is grieving their mother's recent suicide. They hire Mita as a housekeeper to upkeep the house, which has been thrown into disarray. Mita will do anything that her employer orders her to do, except smiling or revealing her past.", + "posterPath": "/186abs0w1P1ZXEOnAuEHbergHdV.jpg", + "backdropPath": "/uMFEKZPPqcsmmpUka8zKQErPqzc.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-10-12", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 21, + "popularity": 6.1294 + }, + { + "id": 77694, + "title": "Umamusume: Pretty Derby", + "originalTitle": "ウマ娘 プリティーダービー", + "overview": "In a world very much like our own, great race horses of the past have a chance to be reborn as \"horse girls\"—girls with the ears and tails of horses as well as their speed and endurance. The best of these horse girls go to train at Tokyo's Tracen Academy, hopefully moving on to fame and fortune as both racers and idols.\n\nSpecial Week, a high school horse girl from the countryside, has just transferred to Tracen, and she's determined to fulfill her promise to her mother to become the best horse girl in Japan. On her way to school, she takes a pit stop at the race track and instantly falls in love with Silence Suzuka's style, becoming determined to race on the same team as her.", + "posterPath": "/9TVHxWbWAHiIQjzGTx1vXi95r2X.jpg", + "backdropPath": "/fp9odSdJDtOSuerFgHLKao3ajxS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-04-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 77, + "popularity": 6.1264 + }, + { + "id": 95594, + "title": "Fast & Furious Spy Racers", + "originalTitle": "Fast & Furious Spy Racers", + "overview": "A government agency recruits teen driver Tony Toretto and his thrill-seeking friends to infiltrate a criminal street racing circuit as undercover spies.", + "posterPath": "/cI7zYWuYTmKEdXITcUKPzjc2EW5.jpg", + "backdropPath": "/9aWSpBqMrlrr8yaydSEgNJjIruG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Family" + ], + "releaseDate": "2019-12-26", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 2197, + "popularity": 6.1239 + }, + { + "id": 34376, + "title": "Paco's Men", + "originalTitle": "Los hombres de Paco", + "overview": "Follows police officer Francisco \"Paco\" Miranda and his men through funny cases.", + "posterPath": "/o18qCrSlgQXoRIDwCRiIz9IPyqY.jpg", + "backdropPath": "/aiEblNA6Ww4jzKZiqQbfpv8XpzQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10759, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2005-10-09", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 7.9, + "voteCount": 200, + "popularity": 6.1227 + }, + { + "id": 27511, + "title": "GMTV", + "originalTitle": "GMTV", + "overview": "GMTV is the name of the national Channel 3 breakfast television contractor/licensee, broadcasting in the United Kingdom from 1 January 1993 to 3 September 2010. It became a wholly owned subsidiary of ITV plc in November 2009. Shortly after, ITV plc announced the programme would end. The final edition of GMTV was broadcast on 3 September 2010.", + "posterPath": "/peQ3blnogd6YXfjqPJOwMx1yOVK.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 10763 + ], + "genres": [ + "News" + ], + "releaseDate": "1993-01-01", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 12, + "popularity": 6.1223 + }, + { + "id": 253368, + "title": "The Iris Affair", + "originalTitle": "The Iris Affair", + "overview": "A rootless genius, Iris Nixon, steals an enigmatic code from a charming philanthropist and disappears. A tense countdown ensues as she races to unravel the code's mystery.", + "posterPath": "/iTkRTDTZPrMAk0rlhTiGLHVeuUd.jpg", + "backdropPath": "/gwfifpetC1DsL1OnzZFUgebGKib.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759, + 10765 + ], + "genres": [ + "Crime", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 11, + "popularity": 6.1191 + }, + { + "id": 154743, + "title": "The Angel Next Door Spoils Me Rotten", + "originalTitle": "お隣の天使様にいつの間にか駄目人間にされていた件", + "overview": "Amane lives alone in an apartment, and the most beautiful girl in school, Mahiru, lives just next door. They've almost never spoken—until the day he sees her in distress on a rainy day and lends her his umbrella. To return the favour, she offers him help around the house, and a relationship slowly begins to blossom as the distance between them closes…", + "posterPath": "/twCEEzmZZkgQIPXzw0JF350GO0P.jpg", + "backdropPath": "/7SQAFFP8dQCX60uvLDzizUoUC2L.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 83, + "popularity": 6.1179 + }, + { + "id": 83100, + "title": "Dororo", + "originalTitle": "どろろ", + "overview": "A samurai lord has bartered away his newborn son's organs to forty-eight demons in exchange for dominance on the battlefield. Yet, the abandoned infant survives thanks to a medicine man who equips him with primitive prosthetics—lethal ones with which the wronged son will use to hunt down the multitude of demons to reclaim his body one piece at a time, before confronting his father. On his journeys the young hero encounters an orphan who claims to be the greatest thief in Japan.", + "posterPath": "/2qSzgSE80OFrfgg5UFYbATdCQ6t.jpg", + "backdropPath": "/2Wb3LB2LIRmGrFbGTgpQsTOCPhS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2019-01-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.544, + "voteCount": 1263, + "popularity": 6.1171 + }, + { + "id": 8864, + "title": ".hack", + "originalTitle": ".hack", + "overview": ".hack follows several young players as they navigate the vast, mysterious MMORPG known as “The World” – a place, it turns out, that is sometimes impossible to leave.", + "posterPath": "/wNplB2ViLejqtyU76Qz2iv3oZPM.jpg", + "backdropPath": "/nQC4IrpJOUvlWTkmU1UaRaere8B.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery" + ], + "releaseDate": "2002-04-04", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.857, + "voteCount": 35, + "popularity": 6.1156 + }, + { + "id": 92830, + "title": "Obi-Wan Kenobi", + "originalTitle": "Obi-Wan Kenobi", + "overview": "During the reign of the Galactic Empire, former Jedi Master, Obi-Wan Kenobi, embarks on a crucial mission to confront allies turned enemies and face the wrath of the Empire.", + "posterPath": "/qJRB789ceLryrLvOKrZqLKr2CGf.jpg", + "backdropPath": "/p3Jmm6d1ShUrJEuU3DYD2K19c66.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2022-05-26", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 2081, + "popularity": 6.1145 + }, + { + "id": 62128, + "title": "The Kitchen", + "originalTitle": "The Kitchen", + "overview": "Spend a fun and food-filled morning in The Kitchen with hosts Sunny Anderson, Katie Lee, Jeff Mauro, Marcela Valladolid, and Geoffrey Zakarian. From simple supper ideas, food trend discussions, and family meal tips to trivia games and viewer questions, they'll cover all things fun in food.", + "posterPath": "/G2PN9AnF4DqQVenuFabUqtW4hS.jpg", + "backdropPath": "/tTHGEYXcqNqaWqVqYfv3lH0fegU.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10751, + 10767, + 18 + ], + "genres": [ + "Reality", + "Family", + "Talk", + "Drama" + ], + "releaseDate": "2014-01-04", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.2, + "voteCount": 14, + "popularity": 6.1018 + }, + { + "id": 66017, + "title": "Resurrection: Ertugrul", + "originalTitle": "Diriliş: Ertuğrul", + "overview": "Ertuğrul Bey and the Knights Templar in the 13th century Alba and step and step with the struggle against brutal Mongols depicts the process of establishing the Ottoman principality.", + "posterPath": "/rOar34cNLn2sgDH5FmAa1bvMpBv.jpg", + "backdropPath": "/xTwCPMFshsjtA0firQMe3GapQz9.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 10759, + 18 + ], + "genres": [ + "War & Politics", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2014-12-11", + "releaseYear": "2014", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 165, + "popularity": 6.1003 + }, + { + "id": 8974, + "title": "Hell Girl", + "originalTitle": "地獄少女", + "overview": "A supernatural system allows people to take revenge by having other people sent to Hell via the services of a mysterious entity and her assistants who implement this system. Revenge, injustice, hatred, and the nature of human emotions are common themes throughout the series.", + "posterPath": "/l50Wjrt2m362DjsKZVTpU2sp5L5.jpg", + "backdropPath": "/z0ExPmQF4cQpiYthtLOhPkq8vof.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-04", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.211, + "voteCount": 235, + "popularity": 6.0993 + }, + { + "id": 3968, + "title": "NewsRadio", + "originalTitle": "NewsRadio", + "overview": "The office politics and interpersonal relationships among the staff of WNYX NewsRadio, New York's #2 news radio station.", + "posterPath": "/nP698ZfQ9OqCXnxhEPapa8QOgdX.jpg", + "backdropPath": "/9cusPHYQfwgI0fNbAhCjdngwBsb.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1995-03-21", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.295, + "voteCount": 122, + "popularity": 6.0968 + }, + { + "id": 82108, + "title": "Celebrity Family Feud", + "originalTitle": "Celebrity Family Feud", + "overview": "Celebrity Family Feud pits celebrities and their families against each other in a contest to name the most popular responses to survey-type questions posed to 100 people.", + "posterPath": "/s9rThMHuQGN0iTNO3Ya6DcV98ku.jpg", + "backdropPath": "/6GHSdoKKr8rua9FcGULbSABcrUv.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2015-06-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 39, + "popularity": 6.0965 + }, + { + "id": 112613, + "title": "Ranking of Kings", + "originalTitle": "王様ランキング", + "overview": "Unable to hear, speak, or wield a sword, Prince Bojji doesn’t seem like a typical heir to the throne—and his kingdom agrees. But his fateful encounter with Kage, a shadow on the ground, gives him his first true friend. The two set off on a grand adventure and, together, form a bond that can overcome any obstacle...even being king.", + "posterPath": "/ujMjMUi6z02uOfQEerEDC4rH6aG.jpg", + "backdropPath": "/xMNhuwiBF7lTsC5SL5aNM8qqtF0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2021-10-15", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.037, + "voteCount": 285, + "popularity": 6.0944 + }, + { + "id": 9262, + "title": "Pingu", + "originalTitle": "Pingu", + "overview": "Playful penguin Pingu lives with his family in Antarctica, where he often finds himself caught up in mischievous high jinks with his pal Robby.", + "posterPath": "/nLE7NR3EsEbv2NfG0bLIaOEhGfY.jpg", + "backdropPath": "/10UOUxOjmLCwGOvNXNaiIdWXav.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1986-05-28", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 154, + "popularity": 6.0932 + }, + { + "id": 74323, + "title": "Vampirina", + "originalTitle": "Vampirina", + "overview": "A young vampire girl faces the joys and trials of being the new kid in town when her family moves from Transylvania to Pennsylvania.", + "posterPath": "/18Mmri8vmBKbGbiymFPlSHlg71o.jpg", + "backdropPath": "/lXU4HMoNmrgPEO2meDmlv5kY8OG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "2017-10-01", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 37, + "popularity": 6.0859 + }, + { + "id": 45854, + "title": "Yu-Gi-Oh! Zexal", + "originalTitle": "遊☆戯☆王ZEXAL", + "overview": "When aspiring duelist Yuma meets Astral, a mysterious visitor from another universe, it seems like destiny. Yuma needs Astral to teach him how to duel, and Astral needs Yuma to help him regain his memories!", + "posterPath": "/lHOkQJs8oPvU5idZIcjzor7T4m3.jpg", + "backdropPath": "/8jgvqyz76ydAwLrntGn3jTaYr7S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2011-04-11", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 54, + "popularity": 6.0842 + }, + { + "id": 258025, + "title": "Head Over Heels", + "originalTitle": "견우와 선녀", + "overview": "A teenage shaman determined to change fate sets out to save a mysterious boy destined to die. As danger looms, their fated encounter sparks a powerful first love that defies darkness and reclaims hope.", + "posterPath": "/pwPK2DzhWp0W5SmiK2QmfmsfuNP.jpg", + "backdropPath": "/jpxN1QHRSG660Ql62EHZvZzeaCA.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2025-06-23", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.7, + "voteCount": 86, + "popularity": 6.0841 + }, + { + "id": 68295, + "title": "Ben 10", + "originalTitle": "Ben 10", + "overview": "With the fifth offshoot of the \"Ben 10\" franchise, the animated series returns to its roots and its original name, bringing 10-year-old Benjamin \"Ben\" Tennyson, his cousin Gwen, and Grandpa Max back to life on a new summer vacation journey. As in the original, the stories in the remake of the series also spin around an alien wristwatch called \"the Omnitrix,\" with the help of Ben can turn into ten different aliens, which come up with different supernatural powers. He fights enemy aliens and experiences with his grandfather and cousin the most exciting vacation imaginable.", + "posterPath": "/a4H0UR7aUkGZlT6Q9r9grBrjJWR.jpg", + "backdropPath": "/t1cHoPn9Igq4eKavtauVourdLFv.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-10-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 210, + "popularity": 6.081 + }, + { + "id": 79818, + "title": "Meteor Garden", + "originalTitle": "流星花园", + "overview": "An ordinary girl is admitted to the most prestigious school in the country where she encounters F4, an exclusive group comprised of the four wealthiest and handsomest boys in the school - Dao Mingsi, Hua Zelei, Xi Men and Mei Zuo.", + "posterPath": "/8yhIaFcLHBPppaeY1iu9GzHtaqf.jpg", + "backdropPath": "/omNNoERrtr7AzjxyUIk3NREa54b.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2018-07-09", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 8.5, + "voteCount": 598, + "popularity": 6.0797 + }, + { + "id": 20353, + "title": "Magical DoReMi", + "originalTitle": "おジャ魔女どれみ", + "overview": "Ojamajo Doremi, known as Magical DoReMi internationally, is a magical girl anime television series created by Toei Animation in 1999. It focuses on elementary school students who become witch apprentices. Led by Doremi Harukaze, the girls must maintain their double lives in secret.\n\nOjamajo Doremi has been followed up by three direct sequels, lasting until its end in 2003. During the television series' runtime, two companion films were released in theaters. The English dub, produced by 4Kids Entertainment, released a preview episode in the US airing on August 13, 2005, and the first episode on September 10, 2005.", + "posterPath": "/iCINo8JNXswWelsEycO1frahHS1.jpg", + "backdropPath": "/zJi8eaweBRbCjQU5C1HxucUCW6i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "1999-02-07", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 101, + "popularity": 6.0795 + }, + { + "id": 243117, + "title": "Plus belle la vie, encore plus belle", + "originalTitle": "Plus belle la vie, encore plus belle", + "overview": "", + "posterPath": "/ps0WuyL384MahVCxysxOfF1fhgq.jpg", + "backdropPath": "/3Jolb6Ky31IhEwyS8QhRykKo79J.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2024-01-08", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 5.7, + "voteCount": 12, + "popularity": 6.0772 + }, + { + "id": 198102, + "title": "Hijack", + "originalTitle": "Hijack", + "overview": "When Flight KA29 is hijacked during its seven-hour journey from Dubai to London, Sam Nelson—an accomplished corporate negotiator—tries using his professional skills to save everyone on board. Will this high-risk strategy be his undoing?", + "posterPath": "/szDEqqarPi3YqiPLevm7LObYrDJ.jpg", + "backdropPath": "/pcOLnrncuB9azJPiPqtuwukKbLL.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-06-28", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.669, + "voteCount": 648, + "popularity": 6.0772 + }, + { + "id": 223326, + "title": "Tempest", + "originalTitle": "북극성", + "overview": "Seo Munju, a highly accomplished diplomat and former ambassador to the United Nations, and Sanho, an international special agent shrouded in a veil of secrets, race to uncover the truth behind an attack that threatens the future stability of the Korean peninsula.", + "posterPath": "/5KmLPZkOLKNgdFxBsQUwlc8RBBD.jpg", + "backdropPath": "/wyCQovekJ10HnmqCE3lPNaoGDde.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-09-10", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.352, + "voteCount": 54, + "popularity": 6.0741 + }, + { + "id": 2902, + "title": "Queer As Folk", + "originalTitle": "Queer As Folk", + "overview": "Brash humor and genuine emotion make up this original series revolving around the lives, loves, ambitions, careers and friendships of a group of gay men and women living on Liberty Avenue in contemporary Pittsburgh, PA. The show offers an unapologetic look at modern, urban gay and lesbian lives while addressing the most critical health and political issues affecting the community. Sometimes racy, sometimes sensitive and always straight to the heart.", + "posterPath": "/mmhL30PonbrrpEOQH5OdyUguyMg.jpg", + "backdropPath": "/s9lofyAmjkLDcpkyMpyYjEfshj5.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2000-12-03", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 8.253, + "voteCount": 520, + "popularity": 6.0734 + }, + { + "id": 112211, + "title": "Platonic", + "originalTitle": "Platonic", + "overview": "A platonic pair of former best friends approaching midlife reconnect after a long rift. The duo’s friendship becomes more consuming—and destabilizes their lives in a hilarious way.", + "posterPath": "/7G8wB9CG82nITeFwRFIRSk0sQJs.jpg", + "backdropPath": "/aZerXLRyZMuGjQXI61f2CmSig7o.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-05-23", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.969, + "voteCount": 175, + "popularity": 6.0715 + }, + { + "id": 1749, + "title": "How It's Made", + "originalTitle": "How It's Made", + "overview": "Have you ever wondered how the products you use every day are made? How It's Made leads you through the process of how everyday products, such as apple juice, skateboards, engines, contact lenses, and many more objects are manufactured.", + "posterPath": "/jO3DKZyiEWQsEE6ji7IXwobDnl8.jpg", + "backdropPath": "/yCkgkwI20f4P5HJ0tJf4sjfw07q.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2001-01-06", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 158, + "popularity": 6.0692 + }, + { + "id": 62404, + "title": "The Next Step", + "originalTitle": "The Next Step", + "overview": "Follow the lives of an elite group of young dancers who train at The Next Step Studio.", + "posterPath": "/hfYqPc9uj0nPsIZoimwxbl7yjrS.jpg", + "backdropPath": "/jZSCLKbT9GfbNVyZcJrb49JYJH5.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2013-03-08", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 56, + "popularity": 6.0642 + }, + { + "id": 21502, + "title": "The Chase", + "originalTitle": "The Chase", + "overview": "The Chase isn’t just a quiz… it’s a race, where the players must ensure they stay one step ahead of ‘The Chaser’, a ruthless quiz genius determined to stop them winning at all costs.", + "posterPath": "/rPg5T51DAHn7tANKgOVtMG5JQdN.jpg", + "backdropPath": "/gzqOVv4s5IZEK61y2bckbgisJP3.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2009-06-29", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 26, + "popularity": 6.0635 + }, + { + "id": 1654, + "title": "The Sentinel", + "originalTitle": "The Sentinel", + "overview": "The Sentinel is a Canadian-produced television series. In the jungles of peru, the fight for survival heightened his senses. Now, Detective Jim Ellison is a sentinel in the fight for justice. Anthropologist Blair Sandburg works side by side with Jim, helping him develop these senses.", + "posterPath": "/cj1moyLJKpmvR0fR9AqsZuXYxAm.jpg", + "backdropPath": "/cpdXg5n9ysVf6C5S1AbTvnObKQk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "1996-03-20", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 65, + "popularity": 6.0599 + }, + { + "id": 58474, + "title": "Cosmos", + "originalTitle": "Cosmos", + "overview": "Famed astrophysicist Neil deGrasse Tyson provides clarity for the vision of the cosmos as he voyages across the universe with never-before-told stories that delve into the scientific concepts of the laws of gravity and the origins of space and time.", + "posterPath": "/5o07ps0QZ0bNoRYxTn9cPdRWlUu.jpg", + "backdropPath": "/2Nwbv0hrN8sThLvgooShcPqmFrO.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2014-03-09", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.487, + "voteCount": 1629, + "popularity": 6.0598 + }, + { + "id": 33, + "title": "What I Like About You", + "originalTitle": "What I Like About You", + "overview": "Valerie Tyler is a 28-year-old organization freak who loves her 16-year-old sister Holly. Even if Holly is rambunctious. Spontaneous. Impulsive. Disconcerting. And definitely disorganized. Then Holly moves in with Val, and the sisters discover they may make better siblings than roomies.", + "posterPath": "/zSBXCHUwMR3uCCeheTCeb6lzpEI.jpg", + "backdropPath": "/7Ls73KYosHXFYOmgUE6zSflRJpA.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2002-09-20", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.344, + "voteCount": 64, + "popularity": 6.0554 + }, + { + "id": 67460, + "title": "Yu-Gi-Oh! Arc-V", + "originalTitle": "遊☆戯☆王ARC-V", + "overview": "Yuya Sakaki's dream is to follow in his father's footsteps and become the greatest \"duel-tainer\" in history - and he just might pull it off when he suddenly discovers Pendulum Summoning, a never-before-seen technique that lets him summon many monsters at once!", + "posterPath": "/nVST01k1PpOZGbGEmCZhevRWhEL.jpg", + "backdropPath": "/pRejrAALzDQsrCm2nh7xa5cK4HA.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 40, + "popularity": 6.0544 + }, + { + "id": 1126, + "title": "Happy Tree Friends", + "originalTitle": "Happy Tree Friends", + "overview": "This action and adventure comedy is drawn in simple appearance and combines cute forest animals with extreme graphic violence. Each episode revolves around the characters enduring accidental events of bloodshed, pain, dismemberment and/or death.", + "posterPath": "/2rYqJg1OzaDlc5kiBK4IdgrELMf.jpg", + "backdropPath": "/2FiRbfbmXN2DSHAcuHRtv9QJwnD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-12-24", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 629, + "popularity": 6.0534 + }, + { + "id": 46930, + "title": "Ripper Street", + "originalTitle": "Ripper Street", + "overview": "A drama set in the East End of London in 1889, during the aftermath of the \"Ripper\" murders. The action centres around the notorious H Division – the police precinct from hell – which is charged with keeping order in the chaotic streets of Whitechapel. Ripper Street explores the lives of characters trying to recover from the Ripper's legacy, from crimes that have not only irretrievably altered their lives, but the very fabric of their city. At the drama's heart our detectives try to bring a little light into the dark world they inhabit.", + "posterPath": "/6w8yKYsA7RkuyauW224kBZQebFt.jpg", + "backdropPath": "/snSylVifJ29t7mxiIi5dxi6x2q2.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2012-12-30", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.432, + "voteCount": 184, + "popularity": 6.0528 + }, + { + "id": 2299, + "title": "Nick Cannon Presents: Wild 'N Out", + "originalTitle": "Nick Cannon Presents: Wild 'N Out", + "overview": "Nick Cannon and an A-list celebrity lead a team of improv comedians as they compete against each other.", + "posterPath": "/9I00u4M54u5tulUQT6qVFOZKMvt.jpg", + "backdropPath": "/desDFpjZHiBc4ENHIPs3NLWctWS.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-07-28", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.06, + "voteCount": 67, + "popularity": 6.0522 + }, + { + "id": 13881, + "title": "The Invaders", + "originalTitle": "The Invaders", + "overview": "The Invaders, alien beings from a dying planet. Their destination: the Earth. Their purpose: to make it their world. David Vincent has seen them, for him it began one lost night on a lonely country road, looking for a shortcut that he never found. It began with a closed deserted diner, and a man too long without sleep to continue his journey. It began with the landing of a craft from another galaxy. Now, David Vincent knows that the Invaders are here, that they have taken human form. Somehow he must convince a disbelieving world that the nightmare has already begun.", + "posterPath": "/70iC5ma4zYnMpvJvg2u4rvPtUI9.jpg", + "backdropPath": "/p28CNA5SVW3tF1A6RnEUyyJ0L0j.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1967-01-10", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 58, + "popularity": 6.0466 + }, + { + "id": 50846, + "title": "Rake", + "originalTitle": "Rake", + "overview": "Keegan Deane's staggering lack of discretion and inability to self-censor land him the law cases that nobody else will touch. He always tries to do the right thing, but at the same time struggles to save himself from the many self-destructive elements that plague his own life, including women and gambling.", + "posterPath": "/5AdpBaq4nyKZclDrn9o4h7F15hP.jpg", + "backdropPath": "/hvYSliOoNPqwshl6Y5MrCGIfN1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2014-01-23", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5.167, + "voteCount": 30, + "popularity": 6.0434 + }, + { + "id": 31934, + "title": "Solsidan", + "originalTitle": "Solsidan", + "overview": "The series is named after a small part of Saltsjöbaden called Solsidan. It revolves around Alex and Anna who are expecting their first child and have just moved to Alex's childhood home in Saltsjöbaden, Stockholm County. Alex tries to get Anna to enjoy herself, and at the same time spend time with his childhood friend Fredde.", + "posterPath": "/aDTeUiIXqLeV82OFVkNGaUfS3GN.jpg", + "backdropPath": "/pwZ2aNxsWacA1C8NdNoTmyEy32K.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "2010-01-29", + "releaseYear": "2010", + "originalLanguage": "sv", + "voteAverage": 7.038, + "voteCount": 39, + "popularity": 6.04 + }, + { + "id": 67482, + "title": "RuPaul's Drag Race All Stars", + "originalTitle": "RuPaul's Drag Race All Stars", + "overview": "The most celebrated competitors from RuPaul's Drag Race vie for a second chance to enter Drag Race herstory. This drag queen showdown is filled with plenty of heated competition, lip-syncing for the legacy, and, of course, the All-Stars Snatch Game.", + "posterPath": "/ArIu3xEo28LiKtiVWHNZdPFNZrM.jpg", + "backdropPath": "/emIR7nopXFsQILeBAFl49HJFoRq.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2012-10-22", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 121, + "popularity": 6.0306 + }, + { + "id": 93816, + "title": "Great Pretender", + "originalTitle": "GREAT PRETENDER", + "overview": "Supposedly Japan's greatest swindler, Makoto Edamura gets more than he bargained for when he tries to con Laurent Thierry, a real world-class crook.", + "posterPath": "/Ang6RR0n5a49lEsKRqQrmGyDekF.jpg", + "backdropPath": "/am5RPNJ2msb91Uza8wIIxWbjTKp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2020-07-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 127, + "popularity": 6.0238 + }, + { + "id": 2191, + "title": "One Day at a Time", + "originalTitle": "One Day at a Time", + "overview": "The misadventures of a divorced mother, two teenage daughters, and new building superintendent in Indianapolis.", + "posterPath": "/zheJWmmDRUYuApz83ZVrrPUjL2F.jpg", + "backdropPath": "/kqIj29llhYSUu4xtJcJ1RAhUqDd.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1975-12-16", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 60, + "popularity": 6.0235 + }, + { + "id": 2041, + "title": "McLeod's Daughters", + "originalTitle": "McLeod's Daughters", + "overview": "When Jack McLeod passes away, his two daughters inherit Drovers Run, a vast cattle ranch in the Australian outback. Ultimately, Tess and Claire decide to run the ranch together, with their housekeeper, Meg, her teenage daughter, Jodi, and a local girl, Becky. Their lives are hard and the obstacles many, but the rewards are every bit as grand as the wild open land they've inherited.", + "posterPath": "/twQwGmxL6XFdpSBikzINOdVm17M.jpg", + "backdropPath": "/28Ah9fVlwmT81cIbgJAtOkeHlHM.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2001-08-08", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 55, + "popularity": 6.0221 + }, + { + "id": 7967, + "title": "The Rachel Maddow Show", + "originalTitle": "The Rachel Maddow Show", + "overview": "The Rachel Maddow Show is a daily news and opinion television program that airs on MSNBC, running in the 9:00 pm ET timeslot. It is hosted by Rachel Maddow, who gained popularity with her frequent appearances as a liberal pundit on various MSNBC programs. It is based on her former radio show of the same name. The show debuted on September 8, 2008.", + "posterPath": "/oYHo9nWuF7P2eIfU2y1Zg69IJJ.jpg", + "backdropPath": "/5eNol5YJq6ltNfrTR5PzQkzjNBF.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 10767 + ], + "genres": [ + "News", + "Talk" + ], + "releaseDate": "2008-09-08", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 30, + "popularity": 6.0202 + }, + { + "id": 103913, + "title": "Tehran", + "originalTitle": "טהרן", + "overview": "Tamar is a Mossad hacker-agent who infiltrates Tehran under a false identity to help destroy Iran's nuclear reactor. But when her mission fails, Tamar must plan an operation that will place everyone dear to her in jeopardy.", + "posterPath": "/pXV1fcIQIbpTNYRJ47rfUvG6hq4.jpg", + "backdropPath": "/n1KezePqzeY5449V9HppWek2tpO.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-06-22", + "releaseYear": "2020", + "originalLanguage": "he", + "voteAverage": 7.509, + "voteCount": 290, + "popularity": 6.0187 + }, + { + "id": 46994, + "title": "Slugterra", + "originalTitle": "Slugterra", + "overview": "Following his father's death, 15-year-old Eli Shane embraces his destiny to follow in his dad's footsteps to a secret, subterranean world called Slugterra where he is determined to be the greatest Slugslinging hero of them all!", + "posterPath": "/hbAHSGKr0aJStev8w5ebWWZboh1.jpg", + "backdropPath": "/jb2GmlAALi4t8ugNFDuz12HF89w.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2012-10-15", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 876, + "popularity": 6.0181 + }, + { + "id": 80623, + "title": "BAKI", + "originalTitle": "バキ", + "overview": "While martial arts champion Baki Hanma trains hard to surpass his legendary father, five violent death row inmates descend upon Tokyo to take him on.", + "posterPath": "/j4bL0G8h8k49MuXKYfZqhXqk2rI.jpg", + "backdropPath": "/qbxoEhlxNcyr7GjG2SXTShWn32m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2018-06-26", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.101, + "voteCount": 1344, + "popularity": 6.0105 + }, + { + "id": 89247, + "title": "Batwoman", + "originalTitle": "Batwoman", + "overview": "Kate Kane, armed with a passion for social justice and a flair for speaking her mind, soars onto the streets of Gotham as Batwoman, an out lesbian and highly trained street fighter primed to snuff out the failing city's criminal resurgence. But don't call her a hero yet. In a city desperate for a savior, Kate must overcome her own demons before embracing the call to be Gotham's symbol of hope", + "posterPath": "/pBpxKiitMuYXvtsXNSzya8DKKzV.jpg", + "backdropPath": "/8vNQ3i2Xa3mrCKn6eq2ce5hhegT.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-10-06", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 1554, + "popularity": 6.0077 + }, + { + "id": 46518, + "title": "Masters of the Air", + "originalTitle": "Masters of the Air", + "overview": "During World War II, airmen risk their lives with the 100th Bomb Group, a brotherhood forged by courage, loss, and triumph.", + "posterPath": "/rSAmgcoA74371rplbqM27yVsd3y.jpg", + "backdropPath": "/6snBXmgkscLEJQmxx46qEIlqYlB.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2024-01-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.77, + "voteCount": 518, + "popularity": 6.0077 + }, + { + "id": 83936, + "title": "Das Boot", + "originalTitle": "Das Boot", + "overview": "An inexperienced U-boat crew has to survive a secret mission and a young German woman is torn between loyalty for her home country and the French resistance in the WWII drama.", + "posterPath": "/pIWOJV7NAfJJ7B9ocV66zT2X5pu.jpg", + "backdropPath": "/fO7130S6aBRzZvu5ty9ZUZbrU04.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18 + ], + "genres": [ + "War & Politics", + "Drama" + ], + "releaseDate": "2018-11-23", + "releaseYear": "2018", + "originalLanguage": "de", + "voteAverage": 6.9, + "voteCount": 142, + "popularity": 6.0032 + }, + { + "id": 80054, + "title": "Truth Be Told", + "originalTitle": "Truth Be Told", + "overview": "Descend into the world of true-crime podcasts with Poppy Parnell, who risks everything—including her life—to pursue truth and justice.", + "posterPath": "/3T2TJ61ems7ArVGwb6kiVuKcdUk.jpg", + "backdropPath": "/cXjRGoYFAFkwPzhOZXFARPuYQ00.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2019-12-06", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 210, + "popularity": 6.0022 + }, + { + "id": 38603, + "title": "Beelzebub", + "originalTitle": "べるぜバブ", + "overview": "Violent delinquent Oga encounters a baby one day, which crawls onto his back and immediately forms an attachment to him. Though he doesn't know it yet, this baby is named Kaiser de Emperana Beelzebub IV, or \"Baby Beel\" for short—the son of the Demon Lord!", + "posterPath": "/41QZ3NTTBY3nZcGrkIL1fXbDFBK.jpg", + "backdropPath": "/3Z57uXxFEANAXQTukXmzJYnHc7F.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2011-01-09", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 263, + "popularity": 6.0004 + }, + { + "id": 11982, + "title": "Max and Ruby", + "originalTitle": "Max and Ruby", + "overview": "Meet two funny bunny siblings, the energetic and mischievous Max, and the patient, smart and goal-oriented Ruby. The show models empowering messages by showing Max and Ruby playing together and resolving their differences respectfully and supportively.", + "posterPath": "/bIiWnjewlhINR1bv1sRfBiIEn9a.jpg", + "backdropPath": "/aw2xXYfQD9qh92PJ36Ii9FfSnPn.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16 + ], + "genres": [ + "Kids", + "Animation" + ], + "releaseDate": "2002-05-03", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 41, + "popularity": 5.9977 + }, + { + "id": 3090, + "title": "Little Einsteins", + "originalTitle": "Little Einsteins", + "overview": "A group of musically gifted and ethnically diverse children travel around the world in an artificially intelligent rocket named Rocket.", + "posterPath": "/gUT7dmvmmjfofgeCL2IShaRs2dz.jpg", + "backdropPath": "/7PASkiQ1H5nik9PSerbmU7b4MiJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2005-10-09", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 65, + "popularity": 5.9927 + }, + { + "id": 202308, + "title": "Alert: Missing Persons Unit", + "originalTitle": "Alert: Missing Persons Unit", + "overview": "When police officer Nikki Batista’s son goes missing, she joins the Philadelphia Police Department's Missing Person’s Unit (MPU) to help other people find their loved ones, even as she searches for her own. Six years later, her world is turned upside-down when her ex-husband, Jason Grant, a former police officer, shows up with a proof-of-life photo of their missing boy. Or is it?", + "posterPath": "/lLRC3GSYiFVHsxgc9tvmR6WjcOu.jpg", + "backdropPath": "/wge5FrHo6GLb4RpP9Ud1VvjEQap.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2023-01-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.569, + "voteCount": 66, + "popularity": 5.9915 + }, + { + "id": 83962, + "title": "CAROLE & TUESDAY", + "originalTitle": "キャロル&チューズデイ", + "overview": "Part-timer Carole meets rich girl Tuesday, and each realizes they've found the musical partner they need. Together, they just might make it.", + "posterPath": "/1NtxJItCNV9B36FpttUumGvdzSG.jpg", + "backdropPath": "/kCQXUzThgvRtoyFNdjwXBH21a9r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-04-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 78, + "popularity": 5.9914 + }, + { + "id": 40064, + "title": "Black Dynamite", + "originalTitle": "Black Dynamite", + "overview": "Black Dynamite is an American animated television series based on the 2009 film of the same name, although the series follows a separate continuity, with some back-references to the film. The series was announced shortly after the release of the film, the 10-minute pilot episode was released on Adult Swim Video on August 8, 2011, and the full series premiered on Cartoon Network's late night programming block, Adult Swim, on July 15, 2012. Michael Jai White, Byron Minns, Tommy Davidson and Kym Whitley reprise their film roles as Black Dynamite, Bullhorn, Cream Corn and Honeybee, respectively.", + "posterPath": "/wgQNwVqBZ7j9MZSG6Nr5n5Z2ZPr.jpg", + "backdropPath": "/fyborNmaXj3CujrDmcm6tcOzoUZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2012-07-15", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.589, + "voteCount": 56, + "popularity": 5.9911 + }, + { + "id": 71578, + "title": "Atypical", + "originalTitle": "Atypical", + "overview": "Sam, an 18-year-old on the autism spectrum, takes a funny, yet painful, journey of self-discovery for love and independence and upends his family.", + "posterPath": "/kNif3eZAjQ7qU3Ol9E7zo0kjPMo.jpg", + "backdropPath": "/1VSwy48zZE5EchorC3ra1entcj6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2017-08-11", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 1170, + "popularity": 5.988 + }, + { + "id": 90461, + "title": "Monsters at Work", + "originalTitle": "Monsters at Work", + "overview": "Ever since he was a kid, Tylor Tuskmon has dreamed of becoming a Scarer just like his idol James P. Sullivan, and now that dream is about to come true... or not. The day he arrives at Monsters Incorporated to begin his dream job as a Scarer, he learns that scaring is out and laughter is in! After being reassigned to the Monsters, Inc. Facilities Team, Tylor sets his sights on a new goal: figuring out how to be funny and becoming a Jokester.", + "posterPath": "/2gxgwhcuSmI5xtexb0t9zGj43FS.jpg", + "backdropPath": "/2O3ZRECju00Jod6LrVB3uRgZMXK.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 16 + ], + "genres": [ + "Family", + "Comedy", + "Animation" + ], + "releaseDate": "2021-07-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 1395, + "popularity": 5.9873 + }, + { + "id": 1242, + "title": "Greek", + "originalTitle": "Greek", + "overview": "Casey Cartwright is poised to become the most powerful girl in the Greek system. Rusty, her little brother, is new on campus and he's the geek. But he sees Cyprus-Rhodes University as an opportunity to create a whole new identity.", + "posterPath": "/rACiWmSFI4Js0ZGI4Q0P5LJ895R.jpg", + "backdropPath": "/ijfWr8enbRzohBzQIhrv3jy5mI8.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2007-07-09", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 118, + "popularity": 5.9807 + }, + { + "id": 79611, + "title": "Charmed", + "originalTitle": "Charmed", + "overview": "Set in the fictional college town of Hilltowne, Charmed follows the lives of three sisters, Macy, Mel and Maggie Vera who, after the tragic death of their mother, discover they are three of the most powerful witches of all time.", + "posterPath": "/doXHjfOtEmX8kEq1tsMnNqq9YLZ.jpg", + "backdropPath": "/6n5Si0RkYehKfPaDfg1p4besZqa.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-14", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 473, + "popularity": 5.9777 + }, + { + "id": 71663, + "title": "Black Lightning", + "originalTitle": "Black Lightning", + "overview": "Jefferson Pierce is a man wrestling with a secret. As the father of two daughters and principal of a charter high school that also serves as a safe haven for young people in a New Orleans neighborhood overrun by gang violence, he is a hero to his community.", + "posterPath": "/h1xbvvO6oqchfLe6xh0yLNnQxeM.jpg", + "backdropPath": "/kv0vCJOoGyWQdDPK9vFnyvqqDHt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-01-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 915, + "popularity": 5.9765 + }, + { + "id": 63549, + "title": "Love for Rent", + "originalTitle": "Kiralık Aşk", + "overview": "When Defne's brother gets into debt and is held captive, Defne is forced to accept an offer in exchange for the money. She has to make Ömer, a wealthy shoe designer who owns a company, fall in love with her and marry her.", + "posterPath": "/xuarVMbyxXFRpuVScZadhjNtkBn.jpg", + "backdropPath": "/7l7K63FeW6iUTJZPa6ips71OWDn.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-06-19", + "releaseYear": "2015", + "originalLanguage": "tr", + "voteAverage": 7.5, + "voteCount": 64, + "popularity": 5.9761 + }, + { + "id": 198109, + "title": "Disney Gallery / Star Wars: The Book of Boba Fett", + "originalTitle": "Disney Gallery / Star Wars: The Book of Boba Fett", + "overview": "Explore the behind-the-scenes story of the legendary bounty hunter’s return to the sands of Tatooine with mercenary Fennec Shand, who together seek to claim the territory and crime syndicate once run by the late Jabba the Hutt. In this insightful new special, filmmakers, cast and crew reveal never-before-seen footage, groundbreaking technology and the practical effects that brought it all to life.", + "posterPath": "/pfoGiDAStk1T8Dhj3lO3LbBoDTO.jpg", + "backdropPath": "/tfDjFwNCiUDeRDmUfwP5DFLFLSM.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2022-05-04", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 5.972, + "voteCount": 18, + "popularity": 5.9723 + }, + { + "id": 9410, + "title": "Basilisk", + "originalTitle": "バジリスク甲賀忍法帖", + "overview": "The story takes place in the year 1614. Two ninja clans, Tsubagakure of the Iga and Manjidani of Kouga, battle each other to determine which grandson of Tokugawa Ieyasu will become the next shogun. The deadly competition between 10 elite ninja from each clan unleashes a centuries-old hatred that threatens to destroy all hope for peace between them.", + "posterPath": "/oqLJUgkLjL7FK3NdSpnG7NZHPva.jpg", + "backdropPath": "/4rqrdFjoNcR1xaR7AoqibHFrRQF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 10765 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-12", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 98, + "popularity": 5.9717 + }, + { + "id": 3527, + "title": "My Friends Tigger & Pooh", + "originalTitle": "My Friends Tigger & Pooh", + "overview": "Pooh, Tigger, and friends from the Hundred Acre Wood welcome new neighbors — an adorable six-year-old girl named Darby and her puppy, Buster. With the help of adventurous super sleuths Tigger and Pooh, every episode revolves around the solving of a mystery and an interactive curriculum that encourages viewers to help them out.", + "posterPath": "/pjFdWwr36A5ZO8K5W5NuPRS7Bil.jpg", + "backdropPath": "/lJchILydAqRPxmUeqPhVKPDrGaM.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 18, + 9648, + 10759 + ], + "genres": [ + "Kids", + "Animation", + "Drama", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2007-05-12", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 24, + "popularity": 5.97 + }, + { + "id": 90816, + "title": "All the Way Up", + "originalTitle": "Validé", + "overview": "A talented young rapper, supported by his two childhood friends, finds himself overnight \"validated\" by one of the stars in the business. Only, this alliance quickly turns into a dangerous rivalry ...", + "posterPath": "/1W7cUndFL49GTzHKMcTBhhFu9ST.jpg", + "backdropPath": "/6ECck97vNBCNr01eRJHShYNENQQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-03-20", + "releaseYear": "2020", + "originalLanguage": "fr", + "voteAverage": 6.438, + "voteCount": 40, + "popularity": 5.9692 + }, + { + "id": 68845, + "title": "As the Saying Goes", + "originalTitle": "Como dice el dicho", + "overview": "Dramatization of real-life situations and stories that are related to popular sayings, by Don Tomas.", + "posterPath": "/3aTQY3hxqds0bEjz12G6vWE8fsQ.jpg", + "backdropPath": "/gIAkdKXhriSQJROGVPcoC65POWN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2011-02-01", + "releaseYear": "2011", + "originalLanguage": "es", + "voteAverage": 7.2, + "voteCount": 10, + "popularity": 5.9692 + }, + { + "id": 1487, + "title": "Static Shock", + "originalTitle": "Static Shock", + "overview": "An ordinary inner-city kid gains extraordinary powers and becomes an urban legend as the first teenage African-American superhero.", + "posterPath": "/c4bMyE2SZv9B6rS0Anvlwej14R1.jpg", + "backdropPath": "/oYeWPNV0QZri8eRNmyRTeC57ijx.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2000-09-23", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 215, + "popularity": 5.9691 + }, + { + "id": 127633, + "title": "Mickey Mouse Funhouse", + "originalTitle": "Mickey Mouse Funhouse", + "overview": "Mickey Mouse, and his friends – Minnie, Goofy, Donald, Daisy and Pluto – to Funny, an enchanted talking playhouse, who takes the Sensational Six on adventures of all types to unique worlds that inspire the imagination.", + "posterPath": "/7NCVaHkcTLfG6pMoLOa6SKsbKtQ.jpg", + "backdropPath": "/hxqHRGVwpqn8p0rZqn31IZEupIc.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16 + ], + "genres": [ + "Kids", + "Animation" + ], + "releaseDate": "2021-08-20", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 5.9663 + }, + { + "id": 138502, + "title": "X-Men '97", + "originalTitle": "X-Men '97", + "overview": "The X-Men, a band of mutants who use their uncanny gifts to protect a world that hates and fears them, are challenged like never before, forced to face a dangerous and unexpected new future.", + "posterPath": "/9Ycz7yYRf9V4jk3YXwcZhFtbNcF.jpg", + "backdropPath": "/iDnTAeR2WNA62XQG0ivtteDSjd5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-03-20", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 593, + "popularity": 5.9622 + }, + { + "id": 69309, + "title": "Ransom", + "originalTitle": "Ransom", + "overview": "Eric Beaumont's crisis negotiator team is brought in to save lives and resolve the most difficult kidnap and ransom cases when no one else can.", + "posterPath": "/389wvOhuBHYX5TdQNCh1uQ2Ia3d.jpg", + "backdropPath": "/fRJD9SVaXxDz3dipgn6UzATuKjj.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-01-01", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.484, + "voteCount": 93, + "popularity": 5.9563 + }, + { + "id": 59375, + "title": "Liv and Maddie", + "originalTitle": "Liv and Maddie", + "overview": "The exploits of identical twins Liv, a former television star back home in Wisconsin and in the process of adding movie star to her credits, as well as beginning to focus on her music career, and Maddie, an outstanding student and basketball phenomenon recovering from an injured knee. The series centers on the unbreakable bond the twins share though they have wildly different personalities. To complicate their teenage lives, both parents work at their high school and their younger brothers are always stirring up trouble.", + "posterPath": "/j5iGTENbOfCHjZJ6cCrhBVdxER5.jpg", + "backdropPath": "/qeVvoP9ZggSD14zIIrNWxteNzYb.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "2013-07-19", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 396, + "popularity": 5.9554 + }, + { + "id": 72748, + "title": "Strike", + "originalTitle": "Strike", + "overview": "A war veteran turned private detective operates out of a tiny office in London’s Denmark Street. Although wounded both physically and psychologically, his unique insight and background as a military police investigator prove crucial in solving complex crimes that have baffled the police. Based on the bestselling novels written by J.K. Rowling under the pseudonym Robert Galbraith.", + "posterPath": "/oPTJfwuMLz6Lr3suGK4584MAJAC.jpg", + "backdropPath": "/x9yqsGeZjqmlCh5qVfhmFPp2kcH.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2017-08-27", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.183, + "voteCount": 227, + "popularity": 5.9535 + }, + { + "id": 242436, + "title": "The Art of Joy", + "originalTitle": "L'arte della gioia", + "overview": "Born on the 1st of January 1900 in a poor family in rural Sicily, Modesta pursues happiness since her childhood without falling victim to the constraints of society. After a tragic event that takes her away from her family, Modesta is welcomed into a monastery, where she becomes the Mother Superior’s protégé thanks to her intelligence and stubbornness. Later, she arrives at the villa belonging to the Princess of Brandiforti, where she makes herself indispensable. This relentless process of emancipation goes along with a journey of personal growth and sexual awakening, which lead her to discover and claim the right to pleasure and happiness.", + "posterPath": "/iK7Sg8lYc9oJaCoDGVDV41FYCE8.jpg", + "backdropPath": "/3yGa40zYReC11yjkBW5E618VRCy.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-05-30", + "releaseYear": "2024", + "originalLanguage": "it", + "voteAverage": 7.482, + "voteCount": 28, + "popularity": 5.9513 + }, + { + "id": 71915, + "title": "Good Omens", + "originalTitle": "Good Omens", + "overview": "Aziraphale, an angel, and Crowley, a demon, join forces in order to prevent Armageddon. They attempt to raise the Antichrist in a balanced and human way, but are they focusing their efforts in the right direction?", + "posterPath": "/omgCpyBV5sUT8AkeIcEwdPPgKZC.jpg", + "backdropPath": "/4YIQAV5R2iGY8fGPNsbe77gUu4.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2019-05-31", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 2174, + "popularity": 5.9511 + }, + { + "id": 45502, + "title": "Queen's Blade", + "originalTitle": "クイーンズブレイド", + "overview": "Every few years, beautiful female warriors from across the land compete in the Queen's Blade Tournament to become the ruler of the land. It's a series that loves violence as much as it hates clothes and complicated plots.", + "posterPath": "/jtJYpBrN2mOCjSZSTJm1GVogUh8.jpg", + "backdropPath": "/gIM0WQ0mxyxJJzu4BfgRx2DbJ09.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 36, + "popularity": 5.951 + }, + { + "id": 31390, + "title": "A doctor in the family", + "originalTitle": "Un medico in famiglia", + "overview": "The adventures of the unpredictable Martini family led by the tireless Grandpa Libero.", + "posterPath": "/4nRaX8FWX2ZtFYKhNRFvss3g24.jpg", + "backdropPath": "/5Pbz2PI4BETeEpxE4ikrL2zCpGw.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1998-12-06", + "releaseYear": "1998", + "originalLanguage": "it", + "voteAverage": 7.6, + "voteCount": 29, + "popularity": 5.9497 + }, + { + "id": 35279, + "title": "Austin & Ally", + "originalTitle": "Austin & Ally", + "overview": "A comedy about the unique relationship between a young songwriter, Ally Dawson, and Austin Moon, the overnight internet sensation who gains sudden notoriety after performing one of Ally's songs. Austin and Ally struggle with how to maintain and capitalize on Austin's newfound fame. Austin is more of a rebel type who doesn't follow the rules and is somewhat immature for his age, while Ally is conservative yet self-conscious.", + "posterPath": "/wk81zTtu5yNM6ohgMpVrNvzJp3B.jpg", + "backdropPath": "/eR4bBMJOoSdb9CtiDtp8axHqP7I.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 18 + ], + "genres": [ + "Comedy", + "Kids", + "Drama" + ], + "releaseDate": "2011-12-02", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.831, + "voteCount": 210, + "popularity": 5.9495 + }, + { + "id": 93014, + "title": "Zhuki", + "originalTitle": "Жуки", + "overview": "", + "posterPath": "/e02i7zHJEpAgVKBt9Uc4HG1CCDe.jpg", + "backdropPath": "/mddEdxLhrEjJl8zWFmkaI7qEVs9.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-09-02", + "releaseYear": "2019", + "originalLanguage": "ru", + "voteAverage": 8.6, + "voteCount": 49, + "popularity": 5.9474 + }, + { + "id": 1448, + "title": "thirtysomething", + "originalTitle": "thirtysomething", + "overview": "Thirtysomething is an American television drama about a group of baby boomers in their late thirties. It was created by Marshall Herskovitz and Edward Zwick for MGM/UA Television Group and The Bedford Falls Company, and aired on ABC. It premiered in the U.S. on September 29, 1987. It lasted four seasons, with the last of its 85 episodes airing on May 28, 1991.\n\nThe title of the show was designed as thirtysomething by Kathie Broyles, who combined the words of the original title, Thirty Something.\n\nIn 1997, \"The Go Between\" and \"Samurai Ad Man\" were ranked #22 on TV Guide′s 100 Greatest Episodes of All Time.\n\nIn 2002, Thirtysomething was ranked #19 on TV Guide′s 50 Greatest TV Shows of All Time, and in 2013 TV Guide ranked it #10 in its list of The 60 Greatest Dramas of All Time.", + "posterPath": "/gC4CW183RUTvOg5nkLfOnERJ5ov.jpg", + "backdropPath": "/oGfKIjC8MVHLxoaPFLFoFXG5Wy4.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1987-09-29", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.071, + "voteCount": 28, + "popularity": 5.9446 + }, + { + "id": 36250, + "title": "xxxHOLiC", + "originalTitle": "XXX ホリック", + "overview": "Kimihiro Watanuki is a high school student plagued by ayakashi spirits, both of which are invisible to everyone else but him. The series begins when Watanuki stumbles, seemingly by chance, into a shop that grants wishes. The shop is owned by Yūko Ichihara, a mysterious witch of many names and esoteric renown. For a price, she offers to grant Watanuki's wish to be rid of the spirits. The price, according to Yūko, must be of equal value; so, as payment, he must become Yūko's temporary, part-time cook and housekeeper.", + "posterPath": "/5yY74hwLcG5rQSe6cEUW3HjO3J9.jpg", + "backdropPath": "/93Zwr1UckwikK8ZAcL9KmxKhszu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-06", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 791, + "popularity": 5.9441 + }, + { + "id": 243006, + "title": "NCIS: Origins", + "originalTitle": "NCIS: Origins", + "overview": "In 1991, years prior to the events of NCIS, Leroy Jethro Gibbs starts his career as a newly minted special agent at the fledgling NCIS Camp Pendleton office, where he forges his place on a gritty, ragtag team led by NCIS legend Mike Franks.", + "posterPath": "/waWeC84DExojP5AHFbWaybj3wxv.jpg", + "backdropPath": "/mcAQ6fiayjgq7SMTCoAo40UwKA2.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2024-10-14", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.559, + "voteCount": 51, + "popularity": 5.9431 + }, + { + "id": 245703, + "title": "Dept. Q", + "originalTitle": "Dept. Q", + "overview": "A brash but brilliant cop becomes head of a new police department, where he leads an unlikely team of misfits in solving Edinburgh's cold cases.", + "posterPath": "/h60alybJNgGGfPUbGGUXMXOoFvB.jpg", + "backdropPath": "/9AJVsScC6M81MmGZTnxghN9NZe9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-05-29", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.98, + "voteCount": 295, + "popularity": 5.9425 + }, + { + "id": 64230, + "title": "Preacher", + "originalTitle": "Preacher", + "overview": "A preacher sets out on a mission to make the almighty himself confess his sin of abandoning the world. With his best friend Cassidy, an alcoholic Irish vampire, his love Tulip, a red blooded gun towing Texan, and the power of genesis, an unholy child born from an angel and a devil, Jesse gives up everything to set the world straight with its creator.", + "posterPath": "/ey1WQajA25E5sFGHSApcqSWUSEc.jpg", + "backdropPath": "/bENaaAmX4d0zUYYrZyFCT1U0V86.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2016-05-22", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1242, + "popularity": 5.94 + }, + { + "id": 280110, + "title": "My Hero Academia: Vigilantes", + "originalTitle": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "overview": "After a life-changing incident, timid college student Koichi Haimawari accepts an offer from revered vigilante Knuckleduster to train as his protégé.", + "posterPath": "/iv0cXt6uJGlTryWZNQMGyum4Pme.jpg", + "backdropPath": "/baZ0pGbBGjCBhIqsFyOSTpJyUnQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 61, + "popularity": 5.9375 + }, + { + "id": 205082, + "title": "Vigilante", + "originalTitle": "비질란테", + "overview": "Kim Ji-yong leads a double life as a Korean National Police University student by day and the Vigilante by night, personally punishing criminals who evade the law. He is surrounded by people who all possess different ulterior motives.", + "posterPath": "/lauvBkCZhcZHj5uUwUxwr5GTPps.jpg", + "backdropPath": "/daGuh4UzHFF8sSHrYHMw0mb2qBt.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759, + 18 + ], + "genres": [ + "Crime", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-11-08", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.398, + "voteCount": 83, + "popularity": 5.9358 + }, + { + "id": 88989, + "title": "Nine Perfect Strangers", + "originalTitle": "Nine Perfect Strangers", + "overview": "At a boutique health-and-wellness resort that promises healing and transformation, nine stressed city dwellers try to get on a path to a better way of living. Watching over them during this 10-day retreat is the resort's director, Masha, a woman on a mission to reinvigorate their tired minds and bodies. However, these nine \"perfect\" strangers have no idea what is about to hit them.", + "posterPath": "/oPcqsZIFHrv7HoGgFQnsGDiPulD.jpg", + "backdropPath": "/RzCw9LQyAcoa9mn4xkEAyuvhgr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2021-08-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 554, + "popularity": 5.935 + }, + { + "id": 94947, + "title": "The Territory", + "originalTitle": "Полярный", + "overview": "Victor Gromov, once a legend of Moscow’s criminal underworld known under the nickname “Butcher”, has since retired and now spends his days enjoying life on his farm. One day, Victor’s former “colleagues” show up and tell him that he must store the mafia’s common fund in his offshore bank account. Victor has no choice but to help them. Several months later, on the day when he is supposed to give the money back, Victor gets hit on the head by a falling billboard. As a result, he forgets the password to his bank account. Fleeing for his life from his former cronies, Victor decides to hide in a freight train’s boxcar but ends up getting locked inside. The train departs, and several days later he finds himself thousands of kilometers away from Moscow, in a small northern town called Polyarny, which, as it turns out, is not so easy to get out of...", + "posterPath": "/prGGalRL6dGOaiEf0Vd1AJfyXdu.jpg", + "backdropPath": "/pt2ltH6Sk7fxMnpAheyfaADn1yA.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-10-28", + "releaseYear": "2019", + "originalLanguage": "ru", + "voteAverage": 8.7, + "voteCount": 44, + "popularity": 5.9341 + }, + { + "id": 29, + "title": "Mary Hartman, Mary Hartman", + "originalTitle": "Mary Hartman, Mary Hartman", + "overview": "In the fictional town of Fernwood, Ohio, suburban housewife Mary Hartman seeks the kind of domestic perfection promised by Reader’s Digest and TV commercials. Instead she finds herself suffering the slings and arrows of outrageous fortune: mass murders, low-flying airplanes and waxy yellow buildup on her kitchen floor.", + "posterPath": "/O1bcYEBW8v7JOMNVpYOBTL6PjL.jpg", + "backdropPath": "/x8fMHWgeamkxxobagD7GOwcG3YH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766, + 35 + ], + "genres": [ + "Drama", + "Soap", + "Comedy" + ], + "releaseDate": "1976-01-05", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 17, + "popularity": 5.9334 + }, + { + "id": 66292, + "title": "Big Little Lies", + "originalTitle": "Big Little Lies", + "overview": "The tale of three mothers of first graders whose apparently perfect lives unravel to the point of murder.", + "posterPath": "/b4HNJOc2N6SGyEhf2RagdpAKBK6.jpg", + "backdropPath": "/8Wo2Pqjxn7Xmd7p2dxRMIJtyMV7.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-02-19", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.892, + "voteCount": 1611, + "popularity": 5.9311 + }, + { + "id": 100937, + "title": "Crazy Over His Fingers: Just the Two of Us in a Salon After Closing", + "originalTitle": "俺の指で乱れろ。~閉店後二人きりのサロンで...~", + "overview": "Fumi works as an assistant at a popular salon in the city and is aiming to become a hairdresser. She receives strict guidance from Sousuke, the salon's charismatic hairdresser and manager. Every time he touches Fumi, she becomes agitated. One day after the salon closed, Fumi stands in as Sousuke's practice partner at the shampoo station. As he touches her and sprinkles her with water, she becomes angry again! Or so the thought...could she actually be attracted to him? Sousuke flashes an evil smile as he senses Fumi's heart, and his fingertips start to stroke every corner of her body...Fumi cannot refuse his fingers anymore.", + "posterPath": "/hlk5xhZw5uSBJvpJD3xbX2k6BhA.jpg", + "backdropPath": "/uV1nCntdsTVhw7bDrd85qtiqdY9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10766 + ], + "genres": [ + "Animation", + "Soap" + ], + "releaseDate": "2020-04-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 18, + "popularity": 5.9299 + }, + { + "id": 63576, + "title": "Fate/kaleid liner Prisma Illya", + "originalTitle": "Fate/kaleid liner プリズマ☆イリヤ", + "overview": "Illyasviel von Einzbern is an ordinary elementary school student who becomes a magical girl when the magical Kaleidostick Ruby deems her a more suitable master than the sorceress, Rin Tohsaka. Rin, who had been tasked by the wizard Zelretch to collect the seven Class Cards containing the spirits of Heroic Spirits from legend, finds that she is unable to change Ruby's mind and must supervise Illya in completing the task of collecting the Class Cards. During Illya's adventures, she receives a friend and rival in a girl named Miyu, the contracted master of the Kaleidostick Sapphire, which similarly abandoned its original master and Rin's rival, Luvia Edelfelt.", + "posterPath": "/fivwHxH3xddSkSyqonXtuydBpIY.jpg", + "backdropPath": "/vlJvlElz9QxiVQ4inLrcSVIralF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2013-07-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.605, + "voteCount": 43, + "popularity": 5.9275 + }, + { + "id": 113808, + "title": "Seirei Gensouki: Spirit Chronicles", + "originalTitle": "精霊幻想記", + "overview": "His past life and current life are intersecting--a boy with memories of two lives faces his destiny! After his mother was killed at an early age, the orphaned Rio fought his hardest to survive in the slums. One day, he awakens to the memories of Haruto Amakwa, who died in an accident while dreaming of being reunited with his childhood friend, and Rio realizing he has reincarnated in a world of swords and sorcery.", + "posterPath": "/hGPvfuGJfWrH0i5bKJcR1xJI1cD.jpg", + "backdropPath": "/fmt7HMsp0g2BTjrU4VHK9GrZ4kX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 240, + "popularity": 5.9222 + }, + { + "id": 84007, + "title": "Carl Weber's The Family Business", + "originalTitle": "Carl Weber's The Family Business", + "overview": "Meet the Duncans, a prominent family from Jamaica, Queens. By day, they’re an upstanding family; by night, they live a dangerous secret life.", + "posterPath": "/A1WwpjcFynFe52KyD4sUb29KUrZ.jpg", + "backdropPath": "/btIdwkLbPlY89HZIVowWitM0VLM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2018-11-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.355, + "voteCount": 31, + "popularity": 5.919 + }, + { + "id": 50042, + "title": "Below Deck", + "originalTitle": "Below Deck", + "overview": "The upstairs and downstairs worlds collide when this young and single crew of \"yachties\" live, love and work together onboard a luxurious mega yacht while tending to the ever-changing needs of their wealthy, demanding charter guests.", + "posterPath": "/xMkYEWMGB7F7YfzJ24DPXoDj8vo.jpg", + "backdropPath": "/myyTmasSFIhLVIxtgjAE2bch70M.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2013-07-01", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.242, + "voteCount": 60, + "popularity": 5.917 + }, + { + "id": 58111, + "title": "Extant", + "originalTitle": "Extant", + "overview": "An astronaut returns home from a year long solo mission in space. She tries to reconnect with her husband and son in their everyday life. Her experiences in space and home lead to events that ultimately will change the course of human history.", + "posterPath": "/nFwqHXoP1FxFbd8G8dY13y9bfAX.jpg", + "backdropPath": "/thXO4bz8NwSzAtkQe1P1xJUjyoY.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2014-07-09", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.345, + "voteCount": 336, + "popularity": 5.9161 + }, + { + "id": 61456, + "title": "Free!", + "originalTitle": "Free!", + "overview": "The story revolves around Haruka Nanase, a boy who has always loved to be immersed in water, and to swim in it. Before graduating from elementary school, he participated in a swimming tournament along with his fellow swimming club members, Makoto Tachibana, Nagisa Hazuki, and Rin Matsuoka. After achieving victory, each of the boys went their separate ways. Time passed, and in the middle of their uneventful high school lives Rin appears and challenges Haruka to a match, showing Haruka his overwhelming power. Not wanting it to end like this, Haruka, gathers together Makoto and Nagisa once again and brings a new member named Rei Ryugazaki to create the Iwatobi High School Swimming Club in order to defeat Rin.", + "posterPath": "/aV195WULVVW6EFUGTwpYHO1lp3t.jpg", + "backdropPath": "/ghOUf1gzmBhbdKJrAjylLE983R9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2013-07-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 237, + "popularity": 5.9104 + }, + { + "id": 8621, + "title": "Late Night with Jimmy Fallon", + "originalTitle": "Late Night with Jimmy Fallon", + "overview": "Late Night with Jimmy Fallon is an American late-night talk show airing weeknights at 12:35 am Eastern/11:35 pm Central on NBC in the United States. The hour-long show premiered on March 2, 2009, and is hosted by actor, comedian and performer Jimmy Fallon, an alumnus of Saturday Night Live. Hip hop/neo soul band The Roots serve as the show's house band, and Steve Higgins is the show's announcer.\n\nThe third incarnation of the Late Night franchise originated by David Letterman, the program originates from NBC Studio 6B in the GE Building at 30 Rockefeller Center in New York City. The show typically opens with a brief monologue from Fallon, followed by a comedy \"desk piece,\" as well as prerecorded segments and audience competitions. The next segment is devoted to a celebrity interview, with guests ranging from actors and musicians to media personalities and political figures. The show then closes with either a musical or comedy performance. The show frequently employs digital media into its comedy, which has become crucial to its success. Fallon has been appointed to become the next host of The Tonight Show, where he will succeed the current host Jay Leno at the conclusion of the 2014 Winter Olympics, with fellow SNL alum Seth Meyers slated to replace Fallon.", + "posterPath": "/l8WzbOr7vg3WDlB3hoy32wZDxwj.jpg", + "backdropPath": "/uganUhifpqzzAunI0PETnutlmR.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2009-03-02", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.072, + "voteCount": 97, + "popularity": 5.9085 + }, + { + "id": 9769, + "title": "Vega$", + "originalTitle": "Vega$", + "overview": "Vega$ is an American detective television drama series that aired on ABC between 1978 and 1981. It was produced by Aaron Spelling. The series was filmed in its entirety in Las Vegas, Nevada. It is believed to be the first television series produced entirely in Las Vegas.\n\nThe show stars Robert Urich as private detective Dan Tanna, who drove around the streets of Las Vegas in a red 1957 Ford Thunderbird solving crimes and making Las Vegas a better place for residents and tourists alike.", + "posterPath": "/myE2ubvyqnX8ToL0KmC6TTBT7c4.jpg", + "backdropPath": "/sCa6Ja6rZrqGp7pZ55jaMyG9Poq.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1978-09-20", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 22, + "popularity": 5.9061 + }, + { + "id": 62476, + "title": "The Bureau", + "originalTitle": "Le Bureau des légendes", + "overview": "Within the DGSE (General Directorate for External Security), a department called the Office Of Legends (BDL) forms and remote pilot the most important agents of the French intelligence services: Clandestine. Immersion in hostile country, their mission is to identify individuals who may be recruited as sources of information. Operating \"under caption\", that is to say in a fabricated identity from scratch, they live for many years in a permanent duplicity. Our hero just returned from a clandestine mission six years in Damascus. But contrary to what is required by safety rules, he does not abandon his legend and the identity under which he lived in Syria, thus putting in danger the whole system.", + "posterPath": "/pWd0ajqIsd92tcQEgYBC7nMpOrk.jpg", + "backdropPath": "/3ZIWMs9vRjuss8RJWn2ijGRuwtE.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2015-04-27", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 8.2, + "voteCount": 207, + "popularity": 5.9008 + }, + { + "id": 87093, + "title": "Family Reunion", + "originalTitle": "Family Reunion", + "overview": "Family Reunion follows a family of six who travel from Seattle, Washington to Columbus, Georgia for the McKellan Family Reunion and decide to stay to be closer to their family.", + "posterPath": "/1FOJNlszjqBk5S1CDjnGvFTP2e4.jpg", + "backdropPath": "/558LZZCB612eRz9bMoTp9bSTnse.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-07-10", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 105, + "popularity": 5.8992 + }, + { + "id": 78869, + "title": "Clean with Passion for Now", + "originalTitle": "일단 뜨겁게 청소하라", + "overview": "Gil Oh-so, an employee at a cleaning company, meets Jang Seon-gyul, the boss of the company. The two are diametric opposite when it comes to cleanliness. With the help of Oh-sol, Seon-gyul faces his mysophobia and falls in love with her.", + "posterPath": "/6ig2QeFmZuiHi07wpD4OULQiUmx.jpg", + "backdropPath": "/qrWC0j3M3mGCTaD7YFTn37niUXc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-11-26", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 7.4, + "voteCount": 62, + "popularity": 5.8982 + }, + { + "id": 1716, + "title": "Early Edition", + "originalTitle": "Early Edition", + "overview": "Gary Hobson thinks he may even be losing his mind when tomorrow's newspaper mysteriously arrives today giving him a disconcerting look into the future. What will he do with tomorrow's news?", + "posterPath": "/uycL5H5ir0ckyyt17FXZAuSQU4p.jpg", + "backdropPath": "/fiVX2cJvqJiFFHwj1JfvJl2vAp8.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "1996-09-28", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 156, + "popularity": 5.8975 + }, + { + "id": 271053, + "title": "I Love LA", + "originalTitle": "I Love LA", + "overview": "A codependent friend group navigates life and love in Los Angeles. With aspirations of becoming a talent manager, Maia is stalled out as an assistant while living with her boyfriend...until her longtime best friend and frenzied influencer Tallulah returns.", + "posterPath": "/6xrLXEQABvoVwGka9KDDAOt4lFs.jpg", + "backdropPath": "/52h1FHwHLVG7oafzHTAJkmUKNMu.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-11-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 12, + "popularity": 5.896 + }, + { + "id": 122623, + "title": "Enfermeras", + "originalTitle": "Enfermeras", + "overview": "", + "posterPath": "/HhpjvtQT6tMzbZWcSZK4Ejn36T.jpg", + "backdropPath": "/7aS0ZrksPQrSJCBvZQO8dCkCmCg.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-10-23", + "releaseYear": "2019", + "originalLanguage": "es", + "voteAverage": 7.7, + "voteCount": 237, + "popularity": 5.8951 + }, + { + "id": 72645, + "title": "The Romance Of Three Kingdoms", + "originalTitle": "三国演义", + "overview": "Adapted from the classical 14th century novel of the same title by Luo Guanzhong, Romance of the Three Kingdoms is part historical, part legend, and part mythical – romanticises and dramatises the lives of feudal lords and their retainers, who tried to replace the dwindling Han dynasty or restore it. The focus is mainly on the three power blocs that emerged from the remnants of the Han dynasty, and would eventually form the three states of Cao Wei, Shu Han, and Eastern Wu.", + "posterPath": "/ex6DcbKNim993aFjEasrU1fIMXT.jpg", + "backdropPath": "/dQle7u6ryfexZ5lUByPVdV7Lw2v.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10768, + 18 + ], + "genres": [ + "Action & Adventure", + "War & Politics", + "Drama" + ], + "releaseDate": "1994-02-10", + "releaseYear": "1994", + "originalLanguage": "zh", + "voteAverage": 9.1, + "voteCount": 32, + "popularity": 5.8946 + }, + { + "id": 10020, + "title": "Police Woman", + "originalTitle": "Police Woman", + "overview": "Sergeant “Pepper\"” Anderson, an undercover cop for the Criminal Conspiracy Unit of the Los Angeles Police Department, poses undercover from mob girl to prostitute.", + "posterPath": "/eKqO6PMfSW4YUJYhZrB82TSjwor.jpg", + "backdropPath": "/zwQ67ZUddRQz1JNTsOxSq0Edodo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "1974-09-13", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 30, + "popularity": 5.8936 + }, + { + "id": 65291, + "title": "Stuck in the Middle", + "originalTitle": "Stuck in the Middle", + "overview": "Harley is an engineering whiz who uses her inventions to navigate life as the middle child in a large family of seven kids.", + "posterPath": "/oq377A9h9JPzp0Hhgv1FZcIYgP9.jpg", + "backdropPath": "/4yFC6KpX7bq45qNulUgP57wWP3r.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2016-02-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 122, + "popularity": 5.8934 + }, + { + "id": 63726, + "title": "Alone", + "originalTitle": "Alone", + "overview": "Hardcore survivalists are put by themselves in the Vancouver Island wilderness, without camera crews, teams, or producers – on a single mission to stay alive for as long as possible.", + "posterPath": "/a1r1KLEYFP1u0q5kH4mHDQaOOvF.jpg", + "backdropPath": "/wcX3J5juFUMXhivZ9rHB7NgwLYa.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2015-06-18", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.152, + "voteCount": 99, + "popularity": 5.8927 + }, + { + "id": 20056, + "title": "Broken Trail", + "originalTitle": "Broken Trail", + "overview": "The story is about an aging cowboy and his nephew who transport 500 horses from Oregon to Wyoming to sell them to the British Army. Along the way, their simple horse drive is complicated when they rescue five Chinese girls from a slave trader, saving them from a life of prostitution and indentured servitude. Compelled to do the right thing, they take the girls with them as they continue their perilous trek across the frontier, followed by a vicious gang of killers sent by the whorehouse madam who originally paid for the girls.\n\nBroken Trail weaves together two historical events: the British buying horses in the American West in the late 19th century and Chinese women being transported from the West Coast to the interior to serve as prostitutes.", + "posterPath": "/yjYXwnRLZFrWXdS97IoXxsSbADi.jpg", + "backdropPath": "/9PlnIwjzTPMsQQQtcvdovbVyJzU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 37 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Western" + ], + "releaseDate": "2006-06-25", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.923, + "voteCount": 169, + "popularity": 5.8917 + }, + { + "id": 7235, + "title": "In Plain Sight", + "originalTitle": "In Plain Sight", + "overview": "U.S. Marshal Mary Shannon must hunt down witnesses for federal cases in the witness protection program while also managing a rather dysfunctional family and her own personal life.", + "posterPath": "/utJdDq3c9uRCdvYHlF5qptWLZfh.jpg", + "backdropPath": "/yamqMxxRgjX2jR5Q5Ue3KbCkuhO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2008-06-01", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 95, + "popularity": 5.8888 + }, + { + "id": 69061, + "title": "The OA", + "originalTitle": "The OA", + "overview": "Seven years after vanishing from her home, a young woman returns with mysterious new abilities and recruits five strangers for a secret mission.", + "posterPath": "/rueY4slMeKtTGitm0raFUJvgaa5.jpg", + "backdropPath": "/hsSFJ7WyVTNU87c06KFVesntrUQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2016-12-16", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.526, + "voteCount": 1281, + "popularity": 5.8887 + }, + { + "id": 6005, + "title": "Scooby-Doo and Scrappy-Doo", + "originalTitle": "Scooby-Doo and Scrappy-Doo", + "overview": "Everyone’s favorite mystery-solving Great Dane is here to find clues, along with a little help from his energetic nephew and four human companions.", + "posterPath": "/ctxdYzdqSlrfKrqEo3bLSrrMLSP.jpg", + "backdropPath": "/1ISPXD33qsdo9dBvhC90S60wdBK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1979-09-22", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 7.485, + "voteCount": 326, + "popularity": 5.8845 + }, + { + "id": 42410, + "title": "Durarara!!", + "originalTitle": "デュラララ!!", + "overview": "In Tokyo's downtown district of Ikebukuro, amidst many strange rumors and warnings of anonymous gangs and dangerous occupants, one urban legend stands out above the rest—the existence of a headless \"Black Rider\" who is said to be seen driving a jet-black motorcycle through the city streets.\n\nMikado Ryuugamine has always longed for the excitement of the city life, and an invitation from a childhood friend convinces him to move to Tokyo. Witnessing the Black Rider on his first day in the city, his wishes already seem to have been granted. But as supernatural events begin to occur, ordinary citizens like himself, along with Ikebukuro's most colorful inhabitants, are mixed up in the commotion breaking out in their city.", + "posterPath": "/i2YqpHaPEMW2JHhFFnyOxgGBMNP.jpg", + "backdropPath": "/kH9iK6krt0VBwAv5xbsYyhn8AW5.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648, + 80 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2010-01-08", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.674, + "voteCount": 213, + "popularity": 5.8838 + }, + { + "id": 121964, + "title": "The Case Study of Vanitas", + "originalTitle": "ヴァニタスの手記", + "overview": "In 19th-century Paris, young vampire Noé finds the Book of Vanitas in human hands. Calling himself Vanitas, this doctor wields its power and tempts Noé with a plan to “cure” all vampires. Allying with him may be dangerous, but does he have a choice?", + "posterPath": "/hk9joSlfsrVTmcoYzQ7rFg028Fq.jpg", + "backdropPath": "/u8QlDE78tI6ValBADKa4NEOWihQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2021-07-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.264, + "voteCount": 229, + "popularity": 5.883 + }, + { + "id": 31709, + "title": "Galaxy Express 999", + "originalTitle": "銀河鉄道999", + "overview": "In a distant future, Tetsuro is a human boy who wants his body replaced with a robotic one. This is possible, but to do so he has to reach the Immortal Planet onboard the space train Galaxy Express 999. Maetel, a beautiful and mysterious blonde woman dressed in Russian style, joins him in the long journey through space. Every episode sees our heroes arriving in a new planet's space train station.", + "posterPath": "/hSL8OUYK1TRKENMgrgStaY5lqzK.jpg", + "backdropPath": "/jU7aA911z7SrXtjgQOvjDVXcR0q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1978-09-14", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 26, + "popularity": 5.8827 + }, + { + "id": 212957, + "title": "Shark: The Storm", + "originalTitle": "샤크: 더 스톰", + "overview": "An action noir about the life of Cha Woo-sol, who was born again after meeting martial arts champion Jeong Do-hyeon in a juvenile prison.", + "posterPath": "/iG7BrHe92jVFNAHMsFxsvBA9NL8.jpg", + "backdropPath": "/95WN7H6jyzpvZ6UOojrfocKNMuK.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2025-05-15", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.538, + "voteCount": 13, + "popularity": 5.8817 + }, + { + "id": 66830, + "title": "Greenleaf", + "originalTitle": "Greenleaf", + "overview": "The unscrupulous world of the Greenleaf family and their sprawling Memphis megachurch, where scandalous secrets and lies are as numerous as the faithful. Born of the church, the Greenleaf family love and care for each other, but beneath the surface lies a den of iniquity—greed, adultery, sibling rivalry and conflicting values—that threatens to tear apart the very core of their faith that holds them together.", + "posterPath": "/dnKwzDle0E7tHnddW9gbFf44GzH.jpg", + "backdropPath": "/quyWG61ceGcQIxpXMJUOYLv88aF.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-06-21", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.03, + "voteCount": 116, + "popularity": 5.8813 + }, + { + "id": 55270, + "title": "The Sandhamn Murders", + "originalTitle": "Morden i Sandhamn", + "overview": "Viveca Stens popular novels come to life in \"The Sandhamn Murders\", a perfect mix of Nordic crime & the beautiful surroundings of the outer Stockholm archipelago.", + "posterPath": "/lncpOcNcP4cxTaH0MkyQERRwJZz.jpg", + "backdropPath": "/1dDubiRvLw6tjOzouFHn27Ncr67.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2010-12-20", + "releaseYear": "2010", + "originalLanguage": "sv", + "voteAverage": 7.191, + "voteCount": 47, + "popularity": 5.8806 + }, + { + "id": 14956, + "title": "Dollhouse", + "originalTitle": "Dollhouse", + "overview": "Echo is a member of a highly illegal and underground group of individuals whose personalities have been wiped clean so they can be imprinted with any number of new personas. Confined between missions to a secret facility known as the Dollhouse, the \"Actives\" are hired by the wealthy, powerful and connected to wholly become—with mind, personality and physiology—whomever the client wants or needs them to be. They know no other life than the specific engagements they are in at that time—or do they?", + "posterPath": "/oq5WPzUn7R0YcIk7QGwpXqvgSWO.jpg", + "backdropPath": "/7xXV6dt9BW11aoEJw48cQZy17QP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-02-13", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.23, + "voteCount": 473, + "popularity": 5.8793 + }, + { + "id": 32519, + "title": "Ezel", + "originalTitle": "Ezel", + "overview": "Ömer, a young man returning from military service, is set up by his friends and fiancé and ends up in prison for ten years. He fakes his own death and manages to escape. He re-creates himself as ‘Ezel’, a high-end gambler who is outwardly a successful man, but inwardly driven by one thing - his determination to understand why the people he loved betrayed him, and take his revenge.", + "posterPath": "/pHSjh4MINU2JnK7qQvjogQaX3wr.jpg", + "backdropPath": "/3IJPtnlFoY8bjllHxnEw21qlK2p.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2009-09-28", + "releaseYear": "2009", + "originalLanguage": "tr", + "voteAverage": 8.4, + "voteCount": 89, + "popularity": 5.8783 + }, + { + "id": 65336, + "title": "March Comes In Like a Lion", + "originalTitle": "3月のライオン", + "overview": "This is a gentle tale about people trying to regain something. And it is a tale of battle. Rei Kiriyama had lost his family in an accident when he was young. Now he is a 17-year-old pro shogi player who is burdened with deep loneliness. Rei lives alone in an old town in Tokyo, but after becoming acquainted with three sisters, Akari, Hinata and Momo, he begins to change little by little...", + "posterPath": "/sokReNdjEwG2TkdUzJcVnD6sChT.jpg", + "backdropPath": "/mLzJpP9YRexGbvgiqunirAM5HAA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2016-10-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 129, + "popularity": 5.8763 + }, + { + "id": 30778, + "title": "Dinosaur Train", + "originalTitle": "Dinosaur Train", + "overview": "Join Buddy, a Tyrannosaurus Rex, and his adoptive Pteranodon family on a whimsical voyage through prehistoric jungles, swamps, volcanoes and oceans, as they unearth basic concepts in life science, natural history and paleontology.", + "posterPath": "/w2g5siiEMMzhZvdWl4rRk2gXLMC.jpg", + "backdropPath": "/zgrh4yjS6ckFirxKyz7XtKUsrBs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2009-09-07", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 43, + "popularity": 5.875 + }, + { + "id": 71737, + "title": "A.P. Bio", + "originalTitle": "A.P. Bio", + "overview": "When disgraced Harvard philosophy scholar Jack Griffin loses out on his dream job, he is forced to return to Toledo, Ohio, and work as a high school Advanced Placement biology teacher.", + "posterPath": "/8GwiuZazRFNrmvSkagZlEDH7qSS.jpg", + "backdropPath": "/t1EBs3EqB69DaA0SJLFZqanuPyq.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-02-01", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.896, + "voteCount": 178, + "popularity": 5.8699 + }, + { + "id": 2072, + "title": "The Bill", + "originalTitle": "The Bill", + "overview": "The daily lives of the men and women at Sun Hill Police Station as they fight crime on the streets of London. From bomb threats to armed robbery and drug raids to the routine demands of policing this ground-breaking series focuses as much on crime as it does on the personal lives of its characters.", + "posterPath": "/bMd4T647b9YdkbQvULyndBNV8uL.jpg", + "backdropPath": "/iTccszzHWk0uV3opwgK40J9Y0hL.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1984-10-16", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 43, + "popularity": 5.8696 + }, + { + "id": 1818, + "title": "Lexx", + "originalTitle": "Lexx", + "overview": "A Time Prophet predicted that Kai would be the one to destroy the divine order in the league of the 20,000 planets, someday that will happen, but not today. Today a cowardly security guard, an undead assassin, a female with a body designed for sex and a robot head madly in love with her all make up the crew of the spaceship Lexx, the most powerful weapon in the two universes.", + "posterPath": "/oSDZ9YpDvAbXxzbC3YdknfyBR3W.jpg", + "backdropPath": "/6HCTF1qRwysB7Q5pJjPTTTY0spr.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10765 + ], + "genres": [ + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-04-18", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 134, + "popularity": 5.8676 + }, + { + "id": 13354, + "title": "Question Time", + "originalTitle": "Question Time", + "overview": "This topical debate series based on Any Questions? typically features politicians from at least the three major political parties as well as other public figures who answer pre-selected questions put to them by a carefully selected audience.", + "posterPath": "/nLGgjwQNnCKuDdJMDmp02pxB0u9.jpg", + "backdropPath": "/5EZwuwszeei0vDQzdxWTCWKQKtq.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 10767 + ], + "genres": [ + "News", + "Talk" + ], + "releaseDate": "1979-09-25", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 13, + "popularity": 5.8666 + }, + { + "id": 63322, + "title": "Superb Song of the Valkyries: Symphogear", + "originalTitle": "戦姫絶唱シンフォギア", + "overview": "During a concert by idol group Zwei Wing, an alien force known as the Noise attack the stage. Group members Tsubasa Kazanari and Kanade Amou suppress the attack using their Symphogear armor, but despite their best efforts, innocent bystander Hibiki Tachibana is fatally injured. Distraught and much to Tsubasa's dismay, Kanade sacrifices herself in the process to save Hibiki.\n\nTwo years later, Hibiki lives on. Tsubasa now fights alone. With the threat of the Noise increasing, Hibiki finds herself encountering the Noise once again but this time she is granted a chance to become attuned with the same Symphogear that Kanade wielded.", + "posterPath": "/g0jsgViN4aBybkgTmr4XgZHluxX.jpg", + "backdropPath": "/2wXkDB02tJnd2YZDLstCiZIuzFb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2012-01-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 22, + "popularity": 5.8659 + }, + { + "id": 79340, + "title": "The Outpost", + "originalTitle": "The Outpost", + "overview": "Talon, the lone survivor of a race called the Blackbloods, sets off to the edge of civilisation to track her family's killers. On her journey she discovers she has supernatural powers which she must learn to harness in order to achieve her goals.", + "posterPath": "/pqHFkhlO4xRRNOzWEEl3yV9KXiu.jpg", + "backdropPath": "/fjrye2LYD8fu4tuaQdZCrkTbGVe.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2018-07-10", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 258, + "popularity": 5.8638 + }, + { + "id": 18653, + "title": "Human Target", + "originalTitle": "Human Target", + "overview": "It takes a brave, selfless man to make himself a \"human target\" in order to save the lives of those in danger. Based on the popular DC Comics comic book and graphic novel, Human Target is a full-throttle action drama centered on Christopher Chance, a unique private contractor/security expert/bodyguard hired to protect.", + "posterPath": "/28DQmHuzVetpvq3dcK0snfEXflG.jpg", + "backdropPath": "/w5df1fleJQdNZsJM2TlUC8t3cbY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2010-01-15", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 159, + "popularity": 5.8631 + }, + { + "id": 75865, + "title": "Teasing Master Takagi-san", + "originalTitle": "からかい上手の高木さん", + "overview": "\"If you blush, you lose.\" Living by this principle, the middle schooler Nishikata gets constantly made fun of by his seat neighbor Takagi-san. With his pride shattered to pieces, he vows to turn the tables and get back at her some day. And so, he attempts to tease her day after day, only to find himself victim to Takagi-san's ridicule again sooner than later. Will he be able to make Takagi-san blush from embarrassment even once in the end?", + "posterPath": "/hKwpd9K5AXsDhcBhJ7hyP7iBJhN.jpg", + "backdropPath": "/g9ZXjxESzLTmuXdi1Es8NXLSZzm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.161, + "voteCount": 384, + "popularity": 5.8625 + }, + { + "id": 4223, + "title": "Cagney & Lacey", + "originalTitle": "Cagney & Lacey", + "overview": "Mary Beth Lacey and Chris Cagney are teamed up as NYPD police detectives. Their opposing personalities (one is tough and the other sensitive) mesh to make this one of the great crime-fighting duos of all time.", + "posterPath": "/bAdrchPABFuHK44G3dKXXRIIRiH.jpg", + "backdropPath": "/rWnH3S85i5E3KniNQpa0TFny7KX.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1982-03-25", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.97, + "voteCount": 66, + "popularity": 5.8594 + }, + { + "id": 2211, + "title": "'Allo 'Allo!", + "originalTitle": "'Allo 'Allo!", + "overview": "The misadventures of hapless cafe owner René Artois and his escapades with the Resistance in occupied France.", + "posterPath": "/m42lb4UxkpaFil4bw0bqqjlWCY4.jpg", + "backdropPath": "/pnyulr7wX1vEfyzScMRDAdxCwMc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10768 + ], + "genres": [ + "Comedy", + "War & Politics" + ], + "releaseDate": "1984-09-07", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.783, + "voteCount": 247, + "popularity": 5.8577 + }, + { + "id": 64783, + "title": "Dawn of the Croods", + "originalTitle": "Dawn of the Croods", + "overview": "The world's first family is back for more laughs as they discover sports, sleepovers and other wonders in a world of exotic creatures and adventures. This 2D animated cartoon is based on the 3D animated feature film, \"The Croods\".", + "posterPath": "/cyCAsMLGECvEAFDfKcxcWy7YTOW.jpg", + "backdropPath": "/bVml4IQKIS5DfPqgDoaZoRLlxIY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762, + 35, + 10759 + ], + "genres": [ + "Animation", + "Family", + "Kids", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2015-12-24", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 96, + "popularity": 5.8566 + }, + { + "id": 1647, + "title": "Go, Diego, Go!", + "originalTitle": "Go, Diego, Go!", + "overview": "Go, Diego, Go! is a children's television series created by Chris Gifferd and Valerie Walsh, and is a spin-off of Dora the Explorer. The show premiered on September 6, 2005 and ended on September 16, 2011 on Nickelodeon. It also aired as part of the Nick Jr. on CBS block from September 17, 2005 to September 9, 2006. On December 20, 2006, Nick Jr. announced that it had ordered twenty new episodes that were in production. Since April 2008, the show has been dubbed into Spanish and airs in the United States on Univision as part of their Planeta U block.", + "posterPath": "/xn3U14CzlMJZdYRqIj36afpjsQl.jpg", + "backdropPath": "/hiBe7Hv7X2upolaXfdDtwHCp8Ze.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure" + ], + "releaseDate": "2005-09-06", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.153, + "voteCount": 62, + "popularity": 5.8563 + }, + { + "id": 48318, + "title": "Świat według Kiepskich", + "originalTitle": "Świat według Kiepskich", + "overview": "Follow the life of a dysfunctional Polish family from Wrocław, who live in an old apartment in Wrocław on 3/4 Ćwiartki street. The show is centered on Ferdynand Kiepski, who tries to make various schemes to improve his financial or life situation, all of which ultimately fail.", + "posterPath": "/niekd6jAbPZJnZrktBSM5rgXSra.jpg", + "backdropPath": "/aZnbrGJngBfFQpME49KYY26zij6.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1999-03-16", + "releaseYear": "1999", + "originalLanguage": "pl", + "voteAverage": 6.5, + "voteCount": 24, + "popularity": 5.8511 + }, + { + "id": 9985, + "title": "Dennis the Menace", + "originalTitle": "Dennis the Menace", + "overview": "This 1959-1963 television situation comedy series follows the lives of the Mitchell family, Henry, Alice, and their only child Dennis, an energetic, trouble-prone, mischievous, but well-meaning boy, who often tangles with his peace-and-quiet-loving neighbor George Wilson, a retired salesman, or, later, with George's brother John, a writer. Dennis is basically a good, well-intentioned boy who always tries to help people, but who winds up making situations worse – often at Mr. Wilson's expense.", + "posterPath": "/1zpYhxqz9SUGMB3Q9HnyKTh31E4.jpg", + "backdropPath": "/5ibGAetIn2123vxNOz88tQZyiFJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1959-10-04", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 31, + "popularity": 5.8506 + }, + { + "id": 90795, + "title": "Most Dangerous Game", + "originalTitle": "Most Dangerous Game", + "overview": "Desperate to take care of his pregnant wife before a terminal illness can take his life, Dodge Maynard accepts an offer to participate in a deadly game where he soon discovers that he’s not the hunter but the prey.", + "posterPath": "/begeAFRPkHzrW05ZQXHrB9pqugt.jpg", + "backdropPath": "/gMY5a71Nn5FVT306hIT66REJJBg.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2020-04-06", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 175, + "popularity": 5.8469 + }, + { + "id": 221504, + "title": "Unicorn Academy", + "originalTitle": "Unicorn Academy", + "overview": "When a dark force threatens to destroy Unicorn Island, a brave teen and her five schoolmates must rise up to protect their beloved magical academy.", + "posterPath": "/5aex9xH2Tq9G9m9WyhPJiyVOJol.jpg", + "backdropPath": "/w1OI696IzYW37hZwdLfiGUYzAvX.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 10762, + 16, + 35, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2023-11-02", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 50, + "popularity": 5.8466 + }, + { + "id": 230424, + "title": "Betty la Fea, the Story Continues", + "originalTitle": "Betty la fea, la historia continúa", + "overview": "While an empowered and wiser Betty works hard on rebuilding her relationship with her teenage daughter Mila, her relationship with Armando begins to deteriorate, making her question if she made the right decision 20 years ago.", + "posterPath": "/huEeQQBmZsZ5qDXkWl0pS5vPWIU.jpg", + "backdropPath": "/wiKWTM2DTrkEIxbTWCv4XRXckBf.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 35, + 18 + ], + "genres": [ + "Soap", + "Comedy", + "Drama" + ], + "releaseDate": "2024-07-19", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.5, + "voteCount": 213, + "popularity": 5.8427 + }, + { + "id": 25247, + "title": "Forsthaus Falkenau", + "originalTitle": "Forsthaus Falkenau", + "overview": "Forsthaus Falkenau is a German television series.", + "posterPath": "/flYa8BzKcoFPJprxhRhKhnFYrb9.jpg", + "backdropPath": "/rkZ0uoaiZ6EzAX0gb5s3EBARuAO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "1989-04-11", + "releaseYear": "1989", + "originalLanguage": "de", + "voteAverage": 5.4, + "voteCount": 10, + "popularity": 5.841 + }, + { + "id": 1593, + "title": "Joan of Arcadia", + "originalTitle": "Joan of Arcadia", + "overview": "Joan Girardi has begun acting a little strange since her family moved to the city of Arcadia. No one knows that various people keep introducing themselves as God, and then giving the teenager specific directions to do things. Unsure of what God wants, and if she's even sane, Joan tentatively begins to follow God's cryptic directives, all the while trying to retain a \"normal\" teen-aged existence.", + "posterPath": "/AdSIHbGVuHGrdZs5BXajiCwep75.jpg", + "backdropPath": "/bNLKTs9SUu812z4BoPUlMM1qBn6.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2003-09-26", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.284, + "voteCount": 81, + "popularity": 5.8389 + }, + { + "id": 2418, + "title": "The Venture Bros.", + "originalTitle": "The Venture Bros.", + "overview": "Hank and Dean Venture, with their father Doctor Venture and faithful bodyguard Brock Samson, go on wild adventures facing megalomaniacs, zombies, and suspicious ninjas, all for the glory of adventure. Or something like that.", + "posterPath": "/ckQE1aLYQkRpp2HmHljiELAiOr1.jpg", + "backdropPath": "/pP3z3VS68PFRqTmypsYJWhWRkrG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-08-07", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 224, + "popularity": 5.8388 + }, + { + "id": 90761, + "title": "The Untamed", + "originalTitle": "陈情令", + "overview": "In a magical world of inter-clan rivalry, two soulmates face treacherous schemes and uncover a dark mystery linked to a tragic event in the past.", + "posterPath": "/8TZbpPpLQVS2i7P7yUVhrFlFsmW.jpg", + "backdropPath": "/ampkwvfwO7o5YMwYAVPKx1PLDaB.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "2019-06-27", + "releaseYear": "2019", + "originalLanguage": "zh", + "voteAverage": 8.571, + "voteCount": 140, + "popularity": 5.8365 + }, + { + "id": 201834, + "title": "ted", + "originalTitle": "ted", + "overview": "It's 1993 and Ted the bear's moment of fame has passed, leaving him living with his best friend, 16-year-old John Bennett, who lives in a working-class Boston home with his parents and cousin. Ted may not be the best influence on John, but when it comes right down to it, he's willing to go out on a limb to help his friend and his family.", + "posterPath": "/cPn71YFDENH0JkWUezlsLyWmLfN.jpg", + "backdropPath": "/cFyp7F8qiBSuSj1qhUnu8MDvubl.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-01-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.914, + "voteCount": 542, + "popularity": 5.8354 + }, + { + "id": 3216, + "title": "Baretta", + "originalTitle": "Baretta", + "overview": "Baretta is an American detective television series which ran on ABC from 1975 to 1978. The show was a milder version of a successful 1973–74 ABC series, Toma, starring Tony Musante as chameleon-like, real-life New Jersey police officer David Toma. While popular, Toma received intense criticism at the time for its realistic and frequent depiction of police and criminal violence. When Musante left the series after a single season, the concept was retooled as Baretta, with Robert Blake in the title role.", + "posterPath": "/xayGSRT2GbcFTwNIqt6l355v29F.jpg", + "backdropPath": "/wixjwQv8aPfIwbc7euj0fPPsMjT.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1975-01-17", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 37, + "popularity": 5.8335 + }, + { + "id": 61550, + "title": "Marvel's Agent Carter", + "originalTitle": "Marvel's Agent Carter", + "overview": "It's 1946, and peace has dealt Peggy Carter a serious blow as she finds herself marginalized when the men return home from fighting abroad. Working for the covert SSR (Strategic Scientific Reserve), Peggy must balance doing administrative work and going on secret missions for Howard Stark all while trying to navigate life as a single woman in America, in the wake of losing the love of her life - Steve Rogers.", + "posterPath": "/fe79VYyLp5ZBstpJ4oukpuUT3B.jpg", + "backdropPath": "/MaQ7hbNsiJ30p14UgRdEnXDGMH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-06", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 1909, + "popularity": 5.8299 + }, + { + "id": 2979, + "title": "Cyberchase", + "originalTitle": "Cyberchase", + "overview": "Cyberchase is an American/Canadian television series for children ages 7-13. The series takes place in Cyberspace, a virtual world, and chronicles the adventures of three children, Jackie, Inez, and Matt, as they use math and problem solving skills to save Cyberspace and its leader, Motherboard, from The Hacker, the villain. Cyberchase has received generally positive reviews and won numerous awards. Thirteen/WNET New York and Nelvana produced the first five seasons, while Thirteen, in association with Title Entertainment, Inc. and WNET.ORG, produced seasons six through eight. The show airs on Public Broadcasting Service and PBS Kids GO! in the United States. All episodes have been released free on the Cyberchase Website. Since July 2010, Cyberchase has been put on hiatus, but was announced that starting in November, Cyberchase will be revived and start airing new episodes with its 9th season.", + "posterPath": "/rNBxZw1GqLkt8FB9TL9p9jSEBl8.jpg", + "backdropPath": "/eKQbV04jCq5GUrDmTyUfgY44oea.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Mystery" + ], + "releaseDate": "2002-01-21", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 34, + "popularity": 5.8292 + }, + { + "id": 2362, + "title": "The Jetsons", + "originalTitle": "The Jetsons", + "overview": "Meet George Jetson and his quirky family: wife Jane, son Elroy and daughter Judy. Living in the automated, push-button world of the future hasn't made life any easier for the harried husband and father, who gets into one comical misadventure after another!", + "posterPath": "/9e2wgxZpAu22yR77fRXzHwOtw9z.jpg", + "backdropPath": "/b3C1vl4JhhU1HkjCSS0B5cYDOQ2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1962-09-23", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 7.304, + "voteCount": 481, + "popularity": 5.8288 + }, + { + "id": 207371, + "title": "Love in the Air", + "originalTitle": "บรรยากาศรัก เดอะซีรีส์", + "overview": "Rain plots to make Phayu fall for him to ruin his reputation, while Sky grapples with his feelings for Prapai, in this whirlwind of emotions and growing love.", + "posterPath": "/sPL95QpwujQnPlY7ZATqMYgZn1j.jpg", + "backdropPath": "/6lvgezjEMioeoXUZixWpkEE8UYE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-08-18", + "releaseYear": "2022", + "originalLanguage": "th", + "voteAverage": 8.5, + "voteCount": 51, + "popularity": 5.8282 + }, + { + "id": 279013, + "title": "TREMEMBÉ", + "originalTitle": "Tremembé", + "overview": "In the penitentiary complex that houses Brazil’s most famous criminals, unusual stories, intrigues and love affairs are revealed, going beyond the real crimes that shocked the nation.", + "posterPath": "/eVqBFACBpovk0sEtjx3HEb3jOYS.jpg", + "backdropPath": "/cskW9fqGHqExkXWJBMbz066ZcZo.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-10-31", + "releaseYear": "2025", + "originalLanguage": "pt", + "voteAverage": 8.176, + "voteCount": 17, + "popularity": 5.8276 + }, + { + "id": 67557, + "title": "The Grand Tour", + "originalTitle": "The Grand Tour", + "overview": "Jeremy Clarkson, Richard Hammond and James May are back with a show about adventure, excitement and friendship... as long as you accept that the people you call friends are also the ones you find extremely annoying. Sometimes it's even a show about cars. Follow them on their global adventure.", + "posterPath": "/3Pcqu6QliBWJ8vsOVClVLddPnZw.jpg", + "backdropPath": "/AvH03Lj5lMYxmlPc7prNQLWw6JY.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35, + 10767 + ], + "genres": [ + "Reality", + "Comedy", + "Talk" + ], + "releaseDate": "2016-11-17", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.005, + "voteCount": 811, + "popularity": 5.8266 + }, + { + "id": 37585, + "title": "Kenichi: The Mightiest Disciple", + "originalTitle": "史上最強の弟子ケンイチ", + "overview": "Yeah, Kenichi’s a total wimp. He’s always getting picked on and doesn’t have a lot of friends to stick up for him. The guy needs motivation if he hopes to graduate in one piece. Well, Miu’s the perfect motivation. She’s hot, she accepts him, and she just so happens to live at a dojo with six martial arts masters. You could say fate has led Kenichi to their door, or you could say he was just following the hottie. Either way, he’s about to get whipped into serious shape. If he can survive some hard-core training, he might survive another day at school. He might even score with Miu. Yeah, you could call Kenichi a wimp. But let’s go with underdog instead.", + "posterPath": "/pLzfW5xWN9sOId6C6vgcv8otnN7.jpg", + "backdropPath": "/1q8GjiMyWpSlBKc7aa5dFvD53CS.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2006-10-07", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 459, + "popularity": 5.8199 + }, + { + "id": 68809, + "title": "iPartment", + "originalTitle": "爱情公寓", + "overview": "", + "posterPath": "/jLMUydug1jJxAZdAuT5Y2JnjvQI.jpg", + "backdropPath": "/s0IbaQ6Ielysg7gsizR5amtOEmr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2009-08-05", + "releaseYear": "2009", + "originalLanguage": "zh", + "voteAverage": 6.8, + "voteCount": 46, + "popularity": 5.8184 + }, + { + "id": 45279, + "title": "The Legend of Qin", + "originalTitle": "秦时明月", + "overview": "The Legend of Qin follows the Qin dynasty from when the Emperor of the Qin, King Zheng conquered the other 6 nations and unified China, to the rise of the king of Western Chu, Xiang Yu, who capture the capital city, Xianyang.", + "posterPath": "/x48e2npV0eFTwDQhpt8qF7HUsLI.jpg", + "backdropPath": "/eeIgapccnWOhOkI5gU7WZJfSmFz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10768, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "War & Politics", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-02-14", + "releaseYear": "2007", + "originalLanguage": "zh", + "voteAverage": 8.7, + "voteCount": 17, + "popularity": 5.8161 + }, + { + "id": 254013, + "title": "Revival", + "originalTitle": "Revival", + "overview": "On one miraculous day in rural Wisconsin, the recently deceased suddenly rise from their graves. But this is no zombie story, as the 'revived' appear and act just like they once were. When local officer and single mother Dana Cypress is unexpectedly thrown into the center of a brutal murder mystery of her own, she's left to make sense of the chaos amidst a town gripped by fear and confusion where everyone, alive or undead, is a suspect.", + "posterPath": "/xf2u02mLodDN2ujMSfLFDkPVFac.jpg", + "backdropPath": "/8sr3u0ozv4X5eQ5frMG6Y8g5gRJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 80, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2025-06-12", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 51, + "popularity": 5.816 + }, + { + "id": 88463, + "title": "Arthdal Chronicles", + "originalTitle": "아스달 연대기", + "overview": "In a mythical land called Arth, the inhabitants of the ancient city of Arthdal and its surrounding regions vie for power as they build a new society.", + "posterPath": "/k5bKj5U2Z7AgkK3Mekji8xDHOuD.jpg", + "backdropPath": "/uDSnb7xvPziZedUzlrz3Za0YOz7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2019-06-01", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 7.692, + "voteCount": 73, + "popularity": 5.8118 + }, + { + "id": 119100, + "title": "BOCCHI THE ROCK!", + "originalTitle": "ぼっち・ざ・ろっく!", + "overview": "Hitori Gotoh, a shy, awkward, and lonely high school student dreams of being in a band despite her doubts and worries, but when she is recruited to be the guitarist of a group looking to make it big, she realises her dream may be able to be fulfilled and come true.", + "posterPath": "/Af4tZ3eKjKWXG4vfiQ8R1NJomAP.jpg", + "backdropPath": "/riRJGnbb18zVBEXpov8GJKnBczj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-10-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 195, + "popularity": 5.8093 + }, + { + "id": 113218, + "title": "Imlie", + "originalTitle": "इमली", + "overview": "All Imlie wanted was to create a name for herself in the city. But upon her arrival, she finds herself caught in the middle of Aditya and Malini's love story.", + "posterPath": "/sltUDXvpDZK3aVIdtkbImhcJv8t.jpg", + "backdropPath": "/i8NGdMIyZnGNpSHLDtpPwYXidPe.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766, + 10751 + ], + "genres": [ + "Drama", + "Soap", + "Family" + ], + "releaseDate": "2020-11-16", + "releaseYear": "2020", + "originalLanguage": "hi", + "voteAverage": 7.4, + "voteCount": 82, + "popularity": 5.8072 + }, + { + "id": 118303, + "title": "Minx", + "originalTitle": "Minx", + "overview": "An earnest young feminist joins forces with a low-rent publisher to make the world's first erotic magazine for women.", + "posterPath": "/8m4ExDRn3oqZJI33mxKaZBjbf1v.jpg", + "backdropPath": "/i8oPK8F2jLZhobxbZIScjFtRxYs.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-03-17", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 97, + "popularity": 5.8055 + }, + { + "id": 12271, + "title": "The Block", + "originalTitle": "The Block", + "overview": "Couples compete against each other to renovate houses and sell them at auction for the highest price.", + "posterPath": "/8EoC7Klyz3BUmvpU5xQPk8Erd5D.jpg", + "backdropPath": "/4hitaTPFgs6aXZQRildDI5fnNE8.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2003-06-01", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 24, + "popularity": 5.803 + }, + { + "id": 204635, + "title": "Orb: On the Movements of the Earth", + "originalTitle": "チ。―地球の運動について―", + "overview": "After learning heretical teachings about the Earth and the Sun, a child prodigy searches for his master's hidden research while evading the Inquisition.", + "posterPath": "/crV1eBtpI5F4nlMwzrBrh4zZuFV.jpg", + "backdropPath": "/o5GDX8zmKLpOxRkBoAonoQL8gbg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-10-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.058, + "voteCount": 60, + "popularity": 5.8017 + }, + { + "id": 257, + "title": "California Dreams", + "originalTitle": "California Dreams", + "overview": "A bunch of cool teenagers who are friends living in California form a rock band, The Dreams. Between gigs, they must deal with all kinds of big and small real-life issues such as school, family life, friends, romance, ambition, ego, jealousy, and big decisions.", + "posterPath": "/m2pFSd4HkkTOwVoBj6ticBCwOLJ.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1992-09-12", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.758, + "voteCount": 33, + "popularity": 5.7999 + }, + { + "id": 196285, + "title": "Farming Life in Another World", + "originalTitle": "異世界のんびり農家", + "overview": "After Hiraku dies of a serious illness, God brings him back to life, gives his health and youth back, and sends him to a fantasy world of his choice. In order to enjoy his second shot, God bestows upon him the almighty farming tool! Watch as Hiraku digs, chops, and ploughs in another world in this laidback farming fantasy!", + "posterPath": "/pT4OoVQE8zGJ0Z0GZpJotK5Vzsj.jpg", + "backdropPath": "/6XJ0XJbL14YkThOe1iU5TJKU5l3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.538, + "voteCount": 104, + "popularity": 5.7971 + }, + { + "id": 213338, + "title": "The Buccaneers", + "originalTitle": "The Buccaneers", + "overview": "A group of fun-loving American girls burst onto the scene in tightly corseted 1870s London, kicking off an Anglo-American culture clash. Sent to secure husbands and status, the buccaneers' hearts are set on much more than that.", + "posterPath": "/vbbZRlzz41JQjBOT9OEKHgonhZ3.jpg", + "backdropPath": "/3bKiVUYhgEL7sNLEV994GkCKE4s.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-11-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 117, + "popularity": 5.7967 + }, + { + "id": 203572, + "title": "The Beauty Inside", + "originalTitle": "Senden Daha Güzel", + "overview": "Efsun, who works as a dermatologist, lives peacefully on the farm with her father in a village in Gaziantep. Her mother left her and her father at a young age and moved to Istanbul and became one of Turkey's most important plastic surgeons. Efsun suddenly receives news from her mother, whom she has not seen since she was 12 years old. Her mother is on her deathbed and wants to see her one last time. She invites Efsun to Istanbul by sending her driver. Efsun, who goes to Istanbul to see her mother, is in for a big surprise. Her mother, the owner of the largest aesthetic clinic in Istanbul, asks Efsun to work in the clinic and forces her to do so. As if all this is not enough, Emir, who she thinks is a driver, is actually the son of her mother's partner Kaya Bey. Emir, a handsome and charismatic surgeon, thinks that Efsun has come to take the clinic away from him, and starts a fight with Efsun. Moreover, these young people are neighbors.", + "posterPath": "/2ljuDEUnjFsaP090hFIZhh51w9.jpg", + "backdropPath": "/ra2t2Q9n9V90e4t0ND3JBnU0mPy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-06-07", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 8.4, + "voteCount": 16, + "popularity": 5.7958 + }, + { + "id": 227192, + "title": "Pyramid Game", + "originalTitle": "피라미드 게임", + "overview": "Every last Thursday of the month at an all-girls high school, the students of Class 2–5 cast their votes in a popularity poll. The results classify them into Grades A, B, C, D, and F. If they fall into Grade F, they become legitimate victims of school violence.", + "posterPath": "/pBUERwWNCuO36CPxiVFsoQCPu7W.jpg", + "backdropPath": "/rtSYO0dexD7zQuABwFEuNz5G4of.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-02-29", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.09, + "voteCount": 134, + "popularity": 5.7956 + }, + { + "id": 13922, + "title": "Journey to the West", + "originalTitle": "西遊記", + "overview": "Journey to the West is a Hong Kong television series adapted from the classical novel of the same title. Starring Dicky Cheung, Kwong Wah, Wayne Lai and Evergreen Mak, the series was produced by TVB and was first broadcast on TVB Jade in Hong Kong in November 1996. A sequel, Journey to the West II, was broadcast in 1998, but the role of the Monkey King was played by Benny Chan instead, due to contract problems between Dicky Cheung and TVB. Cheung later reprised the role in another television series The Monkey King: Quest for the Sutra, which was broadcast on TVB but not produced by the station.", + "posterPath": "/2jCQdd7HEKCI0lsPrzHdiEUYWNt.jpg", + "backdropPath": "/9NqxGCaUsHUn1sUNlfNdQODj6zZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-11-18", + "releaseYear": "1996", + "originalLanguage": "cn", + "voteAverage": 7.5, + "voteCount": 13, + "popularity": 5.7955 + }, + { + "id": 230926, + "title": "The Murky Stream", + "originalTitle": "탁류", + "overview": "The fates of a man with a hidden past, a wise and just woman, and an upright man intertwine.", + "posterPath": "/gj1Qde71tlF5ylNCfOHuanWw48J.jpg", + "backdropPath": "/nipbnsKUPLeylYhYdW0DwMtSmFt.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-09-26", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.326, + "voteCount": 23, + "popularity": 5.7946 + }, + { + "id": 51773, + "title": "Fifty Fifty (50-50)", + "originalTitle": "Πενήντα Πενήντα (50 50)", + "overview": "", + "posterPath": "/6oAAjh2SS4ZsTY4cF3f52K3VxVJ.jpg", + "backdropPath": "/Ztb1iWRzFPSgzQitlzxVf1ZSUY.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-09-30", + "releaseYear": "2005", + "originalLanguage": "el", + "voteAverage": 7.5, + "voteCount": 20, + "popularity": 5.7902 + }, + { + "id": 65493, + "title": "The Ranch", + "originalTitle": "The Ranch", + "overview": "Being a pro athlete didn't pan out for Colt. Now he's helping his dad and brother keep the ranch afloat, and figuring out how he fits into the family.", + "posterPath": "/lrbHBAxF9Ir83rxgeBrfmEJriLt.jpg", + "backdropPath": "/zOjLAmjACtTxoLDu1Su0MSGhARb.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 37 + ], + "genres": [ + "Comedy", + "Family", + "Western" + ], + "releaseDate": "2016-04-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.405, + "voteCount": 264, + "popularity": 5.7897 + }, + { + "id": 78204, + "title": "Sword Art Online Alternative: Gun Gale Online", + "originalTitle": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "overview": "A shy university student in Tokyo, Karen Kohiruimaki stands in stark contrast to her in-game avatar—in fact, she happens to stand above everyone else too, much to her dismay. Towering above all the people around her, Karen's insecurities over her height reach the point where she turns to the virtual world for an escape. Starting game after game in hopes of manifesting as a cute, short character, she finally obtains her ideal self in the world of Gun Gale Online. Overjoyed by her new persona, she pours her time into the game as LLENN, garnering her reputation as the legendary player killer. However, when one of LLENN's targets gets the best of her, she ends up meeting Pitohui, a skilled yet eccentric woman. Pitohui insists that LLENN participates in Squad Jam, a battle royale. Thrust into the heated competition, LLENN must fight with all her wit and will if she hopes to shoot her way to the top.", + "posterPath": "/1EBk96E3cVVOEVlx2z744oEuFQk.jpg", + "backdropPath": "/rJ3WMubG6K6I3j8xjatGgefBWsc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 283, + "popularity": 5.7873 + }, + { + "id": 80609, + "title": "Kiteretsu Daihyakka", + "originalTitle": "キテレツ大百科", + "overview": "The main character is a scientific genius boy named Kiteretsu, who has built a companion robot named Korosuke. He frequently travels in time with his friends and Korosuke in the time machine he built. Miyoko is a girl in his neighborhood who is basically his girlfriend. Tongari is his rival, who happen to share some similar traits of Honekawa Suneo. Buta Gorilla is a typical neighborhood bully, who also share similar traits of Gian except that he often antagonizes Korosuke (though they are in grade school).", + "posterPath": "/3UoNmOT7E7o7FcGmzTMmcw1WGGU.jpg", + "backdropPath": "/39bnzUkZTfekyz1HVXN4eHxiCaX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1988-03-27", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 12, + "popularity": 5.7855 + }, + { + "id": 308, + "title": "Strawberries with Sugar", + "originalTitle": "Morangos com Açúcar", + "overview": "Morangos com Açúcar was a Portuguese Teen drama. It was broadcast daily on the Portuguese TV station TVI between 30 August 2003 to 15 September 2012. It has also been broadcast in Angola, Syria, Brazil and Romania.", + "posterPath": "/uyzx0JkWOOF3Mfcq4uiuIr2Ykju.jpg", + "backdropPath": "/7P7zskNRdowZslBv5yJbnMeBuKR.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10766 + ], + "genres": [ + "Drama", + "Comedy", + "Soap" + ], + "releaseDate": "2003-08-30", + "releaseYear": "2003", + "originalLanguage": "pt", + "voteAverage": 5.85, + "voteCount": 20, + "popularity": 5.7852 + }, + { + "id": 86430, + "title": "Your Honor", + "originalTitle": "Your Honor", + "overview": "New Orleans judge Michael Desiato is forced to confront his own deepest convictions when his son is involved in a hit and run that embroils an organized crime family.", + "posterPath": "/1rWWgTEDFdV330aLgCoaq7I56lk.jpg", + "backdropPath": "/t73x5Pb81mIGZR417aeGwbkR520.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2020-12-06", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.074, + "voteCount": 1637, + "popularity": 5.7827 + }, + { + "id": 566, + "title": "Charles in Charge", + "originalTitle": "Charles in Charge", + "overview": "Charles, a 19-year-old student at the fictional Copeland College in New Brunswick, New Jersey, works as a live-in babysitter in exchange for room and board.", + "posterPath": "/sM3nBqh3iSjPTBMtIFyWnROVLIz.jpg", + "backdropPath": "/w0kHwuuNYHcL77Ny8cuBnrRset3.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1984-10-03", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.096, + "voteCount": 68, + "popularity": 5.7776 + }, + { + "id": 10309, + "title": "McCloud", + "originalTitle": "McCloud", + "overview": "Deputy Marshal Sam McCloud of the small western town of Taos, New Mexico is assigned to the metropolitan New York City Police Department (NYPD) as a special investigator.", + "posterPath": "/wP1bOYyPuTzesvpFMc7DyXWTPgp.jpg", + "backdropPath": "/eeSxV0b2tIFrcA5BDqG6Bcv57Xw.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1970-02-17", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 51, + "popularity": 5.777 + }, + { + "id": 380, + "title": "Little Britain", + "originalTitle": "Little Britain", + "overview": "A zany comedy show with Matt Lucas and David Walliams, featuring characters from all over Little Britain.", + "posterPath": "/2hxPnQxazj61eeBmnpRAFDlOojp.jpg", + "backdropPath": "/2mKBNYVTUVm9b8Kvqe20pOP7st7.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-09-16", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.131, + "voteCount": 226, + "popularity": 5.7765 + }, + { + "id": 20695, + "title": "Yu-Gi-Oh! 5D's", + "originalTitle": "遊☆戯☆王5D's", + "overview": "The future of dueling is revving up! And with it begins a new legend! Yu-Gi-Oh! 5D's!\n\nWelcome to New Domino City! Once the playground to legendary duelist Yugi Muto, this sprawling metropolis has since been transformed into a futuristic society where dueling has kicked into overdrive. With recent technological advancements made by KaibaCorp, dueling has undergone a metamorphosis that has revolutionized the makeup and pace of the game! It’s now a heart-pounding, adrenaline-filled and fuel injected competition where duelists ride supercharged hyper cycles called Duel Runners and battle it out in hi-octane contests called “Turbo Duels.” The winners and losers aren’t just separated by skill and strength… but by SPEED!\n\nHowever, for five special duelists, it's not just about winning or losing anymore - it's about survival, for they are the chosen \"Signers\" who have been marked by destiny to uncover the secrets of the five dragons!", + "posterPath": "/1fareX2gQVmpcxoPFHLAHu3ljld.jpg", + "backdropPath": "/skDqFjFqGtPIqcwLkqzqV4aSlCb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2008-04-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 185, + "popularity": 5.7764 + }, + { + "id": 77696, + "title": "Run BTS!", + "originalTitle": "달려라 방탄!", + "overview": "Run BTS! is a variety web series starring BTS, broadcasting intermittent for free viewing on Weverse and YouTube, was formerly offered weekly for free viewing on V LIVE.", + "posterPath": "/guNo600nrTIIh88C9i6HFlCAhE.jpg", + "backdropPath": "/nqtLRhsa03iY82jbDsAkGEa9Pdz.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2015-08-01", + "releaseYear": "2015", + "originalLanguage": "ko", + "voteAverage": 8.606, + "voteCount": 371, + "popularity": 5.773 + }, + { + "id": 131033, + "title": "Krapopolis", + "originalTitle": "Krapopolis", + "overview": "In mythical ancient Greece, a flawed family of humans, gods and monsters tries to run one of the world’s first cities without killing each other.", + "posterPath": "/9hv6mEAC6NChxNaUIshUN09Yk38.jpg", + "backdropPath": "/aZCm3DTjr7bfjrKSTdbsEi45k1c.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-09-24", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.222, + "voteCount": 36, + "popularity": 5.7729 + }, + { + "id": 97084, + "title": "DAVE", + "originalTitle": "DAVE", + "overview": "A suburban neurotic man in his late 20s has convinced himself that he’s destined to be one of the best rappers of all time. Now he must convince his closest friends, because with their help, he might actually convince the world.", + "posterPath": "/iorStu3DHuscNfQiIyQomvMyO0h.jpg", + "backdropPath": "/fmMOozdSXbzhl6cc2avXI8Y46VK.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2020-03-04", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 176, + "popularity": 5.7722 + }, + { + "id": 202102, + "title": "Quantum Leap", + "originalTitle": "Quantum Leap", + "overview": "It's been nearly 30 years since Dr. Sam Beckett stepped into the Quantum Leap accelerator and vanished. Now, a new team, led by physicist Ben Song, has been assembled to restart the project in hope of understanding the mysteries behind the machine and the man who created it. Everything changes, however, when Ben makes an unauthorized leap into the past, leaving the team behind to solve the mystery of why he did it.", + "posterPath": "/wAoei8KMQ5SXpmABw43hbfQKS8q.jpg", + "backdropPath": "/hGjTV2L4WHJ3HfM3r33GdFVPz6d.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2022-09-19", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.071, + "voteCount": 148, + "popularity": 5.7702 + }, + { + "id": 65817, + "title": "The Deuce", + "originalTitle": "The Deuce", + "overview": "The story of the legalization and subsequent rise of the porn industry in New York’s Times Square from the early ’70s through the mid ’80s, exploring the rough-and-tumble world that existed there until the rise of HIV, the violence of the cocaine epidemic and the renewed real estate market ended the bawdy turbulence of the area.", + "posterPath": "/tKFUwmue5g45rthZOyYWd7l931y.jpg", + "backdropPath": "/3QC20eBsoObbG2iMOZvlavTmLMh.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2017-09-10", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.572, + "voteCount": 388, + "popularity": 5.7682 + }, + { + "id": 38112, + "title": "The Qwaser of Stigmata", + "originalTitle": "聖痕のクェイサー", + "overview": "When Mafuyu Oribe and her adopted sister Tomo rescue a strange wounded man, they have no idea what they’re getting involved with or what the consequences will be. Alexander Nikolaevith Hell is an Iron Qwaser, one of many opposing factions of super-warriors.", + "posterPath": "/fKGI9CMHvSyqjrbzypoEX4mXgSy.jpg", + "backdropPath": "/mJFWew7KYwA9q3xQAj5gf7gnukA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2010-01-10", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.606, + "voteCount": 66, + "popularity": 5.7677 + }, + { + "id": 40887, + "title": "Carabinieri", + "originalTitle": "Carabinieri", + "overview": "Carabinieri is an Italian television series that aired on Canale 5 from March 2002 to July 30, 2008. The series is an action thriller with added elements of comedy, and has been compared to the soap opera format. It told the story of the police barracks located in Città della Pieve.", + "posterPath": "/xQ2YAFeOp301jZVyNsdhI8LCYkV.jpg", + "backdropPath": "/139HqMGbfPpGIMepI3qFq18LmD2.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 35, + 10759 + ], + "genres": [ + "Crime", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2002-03-12", + "releaseYear": "2002", + "originalLanguage": "it", + "voteAverage": 6.1, + "voteCount": 13, + "popularity": 5.7655 + }, + { + "id": 70058, + "title": "Motu Patlu", + "originalTitle": "मोटू पतलू", + "overview": "Inspired by the characters of Lot Pot Comics, Motu Patlu is a lively comic caper for the kids as well as the entire family. Set in the beautiful city of Furfuri Nagariya, the story is about Motu and Patlu, who are as similar as chalk and cheese. The Awesome Twosome are always on an adventurous expedition and have an uncanny ability to get into tricky situations every single day! It was premiered on 16 October 2012, beginning with the episode \"John Banega Don\". It focuses on two friends, Motu and Patlu, living in the fictional city Furfuri Nagar.", + "posterPath": "/nXKXaGE0SkjvhnbFKc0dUWh1uwo.jpg", + "backdropPath": "/6HN32ynYU7bJ1zRQ2T5e2jUqXye.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Action & Adventure" + ], + "releaseDate": "2012-10-16", + "releaseYear": "2012", + "originalLanguage": "hi", + "voteAverage": 7, + "voteCount": 14, + "popularity": 5.764 + }, + { + "id": 79273, + "title": "Gandii Baat", + "originalTitle": "गंदी बात", + "overview": "Unraveling complexed relationships, closet issues, shocking truths, bizarre myths and unexplored space of men and women through a series of thrilling and exciting stories from the rural part of India. Each story is distinct from other but weaved with the thread of eccentricities which will leave you with unexpected twists and turns.", + "posterPath": "/yF0qYnvZaEflyOlElUcGGLE5FaA.jpg", + "backdropPath": "/ukBIpQN2AZfv7EA5qrSIu2MPOOH.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2018-05-03", + "releaseYear": "2018", + "originalLanguage": "hi", + "voteAverage": 4.4, + "voteCount": 15, + "popularity": 5.7614 + }, + { + "id": 61781, + "title": "Pointless Celebrities", + "originalTitle": "Pointless Celebrities", + "overview": "Alexander Armstrong and Richard Osman present a celebrity version of the general knowledge quiz in which contestants try to come up with the answers that nobody else could think of.", + "posterPath": "/mug8RcmBuUCY4Sy6ESAjcGyIWQi.jpg", + "backdropPath": "/eItogKLmXERvY3kmOBPTSNF3dH6.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 10764 + ], + "genres": [ + "Talk", + "Reality" + ], + "releaseDate": "2011-07-04", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 19, + "popularity": 5.7613 + }, + { + "id": 4731, + "title": "Grounded for Life", + "originalTitle": "Grounded for Life", + "overview": "Right out of high school, Sean Finnerty got his girlfriend Claudia pregnant. Now she’s his wife, and at just 32, he’s somehow found himself with 14-year-old daughter Lily, two little boys, and a constant struggle between his need to be responsible and his desperate desire to be irresponsible. His judgmental father Walt and devil-may-care brother Eddie are no help at all. When they all get together, stories always start to fly. Of course, Sean’s family will never let him finish a story; they interrupt, they debate, they derail, they defend themselves; just like any good family would.", + "posterPath": "/sbcNGnpZsvZUuyHlGZ5LBbaEH6m.jpg", + "backdropPath": "/9CunesiFEN5FOOLWhhhl1UVWUYZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2001-01-10", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.758, + "voteCount": 97, + "popularity": 5.761 + }, + { + "id": 82583, + "title": "Çocuklar Duymasın", + "originalTitle": "Çocuklar Duymasın", + "overview": "", + "posterPath": "/4Ctw5fPgMASHub8LtX16N8jjqQA.jpg", + "backdropPath": "/8XyWUe737AVsXw23xBgAS1x8lZp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Kids", + "Drama" + ], + "releaseDate": "2002-01-16", + "releaseYear": "2002", + "originalLanguage": "tr", + "voteAverage": 5.2, + "voteCount": 20, + "popularity": 5.7564 + }, + { + "id": 146176, + "title": "Berlin", + "originalTitle": "Berlín", + "overview": "During his glory days, Berlin and a gang assembled in Paris for one of his greatest plans ever: stealing 44 million euros' worth of jewels in one night.", + "posterPath": "/69YuvoiWTtK6oyYH2Jl4Q6SgZ59.jpg", + "backdropPath": "/wJxZLiPbXrU601c6e9A6kYLejso.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2023-12-29", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 7.553, + "voteCount": 590, + "popularity": 5.7555 + }, + { + "id": 40546, + "title": "The 10th Kingdom", + "originalTitle": "The 10th Kingdom", + "overview": "Virginia and Tony, a father and daughter living in Manhattan, find themselves in a parallel universe where Snow White, Cinderella and Little Red Riding Hood are struggling to maintain order. Their kingdoms have been fragmented by trolls, giants and goblins.", + "posterPath": "/aD5ISjx3AG1rygncAdv7eb8KYYo.jpg", + "backdropPath": "/6lYM8Xs6R4Uc5iYEIQsypwVigqi.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10751, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Family", + "Mystery" + ], + "releaseDate": "2000-02-27", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 256, + "popularity": 5.7545 + }, + { + "id": 243084, + "title": "Love Game in Eastern Fantasy", + "originalTitle": "永夜星河", + "overview": "Pulled into the pages of a fantasy novel, a woman is shocked to find herself stuck in the role of a villain. Now, she must battle to rewrite her destiny.", + "posterPath": "/fsjEm65d2ip0xnZIhDYNgPs8Hg6.jpg", + "backdropPath": "/mfSqsEQtTGrewyCrhwcvpFcq5n7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-11-01", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 8.08, + "voteCount": 25, + "popularity": 5.7513 + }, + { + "id": 74218, + "title": "Battle of the Psychics", + "originalTitle": "Битва экстрасенсов", + "overview": "Bitva Extrasenov (Битва Экстрасенсов), Battle of the Psychics, is a Russian-language TNT (ТНТ) TV show based on Britain’s Psychic Challenge. Each season starts with 8-13 participants selected for their superior psychic abilities, but tries to expose them as frauds. Tasks in the beginning of the series are relatively simple, such as revealing the contents of a sealed box or what lies behind an impenetrable screen, and progressively become more difficult. One participant judged to be worst is eliminated each week, but all participants advance to the next round if the panel is unable to come to a decision.", + "posterPath": "/yyuXEH1OP2QtwJFOm2wIMsEc03B.jpg", + "backdropPath": "/5SRZdQ2kCTC2DaCosMwetAh6bcQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 9648 + ], + "genres": [ + "Reality", + "Mystery" + ], + "releaseDate": "2007-02-25", + "releaseYear": "2007", + "originalLanguage": "ru", + "voteAverage": 6.6, + "voteCount": 11, + "popularity": 5.7478 + }, + { + "id": 248947, + "title": "FAIRY TAIL 100 YEARS QUEST", + "originalTitle": "FAIRY TAIL 100年クエスト", + "overview": "The rowdiest guild in Fiore Kingdom is back! Natsu, Lucy, Gray, Erza, and the whole Fairy Tail guild tackle the legendary \"100 Years Quest,\" tougher than any S-Class quest. Their goal: find the first wizard guild ever, located in the far north of Guiltina. Facing new gods, mysterious towns, and ominous foes, they’ll have their work cut out for them. Will they succeed where no wizard has before?", + "posterPath": "/wj5i6YgZj7LltRE3yE6VTgfdbK0.jpg", + "backdropPath": "/fEo1HO7iuVi8BT9lFhm2XjDvAXr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.867, + "voteCount": 30, + "popularity": 5.7448 + }, + { + "id": 51704, + "title": "Defiance", + "originalTitle": "Defiance", + "overview": "In the near future, planet Earth is permanently altered following the sudden—and tumultuous—arrival of seven unique alien races. In the boom-town of Defiance, the newly-formed civilization of humans and aliens must learn to co-exist peacefully.", + "posterPath": "/4Xo2D2MX8v4FoHi70Y9jEghJGUI.jpg", + "backdropPath": "/fOycBFJr9nyBrnC5vk9cfGqg2e2.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-04-15", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.754, + "voteCount": 519, + "popularity": 5.7412 + }, + { + "id": 200777, + "title": "The Iceblade Sorcerer Shall Rule the World", + "originalTitle": "冰剣の魔術師が世界を統べる", + "overview": "The Arnold Academy of Magic is a school for the elite...and Ray White is just your ordinary guy. In fact, he doesn't seem particularly skilled with magic at all, and is a bit of a klutz. Which is why he has nothing to do with the rumor that one of the great magicians, the Iceblade Sorcerer, is a member of the incoming class...right?", + "posterPath": "/xBlJYF8ROyYppm6RbZ1Ga8nERWs.jpg", + "backdropPath": "/oL459mgvcnc3jL90K7zkfvXQu0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 55, + "popularity": 5.7392 + }, + { + "id": 46917, + "title": "Las Fierbinţi", + "originalTitle": "Las Fierbinţi", + "overview": "A rural comedy where the intrigues caused by the upcoming elections in a small village give rise to a ridiculous war between the mayor and deputy mayor. Unfortunately, they have no clue that their struggle will prove to be in vain at the end of the election day.", + "posterPath": "/yLWh5w8KeukYhMsBojl0Nx6CfJX.jpg", + "backdropPath": "/mSscmoWY35VS3YeuMcbAYssIlfO.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-03-01", + "releaseYear": "2012", + "originalLanguage": "ro", + "voteAverage": 8.3, + "voteCount": 20, + "popularity": 5.7361 + }, + { + "id": 284771, + "title": "Scooped Up by an S-Rank Adventurer!", + "originalTitle": "勇者パーティーを追放された白魔導師、Sランク冒険者に拾われる ~この白魔導師が規格外すぎる~", + "overview": "Lloyd is a white mage who was unexpectedly banished from the hero's party. As he was lost and uncertain, he happened to cross paths with an S-rank adventurer party in need of a white mage, so he joined them on their quest. Little did anyone know at the time that the hero's party would fall apart and Lloyd would rise to fame.", + "posterPath": "/6eHbGa0m8kSVWF8ImDJ7U53CNzY.jpg", + "backdropPath": "/oPiZmkOlew1IGJWJ5HBKmqekuvR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 17, + "popularity": 5.7346 + }, + { + "id": 15079, + "title": "The Suite Life on Deck", + "originalTitle": "The Suite Life on Deck", + "overview": "Zack and Cody Martin are aboard the SS Tipton, a luxury passenger cruise liner owned by London's father. The ship cruises the world with tourists and students who attend classes at Seven Seas High, the one high school that London's dad thinks will make his daughter a better student. While out at sea, Zack and Cody still have their compass pointed towards mischief, and London learns to live a \"fabu-less\" lifestyle, including sharing a small room with Bailey, a country girl from Kansas.", + "posterPath": "/1qfSlnVLvgWqV4XlFB8YNvtKTSy.jpg", + "backdropPath": "/zclNcr7DdxJqt3Xq6eGeuF1QFqz.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762 + ], + "genres": [ + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2008-09-26", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 515, + "popularity": 5.7343 + }, + { + "id": 46153, + "title": "Wagnaria!!", + "originalTitle": "WORKING!!", + "overview": "Set in a family restaurant in Hokkaido, the northern prefecture of Japan, 16-year-old high school student Sōta Takanashi works part-time along with his strange co-workers: Popura Taneshima, a high school girl who—despite being a year older than Sōta—is easily mistaken for a elementary/middle schooler, and Kyoko Shirafuji, the 28-year-old store manager who does not bother to do any work at all.", + "posterPath": "/zF48i9TIZoZCc2YUj9Jg6Widi0j.jpg", + "backdropPath": "/1IVzP2uOv1txYbHempW2VsTF5KW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-04-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 53, + "popularity": 5.7273 + }, + { + "id": 19253, + "title": "Mazinger Z", + "originalTitle": "マジンガーZ", + "overview": "Mazinger Z, known briefly as Tranzor Z in the United States, is a Japanese super robot manga series written and illustrated by Go Nagai. The first manga version was serialized in Shueisha's Weekly Shōnen Jump from October 1972 to August 1973, and it later continued in Kodansha TV Magazine from October 1973 to September 1974. It was adapted into an anime television series which aired on Fuji TV from December 1972 to September 1974. A second manga series was released alongside the TV show, this one drawn by Gosaku Ota, which started and ended almost at the same time of the TV show. Mazinger Z has spawned several sequels and spinoff series, among them UFO Robot Grendizer and Mazinkaiser. It was a very popular cartoon in Mexico during the 1980s, where it was dubbed into Spanish directly from the Japanese version, keeping the Japanese character names and broadcasting all 92 episodes, unlike the version aired in the U.S.", + "posterPath": "/woGUtAdRwjzWgobGvF3ebW1WsKY.jpg", + "backdropPath": "/fQArjxrRZaZHBffjs3FU4AQ8cxN.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1972-12-03", + "releaseYear": "1972", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 398, + "popularity": 5.7261 + }, + { + "id": 46261, + "title": "Fairy Tail", + "originalTitle": "FAIRY TAIL", + "overview": "Lucy is a 17-year-old girl, who wants to be a full-fledged mage. One day when visiting Harujion Town, she meets Natsu, a young man who gets sick easily by any type of transportation. But Natsu isn't just any ordinary kid, he's a member of one of the world's most infamous mage guilds: Fairy Tail.", + "posterPath": "/h50lj7xO65qafNYZCrfQ7ztkMBD.jpg", + "backdropPath": "/hVZMddU7kgbL1NSgzNVMmf8VvPz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-12", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.92, + "voteCount": 998, + "popularity": 5.7223 + }, + { + "id": 88396, + "title": "The Falcon and the Winter Soldier", + "originalTitle": "The Falcon and the Winter Soldier", + "overview": "Following the events of “Avengers: Endgame”, the Falcon, Sam Wilson and the Winter Soldier, Bucky Barnes team up in a global adventure that tests their abilities, and their patience.", + "posterPath": "/6kbAMLteGO8yyewYau6bJ683sw7.jpg", + "backdropPath": "/aTjbqMONy77fHJrIYu14g1F0d5h.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2021-03-19", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.614, + "voteCount": 8737, + "popularity": 5.7222 + }, + { + "id": 252320, + "title": "FEUD", + "originalTitle": "临江仙", + "overview": "Li Qingyue, the Four Spirit Immortal, and Bai Jiusi, the powerful Dacheng Lord, are caught in a turbulent love-hate relationship. As hidden truths come to light, they overcome their misunderstandings and join forces to protect the world from impending danger.", + "posterPath": "/fx7KQNaFUx5DaXMRm0pznHoLe04.jpg", + "backdropPath": "/jHbPcwrjJzX74Hrkuy5LWxEER1E.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-06-06", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.2, + "voteCount": 12, + "popularity": 5.716 + }, + { + "id": 453, + "title": "Mister Ed", + "originalTitle": "Mister Ed", + "overview": "Wilbur Post and his wife Carol move into a beautiful new home. When Wilbur takes a look in his new barn, he finds that the former owner left his horse behind. This horse is no ordinary horse . . . he can talk, but only to Wilbur, which leads to all sorts of misadventures for Wilbur and his trouble-making sidekick Mister Ed.", + "posterPath": "/ykGlIpjTiyd4wYk617X73TL5FTS.jpg", + "backdropPath": "/luppCk9XUcs0gUEf9Sv7MhiJv4H.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1961-01-05", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 48, + "popularity": 5.7159 + }, + { + "id": 1750, + "title": "Doogie Howser, M.D.", + "originalTitle": "Doogie Howser, M.D.", + "overview": "Doogie Howser is a doctor. He is also a 16-year-old genius who graduated college at age 10 and finished medical school at age 14. But he is still a teenager, with normal teenage friends and problems. But unlike a normal teenager, he is just learning to drive while also consulting on serious medical cases like heart transplants.", + "posterPath": "/uNGrGq7tJ1GiKUsfnchC07l0Q2M.jpg", + "backdropPath": "/jIXDWBeCUEu0ttzjHBJC4sA8LzR.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1989-09-19", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.482, + "voteCount": 110, + "popularity": 5.7143 + }, + { + "id": 110070, + "title": "Horimiya", + "originalTitle": "ホリミヤ", + "overview": "A secret life is the one thing they have in common. At school, Hori is a prim and perfect social butterfly, but the truth is she's a brash homebody. Meanwhile, under a gloomy facade, Miyamura hides a gentle heart, along with piercings and tattoos. In a chance meeting, they both reveal a side they've never shown. Could this blossom into something new?", + "posterPath": "/yxk74s3QHx4K3rKpiPisLLqPJ5J.jpg", + "backdropPath": "/ldUbhEbyI28M6PiAkL0hZ2o8bOT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.527, + "voteCount": 1066, + "popularity": 5.7126 + }, + { + "id": 74851, + "title": "Beyond Stranger Things", + "originalTitle": "Beyond Stranger Things", + "overview": "Secrets from the \"Stranger Things 2\" universe are revealed as cast and guests discuss the latest episodes with host Jim Rash. Caution: spoilers ahead!", + "posterPath": "/rHCFO8RJ3Hg6a8KjWAsvAsa38hp.jpg", + "backdropPath": "/vOKdx9SVqay7uSRc1kwXplJgnRG.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 99 + ], + "genres": [ + "Talk", + "Documentary" + ], + "releaseDate": "2017-10-27", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 110, + "popularity": 5.7121 + }, + { + "id": 101918, + "title": "Valeria", + "originalTitle": "Valeria", + "overview": "A writer in a creative and marital crisis finds refuge and support in her three best friends. Based on the novels by Elisabet Benavent.", + "posterPath": "/9WN7hVLAx7LEhLn5ZPylUEghM4m.jpg", + "backdropPath": "/uyNSskEsn8rQdHmsbw2udfiAh.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-05-08", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 7.4, + "voteCount": 243, + "popularity": 5.7118 + }, + { + "id": 210905, + "title": "Physical: 100", + "originalTitle": "피지컬: 100", + "overview": "One hundred contestants in top physical shape compete in a series of grueling challenges to claim the honor — and cash reward — as the last one standing.", + "posterPath": "/vl9XwsuGGzvbAWlHLTNTFIWcgK6.jpg", + "backdropPath": "/msrw4yMwqrUgGDzQSRRNSgkamBt.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2023-01-24", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.689, + "voteCount": 169, + "popularity": 5.7107 + }, + { + "id": 99688, + "title": "1993", + "originalTitle": "1993", + "overview": "Rome, 30 April 1993. A crowd throws coins at Italian politician Bettino Craxi - as if the Civil War has begun. Be quick if you want a place in the new system. Now, it's every man for himself. 1993 is the last chance to set up the Second Republic. Everyone fights their own battles.", + "posterPath": "/w1hMZOQn4VdNuR5H1fkETn7xqM7.jpg", + "backdropPath": "/5EJ5QTGgNpjslzVVqe6yXwPU63F.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-05-16", + "releaseYear": "2017", + "originalLanguage": "it", + "voteAverage": 7, + "voteCount": 52, + "popularity": 5.7091 + }, + { + "id": 66875, + "title": "Non Non Biyori", + "originalTitle": "のんのんびより", + "overview": "Elementary school student Hotaru Ichijou has moved with her parents from Tokyo to the middle of the country. Now she must adapt to her new school, where there are a total of 5 students in the same class who range through elementary and middle school ages. Join their everyday adventures in the countryside.", + "posterPath": "/uEFfrd2xBV2XEGkbNtMrHgLXFM1.jpg", + "backdropPath": "/bP8MlXJwtDQC7sovNmt0AaLAZTb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 98, + "popularity": 5.707 + }, + { + "id": 4438, + "title": "Hangin' with Mr. Cooper", + "originalTitle": "Hangin' with Mr. Cooper", + "overview": "Hangin' with Mr. Cooper is an American television sitcom that originally aired on ABC from 1992 to 1997, starring Mark Curry and Holly Robinson. The show took place in Curry's hometown of Oakland, California. Hangin' with Mr. Cooper was produced by Jeff Franklin Productions, in association with Warner Bros. Television, and also became produced by Bickley-Warren Productions by the third season.\n\nThe show originally aired on Tuesdays in prime time after sister series Full House. The show found its niche as an addition to the already successful TGIF Friday night lineup on ABC, and was part of the lineup from September 1993 to May 1996, before moving to Saturdays for its fifth and final season.", + "posterPath": "/y6jjIhPcvNijt632WAa4AuXu73L.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1992-09-22", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.453, + "voteCount": 32, + "popularity": 5.7055 + }, + { + "id": 71225, + "title": "Cable Girls", + "originalTitle": "Las chicas del cable", + "overview": "In 1920s Madrid, four women at the National Telephone Company ring in revolution as they deal with romance, envy and the modern workplace.", + "posterPath": "/lAwLmgq1zy0xJnusszmvWTLjFlO.jpg", + "backdropPath": "/d6OgVSNEp2ZTvYE7nmo69lhFTX8.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-04-28", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 7.774, + "voteCount": 486, + "popularity": 5.705 + }, + { + "id": 90621, + "title": "The Other Me", + "originalTitle": "Έτερος Εγώ", + "overview": "A series of murders alarm the police authorities, as strange symbolisms are traced to every crime scene. The eccentric professor of criminology Dimitris Lainis is asked to shed some light on the mystery.", + "posterPath": "/4dD0igFrVqAAE70pqMTjSNBrTGs.jpg", + "backdropPath": "/eiBdSeiuieRFmrJwpEvLOxGHdtn.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80 + ], + "genres": [ + "Mystery", + "Crime" + ], + "releaseDate": "2019-06-22", + "releaseYear": "2019", + "originalLanguage": "el", + "voteAverage": 8.5, + "voteCount": 26, + "popularity": 5.6988 + }, + { + "id": 211079, + "title": "Supersex", + "originalTitle": "Supersex", + "overview": "Inspired by true events, this is the story of how Rocco Siffredi escaped a humble life and emerged as the world's greatest porn star.", + "posterPath": "/9tSS4VeR5lYzny2c6Fj6lgYszRP.jpg", + "backdropPath": "/3zEl5KzXhjeC8naTwFpBrxGKXQj.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-03-06", + "releaseYear": "2024", + "originalLanguage": "it", + "voteAverage": 6.725, + "voteCount": 131, + "popularity": 5.6956 + }, + { + "id": 33213, + "title": "Shake It Up", + "originalTitle": "Shake It Up", + "overview": "Best pals CeCe and Rocky dream of dancing stardom. And they seem on the verge of realizing that goal when they win places as backup dancers on the local TV show \"Shake It Up, Chicago.\" While they get to show off their moves, they find out they need to keep putting their best feet forward to keep up with the rest of the crew on the show.", + "posterPath": "/oD7B9qrgqT7tUZNi3pk2onk5C2D.jpg", + "backdropPath": "/9Iy10uBC7AxCiXjkNOfP838jLtR.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10762, + 35, + 18 + ], + "genres": [ + "Family", + "Kids", + "Comedy", + "Drama" + ], + "releaseDate": "2010-11-07", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 290, + "popularity": 5.6941 + }, + { + "id": 87049, + "title": "Firefly Lane", + "originalTitle": "Firefly Lane", + "overview": "For decades, childhood best friends Kate and Tully have weathered life's storms together -- until a betrayal threatens to break them apart for good.", + "posterPath": "/2AavbPEEXzyy7Smyusozyz48T1n.jpg", + "backdropPath": "/zvdnqNYYjW1NvULZbToh50pdts4.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-02-03", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.752, + "voteCount": 288, + "popularity": 5.6934 + }, + { + "id": 66550, + "title": "Sanremo Music Festival", + "originalTitle": "Festival di Sanremo", + "overview": "The Sanremo Music Festival is the most popular Italian song contest and awards, held annually in the town of Sanremo, Imperia, Italy, and consisting of a competition amongst previously unreleased songs. The Festival was the inspiration for the Eurovision Song Contest.", + "posterPath": "/ohqDyr5Wx9jYx3jhsiPqOYAUo65.jpg", + "backdropPath": "/dQrzIO0uJlcGKqdUiTJUWu2uibT.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10764 + ], + "genres": [ + "Family", + "Reality" + ], + "releaseDate": "1951-01-29", + "releaseYear": "1951", + "originalLanguage": "it", + "voteAverage": 7.813, + "voteCount": 16, + "popularity": 5.6912 + }, + { + "id": 30982, + "title": "Hikaru no Go", + "originalTitle": "ヒカルの碁", + "overview": "Hikaru Shindō is just a normal 12-year-old boy, but one day he's rummaging through his grandfather's things to see if he can find something to sell and pulls out an old go board. A ghostly apparition appears out of the board and tells Hikaru his sad story. His name is Fujiwara no Sai, a man who was a go instructor to the emperor of Japan a thousand years ago. However, because of the bad sportsmanship of his opponent during a game, Sai was accused of cheating and banished from the city. With no livelihood or any other reason to live, Sai committed suicide by drowning himself. Now, he haunts a go board, and wants to accomplish the perfect go game, called the \"Hand of God\" which he hopes to do through Hikaru. If Hikaru will be able to do it or not (or even wants to) will have to be seen.", + "posterPath": "/qrk2w3qchJmmNIxPNs9I6PYfcWn.jpg", + "backdropPath": "/ctcPX91Eu2IP0VdEnK9gxFIvvGc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-10-10", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 45, + "popularity": 5.6912 + }, + { + "id": 197067, + "title": "Extraordinary Attorney Woo", + "originalTitle": "이상한 변호사 우영우", + "overview": "With a genius-level IQ, Woo Young-woo learns to embrace her extraordinary self while forming a tight-knit community of friends and allies.", + "posterPath": "/zuNOQVI4rEaqwknrfQUVKtlKE2C.jpg", + "backdropPath": "/tmgtlnBnoFvk52xZBO7Z0pTmN9b.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-06-29", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.475, + "voteCount": 883, + "popularity": 5.6898 + }, + { + "id": 120317, + "title": "Grace", + "originalTitle": "Grace", + "overview": "Brighton based Detective Superintendent Roy Grace is a hard-working police officer who has given his life to the job, but his career is currently at rock bottom. He’s fixated by the disappearance of his beloved wife, Sandy, and running enquiries into long forgotten cold cases with little prospect of success. Following another reprimand for his unorthodox police methods, Grace is walking a career tightrope and risks being moved from the job he loves most.", + "posterPath": "/1BpIVXSmbcKqkuHOBKXFfjDTRBd.jpg", + "backdropPath": "/uR2qF4WHN3pnCHUvuELKHcwDVio.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2021-03-14", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.607, + "voteCount": 75, + "popularity": 5.6892 + }, + { + "id": 10926, + "title": "Sonic X", + "originalTitle": "ソニックX", + "overview": "After getting stranded on Earth, Sonic and his friends team up with 12-year-old Chris Thorndyke to collect all the Chaos Emeralds and defeat the evil Dr. Eggman.", + "posterPath": "/1EFqCQv0td8LMogXCpNEAW3uxgL.jpg", + "backdropPath": "/8Ep5ppQvqFvaMQrX3ENmM4jpNPI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2003-04-06", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 296, + "popularity": 5.6872 + }, + { + "id": 244447, + "title": "The Hunting Wives", + "originalTitle": "The Hunting Wives", + "overview": "Sophie trades New England for East Texas and falls into a wealthy socialite's magnetic orbit — where a clique of housewives hide deadly secrets.", + "posterPath": "/knR0tDKgFwsUMxe0MqZSWQYhwpL.jpg", + "backdropPath": "/6PerjrTmwTNiRcfn0SpjU8N9Nio.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-07-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.465, + "voteCount": 43, + "popularity": 5.6813 + }, + { + "id": 86942, + "title": "Undercover", + "originalTitle": "Undercover", + "overview": "Undercover agents infiltrate a drug kingpin's operation by posing as a couple at the campground where he spends his weekends. Inspired by real events.", + "posterPath": "/ziOJNiNUbomrs81behksd0z9Qoz.jpg", + "backdropPath": "/x2kmiy3RS3hC0SQC0N2sLN3rsdB.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2019-02-24", + "releaseYear": "2019", + "originalLanguage": "nl", + "voteAverage": 7.5, + "voteCount": 164, + "popularity": 5.6809 + }, + { + "id": 65495, + "title": "Atlanta", + "originalTitle": "Atlanta", + "overview": "Two cousins work through the Atlanta music scene in order to better their lives and the lives of their families.", + "posterPath": "/8HZyGMnPLVVb00rmrh6A2SbK9NX.jpg", + "backdropPath": "/vN84JlTvOZvZzxi0D2SJQNFvtjS.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-09-06", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.996, + "voteCount": 802, + "popularity": 5.6791 + }, + { + "id": 14808, + "title": "The Real Housewives of New York City", + "originalTitle": "The Real Housewives of New York City", + "overview": "A fast-paced reality show that follows several incredibly busy and ambitious Manhattan women. Watch as they balance envious social calendars, challenging careers, and motherhood, with the hustle and bustle of the big city all around.", + "posterPath": "/dzy5nUc4MfTdQFBdbUFAT1FRPLQ.jpg", + "backdropPath": "/cowrSDpkCkNcmg5fO7gstaZLR1B.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2008-03-04", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.68, + "voteCount": 64, + "popularity": 5.6772 + }, + { + "id": 34791, + "title": "Claymore", + "originalTitle": "クレイモア", + "overview": "When a shapeshifting demon with a thirst for human flesh, known as \"youma,\" arrives in Raki's village, a lone woman with silver eyes walks into town with only a sword upon her back. She is a \"Claymore,\" a being manufactured as half-human and half-youma, for the express purpose of exterminating these monsters. After Raki's family is killed, the Claymore saves his life, but he is subsequently banished from his home. With nowhere else to go, Raki finds the Claymore, known as Clare, and decides to follow her on her journeys.\n\nAs the pair travel from town to town, defeating youma along the way, more about Clare's organization and her fellow warriors comes to light. With every town cleansed and every demon destroyed, they come closer to the youma on which Clare has sought vengeance ever since she chose to become a Claymore.", + "posterPath": "/rQt8X4kjBxah0laGwUVJISf1086.jpg", + "backdropPath": "/7SuLI2zxU38scCrjVBHNKJNqeqb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.143, + "voteCount": 346, + "popularity": 5.6762 + }, + { + "id": 11567, + "title": "Benidorm", + "originalTitle": "Benidorm", + "overview": "Set in the Solana all-inclusive Resort, Benidorm follows the antics of regulars and first-time holiday makers on their journeys abroad.", + "posterPath": "/As2zSIApWJkMpZN7sfmbDCUHBk1.jpg", + "backdropPath": "/zDfDmfssAzbccKHQ1a6ervmH8LZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-02-01", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 51, + "popularity": 5.6744 + }, + { + "id": 256150, + "title": "Mar afuera", + "originalTitle": "Mar afuera", + "overview": "Follows Álvaro, a 17-year-old from a wealthy family, whose life takes a downward turn after an accident lands him in a juvenile detention centre. It portrays his experiences and struggles within the correctional facility.", + "posterPath": "/ftkwk1iDB0deK0bKwitRLWaKouE.jpg", + "backdropPath": "/5ie07KRqUWV9FDBHVYJ8h3DL9in.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-14", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.786, + "voteCount": 14, + "popularity": 5.6727 + }, + { + "id": 17287, + "title": "Party Down", + "originalTitle": "Party Down", + "overview": "A group of struggling actors and dysfunctional dreamers wait for their big break while they are stuck serving hors d'oeurves for a Hollywood catering company 'Party Down.'", + "posterPath": "/hbsoFctJ1dDPp3KUIuUgd2E1U4r.jpg", + "backdropPath": "/AmmgWFPclweF5fdjdy9ITksMAVC.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2009-03-20", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 218, + "popularity": 5.6666 + }, + { + "id": 122226, + "title": "Echo", + "originalTitle": "Echo", + "overview": "Pursued by Wilson Fisk's criminal empire, Maya's journey brings her home and she must confront her own family and legacy.", + "posterPath": "/vFyJH630cF68LohVYjQW49074Sy.jpg", + "backdropPath": "/u3ySnWqSjM3jedYgJZTR7RWRDDm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2024-01-09", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 566, + "popularity": 5.6645 + }, + { + "id": 80006, + "title": "Good Trouble", + "originalTitle": "Good Trouble", + "overview": "After moving to The Coterie in Downtown Los Angeles, Callie and Mariana Foster realize that living on their own is not all that it’s cracked up to be.", + "posterPath": "/tmB1PghtrIBbdrFAmRncuO1wQLQ.jpg", + "backdropPath": "/p4CVpI0c8wDhwfTUDRn4ZlWIhpf.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-01-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.491, + "voteCount": 175, + "popularity": 5.6643 + }, + { + "id": 114695, + "title": "Marvel Studios Legends", + "originalTitle": "Marvel Studios Legends", + "overview": "Revisit the epic heroes, villains and moments from across the MCU in preparation for the stories still to come. Each dynamic segment feeds directly into the upcoming series — setting the stage for future events. This series weaves together the many threads that constitute the unparalleled Marvel Cinematic Universe.", + "posterPath": "/EpDuYIK81YtCUT3gH2JDpyj8Qk.jpg", + "backdropPath": "/2jPv3B0ikeGjEYZKDX8vJGXJrvh.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10759, + 10765 + ], + "genres": [ + "Documentary", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-08", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 680, + "popularity": 5.6636 + }, + { + "id": 1830, + "title": "Tiny Toon Adventures", + "originalTitle": "Tiny Toon Adventures", + "overview": "Follow the adventures of a group of young cartoon characters who attend the Acme Looniversity to become the next generation of characters from the Looney Tunes series.", + "posterPath": "/j9B9RmerM2b39s7xzW6g4vN5B1m.jpg", + "backdropPath": "/9b2NUGEGd2lknAcHxwOZfWgj87h.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1990-09-14", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 512, + "popularity": 5.6626 + }, + { + "id": 1032, + "title": "Aída", + "originalTitle": "Aída", + "overview": "Aída is a Spanish comedy sitcom set in Madrid, that spin off from another sitcom called 7 Vidas. The show first aired on January 16, 2005 and is produced by Globomedia for the Spanish network Telecinco. It currently started its ninth season.\n\nThe show stars Carmen Machi as the title character, Aída García, a working, single mother with two teenage children, forced to move in with her mother and brother to make ends meet.\n\nThe show has received favorable criticism from the audience and has been the most viewed show in Spain since 2007. It has also received several awards like the Ondas Award for Best Spanish Sitcom.\n\nThe Polish re-make of the series began airing in March 2012 on TVP2 channel.", + "posterPath": "/poEaDSpLbpKeA2OI4n2X6K4udYd.jpg", + "backdropPath": "/olWu25uH1KAYYVBYez6uCyXSDgl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2005-01-16", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 7.816, + "voteCount": 247, + "popularity": 5.6617 + }, + { + "id": 49010, + "title": "The Fall", + "originalTitle": "The Fall", + "overview": "When the Police Service of Northern Ireland are unable to close a case after 28 days, Detective Superintendent Stella Gibson of the Metropolitan Police Service is called in to review the case. Under her new leadership, the local detectives must track down and stop a serial killer who is terrorising the city of Belfast.", + "posterPath": "/fm7nN3nUADA7JGgnFNlOWpXn1tf.jpg", + "backdropPath": "/vunaJ5k1cG8T4ROUGDZ05IhNXkP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2013-05-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.673, + "voteCount": 920, + "popularity": 5.6613 + }, + { + "id": 96305, + "title": "The Ambassador's Daughter", + "originalTitle": "Sefirin Kızı", + "overview": "Sancar has always & Nare has always yearned for love. When they meet and fall in love as children, they know they are meant to be; they just have to wait to be old enough to marry. On the night of their wedding, a startling revelation by Nare forever changes their lives and puts their love on hold until the night of another wedding many years later.", + "posterPath": "/wkCIfkSUb71xjq0y8POOYHn1cll.jpg", + "backdropPath": "/cvAj8UIdqKnvlHUhpbJ1xn8aww8.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-12-16", + "releaseYear": "2019", + "originalLanguage": "tr", + "voteAverage": 7.673, + "voteCount": 55, + "popularity": 5.6574 + }, + { + "id": 114165, + "title": "Kung Fu", + "originalTitle": "Kung Fu", + "overview": "A quarter-life crisis causes a young Chinese-American woman to drop out of college and go on a life-changing journey to an isolated monastery in China. But when she returns to find her hometown overrun with crime and corruption, she uses her martial arts skills and Shaolin values to protect her community and bring criminals to justice…all while searching for the assassin who killed her Shaolin mentor and is now targeting her.", + "posterPath": "/ynpI9lvBe2gbNkH3a764xOeMajO.jpg", + "backdropPath": "/fcDM4HJybquvhTijxbSfxFTuJJf.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2021-04-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 308, + "popularity": 5.656 + }, + { + "id": 39702, + "title": "House of Lies", + "originalTitle": "House of Lies", + "overview": "Charming, fast talking Marty Kaan and his crack team of management consultants know how to play the corporate game better than anyone, by using every dirty trick in the book to woo powerful CEOs and close huge deals. In the board rooms, barrooms, and bedrooms of the power elite, corruption is business as usual and everyone's out for themselves first. Nothing is sacred in this scathing, irreverent satire of corporate America today.", + "posterPath": "/xrrNWeMC9p2J0fEUCYYsyA67EdB.jpg", + "backdropPath": "/gNCDlz5dSjGYajyfCbSreXkMfdL.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2012-01-08", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 206, + "popularity": 5.6505 + }, + { + "id": 72610, + "title": "Carpool Karaoke: The Series", + "originalTitle": "Carpool Karaoke: The Series", + "overview": "Celebrity pairings ride along in a car together as they sing tunes from their personal playlists and surprise fans who don't expect to see big stars belting out tunes one lane over.", + "posterPath": "/bA6tpDMoyQO8fRmXC8sHh7LQoqW.jpg", + "backdropPath": "/lJSojr9b2KaddW1QI8q2bY6OXy.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-08-08", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 34, + "popularity": 5.6502 + }, + { + "id": 1798, + "title": "Fame", + "originalTitle": "Fame", + "overview": "An American television series originally produced between 1982 and 1987. The show is based on the 1980 motion picture of the same name. With a mixture of drama and music, it followed the lives of the students and faculty at the New York City High School for the Performing Arts. Although fictional, it was based heavily on the actual Fiorello H. LaGuardia High School of Music & Art and Performing Arts in New York. Most interior scenes were filmed in Hollywood, California, and in all seasons but the third, several exterior scenes were shot on location in New York City.\n\nThe popularity of the series, particularly in the UK, led to several hit records and live concert tours by the cast. Despite its success, very few of the actors maintained high-profile careers after the series was cancelled. A number of the cast members were seen again briefly in Bring Back...Fame, a reunion special made for British television in 2008.", + "posterPath": "/wed91CGCdmtBLbo82o0cF2QNRUw.jpg", + "backdropPath": "/8l2Q2CODhbtFqZemrKHvlFRhPb8.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1982-01-07", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 65, + "popularity": 5.6494 + }, + { + "id": 32910, + "title": "Transformers: Prime", + "originalTitle": "Transformers: Prime", + "overview": "Roll out with Optimus Prime, Bumblebee, Arcee, Ratchet, Bulkhead, and the rest of the heroic Autobots as they battle the evil Decepticons. Now that big bad Megatron has returned with a mysterious and dangerous element, Team Prime must prepare for an epic battle.", + "posterPath": "/ilOKsGRHYc78R2tSMusAd3xGJWq.jpg", + "backdropPath": "/owhEUs8ZVyuXpxsD2BIcriBotUo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids" + ], + "releaseDate": "2010-11-26", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 459, + "popularity": 5.6433 + }, + { + "id": 82199, + "title": "Find Me in Paris", + "originalTitle": "Find Me in Paris", + "overview": "When Lena Grisky, a Russian Princess and student at the Paris Opera Ballet School accidentally time travels to present day, she must quickly adapt if she hopes to keep her secret and hide from the dangerous Time Collectors.", + "posterPath": "/uOTYMzTlXFbWDZCxxc0vX9CvBsl.jpg", + "backdropPath": "/4II1SxAXSCrFqJfyuiOhRozTZqc.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 35, + 10751 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "2018-07-20", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 130, + "popularity": 5.6401 + }, + { + "id": 103, + "title": "The Time Tunnel", + "originalTitle": "The Time Tunnel", + "overview": "The Time Tunnel is a 1966–1967 U.S. color science fiction TV series, written around a theme of time travel adventure. The show was creator-producer Irwin Allen's third science fiction television series, released by 20th Century Fox and broadcast on ABC. The show ran for one season of 30 episodes. Reruns are viewable on cable and by internet streaming. A pilot for a new series was produced in 2002, although it was not picked up.", + "posterPath": "/6E3Ncd9iLWqi8m1GcdkU5bSwOnS.jpg", + "backdropPath": "/omPcylzcwlsser7aKTlsyoMJLyK.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1966-09-09", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 7.602, + "voteCount": 176, + "popularity": 5.638 + }, + { + "id": 815, + "title": "Peep Show", + "originalTitle": "Peep Show", + "overview": "Peep Show follows the lives of two men from their twenties to thirties, Mark Corrigan, who has steady employment for most of the series, and Jeremy \"Jez\" Usbourne, an unemployed would-be musician.", + "posterPath": "/6rdoQ0cTjsEQLIwEjhBV8U98oUm.jpg", + "backdropPath": "/pYEFwZj6YDR8OhX9tyO78IoJADe.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-09-19", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 407, + "popularity": 5.6378 + }, + { + "id": 261145, + "title": "The Amazing Digital Circus", + "originalTitle": "The Amazing Digital Circus", + "overview": "A woman is caught in a bizarre virtual reality where she and other trapped humans become bound to the whims of an unhinged AI ringmaster.", + "posterPath": "/lpfrgfomX8uNFxv4VaEzvJGs9TK.jpg", + "backdropPath": "/d9jabrtVZL46RnGIRPGEVOHyKt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-13", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 120, + "popularity": 5.636 + }, + { + "id": 242965, + "title": "After Midnight", + "originalTitle": "After Midnight", + "overview": "Celebrated comedian Taylor Tomlinson hosts the smartest show on television about the dumbest things on the internet alongside a panel of guests from the worlds of entertainment, comedy, music, and beyond.", + "posterPath": "/7O67hHXEaiW30UQdunBqlyPsfGh.jpg", + "backdropPath": "/ge4mIJjh3kZ1oXGblRoVB5h6xPo.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2024-01-17", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.947, + "voteCount": 19, + "popularity": 5.6355 + }, + { + "id": 245679, + "title": "Adulting", + "originalTitle": "Adulting", + "overview": "Four varsity friends, whose strong bond has held them together even as their journeys in life have taken them in very different directions. As they try to find love and success in Johannesburg after university.", + "posterPath": "/wLkjvLTBdx52J2JsvTVar84KgA3.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-03-20", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 18, + "popularity": 5.633 + }, + { + "id": 1026, + "title": "Amazing Stories", + "originalTitle": "Amazing Stories", + "overview": "A truly amazing, fantastical, science fiction, funny and odd, and sometimes scary, sad and endearing anthology series presented by Steven Spielberg with guest appearances by many famous actors, actresses, and directors.", + "posterPath": "/66Utyft9WHPQJSU7f7MbEB72dkc.jpg", + "backdropPath": "/vDZ8fJhiMDVINf7mJcmKj6pYaYV.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35, + 10751, + 9648, + 80 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy", + "Family", + "Mystery", + "Crime" + ], + "releaseDate": "1985-09-29", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 7.454, + "voteCount": 216, + "popularity": 5.6303 + }, + { + "id": 2235, + "title": "Goof Troop", + "originalTitle": "Goof Troop", + "overview": "Goofy is a single father raising his son, Max in Spoonerville. As it happens, Goofy and Max end up moving in next door to Goofy's high school friend Pete and his family. Pete's son PJ and Max become best friends practically doing everything together.", + "posterPath": "/vfUUKRmfKkxo7TOEOjWZ1xRHOH.jpg", + "backdropPath": "/1D9UrX1kv9woJdOOuzIbxYxE6JJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 16 + ], + "genres": [ + "Comedy", + "Kids", + "Animation" + ], + "releaseDate": "1992-09-05", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.643, + "voteCount": 157, + "popularity": 5.6295 + }, + { + "id": 78254, + "title": "Apple & Onion", + "originalTitle": "Apple & Onion", + "overview": "In a world of talking food, best mates Apple and Onion fumble through city life, tackling ordinary problems by extraordinary means.", + "posterPath": "/dtCfVYJUJrHnQzrO426hZbYHhXK.jpg", + "backdropPath": "/8SKDZikrolOhMcRN5u3IovLCszG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-02-23", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 39, + "popularity": 5.6294 + }, + { + "id": 272118, + "title": "CITY THE ANIMATION", + "originalTitle": "CITY THE ANIMATION", + "overview": "This town, is not just a normal town. There's laughter, love and emotional moments. An unpredictable ordinary life presented by the residents! Exciting stuffs come one after another. Welcome to CITY.", + "posterPath": "/1B95cSzrFPCXQpCEXM4ajRVZKQW.jpg", + "backdropPath": "/1rxLKPOIHdJ9aFUwmzQ9gagZkUc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 15, + "popularity": 5.6278 + }, + { + "id": 205308, + "title": "Tomo-chan Is a Girl!", + "originalTitle": "トモちゃんは女の子!", + "overview": "Tomboy Tomo couldn't have picked a more awkward high school crush 'cause it’s on her childhood friend, Junichiro, but he only sees her as one of the guys. Despite her pretty looks and signals, nothing gets through to this meathead! Will Junichiro ever realize Tomo's into him and see her for the cutesy girl she actually is?!", + "posterPath": "/h9TN2BltJ9Q7FZ5BYGQcHfYfEGp.jpg", + "backdropPath": "/9pzMn0ZpzpZVgaTEwMnklp6MnOP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-01-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.795, + "voteCount": 105, + "popularity": 5.6263 + }, + { + "id": 157282, + "title": "Sister Boniface Mysteries", + "originalTitle": "Sister Boniface Mysteries", + "overview": "First there was Father Brown. Now, say hello to Sister Boniface. This clever, moped-riding nun is the police's secret weapon for solving murders in this divine Father Brown spin-off.", + "posterPath": "/kSIPIFoIUCUOMwoAs9kiuwCz1Ju.jpg", + "backdropPath": "/gjhDILpTQHkm3KaT93WoUtXFyYR.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2022-03-11", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 32, + "popularity": 5.6261 + }, + { + "id": 157004, + "title": "Goosebumps", + "originalTitle": "Goosebumps", + "overview": "A group of five high schoolers embark on a shadowy and twisted journey to investigate the tragic passing three decades earlier of a teen named Harold Biddle – while also unearthing dark secrets from their parents' past.", + "posterPath": "/pMrMPlEJAGAKBUWJzeacIwjRU2C.jpg", + "backdropPath": "/j45FEq8BPUJDVm3cGIQye0tqPpL.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2023-10-13", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 208, + "popularity": 5.6246 + }, + { + "id": 1446, + "title": "Flinderella", + "originalTitle": "Floricienta", + "overview": "Florencia is a singer and orphan, who falls in love with Federico, a businessman. They will be able to overcome all obstacles, but their love will take an unexpected turn.", + "posterPath": "/jHpGf342KoTemqxiGCtZw0pejqm.jpg", + "backdropPath": "/rtJrrlUeiMtzQ6lJLGHHyYHYhnK.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10751, + 10766 + ], + "genres": [ + "Comedy", + "Drama", + "Family", + "Soap" + ], + "releaseDate": "2004-03-15", + "releaseYear": "2004", + "originalLanguage": "es", + "voteAverage": 8.044, + "voteCount": 159, + "popularity": 5.6239 + }, + { + "id": 33958, + "title": "Camelot", + "originalTitle": "Camelot", + "overview": "Camelot is a historical-fantasy-drama television series based on the Arthurian legend, was produced by Graham King, Morgan O'Sullivan and Michael Hirst.", + "posterPath": "/kT4yBlYjB0Cm6Qp9bwkjXrFPU1v.jpg", + "backdropPath": "/iIsRu2x3gTLoH26DGs9gpvrvqPg.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2011-02-25", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.302, + "voteCount": 177, + "popularity": 5.6182 + }, + { + "id": 248244, + "title": "Undercover High School", + "originalTitle": "언더커버 하이스쿨", + "overview": "Byungmoon, Korea’s top private high school, is rife with corruption, where status and success matter most. Hae-sung, a top NIS agent, goes undercover at Byungmoon to find Emperor Gojong’s hidden gold and uncover the truth behind his father’s disappearance. Cold and calculated, he sees the school as an obstacle—until he connects with students and a former crush and becomes a reluctant hero. Torn between duty and newfound bonds, can he still complete his mission?", + "posterPath": "/vXAWUI1pYrBvZoUarGxWj1mtlXp.jpg", + "backdropPath": "/lAOiaHI5OoY1t4L5rcmwaf1HkLs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2025-02-21", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.9, + "voteCount": 48, + "popularity": 5.6169 + }, + { + "id": 87689, + "title": "Warrior Nun", + "originalTitle": "Warrior Nun", + "overview": "After waking up in a morgue, an orphaned teen discovers she now possesses superpowers as the chosen Halo-Bearer for a secret sect of demon-hunting nuns.", + "posterPath": "/fLP0mA7FiERZhDP1NJUaHpm6XM8.jpg", + "backdropPath": "/eLQx33dMaa5mW16TFIZbhaeSqer.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-02", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.961, + "voteCount": 1269, + "popularity": 5.6168 + }, + { + "id": 63663, + "title": "Gate", + "originalTitle": "ゲート 自衛隊 彼の地にて、斯く戦えり", + "overview": "Off-duty Japan Self-Defense Forces (JSDF) officer and otaku, Youji Itami, is on his way to attend a doujin convention in Ginza, Tokyo when a mysterious portal in the shape of a large gate suddenly appears. From this gate, supernatural creatures and warriors clad in medieval armor emerge, charging through the city, killing and destroying everything in their path. With swift actions, Youji saves as many lives as he can while the rest of the JSDF direct their efforts towards stopping the invasion.\n\nThree months after the attack, Youji has been tasked with leading a special recon team, as part of a JSDF task force, that will be sent to the world beyond the gate—now being referred to as the \"Special Region.\" They must travel into this unknown world in order to learn more about what they are dealing with and attempt to befriend the locals in hopes of creating peaceful ties with the ruling empire.", + "posterPath": "/cwN3H0mQKfwYtLFgjL7LfWpcInI.jpg", + "backdropPath": "/xWnqhREQ3aVbGatgg9fwbY4BYh7.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-07-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 164, + "popularity": 5.6134 + }, + { + "id": 61422, + "title": "The Fruit of Grisaia", + "originalTitle": "グリザイアの果実", + "overview": "Mihama Academy—on the surface, a closed learning environment established to nurture students who find themselves at odds with the world around them; in actuality, an orchard-cum-prison built to preserve fruit that has fallen too far from its tree. Yet with the arrival of the institute's first male student, the nearly preposterously opaque Kazami Yuuji, the students at Mihama begin to fall out of step with their predetermined rhythms. Will Yuuji prove to be the element the girls around him needed to take hold of their lives once more, or will the weight of their pasts prove too steep a wall to overcome?", + "posterPath": "/bbyEffAlFj2X53yG37VQSgg3uL2.jpg", + "backdropPath": "/zP5T8fCor69u3PvBtO7HOqow6AZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.637, + "voteCount": 51, + "popularity": 5.611 + }, + { + "id": 31342, + "title": "The Farm (BR)", + "originalTitle": "The Farm (BR)", + "overview": "A Fazenda is the current Brazilian version of the The Farm reality television show based on the Swedish television series of the same name that was originally created in 2001 by Strix and produced in association with Sony Entertainment and Endemol.\n\nThe show is based on a group of celebrities living together twenty-four hours a day in a Farm, isolated from the outside world while having all their steps followed by cameras around-the-clock, with no privacy for three months.\n\nThe contestants compete for the chance to win the grand prize by avoiding weekly eviction, until the last celebrity remains at the end of the season that can claim the grand prize. The show is presented by news reporter Britto Junior alongside actress Chris Couto and directed by Rodrigo Carelli. Record's website and a Record-owned pay-per-view channel offer round-the-clock coverage.", + "posterPath": "/cJc8hNQP4lWouAzD0duQ4inktin.jpg", + "backdropPath": "/zvNMbGzc2Z3khr7sAU2hBzydvaR.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2009-05-31", + "releaseYear": "2009", + "originalLanguage": "pt", + "voteAverage": 2.8, + "voteCount": 15, + "popularity": 5.6054 + }, + { + "id": 137870, + "title": "Love Like the Galaxy", + "originalTitle": "星汉灿烂", + "overview": "Cheng Shaoshang, left behind by her parents who went off to war, faces challenges from a scheming aunt and struggles with estrangement from her family. Lacking love and security, she is cautious in choosing a marriage partner and meets three suitors: Ling Buyi, the emperor's adopted son; Yuan Shen, a talented figure from Bailu Mountain; and Lou Yao, an aristocrat. Despite a rocky path to love, Shaoshang remains steadfast. Her involvement with Ling Buyi leads them into a mystery surrounding his family and identity and together they confront a national crisis, growing through their experiences and upholding their ideals.", + "posterPath": "/cTnsH4HNeRE5G1OfPO1JgLRAsao.jpg", + "backdropPath": "/wNSLw756U5JQSpG6POYxHKL2KDH.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-07-05", + "releaseYear": "2022", + "originalLanguage": "zh", + "voteAverage": 7.6, + "voteCount": 41, + "popularity": 5.6043 + }, + { + "id": 210787, + "title": "Harlan Coben's Shelter", + "originalTitle": "Harlan Coben's Shelter", + "overview": "Follow the story of Mickey Bolitar after the death of his father leads him to start a new life in suburban New Jersey. When another new student disappears, Mickey finds himself tangled in a web of secrets. With the help of two new friends, Spoon and Ema, they reveal a dark underground that may hold the answers to decades of disappearances.", + "posterPath": "/rEDJ0L9xY2SblTsPhghUHTa1VnX.jpg", + "backdropPath": "/eDzhof8GnNXIErfkfHsAMmSd4W0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2023-08-17", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 115, + "popularity": 5.6021 + }, + { + "id": 40026, + "title": "Dance Moms", + "originalTitle": "Dance Moms", + "overview": "Dance Moms is an American dance reality series that debuted on Lifetime on July 13, 2011. Created by Collins Avenue Productions, it is set in Pittsburgh, Pennsylvania, at the Abby Lee Dance Company, and follows children's early careers in dance show business, and their mothers. A spinoff series, Dance Moms: Miami, set in Miami at Victor Smalley and Angel Armas' dance studio, Stars Dance Studio, premiered on April 3, 2012, and was cancelled in September 2012 after eight episodes.\n\nOn October 10, 2012, Lifetime announced that they had picked up Dance Moms for a third season, consisting of 26 episodes, which debuted on January 1, 2013.", + "posterPath": "/eLtHnDXNCdBeyC5h1987C2FR3kQ.jpg", + "backdropPath": "/nGDsZDEZW0Uc5XtyfC7m7tH5q95.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2011-07-13", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 118, + "popularity": 5.6005 + }, + { + "id": 281615, + "title": "The Water Magician", + "originalTitle": "水属性の魔法使い", + "overview": "Reincarnation had Ryo dreaming of peace, but instead he lands into a monster-infested wilderness. With water magic and eternal youth, he survives countless wicked concoctions for 20 years, becoming one of the most powerful magicians ever. Ryo’s fate shifts when he meets Abel, a genius knight, thrusting him into magical society’s spotlight. Thus, the Water Magician’s wild adventure begins!", + "posterPath": "/9GWz3D9aBgtn6pMiu3DTZL3h5ua.jpg", + "backdropPath": "/s7LgF8NmL0Qi9fWAeZvOBx9s2jy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 34, + "popularity": 5.6003 + }, + { + "id": 213331, + "title": "Berserk of Gluttony", + "originalTitle": "暴食のベルセルク", + "overview": "Fate Graphite was born into a world where magical skills shape your destiny. His skill is Gluttony, a seemingly useless curse of unending hunger that has left him shunned and looked down upon. Until one day, after he takes the life of a thief, his true power awakens: he can devour the skill of anyone he kills to feed his appetite. Will he learn to control this gruesome ability for the better?", + "posterPath": "/wQMcq5YUjMfoIEqLRzrNQVt4ROl.jpg", + "backdropPath": "/w6UrhLiXEMLwI4PFv2I2JEPhLRj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 72, + "popularity": 5.5976 + }, + { + "id": 254799, + "title": "Are You Sure?!", + "originalTitle": "이게 맞아?!", + "overview": "Whenever BTS's Jimin and Jung Kook meet, chaos and excitement ensue! In the summer of 2023, they embark on an unforgettable trip before their military enlistment. Their unpredictable adventure is full of surprises. Will Jimin and Jung Kook complete their journey safely?", + "posterPath": "/5NZzvgSnCBBxdDRmYJHRfBXVs43.jpg", + "backdropPath": "/vMRFXG4nBH5d6n0diWNWfgQTIS3.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2024-08-08", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 9, + "voteCount": 11, + "popularity": 5.5966 + }, + { + "id": 70823, + "title": "Mickey and the Roadster Racers", + "originalTitle": "Mickey and the Roadster Racers", + "overview": "Mickey Mouse and his pals Minnie, Pluto, Goofy, Daisy and Donald take their unique transforming vehicles on humorous high-spirited races around the globe as well as hometown capers in Hot Dog Hills.", + "posterPath": "/3D4275Ck9eXdMlXEQgNrOsikmMS.jpg", + "backdropPath": "/7ne3CUNlcnzqEdX3jf0MQoGEP1o.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Comedy" + ], + "releaseDate": "2017-01-15", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 24, + "popularity": 5.5965 + }, + { + "id": 137206, + "title": "Till The End of The Moon", + "originalTitle": "长月烬明", + "overview": "In an era when the demons are in power, they are the masters of the despicable cultivators and mortals. The cultivator elders deem it necessary to send someone back in time to determine the origin of the demon lord and to prevent his awakening. Li Susu accepts the mission, becoming the mortal Ye Xiwu, General Ye's third daughter, who is married to Tantai Jin, the hostage prince and future demon lord. She is determined to destroy Tantai Jin, who, in the future, will massacre many. But as a witness to Tantai Jin's past life and rise to power, an unexpected tale emerges, one complicating her quest.", + "posterPath": "/xcKDmUKEzysLjJEJTjonNoMraht.jpg", + "backdropPath": "/5fhS6Bh4VnF0SOZyZnhNpc0XHDb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-06", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.2, + "voteCount": 53, + "popularity": 5.5947 + }, + { + "id": 988, + "title": "The Rookies", + "originalTitle": "The Rookies", + "overview": "The Rookies is an American crime drama series that aired on ABC from 1972 until 1976. It follows the exploits of three rookie police officers working in an unidentified city for the fictitious Southern California Police Department.", + "posterPath": "/Aprq6E5NO2GiBwKwjFop7kOGiO1.jpg", + "backdropPath": "/bAfVWU5A2ZWEc6fnbDKZnLtY4SO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1972-09-11", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 20, + "popularity": 5.5943 + }, + { + "id": 125928, + "title": "My Adventures with Superman", + "originalTitle": "My Adventures with Superman", + "overview": "Twenty-somethings Clark Kent, the bright and driven Lois Lane, and their best friend Jimmy Olsen begin to discover who they are and everything they can accomplish together as an investigative reporting team at the Daily Planet.", + "posterPath": "/kocOUpdLnHyqfMW4jSRLxWT0QhM.jpg", + "backdropPath": "/vstgoeNAyIhSErJ9EWSqh2pINUc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2023-07-07", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 190, + "popularity": 5.5927 + }, + { + "id": 130542, + "title": "Bhagya Lakshmi", + "originalTitle": "Bhagya Lakshmi", + "overview": "Hailing from a middle-class family, Lakshmi’s life is upended when she realises that her marriage to Rishi Oberoi, an industrialist’s son, is a sham to keep his death at bay.", + "posterPath": "/gG7VzFKAOuGqCJyHQJRTn9f7UMl.jpg", + "backdropPath": "/5772mIxerrOtleSmFadAV8RyXQZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2021-08-03", + "releaseYear": "2021", + "originalLanguage": "hi", + "voteAverage": 5.8, + "voteCount": 110, + "popularity": 5.5921 + }, + { + "id": 205442, + "title": "La mujer del diablo", + "originalTitle": "La mujer del diablo", + "overview": "Natalia is a school teacher who wants to dedicate herself to local tourism. Cristo is a criminal who pretends to be a benefactor to those in need. Cristo becomes obsessed with Natalia and does unimaginable things to win her over.", + "posterPath": "/lhGcQeib5dltKUVlI7c7oniZUZ7.jpg", + "backdropPath": "/c5b4Xfa9jwW6hXXpyo28RArEAwy.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-07-21", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 7.508, + "voteCount": 256, + "popularity": 5.592 + }, + { + "id": 3470, + "title": "Masters of Horror", + "originalTitle": "Masters of Horror", + "overview": "An anthology series written and directed by the most famous names in horror.", + "posterPath": "/vgTy1Lfi5P1yD7ZvsuoPKYvxwzv.jpg", + "backdropPath": "/w9FOfBEtb8iMWLulegu9ieWqPFp.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-28", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.117, + "voteCount": 300, + "popularity": 5.592 + }, + { + "id": 4241, + "title": "8 Simple Rules", + "originalTitle": "8 Simple Rules", + "overview": "Paul and Cate are raising their three children -- Bridget, Kerry and Rory -- which is no easy task. Oldest daughter Bridget is traversing the dating scene. Kerry is cute and smart, but she has a hard time getting in touch with her true feelings because of her lack of self-confidence. The youngest of the three children, and only boy, Rory is beginning to discover one of life's greatest mysteries -- girls.", + "posterPath": "/81bJijYZedZ4TSm34rYmW9gEDvN.jpg", + "backdropPath": "/7o3zJuoRP1paXSPzKwkbm5Dhwfh.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2002-09-17", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 195, + "popularity": 5.5864 + }, + { + "id": 117648, + "title": "Clarkson's Farm", + "originalTitle": "Clarkson's Farm", + "overview": "Follow Jeremy Clarkson as he embarks on his latest adventure, farming. The man who on several occasions claims to be allergic to manual labour takes on the most manually labour intensive job there is. What could possibly go wrong?", + "posterPath": "/yKc3FqwD2eanWBUwqcRH7bChE3V.jpg", + "backdropPath": "/i50h4Gz6e9BMGak5l6gg5qfIjcv.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2021-06-11", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.499, + "voteCount": 356, + "popularity": 5.5862 + }, + { + "id": 17572, + "title": "Kick Buttowski: Suburban Daredevil", + "originalTitle": "Kick Buttowski: Suburban Daredevil", + "overview": "Clarence Buttowski, a young boy, aspires to become the world's greatest daredevil, as he gets help from Gunther, his loyal friend and partner-in-crime.", + "posterPath": "/syxcG3suyf3U00z5HOuLbZ9eozl.jpg", + "backdropPath": "/xfdFw7ZJ6uYhUNsmpSwFT7DSnkA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "2010-02-13", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 648, + "popularity": 5.5846 + }, + { + "id": 64464, + "title": "11.22.63", + "originalTitle": "11.22.63", + "overview": "An English teacher travels back in time to prevent the Kennedy assassination, but discovers he is attached to the life he has made in a bygone era.", + "posterPath": "/1fH41ccMKvgDTbbcCxWWH6fznah.jpg", + "backdropPath": "/qVBExiGdG8uiPK9BcWD0881u8uh.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-02-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.761, + "voteCount": 1643, + "popularity": 5.5824 + }, + { + "id": 239826, + "title": "Ballard", + "originalTitle": "Ballard", + "overview": "Detective Renée Ballard plunges into a web of murder and corruption as she hunts a ruthless serial killer and uncovers a sinister police conspiracy that threatens everything she stands for. With her own demons nipping at her heels, Ballard must outwit both criminals and colleagues to bring long-overdue justice to the victims and their families.", + "posterPath": "/vHQGu6ducKC7JcDU6lqWyx7tWW5.jpg", + "backdropPath": "/fQ3LSr8KpLBz4xegkGdLd07AlI6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-07-09", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.063, + "voteCount": 128, + "popularity": 5.5815 + }, + { + "id": 40302, + "title": "The Jonathan Ross Show", + "originalTitle": "The Jonathan Ross Show", + "overview": "The Jonathan Ross Show is a British chat show presented by Jonathan Ross. It was first broadcast on ITV on 3 September 2011 and currently airs on Saturday evenings following the conclusion of Ross' BBC One chat show, Friday Night with Jonathan Ross, in July 2010.", + "posterPath": "/aYTC5SLtfFWHPE7X2B7TcOdDWZS.jpg", + "backdropPath": "/8uw8zAZmzw54rvvEsaDtUIrZ1fL.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2011-09-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.3, + "voteCount": 23, + "popularity": 5.5814 + }, + { + "id": 202998, + "title": "Star Wars: Young Jedi Adventures", + "originalTitle": "Star Wars: Young Jedi Adventures", + "overview": "Set during the High Republic era and the prime of the Jedi Order, follow Jedi younglings as they study the ways of the Force, explore the galaxy, help citizens and creatures in need, and learn valuable skills needed to become Jedi along the way.", + "posterPath": "/hWydZFPESXxrFYNwwIzZwMKJN0g.jpg", + "backdropPath": "/7SJctp269UEMvRGt9d3eddSpcLL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2023-05-04", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 30, + "popularity": 5.5798 + }, + { + "id": 61697, + "title": "Wolf Hall", + "originalTitle": "Wolf Hall", + "overview": "England in the 1520s is a heartbeat from disaster. If the King dies without a male heir, the country could be destroyed by civil war. Henry VIII wants to annul his marriage of twenty years and marry Anne Boleyn. The Pope and most of Europe oppose him. Into this impasse steps Thomas Cromwell: a wholly original man, a charmer, and a bully, both idealist and opportunist, astute in reading people, and implacable in his ambition. But Henry is volatile: one day tender, one day murderous. Cromwell helps him break the opposition, but what will be the price of his triumph?", + "posterPath": "/dGuiMtUQBGxM3ZWosphO2MdYw8o.jpg", + "backdropPath": "/3kLMdv1eTIYRsCLknMG6WBbvvb9.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-01-21", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 136, + "popularity": 5.5786 + }, + { + "id": 33847, + "title": "The Talk", + "originalTitle": "The Talk", + "overview": "A panel of well-known news and entertainment personalities discussing current events, pop culture, contemporary issues, family, celebrity and the trending topics of the day.", + "posterPath": "/7sizkzLu7RNowjfojv6eUn2tAzA.jpg", + "backdropPath": "/gf3eAemoiFnZ6Tb9HEDBxr1lliI.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2010-10-18", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 3.036, + "voteCount": 14, + "popularity": 5.5779 + }, + { + "id": 2566, + "title": "Dead Like Me", + "originalTitle": "Dead Like Me", + "overview": "When her life comes to an abrupt end, George discovers that death is nothing like she thought it would be. Recruited to collect the souls of others as they die, she suddenly finds herself an unwilling participant in a line of work she never knew existed: Grim Reaping!", + "posterPath": "/92pJimSg6exk0Dt5u5XB1O5DZtz.jpg", + "backdropPath": "/zRICZei2q0OrJhwGwEdcIx63tXS.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2003-06-27", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.645, + "voteCount": 463, + "popularity": 5.5775 + }, + { + "id": 271576, + "title": "Summer Pockets", + "originalTitle": "Summer Pockets", + "overview": "Hairi Takahara never expected summer to feel like a dream. Sent to Torishirojima to sort through his late grandmother's belongings, he's met with endless sea, quiet nostalgia, and mysterious girls, each chasing something just out of reach. As he settles into island life, lost memories begin to surface and he finds what he never knew he'd lost.", + "posterPath": "/9k1bD9S3djSemQsQO7csBxEwMar.jpg", + "backdropPath": "/yj0AlgpXjqFeORzpXCHF8g3aN1N.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 14, + "popularity": 5.5745 + }, + { + "id": 2395, + "title": "The Legend of Tarzan", + "originalTitle": "The Legend of Tarzan", + "overview": "The Legend of Tarzan picks up where the 1999 feature film left off, with the title character adjusting to his new role as leader of the apes following Kerchak's death, and Jane adjusting to life in the jungle. Rounding out the cast are Jane's father, Professor Archimedes Porter; Tantor, the germophobic elephant; and Terk, a wisecracking female gorilla and Tarzan's old wrestling buddy.", + "posterPath": "/w5mGLHBT59nFilSPgd5TgJnZ1ix.jpg", + "backdropPath": "/oHIjE4TxszMa5EyZdROyAWZtkhL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids" + ], + "releaseDate": "2001-09-03", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.944, + "voteCount": 98, + "popularity": 5.5725 + }, + { + "id": 84503, + "title": "Close Enough", + "originalTitle": "Close Enough", + "overview": "A surreal take on transitioning from 20-something to 30-something centering on a married couple juggling such everyday challenges as parenthood, friendship, ham theft, stripper clowns and choosing the right day care.", + "posterPath": "/8aNYMcMyhv1m0MKibgCVmJrAeLs.jpg", + "backdropPath": "/erbr2KDiQOUH95liJOZBRSa0DgS.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2020-07-09", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 369, + "popularity": 5.5699 + }, + { + "id": 228528, + "title": "Cruel Intentions", + "originalTitle": "Cruel Intentions", + "overview": "At an elite Washington, D.C.-adjacent university, two ruthless step-siblings will do anything to stay on top of the cutthroat social hierarchy. After a brutal hazing incident threatens the entire Greek Life system at their school, they'll do whatever is necessary to preserve their power and reputation – even if that means seducing, the daughter of the Vice President of the United States.", + "posterPath": "/tWtcyehBCO9fksIj30pdtVldntw.jpg", + "backdropPath": "/82pXGnJAboAmOgJPxuWdo4qru32.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.609, + "voteCount": 119, + "popularity": 5.5693 + }, + { + "id": 236300, + "title": "Love Sea", + "originalTitle": "ต้องรักมหาสมุทร", + "overview": "Tongrak, a romance novelist, meets Mahasamut, a quirky southern man, during his travels. Their unexpected encounter leaves Tongrak captivated.", + "posterPath": "/nV6AWBI0aCN41rx6vFdwaAmmoPl.jpg", + "backdropPath": "/lk8UclTf2RdE0uRhQ90RIYUCO7v.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-06-09", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 7.194, + "voteCount": 18, + "popularity": 5.5686 + }, + { + "id": 259015, + "title": "My Dearest Nemesis", + "originalTitle": "그놈은 흑염룡", + "overview": "As a high school senior, Su-Jeong began playing an online game where she met another player nicknamed “Black Dragon.” They unexpectedly got close, developing crushes and planning a meeting in real life… that concluded in humiliation and disaster when “Black Dragon” turned out to be an awkward middle schooler instead of the young man he portrayed himself to be!\n\nSixteen years later, Su-Jeong is a skilled planner at Yongseong Department Store, but her job is about to get a shakeup with the arrival of Ban Ju-Yeon, the ambitious new head of strategic planning and heir to the company. There’s just one problem: Ban Ju-Yeon is actually “Black Dragon,” and Su-Jeong still holds a grudge. Will their past come back to haunt them, or can they find a way to resolve their misunderstandings – and even find love as adults?\n\nBased on the webtoon \"That Man Is Black Salt Dragon\" (그 남자는 흑염룡).", + "posterPath": "/obxTkvATqU8a65XDOFOQeZKd3PF.jpg", + "backdropPath": "/4Xer0oaXautbLRfJQOrlmPSCfN1.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-02-17", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.699, + "voteCount": 88, + "popularity": 5.5655 + }, + { + "id": 10393, + "title": "The Adventures of Robin Hood", + "originalTitle": "The Adventures of Robin Hood", + "overview": "The legendary character Robin Hood and his band of merry men in Sherwood Forest and the surrounding vicinity. While some episodes dramatised the traditional Robin Hood tales, most episodes were original dramas created by the show's writers and producers.", + "posterPath": "/hDlzPHsz0iVNjspLZlsSKWfLc3g.jpg", + "backdropPath": "/vNleBASRzlBrmRrHGu1c3A8zHz2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10751 + ], + "genres": [ + "Action & Adventure", + "Family" + ], + "releaseDate": "1955-09-26", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 6.333, + "voteCount": 18, + "popularity": 5.5649 + }, + { + "id": 63613, + "title": "In aller Freundschaft - Die jungen Ärzte", + "originalTitle": "In aller Freundschaft - Die jungen Ärzte", + "overview": "The spin-off to the original series 'In aller Freundschaft' focuses on the young doctors in a fictional clinic in Erfurt. In this emotional drama series, hospital staffers and patients navigate life's challenges.", + "posterPath": "/mNGHuwsxs6KlwymfgOdPKisfBBe.jpg", + "backdropPath": "/bnGFjtkk4EXXd7R7yNvJX5UOX3E.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-01-22", + "releaseYear": "2015", + "originalLanguage": "de", + "voteAverage": 7.1, + "voteCount": 17, + "popularity": 5.5623 + }, + { + "id": 235930, + "title": "Devil May Cry", + "originalTitle": "Devil May Cry", + "overview": "When a mysterious villain threatens to open the gates of Hell, a devilishly handsome demon hunter could be the world's best hope for salvation.", + "posterPath": "/mX9tqfpjqwreONJHhap7SnSSowe.jpg", + "backdropPath": "/nLyXXIDMpDHvUgxchezxuhoJ4Ej.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.014, + "voteCount": 258, + "popularity": 5.5611 + }, + { + "id": 62126, + "title": "Marvel's Luke Cage", + "originalTitle": "Marvel's Luke Cage", + "overview": "Given superstrength and durability by a sabotaged experiment, a wrongly accused man escapes prison to become a superhero for hire.", + "posterPath": "/6R62oGGufhsf6DiMknCi047N0b7.jpg", + "backdropPath": "/1zC6TJ4gQYQSjZUyZMeldxImqNg.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759, + 80 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2016-09-30", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.926, + "voteCount": 1926, + "popularity": 5.556 + }, + { + "id": 5307, + "title": "The Ed Sullivan Show", + "originalTitle": "The Ed Sullivan Show", + "overview": "The Ed Sullivan Show is an American TV variety show that originally ran on CBS from Sunday June 20, 1948 to Sunday June 6, 1971, and was hosted by New York entertainment columnist Ed Sullivan. It was replaced in September 1971 by the CBS Sunday Night Movie, which ran only one season and was eventually replaced by other shows.\n\nIn 2002, The Ed Sullivan Show was ranked #15 on TV Guide's 50 Greatest TV Shows of All Time.", + "posterPath": "/gUEfDXUxwhgXBX7LSk57vJKXCTp.jpg", + "backdropPath": "/e1UMtpKhOJSz7QCbR6bmM39Fziv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "1948-06-20", + "releaseYear": "1948", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 22, + "popularity": 5.5543 + }, + { + "id": 27119, + "title": "The Comic Strip Presents...", + "originalTitle": "The Comic Strip Presents...", + "overview": "The Comic Strip is a group of British comedians, who came to prominence in the 1980s. They are known for their television series The Comic Strip Presents... which was labelled as an example of alternative comedy. The core members are Adrian Edmondson, Dawn French, Rik Mayall, Nigel Planer, Peter Richardson, Jennifer Saunders and Alexei Sayle with frequent appearances by Keith Allen, Robbie Coltrane and others.", + "posterPath": "/jUMJPj1nEiDBpccJvgKDMt6XKEN.jpg", + "backdropPath": "/9VHM6VWjNlb5FtYMv8n1YeBVhFk.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1982-11-02", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 16, + "popularity": 5.5533 + }, + { + "id": 99530, + "title": "Transplant", + "originalTitle": "Transplant", + "overview": "Dr. Bashir Hamed, a Syrian doctor with battle-tested skills in emergency medicine, makes the difficult decision to flee his country and build a new life in Canada with his younger sister Amira. Bash works to navigate a new environment after earning a coveted residency in the Emergency Department of one of the best hospitals in Toronto, York Memorial.", + "posterPath": "/ukvqJZI0XctnLst0CTE2r0AC2eu.jpg", + "backdropPath": "/ajSETcBuftCMeloOxqHMkzdelpa.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-02-26", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.486, + "voteCount": 138, + "popularity": 5.5513 + }, + { + "id": 14976, + "title": "Independent Lens", + "originalTitle": "Independent Lens", + "overview": "This acclaimed Emmy Award-winning anthology series features documentaries and a limited number of fiction films united by the creative freedom, artistic achievement and unflinching visions of their independent producers and featuring unforgettable stories about a unique individual, community or moment in history.", + "posterPath": "/amfeqi4cccb458kFNEg2pSZoCGw.jpg", + "backdropPath": "/8D7O0JBWVLaFGyDk3vSPri7HmWp.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1999-08-09", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 15, + "popularity": 5.5503 + }, + { + "id": 1600, + "title": "Ned's Declassified School Survival Guide", + "originalTitle": "Ned's Declassified School Survival Guide", + "overview": "The whacky adventures of Ned Bigby and his best pals Moze and Cookie at James K. Polk Middle School, as \"every-kid\" Ned shatters the fourth wall to share tips and tricks on navigating middle school or junior high hurdles. Ned's not super cool, and he has no superpowers. He is, however, witty, well-groomed, upbeat and self-aware. Moreover, with more than a little help from his two best friends, he's equipped to conquer middle school minefields. From crushing bullies to crushes, from off- the-wall, mean and cool teachers to pop quizzes, elections and detentions, Ned knows that nothing, including the seventh grade, is as bad as it seems, and friendship matters most.", + "posterPath": "/3kUXoJFmj6vOdmqMMoiYZj0eY2F.jpg", + "backdropPath": "/uxpYsuTkfSMdTzR2LIkkjMiaybv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762 + ], + "genres": [ + "Comedy", + "Kids" + ], + "releaseDate": "2004-09-12", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8.485, + "voteCount": 982, + "popularity": 5.5492 + }, + { + "id": 195407, + "title": "The Creature Cases", + "originalTitle": "The Creature Cases", + "overview": "Special agents Sam and Kit hop the globe with their sleuthing skills, science facts and cool gadgets to solve the animal kingdom's many mysteries.", + "posterPath": "/tFi3nx53Dfwa5YOd4J2VnIXpqBk.jpg", + "backdropPath": "/nVvn89XVd5IRLbcra5BcYcWbH9I.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16 + ], + "genres": [ + "Kids", + "Animation" + ], + "releaseDate": "2022-04-12", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 16, + "popularity": 5.5468 + }, + { + "id": 221, + "title": "The Many Loves of Dobie Gillis", + "originalTitle": "The Many Loves of Dobie Gillis", + "overview": "The Many Loves of Dobie Gillis is an American sitcom that aired on CBS from 1959 to 1963. The series and several episode scripts were adapted from a 1951 collection of short stories of the same name, written by Max Shulman, who had also written a feature film adaptation of his short stories for MGM in 1953, The Affairs of Dobie Gillis.\n\nThe series revolved around the life of teenager/young adult Dobie Gillis, who, along with his best friend, beatnik Maynard G. Krebs, struggles against the forces of his life - high school, the military, college, and his parents - as he aspires to attain both wealth and dates with girls. The Many Loves of Dobie Gillis was produced by Martin Manulis Productions in association with 20th Century Fox Television. Creator Shulman also wrote the theme song in collaboration with Lionel Newman.", + "posterPath": "/LusZEGxE4LxIOAiBCuOvUQcLV1.jpg", + "backdropPath": "/iIeZvExIDXBQbihb5xLeVGVHkM5.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1959-09-29", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 15, + "popularity": 5.5425 + }, + { + "id": 41116, + "title": "Ein starkes Team", + "originalTitle": "Ein starkes Team", + "overview": "The unlikely police pair Verena Berthold and Otto Garber are part of a special task force investigating organized crime in Berlin. He comes from the east, she from the west of Berlin. He's a redneck, she's from a better background. This causes conflict. Over time, things start to sizzle between the two. Their team includes the agile German-Turkish Yücsel and the sluggish Georg, who, like Verena and Otto, are constantly bickering. The department manager is Lothar Reddemann. Sputnik is a former colleague of Otto's from the People's Police and is constantly coming up with new business ideas for stores and pubs where the team meets.", + "posterPath": "/wrLDjgOHk0MLQNSdAs1vzUOMuQc.jpg", + "backdropPath": "/4AChEz1ohSgUHuLyhlw7oKTXURe.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1994-03-28", + "releaseYear": "1994", + "originalLanguage": "de", + "voteAverage": 5.5, + "voteCount": 10, + "popularity": 5.541 + }, + { + "id": 78154, + "title": "My Brilliant Friend", + "originalTitle": "L'amica geniale", + "overview": "When the most important friend in her life seems to have disappeared without a trace, Elena Greco, a now-elderly woman immersed in a house full of books, turns on her computer and starts writing the story of their friendship.", + "posterPath": "/73JsZG2jXe5yYZ5k49HP8oPh7rq.jpg", + "backdropPath": "/iIYR1FuBD5ma2L2KjbHHWYgFu6Y.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-11-27", + "releaseYear": "2018", + "originalLanguage": "it", + "voteAverage": 8.1, + "voteCount": 216, + "popularity": 5.5369 + }, + { + "id": 73933, + "title": "Our Story", + "originalTitle": "Bizim Hikaye", + "overview": "Filiz is a young girl who has been forced to take care of her five younger siblings since her mother left them. Her father Fikri is an alcoholic man who causes different problems for the family now and again. Despite the fact that they are struggling to survive in a very poor neighborhood of Istanbul, the six siblings try to keep each other happy. Filiz believes that there is no place for love in her life until she meets Barış, a young man who does anything for Filiz and her family, just to win Filiz's heart. Adaptation of the world-famous series \"Shameless\"", + "posterPath": "/wBIJQ5D2cKuFggEeljt9zSYAWd4.jpg", + "backdropPath": "/cKYQKh39NHV10rhbiYRWjaY1zqp.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 35 + ], + "genres": [ + "Family", + "Drama", + "Comedy" + ], + "releaseDate": "2017-09-14", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 22, + "popularity": 5.5369 + }, + { + "id": 128015, + "title": "Wrong Side of the Tracks", + "originalTitle": "Entrevías", + "overview": "When his teenage granddaughter falls victim to the drug dealers overtaking his neighborhood, a fed-up war veteran takes matters into his own hands.", + "posterPath": "/dJWFFoMgY0t6CmsbRlR2TBazfqt.jpg", + "backdropPath": "/zgSs72psNJyxu378pse71dlJiwC.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-02-01", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 7.106, + "voteCount": 81, + "popularity": 5.5296 + }, + { + "id": 34391, + "title": "Marvel's Ultimate Spider-Man", + "originalTitle": "Marvel's Ultimate Spider-Man", + "overview": "While being trained by S.H.I.E.L.D., Spider-Man battles evil with a new team of teen colleagues.", + "posterPath": "/jK3pc8XOQT8UgdvSjMFk8xLQOxE.jpg", + "backdropPath": "/gXeCzYmCRBlpbbhhKrYM1ZpIDAA.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10759, + 16, + 35, + 10751 + ], + "genres": [ + "Kids", + "Action & Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2012-04-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.682, + "voteCount": 1025, + "popularity": 5.5285 + }, + { + "id": 53193, + "title": "Hubert und Staller", + "originalTitle": "Hubert und Staller", + "overview": "A show about two Bavarian police officers, Franz Hubert and Johannes Staller, who sometimes work a bit differently. Where Franz wants to follow regulations, Johannes likes to do things his own way.", + "posterPath": "/4zMLHamR1vQivmZvGwmGwwjzns0.jpg", + "backdropPath": "/mWLOl55mHR3phqSJwcw23Rhjpjn.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 35 + ], + "genres": [ + "Crime", + "Comedy" + ], + "releaseDate": "2011-11-02", + "releaseYear": "2011", + "originalLanguage": "de", + "voteAverage": 6.1, + "voteCount": 30, + "popularity": 5.5251 + }, + { + "id": 31586, + "title": "La Reina del Sur", + "originalTitle": "La Reina del Sur", + "overview": "After years of blood, sweat and tears, a woman of humble origin ends up becoming a drug trafficking legend, with all that that means...", + "posterPath": "/1qCGOuNVOlaBb7MMDen6CLzp0UE.jpg", + "backdropPath": "/eio6VCc8mB8igvW2ShRpgIGH8nZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2011-02-28", + "releaseYear": "2011", + "originalLanguage": "es", + "voteAverage": 7.84, + "voteCount": 1932, + "popularity": 5.5234 + }, + { + "id": 35872, + "title": "The Peppercorns", + "originalTitle": "Die Pfefferkörner", + "overview": "Die Pfefferkörner is a German television series produced by Der Kinderkanal.\n\nThe peppercorns are five friends from Hamburg: Jana Holstein Coutre, Natasha \"Tascha\" Jaonzäns, Philip \"Fiete\" Overbeck, Cem Gülec and Vivien \"Vivi\" Overbeck, Fiete's eight year old sister. After school, the young detectives meet at a high level of a spice warehouse of the company Overbeck & Associates, which belongs to Fiete and Vivi's parents in the first part, but is later given to Fiete and Vivi to look after. Here, in the historic warehouse district, the five friends have their headquarters.\n\nWith smarts, combined delivery and support of the Internet, they find their cases here. The detectives convict polluters, animal dealers and drug smugglers. They also help each other with personal problems they encounter. Cem has lost his parents in a car accident and sometimes feels sad and lonely. Jana lives with her divorcee mother, a lawyer who is rarely at home. Natasha comes from Latvia. Her parents initially have very strict rules in terms of her education, that make Natasha unhappy. Fiete has problems showing his feelings and hides them behind grumpiness and hostility towards girls, until he falls in love with Natasha. Vivi is suffering from her role of the youngest member of the group. She believes that she must constantly struggle for recognition.", + "posterPath": "/7bOqE92Pef1cbnGARBYNns4bU7S.jpg", + "backdropPath": "/tIsBePt0CmRD8FQwDxvaYUML89D.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10762, + 10751, + 80 + ], + "genres": [ + "Action & Adventure", + "Kids", + "Family", + "Crime" + ], + "releaseDate": "1999-12-27", + "releaseYear": "1999", + "originalLanguage": "de", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 5.5214 + }, + { + "id": 2962, + "title": "The Mary Tyler Moore Show", + "originalTitle": "The Mary Tyler Moore Show", + "overview": "30-year-old single Mary Richards moves to Minneapolis to start a new life after a romantic break-up. There she reacquaints with Phyllis who rents her a room, and meets her upstairs neighbor and new best friend Rhoda. Mary unexpectedly lands a job as associate producer at the TV station WJM, where she works alongside her bristly boss, Lou; the comical newswriter, Murray; and the newscast's often-incompetent anchor, Ted.", + "posterPath": "/nFsgsmK7isjtdEVTL35mJEQZHuO.jpg", + "backdropPath": "/hiReFpcc4NZOZdbtyOYrcZ5vCv3.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1970-09-19", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 77, + "popularity": 5.5211 + }, + { + "id": 9307, + "title": "På spåret", + "originalTitle": "På spåret", + "overview": "På spåret is a popular Swedish TV game show broadcast on SVT since September 5, 1987. The show, which is intended to be humorous yet educational, has remained one of the most popular TV shows in Sweden, attracting an average of 2,150,000 viewers during the 2007 season. The all-time record was set in March 1990, when 3.7 million people tuned in to see the show. This means that nearly every second Swede saw the game show.\n\nPå spåret is an original format developed by Ingvar Oldsberg for SVT, and he hosted the show for many years. Author and tennis legend Björn Hellberg was promoted from contestant to permanent Oldsberg sidekick in 1995 after winning for four straight seasons. Famous gourmet, restaurant-owner, and former contestant Carl-Jan Grankvist sat in for Hellberg during the 2004 season.\n\nIn 2009, after 21 years, Oldsberg left and Kristian Luuk took over as the host. Björn Hellberg too decided to leave and was replaced with Fredrik Lindström.", + "posterPath": "/zmWIrDPXKmnx4bgM643bqL1oOic.jpg", + "backdropPath": "/bUxxfA56Lq363y3FER9kVOfW1Lc.jpg", + "mediaType": "tv", + "genreIds": [ + 10751 + ], + "genres": [ + "Family" + ], + "releaseDate": "1987-09-05", + "releaseYear": "1987", + "originalLanguage": "sv", + "voteAverage": 6.5, + "voteCount": 13, + "popularity": 5.5199 + }, + { + "id": 129888, + "title": "Twenty Five Twenty One", + "originalTitle": "스물다섯 스물하나", + "overview": "In a time when dreams seem out of reach, a teen fencer pursues big ambitions and meets a hardworking young man who seeks to rebuild his life.", + "posterPath": "/yCQFnmYhYf7XALMka2EoBRAFmPO.jpg", + "backdropPath": "/ychZ9FokohTrfC3ioaTBTywfKTq.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-02-12", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.4, + "voteCount": 296, + "popularity": 5.5198 + }, + { + "id": 3461, + "title": "Dharma & Greg", + "originalTitle": "Dharma & Greg", + "overview": "Dharma & Greg is an American television sitcom that aired from September 24, 1997, to April 30, 2002.\n\nIt stars Jenna Elfman and Thomas Gibson as Dharma and Greg Montgomery, a couple who got married on their first date despite being complete opposites. The series is co-produced by Chuck Lorre Productions, More-Medavoy Productions and 4 to 6 Foot Productions in association with 20th Century Fox Television for ABC. The show's theme song was written and performed by composer Dennis C. Brown.\n\nCreated by executive producers Dottie Dartland and Chuck Lorre, the comedy took much of its inspiration from so-called culture-clash \"fish out of water\" situations. The show earned eight Golden Globe nominations, six Emmy Award nominations, and six Satellite Awards nominations. Elfman earned a Golden Globe in 1999 for Best Actress.", + "posterPath": "/zmafXjaQphnyHZ8oF3Q51DDIRWZ.jpg", + "backdropPath": "/5PNMnVfIol6CCfrU39hE9azZiIn.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1997-09-24", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.381, + "voteCount": 268, + "popularity": 5.516 + }, + { + "id": 116386, + "title": "Doom at Your Service", + "originalTitle": "어느 날 우리 집 현관으로 멸망이 들어왔다", + "overview": "A woman with only a short time to live and a man with the supernatural power to bring the world to an end discover the true meaning of life and love.", + "posterPath": "/tgsWD4dJI5YFY8Kyk6vVjZoIKfO.jpg", + "backdropPath": "/uMLihaxfbeCvraDmER37t2jTNKi.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-05-10", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 7.9, + "voteCount": 500, + "popularity": 5.5157 + }, + { + "id": 2443, + "title": "Buck Rogers in the 25th Century", + "originalTitle": "Buck Rogers in the 25th Century", + "overview": "20th-century astronaut Buck Rogers awakens in the 25th century after a freak accident puts him in suspended animation for 500 years. Upon returning to Earth and discovering the planet is recovering from a nuclear war, Buck uses his combat skills and ingenuity to protect Earth and fight evil throughout the galaxy alongside starfighter pilot Colonel Wilma Deering and robot companion Twiki.", + "posterPath": "/1SgcheHtEcacQxRFKpIuP0jYw6u.jpg", + "backdropPath": "/9hjHVwtHFt03Y6kS9yFXoBI4WK0.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1979-09-20", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 123, + "popularity": 5.5156 + }, + { + "id": 11978, + "title": "The Name of the Game", + "originalTitle": "The Name of the Game", + "overview": "The Name of the Game is an American television series starring Tony Franciosa, Gene Barry, and Robert Stack that ran from 1968 to 1971 on NBC, totaling 76 episodes of 90 minutes. It was a pioneering wheel series, setting the stage for The Bold Ones and the NBC Mystery Movie in the 1970s. The show had an extremely large budget for a television series.", + "posterPath": "/tc5VyBM94h8GJ3Z5MvyemSFiESO.jpg", + "backdropPath": "/7TNIH7x3l3jSQfOZEW9F0kJrT7M.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1968-09-20", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 5.5145 + }, + { + "id": 320, + "title": "Fear Factor", + "originalTitle": "Fear Factor", + "overview": "Competition reality series in which contestants must decide if they have the guts and determination to face their fears while outpacing the competition.", + "posterPath": "/A9FxroNWtOxiApMPxOHbZUWJoaB.jpg", + "backdropPath": "/tjH61YOH8DksSyWRVcrWzVLcEU6.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2001-06-11", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 65, + "popularity": 5.5103 + }, + { + "id": 400, + "title": "Shark", + "originalTitle": "Shark", + "overview": "Notorious Los Angeles defense attorney Sebastian Stark becomes disillusioned with his career after his successful defense of a wife-abuser results in the wife's death. After more than a month trying to come to grips with his situation, he is invited by the Los Angeles district attorney to become a public prosecutor so he can apply his unorthodox-but-effective talents to putting guilty people away instead of putting them back on the street.", + "posterPath": "/Ahxpbk4Uu6zs1DgAbgfU80eHerx.jpg", + "backdropPath": "/yqbIAJBoZ6DTHsOOiyppg79go3x.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2006-09-21", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 97, + "popularity": 5.5085 + }, + { + "id": 79746, + "title": "Explained", + "originalTitle": "Explained", + "overview": "This documentary series, made in partnership with Vox, explain some of the world's current trends, from politics, to science to pop culture.", + "posterPath": "/4iiV2Fh4EA5of5B9Wtgllu0WDWA.jpg", + "backdropPath": "/uGL51pEZZPaxickbjWjsQaXDXWq.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2018-05-23", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.504, + "voteCount": 118, + "popularity": 5.508 + }, + { + "id": 240667, + "title": "One Day", + "originalTitle": "One Day", + "overview": "After spending graduation night together, Emma and Dexter go their separate ways — but their lives remain intertwined.", + "posterPath": "/smBWt8rHCCavV88C5gQVjh0NUFa.jpg", + "backdropPath": "/4zP0CfrUBQFWMlWoB4p8aS4D4IA.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-02-08", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.626, + "voteCount": 266, + "popularity": 5.5079 + }, + { + "id": 365, + "title": "Jericho", + "originalTitle": "Jericho", + "overview": "Jericho is an American action/drama series that centers on the residents of the fictional town of Jericho, Kansas, in the aftermath of nuclear attacks on 23 major cities in the contiguous United States.", + "posterPath": "/a57H9UsS388Av2LSLKO9inNmY7j.jpg", + "backdropPath": "/6GIf7uiQ4Y5xPzIRkTct2NIyBqK.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 9648, + 37 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Mystery", + "Western" + ], + "releaseDate": "2006-09-20", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.397, + "voteCount": 511, + "popularity": 5.5071 + }, + { + "id": 29602, + "title": "Major", + "originalTitle": "メジャー", + "overview": "Honda Goro the son of a famous baseball player loves nothing more than baseball itself. His biggest dream is to show his father that he can become the best pitcher in the world despite all the hardships he had to endure he keeps on running towards his goal at full speed.", + "posterPath": "/nvVfxP9GiWMXct2ZJOXFF4l7dn.jpg", + "backdropPath": "/ks0KMwgv05PLZW95H8u1zji9BC5.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2004-11-13", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 19, + "popularity": 5.5053 + }, + { + "id": 61593, + "title": "Mr. Pickles", + "originalTitle": "Mr. Pickles", + "overview": "The Goodman family lives with their lovable pet dog, Mr. Pickles, a deviant border collie with a secret satanic streak.", + "posterPath": "/bSWmZnvXIOoqZ7eLderyInsouiF.jpg", + "backdropPath": "/73LbmgVYOVo3Jkyol1r8LVhOyYZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2014-09-21", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.158, + "voteCount": 831, + "popularity": 5.5037 + }, + { + "id": 42004, + "title": "Comic Book Men", + "originalTitle": "Comic Book Men", + "overview": "A show for Fanboys by Fanboys. Set in uber-geek Kevin Smith's iconic comic shop Jay and Silent Bob's Secret Stash, the show explores every nook and cranny of Fanboy culture from A to Z. Endless circular debates about the technical accuracy of the USS Enterprise's warp-core schematics? Snarky comic aficionados with an encyclopedic knowledge of every Marvel back issue? You bet.", + "posterPath": "/z9F78WN0li22U5G2unZ7eJ2jmIK.jpg", + "backdropPath": "/8o2QX6LkieNEDhaSc0ZEiGQqC25.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2012-02-12", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 61, + "popularity": 5.5007 + }, + { + "id": 219971, + "title": "The Agency: Central Intelligence", + "originalTitle": "The Agency: Central Intelligence", + "overview": "Covert CIA agent Martian is ordered to abandon his undercover life and return to London Station. When the love he left behind unexpectedly reappears, their romance reignites, pitting his career, his real identity and his mission against his heart while hurling them both into a deadly game of international intrigue and espionage.", + "posterPath": "/fDZgOeTiplrl0skvK6IIyejHLQF.jpg", + "backdropPath": "/fNA0mMdHlRwVrQSRlYONmSAO8Su.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2024-12-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.176, + "voteCount": 177, + "popularity": 5.4994 + }, + { + "id": 70047, + "title": "Rapunzel's Tangled Adventure", + "originalTitle": "Rapunzel's Tangled Adventure", + "overview": "Set between “Tangled” and “Tangled Ever After,” this animated adventure/comedy series unfolds as Rapunzel acquaints herself with her parents, her kingdom and the people of Corona.", + "posterPath": "/s12Z2uGrvjj5sA7LsBStTtfTYjC.jpg", + "backdropPath": "/4aZJbmmLsWqMhYUOjBbB3308c7.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Comedy" + ], + "releaseDate": "2017-03-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 97, + "popularity": 5.4974 + }, + { + "id": 255752, + "title": "Haunted Hotel", + "originalTitle": "Haunted Hotel", + "overview": "After inheriting a hotel from her late brother, a single mom moves in with his good-natured ghost — and high-maintenance guests who will never check out.", + "posterPath": "/4arTlVw8oceZDOhGv9GFrgGztUq.jpg", + "backdropPath": "/qQ4tWKwP5wPRyZGxXkiSkKYqzgm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-09-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.136, + "voteCount": 55, + "popularity": 5.4935 + }, + { + "id": 90812, + "title": "Industry", + "originalTitle": "Industry", + "overview": "In the cutthroat world of international finance, a group of young graduates compete for a limited set of permanent positions at a top investment bank in London. The boundaries between colleague, friend, lover, and enemy soon blur as they immerse themselves in a company culture defined as much by sex, drugs and ego as it is by deals and dividends.", + "posterPath": "/eNg2mzkliMHwrQN8ayPGesoWTOR.jpg", + "backdropPath": "/yNaVmgtVRE4Wb1zPeArcRzREZuc.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-11-09", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.82, + "voteCount": 217, + "popularity": 5.491 + }, + { + "id": 431, + "title": "One on One", + "originalTitle": "One on One", + "overview": "A sportscaster becomes a full-time dad when his ex-wife decides to accept a job out of the country and his teenage daughter, Breanna, moves in with him.", + "posterPath": "/wrPeock4PW1VV2bw8k1TuGet8hX.jpg", + "backdropPath": "/htCFjaC5w7NY3wnMTPuPMsoM5WH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2001-09-03", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 33, + "popularity": 5.4896 + }, + { + "id": 896, + "title": "The Lost World", + "originalTitle": "The Lost World", + "overview": "Early 20th-century adventurers find themselves fighting for survival after their hot-air balloon crashes into a remote part of the Amazon, stranding them on a prehistoric plateau.", + "posterPath": "/iCpCsyJ1CYLQOp4y52ctrAco9oj.jpg", + "backdropPath": "/ovq59utLtOqqMBphohyKqvVqfpb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1999-04-03", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.14, + "voteCount": 125, + "popularity": 5.487 + }, + { + "id": 130853, + "title": "Bad Monkey", + "originalTitle": "Bad Monkey", + "overview": "A detective turned restaurant inspector in Southern Florida is pulled into a world of greed and corruption after a tourist finds a severed arm while fishing. And yes, there's a monkey.", + "posterPath": "/lUGG3lxIF3f2N796t4aHmxDhLK5.jpg", + "backdropPath": "/yj8g84iczcJVg3zCxVGpfdEMMxg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80 + ], + "genres": [ + "Comedy", + "Crime" + ], + "releaseDate": "2024-08-13", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 175, + "popularity": 5.4867 + }, + { + "id": 85720, + "title": "Shadow and Bone", + "originalTitle": "Shadow and Bone", + "overview": "In a world cleaved in two by a massive barrier of perpetual darkness, a young soldier uncovers a power that might finally unite her country. But as she struggles to hone her power, dangerous forces plot against her. Thugs, thieves, assassins and saints are at war now, and it will take more than magic to survive.", + "posterPath": "/mS9O9mjPlwpLTne4JgQlDkgREWA.jpg", + "backdropPath": "/qzSjrYSZAWrjhg6Yf3hCcfJE4o0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-23", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.801, + "voteCount": 1496, + "popularity": 5.4857 + }, + { + "id": 2131, + "title": "Daria", + "originalTitle": "Daria", + "overview": "After moving to a new town with her stressed-out parents and relentlessly popular little sister, Daria uses her acerbic wit and keen powers of observation to contend with the mind-numbingly ridiculous world of Lawndale High.", + "posterPath": "/w1Z3VI1aunE4yy88USAhGGVdazo.jpg", + "backdropPath": "/AelRiewpDPxMiEALf8GtnHxle9b.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "1997-03-03", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 643, + "popularity": 5.4843 + }, + { + "id": 202097, + "title": "Accused", + "originalTitle": "Accused", + "overview": "In this crime anthology series, viewers discover how an ordinary person got caught up in an extraordinary situation, ultimately revealing how one wrong turn leads to another, until it’s too late to turn back. Told from the defendant’s point of view, each episode opens in a courtroom on the accused without knowing their crime or how they ended up on trial.", + "posterPath": "/w0zeTmejqPqVw07jVDkeQqJvxqq.jpg", + "backdropPath": "/daVf1WxVes9ZaC6jToZgq9ulqEz.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2023-01-22", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.069, + "voteCount": 65, + "popularity": 5.4823 + }, + { + "id": 135238, + "title": "Gyeongseong Creature", + "originalTitle": "경성크리처", + "overview": "Gyeongseong, 1945. In Seoul's grim era under colonial rule, an entrepreneur and a sleuth fight for survival and face a monster born out of human greed.", + "posterPath": "/5wliFAD8Pjjj0YYSmupqjOldnWt.jpg", + "backdropPath": "/peVe0NQNdZMXwtTohnv8iwJQb2d.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-12-22", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8, + "voteCount": 288, + "popularity": 5.4814 + }, + { + "id": 61679, + "title": "A Guy, a Girl", + "originalTitle": "Un gars, une fille", + "overview": "This series tells the daily life of a couple : Jean and Alexandra. From easy cases: in bed, in the living room, in the kitchen, by phone... to rare ones: lost on an island or in the country, in Hong Kong, during a wedding... Jean and Alexandra's life is not exactly a long, quiet river.", + "posterPath": "/fZlNkeGfPkatdWiuHdL6y2JUrzv.jpg", + "backdropPath": "/pvc6pcJFyLERf3M47IK8lUyXDN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1999-10-11", + "releaseYear": "1999", + "originalLanguage": "fr", + "voteAverage": 6.6, + "voteCount": 66, + "popularity": 5.4811 + }, + { + "id": 4040, + "title": "New York Undercover", + "originalTitle": "New York Undercover", + "overview": "New York Undercover is an American police drama The series stars Detective J.C. Williams and Detective Eddie Torres, two undercover detectives in New York City's Fourth Precinct who were assigned to investigate various crimes and gang-related cases.", + "posterPath": "/14dtuuJXd3drJZISX4FGbcfOPOv.jpg", + "backdropPath": "/pLC7Iv0YyEn6L1uwgNs4z4hIJyf.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1994-09-08", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 35, + "popularity": 5.4806 + }, + { + "id": 3219, + "title": "Murphy Brown", + "originalTitle": "Murphy Brown", + "overview": "Murphy Brown (Candice Bergen) is a recovering alcoholic who returns to the fictional newsmagazine FYI for the first time following a stay at the Betty Ford Clinic residential treatment center. Over 40 and single, she is sharp tongued and hard as nails. In her profession, she is considered one of the boys, having shattered many glass ceilings encountered during her career. Dominating the FYI news magazine, she is portrayed as one of America's hardest-hitting (though not the warmest or more sympathetic) media personalities.", + "posterPath": "/o3y2BwrzJQPojl0ZaqNq8O9VDFq.jpg", + "backdropPath": "/9RObwcfeRVQHm8ekcXBdPW28lJu.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1988-11-14", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.373, + "voteCount": 75, + "popularity": 5.4803 + }, + { + "id": 46938, + "title": "Moonzy", + "originalTitle": "Лунтик и его друзья", + "overview": "\"The Adventures of Luntik\" or simply \"Luntik\" is a Russian animated series for children of preschool age. It is the story of a small fluffy creature, Luntik, who was born on the Moon and fell from it, on to the Earth. Luntik is the main character and each episode features a story about him and his friends. Luntik is new to the Earth and in each episode he learns something about this new world. He meets new friends, learns how to be polite and even gets a family. The majority of the characters in the series are small animals: insects, fish, frogs, bees, grasshoppers, ladybugs etc. The show features both adult and children characters. The series are shown from the child's perspective and the stories are very kind and warm. Even the \"villains\" of the series - two caterpillars - are just a couple of mischievous kids. Each episode is only 6 minutes long and has a finished story line.", + "posterPath": "/ikDr9Ua8dglQczEDqzNvnOVyIBL.jpg", + "backdropPath": "/tVsrQ1nu3k0Y5H999bcpTCnf9LT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2006-09-01", + "releaseYear": "2006", + "originalLanguage": "ru", + "voteAverage": 4.5, + "voteCount": 13, + "popularity": 5.4802 + }, + { + "id": 84669, + "title": "The Quintessential Quintuplets", + "originalTitle": "五等分の花嫁", + "overview": "Fuutarou Uesugi is a poor, antisocial ace student who one day meets the rich transfer student Itsuki Nakano. They argue but when Uesugi realizes he is to be her tutor, he tries to get on better terms. While trying to do so he meets four other girls.", + "posterPath": "/mrahUSmFjae8UHtlOcZ58ytmAGu.jpg", + "backdropPath": "/uuqVT15I6P4ow7NS0stu7aM2X5w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2019-01-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 730, + "popularity": 5.4791 + }, + { + "id": 221300, + "title": "FUBAR", + "originalTitle": "FUBAR", + "overview": "When a father and daughter discover they both secretly work for the CIA, their high-stakes missions get tangled up with awkward family dynamics.", + "posterPath": "/6fM34tcGFp3A0csyxJJomknZB4b.jpg", + "backdropPath": "/cgA0ffyHviUaRw0Fj9OgRv2xzUj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 35 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2023-05-25", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.638, + "voteCount": 484, + "popularity": 5.4786 + }, + { + "id": 2263, + "title": "Friday the 13th: The Series", + "originalTitle": "Friday the 13th: The Series", + "overview": "Micki and Ryan with the help of their friend Jack try to recover cursed antiques so they can store them in safety inside the antique store's vault.", + "posterPath": "/5ZeRbDf4cSUQb3m7dMZZ6AxyM93.jpg", + "backdropPath": "/rPzH5zMkQpDQSo9153yQTg0udeq.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765, + 18 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1987-10-03", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 224, + "popularity": 5.4769 + }, + { + "id": 91602, + "title": "Modern Love", + "originalTitle": "Modern Love", + "overview": "An unlikely friendship. A lost love resurfaced. A marriage at its turning point. A date that might not have been a date. An unconventional new family. These are unique stories about the joys and tribulations of love, each inspired by true events.", + "posterPath": "/cP9CJ9nvPT3cnnBSlGFgwq7odIR.jpg", + "backdropPath": "/mFnsjG9G7fkjhwrcmgBEOSrwbdu.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-10-18", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.329, + "voteCount": 360, + "popularity": 5.4762 + }, + { + "id": 246461, + "title": "Sherlock & Daughter", + "originalTitle": "Sherlock & Daughter", + "overview": "Sherlock Holmes faces a sinister case risking friends' lives. American Amelia joins, seeking her father after her mother's murder. Despite differences, they solve a conspiracy and her mother's case.", + "posterPath": "/ifh5NNMzUEqErsHmeKjjGblbOav.jpg", + "backdropPath": "/uZf1hJBTwcOVX0GSAm7BRuWEuEm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-04-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.892, + "voteCount": 38, + "popularity": 5.4731 + }, + { + "id": 9834, + "title": "Little Bear", + "originalTitle": "Little Bear", + "overview": "Follows a young bear as he goes on exciting adventures in the forest, gets into trouble and learns new things with his friends, including Emily, Duck, Hen, Cat, and Owl. His parents are Mother Bear, who is always there when he needs her, and Father Bear, a fisherman who is often at sea. Based on books by Else Holmelund Minarik.", + "posterPath": "/bLm7pkUAoi2AGsnPXrPnZ3ErlKs.jpg", + "backdropPath": "/aSvHDKF7qk367U4CmqoRthQ9T4t.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 18, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Drama", + "Kids" + ], + "releaseDate": "1995-11-06", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 48, + "popularity": 5.4709 + }, + { + "id": 503, + "title": "Family Affair", + "originalTitle": "Family Affair", + "overview": "Family Affair is an American sitcom that aired on CBS from September 12, 1966 to September 9, 1971. The series explored the trials of well-to-do civil engineer and bachelor Bill Davis as he attempted to raise his brother's orphaned children in his luxury New York City apartment. Davis' traditional English gentleman's gentleman, Mr. Giles French, also had adjustments to make as he became saddled with the responsibility of caring for 15-year-old Cissy and the 6-year-old twins, Jody and Buffy.\n\nThe show ran for 138 episodes. Family Affair was created and produced by Don Fedderson, also known for My Three Sons and The Millionaire.", + "posterPath": "/ox29HlZkjVPAihnIr1tIL9fWcp9.jpg", + "backdropPath": "/okAjTwGuB0LfWCNiXrDnArOHhsX.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1966-09-12", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 6.654, + "voteCount": 39, + "popularity": 5.4705 + }, + { + "id": 126167, + "title": "Vigil", + "originalTitle": "Vigil", + "overview": "The mysterious disappearance of a Scottish fishing trawler and a death on-board the submarine HMS Vigil bring the police into conflict with the Navy and British security services. DCI Amy Silva and DS Kirsten Longacre lead an investigation on land and at sea into a conspiracy that goes to the very heart of Britain’s national security.", + "posterPath": "/5zAheY0Upi2MwU3edGtEgb7Ldh3.jpg", + "backdropPath": "/rRHolFUn9yAxhGKs8K5g7NGGpDF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2021-08-29", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.164, + "voteCount": 241, + "popularity": 5.469 + }, + { + "id": 7821, + "title": "El Chavo: The Animated Series", + "originalTitle": "El Chavo Animado", + "overview": "El Chavo Animado is a Mexican animated series based on a live-action TV series of the same name, created by Roberto Gómez Bolaños.", + "posterPath": "/xeDaYUWycTmk4yQ0WAZzQvk38af.jpg", + "backdropPath": "/hAAQlQfCwRfHWftE3vuHe5nDq5a.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "2006-10-21", + "releaseYear": "2006", + "originalLanguage": "es", + "voteAverage": 7.624, + "voteCount": 518, + "popularity": 5.4675 + }, + { + "id": 247704, + "title": "Red Eye", + "originalTitle": "Red Eye", + "overview": "London police officer DC Hana Li is escorting Dr Matthew Nolan back to Beijing where he has been accused of a crime. However, on board flight 357, she finds herself embroiled in an escalating conspiracy and a growing number of murders.", + "posterPath": "/hmNbB68i1zQ7xq7MY82eBujziYF.jpg", + "backdropPath": "/5HLYXBdv705UIcHeyuNjvolFz12.jpg", + "mediaType": "tv", + "genreIds": [ + 10759 + ], + "genres": [ + "Action & Adventure" + ], + "releaseDate": "2024-04-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 79, + "popularity": 5.4671 + }, + { + "id": 89456, + "title": "Primal", + "originalTitle": "Primal", + "overview": "A caveman forms a bond with a dinosaur as they struggle to survive in a hostile world.", + "posterPath": "/ebupzTwgP8nBy0T5J3abqTqUMjK.jpg", + "backdropPath": "/zBfnpI8883yeQkXK2kpLavHv9Yw.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2019-10-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.624, + "voteCount": 1476, + "popularity": 5.4635 + }, + { + "id": 59659, + "title": "Halt and Catch Fire", + "originalTitle": "Halt and Catch Fire", + "overview": "During the rise of the PC era in the early 1980s, an unlikely trio - a visionary, an engineer and a prodigy - take personal and professional risks in the race to build a computer that will change the world as they know it.", + "posterPath": "/AtKo2gANo2QBgZN9ebTAa8hXnvv.jpg", + "backdropPath": "/o35U5p9J3eDsqrgfCpYUOO2lsuG.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-06-01", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 529, + "popularity": 5.4627 + }, + { + "id": 154526, + "title": "MF GHOST", + "originalTitle": "MFゴースト", + "overview": "Japan adopts self-driving electric automobiles and renders most gas engines obsolete by 202X. The fastest cars find new life in the MFG, a racing circuit held on Japanese motorways. Drivers from around the world race for a shot at the title. Kanata Rivington returns from Britain to Japan for the MFG—and to find his father. Can he win the title and find answers? Buckle up and push it to the limit!", + "posterPath": "/jqkDWnBDltFCjAdhxCqUWg9GXFB.jpg", + "backdropPath": "/qEqLerjgjX9BL1fsqRc4MoWzqIU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2023-10-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 31, + "popularity": 5.462 + }, + { + "id": 1533, + "title": "Caméra Café", + "originalTitle": "Caméra Café", + "overview": "The coffee machine of a small company is the scene of discussions between employees. Private life, professional life, gossip, mockery, ... everything goes!", + "posterPath": "/1kd7wM61z4qmmjiuN2ZzgTJp07.jpg", + "backdropPath": "/azB11aE39kvVCaZtLByZMWRMcHU.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2001-10-29", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 6.8, + "voteCount": 48, + "popularity": 5.4613 + }, + { + "id": 62521, + "title": "Acacias 38", + "originalTitle": "Acacias 38", + "overview": "Acacias 38, the address of a stately apartment building where our stories unfold, is set in 1899 and tells the story of a group of maids and the bourgeois families they serve, in a single block in a distinguished neighborhood of a large Spanish city. Two worlds colliding in a universe of crossed lives.", + "posterPath": "/uApImWv5VMhXKvv543EvJlAN29O.jpg", + "backdropPath": "/p1vfmHHZkxCaTFDXjYNGB3WSkak.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-04-15", + "releaseYear": "2015", + "originalLanguage": "es", + "voteAverage": 5.9, + "voteCount": 14, + "popularity": 5.4587 + }, + { + "id": 62741, + "title": "Kamisama Kiss", + "originalTitle": "神様はじめました", + "overview": "Nanami was just a normal high school girl down on her luck until a stranger’s lips marked her as the new Land God and turned her world upside down. Now, she’s figuring out the duties of a deity with the help of Tomoe, a reformed fox demon who reluctantly becomes her familiar in a contract sealed with a kiss. The new responsibilities—and boys—are a lot to handle, like the crow demon masquerading as a gorgeous pop idol and the adorable snake spirit who’s chosen the newly minted god to be his bride. As the headstrong Tomoe tries to whip her into shape, Nanami finds that love just might have cute, pointed fox ears. With romance in the air, will the human deity be able to prove herself worthy of her new title?", + "posterPath": "/5E7GL8KxpFemEFl3Lv8Fu4RuSwa.jpg", + "backdropPath": "/cttisz5q4LHwyRYlIj9S7oQa27v.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-02", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.643, + "voteCount": 984, + "popularity": 5.457 + }, + { + "id": 88786, + "title": "Victor and Valentino", + "originalTitle": "Victor and Valentino", + "overview": "Two half-brothers spend a summer with their grandma in Monte Macabre, a small and mysterious town, where the myths and legends of Latin American folklore come to life.", + "posterPath": "/4EmKaihMUGP8hyEvvTApQj19e1c.jpg", + "backdropPath": "/1BYZhnQMhUZ7XJ6SQfNoRgNw20e.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Mystery" + ], + "releaseDate": "2019-03-30", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 18, + "popularity": 5.4567 + }, + { + "id": 64387, + "title": "The Girlfriend Experience", + "originalTitle": "The Girlfriend Experience", + "overview": "Explore the relationships between exclusive escorts and their clients, for whom they provide far more than just sex. Known as GFEs, they are women who provide “The Girlfriend Experience”—emotional and sexual relationships at a very high price.", + "posterPath": "/vkXG4uqXQVwfwmE6CUSPFvz6MLn.jpg", + "backdropPath": "/ucZNLBOeI7s8p23z4NnzCrZhtxa.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-04-10", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 438, + "popularity": 5.4537 + }, + { + "id": 203687, + "title": "Bugs Bunny Builders", + "originalTitle": "Bugs Bunny Builders", + "overview": "At ACME Construction Company, Bugs Bunny and Lola Bunny manage an inept crew of builders. By working together as a team, Daffy Duck, Porky Pig, Tweety, and others use their tools and wild vehicles to pull off some of the looniest construction jobs ever.", + "posterPath": "/llYAgSgJBH1EnC17e2d5WnxgP5K.jpg", + "backdropPath": "/q6UJ6xZC7rf7HbVOCYenrS7lrUg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "2022-07-25", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 14, + "popularity": 5.4494 + }, + { + "id": 31718, + "title": "Darker than Black", + "originalTitle": "-黒の契約者-", + "overview": "Ten years ago, a mysterious spatial anomaly now known as \"Heaven's Gate\" appeared in South America, shortly followed by the opening of \"Hell's Gate\" in Tokyo altering the sky and wreaking havoc on the landscape. The real stars disappeared, replaced by false stars. During this time, people possessing various special abilities — called \"Contractors\" — emerged, each capable of different supernatural feats. Following the disastrous Heaven's War, the United States lost its dominant position as a superpower to a mysterious organization named the Syndicate. The story revolves around a Chinese contractor codenamed \"Hei\" as he undertakes various espionage and assassination missions in Tokyo.", + "posterPath": "/jt38E29eSAAlabamcs5pwgyY8ee.jpg", + "backdropPath": "/aigj0UYSAdi5HxE1SA4YuTtQeIl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2007-04-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 237, + "popularity": 5.4476 + }, + { + "id": 46252, + "title": "UFO Robot Grendizer", + "originalTitle": "UFOロボグレンダイザー", + "overview": "The story revolves around Duke Fleed who is a survivor of the Vega Star, raised by Dr. Umon as his adoptive son, and known as Daisuke Umon on Earth. Years after his arrival, he's faced with the threat of King Vega and his army, who want to conquer the Earth. With his friends Koji and Hikaru (and later his kid sister Maria Grace), Duke decides to fight back using his best weapon, the almighty Grendizer.", + "posterPath": "/u4ymZQgSjhJppwm38D8OFjY2mGb.jpg", + "backdropPath": "/snNdRdif3XRD91SAEZH0ppIi6t3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1975-10-05", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 74, + "popularity": 5.4453 + }, + { + "id": 61886, + "title": "The Adventures of Puss in Boots", + "originalTitle": "The Adventures of Puss in Boots", + "overview": "The world's greatest feline fighter, lover and milk connoisseur is back in this original series filled with daring adventures, great boots, and laugh-out-loud fun! The entire family will be entranced by Puss' fantastical CG world filled with new characters, exotic locations and mystical tales that make up the stuff of legends. There's nothing that can get in this celebrated swashbuckling kitty's way...except maybe a hairball.", + "posterPath": "/uHpUlyWCqXXUDY7zekQdJmf6QkP.jpg", + "backdropPath": "/nd11dhqVr4r2UVlIVjq17Sums04.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2015-01-16", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.093, + "voteCount": 86, + "popularity": 5.4446 + }, + { + "id": 5146, + "title": "The First 48", + "originalTitle": "The First 48", + "overview": "The First 48 follows detectives from around the country during these first critical hours as they race against time to find the suspect. Gritty and fast-paced, it takes viewers behind the scenes of real-life investigations with unprecedented access to crime scenes, autopsies, forensic processing, and interrogations.", + "posterPath": "/i6bSut4XPepaJ5VC6oG303iGKQU.jpg", + "backdropPath": "/esvu1XRoW7XbzDVkInUFbAYhLe4.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 18, + 80 + ], + "genres": [ + "Documentary", + "Drama", + "Crime" + ], + "releaseDate": "2004-06-03", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 98, + "popularity": 5.4423 + }, + { + "id": 284445, + "title": "Takopi's Original Sin", + "originalTitle": "タコピーの原罪", + "overview": "A Happy alien, Takopi, lands on Earth with one mission: to spread happiness! When he meets Shizuka, a lonely fourth grader, he vows to bring back her smile using his magical Happy Gadgets. But as he uncovers the pain in her life, Takopi learns that true happiness may require more than gadgets.", + "posterPath": "/xPXDVhVKt0XM34ihoUVMHtLYTw8.jpg", + "backdropPath": "/6omimfVty4JD3LXzI5LHEGhXjwn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-06-28", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.929, + "voteCount": 113, + "popularity": 5.4388 + }, + { + "id": 74577, + "title": "The End of the F***ing World", + "originalTitle": "The End of the F***ing World", + "overview": "James is 17 and is pretty sure he is a psychopath. Alyssa, also 17, is the cool and moody new girl at school. The pair make a connection and she persuades him to embark on a darkly comedic road trip in search of her real father.", + "posterPath": "/f1OV9xEJCZVYcYSDRr5xOD8NJw3.jpg", + "backdropPath": "/nfWhNM5VVd9a5bEGobs83TWTuLM.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Crime" + ], + "releaseDate": "2017-10-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.045, + "voteCount": 3419, + "popularity": 5.4384 + }, + { + "id": 68837, + "title": "Justice League Action", + "originalTitle": "Justice League Action", + "overview": "Batman, Superman and Wonder Woman lead the DC Super Heroes against their most infamous foes.", + "posterPath": "/AdTh5kAXYwo0dwHONqCFO7y8Jmf.jpg", + "backdropPath": "/7wxfLZqINx1ChephUq720oJFcKv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2016-12-16", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 88, + "popularity": 5.4369 + }, + { + "id": 66084, + "title": "Acapulco Shore", + "originalTitle": "Acapulco Shore", + "overview": "A reality-based look at the vapid lives of several Mexican 20-somethings and their respective friends and/or hook-ups during their stay in Acapulco for a Summer vacation.", + "posterPath": "/81FW5jz4smr75wNYj1loJftzFrq.jpg", + "backdropPath": "/exZrSuXA05mhklSSoZ65wT6xeNZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2014-09-27", + "releaseYear": "2014", + "originalLanguage": "es", + "voteAverage": 7.8, + "voteCount": 1002, + "popularity": 5.4362 + }, + { + "id": 155513, + "title": "GAP", + "originalTitle": "ทฤษฎีสีชมพู", + "overview": "Mon, a newly graduated student from university, starts working as an intern in a big company because she admires Sam, the super rich chairwoman since young age. However, when Mon met Sam again, her image of her completely crashed, since she was not like the media shows her.", + "posterPath": "/jF7kr8IotMYsbef1cVj6Mebvfi0.jpg", + "backdropPath": "/ecEDhvJz8EmlhO8HFLaJKw8QwHP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-11-19", + "releaseYear": "2022", + "originalLanguage": "th", + "voteAverage": 8.649, + "voteCount": 58, + "popularity": 5.4361 + }, + { + "id": 110534, + "title": "D.P.", + "originalTitle": "D.P.", + "overview": "A young private's assignment to capture army deserters reveals the painful reality endured by each enlistee during his compulsory call of duty.", + "posterPath": "/akvPsqe1u1NpIQ8Ln2Vt06uhOv9.jpg", + "backdropPath": "/yFNGc3OR81NGdJL3yZCBrjDIluf.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2021-08-27", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8, + "voteCount": 250, + "popularity": 5.4325 + }, + { + "id": 126725, + "title": "Velma", + "originalTitle": "Velma", + "overview": "Jinkies! This raucous reimagining of the Scooby-Doo franchise unravels the mysterious origins of Mystery, Inc. – as seen through the eyes of the gang’s beloved bespectacled detective Velma.", + "posterPath": "/zxkNhuPSHeDv3yA7sFu2RuEOGgR.jpg", + "backdropPath": "/dlOkqakV9AKFFUS6Sxn64VS5ffp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 80, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Crime", + "Mystery" + ], + "releaseDate": "2023-01-12", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 3.453, + "voteCount": 322, + "popularity": 5.4301 + }, + { + "id": 2126, + "title": "The Brady Bunch", + "originalTitle": "The Brady Bunch", + "overview": "When widower Mike Brady marries a lovely lady widow Carol Ann, their two families become one. These are the misadventures of this new couple, their six children, a dog named Tiger, and quirky housekeeper Alice.", + "posterPath": "/63MN0GwbAW4Oq2VxbpZODYomMsi.jpg", + "backdropPath": "/pEjsb26MKpLzvGcg9OtLptXpNyH.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1969-09-26", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 6.722, + "voteCount": 151, + "popularity": 5.4299 + }, + { + "id": 2702, + "title": "Cybill", + "originalTitle": "Cybill", + "overview": "Cybill is an American television sitcom created by Chuck Lorre, which aired on CBS from January 2, 1995, to July 13, 1998. Starring, Cybill Shepherd, the show revolves around the life of Cybill Sheridan, a twice-divorced single mother of two and struggling actress in her 40s, who has never gotten her big show business break.", + "posterPath": "/xN3eCrHdRWY3loR5IxCJ613sGyq.jpg", + "backdropPath": "/sG0Nm2ibYRU7iBcmRL2QK7vBEnd.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1995-01-02", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 32, + "popularity": 5.4294 + }, + { + "id": 222233, + "title": "Doctor Slump", + "originalTitle": "닥터 슬럼프", + "overview": "Once rivals in school, two brilliant doctors reunite by chance — each facing life’s worst slump and unexpectedly finding solace in each other.", + "posterPath": "/iOWmbZEbhvrYyWm6O4W3oHf2S9B.jpg", + "backdropPath": "/2JMQI9dyR6wzgs8kWDiDK6Npt3j.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-01-27", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.1, + "voteCount": 121, + "popularity": 5.4293 + }, + { + "id": 45501, + "title": "Love, Chunibyo & Other Delusions!", + "originalTitle": "中二病でも恋がしたい!", + "overview": "As one of the thousands of Japanese students afflicted with \"chunibyo,\" a state where they're so desperate to stand out that they've convinced themselves that they have secret knowledge and hidden powers, Yuta spent most of his middle school years living in a complete fantasy world. He's finally managing to overcome his delusions but his chunibyo have attracted the attentions of another sufferer, and she's decided that this makes him her soul mate.", + "posterPath": "/1IapEqydEiGO0gCgBPVexTFbUCS.jpg", + "backdropPath": "/3Fn1AaIKV78nX6lsaW7f7DyI1aO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-10-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.094, + "voteCount": 406, + "popularity": 5.4289 + }, + { + "id": 45303, + "title": "Salvage Hunters", + "originalTitle": "Salvage Hunters", + "overview": "Meet modern-day treasure hunter Drew Pritchard. With demanding customers, high turnover, and one of the biggest decorative salvage yards in the UK, Drew is constantly on the road, crisscrossing the country in search of derelict gems and forgotten remnants. Drew loves the thrill of the hunt and while he gets his hands dirty in the country's architectural backwaters, his crack team of restorers is back at the shop giving old and rare finds a new lease on life.", + "posterPath": "/l01tfkunPY0LEVZiENIvVF9XOyr.jpg", + "backdropPath": "/hyQR0V7UGpkvjSQ5F4qmwtWW1sB.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 99 + ], + "genres": [ + "Reality", + "Documentary" + ], + "releaseDate": "2011-11-14", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 11, + "popularity": 5.4275 + }, + { + "id": 16399, + "title": "The Twilight Zone", + "originalTitle": "The Twilight Zone", + "overview": "A 2002 revival of Rod Serling's 1950/60s television series, The Twilight Zone, with actor Forest Whitaker assuming Serling's role as narrator and on-screen host.", + "posterPath": "/sS1ykUhvyurff4CohExIh8qYO99.jpg", + "backdropPath": "/gTUHsbKX20VAx9YJKEMWBD7prrH.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2002-09-18", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.156, + "voteCount": 112, + "popularity": 5.4266 + }, + { + "id": 123876, + "title": "Komi Can't Communicate", + "originalTitle": "古見さんは、コミュ症です。", + "overview": "At a high school full of unique characters, Tadano helps his shy and unsociable classmate Komi reach her goal of making friends with 100 people.", + "posterPath": "/xGciZiSIEmkqgcv4ouWmkhmXmPH.jpg", + "backdropPath": "/2bHGk7j4OD21qeXRRDYrKVhxzRc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-10-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.324, + "voteCount": 543, + "popularity": 5.4251 + }, + { + "id": 67063, + "title": "The OutCast", + "originalTitle": "一人之下", + "overview": "Zhang Chulan leads a very common college student's life until he finds himself caught up in a terrible incident that happened in a small village. As he was walking through a graveyard, he is assaulted by zombies. Thinking that it was over for him, a mysterious girl carrying a sword suddenly saves him and disappears.", + "posterPath": "/i3Vg5SKaWWNjMvK3CsuK5itIrzG.jpg", + "backdropPath": "/tRQMZPYWQTOygIeGZ7rmmQaeq1z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2016-07-09", + "releaseYear": "2016", + "originalLanguage": "zh", + "voteAverage": 7.1, + "voteCount": 44, + "popularity": 5.4237 + }, + { + "id": 238892, + "title": "I Parry Everything", + "originalTitle": "俺は全てを【パリイ】する〜逆勘違いの世界最強は冒険者になりたい〜", + "overview": "Noor's dead set on becoming an adventurer, even if the only skills he possesses are useless ones. Sure, he can [Parry] thousands of swords in the span of a single breath, but you need more than that if you want to be an adventurer! Right?", + "posterPath": "/nVmc8K5J7SGMlE6tA5lVzVzAzQ9.jpg", + "backdropPath": "/t324alfKvsj3OnLULib7jud9k8m.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 59, + "popularity": 5.4224 + }, + { + "id": 19836, + "title": "Magical Girl Lyrical Nanoha", + "originalTitle": "魔法少女リリカルなのは", + "overview": "Yuuno Scraia is a mage from a distant planet working to fix the problem he started when Jewel Seeds were accidentally spread around the world. In a failed attempt to seal a seed properly, he winds up on Earth in the form of a ferret. However, his battle with the seeds did not end upon reaching the Earth and he needs somebody else's help to seal the seeds for him. Takamachi Nanoha hears his telepathic cries for help and comes to his rescue. When she is given a pearl known as the Raging Heart she is able to transform into Magical Girl Lyrical Nanoha and wield a staff to fend off the evil that lies within the Seeds. In order to help Yuuno complete his mission, she needs to seal all 21 Jewel Seeds away, but Fate may be playing a hand in the matter to prevent Nanoha's goals.", + "posterPath": "/yRAqx0q58cvU9saJhvwavYF6XgV.jpg", + "backdropPath": "/4ndnfseHaE9kPC9xPp9wN7ghHHq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-02", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 19, + "popularity": 5.4197 + }, + { + "id": 4493, + "title": "Absolutely Fabulous", + "originalTitle": "Absolutely Fabulous", + "overview": "Set in the world of fashion and PR, immature fun-loving mother Edina Monsoon and her best friend Patsy drive Eddie's sensible daughter, Saffron, up the wall with their constant drug abuse and outrageous selfishness. Numerous in-jokes and heavy doses of cruel humour have made this series a cult hit in the UK and abroad.", + "posterPath": "/s6HrSQwSwtzLlJYq2yeur3J5iR9.jpg", + "backdropPath": "/Ahc9QBI1oTHkQMDza2Rr4JQWiup.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1992-11-12", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.523, + "voteCount": 173, + "popularity": 5.4156 + }, + { + "id": 4318, + "title": "Night Gallery", + "originalTitle": "Night Gallery", + "overview": "Rod Serling narrates an anthology of fantasy, horror and sci-fi stories from a set resembling a macabre museum. A chilling work of art serves as the connective link between the stories.", + "posterPath": "/d1mQiF3jKcKIZGi8LcrJ4FUNj2E.jpg", + "backdropPath": "/bC6p6I0PUqf1DMihOw2Y61gvzeb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1970-12-16", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 104, + "popularity": 5.4134 + }, + { + "id": 3876, + "title": "Dalziel & Pascoe", + "originalTitle": "Dalziel & Pascoe", + "overview": "British crime drama based on the \"Dalziel and Pascoe\" series of books by Reginald Hill, set in the fictional Yorkshire town of Wetherton. The unlikely duo of politically incorrect elephant-in-a-china-shop-copper Detective Superintendent Andrew Dalziel (pronounced Dee-ell) and his more sensitive and university educated sidekick Detective Sargent, later Detective Inspector, Peter Pascoe is always on hand to solve the classic murder mystery, while maintaining a down to earth wit and humour.", + "posterPath": "/xZT5YjP5ELKQu2ONZYKL8dAZmoF.jpg", + "backdropPath": "/nMJiIufYXzOvqg3WuLu8z6Tmuvw.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648 + ], + "genres": [ + "Crime", + "Mystery" + ], + "releaseDate": "1996-03-16", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.296, + "voteCount": 27, + "popularity": 5.4112 + }, + { + "id": 274737, + "title": "I'm the Evil Lord of an Intergalactic Empire!", + "originalTitle": "俺は星間国家の悪徳領主!", + "overview": "After a life of honesty left him betrayed, Liam is reborn into a vast interstellar empire with one goal: be the galaxy’s worst evil lord. But no matter how hard he tries to be a tyrant, his “wicked” plans keep backfiring into peace, prosperity, and adoring fans. Galactic chaos, magic, and mecha await in this hilariously misconstructed tale of a villain who can’t help but to impress.", + "posterPath": "/lSXLjmpTKRqKfjzCz0YXdvm7o4z.jpg", + "backdropPath": "/ztUSVExmR0NlyIwTVdh9qKK0HEY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.063, + "voteCount": 16, + "popularity": 5.4103 + }, + { + "id": 42511, + "title": "The Melancholy of Haruhi Suzumiya", + "originalTitle": "涼宮ハルヒの憂鬱", + "overview": "I thought that when I entered high school, my days of believing in aliens, time travelers and ESPers were going to be over. That is, until she introduced herself. Claiming to be interested in only aliens, time travelers, and ESPers, Haruhi Suzumiya was the strangest girl I've met in a long time... Before I knew what's going on, I've been dragged into her weird club, and it looks like I'm not the only one who has been drafted into this \"SOS Brigade\" of hers, because there are three other students who don't seem to be so ordinary themselves.", + "posterPath": "/bimn3hOUjibgQD6RZn8rv1jiEL6.jpg", + "backdropPath": "/gDlx60iOCQjTLH53ybjAPOUyVIp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 285, + "popularity": 5.4065 + }, + { + "id": 4442, + "title": "Brotherly Love", + "originalTitle": "Brotherly Love", + "overview": "Brotherly Love is an American sitcom that ran from September 16, 1995 to April 1, 1996, on NBC, and then moved to The WB, where it aired from September 15, 1996 until May 18, 1997. The series was created by Jonathan Schmock and Jim Vallely, and produced by Witt/Thomas Productions in association with Touchstone Television and Walt Disney Television. The primary focus of the series is on the relationship of three brothers, played by Joey Lawrence, Matthew Lawrence and Andrew Lawrence.", + "posterPath": "/6paGJlSIS1OX11LsmA1m6b4SbJt.jpg", + "backdropPath": "/j9w5Hq781dK2Y4QqwW65ivsAlEA.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1995-09-16", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 14, + "popularity": 5.4061 + }, + { + "id": 89572, + "title": "Nancy Drew", + "originalTitle": "Nancy Drew", + "overview": "Nancy Drew makes plans to leave her hometown for college, but finds herself drawn into a supernatural murder mystery instead.", + "posterPath": "/cBXeSqUE4reXkGvs3lUls8M9J72.jpg", + "backdropPath": "/jo4EZd9X4GQ8zcu2Jfi0aGExAYj.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 10765 + ], + "genres": [ + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-09", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 293, + "popularity": 5.4052 + }, + { + "id": 61617, + "title": "Over the Garden Wall", + "originalTitle": "Over the Garden Wall", + "overview": "Two brothers, Wirt and Greg, find themselves lost in the Unknown; a strange forest adrift in time. With the help of a wise old Woodsman and a foul-tempered bluebird named Beatrice, Wirt and Greg must travel across this strange land, in hope of finding their way home. Join them as they encounter surprises and obstacles on their journey through the wood.", + "posterPath": "/m3lU8n7WxzMecxKZcqhq5y5ESy.jpg", + "backdropPath": "/hozufHEzqIRpqJrlyGDqnsyFrAQ.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765, + 16, + 10751, + 35 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy", + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2014-11-03", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 8.562, + "voteCount": 1642, + "popularity": 5.3983 + }, + { + "id": 4382, + "title": "Eight Is Enough", + "originalTitle": "Eight Is Enough", + "overview": "Eight Is Enough is an American television comedy-drama series that ran on ABC from March 15, 1977, until August 29, 1981. The show was modeled after syndicated newspaper columnist Thomas Braden, a real-life parent with eight children, who wrote a book with the same name.", + "posterPath": "/grfzd62iFtkA68lRJCqMVZEVnSL.jpg", + "backdropPath": "/v2M8qSIcNDUOZ5jaRznuKaux36D.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1977-03-15", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 6.088, + "voteCount": 34, + "popularity": 5.3972 + }, + { + "id": 229480, + "title": "No Gain No Love", + "originalTitle": "손해 보기 싫어서", + "overview": "Son Hae-yeong seeks out a fake wedding with her neighbourhood convenience store employee, Kim Ji-uk, to avoid missing out on a promotion.", + "posterPath": "/ru3ZYJpzbmv2VpGsj1rmO5Hcpky.jpg", + "backdropPath": "/hZ9ZogCxUnhHGi6epCeeG9xphJj.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-08-26", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.394, + "voteCount": 250, + "popularity": 5.3951 + }, + { + "id": 877, + "title": "Caprica", + "originalTitle": "Caprica", + "overview": "Set 58 years before Battlestar Galactica, Caprica follows two rival families - the Graystones and the Adamas - as they grow, compete, and thrive in the vibrant world of the peaceful 12 Colonies, living in a society close to our own. Entangled in the burgeoning technology of artificial intelligence and robotics that will eventually lead to the creation of the Cylons, the two houses go toe-to-toe, blending action with corporate conspiracy and sexual politics.", + "posterPath": "/wGCdHYsx0aY5Z5236XTC6JQMpNn.jpg", + "backdropPath": "/1KUT5MsvWCKapd1TLVzf3xnpCev.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-01-22", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 382, + "popularity": 5.395 + }, + { + "id": 3783, + "title": "Room 222", + "originalTitle": "Room 222", + "overview": "", + "posterPath": "/gcAILcFjcpa6YQkMuwYhXBk2pog.jpg", + "backdropPath": "/8d1eC0K2HpRj9TRP0Jm9WoQh9Xj.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1969-09-11", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 18, + "popularity": 5.3946 + }, + { + "id": 14693, + "title": "The Pink Panther", + "originalTitle": "The Pink Panther", + "overview": "He's cool, he's pink, he's animated! The Pink Panther is back for more adventures, and he's brought along a few new friends and some old favorites.", + "posterPath": "/ulQ6nGkApH7gkoWIo1sGcCGPkHk.jpg", + "backdropPath": "/rMqsTrIzOaFnxiL1R2x3E2x6ZZR.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Comedy" + ], + "releaseDate": "1993-09-12", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 77, + "popularity": 5.3943 + }, + { + "id": 195459, + "title": "Ragna Crimson", + "originalTitle": "ラグナクリムゾン", + "overview": "Ragna teams up with the enigmatic Crimson to stand against the dragons menacing the world. Although Crimson’s motivations are mysterious, his goal and Ragna’s perfectly align, and together they’ll vanquish the dragons once and for all.", + "posterPath": "/oGmNWwV3wgp1DZXTOLSAYZZgh3X.jpg", + "backdropPath": "/8Tv140K71PVsiU5z0vRNrgZpKAM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-10-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 44, + "popularity": 5.3916 + }, + { + "id": 13555, + "title": "Roots", + "originalTitle": "Roots", + "overview": "The epic tale of celebrated Pulitzer-prize winning author Alex Haley's ancestors as portrayed in the acclaimed twelve hour mini-series Roots, was first told in his 1976 bestseller Roots: The Saga of an American Family. The docu-drama covers a period of history that begins in mid-1700s Gambia, West Africa and concludes during post-Civil War United States, over 100 years later. This 1977 miniseries eventually won 9 Emmy awards, a Golden Globe award, and a Peabody award, and still stands as the most watched miniseries in U.S. history.", + "posterPath": "/enNlryvjiyPLhIZNgAmzVrHGiMG.jpg", + "backdropPath": "/7Bs6CVXUmw2VJIfWLXoQd0LDlWJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1977-01-23", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 237, + "popularity": 5.3897 + }, + { + "id": 42295, + "title": "Hemlock Grove", + "originalTitle": "Hemlock Grove", + "overview": "One cannot quench his all-consuming thirst. The other cannot tame the beast clawing its way out. In the sleepy Pennsylvania village of Hemlock Grove, two young men struggle to accept painful truths: about family, themselves, the mystery of the White Tower - and a terrifying new threat so powerful it will turn them from predators into prey.", + "posterPath": "/sjGOYM7GTG03aWUZIFOUiFDTeoL.jpg", + "backdropPath": "/nGFTegLPFXH2RzqNALTTh2I1fst.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2013-04-19", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.086, + "voteCount": 543, + "popularity": 5.3878 + }, + { + "id": 97175, + "title": "Fate: The Winx Saga", + "originalTitle": "Fate: The Winx Saga", + "overview": "The coming-of-age journey of five fairies attending Alfea, a magical boarding school in the Otherworld where they must learn to master their powers while navigating love, rivalries, and the monsters that threaten their very existence.", + "posterPath": "/oHj6guMrLfQcBzo3uxwBJc8Y736.jpg", + "backdropPath": "/1DmAeDIAN6nvVpgTqiurDPUwuj7.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2021-01-22", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.983, + "voteCount": 1510, + "popularity": 5.3852 + }, + { + "id": 1063, + "title": "Samurai Champloo", + "originalTitle": "サムライチャンプルー", + "overview": "Break-dancing but fierce warrior Mugen has to deal with the cold-blooded and conceited Jin, a samurai who believes he is above all. These sworn enemies are brought together by Fuu for a special task.", + "posterPath": "/lYpHeSm7BcUxAbBx1ucuEH7oGAe.jpg", + "backdropPath": "/zsRvBsAVcJYz8wjpZnitMJz7HYr.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2004-05-20", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.302, + "voteCount": 721, + "popularity": 5.3845 + }, + { + "id": 25065, + "title": "Red Eagle", + "originalTitle": "Águila Roja", + "overview": "Red Eagle is a series of adventure and intrigue on the courage, nobility, friendship and love. The protagonist is an unsung hero of justice of the seventeenth century, known by the nickname of Red Eagle, who helps the weak and who is determined to uncover the conspiracy behind the murder of his young wife.", + "posterPath": "/rZsVB0knyB21UwFBC6Bn2p7fqcw.jpg", + "backdropPath": "/gthk97EzO4qsb8vVC5cfEVTNtD4.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "2009-02-19", + "releaseYear": "2009", + "originalLanguage": "es", + "voteAverage": 7.6, + "voteCount": 192, + "popularity": 5.3834 + }, + { + "id": 92649, + "title": "The Ghost and Molly McGee", + "originalTitle": "The Ghost and Molly McGee", + "overview": "When a curse from Scratch backfires, he finds himself forever bound to Molly. Despite that, Scratch and Molly form an unlikely friendship that guides each of them through the ups and downs of their respective worlds!", + "posterPath": "/u86g1KKPwsysQx6gA9LJt93xrtA.jpg", + "backdropPath": "/p2NeKlgduO58dORS0Fim1BXVaZu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2021-10-01", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 42, + "popularity": 5.3827 + }, + { + "id": 60929, + "title": "Black Money Love", + "originalTitle": "Kara Para Aşk", + "overview": "Ömer is a police officer. After the death of his fiancée, he suffers great pain. The body of Sibel, Ömer's fiancée, was found on the top of a cliff, in a car next to a fairly old, rich business man. After the shock of her sudden death and the accusations of his love cheating on him, Ömer realizes that there is more behind her suspicious murder", + "posterPath": "/ud39J949yldVdbmyLottd9E2VeW.jpg", + "backdropPath": "/30syjvXZ7QevfNzpSordlHh1VrM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 9648, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2014-03-12", + "releaseYear": "2014", + "originalLanguage": "tr", + "voteAverage": 8.1, + "voteCount": 43, + "popularity": 5.3825 + }, + { + "id": 31623, + "title": "Team Umizoomi", + "originalTitle": "Team Umizoomi", + "overview": "They're mini, they're mighty and they're built for math! When someone has a problem in Umi City, Milli, Geo, and Bot use their mighty math powers to help save the day!", + "posterPath": "/y090DrGOIK5LyrCq3GeA8TZZ4lY.jpg", + "backdropPath": "/pv51XFR2XdIGCXgoTxLVCxZH8IM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10751, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Family", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2010-01-25", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 40, + "popularity": 5.3815 + }, + { + "id": 98827, + "title": "Backstreet Rookie", + "originalTitle": "편의점 샛별이", + "overview": "It tells an unpredictable 24-hour love story of the four-dimensional innocent girl Jung Saet Byeol who was once a troublemaker and the adorkable caring male store manager, Choi Dae Hyun, in the context of a convenience store. They have met each other accidentally 4 years ago, back then Saet Byeol asked Dae Hyun to buy cigarettes for them. Until now, Saet Byeol comes to the convenience store Dae Hyun runs for a part-time job, their hilarious romantic story starts.", + "posterPath": "/gkNj8CuhGCHZtznyQBisrnY7mpH.jpg", + "backdropPath": "/876IYhxt8dcCuvhmeV7Pqeo30bm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-06-19", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 7.458, + "voteCount": 120, + "popularity": 5.3762 + }, + { + "id": 30745, + "title": "My Kitchen Rules", + "originalTitle": "My Kitchen Rules", + "overview": "My Kitchen Rules is an Australian competitive cooking game show broadcast on the Seven Network since 2010. The series is produced by the team who created the Seven reality show My Restaurant Rules, and was put into production based on the success of Network Ten's MasterChef Australia. My Kitchen Rules has just been renewed by the Seven Network for a fifth series.", + "posterPath": "/puMIggVFjjziprH6Deq4jqz67PL.jpg", + "backdropPath": "/54PAMB4ZxSS8KrraEPtXu4bIWjL.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2010-02-01", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 21, + "popularity": 5.375 + }, + { + "id": 92983, + "title": "Vagabond", + "originalTitle": "배가본드", + "overview": "Stuntman Cha Dal-geon gets involved in a tragic airplane crash and ends up discovering a national corruption scandal in the process. Go Hae-ri, the oldest daughter of a deceased marine, decides to work for the National Intelligence Service as a secret ops agent in order to support her mom and younger siblings, although all she wanted to do is to become a civil servant.", + "posterPath": "/8Sud9wqG7WZMXesZhPZ4lergRvp.jpg", + "backdropPath": "/h3OFv395pydjcA8WzZ9s0J9zVLM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10759 + ], + "genres": [ + "Drama", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2019-09-20", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 8.3, + "voteCount": 488, + "popularity": 5.3748 + }, + { + "id": 123403, + "title": "Pernille", + "originalTitle": "Pørni", + "overview": "Pørni is about the dilemmas that you end up in when you, to the best of your abilities, try to do the right thing for your loved ones, and yourself. In that order. Pørni has two daughters with a jerk of an ex who has moved to Copenhagen, who focuses mainly on himself.", + "posterPath": "/zmyN5Z2VIlgUhK618yE7S8H53OV.jpg", + "backdropPath": "/uTBiVyHnw9RSnzhrZqnP33Ox3zn.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2021-05-02", + "releaseYear": "2021", + "originalLanguage": "no", + "voteAverage": 7.824, + "voteCount": 37, + "popularity": 5.3746 + }, + { + "id": 321, + "title": "Voyage to the Bottom of the Sea", + "originalTitle": "Voyage to the Bottom of the Sea", + "overview": "Join the crew of the Seaview aboard their super high-tech submarine, where no mission is too dangerous and no threat is too deadly, be it enemy agents, mad scientists, deadly sea creatures, or impending nuclear disaster.", + "posterPath": "/m0NdwZheYAPCqw6aa7GASbIpDvG.jpg", + "backdropPath": "/58JWKf2FjsXwuiIS4wngeFG5A6e.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1964-09-14", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.722, + "voteCount": 124, + "popularity": 5.3715 + }, + { + "id": 1044, + "title": "Planet Earth", + "originalTitle": "Planet Earth", + "overview": "David Attenborough celebrates the amazing variety of the natural world in this epic documentary series, filmed over four years across 64 different countries.", + "posterPath": "/bNcNxUtZ520d5de5s78onoiSiwQ.jpg", + "backdropPath": "/rsQDFOcMvmX93MNot0bwLaRi9hK.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2006-03-05", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 8.597, + "voteCount": 1175, + "popularity": 5.3683 + }, + { + "id": 72710, + "title": "The Continental: From the World of John Wick", + "originalTitle": "The Continental: From the World of John Wick", + "overview": "The origin behind the iconic hotel-for-assassins through the eyes and actions of a young Winston Scott, as he's dragged into the Hell-scape of 1970's New York City to face a past he thought he'd left behind. Winston charts a deadly course through the hotel's mysterious underworld in a harrowing attempt to seize the hotel where he will eventually take his future throne.", + "posterPath": "/2urdwqEL9FRkGMKAkhfvWTALG00.jpg", + "backdropPath": "/1gajPADcRyzmYvfAefbJwhCy4bk.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2023-09-22", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.365, + "voteCount": 621, + "popularity": 5.3671 + }, + { + "id": 2160, + "title": "Alvin and the Chipmunks", + "originalTitle": "Alvin and the Chipmunks", + "overview": "Three chipmunk brothers, Alvin, Simon, and Theodore are adopted by human, Dave.", + "posterPath": "/rmx8Khnutah9dnbpkYjJZSMzSID.jpg", + "backdropPath": "/wZKmkI46gvOSgTalPKs3DEKIUbg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1983-09-17", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 79, + "popularity": 5.3663 + }, + { + "id": 15826, + "title": "1000 Ways to Die", + "originalTitle": "1000 Ways to Die", + "overview": "The science of living and the randomness of death are combined with a dash of Darwinism. Forensic experts, pathologists, toxicologists, herpetologists, and other experts offer eloquent explanations of mortality.", + "posterPath": "/yKZYX4D30R7ywy6f5yQDuXagSCr.jpg", + "backdropPath": "/2acW83vSyxGPo04eXy0ThAIvl2r.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 35 + ], + "genres": [ + "Documentary", + "Comedy" + ], + "releaseDate": "2009-02-08", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.677, + "voteCount": 424, + "popularity": 5.3651 + }, + { + "id": 115004, + "title": "Mare of Easttown", + "originalTitle": "Mare of Easttown", + "overview": "A detective in a small Pennsylvania town investigates a local murder while trying to keep her life from falling apart.", + "posterPath": "/78aK4Msbr22A5PGa6PZV0pAvdwf.jpg", + "backdropPath": "/7X1IGIl1JMJ9YFzJymCVoqZbvTR.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2021-04-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.186, + "voteCount": 1547, + "popularity": 5.3649 + }, + { + "id": 43097, + "title": "Saving Hope", + "originalTitle": "Saving Hope", + "overview": "When Charlie Harris ends up in a coma, he leaves the Hope-Zion Hospital in chaos - and his fiancée and fellow surgeon, Alex Reid, in a state of shock. As the staff of Hope-Zion races to save lives, comatose Dr. Harris wanders the halls of Hope-Zee in \"spirit\" form, not sure if he's a ghost or a figment of his own imagination.", + "posterPath": "/1OGQisCT1T5ChkzZVdFqhX4O1G.jpg", + "backdropPath": "/2fzV1ptJCbZ4xvJZrOofmjeeS5X.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2012-06-07", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 121, + "popularity": 5.3616 + }, + { + "id": 72597, + "title": "Manhunt", + "originalTitle": "Manhunt", + "overview": "Inspired by actual events, this true crime anthology series takes a deep dive into the dark, twisted minds of terrorists and follows the brave souls who hunt them down.", + "posterPath": "/9ukZcwaqcObmmxxfcIXTgVMvalJ.jpg", + "backdropPath": "/z2ZmYbhk0McewduBFtCqkmcZoqT.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648 + ], + "genres": [ + "Crime", + "Mystery" + ], + "releaseDate": "2017-08-01", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.579, + "voteCount": 495, + "popularity": 5.3599 + }, + { + "id": 63161, + "title": "Crazy Ex-Girlfriend", + "originalTitle": "Crazy Ex-Girlfriend", + "overview": "Rebecca Bunch is a successful, driven, and possibly crazy young woman who impulsively gives up everything - her partnership at a prestigious law firm and her upscale apartment in Manhattan - in a desperate attempt to find love and happiness in that exotic hotbed of romance and adventure: suburban West Covina, California.", + "posterPath": "/pvYh3fdrRvreWmqw4onWJJmRXf5.jpg", + "backdropPath": "/5rNvv9UCAjDHi69OXvKD7bDxkf7.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2015-10-12", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.799, + "voteCount": 184, + "popularity": 5.3585 + }, + { + "id": 61427, + "title": "Kingdom", + "originalTitle": "Kingdom", + "overview": "A raw family drama set against the world of Mixed Martial Arts (MMA) in Venice, California. Alvey Kulina owns Navy St. MMA with the help of his girlfriend Lisa Prince. He is willing to go through extraordinary means to make sure his fighters are taken care of, but all of this responsibility comes at a steep price. He has complicated relationships with both of his sons, Jay and Nate, who are both struggling with their own identities and places within Alvey’s life and gym.", + "posterPath": "/xkRyopANOnO60KWm6DjozXlq9w4.jpg", + "backdropPath": "/vzgIoCjNKDDpeEoDRqzTEwXPSo6.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-10-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.877, + "voteCount": 130, + "popularity": 5.3568 + }, + { + "id": 25181, + "title": "On the Case with Paula Zahn", + "originalTitle": "On the Case with Paula Zahn", + "overview": "Award winning journalist Paula Zahn unravels shocking crimes interviewing those closest to the case including lawyers, the victim's family, detectives and the convicted murderer themselves.", + "posterPath": "/5Hbir2fSCFr52t3snqMnzKRreV7.jpg", + "backdropPath": "/rtqAI6zRR8K6drC3pIMo6Z8OWnI.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 99 + ], + "genres": [ + "Crime", + "Documentary" + ], + "releaseDate": "2009-10-18", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 18, + "popularity": 5.3554 + }, + { + "id": 37290, + "title": "Inspector Montalbano", + "originalTitle": "Il Commissario Montalbano", + "overview": "Inspector Montalbano is an Italian television series produced and broadcast by RAI since 1999, based on the detective novels of Andrea Camilleri. The protagonist is Commissario Salvo Montalbano, and the stories are set in the imaginary town of Vigata, Sicily. In 2012 the series generated a prequel, Il giovane Montalbano.", + "posterPath": "/5aOkUsPOzXz0N6DHus3fJkUTF42.jpg", + "backdropPath": "/gR44F47eEgzdUK2PpcD0tNNewfq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1999-05-06", + "releaseYear": "1999", + "originalLanguage": "it", + "voteAverage": 8.357, + "voteCount": 70, + "popularity": 5.3549 + }, + { + "id": 108291, + "title": "Snowdrop", + "originalTitle": "설강화", + "overview": "In 1987, bloodied man Soo-ho jumps into a women's university dormitory in Seoul. Yeong-ro, a female student who fell in love with him at a group blind date, tends to his wounds as the dormitory is ensnared in intense surveillance. As Soo-ho's secrets unravel, he must eventually face the conflict between his heart to Yeong-ro and responsibility to his comrades, as well as to his sibling who awaits him in his home country. What will be of their fate?", + "posterPath": "/3AhTqNJVr1v7Jfplg8Y1YOzzdWE.jpg", + "backdropPath": "/dyBkTBcRIw5BC78zCauyrRm5EhJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2021-12-18", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8.492, + "voteCount": 300, + "popularity": 5.3542 + }, + { + "id": 61118, + "title": "You're the Worst", + "originalTitle": "You're the Worst", + "overview": "Narcissistic, brash, and self-destructive Jimmy Shive-Overly thinks all relationships are doomed. Cynical, people-pleasing, and stubborn Gretchen Cutler knows that relationships aren't for her. So when they meet at a wedding, it's only natural that the two of them go home together.", + "posterPath": "/whXfP89yXz4AwQ9dzWCTGcl9YvV.jpg", + "backdropPath": "/3gqDstdBLUbJ2jY3hl953iS97D4.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2014-07-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.335, + "voteCount": 236, + "popularity": 5.3496 + }, + { + "id": 254653, + "title": "The Thundermans: Undercover", + "originalTitle": "The Thundermans: Undercover", + "overview": "Twins Phoebe and Max Thunderman embark on a mission to alleviate the threat in the seaside town of Secret Shores, as well as helping Chloe develop her superhero abilities by bringing her along on their undercover mission. Chloe forms a bond with two classmates while they investigate suspicious activity coming from the local school, who don’t realize their new friend has secret powers. As the danger increases, the Thunderman trio must stay in town indefinitely, leaving the squabbling twins in charge of raising their younger sister.", + "posterPath": "/zeynuCJTLvZBpNYtAzi5clXfBiq.jpg", + "backdropPath": "/yEmGiYvCyJ32xuPZbmytTjXzF4S.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10762, + 10765 + ], + "genres": [ + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 26, + "popularity": 5.347 + }, + { + "id": 93870, + "title": "SAS Rogue Heroes", + "originalTitle": "SAS Rogue Heroes", + "overview": "The dramatised account of how the world’s greatest Special Forces unit, the SAS, was formed under extraordinary circumstances in the darkest days of World War Two.", + "posterPath": "/Tc1mRuP5QrGaetGKcitZkhTU9g.jpg", + "backdropPath": "/hGdTq9BX3DB2gwGGFMLTdipCBPk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768, + 10759 + ], + "genres": [ + "Drama", + "War & Politics", + "Action & Adventure" + ], + "releaseDate": "2022-10-30", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 162, + "popularity": 5.3467 + }, + { + "id": 64414, + "title": "Wakfu", + "originalTitle": "Wakfu", + "overview": "Follow Yogu and his friends Amalia, Evangelyne, Tristepin, Ruel and Az as they try to rescue the world of Wakfu from destruction.", + "posterPath": "/nA8Z1fq3OTE2IrM8BiWxlPmrCpU.jpg", + "backdropPath": "/794lCiKgncQg4tE2FDY8GVcEubZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2008-10-30", + "releaseYear": "2008", + "originalLanguage": "fr", + "voteAverage": 8.219, + "voteCount": 112, + "popularity": 5.3457 + }, + { + "id": 9, + "title": "Match Game", + "originalTitle": "Match Game", + "overview": "The five-day-a-week syndicated successor to the popular CBS game show, where two contestants compete to match fill-in-the-blank phrases with those of the celebrities.", + "posterPath": "/yO1yfYyHemDZAJyLNLz3tCiaNC8.jpg", + "backdropPath": "/buy1QlEVABDyC8BYqebmz7tMnEd.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "1973-07-02", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 7.792, + "voteCount": 24, + "popularity": 5.34 + }, + { + "id": 113378, + "title": "Trolls: TrollsTopia", + "originalTitle": "Trolls: TrollsTopia", + "overview": "Now that Poppy knows there are other musical trolls scattered throughout the forest, she bottles up her endless positivity and invites delegates from every troll tribe in the forest to live together in harmony in a grand experiment she calls TrollsTopia!", + "posterPath": "/idpD7RzSNelzJqBBMFWZbzMfjUu.jpg", + "backdropPath": "/iKmzTmuFyPCxrcBpD9UVbgOlYmU.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Kids" + ], + "releaseDate": "2020-11-19", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 52, + "popularity": 5.3382 + }, + { + "id": 19348, + "title": "Tiny Angels", + "originalTitle": "Chiquititas", + "overview": "The series focuses about orphans living in a manor, known as Rincón de Luz, where they're guided by a young woman that represents a maternal figure for them.", + "posterPath": "/kPOINWhhUOz4AxZAronEsffxhQ5.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 10751, + 10762, + 10766 + ], + "genres": [ + "Family", + "Kids", + "Soap" + ], + "releaseDate": "1995-08-07", + "releaseYear": "1995", + "originalLanguage": "es", + "voteAverage": 5.182, + "voteCount": 11, + "popularity": 5.3377 + }, + { + "id": 113137, + "title": "Girlfriend, Girlfriend", + "originalTitle": "カノジョも彼女", + "overview": "Naoya Mukai has loved Saki Saki since grade school, and when she finally accepts his feelings, he's at his happiest. But one day, a cute girl named Nagisa Minase confesses to him! Not wishing to choose only one over another, Naoya chooses to go out with both of them!! What will be of this love triangle that challenges morality itself?", + "posterPath": "/xuN0zBzHKyakCQFApBxRvpbKTh5.jpg", + "backdropPath": "/fq0DXgxDLgoilru3M7XVzKjGbOm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-07-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 72, + "popularity": 5.3348 + }, + { + "id": 3400, + "title": "American Dreams", + "originalTitle": "American Dreams", + "overview": "In the 1960s, a family experiences life and the struggles of the era, accompanied by the well-known pop songs of the period.", + "posterPath": "/pr3WcVn1i7mKwae84MCOW0vpLYc.jpg", + "backdropPath": "/dt9ThFDugq3ncZ1yJWn9glJo0CP.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2002-09-29", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 13, + "popularity": 5.332 + }, + { + "id": 60989, + "title": "Married at First Sight", + "originalTitle": "Married at First Sight", + "overview": "The cart comes way before the horse in the reality series \"Married at First Sight.\" Based on a hit Danish format, \"Married...\" features people who agree to participate in an extreme experiment: Each covenants legal marriage with a complete stranger. Specialists -- including a spiritualist, a relationship coach and a sociologist -- use scientific matchmaking methods to determine each couple, who will not have met or had contact with each other until the wedding day. The series then documents the relationships, including honeymoons and other relatable events of married life. After several weeks, each couple must decide whether to remain together or go their individual ways.", + "posterPath": "/tXfwttpCqqrNGu6di9BCG9wbyg0.jpg", + "backdropPath": "/vGae24hpB08QxLIiaM6p4I6a86T.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2014-07-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 41, + "popularity": 5.3283 + }, + { + "id": 87826, + "title": "Selling Sunset", + "originalTitle": "Selling Sunset", + "overview": "The elite agents at The Oppenheim Group sell the luxe life to affluent buyers in LA. Relationships are everything, and that often means major drama.", + "posterPath": "/wUtoD67q4BnRUwikUbT6M38d5oj.jpg", + "backdropPath": "/zzAPTDTHi7wrP99iD6x940wLjPy.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2019-03-22", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.482, + "voteCount": 57, + "popularity": 5.3278 + }, + { + "id": 5050, + "title": "Sea Hunt", + "originalTitle": "Sea Hunt", + "overview": "Sea Hunt is an American adventure television series that aired in syndication from 1958 to 1961 and was popular in syndication for decades afterwards. The series originally aired for four seasons, with 155 episodes produced. It stars Lloyd Bridges as ex-Navy frogman Mike Nelson, and was produced by Ivan Tors.", + "posterPath": "/5aSZlCZ0zEvww83kmFFxlbCElPf.jpg", + "backdropPath": "/1B9h8lWshSc8emaU7J3zVrWbPxV.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1958-01-04", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 18, + "popularity": 5.327 + }, + { + "id": 1938, + "title": "227", + "originalTitle": "227", + "overview": "A housewife sits on the stoop of her apartment building in a black neighborhood of Washington, D.C., and discusses all manner of things with her neighbors.", + "posterPath": "/yoIFuErMvCb4ZTSnQ079cIcWYjf.jpg", + "backdropPath": "/rSp9xdhF8PiTUUU9xmhXEjxgHLc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1985-09-14", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 40, + "popularity": 5.327 + }, + { + "id": 257790, + "title": "I'm Getting Married to a Girl I Hate in My Class", + "originalTitle": "クラスの大嫌いな女子と結婚することになった。", + "overview": "High school student Saito Hojo is set to inherit his grandfather’s major corporation. First, he must marry Akane Sakuramori, the girl he despises the most, and who hates him just as much. The two are determined to keep their unexpected marriage a secret from their classmates. But as they begin their newlywed life, the distance between them starts to close.", + "posterPath": "/k0Yb8KjspVjNlmvHNgqRRbhZ6LA.jpg", + "backdropPath": "/rn9aAeJQSXRK0FG14bFmQrktQtY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-01-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 18, + "popularity": 5.3259 + }, + { + "id": 64347, + "title": "Amachan", + "originalTitle": "あまちゃん", + "overview": "Aki Amano, a high-school girl from Tokyo moves to the Sanriku Coast in the Tohoku region to become a female diver. She becomes a local idol, then returns to Tokyo to try to become a real idol, and finally returns to Tohoku to help revitalize the area after the Great East Japan earthquake.", + "posterPath": "/xWC8HFCflXr8QN08BX7aZaYhGGS.jpg", + "backdropPath": "/jNJuW06o8DFvrz3Zcm9sKyTsRUf.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-04-01", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 10, + "popularity": 5.3252 + }, + { + "id": 95403, + "title": "The Peripheral", + "originalTitle": "The Peripheral", + "overview": "Stuck in a small Appalachian town, a young woman’s only escape from the daily grind is playing advanced video games. She is such a good player that a company sends her a new video game system to test…but it has a surprise in store. It unlocks all of her dreams of finding a purpose, romance, and glamour in what seems like a game…but it also puts her and her family in real danger.", + "posterPath": "/2e5NNQu9B1fXBNllRj8fzysCguP.jpg", + "backdropPath": "/hIZFG7MK4leU4axRFKJWqrjhmxZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2022-10-20", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.689, + "voteCount": 1236, + "popularity": 5.3241 + }, + { + "id": 912, + "title": "Ah! My Goddess", + "originalTitle": "ああっ女神さまっ", + "overview": "Keiichi Morisato is looking forward to university life. But in reality, he has no luck in anything, and he has trouble with clubs, love, etc. The truth is that he has an unlucky star above his head. One day, Keiichi is stuck watching the dorm while his sempai are away, and has a mountain of chores to do to boot. But Keiichi is a good-natured person, and is set about doing his duties. As he is about to finish his final chore, he makes a phone call to his sempai. But the words that came through the receiver are, 'Goddess Help Line.' Shortly afterwards, a beautiful goddess named Belldandy appears in front of him from the mirror of his room.", + "posterPath": "/2qX7itzAbTFVU4cpQuCkLO1VkeL.jpg", + "backdropPath": "/a75F7prY7RnACDonpUVjGTjoIKe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2005-01-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.243, + "voteCount": 37, + "popularity": 5.3229 + }, + { + "id": 118642, + "title": "Mr. & Mrs. Smith", + "originalTitle": "Mr. & Mrs. Smith", + "overview": "Meet the Smiths: two lonely strangers, John and Jane, who have given up their lives and identities to be thrown together as partners – both in espionage and in marriage.", + "posterPath": "/kvJvGxsDLi3MmHzc9nregyJtOWY.jpg", + "backdropPath": "/5mC90b2FrJMe3Xr26cL0HeWcrvG.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2024-02-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 346, + "popularity": 5.3205 + }, + { + "id": 3231, + "title": "Match of the Day 2", + "originalTitle": "Match of the Day 2", + "overview": "A light-hearted look at the United Kingdom's Premier League action, rounding-up the weekend's football action.", + "posterPath": "/ftMUYGMA45FEAlRVMnYDuYdvWN2.jpg", + "backdropPath": "/uz74E24XvlmfXhXjIenBhNpjWA5.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 10763 + ], + "genres": [ + "Talk", + "News" + ], + "releaseDate": "2004-08-15", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 23, + "popularity": 5.3204 + }, + { + "id": 26867, + "title": "Mushi-Shi", + "originalTitle": "蟲師", + "overview": "Ginko, a Mushi master, travels from place to place researching the Mushi and helping people who are suffering because of it.", + "posterPath": "/1EdA21TRBXJU5aBP4EHkOMF2tNx.jpg", + "backdropPath": "/8ysRHGV3URjOJT7u7NkZiFjvObk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-23", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 220, + "popularity": 5.3202 + }, + { + "id": 245026, + "title": "Wizards Beyond Waverly Place", + "originalTitle": "Wizards Beyond Waverly Place", + "overview": "Justin Russo has chosen to lead a normal, mortal life with his family, Giada, Roman and Milo. But when Justin's sister Alex brings Billie to his home seeking help, Justin realizes he must dust off his magical skills to mentor the wizard-in-training while also juggling his everyday responsibilities — and safeguarding the future of the Wizard World.", + "posterPath": "/zekFfF9ch0yjfKPiyOQW7v4T03Y.jpg", + "backdropPath": "/ore4E3D1qfTH1Ollf4UDhzW3PtG.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 10751 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2024-10-29", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.991, + "voteCount": 167, + "popularity": 5.3191 + }, + { + "id": 70748, + "title": "Bonus Family", + "originalTitle": "Bonusfamiljen", + "overview": "A new couple, their exes and their children navigate the emotional challenges and tricky logistics of blended family life in this Swedish dramedy.", + "posterPath": "/dQuvTYr5KheV0U6n3wJh9bRoNUn.jpg", + "backdropPath": "/3Z2iKz1qcylKzhoQum8aN52MtIL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2017-01-30", + "releaseYear": "2017", + "originalLanguage": "sv", + "voteAverage": 6.6, + "voteCount": 29, + "popularity": 5.3188 + }, + { + "id": 67040, + "title": "Speechless", + "originalTitle": "Speechless", + "overview": "Maya DiMeo is a mom on a mission who will do anything for her husband, Jimmy, and kids Ray, Dylan, and JJ, her eldest son with special needs. As Maya fights injustices both real and imagined, the family works to make a new home for themselves and searches for just the right person to give JJ his “voice.”", + "posterPath": "/7EHM9vaAWBBWgBJnQapYKjGIVHt.jpg", + "backdropPath": "/yKfN1bnjsR8kBg4FedE9ShFRVm.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-09-21", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.981, + "voteCount": 106, + "popularity": 5.3187 + }, + { + "id": 3295, + "title": "Soap", + "originalTitle": "Soap", + "overview": "The antics of a wealthy family, the Tates, and a working-class family, the Campbells, in the fictional town of Dunn's River, Connecticut.", + "posterPath": "/kq2G0SjdVcZnKh5cpq9hp0MKvWL.jpg", + "backdropPath": "/kXNBx6zc25SyL6zVMJZUQAB9Eu7.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10766, + 18 + ], + "genres": [ + "Comedy", + "Soap", + "Drama" + ], + "releaseDate": "1977-09-13", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 67, + "popularity": 5.3183 + }, + { + "id": 62413, + "title": "Killjoys", + "originalTitle": "Killjoys", + "overview": "An action-packed adventure series following a fun-loving, hard living trio of interplanetary bounty hunters (a.k.a. Killjoys) sworn to remain impartial as they chase deadly warrants around the Quad, a system of planets on the brink of revolution.", + "posterPath": "/xnQ7WVAxlk9UAVWDLDeYGTKRaOf.jpg", + "backdropPath": "/pHmnJvu2kdH6TYb7NImwAP5rQbf.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-06-19", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.867, + "voteCount": 502, + "popularity": 5.3153 + }, + { + "id": 6589, + "title": "Kikoriki", + "originalTitle": "Смешарики", + "overview": "The Smeshariki are stylized rounded animals. Each of the nine characters has a unique personality and a range of interests with no negative characters among them. Plots are built not on the battle of opposing forces but on the unexpected situations the animated characters stumble upon in their interactions deemed similar to the ones that children may encounter in their everyday lives. Many of the topics foreground the guidance that friendship and community provide to the individual making his or her way in the world. Complex themes and specific cultural references place this cartoon firmly within the Russian tradition of animation. Much attention was devoted to the humor in the series, some of which has attracted adults as well.", + "posterPath": "/cR5Jzs1JpfIkVZGAGJPkLm85pKC.jpg", + "backdropPath": "/trRaDnVmmzCxjO1nLUH8Jr8bruk.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Family" + ], + "releaseDate": "2004-05-17", + "releaseYear": "2004", + "originalLanguage": "ru", + "voteAverage": 7.227, + "voteCount": 44, + "popularity": 5.3132 + }, + { + "id": 100575, + "title": "Tyler Perry's Ruthless", + "originalTitle": "Tyler Perry's Ruthless", + "overview": "A spinoff of \"The Oval,\" follows Ruth Truesdale as she's forced to play nice with a scandalous religious cult of powerful sex crazed fanatics in the hopes of freeing herself and her daughter.", + "posterPath": "/qYgAnS5tMXMtckAjaj2xemzol4m.jpg", + "backdropPath": "/w9jIdhlDrMcW2VcJ7oKFRAuAxpY.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-03-19", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.24, + "voteCount": 25, + "popularity": 5.308 + }, + { + "id": 45666, + "title": "Sam & Cat", + "originalTitle": "Sam & Cat", + "overview": "Sam Puckett is loud, independent, and tough as nails, while Cat Valentine is sweet as pie and super flighty. But that doesn't stop this unlikely pair from becoming best buds and roomies!\n\nTogether, they're a power duo with a love for fun and adventure -- it's just too bad that it doesn't come cheap. Burgers at their favorite robot restaurant Bots don't grow on trees, after all. A booming out-of-home babysitting business quickly becomes the answer to their empty-pocket problems, but also an extra reason for countless wacky adventures to come!", + "posterPath": "/8zL3NVH0owqVDxKvlnG3Df5aWuT.jpg", + "backdropPath": "/2EX0wMD1vr9DfvV68kfmz09rAfI.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 10751 + ], + "genres": [ + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "2013-06-08", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.632, + "voteCount": 408, + "popularity": 5.3074 + }, + { + "id": 31449, + "title": "Skavlan", + "originalTitle": "Skavlan", + "overview": "Skavlan is a Norwegian-Swedish television talk show hosted by Norwegian journalist Fredrik Skavlan. It premiered in Sweden on Sveriges Television in January 2009, and the first guests to appear on the show were former Prime Minister of Sweden Göran Persson and his wife Anitra Steen. On 8 May 2009, it was announced that Skavlan had been renewed for a second season. It was also announced that the show would no longer only be produced by SVT in Sweden; Skavlan would now be partly produced in Norway by the Norwegian Broadcasting Corporation. The first twelve episodes of Skavlan's second season were produced by SVT in Sweden, and the remaining twelve by NRK in Norway.\n\nSkavlan speaks Norwegian and his dialog is therefore subtitled in Swedish in Sweden, even though the two languages are quite similar and mutually intelligible. If the persons being interviewed by Skavlan are Swedish, he often tells them to let him know if they do not understand what he is saying. Swedish novelist Jan Guillou has criticized SVT for subtitling the program, stating \"there is no need for that. If the host had been Danish, subtitling would have been necessary, but with a Norwegian host it does not make any sense.\"", + "posterPath": "/aDQoVmOfYIy7iGEQno9NtxDmaDI.jpg", + "backdropPath": "/lgI98jt69LFv4GWj0RmOaLU69sK.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2009-01-16", + "releaseYear": "2009", + "originalLanguage": "no", + "voteAverage": 5, + "voteCount": 10, + "popularity": 5.3068 + }, + { + "id": 17380, + "title": "The Real Housewives of Atlanta", + "originalTitle": "The Real Housewives of Atlanta", + "overview": "Bravo's cameras turn to the Southern states as the network presents this inside look at the Real Housewives of Atlanta. These women handle the personal dramas that affect their affluent lifestyles with a signature Southern brand of “style” and “grace.”", + "posterPath": "/h5HYOsyc1sJQYjqevaWEaLRjd6E.jpg", + "backdropPath": "/1FygXfA7eqGrd1sDENLtvgAVaNb.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2008-10-07", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 123, + "popularity": 5.3055 + }, + { + "id": 276253, + "title": "The Brilliant Healer's New Life in the Shadows", + "originalTitle": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "overview": "Banished as \"useless,\" Zenos, a self-taught healer from the slums, turns despair into defiance and opens a secret clinic in the city's shadows. With unlicensed, unmatched magic, he cures, comforts, and rights wrongs, quietly becoming a legend. But as his power grows, even the royal palace takes notice. Can he buck the odds and heal a world that cast him aside?", + "posterPath": "/gSgYTi6DxmmZTIHklS8h8alDluo.jpg", + "backdropPath": "/sIiQObaCB7CrS1uum8R1HTPSlKR.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.448, + "voteCount": 58, + "popularity": 5.3038 + }, + { + "id": 75117, + "title": "Line Walker", + "originalTitle": "使徒行者", + "overview": "Chief inspector of Hong Kong’s Criminal Intelligence Bureau, Cheuk Hoi, is suspicious of his close colleague’s mysterious death. Adding to the enigma, he discovers that the five undercover agents who were in constant contact with his dead friend have all vanished.", + "posterPath": "/5WLV2KTrvVZ7PoUlap5eBoKxYEp.jpg", + "backdropPath": "/k78V5XbZJ9D07FM5yavJIYkPKlv.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2014-08-25", + "releaseYear": "2014", + "originalLanguage": "cn", + "voteAverage": 7.7, + "voteCount": 14, + "popularity": 5.3027 + }, + { + "id": 47711, + "title": "The Girl Named Feriha", + "originalTitle": "Adını Feriha Koydum", + "overview": "Adını Feriha Koydum is a Turkish television drama series produced by Med Yapım. The series broadcast on Show TV and it is written by duo Melis Civelek and Sırma Yanık.", + "posterPath": "/vrUjxYcx0DVUJeDj4iMleTVrSTa.jpg", + "backdropPath": "/ebCEAxRFnBD1KkQAYHvcBO5TzmZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2011-01-14", + "releaseYear": "2011", + "originalLanguage": "tr", + "voteAverage": 6, + "voteCount": 24, + "popularity": 5.2979 + }, + { + "id": 203504, + "title": "Aashiqana", + "originalTitle": "आशिकाना", + "overview": "A serial killer sparks the story of uptight Yashvardhan and feisty Chikki. Plagued by misunderstandings, how far do they have to go to nab the murderer?", + "posterPath": "/a4Z6Uohb6Ln5vcPvMUzwyn3WBjP.jpg", + "backdropPath": "/wV5PS1nCcHd4CqvhSJFav7jRKm4.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648 + ], + "genres": [ + "Crime", + "Mystery" + ], + "releaseDate": "2022-06-06", + "releaseYear": "2022", + "originalLanguage": "hi", + "voteAverage": 6.3, + "voteCount": 37, + "popularity": 5.2977 + }, + { + "id": 93653, + "title": "In/Spectre", + "originalTitle": "虚構推理", + "overview": "Kotoko Iwanaga became the god of wisdom to the supernatural beings and spends her days solving problems for them. However, the boy who she fell head over heels for, Kuro Sakuragawa, is someone that is feared by all supernatural creatures. The two of them face various mysterious incidents involving the supernatural in this love x romance x mystery series. Where will these fantastical incidents lead them and what will happen with Kotoko’s crush?", + "posterPath": "/g97dzLKEtx9yFsOZcpAlXgYQCMY.jpg", + "backdropPath": "/ujypWFhRcrb4KXjsp1edGomN2RI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-12", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 190, + "popularity": 5.2973 + }, + { + "id": 71024, + "title": "Castlevania", + "originalTitle": "Castlevania", + "overview": "A vampire hunter fights to save a besieged city from an army of otherworldly beasts controlled by Dracula himself.", + "posterPath": "/ubDtIBwdS9b29sBofAkqWz3PqkT.jpg", + "backdropPath": "/jLE5bsPA9xOKzBWOaOmKbp1DWQS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 8.259, + "voteCount": 1459, + "popularity": 5.2963 + }, + { + "id": 230059, + "title": "A Sign of Affection", + "originalTitle": "ゆびさきと恋々", + "overview": "Yuki Itose is just a typical student dealing with the pressures of college. She is struggling one day on the train when an upperclassman named Itsuomi Nagi helps her out. As he gradually opens a new world to her, Yuki develops feelings for Itsuomi. A pure love story begins to grow.", + "posterPath": "/ntgph4kCtxzDsVQIK2gJfrG3PyM.jpg", + "backdropPath": "/pQaqQ2cvG22JuFmQOYihMezx0EK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-01-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.932, + "voteCount": 88, + "popularity": 5.2951 + }, + { + "id": 217766, + "title": "Zom 100: Bucket List of the Dead", + "originalTitle": "ゾン100~ゾンビになるまでにしたい100のこと~", + "overview": "An overworked 24-year-old finally decides to live a little and create a bucket list, when a zombie outbreak hits the country.", + "posterPath": "/bTYMgERNC9rVdmxTSzKuex4GWbF.jpg", + "backdropPath": "/90b5d67rcpYfh5aVOwfd9jrbnfL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.538, + "voteCount": 172, + "popularity": 5.2916 + }, + { + "id": 110180, + "title": "Love in Chains", + "originalTitle": "Кріпосна", + "overview": "Kateryna is beautiful, clever and by the will of her godmother was raised as a lady of noble blood. But for the whole world, she is only someone else’s property, a bondmaid of the richest landowner in Nizhyn – Chervinskyi. Struggling for her freedom and the right to be happy, she will have to endure the deaths of her closest people, become the property of a woman who hates and dreams to kill her, survive the popular uprising, escape while being chased by a maniac and flee from the one who wants to get her above all. What awaits Kateryna at the end of such a terrible and exhausting path to freedom?", + "posterPath": "/5cLKmC9OPUByCZdNOu5Drr9J28g.jpg", + "backdropPath": "/OiKYEC2y8SBa6ZcwQm7ZqQDz66.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-02-25", + "releaseYear": "2019", + "originalLanguage": "ru", + "voteAverage": 7.7, + "voteCount": 20, + "popularity": 5.2915 + }, + { + "id": 93544, + "title": "Top Boy", + "originalTitle": "Top Boy", + "overview": "Two seasoned drug dealers return to the gritty street of London, but their pursuit of money and power is threatened by a young and ruthless hustler.", + "posterPath": "/mGZpOEaLZTRzWeQMq5SZM5BbDZg.jpg", + "backdropPath": "/jAz9AZpznu3ELhUp1XiMEeQv2Se.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2019-09-13", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.083, + "voteCount": 145, + "popularity": 5.2914 + }, + { + "id": 936, + "title": "Super Friends", + "originalTitle": "Super Friends", + "overview": "The most powerful heroes ever--Superman, Wonder Woman, Aquaman, Batman and Robin--join forces with teenagers Wendy and Marvin and their dog, Marvel the Wonderdog, to defend justice and guard the innocent.", + "posterPath": "/3AvUm2Lf7YnEb7yHIJmC87mh0kK.jpg", + "backdropPath": "/ebbeTgwFRvKEdFSAoHsBPvZsAFf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1973-09-08", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 7.654, + "voteCount": 133, + "popularity": 5.2901 + }, + { + "id": 134331, + "title": "Lighter and Princess", + "originalTitle": "点燃我,温暖你", + "overview": "As soon as Zhu Yun started college life, the world was completely turned upside down by the intrusion of \"bad boy\" Li Xun. He was regarded by Zhu Yun as a rich, ignorant and incompetent son, but his real identity was actually a special admissions student who was admitted by the school, and a rare programming genius. After several confrontations, the two have some appreciation for each other. The senior Fang Zhijing made things difficult for Zhu Yun many times, Li Xun took action to protect Zhu Yun, and invited her to join the preparation team he set up to win a major programming competition on behalf of the school.", + "posterPath": "/oFFlFjiMQrOns39k9VbWcrfvbLX.jpg", + "backdropPath": "/wxz9DOg9wMhkl4E2F3CjwZWSYS9.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-11-03", + "releaseYear": "2022", + "originalLanguage": "zh", + "voteAverage": 8.1, + "voteCount": 35, + "popularity": 5.2893 + }, + { + "id": 668, + "title": "X-Men: Evolution", + "originalTitle": "X-Men: Evolution", + "overview": "Teenagers Cyclops, Jean Grey, Rogue, Nightcrawler, Shadowcat, and Spike fight for a world that fears and hates them.", + "posterPath": "/HEzbwsX1VniBSwZ4LrxwlfWhfW.jpg", + "backdropPath": "/rC8p2xuywf4633s1gBinfENKbqF.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Kids", + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2000-11-04", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 513, + "popularity": 5.2888 + }, + { + "id": 4288, + "title": "Beetlejuice", + "originalTitle": "Beetlejuice", + "overview": "The adventures of preteen goth Lydia Deetz and her undead friend Beetlejuice as they explore The Neitherworld, a wacky afterlife realm inhabited by monsters, ghosts, ghouls and zombies.", + "posterPath": "/6KZUc5WlukYvlixgNYJaFXzgdkv.jpg", + "backdropPath": "/dmwhROBzM8VsFASDgHO7CafMyqO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1989-09-09", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.66, + "voteCount": 187, + "popularity": 5.2876 + }, + { + "id": 46100, + "title": "Celebridade", + "originalTitle": "Celebridade", + "overview": "A successful businesswoman in the music industry sees her life fall apart after a young and mysterious woman starts work as her secretary. The scheming girl is totally obsessed by the famous businesswoman and she tries to steal everything from her, including her career.", + "posterPath": "/w1ROW7YvjoPVkQJ6P1yp6rLNOTS.jpg", + "backdropPath": "/ciwJBJo9eAs1eZVOdFA4d1S8v4E.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 35 + ], + "genres": [ + "Soap", + "Drama", + "Comedy" + ], + "releaseDate": "2003-10-13", + "releaseYear": "2003", + "originalLanguage": "pt", + "voteAverage": 7.781, + "voteCount": 16, + "popularity": 5.2859 + }, + { + "id": 3002, + "title": "The Benny Hill Show", + "originalTitle": "The Benny Hill Show", + "overview": "The Benny Hill Show is a British comedy television show that starred Benny Hill and aired in various incarnations between 15 January 1955 and 30 May 1991 in over 140 countries. The show focused on sketches that were full of slapstick, mime, parody, and double-entendre. Thames Television cancelled production of the show in 1989 due to declining ratings and large production costs at £450,000 per show.", + "posterPath": "/y3mGj6YAy7CRWMq06gjsXf3rIJ1.jpg", + "backdropPath": "/bp30imMTFKAcxrZMi4hjBwY91A6.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1969-11-19", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 7.247, + "voteCount": 168, + "popularity": 5.2848 + }, + { + "id": 88090, + "title": "Araiya-san! Ore to Aitsu ga Onnayu de!?", + "originalTitle": "洗い屋さん!~俺とアイツが女湯で!?~", + "overview": "Male student Souta Tsukishima begins working at his family's public bathhouse as a back washer. While concealing her true identity, Souta's classmate Aoi Yuzuki visits the bathhouse. A relationship between the two begins to develop when Souta washes Aoi's back.", + "posterPath": "/upxgNd7JdqbxUXDuEkgba18iG8F.jpg", + "backdropPath": "/jxBUmVXcrkMLCjyzCOhHMmZ5qqO.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "2019-04-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 33, + "popularity": 5.2841 + }, + { + "id": 111, + "title": "7 vidas", + "originalTitle": "7 vidas", + "overview": "The story of a group of friends in Madrid.", + "posterPath": "/sYNk7nES9qUIXXICXILo3MOU4qt.jpg", + "backdropPath": "/zWPMDW9WQACws0yiVWdWzZGPLBA.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1999-01-17", + "releaseYear": "1999", + "originalLanguage": "es", + "voteAverage": 6.2, + "voteCount": 20, + "popularity": 5.281 + }, + { + "id": 387, + "title": "SpongeBob SquarePants", + "originalTitle": "SpongeBob SquarePants", + "overview": "Deep down in the Pacific Ocean in the subterranean city of Bikini Bottom lives a square yellow sponge named SpongeBob SquarePants. SpongeBob lives in a pineapple with his pet snail, Gary, loves his job as a fry cook at the Krusty Krab, and has a knack for getting into all kinds of trouble without really trying. When he's not getting on the nerves of his cranky next door neighbor Squidward, SpongeBob can usually be found smack in the middle of all sorts of strange situations with his best buddy, the simple yet lovable starfish, Patrick, or his thrill-seeking surfer-girl squirrel pal, Sandy Cheeks.", + "posterPath": "/5h0EU2lqBb03dp5vtRuUHJwqzem.jpg", + "backdropPath": "/61u5BENargOxT5FtHPZDOlEqtHB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1999-05-01", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.696, + "voteCount": 3124, + "popularity": 5.2806 + }, + { + "id": 2306, + "title": "The Man from Snowy River", + "originalTitle": "The Man from Snowy River", + "overview": "The Man from Snowy River is an Australian television series based on Banjo Paterson's poem \"The Man from Snowy River\". Released in Australia as Banjo Paterson's The Man from Snowy River, the series was subsequently released in both the United States and the United Kingdom as Snowy River: The McGregor Saga.\n\nThe television series has no relationship to the 1982 film The Man from Snowy River or the 1988 sequel The Man from Snowy River II. Instead, the series follows the adventures of Matt McGregor, a successful squatter, and his family. Matt is the hero immortalized in Banjo Paterson's poem \"The Man from Snowy River\", and the series is set 25 years after his famous ride.", + "posterPath": "/9ez7SBvFq5nIAmQ8BVwdohIGf1x.jpg", + "backdropPath": "/4KkwQSRbqjSPQLpDUtpptsE4jLE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "1994-09-23", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 5.2802 + }, + { + "id": 34805, + "title": "Sekirei", + "originalTitle": "セキレイ", + "overview": "Struggling yet brilliant, 19-year-old Minato Sahashi has failed his college entrance exams for the second time, resulting in him being regarded as worthless by those around him. However, the course of his seemingly bleak future is altered dramatically when a beautiful, supernatural woman falls from the sky and into his life. That woman, Musubi, is a \"Sekirei,\" an extraterrestrial with extraordinary abilities. Recognizing the potential of the Ashikabi gene within Minato, Musubi kisses him, initiating a bond between the two of them. This drags him into the high-stakes world of the Sekirei, where he and his new partner must compete against others in a battle for survival called the \"Sekirei Plan.\" However, unbeknownst to the contestants, there is far more at risk that what the competition initially entailed. Manga series by Sakurako Gokurakuin.", + "posterPath": "/g5lGhwt2M3RHXPgfqgEHRvGM8F.jpg", + "backdropPath": "/uwgvSLHNaLgpAhRhJ4uYU0NXKWX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2008-07-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 88, + "popularity": 5.2796 + }, + { + "id": 2467, + "title": "Disney's House of Mouse", + "originalTitle": "Disney's House of Mouse", + "overview": "A very-recognizable audience of Disney animated characters gather into the House of Mouse nightclub to enjoy musical guests, cartoon shorts and Master of Ceremonies Mickey Mouse's comical introductions from the stage.", + "posterPath": "/53HmzBwkr43NEewZp5wLNLDffKr.jpg", + "backdropPath": "/n0VOCRcEVsshvYwtmLvolGx3sFR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-01-13", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.405, + "voteCount": 75, + "popularity": 5.2794 + }, + { + "id": 21730, + "title": "Mobile Suit Gundam Wing", + "originalTitle": "新機動戦記ガンダムW", + "overview": "After Colony (A.C.) 195. Mankind has moved into space. Thousands of people live on giant orbiting space colonies called \"Sides.\" However, the Earth Government, which rules the colonies, is unjust and cruel. A group of revolutionaries builds five robotic weapons called Gundams and plans to send them to Earth to begin their fight for independence. Piloted by five young men, these Gundams carry the hopes and dreams of freedom of the colonists with them as they descend to Earth to begin Operation Meteor!", + "posterPath": "/ggHmrZpipHfdEqaGQbv4JrWv0f6.jpg", + "backdropPath": "/6q1eredSOpFhzjoStR8V29BxAZC.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "1995-04-07", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.871, + "voteCount": 97, + "popularity": 5.2782 + }, + { + "id": 124643, + "title": "Family Law", + "originalTitle": "Family Law", + "overview": "Lawyer and recovering alcoholic Abigail Bianchi is struggling to put her career and family back together after hitting rock bottom. As a condition of her probation, Abby is forced to work at her estranged father’s firm, Svensson and Associates, and practice in family law for the first time while forging new relationships with the half-brother and half-sister whom she’s never met. The result is a dysfunctional family law firm operating to help other families with their own dysfunctions.", + "posterPath": "/amxRi4RUIGuV0qaKiJPJpROruYR.jpg", + "backdropPath": "/r744TCUjCQBYxXOmFrgSZ1O7jRf.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-09-16", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 30, + "popularity": 5.278 + }, + { + "id": 9877, + "title": "Family Law", + "originalTitle": "Family Law", + "overview": "Family attorney and mom, Lynn Holt, has had to scramble to keep her family and her law firm together, since her husband left her and took most of their joint law practice with him. Although the attorneys are carting plenty of life's baggage, they're all determined to make the most of this unexpected second chance—and make each month's mortgage payment.", + "posterPath": "/5JeRg8YGj4EjaQU6QwetJG22RIY.jpg", + "backdropPath": "/esqRFXOHJQr6zUg2EkeAiD4rr9e.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "1999-09-20", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 11, + "popularity": 5.2778 + }, + { + "id": 1271, + "title": "Hardcastle and McCormick", + "originalTitle": "Hardcastle and McCormick", + "overview": "Hardcastle and McCormick is an American action/drama television series from Stephen J. Cannell Productions, shown on ABC from 1983 through 1986. The series stars Brian Keith as Judge Milton C. Hardcastle and Daniel Hugh Kelly as ex-con and race car driver Mark \"Skid\" McCormick. The series premise was somewhat recycled from a previous Cannell series, Tenspeed and Brown Shoe.", + "posterPath": "/d3ZWBPAlcmYwvA183aI5z1mosv7.jpg", + "backdropPath": "/bxpXQzeYxpAaSGAbTQ3PCSSppLa.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "1983-09-18", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 38, + "popularity": 5.2776 + }, + { + "id": 78199, + "title": "The Bronze Teeth", + "originalTitle": "铁齿铜牙纪晓岚", + "overview": "", + "posterPath": "/a6I1cOAUAW3TmhGjr8NhBkTTXIT.jpg", + "backdropPath": "/zLYjXjalWyBTWX880bZRxqolSMA.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2001-01-01", + "releaseYear": "2001", + "originalLanguage": "zh", + "voteAverage": 8.3, + "voteCount": 14, + "popularity": 5.276 + }, + { + "id": 67126, + "title": "Himouto! Umaru-chan", + "originalTitle": "干物妹! うまるちゃん", + "overview": "People are not always who they appear to be, as is the case with Umaru Doma, the perfect high school girl—that is, until she gets home! Once the front door closes, the real fun begins. When she dons her hamster hoodie, she transforms from a refined, over-achieving student into a lazy, junk food-eating otaku, leaving all the housework to her responsible older brother Taihei. Whether she's hanging out with her friends Nana Ebina and Kirie Motoba, or competing with her self-proclaimed \"rival\" Sylphinford Tachibana, Umaru knows how to kick back and have some fun!\n\nHimouto! Umaru-chan is a cute story that follows the daily adventures of Umaru and Taihei, as they take care of—and put up with—each other the best they can, as well as the unbreakable bonds between friends and siblings.", + "posterPath": "/5FQJOWJ0EyfICDKLWoKHAaDFnrU.jpg", + "backdropPath": "/ro0eBgs4IEbITrUqJEgINDrf3Xn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 677, + "popularity": 5.2753 + }, + { + "id": 115646, + "title": "Lisa", + "originalTitle": "Lisa", + "overview": "", + "posterPath": "/w2nOl7KhwcUj11YxEi9Nknj9cqu.jpg", + "backdropPath": "/rv5gu2gYbOEYoArzH7bqJuMxvBB.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2021-01-25", + "releaseYear": "2021", + "originalLanguage": "nl", + "voteAverage": 6.9, + "voteCount": 39, + "popularity": 5.2751 + }, + { + "id": 96716, + "title": "Big Shot", + "originalTitle": "Big Shot", + "overview": "After getting ousted from his job in the NCAA for throwing a chair at a referee, a hothead men’s basketball coach Marvyn Korn must take a job at Westbrook School for Girls, a private all-girls high school, in an effort to redeem what's left of his career and reputation.", + "posterPath": "/yBFqTVoQsFg53ein34BKbn7SU8Z.jpg", + "backdropPath": "/oNw5yVJLF8ouKHjXZlIVhseVcyv.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 35 + ], + "genres": [ + "Family", + "Drama", + "Comedy" + ], + "releaseDate": "2021-04-16", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 338, + "popularity": 5.2722 + }, + { + "id": 32209, + "title": "Al Fondo Hay Sitio", + "originalTitle": "Al Fondo Hay Sitio", + "overview": "Al fondo hay sitio is a Peruvian TV series created in 2008-2009 by Efraín Aguilar. It deals with the problems of social differences and economic status. It's one of the most popular shows in Peru and is now being shown in Ecuador, Bolivia, Paraguay and Uruguay.", + "posterPath": "/4BkYVoybIvM2U7zeg2JTT5M5dwF.jpg", + "backdropPath": "/9kGfwwA0N0KOen7oTBGSVoQsXLz.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10766 + ], + "genres": [ + "Comedy", + "Drama", + "Soap" + ], + "releaseDate": "2009-03-30", + "releaseYear": "2009", + "originalLanguage": "es", + "voteAverage": 7.8, + "voteCount": 225, + "popularity": 5.2722 + }, + { + "id": 254474, + "title": "The Princess Royal", + "originalTitle": "度华年", + "overview": "Because of political reasons, princess Li Rong and Pei Wenxuan got married at the age of 18. In the end they drifted further and further afar from each other. After 20 years of a loveless marriage, they were manipulated into turning against each other, leading to their deaths. However, they wake up back at 18, before their marriage, facing the hardest time of their lives. The two of them are given second change together, to save those around them.", + "posterPath": "/uCUGs2MC3S6k7NZvFY8o6un4lt3.jpg", + "backdropPath": "/cdpecCzIFwpI9rkpJY9xoxlvUoc.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-06-26", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.9, + "voteCount": 14, + "popularity": 5.272 + }, + { + "id": 61867, + "title": "Medcezir", + "originalTitle": "Medcezir", + "overview": "Yaman, who lives in the suburb of Tozludere (Istanbul), is arrested and put in jail with his brother because his brother decided to steal a car at a petrol station. Until that day he tried to change his destiny by working hard to earn a good life. That evening he was unwillingly introduced to crime and his clean dossier was tainted. He meets a rich lawyer, Selim Serez.", + "posterPath": "/gQw5nPY0Z0ZGN0yatzPwmdzNTQ7.jpg", + "backdropPath": "/4zuLi90yC0S1c7uwHO0dyU7kIYX.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2013-09-13", + "releaseYear": "2013", + "originalLanguage": "tr", + "voteAverage": 7.061, + "voteCount": 33, + "popularity": 5.2693 + }, + { + "id": 64570, + "title": "Vampire Girl", + "originalTitle": "Chica Vampiro", + "overview": "Daisy O'Brian is a normal girl who dreams of a singing career in musical comedy. Her parents are vampires, and per her family tradition, she must decide to become a vampire or not on her 16th birthday. On that day, Daisy decides to stay human to live next to her love, Max, who is her neighbor and classmate.\n\nHowever, that same day, a fatal accident changes her life forever. The doctor says to her parents that she is not going to make it. So, her parents decide to bite Daisy, to save her, turning her into a vampire. This makes Vicente (her younger brother) the only mortal in the family. From that moment, Daisy leads a double life full of risks, where she must attend a human school, hiding her nature, and also go to vampire school and take classes for newly bitten vampires.", + "posterPath": "/mWpTjJO99SMusPHdV12UuMwtoNc.jpg", + "backdropPath": "/bWvhXETphYBt0Mabfkz8e0lcul8.jpg", + "mediaType": "tv", + "genreIds": [ + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-05-14", + "releaseYear": "2013", + "originalLanguage": "es", + "voteAverage": 8.1, + "voteCount": 133, + "popularity": 5.2683 + }, + { + "id": 80213, + "title": "The Purge", + "originalTitle": "The Purge", + "overview": "Set in a dystopian America ruled by a totalitarian political party, the series follows several seemingly unrelated characters living in a small city. Tying them all together is a mysterious savior who’s impeccably equipped for everything the night throws at them. As the clock winds down with their fates hanging in the balance, each character is forced to reckon with their pasts as they discover how far they will go to survive the night.", + "posterPath": "/9CaS2XFd0Db42grzzVBnWcSkrbg.jpg", + "backdropPath": "/9PARvL1FQtyjNhLF6AT6Oanqg1U.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80, + 18 + ], + "genres": [ + "Mystery", + "Crime", + "Drama" + ], + "releaseDate": "2018-09-04", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 3362, + "popularity": 5.2669 + }, + { + "id": 216, + "title": "Duck Dodgers", + "originalTitle": "Duck Dodgers", + "overview": "Duck Dodgers battles evil in the 24th century.", + "posterPath": "/l9gmVRHxMy4F49DnpqWDD8ODAXf.jpg", + "backdropPath": "/q8Eiw6XBQ9urbaKmP9ChxkjOZmw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2003-08-23", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 124, + "popularity": 5.2661 + }, + { + "id": 67743, + "title": "Cardinal", + "originalTitle": "Cardinal", + "overview": "Detective John Cardinal attempts to uncover the mystery of what happened to the missing 13-year-old girl whose body is discovered in the shaft-head of an abandoned mine. At the same time, he comes under investigation by his new partner, Lise Delorme, a tough investigator in her own right.", + "posterPath": "/c1ZSmaRsqV8WSgwkWkeW3E1vFbg.jpg", + "backdropPath": "/b9bTAULS5coAm9UYh3DGA8SoZuk.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-01-25", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 160, + "popularity": 5.2648 + }, + { + "id": 478, + "title": "Captain Planet and the Planeteers", + "originalTitle": "Captain Planet and the Planeteers", + "overview": "Eco-villains beware: Captain Planet is here to save the day! With the guidance of Gaia, five Planeteers - representing Earth, Fire, Water, Wind and Heart - come together to defend our planet from environmental destruction. With their powers combined, the team becomes the solution to pollution!", + "posterPath": "/dYHburcl1LKnUQrmB7BOUpOiHx.jpg", + "backdropPath": "/3a5Wi8bUWe5CZ4AyK9ie50i5CN0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1990-09-15", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.788, + "voteCount": 226, + "popularity": 5.2646 + }, + { + "id": 137065, + "title": "Arknights", + "originalTitle": "明日方舟", + "overview": "In the wake of unknown Catastrophes in the heart of Terra, a mineral of unimaginable power has been discovered. With it, society's technology has made huge leaps and bounds, but the substance causes a deadly incurable disease, leading to a worldwide enslavement of the infected. As a rebellion is now on the rise, a pharmaceutical company races for a cure to save humanity.", + "posterPath": "/bOHwf20OzBVBrhX31MyUdxQR0d2.jpg", + "backdropPath": "/kJHEPw3itVz3RmVh4B2PwIVjn3b.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-29", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.548, + "voteCount": 31, + "popularity": 5.2616 + }, + { + "id": 156606, + "title": "Hamster & Gretel", + "originalTitle": "Hamster & Gretel", + "overview": "Siblings Gretel and Kevin are to be bestowed super powers by space aliens on their birthdays, but after Kevin's powers accidentally go into Hamster, his pet hamster instead, they form the duo of \"Hamster & Gretel\". Now Kevin must figure out how to work with both Gretel and Hamster to protect their city from mysterious dangers.", + "posterPath": "/7Mm4oQbsCbHbop7YQ9t0arXi9Ov.jpg", + "backdropPath": "/6vl0ZRYnf7gICpc80eUpRdGPDOL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2022-08-12", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 14, + "popularity": 5.261 + }, + { + "id": 9922, + "title": "Psi Factor: Chronicles of the Paranormal", + "originalTitle": "Psi Factor: Chronicles of the Paranormal", + "overview": "Psi Factor: Chronicles of the Paranormal is a Canadian science fiction television series that surrounds a scientific team that deals with all manner of paranormal phenomena around the world; from alien abductions to possessions. The organization depicted in the series is loosely inspired by a real-life scientific organization. While locations in the series took place worldwide, the series was primarily filmed in and around Toronto, Ontario, Canada, and aired 88 episodes over four seasons from 1996 to 2000.", + "posterPath": "/x50gAb47tkzWtaWQnk7zMPlyjAn.jpg", + "backdropPath": "/5VrEtxOREQzPP9HvGRjIMo8KlgQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1996-09-28", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 33, + "popularity": 5.2606 + }, + { + "id": 254017, + "title": "YAIBA: Samurai Legend", + "originalTitle": "真・侍伝 YAIBA", + "overview": "Yaiba's journey to becoming a true samurai takes him from his home in the forest to a bustling city full of rivals, friends and ancient powers.", + "posterPath": "/cxD3FQP4hDU5hSABwdQCvGrrnz6.jpg", + "backdropPath": "/8anbNuU3e5PAvpfa8r26aZG7ubP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 16, + "popularity": 5.2601 + }, + { + "id": 43168, + "title": "NARUTO Spin-Off: Rock Lee & His Ninja Pals", + "originalTitle": "NARUTO SD ロック・リーの青春フルパワー忍伝", + "overview": "Welcome to the Hidden Leaf Village. The village where Uzumaki Naruto, star of the TV show \"Naruto\" makes his home. Every day, countless powerful ninjas carry out missions and train to hone their skills. Our main character is one of these powerful ninjas... but it's not Naruto! It's the ninja who can't use ninjutsu, Rock Lee!", + "posterPath": "/2OTMpFejspg3fYnRbiuVuLsZtaq.jpg", + "backdropPath": "/1836hXRxGLS53lImrl3IN002AbD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-03", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 49, + "popularity": 5.2531 + }, + { + "id": 33404, + "title": "Co-Ed Confidential", + "originalTitle": "Co-Ed Confidential", + "overview": "Co-Ed Confidential is a softcore pornographic cable program that is Cinemax's erotic remake of National Lampoon's Animal House, it is shown on Cinemax After Dark. The series made its premiere in 2007 and has currently had four seasons and 52 episodes and 6 compilations.", + "posterPath": "/jWPDBZjd1SONIbPmTRY3N0frwRN.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2007-11-02", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.885, + "voteCount": 13, + "popularity": 5.2522 + }, + { + "id": 3345, + "title": "Land of the Giants", + "originalTitle": "Land of the Giants", + "overview": "Set fifteen years in the then-future year 1983, the series tells the tale of the crew and passengers of a sub-orbital transport ship named Spindrift. In the pilot episode, the Spindrift is en route from Los Angeles to London, on an ultra-fast sub-orbital flight. Just beyond Earth's boundary with space, the Spindrift encounters a magnetic space storm, and is dragged through a space warp to a mysterious planet where everything is twelve times larger than on Earth, whose inhabitants the Earthlings nickname \"the Giants\". The Spindrift crash-lands, and the damage renders it inoperable.", + "posterPath": "/ljbqDwgOoqYvQ6WRnuLr8QleEkH.jpg", + "backdropPath": "/qd8GllAmewP7VMSiqfQfpJvHfPN.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1968-09-22", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 45, + "popularity": 5.2513 + }, + { + "id": 114472, + "title": "Secret Invasion", + "originalTitle": "Secret Invasion", + "overview": "Nick Fury and Talos discover a faction of shapeshifting Skrulls who have been infiltrating Earth for years.", + "posterPath": "/f5ZMzzCvt2IzVDxr54gHPv9jlC9.jpg", + "backdropPath": "/6mOK9j99OFlxGc3ird2jWUeUha9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-06-21", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.555, + "voteCount": 1292, + "popularity": 5.2512 + }, + { + "id": 131835, + "title": "Nautilus", + "originalTitle": "Nautilus", + "overview": "The origin story of the iconic Captain Nemo: an Indian Prince robbed of his birthright and family, a prisoner of the East India Mercantile Company and a man bent on revenge against the forces that have taken everything from him.", + "posterPath": "/eBHzItKQNfPdt2GL4LcHJy8P1sH.jpg", + "backdropPath": "/8pWGfg6siFjgWJahhkrzGDz1UDs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 72, + "popularity": 5.2511 + }, + { + "id": 231003, + "title": "Lazarus", + "originalTitle": "Lazarus", + "overview": "In 2052, a Nobel Prize-winning neuroscientist develops a drug called Hapna — a cure-all that has the unexpected side-effect of causing death three years later. In response to this threat, a special force of agents—nicknamed \"Lazarus\"— is assembled to take on the malevolent Skinner.", + "posterPath": "/j5Tvg6cF4jM2nB9YrjQ3Jiq3PBn.jpg", + "backdropPath": "/fgcSUbheJ2nml1g7y5QNvR4s16d.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 94, + "popularity": 5.2477 + }, + { + "id": 138503, + "title": "Your Friendly Neighborhood Spider-Man", + "originalTitle": "Your Friendly Neighborhood Spider-Man", + "overview": "Peter Parker is on his way to becoming a hero, but his path to get there is anything but ordinary.", + "posterPath": "/kjcsNeqF52YUQ2rUBGLMHwLkxvR.jpg", + "backdropPath": "/kkT2B2gmynoh9kZMo1gromLNeqy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-01-29", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.761, + "voteCount": 222, + "popularity": 5.2425 + }, + { + "id": 68106, + "title": "Kim's Convenience", + "originalTitle": "Kim's Convenience", + "overview": "The funny, heartfelt story of The Kims, a Korean-Canadian family, running a convenience store in downtown Toronto. Mr. and Mrs. Kim ('Appa' and 'Umma') immigrated to Toronto in the '80s to set up shop near Regent Park and had two kids, Jung and Janet who are now young adults. However, when Jung was 16, he and Appa had a major falling out involving a physical fight, stolen money and Jung leaving home. Father and son have been estranged since.", + "posterPath": "/82Vue6MPuYZzlpggR65cvWdBdy.jpg", + "backdropPath": "/oh5ZkLhrrt1EmGfRZ4qqm743X6b.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-10-11", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.544, + "voteCount": 149, + "popularity": 5.2417 + }, + { + "id": 1439, + "title": "Here's Lucy", + "originalTitle": "Here's Lucy", + "overview": "", + "posterPath": "/bv5p2CZnVg3A2YaC4O2AcBcYBd8.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1968-09-23", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 29, + "popularity": 5.2417 + }, + { + "id": 98034, + "title": "Digimon Adventure:", + "originalTitle": "デジモンアドベンチャー:", + "overview": "It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there. Fifth grader Taichi Yagami's mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World!", + "posterPath": "/7Qspx2eFX0uBSQLLlAKnYrjZgse.jpg", + "backdropPath": "/xsEMAdrDprq3Ldre56Rm0zqbfCA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.53, + "voteCount": 617, + "popularity": 5.2408 + }, + { + "id": 80564, + "title": "Banana Fish", + "originalTitle": "BANANA FISH", + "overview": "A teenaged gang leader in New York City faces his abuser and rival gangs alongside a photojournalist from Japan as they investigate a deadly new drug.", + "posterPath": "/d2TW5Rtd0uCasHlQygsDfWCROl2.jpg", + "backdropPath": "/9I297AAuMFuKY0GgFmxKTo5tzrz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 9648, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Mystery", + "Crime" + ], + "releaseDate": "2018-07-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.572, + "voteCount": 894, + "popularity": 5.2397 + }, + { + "id": 367, + "title": "Klovn", + "originalTitle": "Klovn", + "overview": "Klovn is a Danish sitcom, which first aired on the Danish TV channel TV2 Zulu. It focuses on the life of the main character Frank and Casper. The show builds its comedy around quiet everyday situations, social awkwardness, uncomfortable silences and general faux pas.\n\nKlovn usually gets compared to the American sitcom Curb Your Enthusiasm by Larry David. It’s also shot handheld, in a pseudo-realistic style. Some have also mistakenly compared the theme to Curb Your Enthusiasm’s, despite it being a direct reference to Jacques Tati’s Mr. Hulot movies. The poster for the first film can be seen in Casper and Frank’s offices throughout the series. Klovn initially ran 6 seasons on TV2 Zulu from 2005-2009 and was renewed with an additional 3 seasons that aired from 2018-2022.", + "posterPath": "/lq4lTNeScVNoulCBUhtSTif5R6N.jpg", + "backdropPath": "/h73HMWNx2THzppNDx8M3vPokWcR.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-02-07", + "releaseYear": "2005", + "originalLanguage": "da", + "voteAverage": 8.5, + "voteCount": 29, + "popularity": 5.2385 + }, + { + "id": 65854, + "title": "60 Days In", + "originalTitle": "60 Days In", + "overview": "An unprecedented look at life behind bars at Indiana's Clark County Jail as seven innocent volunteers are sent to live among its general population for 60 days without officers, fellow inmates, or staff knowing their secret.", + "posterPath": "/jvSGk5FKQov2AVPV3AU5zwSy7o2.jpg", + "backdropPath": "/Al7MuxbllBokRhIQwvwzKgnz3Is.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2016-03-10", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 77, + "popularity": 5.2346 + }, + { + "id": 250598, + "title": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "originalTitle": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "overview": "Normally, people choose to become adventurers in their teens. At 30 years old, Rick Gladiator bucks the trend by leaving his job as a guild clerk to become an adventurer. He begins as a novice F-rank with the fighting strength of an S-rank. After two years of brutal training with the continent’s strongest party, Orichalcum Fist, Rick will defeat anyone who underestimates him!", + "posterPath": "/dHxGWlygSNRb97wujSwtEts5snP.jpg", + "backdropPath": "/1Jz9C5BOIjKPEWhm3zWcpDHJ0TT.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.797, + "voteCount": 79, + "popularity": 5.231 + }, + { + "id": 20382, + "title": "The Greed of Man", + "originalTitle": "大時代", + "overview": "Told in reverse chronological order, the story starts in the present (June 7, 1994), when the stock market rebounded after the market became volatile and crashed for the weekend. After the stock market stopped trading for the weekend, the Ting's make the wrong bet and their entire fortune is wiped out, compounded by ending up in billions of dollars in debt. Ting Hai forces his sons to commit suicide by jumping off from the top of the stock exchange building before following after them.", + "posterPath": "/ib3bGoQojw1YaSv902xjcZ9SXOL.jpg", + "backdropPath": "/99O3Z1videkouW4Rt9XqZgfj1UD.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1992-10-05", + "releaseYear": "1992", + "originalLanguage": "cn", + "voteAverage": 7.9, + "voteCount": 14, + "popularity": 5.2291 + }, + { + "id": 5566, + "title": "Rush", + "originalTitle": "Rush", + "overview": "They are trained to be smarter, tactically superior and technologically advantaged - Melbourne's answer for a cutting edge trend in policing worldwide.\n\nRush was an Australian television police drama that first screened on Network Ten in September 2008. Set in Melbourne, Victoria, it focuses on the members of a Police Tactical Response team. It is produced by John Edwards and Southern Star.\n\nOn 10 November 2011, as with Network Ten setting out DVD promotions for the finale of season 4, David Knox of TV Tonight has announced that Rush would not return after 4 years, as the next episode would be its last.", + "posterPath": "/nit525TLOlV560oXZDQawbcRiRl.jpg", + "backdropPath": "/2LaGkpz21G9dAaFepKmncJchwfT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2008-09-02", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.393, + "voteCount": 14, + "popularity": 5.227 + }, + { + "id": 31581, + "title": "The Bunglers", + "originalTitle": "Os Trapalhões", + "overview": "Os Trapalhões was a Brazilian comedy group and also a Brazilian television series created by Wilton Franco. Its members were Dedé Santana, Zacarias, Mussum and their leader Didi Mocó, that was played by Renato Aragão. The name Trapalhões is derived from the Portuguese verb atrapalhar, which means the opposite of helping, to do something the wrong way or to Those that confuse. The name is translated \"Tramps\" in English DVD subtitles. It was aired by Rede Globo from 1977 to 1999.\n\nOn March 18, 1990, Zacarias died due to respiratory failure, but the group and the series didn't come to an end until July 29, 1994, when Mussum died due to an unsuccessful heart transplant.", + "posterPath": "/7guAhJQYqzUluJUoU3LmIqKB8qu.jpg", + "backdropPath": "/bMKxyRUdo2y77Y2cKrhXCX7Ye5K.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1977-03-13", + "releaseYear": "1977", + "originalLanguage": "pt", + "voteAverage": 7.8, + "voteCount": 15, + "popularity": 5.223 + }, + { + "id": 139798, + "title": "Single's Inferno", + "originalTitle": "솔로지옥", + "overview": "On a deserted island, flirtatious singles look for love, because only as a couple can they leave the island for a romantic date in paradise.", + "posterPath": "/86zkkFCrNc4VeqvCANTmpGNgFEF.jpg", + "backdropPath": "/bkz7rStamWJxC3lp9TUpU9GR18S.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2021-12-18", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 7.604, + "voteCount": 78, + "popularity": 5.2222 + }, + { + "id": 23587, + "title": "Kindaichi Case Files", + "originalTitle": "金田一少年の事件簿", + "overview": "Kindaichi Hajime may look dumb, but he is one of the smartest you will ever see. He encounters mysteries after mysteries with his good friend, Miyuki, and he swears to solve them in the name of his grandfather, which was a great detective.", + "posterPath": "/eMCA5F3szGY3ckx2EDWWgwHZdh9.jpg", + "backdropPath": "/kBPEtwrFaoBiCzAVWAUGPDwp2Ld.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "1997-04-07", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 21, + "popularity": 5.2209 + }, + { + "id": 636, + "title": "Kung Fu: The Legend Continues", + "originalTitle": "Kung Fu: The Legend Continues", + "overview": "Like his legendary namesake, Kwai Chang Caine is a warrior monk, operating a Shaolin temple in Northern California. After an evil priest, Tan, destroys the temple, Caine and his young son, Peter each believe the other has perished. The two embark on very different paths -- Caine wanders the Earth, while Peter is a cop. When fate brings the two together, they work to overcome their differing philosophies to battle Tan, and then to help the innocent and bring justice to the new Wild West -- 90s urban America.", + "posterPath": "/ncY99oMyS8kZvFcloSV4WNxqYjE.jpg", + "backdropPath": "/uAMN1SGszrIqgEbg4OFAVBm3A66.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1993-01-27", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.682, + "voteCount": 55, + "popularity": 5.2199 + }, + { + "id": 46316, + "title": "Motive", + "originalTitle": "Motive", + "overview": "A team of Vancouver investigators, led by homicide detective Angie Flynn, sets out to uncover the motive of each puzzling murder by discovering the killer's connection to the victim. Viewers get a glimpse of the killer before and after the crime is committed.", + "posterPath": "/gA5mK6VO1tJ4DCGhmXEcsYetvqH.jpg", + "backdropPath": "/nH1tZM9QAQrJKRMxH7mityjWNZe.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2013-02-03", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.384, + "voteCount": 86, + "popularity": 5.2185 + }, + { + "id": 7217, + "title": "Casados con Hijos", + "originalTitle": "Casados con Hijos", + "overview": "Argentine re-make of American television series Married... with Children. It follows the Argento family and their lives.", + "posterPath": "/dtH2Rn6MqZ8pstFzvEC2XGROKpt.jpg", + "backdropPath": "/b4MWFEp2lSBgIo6byrRvqRXXz8e.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-04-12", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 8.035, + "voteCount": 255, + "popularity": 5.2176 + }, + { + "id": 61018, + "title": "Whose Line Is It Anyway?", + "originalTitle": "Whose Line Is It Anyway?", + "overview": "The show where everything's made up and the points don't matter. Not a talk show, not a sitcom, not a game show, Whose Line Is It Anyway? is a completely unique concept to network television. Four talented actors perform completely unrehearsed skits and games in front of a studio audience. Host Drew Carey sets the scene, with contributions from the audience, but the actors rely completely on their quick wit and improvisational skills. It's genuinely improvised, so anything can happen - and often does.", + "posterPath": "/iAIiJFlGCnmNO1fLtXxsM0IKo8H.jpg", + "backdropPath": "/bmqbuK2fB5skmVwZeLTqun68waa.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10764 + ], + "genres": [ + "Comedy", + "Reality" + ], + "releaseDate": "1998-08-05", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 346, + "popularity": 5.2164 + }, + { + "id": 31679, + "title": "Last Exile", + "originalTitle": "LAST EXILE", + "overview": "A richly romantic action-adventure fantasy, set in a world where retro-futuristic vehicles permeate the skies. Against this lavish background are the lives of young and heroic van ship sky porters - Claus and Lavie - who are forced to take on the mission to deliver a mysterious girl, Alvis, to the battle ship Silvana. Before they know it, they become entangled in an aerial adventure between two countries gripped in an eternal war of magnificent air battleships.", + "posterPath": "/yHA9G9NCk5HHmQhgzy2EEbRaXvQ.jpg", + "backdropPath": "/okFn0UU3zsebsek5w4B4du7XHHq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-04-07", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 60, + "popularity": 5.2157 + }, + { + "id": 215522, + "title": "We Were Liars", + "originalTitle": "We Were Liars", + "overview": "One year after a mysterious accident left her with amnesia, 17-year-old Cadence returns to Beechwood, an island off Martha's Vineyard, seeking answers. As three generations of the distinguished Sinclair family gather at their private summer utopia, no one will talk about the accident – neither her childhood friends \"The Liars\" nor her first love Gat, forcing her to uncover the truth herself.", + "posterPath": "/3RQoNwSkJkh92KL2TwpMlHP5FkT.jpg", + "backdropPath": "/trSbjzHQlCxykhGfnS0JMgsGbCC.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-06-18", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.164, + "voteCount": 126, + "popularity": 5.2148 + }, + { + "id": 130467, + "title": "Threesome", + "originalTitle": "Threesome", + "overview": "David and Siri are a young couple living in London. During a night out, they meet Camille and a flirtatious game arises where the boundaries are gradually dissolved. In an act of drunken curiosity, they have a threesome.", + "posterPath": "/cfjlMZ786kN4zqa0MuBYZzhAr8y.jpg", + "backdropPath": "/qr7PkfUWnOA9gjxFclupLjFQI6e.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-08-29", + "releaseYear": "2021", + "originalLanguage": "sv", + "voteAverage": 6.4, + "voteCount": 29, + "popularity": 5.2145 + }, + { + "id": 4625, + "title": "The New Batman Adventures", + "originalTitle": "The New Batman Adventures", + "overview": "After a long hiatus -- The Caped Crusader is back and cooler then ever, in the animated action-packed series -- The New Batman-Superman Adventures. Picking up years after Batman: The Animated Series, the series highlights Batman and his crimefighting cadre of Nightwing, Robin and Batgirl, as they join forces to battle Gotham City's classic super-villains.", + "posterPath": "/s40Ji11SBKaEYDgJmDc0ifklM59.jpg", + "backdropPath": "/nHNFi7GE1tQND1Q8QTNSYPkivIQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648, + 16, + 10762 + ], + "genres": [ + "Action & Adventure", + "Mystery", + "Animation", + "Kids" + ], + "releaseDate": "1997-09-13", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8.06, + "voteCount": 377, + "popularity": 5.2137 + }, + { + "id": 219651, + "title": "Welcome to Samdal-ri", + "originalTitle": "웰컴투 삼달리", + "overview": "After suffering a fall from grace, a photographer returns to her hometown and bumps into her childhood friend — rekindling an unfinished romance.", + "posterPath": "/98IvA2i0PsTY8CThoHByCKOEAjz.jpg", + "backdropPath": "/jPTwLNzWGvJzbxjVbpqGaF5kB1k.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-12-02", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.256, + "voteCount": 117, + "popularity": 5.2083 + }, + { + "id": 5660, + "title": "Mobile Suit Gundam ZZ", + "originalTitle": "機動戦士ガンダムZZ", + "overview": "The year is Universal Century 0088. Directly after the end of the Gryps War, Haman Karn and her army of Zeon remnants on the asteroid Axis begin their quest of reviving the lost empire of the Zabi's, and proclaim themselves as the Neo-Zeon. With the Earth Federation as hapless as ever, only the Anti-Earth Union Group (AEUG) is able oppose the plans of Neo-Zeon. In need of all the help it can get after being decimated in the previous war and losing many of its key members, the AEUG ship Argama enlists the aid of a young junk collector from the Side 1 colony of Shangri-La named Judau Ashta to pilot its newest mobile suit, the ZZ Gundam.", + "posterPath": "/u7GMUFdfljplCbySERldRUReP6P.jpg", + "backdropPath": "/7CxsP8ThaLpLeyF9rma73dJAzjC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 18, + 35, + 10765 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1986-03-01", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 30, + "popularity": 5.2079 + }, + { + "id": 128071, + "title": "Jellystone!", + "originalTitle": "Jellystone!", + "overview": "Welcome to Jellystone! Travel to a magical town where you’ll meet new and old friends, including Yogi Bear, Cindy Bear, Boo Boo, and Huckleberry Hound…and Jabberjaw and Top Cat and Snagglepuss and El Kabong and Wally Gator and Johnny Quest and Hadji and Shag Rugg and Captain Caveman and a whole lot more.", + "posterPath": "/7SwSAG48QvvMy8jlAgm3LGt3VGq.jpg", + "backdropPath": "/jhv7ChslieSdfC3Dqfhq9ERYoOP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2021-07-29", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 50, + "popularity": 5.2074 + }, + { + "id": 47907, + "title": "Extraordinary", + "originalTitle": "Extraordinary", + "overview": "In a world where everyone develops a power on their 18th birthday, Jen didn't. She's turning 25 and is still waiting to get hers. Adrift in a big, confusing world and armed with nothing but a bit of hope and a lot of desperation, Jen begins her journey to find her maybe-superpower. But in doing so, she might discover the joy of being just kind of ok.", + "posterPath": "/uyDIWMAwfLqiIz0QQm0MPDE0085.jpg", + "backdropPath": "/bqj5BcE2mMLvCLMFtcLveo9GPf6.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 10765 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-25", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.295, + "voteCount": 191, + "popularity": 5.207 + }, + { + "id": 4345, + "title": "Saved by the Bell", + "originalTitle": "Saved by the Bell", + "overview": "Lovable schemer Zack Morris leads his pals on adventures at California's Bayside High School. The friends navigate relationships, final exams, school dances, breakups and more while frequently frustrating their principal, Mr. Richard Belding, who does his best to keep them in check.", + "posterPath": "/9YC576fs6XQR2pfPDJn4kcmG8T5.jpg", + "backdropPath": "/d0nAuGAH5EIQDLTs7dJcQOubpha.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1989-08-20", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.805, + "voteCount": 682, + "popularity": 5.2068 + }, + { + "id": 207347, + "title": "Blue Box", + "originalTitle": "アオのハコ", + "overview": "Taiki Inomata loves badminton, but he has a long way to go before he can reach nationals. When Taiki sees upperclassman Chinatsu Kano practicing her heart out on the girls’ basketball team, he falls for her hard. After an unexpected turn of events brings the two closer together, sports might not be the first thing on their minds anymore!", + "posterPath": "/mVAWCCNBxPX3EUf9XhcFff4wW5V.jpg", + "backdropPath": "/8p39Ud6ZKMixBQ7R4frg2o3idzc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-10-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 64, + "popularity": 5.2059 + }, + { + "id": 8082, + "title": "Meteor Garden", + "originalTitle": "流星花園", + "overview": "Shan Cai, whose parents are far from wealthy, attends Ying De University, the private school established exclusively for rich students. Besides being looked down by rich classmates, she has angered the leader of F4, Dao Ming Si.", + "posterPath": "/88ucpY4QXb8E80Q1QoIlUoKE1Ct.jpg", + "backdropPath": "/nhQx2xS2ng1Uo30uunqH9RK3bQs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10766 + ], + "genres": [ + "Drama", + "Comedy", + "Soap" + ], + "releaseDate": "2001-04-21", + "releaseYear": "2001", + "originalLanguage": "zh", + "voteAverage": 7.1, + "voteCount": 23, + "popularity": 5.2054 + }, + { + "id": 60699, + "title": "Marco Polo", + "originalTitle": "Marco Polo", + "overview": "Set in a world of greed, betrayal, sexual intrigue and rivalry, this lavish drama series follows explorer Marco Polo's adventures in the 13th century.", + "posterPath": "/syYTHCBvFlobr8eJjQMKAjrn9yV.jpg", + "backdropPath": "/nLlujkVolfX9jrfQdpJHv9FPFlt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2014-12-12", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.348, + "voteCount": 569, + "popularity": 5.2048 + }, + { + "id": 966, + "title": "Hollyoaks", + "originalTitle": "Hollyoaks", + "overview": "The daily soap that follows the loves, lives and misdemeanours of a group of people living in the Chester village of Hollyoaks where anything could, and frequently does, happen...", + "posterPath": "/5sbMgcbpzZn8aKETeanrKDANzdM.jpg", + "backdropPath": "/xkHb06dHEaAfNdAOrkaGjcJuvrt.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "1995-10-23", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 66, + "popularity": 5.2035 + }, + { + "id": 2553, + "title": "Punky Brewster", + "originalTitle": "Punky Brewster", + "overview": "An abandoned waif and her dog are taken in by a cranky apartment manager who becomes her guardian in this family-friendly sitcom.", + "posterPath": "/2ZVmXNThTccZ4rKUfe1C1QZDwTe.jpg", + "backdropPath": "/ir1J00Kk3kzBKw7uEGm8CwBjh1t.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762 + ], + "genres": [ + "Comedy", + "Kids" + ], + "releaseDate": "1984-09-16", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.309, + "voteCount": 89, + "popularity": 5.2027 + }, + { + "id": 105556, + "title": "DON'T TOY WITH ME, MISS NAGATORO", + "originalTitle": "イジらないで、長瀞さん", + "overview": "\"A girl in a lower grade just made me cry!\" One day, Senpai visits the library after school and becomes the target of a super sadistic junior! The name of the girl who teases, torments, and tantalizes Senpai is \"Nagatoro!\" She's annoying yet adorable. It's painful, but you still want to be by her side. This is a story about an extremely sadistic and temperamental girl and you'll feel something awaken inside of you.", + "posterPath": "/ogXmggjfiDHBOBwA3JyuEzCr814.jpg", + "backdropPath": "/8dNNxQMx4hOLwihNoAyDkreboiP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 790, + "popularity": 5.202 + }, + { + "id": 70453, + "title": "Sharp Objects", + "originalTitle": "Sharp Objects", + "overview": "Reporter Camille Preaker confronts the psychological demons from her past when she returns to her hometown to investigate the murders of two young girls.", + "posterPath": "/1SGovj2qDdkJexvhFiXllj9EYfu.jpg", + "backdropPath": "/b9cCIwtT0gD42wEMMZwMdY8zfgS.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2018-07-08", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.74, + "voteCount": 988, + "popularity": 5.2005 + }, + { + "id": 63087, + "title": "Snow White with the Red Hair", + "originalTitle": "赤髪の白雪姫", + "overview": "Shirayuki was a young girl born with unique apple-red hair. She meets a famous but foolish Prince Raji, who falls in love with her at first sight and orders her to become his concubine. With nowhere else to go, Shirayuki cuts her hair and escapes to a neighboring country. While traversing through the forests, she meets a young boy, Zen, who helps her after she boldly cures his wounds but then gets poisoned by an apple given to Shirayuki. Meanwhile, Prince Raji sends out henchmen to search for her. What will happen to Shirayuki? What is Zen's true character? A refreshing fantasy story between an optimistic heroine and a prince who constantly stays on her watch.", + "posterPath": "/jZtP1Zd7DNfVkPolpVhe7BCdDhL.jpg", + "backdropPath": "/m7pLRHLnuM37mLzycgcCz01TvAS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.65, + "voteCount": 100, + "popularity": 5.2002 + }, + { + "id": 213306, + "title": "Cross", + "originalTitle": "Cross", + "overview": "Alex Cross is a brilliant but flawed homicide detective and full of contradictions. A doting father and family man, Cross is single-minded to the point of obsession when he hunts killers. He is desperate for love, but his wife’s murder has left him too damaged to receive it.", + "posterPath": "/wy8NYpq3k4izodX5YOYmExKfHMe.jpg", + "backdropPath": "/v1hqncj250WcVeVs5RXzQ3ekwMA.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2024-11-14", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.181, + "voteCount": 213, + "popularity": 5.1999 + }, + { + "id": 81157, + "title": "Bakusou Kyoudai Let's & Go!!", + "originalTitle": "爆走兄弟レッツ&ゴー!!", + "overview": "Mini 4WD racing is an interesting hobby in where kids and adults compete using customized motorized miniature cars. Every year, competitions revolving around the hobby circulated around the world, with both kids and adults test out their spirit and passion in racing and companies developing new technologies and innovations for Mini 4WD. The story revolves around the competitive Seiba Brothers: Go and Retsu, who were once constantly arguing on each other to see who's the best racer. However one day after a community-sponsored race, they both met Dr. Tsuchiya, the head of the Tsuchiya Racing Factory who gave them two Mini 4WD Cars of the prototype Saber Series: Sonic Saber and Magnum Saber. With his advice on telling the twins to customize them for the upcoming race, they are now determined to win and race to victory and set off to their wildest race of their lives. While meeting both friends and enemies in the Mini 4WD Racing world.", + "posterPath": "/ptP84CfR8oigi3jnnIHEFke7fae.jpg", + "backdropPath": "/3LrekJhgodoOXEHKkhJazCnlsPW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1996-01-08", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 40, + "popularity": 5.1995 + }, + { + "id": 3854, + "title": "The Spectacular Spider-Man", + "originalTitle": "The Spectacular Spider-Man", + "overview": "Having spent the summer engaging common criminals with his new-found powers, not so typical 16-year-old Peter Parker must conceal his secret identity and battle super-villains in the real world as he enters his junior year of high school.", + "posterPath": "/dCNxOhXT7c4lqYuRpdM3m8s9XDp.jpg", + "backdropPath": "/fypGcrQCyb9vQ7L8AM6PHCjQSBC.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids", + "Family" + ], + "releaseDate": "2008-03-08", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 8.6, + "voteCount": 869, + "popularity": 5.1995 + }, + { + "id": 75787, + "title": "Fox Spirit Matchmaker", + "originalTitle": "狐妖小红娘", + "overview": "As Bai Yue-Chu searches for a bride to foil his family's plans, a fox youkai falls through the roof.", + "posterPath": "/65AXZbM2h3r1blS93Jbk4YD401w.jpg", + "backdropPath": "/tr2umB8gk8mR7gO5caiFEZhDeGz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2015-06-25", + "releaseYear": "2015", + "originalLanguage": "zh", + "voteAverage": 6.7, + "voteCount": 13, + "popularity": 5.199 + }, + { + "id": 126035, + "title": "Nevertheless,", + "originalTitle": "알고있지만,", + "overview": "The intoxicating charm of a flirtatious art school classmate pulls a reluctant love cynic into a friends-with-benefits relationship.", + "posterPath": "/pWIcIhpQibR1eDU0As4HRZeb8EL.jpg", + "backdropPath": "/cPLtnxTlFpCIyH6AkGNuGCluvY1.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-06-19", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 7.3, + "voteCount": 207, + "popularity": 5.1978 + }, + { + "id": 95249, + "title": "Gossip Girl", + "originalTitle": "Gossip Girl", + "overview": "Eight years after the original website went dark, a new generation of New York private school teens are introduced to the social surveillance of Gossip Girl.", + "posterPath": "/9oY4OR0jQUbnKC5BhoUOQRrgIp9.jpg", + "backdropPath": "/yHufVBqWw9Ez0NyHmnzUovw81sm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2021-07-08", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 312, + "popularity": 5.1942 + }, + { + "id": 35016, + "title": "House of Anubis", + "originalTitle": "House of Anubis", + "overview": "Strange things are happening at an English boarding school called House of Anubis. Popular student Joy goes missing, the school's cranky caretaker has a creepy stuffed crow and the school's attic may be haunted. When recent American transplant Nina gets thrust into the school during this time, she decides to investigate along with her new friend, Fabian, and housemates.", + "posterPath": "/llPkPieIBfVXKIklkeP5VddpK8b.jpg", + "backdropPath": "/sCyzwACda02TQuaUKhk67ccUm2S.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 9648, + 10765 + ], + "genres": [ + "Family", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-01-01", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 277, + "popularity": 5.1936 + }, + { + "id": 25992, + "title": "MasterChef", + "originalTitle": "MasterChef", + "overview": "Into the kitchen and under the spotlight. Amateur cooks duel it out for the right to be called the MasterChef UK Champion. Initially named Masterchef Goes Large, the series changed its name to Masterchef in 2008.", + "posterPath": "/aMDr01WW5nG4tF4VYjn3Mbzfx6x.jpg", + "backdropPath": "/v6JTHbk9l8HVbWs4SQhpDEcNeKH.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2005-02-21", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.421, + "voteCount": 19, + "popularity": 5.1936 + }, + { + "id": 10305, + "title": "Peter Gunn", + "originalTitle": "Peter Gunn", + "overview": "Peter Gunn is an American private eye television series. Filmed in a film noir atmosphere and featuring Henry Mancini music that could tell you the action with your eyes closed, Peter Gunn worked in style. Known as Pete to his friends and simply as Gunn to his enemies, he did his job in a calm cool way.", + "posterPath": "/hE0Un65f1k11GUQTCqk7s0hzokY.jpg", + "backdropPath": "/kNgdev5dOyp7QVXA9SqBGifwC0o.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1958-09-22", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 21, + "popularity": 5.1933 + }, + { + "id": 278969, + "title": "Love in the Edge of Divorce", + "originalTitle": "爱在离婚进行时", + "overview": "In a loveless arranged marriage, Fu Yancheng and Sheng Mian plan to divorce. However, an unexpected intimate encounter leads to deeper misunderstandings when Fu Yancheng discovers that Sheng Mian is actually Penny. Regretting his actions, Fu Yancheng works to win her back", + "posterPath": "/ndArPPZTvqrpwvZHhC8o1xYRFgF.jpg", + "backdropPath": "/8T5hiwuUvOmK32cL2a6KHDJHikd.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-01-09", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8, + "voteCount": 12, + "popularity": 5.1932 + }, + { + "id": 157065, + "title": "The Fall of the House of Usher", + "originalTitle": "The Fall of the House of Usher", + "overview": "Ruthless siblings Roderick and Madeline Usher have built Fortunato Pharmaceuticals into an empire of wealth, privilege and power. But past secrets come to light when the heirs to the Usher dynasty start dying at the hands of a mysterious woman from their youth.", + "posterPath": "/2rl04pRCaGfz91lwfWdDQmOiGJp.jpg", + "backdropPath": "/4qDlkEAKFb4pgIUbeJMLyHX2Xym.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2023-10-12", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.556, + "voteCount": 719, + "popularity": 5.1922 + }, + { + "id": 79732, + "title": "She-Ra and the Princesses of Power", + "originalTitle": "She-Ra and the Princesses of Power", + "overview": "In this reboot of the '80s series, a magic sword transforms an orphan girl into warrior She-Ra, who unites a rebellion to fight against evil.", + "posterPath": "/y6YLtlnV5FGh3Mhs5SUc80IQSV5.jpg", + "backdropPath": "/uKG6BOipnZM9XRtrRzDjoq52jab.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-11-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.468, + "voteCount": 787, + "popularity": 5.1881 + }, + { + "id": 202879, + "title": "Star Wars: Skeleton Crew", + "originalTitle": "Star Wars: Skeleton Crew", + "overview": "Four ordinary kids search for their home planet after getting lost in the Star Wars galaxy.", + "posterPath": "/srQbJhLRKoAwRrNN5ga7webPHbC.jpg", + "backdropPath": "/fciU7RVyfcdsTeksTnBXGPmkKg2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 10751 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2024-12-02", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 370, + "popularity": 5.1865 + }, + { + "id": 203667, + "title": "Red Queen", + "originalTitle": "Reina roja", + "overview": "A gifted woman's intellect brings chance to lead covert European police force. But it backfires, costing her everything. Following murder at her home and kidnapped heiress, her ex-supervisor enlists a policeman's aid to reinstate her.", + "posterPath": "/lk7LVXYSOO5rReR2jzLo8Le3cO1.jpg", + "backdropPath": "/5xgzZtYAROgzyFObUmfBDqYzOFM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648 + ], + "genres": [ + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2024-02-29", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.041, + "voteCount": 110, + "popularity": 5.1847 + }, + { + "id": 12656, + "title": "Rosalinda", + "originalTitle": "Rosalinda", + "overview": "Having to serve a sentence for a murder she did not commit but took the blame for, a woman gives her baby to her sister to be raised without knowing the truth. 20 years later she is freed and try to be once again part of her life. But things get complicated when the daugther, Rosalinda, and Fernando, the son of the man that was killed, become close.", + "posterPath": "/9giAcHn2tOCqJ8h8x9sxQipkTeI.jpg", + "backdropPath": "/wjs3xiJvh7h1qvIpv8kEmz79ys0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1999-03-01", + "releaseYear": "1999", + "originalLanguage": "es", + "voteAverage": 7, + "voteCount": 167, + "popularity": 5.1847 + }, + { + "id": 97186, + "title": "Love, Victor", + "originalTitle": "Love, Victor", + "overview": "Victor is a new student at Creekwood High School on his own journey of self-discovery, facing challenges at home, adjusting to a new city, and struggling with his sexual orientation. When it all seems too much, he reaches out to Simon to help him navigate the ups and downs of high school.", + "posterPath": "/pcT1vivabBnBk0tZgVBO1I8aK75.jpg", + "backdropPath": "/s77W7avppGDWFL6ZZs813jQ6we6.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-06-17", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.585, + "voteCount": 1616, + "popularity": 5.1845 + }, + { + "id": 229711, + "title": "The Bondsman", + "originalTitle": "The Bondsman", + "overview": "Backwoods bounty hunter Hub Halloran comes back from the dead with an unexpected second chance at life, love, and a nearly-forgotten musical career — only to find that his old job now has a demonic new twist.", + "posterPath": "/gwd2HpY2ymvmASUP3zMYF59IIr7.jpg", + "backdropPath": "/vfEtEzBIn0wwWM7ppzJCGEZUSu2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-04-03", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.288, + "voteCount": 231, + "popularity": 5.1839 + }, + { + "id": 2850, + "title": "Bad Girls", + "originalTitle": "Bad Girls", + "overview": "Bad Girls is a British television drama series that was broadcast on ITV from 1 June 1999 to 20 December 2006 and starred Simone Lahbib, Mandana Jones, Debra Stephenson, Linda Henry, Jack Ellis and many more throughout the eight-year run. The series was broadcast in 17 countries and was produced by Shed Productions, the company which later produced Footballers' Wives and Waterloo Road. It is set in the fictional women's prison of Larkhall, and features a mixture of serious and light storylines focusing on the prisoners and staff of G Wing. From 2010, the UK broadcast rights were bought by CBS Drama, and is repeated regularly – as of September 2012, the channel is re-running the series again in a late-night time slot.", + "posterPath": "/vlYanINWRod3cKUyV4evJJsq1xW.jpg", + "backdropPath": "/rWDpToBi2QmBpETwpzX5w1v8Quu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1999-06-01", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 38, + "popularity": 5.1821 + }, + { + "id": 226527, + "title": "Hierarchy", + "originalTitle": "하이라키", + "overview": "The top 0.01% of students control law and order at Jooshin High School, but a secretive transfer student chips a crack in their indomitable world.", + "posterPath": "/szr7QFNnuspcyhW0rsoDMDN73pP.jpg", + "backdropPath": "/bG6eCywmJT81OjhBG4qj9M2ErnY.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-06-07", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.6, + "voteCount": 158, + "popularity": 5.1806 + }, + { + "id": 110382, + "title": "Pachinko", + "originalTitle": "Pachinko", + "overview": "This sweeping saga chronicles the hopes and dreams of a Korean immigrant family across four generations as they leave their homeland in an indomitable quest to survive and thrive.", + "posterPath": "/wUTXdmL6oNjhiStGveOaPeuFOYQ.jpg", + "backdropPath": "/vVKlL4HyrQYAcJuaaUW49FrRqY5.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-03-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 232, + "popularity": 5.1794 + }, + { + "id": 77947, + "title": "Harrow", + "originalTitle": "Harrow", + "overview": "When a dark secret from this past threatens to be exposed, unorthodox and brilliant medical examiner, Doctor Daniel Harrow, must use all his forensic skills to keep it buried forever.", + "posterPath": "/z0H4iQBe1YL9I8pZF5jRifcF369.jpg", + "backdropPath": "/tMILubgFL53xueQEa8nrUoUw71o.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2018-03-09", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 190, + "popularity": 5.1773 + }, + { + "id": 63809, + "title": "Camera Café", + "originalTitle": "Camera Café", + "overview": "The adventures and mis-adventures of a group of co-workers are shown by a camera on top of the coffee-machine in the relax area.", + "posterPath": "/vmdCodGh2nUPRDBQbIVsxGaIMyK.jpg", + "backdropPath": "/4WWlz8co7RbVBuCny2CicYuWJ8y.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-10-06", + "releaseYear": "2003", + "originalLanguage": "it", + "voteAverage": 6.786, + "voteCount": 56, + "popularity": 5.1761 + }, + { + "id": 2564, + "title": "Ant & Dec's Saturday Night Takeaway", + "originalTitle": "Ant & Dec's Saturday Night Takeaway", + "overview": "A gameshow hosted by Ant and Dec filled with stunts, sketches, and special guest appearances.", + "posterPath": "/5f4gnTczwtjHekUXLncjejsla7w.jpg", + "backdropPath": "/u5jhkXclqQEJMdZiy3dcnNl6P14.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10764 + ], + "genres": [ + "Comedy", + "Family", + "Reality" + ], + "releaseDate": "2002-06-08", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 40, + "popularity": 5.1758 + }, + { + "id": 106251, + "title": "LEGO Monkie Kid", + "originalTitle": "乐高悟空小侠", + "overview": "Centuries ago, the beloved Chinese Monkey King used his magical staff to capture and trap the evil Demon Bull King deep inside a mountain. Flash-forward to modern-day China, when fate leads MK (aka Monkie Kid), a young noodle shop delivery boy, to find the long-lost staff. Soon, MK and his best friends find themselves entangled in adventures packed full of action, mystery, imagination and magic.", + "posterPath": "/mwkdJncS60B1QMjK2BdyDG4Bs8L.jpg", + "backdropPath": "/xN9waTugj6Kn9sTrFw2buEUyply.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2020-09-12", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 8.7, + "voteCount": 33, + "popularity": 5.1756 + }, + { + "id": 43017, + "title": "Great Teacher Onizuka", + "originalTitle": "グレート・ティーチャー・オニヅカ", + "overview": "A former gang member wants to be Japan's best teacher. When he's hired to supervise a class of hopeless cases, it's his chance to prove himself.", + "posterPath": "/cgcvNzLUQUjkur8zfhHwcadwzVz.jpg", + "backdropPath": "/sXdKhp54z4qgMsOMoIyTglWsTPn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1999-06-30", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 238, + "popularity": 5.175 + }, + { + "id": 62486, + "title": "Penn Zero: Part-Time Hero", + "originalTitle": "Penn Zero: Part-Time Hero", + "overview": "Penn Zero is not your average kid - every day, he's zapped into another dimension with his friends to save the world.", + "posterPath": "/cCk9Lf8SL4yQqNsphC34NL7rCtL.jpg", + "backdropPath": "/1lz1IW1CuIjfY7YOwXVM8eS8O1O.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16, + 35, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2014-12-05", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 16, + "popularity": 5.1742 + }, + { + "id": 228663, + "title": "Horimiya: The Missing Pieces", + "originalTitle": "ホリミヤ -piece-", + "overview": "A new anime project that adapts popular side stories that were left out of the main anime series\n\nAs the graduation ceremony at Katagiri High School comes to an end, Kyouko Hori, her boyfriend Izumi Miyamura, and their friends begin to look back on their time as students. The moments they shared together may be fleeting, but each one is a colorful piece of their precious memories.", + "posterPath": "/aEJVHbXaC94y6thJ3nA6lBBnHjs.jpg", + "backdropPath": "/fwWw4JeD8QiXdJ11oQLhfSr9yZl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2023-07-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 51, + "popularity": 5.1734 + }, + { + "id": 43125, + "title": "Guilty Crown", + "originalTitle": "ギルティクラウン", + "overview": "The story revolves around Shu Ouma, a high school boy who inadvertently obtains an ability called \"The Power of the Kings\" that enables him to draw out items called \"Voids\" from other people. He is then thrown into the conflict between a resistance group called Funeral Parlor which aims to restore Japan's independence from a quasi-governmental organization known as the GHQ. In the process, Shu has to deal with the burden his ability puts on his shoulders and the horrific mystery of his past.", + "posterPath": "/sMUzeL5G8NkNpNhgPZPpauS7CYD.jpg", + "backdropPath": "/pe6kJStppV5CuEPD1dUhAOyG6LZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-10-13", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.314, + "voteCount": 220, + "popularity": 5.173 + }, + { + "id": 42025, + "title": "Mako: Island of Secrets", + "originalTitle": "Mako: Island of Secrets", + "overview": "Real-life mermaids, Sirena, Nixie and Lyla are part of a mermaid pod, which lives in the waters of Mako Island. As young members of the pod, it is their job to protect the Moon Pool and guard it from trespassers. But on the night of a full moon, the mischievous mermaid girls neglect their duties. Sixteen-year-old land-dweller Zac enters the Moon Pool and forms a special connection with Mako. Zac is given a fish-like tail and amazing powers. The mermaid pod is forced to leave Mako, leaving behind the three mermaid girls, cast out of the pod. They know there's only one way they will be allowed to rejoin the pod: They must get legs, venture onto land and take back Zac's powers – or risk being outcasts forever.", + "posterPath": "/pyo0V8p2RrBCUx7bAVroOssTRR9.jpg", + "backdropPath": "/tR0q8cwsiQxB7wkpkYBHy03NX6S.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 18, + 10759 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2013-07-26", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 616, + "popularity": 5.1727 + }, + { + "id": 127366, + "title": "Splinter Cell: Deathwatch", + "originalTitle": "Splinter Cell: Deathwatch", + "overview": "In the shadowy world of espionage, Sam Fisher is a rumor and a legend. Pulled back into action, he must help a new recruit unravel a global conspiracy.", + "posterPath": "/tgKYnJlze79IUKkPmtsW2nSUeeB.jpg", + "backdropPath": "/hyohgWwzIF7zrHdSS05evx4mqyU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2025-10-14", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 58, + "popularity": 5.1698 + }, + { + "id": 32419, + "title": "Horrible Histories", + "originalTitle": "Horrible Histories", + "overview": "Based on the best-selling children's books and liberally splattered with guts, blood and poo, a group of British comedians offer an anarchic and unconventional take on some of history's most gruesome and funny moments, with topics including the Stone Age, the Middle Ages, the Egyptians and the Romans, among others.", + "posterPath": "/fwj7zkWHtveXUaB9cwrQIMvmgeQ.jpg", + "backdropPath": "/uRW0ASOpjo7kCTCILYKD5h3jKwB.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2009-04-16", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 61, + "popularity": 5.1651 + }, + { + "id": 153378, + "title": "F4 Thailand: Boys Over Flowers", + "originalTitle": "หัวใจรักสี่ดวงดาว", + "overview": "Gorya, a girl from a poor family, is happy to enter an elite high school. However, things take a turn when she is bullied by a group of rich spoiled boys called F4.", + "posterPath": "/mRpG6gLdLMGHRUriG4uCLs6WzLQ.jpg", + "backdropPath": "/3sUd661CAPLfiOs5gCm7nOQnHMe.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-12-18", + "releaseYear": "2021", + "originalLanguage": "th", + "voteAverage": 8.7, + "voteCount": 104, + "popularity": 5.1642 + }, + { + "id": 242101, + "title": "Cacau", + "originalTitle": "Cacau", + "overview": "Cacau is an engaging saga of family secrets, clandestine loves and sacrifices, all sweetened by the irresistible taste of chocolate and the magic of cocoa plantations.", + "posterPath": "/au36FfksnT210brvlTJDb9Gj3fX.jpg", + "backdropPath": "/3xVmBU66Ukp79BBKAbHMySSAqq3.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2024-01-15", + "releaseYear": "2024", + "originalLanguage": "pt", + "voteAverage": 5.65, + "voteCount": 20, + "popularity": 5.161 + }, + { + "id": 76713, + "title": "Secrecy of the Investigation", + "originalTitle": "Тайны следствия", + "overview": "In the center of the plot is a senior investigator named Masha Shvetsova and her male colleagues. The plot is the most vital, but, like in “Streets of Broken Lanterns,” it is seasoned with a fair amount of humor - otherwise, how can the audience (and the heroes) endure countless morgues, identifications and other “cute” charms of the investigative routine?", + "posterPath": "/bEOqLQZ5F8cmcZ5aBfZWb2JL8x1.jpg", + "backdropPath": "/ij903129OgKI9piFjjSD5tYgfz1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "2000-09-01", + "releaseYear": "2000", + "originalLanguage": "ru", + "voteAverage": 7.8, + "voteCount": 16, + "popularity": 5.1603 + }, + { + "id": 70593, + "title": "Kingdom", + "originalTitle": "킹덤", + "overview": "In this zombie thriller set in Korea's medieval Joseon dynasty which has been defeated by corruption and famine, a mysterious rumor of the king’s death spreads, as does a strange plague that renders the infected immune to death and hungry for flesh. The crown prince, fallen victim to a conspiracy, sets out on a journey to unveil the evil scheme and save his people.", + "posterPath": "/AsICtiVtz4icMQQRwDvOzfaTzjK.jpg", + "backdropPath": "/jRhJlV4inm8wAAqTeHUX5HpjZcc.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2019-01-25", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 1147, + "popularity": 5.1566 + }, + { + "id": 75208, + "title": "Devilman Crybaby", + "originalTitle": "DEVILMAN crybaby", + "overview": "Akira Fudo learns from his best friend Ryo Asuka that demons will revive and reclaim the world from humans. With humans hopeless against this threat, Ryo suggests combining with a demon. With this, Akira becomes Devilman, a being with the power of demon but with a human heart.", + "posterPath": "/2pQ9xfgDa3L3QpoXfkNhISby2R4.jpg", + "backdropPath": "/9pgGVXJYXGtECErbNbgxQkj7994.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.776, + "voteCount": 680, + "popularity": 5.1527 + }, + { + "id": 492, + "title": "Upstairs, Downstairs", + "originalTitle": "Upstairs, Downstairs", + "overview": "Upstairs: the wealthy, aristocratic Bellamys. Downstairs: their loyal and lively servants. For nearly 30 years, they share a fashionable townhouse at 165 Eaton Place in London’s posh Belgravia neighborhood, surviving social change, political upheaval, scandals, and the horrors of the First World War.", + "posterPath": "/vptpN27HqU7kwIfPE1E07ffnK9n.jpg", + "backdropPath": "/1584atbgqF4bDJTB3Mmp3ys4Z0N.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1971-10-10", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 7.759, + "voteCount": 29, + "popularity": 5.1512 + }, + { + "id": 238680, + "title": "Moonlight Mystique", + "originalTitle": "白月梵星", + "overview": "Bai Shuo, the youngest daughter of the General's Mansion, aspires to cultivate immortality in order to repay a favor. On her journey to seek immortality, she accidentally rescues the great demon god Fan Yue. As the saying goes, healthy fights strengthen relationships, and they go from mutual manipulation to mutual affection as they fall in love with each other, navigating a love affair intertwined with sweetness and cruelty. Even though they face countless difficulties, their love is strong enough to overcome all limitations, allowing them to truly embrace each other.", + "posterPath": "/4tqNdo1e3dwxPUGGidcuT9IMfJ1.jpg", + "backdropPath": "/a6t5tRwdNh9MlYub0fr2HetALeh.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-07", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.35, + "voteCount": 20, + "popularity": 5.1497 + }, + { + "id": 889, + "title": "Eureka Seven", + "originalTitle": "交響詩篇エウレカセブン", + "overview": "Renton Thurston desires to leave his home behind and join the mercenary group known as Gekkostate, hoping to find some adventure. When a robot crashes through Renton's garage the meeting sparks the beginning of Renton's involvement with Gekkostate as he takes off alongside the young girl Eureka as the co-pilot of the Nirvash.", + "posterPath": "/5Hq9bEoRasVUmIOmtY8HJHqB6FH.jpg", + "backdropPath": "/nSsfjnb6DePlWuNiygxfkGUMWIL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "2005-04-17", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 65, + "popularity": 5.1492 + }, + { + "id": 4076, + "title": "Weird Science", + "originalTitle": "Weird Science", + "overview": "Gary Wallace, a teenager who dreams of beautiful women and a cheerful life, and his only friend, the shy and geek Wyatt Donnelly, always serve as a target for ridicule and bullying of violent classmates. Once using a computer and mysterious electrical radiation, they manage to bring to life the \"woman of their dreams.\" Her name is Lisa, and she is ready to fulfill the wishes of her creators ...", + "posterPath": "/vpYu5ofNtOQZB1pRlSxkkXsPFJn.jpg", + "backdropPath": "/7sKsnd4BTP4WOVEwCbYi6VTmyrl.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1994-03-05", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 76, + "popularity": 5.1478 + }, + { + "id": 240437, + "title": "My Boss", + "originalTitle": "你也有今天", + "overview": "Cheng Yao, aspiring to be a lawyer, joins a top law firm and moves into an apartment near work—only to discover her housemate is her new boss, Qian Heng. Initially harsh and suspicious, Qian Heng puts her through rigorous training, believing she got the job through connections. As Cheng Yao proves her talent and determination, she changes his impression, and a reluctant admiration slowly turns into romance.", + "posterPath": "/27mXtbvk9lNpq5zC3dRzOX9Zb0c.jpg", + "backdropPath": "/nTMNnL7WQfmUN5O2sydtNSuwrEN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2024-01-04", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.4, + "voteCount": 11, + "popularity": 5.1458 + }, + { + "id": 214582, + "title": "The Devil's Plan", + "originalTitle": "데블스 플랜", + "overview": "It's the ultimate showdown of wits, brains, strategy, and alliances for a chance to win 500 million won.", + "posterPath": "/2lJjsUrLjEsE5JFExjYLsuCyO83.jpg", + "backdropPath": "/4LrM5d8FtNNSqzXyEoOVX2EiMd.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2023-09-26", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.632, + "voteCount": 102, + "popularity": 5.1405 + }, + { + "id": 3414, + "title": "Scarecrow and Mrs. King", + "originalTitle": "Scarecrow and Mrs. King", + "overview": "Scarecrow and Mrs. King is an American television series that aired from October 3, 1983, to May 28, 1987 on CBS. The show stars Kate Jackson and Bruce Boxleitner as divorced housewife Amanda King and top-level \"Agency\" operative Lee Stetson who begin a strange association, and eventual romance, after encountering one another in a train station.", + "posterPath": "/36oUFRNJQORpL9fmnrSXdFqEGty.jpg", + "backdropPath": "/A3AEKSTwNGsnYOHnBmI8ZAe3TWR.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "1983-10-03", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.425, + "voteCount": 40, + "popularity": 5.14 + }, + { + "id": 2468, + "title": "The Streets of San Francisco", + "originalTitle": "The Streets of San Francisco", + "overview": "Two police officers, the older Lt. Stone and the young upstart Inspector Keller, investigate murders and other serious crimes in San Francisco. Stone would become a second father to Keller as he learned the rigors and procedures of detective work.", + "posterPath": "/c5H0SR6PVZ3inmFLZwQypwx7pkK.jpg", + "backdropPath": "/eE8q2gfFrcvk99dbr8i3a62SjjW.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1972-09-23", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 7.02, + "voteCount": 98, + "popularity": 5.14 + }, + { + "id": 61119, + "title": "The 7D", + "originalTitle": "The 7D", + "overview": "In the whimsical world of Jollywood a Queen Delightful relies on the 7D, a group of seven dwarves, to keep the kingdom in order. Standing in their way are two laughably evil villains, Grim and Hildy Gloom, who plot to take over the kingdom by stealing the magical jewels in the 7D's mine. With seven very distinct personalities, the 7D always manage to save the day and send Grim and Hildy running back to their evil lair to try another day.", + "posterPath": "/gCqDaSf4ZRi1iiw8dHcMlsFmL80.jpg", + "backdropPath": "/AbJOlPd60g6iyTOj6ah0UYSWnlX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "2014-07-07", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 19, + "popularity": 5.1396 + }, + { + "id": 79166, + "title": "Grand Blue Dreaming", + "originalTitle": "ぐらんぶる", + "overview": "A college student joins the local diving club after meeting some rowdy upperclassmen. New adventures in booze and the ocean await.", + "posterPath": "/pzX1uUpyjpX7tHcol1IAVvDRwIw.jpg", + "backdropPath": "/pJqAgDico7ZTMAfAXyzldYqj5ME.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-07-14", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 150, + "popularity": 5.1388 + }, + { + "id": 79084, + "title": "POSE", + "originalTitle": "POSE", + "overview": "A dance musical that explores the juxtaposition of several segments of 1980s life and society in New York: the ball culture world, the rise of the luxury Trump-era universe and the downtown social and literary scene.", + "posterPath": "/5f23i30nFJz0nrd3DGheOCqXa2P.jpg", + "backdropPath": "/qEviP7N0j9tQa4jkgYqy689IKbq.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-06-03", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 576, + "popularity": 5.1382 + }, + { + "id": 10268, + "title": "Primeval", + "originalTitle": "Primeval", + "overview": "When strange anomalies start to appear all over England, Professor Cutter and his team must track down and capture all sorts of dangerous prehistoric creatures from Earth's distant past and near future.", + "posterPath": "/pjRhnncEnTT8T5YsLbTb0A4msuQ.jpg", + "backdropPath": "/yRGZD3qdK49COaBFo0mxxJoLDzR.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2007-02-10", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 321, + "popularity": 5.1371 + }, + { + "id": 89630, + "title": "The L Word: Generation Q", + "originalTitle": "The L Word: Generation Q", + "overview": "In this sequel to The L Word, we continue to follow the intermingled lives of Bette Porter, Alice Pieszecki and Shane McCutcheon, along with a new generation of diverse, self-possessed LGBTQIA+ characters experiencing love, heartbreak, sex, setbacks and success in L.A.", + "posterPath": "/riq4xVG3FflKAB7JlIQPs9bkFw5.jpg", + "backdropPath": "/koqtAffjlC5WDXz5SHwCBea7mjQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-12-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 119, + "popularity": 5.136 + }, + { + "id": 125910, + "title": "Young Royals", + "originalTitle": "Young Royals", + "overview": "Prince Wilhelm adjusts to life at his prestigious new boarding school, Hillerska, but following his heart proves more challenging than anticipated.", + "posterPath": "/aEW8K07BTiBRtARw6dNzTcb3TJZ.jpg", + "backdropPath": "/1A2Wh7Vs1YCmDNeRhBP2eP9ZAJj.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-07-01", + "releaseYear": "2021", + "originalLanguage": "sv", + "voteAverage": 8.534, + "voteCount": 1164, + "popularity": 5.1299 + }, + { + "id": 211, + "title": "The Game", + "originalTitle": "The Game", + "overview": "When her boyfriend Derwin Davis is chosen as the new third-string wide receiver for the San Diego Sabers, Melanie Barnett decides to attend a local college so she can be with him. While Derwin worries about the plays on the field, Melanie adjusts to her new lifestyle. She gets a play-by-play account of the lives and relationships among NFL wives, girlfriends and mom/managers who use their best game to help their men stay on the field and on their arm.", + "posterPath": "/zmvRaCRcmi6lsriYxZmAR6uWHPS.jpg", + "backdropPath": "/lW3RCsfXXVGIBXyupMGT7dAYcze.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2006-10-01", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 40, + "popularity": 5.1288 + }, + { + "id": 254174, + "title": "Kakushite! Makina-san!!", + "originalTitle": "かくして! マキナさん!!", + "overview": "Eita, a mechanical otaku, discovers that Makina, the school idol he's secretly liked, is actually a robot built for sexual purposes. Now, he must navigate her bold advances while helping her keep her identity hidden in this chaotic romantic comedy.", + "posterPath": "/viiiAmBVRtTYdOtP4nXlQ3b0xPf.jpg", + "backdropPath": "/1KsdGhjvY85ua79av0Pj0JPiNPp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 4.727, + "voteCount": 11, + "popularity": 5.1281 + }, + { + "id": 64228, + "title": "Be Cool, Scooby-Doo!", + "originalTitle": "Be Cool, Scooby-Doo!", + "overview": "The gang decide to go traveling in the Mystery Machine, seeking fun and adventure during what could possibly be their last summer break together. However, havoc-wreaking monsters seem to be drawn to them, appearing almost every stop of the way.", + "posterPath": "/rJksJvJnvrVQL9dMdqy1XwjD5KQ.jpg", + "backdropPath": "/cbX2t9bg9rhpmABQYI5tLbxT3xD.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 9648, + 10762 + ], + "genres": [ + "Comedy", + "Animation", + "Mystery", + "Kids" + ], + "releaseDate": "2015-10-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 117, + "popularity": 5.1269 + }, + { + "id": 557, + "title": "Camp Lazlo", + "originalTitle": "Camp Lazlo", + "overview": "The series is set in a universe inhabited solely by anthropomorphic animals of many species and focuses on a trio of campers attending a poorly run summer camp known as Camp Kidney. The trio consists of Lazlo, the eccentric, optimistic spider monkey; Raj, the timid Indian elephant; and Clam, the quiet albino pygmy rhinoceros, and their multiple surreal misadventures.", + "posterPath": "/9fZXdQbYeDMBTBtMNnsF2K2YWBh.jpg", + "backdropPath": "/vhU1AMY3x4QPL0LRGHS8dEYN75e.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2005-07-08", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 156, + "popularity": 5.1269 + }, + { + "id": 214080, + "title": "Lovely Ladies Dormitory", + "originalTitle": "Lovely Ladies Dormitory", + "overview": "Five modern women live together in one roof as they deal with their families, career, and men and explore their colorful sex lives.", + "posterPath": "/slKiK8swApBMwq9LNI2tG7nXYAw.jpg", + "backdropPath": "/zTj3Fh4r4eqbrPexhZJUB4G0hpG.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-12-18", + "releaseYear": "2022", + "originalLanguage": "tl", + "voteAverage": 5, + "voteCount": 11, + "popularity": 5.124 + }, + { + "id": 96402, + "title": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "originalTitle": "痛いのは嫌なので防御力に極振りしたいと思います。", + "overview": "Kaede Honjou is invited by her friend Risa Shiramine to play a virtual reality MMO game with her. While Kaede doesn't dislike games, what she really, truly dislikes is being in pain. She creates a character named Maple, and decides to put all her points in VIT to minimize pain. As a result, she moves slowly, can't use magic, and even a rabbit can get the best of her. But as it turns out, she acquires a skill known as \"Absolute Defense\" as a result of her pumping points into VIT, as well as a \"Counter Skill\" that works against special moves. Now, with her ability to nullify all damage, she goes on adventures.", + "posterPath": "/fdcMiknnRcmVgWb9wGS9TxE06cG.jpg", + "backdropPath": "/lkuMXv7M2NMmcErLmBgvLIslJ23.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2020-01-08", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.428, + "voteCount": 139, + "popularity": 5.1197 + }, + { + "id": 263034, + "title": "The Journey of Legend", + "originalTitle": "赴山海", + "overview": "Xiao Mingming is a martial arts novel enthusiast who, as the novel's protagonist Xiao Qiushui, journeys through a fictional martial arts world and grows from a passionate youth into a noble hero.", + "posterPath": "/mkBNYUVeiiPsLRilUBT5OiJkiZ7.jpg", + "backdropPath": "/7dH63uoQDQu6pfYJLNKQYLXJ38m.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-11", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 5.882, + "voteCount": 17, + "popularity": 5.1193 + }, + { + "id": 1229, + "title": "Tim and Eric Awesome Show, Great Job!", + "originalTitle": "Tim and Eric Awesome Show, Great Job!", + "overview": "Tim and Eric Awesome Show, Great Job! is an American sketch comedy television series, created by and starring Tim Heidecker and Eric Wareheim, which premiered February 11, 2007 on Cartoon Network's Adult Swim comedy block and ran until May 2010. The program features surrealistic and often satirical humor, public-access television–style musical acts, bizarre faux-commercials, and editing and special effects chosen to make the show appear camp.\n\nThe program featured a wide range of actors, spanning from stars such as Will Ferrell, John C. Reilly, David Cross, Bob Odenkirk, Will Forte and Zach Galifianakis, to alternative comedians like Neil Hamburger, to television actors like Alan Thicke, celebrity look-alikes and impressionists.\n\nThe creators of the show have described it as \"the nightmare version of television.\"", + "posterPath": "/1dzPN5M6BbT44CTMaXqqkIdhOWK.jpg", + "backdropPath": "/hqzle7QIKvk8PvIMcK1gh9waOH4.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-02-11", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.355, + "voteCount": 86, + "popularity": 5.1181 + }, + { + "id": 61461, + "title": "Yona of the Dawn", + "originalTitle": "暁のヨナ", + "overview": "The legend of the Four Dragons and the origin of the land has been passed down for generations in the land of Kouka. Currently, Hiryuu Palace has no one else next in line for the throne other than the fifteen year old princess, Yona, who had been raised with care.\n\nFinally, the night of her sixteenth birthday arrives. She expects it to be a wonderful day spent with her peace-loving father, Il, her servant and friend Hak, and her cousin Soo-won, who she had feelings for... However... That night, Yona goes to visit her father to tell him how she really feels, because he opposes to her getting married to Soo-won. However, when she gets to her room, she encounters a shocking truth. The destinies of Yona and the Four Dragons entwine in this period drama fantasy romance!", + "posterPath": "/aKLARBbIVlluToqSNYNQ0XOLhP.jpg", + "backdropPath": "/k3KlMWPt8lJ5Pe48xuykeldCnI3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.367, + "voteCount": 278, + "popularity": 5.1148 + }, + { + "id": 91862, + "title": "Sex Life", + "originalTitle": "Sex Life", + "overview": "A voyeuristic documentary series about titillating sexual and erotic experiences.", + "posterPath": "/huFQvDBX5V8bfK7uiCUI6iYnEbE.jpg", + "backdropPath": "/4V82tQmK98SJoq2DuRkH6O8YTwf.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2019-06-14", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.471, + "voteCount": 17, + "popularity": 5.1142 + }, + { + "id": 2429, + "title": "Aaahh!!! Real Monsters", + "originalTitle": "Aaahh!!! Real Monsters", + "overview": "Three young monsters — Ickis, Oblina and Krumm — attends an institute for monsters under a city dump and learn to frighten humans.", + "posterPath": "/zsNUtXQdLiqxlex0usKopmjrxGY.jpg", + "backdropPath": "/cvzpcE68wfD8FenvQlXw8eKPGRX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1994-10-29", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.782, + "voteCount": 411, + "popularity": 5.1118 + }, + { + "id": 258462, + "title": "In the Mud", + "originalTitle": "En el barro", + "overview": "Five female prisoners forge a unique bond after a deadly accident... until corruption and turf wars within a ruthless prison threaten to destroy them.", + "posterPath": "/9JWQYB7FkGtg47wFO7GOrUDgYrx.jpg", + "backdropPath": "/bxPELhUZNgbFUN31EZTBC99wOHD.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-08-14", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.572, + "voteCount": 76, + "popularity": 5.1113 + }, + { + "id": 12998, + "title": "Heartbreak High", + "originalTitle": "Heartbreak High", + "overview": "The ins and outs of the classroom lives of a group of students who attend the fictional Hartley High School in Sydney.", + "posterPath": "/6O6bKf7u4xJshV21hP1d9Bn7l0h.jpg", + "backdropPath": "/5cOpovkEf9e9sUy9Aw9dgFxk3XP.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1994-02-27", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 41, + "popularity": 5.1092 + }, + { + "id": 9320, + "title": "Future GPX Cyber Formula", + "originalTitle": "新世紀GPXサイバーフォーミュラ", + "overview": "Future GPX Cyber Formula is a 37-episode anime television series by Sunrise. It originally aired in Japan between March 15, 1991 and December 20, 1991.\n\nDirected by Mitsuo Fukuda, Cyber Formula is a show about Formula racing in the future, when race cars are equipped with computer support systems called 'Cyber Systems'.", + "posterPath": "/nZ0kspBYaV5BmamRmn3uQnjbM6n.jpg", + "backdropPath": "/j1yH0IANhq0GvVhRyQHn3IMqtx4.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1991-03-15", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 10, + "popularity": 5.1085 + }, + { + "id": 5080, + "title": "Doctors", + "originalTitle": "Doctors", + "overview": "Set in the fictional Midlands town of Letherbridge, defined as being close to the city of Birmingham, this soap opera follows the staff and families of a doctor's surgery.", + "posterPath": "/bhEHvxUd5zuySUGhNFngkC4NacQ.jpg", + "backdropPath": "/5HjfWdjRHawvIrbg4pP3Oj6N9u2.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2000-03-27", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 4.7, + "voteCount": 43, + "popularity": 5.1072 + }, + { + "id": 112616, + "title": "Night Head 2041", + "originalTitle": "NIGHT HEAD 2041", + "overview": "The story follows the Kirihara brothers who from a young age were incarcerated in a secure scientific facility due to their supernatural powers, having escaped after the barrier that was preventing them malfunctions. The story also follows the Kuroki brothers who are trying to chase the Kirihara brothers.", + "posterPath": "/mJ7t9wyD43H32E9Sv22mMrVmkLo.jpg", + "backdropPath": "/lLqIzrNq8Yi0RsB42SQWOeXBy50.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-15", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 61, + "popularity": 5.1067 + }, + { + "id": 212963, + "title": "Buddy Daddies", + "originalTitle": "Buddy Daddies", + "overview": "Two assassins who never miss their mark must juggle fatherhood with their demanding job when they suddenly find themselves raising a four-year-old girl.", + "posterPath": "/200lUtWr0k0iaDfhuX0fFz8tETR.jpg", + "backdropPath": "/ztR4oaMzDh4hzeMdgBn6iD3Uswi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.968, + "voteCount": 78, + "popularity": 5.1058 + }, + { + "id": 90677, + "title": "Fate/Grand Order Absolute Demonic Front: Babylonia", + "originalTitle": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "overview": "Following the success in the Camelot Singularity, Ritsuka Fujimaru and Mash Kyrielight are assigned to the last Singularity in the Grand Order initiative. In Ancient Babylonia, 2500 BCE, they embark on a mission to secure humanity's survival. Upon arrival, they learn that three gods have threatened Uruk, the Babylonian city ruled by King Gilgamesh. Ritsuka and Mash must work together to fend off the invasion of mysterious beasts in Uruk under Gilgamesh's orders while investigating the true nature of the three gods' actions against humanity; but unknown to Ritsuka, an ancient entity is slowly rising from its slumber.", + "posterPath": "/pVVANmkpHBwDPRwn4ymprF56Yjr.jpg", + "backdropPath": "/s6ukZz0Mk7RkQDfC4PM7uOnhLlC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.922, + "voteCount": 212, + "popularity": 5.1039 + }, + { + "id": 103409, + "title": "World's End Harem", + "originalTitle": "終末のハーレム", + "overview": "The Man-Killer Virus: a lethal disease that has eradicated 99.9% of the world's male population. Mizuhara Reito has been in cryogenic sleep for the past five years, leaving behind Tachibana Erisa, the girl of his dreams. When Reito awakens from the deep freeze, he emerges into a sex-crazed new world where he himself is the planet's most precious resource. Reito and four other male studs are given lives of luxury and one simple mission: repopulate the world by impregnating as many women as possible! All Reito wants, however, is to find his beloved Erisa who went missing three years ago. Can Reito resist temptation and find his one true love?", + "posterPath": "/h3OE30FudEPEhNMpbmcHt0ELD6s.jpg", + "backdropPath": "/k3IS8oN9WzN1JQqB5dyZMmtb90n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2022-01-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 249, + "popularity": 5.1031 + }, + { + "id": 2225, + "title": "Who Wants to Be a Millionaire?", + "originalTitle": "Who Wants to Be a Millionaire?", + "overview": "American version of the tense gameshow where contestants tackle a series of multiple-choice questions to win large cash prizes.", + "posterPath": "/oZ7fBwLRgKYyJcliFOfp03xv6Mk.jpg", + "backdropPath": "/acJDjIEdm66k2oKsr0xbOPvn0wH.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1999-08-16", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.297, + "voteCount": 37, + "popularity": 5.1006 + }, + { + "id": 49471, + "title": "Danganronpa: The Animation", + "originalTitle": "ダンガンロンパ 希望の学園と絶望の高校生 The Animation", + "overview": "Being just a normal student without a special talent, Makoto Naegi wins a lottery to attend the prestigious Hope's Peak Academy where only the top prodigies attend. However, instead of this being the beginning of a wonderful high school life, it's a ticket to despair, because the only way to graduate from Hope's Peak Academy is to kill one of your fellow students or be one of their victims.", + "posterPath": "/2XKziwAUwPiOonJfSJxnEzFPNSU.jpg", + "backdropPath": "/eAj5C3Sb4LCQReg3LMCnJ2wh45T.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2013-07-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.703, + "voteCount": 276, + "popularity": 5.1001 + }, + { + "id": 1760, + "title": "As Told by Ginger", + "originalTitle": "As Told by Ginger", + "overview": "As Told by Ginger focuses on middle schooler Ginger Foutley who, with her friends, tries to become more than a social geek.", + "posterPath": "/6Kd09yYpf2qEYusPB9rtsidMnJu.jpg", + "backdropPath": "/lXQpWlN24cxwBjNvqOUju2WouDg.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2000-10-25", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.709, + "voteCount": 91, + "popularity": 5.098 + }, + { + "id": 195339, + "title": "Pantheon", + "originalTitle": "Pantheon", + "overview": "A bullied teen receives mysterious help from someone online: a stranger soon revealed to be her recently deceased father, David, whose consciousness has been uploaded to the Cloud following an experimental destructive brain scan. David is the first of a new kind of being – an “Uploaded Intelligence” or “UI” – but he will not be the last, as a global conspiracy unfolds that threatens to trigger a new kind of world war.", + "posterPath": "/aZupC6eJhTe82e5I0JRaOBjFHOd.jpg", + "backdropPath": "/6MVugklRWUCZGijAaqc6um1Rgff.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-09-01", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.965, + "voteCount": 200, + "popularity": 5.096 + }, + { + "id": 1625, + "title": "Sue Thomas: F.B.Eye", + "originalTitle": "Sue Thomas: F.B.Eye", + "overview": "Based on a true story, this family-friendly series follows the adventures of a young, hearing impaired woman who has a special gift and goes to work for the FBI in Washington, D.C. She's one hard-headed, soft-hearted woman whose talent for reading lips helps crack crimes and bag the bad guys in places listening devices can't penetrate. With her hearing-ear dog, Levi, Sue's a glutton for jeopardy – and there's (almost) nothing she won't do to bring notorious criminals to justice. This remarkable, edge-of-your-seat drama is an inspiring tribute to the ability of the human spirit to overcome adversity and achieve great things.", + "posterPath": "/5tHDB8vSOk6WB0rFufFUILxBKZz.jpg", + "backdropPath": "/o1oSRBiSwkim3xdK0OJ2LwpWL89.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 80 + ], + "genres": [ + "Family", + "Drama", + "Crime" + ], + "releaseDate": "2002-10-13", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 22, + "popularity": 5.0945 + }, + { + "id": 31736, + "title": "Eyeshield 21", + "originalTitle": "アイシールド21", + "overview": "In Tokyo, a weak, unassertive boy named Sena Kobayakawa enters the high school of his choice, Deimon Private Senior High School. Sena's only remarkable physical abilities are his running speed and agility, which are noted by the school's American football team captain Yoichi Hiruma. Hiruma forces Sena to join the Deimon Devil Bats football team as its running back. To protect his identity from other teams who want to recruit him, Sena is forced to publicly assume the role of the team secretary and enter the field under the pseudonym of \"Eyeshield 21\" wearing a helmet with an eyeshield to hide his features.", + "posterPath": "/yp29cySITMuZF3Exw8gnRomupz8.jpg", + "backdropPath": "/fCpjDFze4ueeFEZkedQbePNFBTC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2005-04-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 177, + "popularity": 5.0931 + }, + { + "id": 96444, + "title": "Interspecies Reviewers", + "originalTitle": "異種族レビュアーズ", + "overview": "In a world bursting at the seams with moe monsters and humanoids of the horned sort, which brave heroes will take it upon themselves to review the beastly babes of the red-light district? Can only one be crowned the ultimate title of best girl? Behold the most tantalizing of trials.", + "posterPath": "/xJZwaZAXoon6wxkgXiWQNEeyW4C.jpg", + "backdropPath": "/1hypiFc1uWGhx2TsU2D5fZ4Ev7Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.923, + "voteCount": 609, + "popularity": 5.093 + }, + { + "id": 123525, + "title": "The Faraway Paladin", + "originalTitle": "最果てのパラディン", + "overview": "In a city of the dead, long since ruined and far from human civilization, lives a single human child. His name is Will, and he's being raised by three undead: the hearty skeletal warrior, Blood; the graceful mummified priestess, Mary; and the crotchety spectral sorcerer, Gus. The three pour love into the boy, and teach him all they know. But one day, Will starts to wonder: \"Who am I?\" Will must unravel the mysteries of this faraway dead man's land, and unearth the secret pasts of the undead. He must learn the love and mercy of the good gods, and the bigotry and madness of the bad. And when he knows it all, the boy will take his first step on the path to becoming a Paladin.", + "posterPath": "/rzrtmcYoz1A3LtcvZXSI0mTtXzJ.jpg", + "backdropPath": "/hABdMmk7ujczjxrRkCPCgWDt4ES.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 70, + "popularity": 5.0902 + }, + { + "id": 31766, + "title": "Wallander", + "originalTitle": "Wallander", + "overview": "Wallander is a Swedish television series adapted from Henning Mankell's Kurt Wallander novels and starring Krister Henriksson in the title role. The 1st series of 13 films was produced in 2005 and 2006, with one taken directly from a novel and the remainder with new storylines suggested by Mankell. The 2nd series of 13 films was shown between 2009 and 2010. The stories are set in Ystad near the southern tip of Sweden.\n\nThe three films Before the Frost, Mastermind, and The Secret were premiered in cinemas, with the rest first released as direct-to-DVD movies. The first episode of the second series, Hämnden, was released in Swedish cinemas in January 2009; the rest of the series was made for television.\n\nThe BBC aired all 26 episodes of the Swedish television versions on BBC Four.\n\nA third and final season, containing six 90 minute episodes, will air in 2013 with Charlotta Jonsson as Linda Wallander. The first episode, adapted from the novel The Troubled Man, was released in cinemas in January 2013.", + "posterPath": "/fTyD5mKW6Id4vb7qQN5D81s6waX.jpg", + "backdropPath": "/cdYCtHugMpaUGY2V4eT1XgbNfBb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2005-01-14", + "releaseYear": "2005", + "originalLanguage": "sv", + "voteAverage": 6.885, + "voteCount": 61, + "popularity": 5.0893 + }, + { + "id": 47813, + "title": "Cuckoo", + "originalTitle": "Cuckoo", + "overview": "Cuckoo is every parent's worst nightmare - a slacker full of outlandish, New Age ideas. Ken is the over-protective father of a girl who's impulsively married an American hippie on her gap year.", + "posterPath": "/eFBfQIouobewXiw5g1fWwwNt7t0.jpg", + "backdropPath": "/fx3ee9lS4LbHOBu8Vk0I7BKH3Bx.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2012-09-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.759, + "voteCount": 81, + "popularity": 5.0878 + }, + { + "id": 241269, + "title": "Bandidos", + "originalTitle": "Bandidos", + "overview": "A gang of skilled misfits ventures to uncover a long-hidden Mayan treasure. Their strategy? Hazy. Their dynamic? Off. Luckily, they're pretty ingenious.", + "posterPath": "/hoM8DvKJw5KPfdHbcITxn0rO2HZ.jpg", + "backdropPath": "/atPVFcn6Wfp6nv4T6BxQwAAxKRV.jpg", + "mediaType": "tv", + "genreIds": [ + 10759 + ], + "genres": [ + "Action & Adventure" + ], + "releaseDate": "2024-03-13", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.293, + "voteCount": 135, + "popularity": 5.0838 + }, + { + "id": 208891, + "title": "Tengoku Daimakyo", + "originalTitle": "天国大魔境", + "overview": "In the year 2024, the world has collapsed. Grotesque monsters lurk amongst the ruins of Japan, while remaining people scrape together what they can to survive. Kiruko, an odd-job girl in Nakano, accepts a mysterious woman's dying wish to take a boy named Maru to a place called Heaven. Maru is convinced that there will be a boy there who looks exactly like him.", + "posterPath": "/74EYbgajUt8X2kxpu62dMR7q8jH.jpg", + "backdropPath": "/ixhUiD7KEjGGczSGX3kGOiYkNV4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.874, + "voteCount": 238, + "popularity": 5.0818 + }, + { + "id": 61339, + "title": "Sailor Moon Crystal", + "originalTitle": "美少女戦士セーラームーンクリスタル", + "overview": "Usagi Tsukino is chosen to be a guardian of justice and is sent on a quest to locate a Silver Crystal before the Dark Kingdom invades the Earth.", + "posterPath": "/mVXlsNJw4fxD2UWNzaUh2TFfI5c.jpg", + "backdropPath": "/hHv5UV9zB8bTjhGQgbZBF8IzslW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 653, + "popularity": 5.0784 + }, + { + "id": 758, + "title": "The Sweeney", + "originalTitle": "The Sweeney", + "overview": "Jack Regan, an unethical officer of the Flying Squad, uses unorthodox methods to pursue criminals with the help of his partner, George Carter.", + "posterPath": "/bB7er5lQytNjsX3qGL9N4RwXfgt.jpg", + "backdropPath": "/h6GOCc6YXytj8ioBftKxXjlx0y3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "1975-01-02", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 25, + "popularity": 5.0782 + }, + { + "id": 10219, + "title": "Handy Manny", + "originalTitle": "Handy Manny", + "overview": "Manny Garcia, a kind, generous, outgoing handyman and his eclectic mix of talking tools help the people of Sheet Rock Hills with repairs both large and small, while teaching kids how to confront and conquer everyday problems.", + "posterPath": "/7CCeh3UHSLedhi0wqz3dQmByaA6.jpg", + "backdropPath": "/o2L9goGao8uIIvFNnS1gVtPiYPx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "2006-09-16", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 42, + "popularity": 5.078 + }, + { + "id": 43018, + "title": "Maison Ikkoku", + "originalTitle": "めぞん一刻", + "overview": "Godai is a ronin (someone who has failed university entrance exams) living in a run down apartment house called Maison Ikkoku. Among the other residents are the nosy Ichinose, the sexy Akemi Roppongi, and the mysterious Yotsuya. The others are given to having wild parties which makes it difficult for Godai to study. Into this mayhem comes the recently widowed Kyoko as the new live-in manager. Godai falls for her, but doesn't have the nerve to tell her. As time passes, their relationship slowly develops amid life at Maison Ikkoku, despite all sorts of romantic hurdles.", + "posterPath": "/6jN5iROb8bwm8RSjeKw4OXh93Xo.jpg", + "backdropPath": "/jZWjMz1ltf32tV42T41s1LtyHvC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10749 + ], + "genres": [ + "Animation", + "Comedy", + "Romance" + ], + "releaseDate": "1986-03-26", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 31, + "popularity": 5.0773 + }, + { + "id": 110655, + "title": "The Great Seljuks", + "originalTitle": "Uyanış: Büyük Selçuklu", + "overview": "The war of the Great Seljuk Emperor, Meliksah and her loyalist, Sencer against Hasan Sabbah, who is sworn to destroy the Seljuks.", + "posterPath": "/8B1nL3gthGN55BHTMzZOlzBYNkU.jpg", + "backdropPath": "/mDClyxheASUEz66INGa9KX668xT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10768 + ], + "genres": [ + "Drama", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2020-09-28", + "releaseYear": "2020", + "originalLanguage": "tr", + "voteAverage": 7.3, + "voteCount": 13, + "popularity": 5.0751 + }, + { + "id": 2560, + "title": "UFO", + "originalTitle": "UFO", + "overview": "A secret, high-technology international agency called SHADO defends Earth from alien invaders.", + "posterPath": "/cDCkDOVNb6OAoSrtoOvgvP6KgwH.jpg", + "backdropPath": "/pYcSxml94LU0Emgc69o3CCcTq5Q.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1970-09-16", + "releaseYear": "1970", + "originalLanguage": "en", + "voteAverage": 7.667, + "voteCount": 51, + "popularity": 5.0722 + }, + { + "id": 1895, + "title": "Jonathan Creek", + "originalTitle": "Jonathan Creek", + "overview": "Working from his home in a converted windmill, Jonathan Creek is a magician with a natural ability for solving puzzles. He soon puts this ability to the use of solving impossible crimes and mysterious murders.", + "posterPath": "/wLKa7RUDp9dN2gMZBkMxywG8xsw.jpg", + "backdropPath": "/iq17QmKw427IzmSToOgXljRFEem.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 35, + 18 + ], + "genres": [ + "Mystery", + "Comedy", + "Drama" + ], + "releaseDate": "1997-05-09", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 69, + "popularity": 5.072 + }, + { + "id": 42445, + "title": "Borgen", + "originalTitle": "Borgen", + "overview": "40-year old political leader Birgitte Nyborg secures her party a landslide victory through her idealism and huge effort, then faces the biggest challenge of her life: how most effectively to use the newly won seats, and how far she is willing to go in order to gain as much influence as possible.", + "posterPath": "/3wB4R3Ac3lKSQWKpoU0zeRY8XqL.jpg", + "backdropPath": "/ooFxDrNQl5cwnQOuQCuMDRCJrbF.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-09-26", + "releaseYear": "2010", + "originalLanguage": "da", + "voteAverage": 8.027, + "voteCount": 242, + "popularity": 5.0717 + }, + { + "id": 33025, + "title": "The Borgias", + "originalTitle": "The Borgias", + "overview": "Set in 15th century Italy at the height of the Renaissance, The Borgias chronicles the corrupt rise of patriarch Rodrigo Borgia to the papacy, where he proceeds to commit every sin in the book to amass and retain power, influence and enormous wealth for himself and his family.", + "posterPath": "/y6CHDkNDhswuaqwQEC0wgC7MMox.jpg", + "backdropPath": "/mbQi8FC2Gk762plIcZfYCE2Kcmj.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.567, + "voteCount": 503, + "popularity": 5.0709 + }, + { + "id": 209707, + "title": "The Café Terrace and Its Goddesses", + "originalTitle": "女神のカフェテラス", + "overview": "After inheriting his late grandmother’s failing café, Hayato sees it as a bother and plans to sell it for a quick buck. Until he discovers five beautiful girls staying there! When they beg him to keep the café open, Hayato reluctantly gives in. Can he manage the seaside shop while learning to live with these unruly women?", + "posterPath": "/oWN39kWHYfclI2ljtkpg905fV4s.jpg", + "backdropPath": "/2EHQwcx2tfoherw54h0lhx2K7b.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.051, + "voteCount": 49, + "popularity": 5.0702 + }, + { + "id": 284736, + "title": "Boston Blue", + "originalTitle": "Boston Blue", + "overview": "NYPD Detective Danny Reagan takes a job with the Boston PD and is paired with Detective Lena Silver, part of a law enforcement family comprised of District Attorney Mae Silver, Police Superintendent Sarah Silver, rookie cop Jonah Silver and Rev. Edwin Peters. Reagan hopes to reconnect with his son, Sean, in Boston.", + "posterPath": "/8pyxutHxpgBt8ZwbIG2TZWCW394.jpg", + "backdropPath": "/lNenic4X3hzz7R0XFUcGKfsemKC.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-10-17", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 20, + "popularity": 5.0697 + }, + { + "id": 87542, + "title": "Darkness: Those Who Kill", + "originalTitle": "Den som dræber - Fanget af mørket", + "overview": "Investigator Jan and profiler Louise constantly move around in the thrilling periphery of a murderer's view as they link a series of killings.", + "posterPath": "/5kjHlWl5oN1fEY26Q8WTmJPpBRb.jpg", + "backdropPath": "/f2FnQOjLtWfcjzEbJmkfhB5ZvLK.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2019-03-01", + "releaseYear": "2019", + "originalLanguage": "da", + "voteAverage": 6.9, + "voteCount": 84, + "popularity": 5.0693 + }, + { + "id": 21676, + "title": "The Wendy Williams Show", + "originalTitle": "The Wendy Williams Show", + "overview": "Radio personality Wendy Williams is the host to her own live syndicated talk show. Wendy injects her television series with the same style that characterizes her radio show, and divides on-air time between probing celebrity interviews and advice-giving to audience members.", + "posterPath": "/c57IMqWGHMyu8Q9fSdzIwpmH5np.jpg", + "backdropPath": "/tnuVomk4NlZzOaHRnZ4lEoXEemH.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2008-07-14", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 10, + "popularity": 5.0672 + }, + { + "id": 2464, + "title": "Wildfire", + "originalTitle": "Wildfire", + "overview": "After serving time at a juvenile detention center, eighteen-year-old Kris Furillo is given the opportunity to start a new life. Her talent with horses is recognized by a volunteer and local trainer, who arranges a job for her at the Ritter's family run ranch.", + "posterPath": "/mbS3CRtYz1HfmOWiMueaSnudOtB.jpg", + "backdropPath": "/w3eQfUsOwY8TZuGICw3INv2mBtB.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2005-06-20", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 8.455, + "voteCount": 55, + "popularity": 5.0638 + }, + { + "id": 60846, + "title": "Log Horizon", + "originalTitle": "ログ・ホライズン", + "overview": "One day, while playing the online game Elder Tales, 30,000 players suddenly find themselves trapped in another world. There, eight-year veteran gamer Shiroe also gets left behind. The trapped players are still alive, but they remain in combat with the monsters. The players don't understand what has happened to them, and they flee to Akiba, the largest city in Tokyo, where they are thrown into chaos. Once proud of his loner lifestyle, Shiroe forms a guild called Log Horizon with his old friend Naotsugu, female assassin Akatsuki and others.", + "posterPath": "/62vfauCjvUmcaev0yfCnASa6yhm.jpg", + "backdropPath": "/f6WzZQVoCSn7W1kmr1UhSToRi2y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2013-10-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 183, + "popularity": 5.0627 + }, + { + "id": 61833, + "title": "Expedition Unknown", + "originalTitle": "Expedition Unknown", + "overview": "The adventures of Josh Gates as he investigates unsolved iconic stories across the globe.", + "posterPath": "/4OiM6apNckkqo04I7TO5VmQl65R.jpg", + "backdropPath": "/tllxDXLGOipn01rhuRmvGVHdP8o.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10764 + ], + "genres": [ + "Documentary", + "Reality" + ], + "releaseDate": "2015-01-08", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.978, + "voteCount": 67, + "popularity": 5.0598 + }, + { + "id": 63181, + "title": "Marvel's Guardians of the Galaxy", + "originalTitle": "Marvel's Guardians of the Galaxy", + "overview": "Peter Quill is Star-Lord, the brash adventurer who, to save the universe from its greatest threats, joins forces with a quartet of disparate misfits — fan-favorite Rocket Raccoon, a tree-like humanoid named Groot, the enigmatic, expert fighter Gamora and the rough edged warrior Drax the Destroyer.", + "posterPath": "/oXwe3wVhdvvxiixL9UJf6PgBybZ.jpg", + "backdropPath": "/9yAhhj9toqP9z6CeoMbhJdNhXN3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Family" + ], + "releaseDate": "2015-09-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 88, + "popularity": 5.0596 + }, + { + "id": 60667, + "title": "Gundam Build Fighters", + "originalTitle": "ガンダムビルドファイターズ", + "overview": "Sei Iori is a Gunpla builder whose family runs a hobby shop in a small town. He aspires to be a Gunpla Battle champion like his father, but despite his exceptional building skills, he lacks the combat abilities to compete with other contestants. Then one day, he meets a mysterious boy named Reiji, who helps him improve his confidence in participating in Gunpla Battles. Together, Sei and Reiji battle their way to the 7th Gunpla Battle World Tournament.", + "posterPath": "/k8EBZ63k2fOfQNRJWpyqFxcQTZI.jpg", + "backdropPath": "/9TCkLTsVeMLVy9vSpe6qHKLwIBK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.326, + "voteCount": 23, + "popularity": 5.0585 + }, + { + "id": 104711, + "title": "EDENS ZERO", + "originalTitle": "EDENS ZERO", + "overview": "Aboard the Edens Zero, a lonely boy with the ability to control gravity embarks on an adventure to meet the fabled space goddess known as Mother.", + "posterPath": "/nfkn7IVG5aY2fyjHBIF3A98rMcl.jpg", + "backdropPath": "/lMLofCXt4skmlHHvngEKDd6hqIx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 213, + "popularity": 5.0584 + }, + { + "id": 952, + "title": "The Adventures of Ozzie and Harriet", + "originalTitle": "The Adventures of Ozzie and Harriet", + "overview": "The Adventures of Ozzie and Harriet is an American sitcom, airing on ABC from October 3, 1952 through March 26, 1966, starring the real life Nelson family. After a long run on radio, the show was brought to television where it continued its success, running on both radio and television for a few years. The series stars Ozzie Nelson and his wife, singer Harriet Nelson, and their young sons, David and Eric \"Ricky\" Nelson. Don DeFore had a recurring role as the Nelsons' friendly neighbor \"Thorny\".", + "posterPath": "/h9Kqsng08I3CtA5m2GVq52NVUIL.jpg", + "backdropPath": "/z9ipjaUaoRWMl6vvQnLhpuFfkBu.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1952-10-03", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 13, + "popularity": 5.0559 + }, + { + "id": 73506, + "title": "Full Moon", + "originalTitle": "Dolunay", + "overview": "Ferit Aslan is a very successful businessman, and is extremely organized. He wants the same manner of organization in both his private and professional life. Nazli who is studying gastronomy needs to find a job immediately as she is responsible for covering the expenses of the home she shares with her friend and sister. She is a stubborn and adamant personality, so she has a tough time keeping a job. Both completely opposites, meet each other in this series.", + "posterPath": "/3JK0Xk1HltwqXdNfhqsxQtKlMYQ.jpg", + "backdropPath": "/sn19T6Dl4409fIT9PjCUkp6zcaZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2017-07-04", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 8.181, + "voteCount": 47, + "popularity": 5.0507 + }, + { + "id": 7626, + "title": "The Monkees", + "originalTitle": "The Monkees", + "overview": "Micky, Mike, Peter, and Davy are four young men in mid-1960s LA, members of a struggling country-folk-rock band looking for their big break amid madcap encounters with a variety of people straight out of TV and movie central casting, with full knowledge that their existence is part of a weekly television series.", + "posterPath": "/sIH6gPSVliWea82sCHt7lsB73Bf.jpg", + "backdropPath": "/8LkGGqYuoqq64jpZmpEtOoapTys.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1966-09-12", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 50, + "popularity": 5.0468 + }, + { + "id": 207, + "title": "Bear in the Big Blue House", + "originalTitle": "Bear in the Big Blue House", + "overview": "The series provides children with valuable tools for growth in key areas of music, social skill development, and cognitive learning through integrated programs combining music, movement, and exploration. With Bear and all his friends, learn about cooperation, teamwork and more.", + "posterPath": "/hww73tErgeSOQ6YlcKjey0smc8s.jpg", + "backdropPath": "/sqKDcOAlMmdUDBHy4pRaGh8H7ex.jpg", + "mediaType": "tv", + "genreIds": [ + 10762 + ], + "genres": [ + "Kids" + ], + "releaseDate": "1997-10-20", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 103, + "popularity": 5.0456 + }, + { + "id": 106159, + "title": "Debris", + "originalTitle": "Debris", + "overview": "Two federal agents from two different continents, and two different mindsets, must work together to investigate when wreckage from a destroyed alien spacecraft has mysterious effects on humankind.", + "posterPath": "/cILrZGHgsIEpZ6VKEB3VwC2CadB.jpg", + "backdropPath": "/yQLk5oVP5usR6R1RBBExrcUYdr7.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2021-03-01", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.079, + "voteCount": 202, + "popularity": 5.0424 + }, + { + "id": 259288, + "title": "Friendly Rivalry", + "originalTitle": "선의의 경쟁", + "overview": "A high-teen mystery thriller about a close relationship between teenage girls in a harsher survival competition than entrance examinations.", + "posterPath": "/eRwNhjpizV7up8KrCmiI94is1bl.jpg", + "backdropPath": "/z1MKvQJVVMbt1svoV3zjh6cRUTv.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2025-02-10", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.724, + "voteCount": 78, + "popularity": 5.0411 + }, + { + "id": 2297, + "title": "The Wayans Bros.", + "originalTitle": "The Wayans Bros.", + "overview": "The Wayans Bros. is a situation comedy that aired from January 1995 to May 1999 on The WB. The series starred real-life brothers Shawn and Marlon Wayans. Both brothers were already well-known from the sketch comedy show In Living Color that aired from 1990 to 1994 on Fox. The series also starred John Witherspoon and Anna Maria Horsford.", + "posterPath": "/xmbV7HcX9hXvxSvd6WJDBg6GHtr.jpg", + "backdropPath": "/bvvkaMU3gYixjxicSHoy8V5Fmqd.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1995-01-11", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.164, + "voteCount": 64, + "popularity": 5.0361 + }, + { + "id": 218230, + "title": "Death's Game", + "originalTitle": "이재, 곧 죽습니다", + "overview": "At the brink of going to hell, Yee-jae must cycle through twelve separate lives and twelve separate deaths in this reincarnation drama.", + "posterPath": "/ecM5MY9g2mF6x5SrB2QWOYkcH98.jpg", + "backdropPath": "/icy4p7Nb33UU2S5eHvlBcE0Dvmi.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-12-15", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.408, + "voteCount": 573, + "popularity": 5.0356 + }, + { + "id": 237333, + "title": "We Are", + "originalTitle": "คือเรารักกัน", + "overview": "A group of university friends navigate academics, friendships, and romance as they deal with the ups and downs of campus life.", + "posterPath": "/gqVxKunQPQVOZjElkVD0kz19ld7.jpg", + "backdropPath": "/5PAupb5qisR4w1GznvbyTINB7jH.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-04-03", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 8.5, + "voteCount": 20, + "popularity": 5.0352 + }, + { + "id": 21732, + "title": "Mobile Suit Gundam 00", + "originalTitle": "機動戦士ガンダム00", + "overview": "The year is 2307 A.D. Although fossil fuels have been depleted, humanity has obtained a new source of energy to replace them, in the form of a large-scale solar power generation system based on three huge orbital elevators. However, the benefits of this system are available only to a handful of major powers and their allies. In this world of never-ending conflict, a private armed organization appears, dedicated to the elimination of war through armed force. Its name is Celestial Being, and it is in possession of \"Gundam\" mobile suits.", + "posterPath": "/1uEgsZ47dtBCoKLlL9edQ0QMrRF.jpg", + "backdropPath": "/vxSDDV6VxTHkrABsNa3dqhExAIk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2007-10-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 51, + "popularity": 5.0349 + }, + { + "id": 90870, + "title": "Wu-Tang: An American Saga", + "originalTitle": "Wu-Tang: An American Saga", + "overview": "In the early 1990s in New York, during the height of the crack cocaine epidemic, a visionary musician named Bobby Diggs aka The RZA begins to form a super group of a dozen young, black men, who will eventually rise to become one of the unlikeliest success stories in American music history.", + "posterPath": "/kbZFfquhFg2EOUnKbZedWCs1kWO.jpg", + "backdropPath": "/7JknL2ItfhJzQBSnFfSEASg1Os4.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-09-04", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 283, + "popularity": 5.0337 + }, + { + "id": 40244, + "title": "The Client List", + "originalTitle": "The Client List", + "overview": "Riley Parks delicately balances two starkly different lives -- one as a single mom in a conservative town struggling to provide for her family and the other as a savvy and ambitious businesswoman working with a rowdy, sexy and unpredictable group of women.", + "posterPath": "/14T9c7aBwYlsqAc3ShzHBJwD44T.jpg", + "backdropPath": "/ldpdSeVmcaEDA7jh3X4HFhpgPhC.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-04-08", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.59, + "voteCount": 150, + "popularity": 5.0334 + }, + { + "id": 69830, + "title": "Soldiers", + "originalTitle": "Солдаты", + "overview": "", + "posterPath": "/gfA8qCggI61oLFun7ZjVpwCcuCw.jpg", + "backdropPath": "/A3wuM8vUPCJ7X1ChzL6nYs0Lmwy.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "2004-08-23", + "releaseYear": "2004", + "originalLanguage": "ru", + "voteAverage": 7.2, + "voteCount": 26, + "popularity": 5.0332 + }, + { + "id": 77454, + "title": "Jenni Rivera: Mariposa de Barrio", + "originalTitle": "Jenni Rivera: Mariposa de Barrio", + "overview": "This drama reveals the difficult rise to fame of the Mexican-American singer Jenni Rivera, from her past of abuse to success as a band leader.", + "posterPath": "/vIHwoZF3YjLkoFKJGJMIiIO4HsF.jpg", + "backdropPath": "/qzRuX0IMIjZZLw6aWHraDC459gf.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-06-28", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 7.944, + "voteCount": 124, + "popularity": 5.0325 + }, + { + "id": 67229, + "title": "Match Game", + "originalTitle": "Match Game", + "overview": "A modern reboot of the classic 70s game show that features two contestants attempting to match the answers of six celebrities in a game of fill-in-the-blank.", + "posterPath": "/f4GmtNrtIzpqFNAxk3DFzk4zMmR.jpg", + "backdropPath": "/14QakHe3Sxb6lTLDzRHzO2Zz826.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2016-06-26", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 25, + "popularity": 5.032 + }, + { + "id": 65929, + "title": "Aikatsu Stars!", + "originalTitle": "アイカツスターズ!", + "overview": "Yume Nijino aims to become a top idol, and she enrolls in the Yotsuboshi Gakuen (Four Stars Academy). This academy has a special group called the S4, who are the top four active idols in the school. Yume and the other first-year students aim to become a part of the S4.", + "posterPath": "/fiWqW5wYF702dpQWwSeRwKOyXqZ.jpg", + "backdropPath": "/f7nWK7iPKLJzQXt8D7C1w9fgUs6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10751, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Family", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.321, + "voteCount": 14, + "popularity": 5.0316 + }, + { + "id": 117024, + "title": "Sacrificial Princess and the King of Beasts", + "originalTitle": "贄姫と獣の王", + "overview": "One hundred years ago, a grave tradition was born in a land where demons live among people: a human must be sacrificed to the King of Beasts. But when Sariphi, the 99th sacrifice, is offered to the King, she isn’t afraid at all! Intrigued by her calm and cute nature, the King decides to spare her life with plans to make her his bride.", + "posterPath": "/moG9KSZ52RF5wW2o6fp7aivSMAB.jpg", + "backdropPath": "/ztqUSvknWkESKsRbjeunp3MPQUz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-04-20", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 28, + "popularity": 5.0314 + }, + { + "id": 70923, + "title": "Rakshasa Street", + "originalTitle": "镇魂街", + "overview": "Requiem Street, where evil spirits are attracted to in order to destroy them. A place where spirits and humans co-exist, not all humans can enter Requiem Street. Only those rare-soul users with guardian spirits can enter. Xia Ling was just a normal university intern, but a meeting by chance changes her ordinary life... In this world full of evil spirits, can you cooperate with your guardian spirit in order to survive?", + "posterPath": "/jD4gLx5LOjyq9otMBRBlZAdCRXG.jpg", + "backdropPath": "/pvZPoC4HYVvUkjuDvlJkbBf7bYW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2016-04-28", + "releaseYear": "2016", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 11, + "popularity": 5.0288 + }, + { + "id": 117992, + "title": "The Duke of Death and His Maid", + "originalTitle": "死神坊ちゃんと黒メイド", + "overview": "Due to a childhood curse, anything that the Duke touches will die - which makes his flirty maid’s behavior all the more shocking! Can the Duke and his companions break the curse, or is he doomed to a life where love is forever out of his reach?", + "posterPath": "/cHRE2RI6KsyrBTRSAJwddfBJWao.jpg", + "backdropPath": "/jehOoaZuAfbdEo7QmvkMKo1LjkG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-07-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.82, + "voteCount": 111, + "popularity": 5.0283 + }, + { + "id": 86893, + "title": "Tacoma FD", + "originalTitle": "Tacoma FD", + "overview": "There's not a lot of fires to fight in one of the rainiest cities in America, leaving the crew at the Tacoma Fire Department tackling the less glamorous elements of the job. Light on blazes that need extinguishing, this squad keeps itself entertained with creative competitions, friendly first responder rivalries, and bizarre emergency calls.", + "posterPath": "/mH0d0dUdHYkmHLAkoTVXc1FUS9V.jpg", + "backdropPath": "/cn0BAoregZTYm7hG58pDFIfPjAr.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-03-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 83, + "popularity": 5.0273 + }, + { + "id": 67466, + "title": "Marvel's Runaways", + "originalTitle": "Marvel's Runaways", + "overview": "Every teenager thinks their parents are evil. What if you found out they actually were? Six diverse teenagers who can barely stand each other must unite against a common foe – their parents.", + "posterPath": "/zceMrfO17AQkeWJZNra4O90s1vE.jpg", + "backdropPath": "/pHURd96EW167jUd2Jf8XpgTiLJV.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-11-21", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 942, + "popularity": 5.0226 + }, + { + "id": 15655, + "title": "Knight Rider", + "originalTitle": "Knight Rider", + "overview": "On the heels of NBC's hit movie, the iconic 1980s television classic comes roaring back to life as a reinvented, updated and super-charged action series showcasing the new KITT (Knight Industries Three Thousand). Absolutely the coolest car ever created, KITT is equipped with an \"AI\" (artificial intelligence) that is capable of hacking almost any system. Its weapons systems match that of a jet fighter, and its body is capable of actually transforming into other vehicles and using sophisticated holographic imagery to elude villains.", + "posterPath": "/e93H0P6GYoDUhHR5uCdmfLDAvKt.jpg", + "backdropPath": "/vh2ZS4Aome8klUyJH5whPnZbSZe.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2008-09-24", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.491, + "voteCount": 657, + "popularity": 5.02 + }, + { + "id": 281004, + "title": "Beyond the Bar", + "originalTitle": "에스콰이어: 변호사를 꿈꾸는 변호사들", + "overview": "A young, rookie lawyer with a strong sense of justice joins a top law firm — navigating the complex legal world under a cold, demanding mentor.", + "posterPath": "/nN6mZZxJBPZXBjLxnjgpnoRvswk.jpg", + "backdropPath": "/9MEzfTNfnTvCLHXfRu7a5TSJCsx.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-08-02", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.216, + "voteCount": 44, + "popularity": 5.0195 + }, + { + "id": 3430, + "title": "The Paul O'Grady Show", + "originalTitle": "The Paul O'Grady Show", + "overview": "The Paul O'Grady Show is a British comedy chat show hosted by Birkenhead-born comedian Paul O'Grady. The format was originally devised by Granada Television and was broadcast on ITV before moving to Channel 4, where the show was produced by Olga TV. The programme is a teatime chat show consisting of a mixture of celebrity guests, comic stunts, musical performances, and occasionally viewer competitions.", + "posterPath": "/fGoZnpbWxcrjKn8z7Auq47SvxST.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2004-10-11", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 4.6, + "voteCount": 11, + "popularity": 5.0181 + }, + { + "id": 117933, + "title": "Summer Time Rendering", + "originalTitle": "サマータイムレンダ", + "overview": "Shinpei Ajiro travels home to attend the funeral of a childhood friend, and finds the remote island plagued by a sinister, supernatural force.", + "posterPath": "/m9e7chRW8Q8Go1Dv00RCUHbMoNe.jpg", + "backdropPath": "/p2eZlGwd8OjkWpwD2hSoBiIlHBZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2022-04-15", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.106, + "voteCount": 160, + "popularity": 5.0176 + }, + { + "id": 1048, + "title": "The Colgate Comedy Hour", + "originalTitle": "The Colgate Comedy Hour", + "overview": "The Colgate Comedy Hour is an American comedy-musical variety series that aired live on the NBC network from 1950 to 1955. The show starred many notable comedians and entertainers of the era, including Eddie Cantor, Dean Martin and Jerry Lewis, Fred Allen, Donald O'Connor, Bud Abbott and Lou Costello, Bob Hope, Jimmy Durante, Ray Bolger, Gordon MacRae, Ben Blue, Robert Paige, Tony Curtis, Burt Lancaster, Broadway dancer Wayne Lamb and Spike Jones and His City Slickers.", + "posterPath": "/oWvIOn94vgsrius8HYTreQgJtjp.jpg", + "backdropPath": "/4QrmsUEZgIjzr64MpHprZYEChUN.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1950-09-10", + "releaseYear": "1950", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 5.0169 + }, + { + "id": 197373, + "title": "Based on a True Story", + "originalTitle": "Based on a True Story", + "overview": "The lives of a realtor, a plumber and a former tennis star unexpectedly collide, exposing America’s obsession with true crime, murder and the slow-close toilet seat.", + "posterPath": "/5xPLk78TFStBi1dQAlG2mnoSK60.jpg", + "backdropPath": "/yVWlvUHX02ARZte4aBep6GPkkck.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2023-06-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 122, + "popularity": 5.0165 + }, + { + "id": 19239, + "title": "Future Boy Conan", + "originalTitle": "未来少年コナン", + "overview": "After the great disaster of 2008, a war that destroyed the planet, the world is now largely ocean with the continents having sunk. Conan lives on a remote island with his grandpa and nature, never having seen another human being. But one day a mysterious girl, Lana, washes up on his beach. The two become quick friends, but she’s soon kidnapped and taken to Industria, a technological remainder from the world before. Conan leaves his island in pursuit, braving new lands and many hardships with new friends and enemies just beyond the horizon.", + "posterPath": "/tmlhwdTBA264iQF2Us5vWdKz1fE.jpg", + "backdropPath": "/rcFkixO3vY2oyBM7NQsL3SPcXas.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "1978-04-04", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 8.371, + "voteCount": 202, + "popularity": 5.015 + }, + { + "id": 99778, + "title": "The God of High School", + "originalTitle": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "overview": "When an island half-disappears from the face of the earth, a mysterious organization sends out invitations for a tournament to every skilled fighter in the world. \"If you win you can have ANYTHING you want,\" they claim. They're recruiting only the best to fight the best and claim the title of The God of High School. Jin Mori, a Taekwondo specialist and a high school student, soon learns that there is something much greater beneath the stage of the tournament.", + "posterPath": "/lfa79lR34s6eyNkKjqC76uQEihh.jpg", + "backdropPath": "/gexkIOkGW4PaYTOctUTlG59MZ0B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 726, + "popularity": 5.0148 + }, + { + "id": 22634, + "title": "Shakugan no Shana", + "originalTitle": "灼眼のシャナ", + "overview": "Murdered by a demonic being, 15-year-old Yuji Sakai has his life force replaced by a flame that dims with each day. When the flame dies, no one will remember he was ever alive. This is how he meets Shana: a warrior with a burning sword, and the will of a god as her guide. The two form a bond as Yuji becomes Shana’s accomplice in her battles to keep the balance between the ordinary world and hers.", + "posterPath": "/sesXxmmb2TZ9uq6ETIkOQkxK1wV.jpg", + "backdropPath": "/5bOYtdiBKBnrbfPTwZaAEJOfDmW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2005-10-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 102, + "popularity": 5.0141 + }, + { + "id": 62522, + "title": "Six Sisters", + "originalTitle": "Seis hermanas", + "overview": "Six sisters of an upper-class Spanish family experience difficulties in taking over the family's fabrics business after their father's death in 1913.", + "posterPath": "/sZ6KyLsnkCLwNetqYup3PI1yhnZ.jpg", + "backdropPath": "/7DOQKioQwhvUSF9djiC6Opb083a.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-04-23", + "releaseYear": "2015", + "originalLanguage": "es", + "voteAverage": 6.2, + "voteCount": 10, + "popularity": 5.0077 + }, + { + "id": 1449, + "title": "Mutant X", + "originalTitle": "Mutant X", + "overview": "Mutant X is a science fiction television series that debuted on October 6, 2001. The show was created by Avi Arad, and it centers around Mutant X, a team of \"New Mutants\" who possess extraordinary powers as a result of genetic engineering. The members of Mutant X were used as test subjects in a series of covert government experiments. The mission of Mutant X is to seek out and protect their fellow New Mutants. The series was filmed in Toronto, Ontario, Canada.\n\nEven though the series had high ratings and was meant to be renewed for a fourth season, it was abruptly canceled in 2004 after the dismantling of Fireworks Entertainment, one of the show's production companies, ending the show on a cliffhanger.", + "posterPath": "/yiKg027jdpkSsguVBI9WqliNWez.jpg", + "backdropPath": "/A2BqbbSs9E4emekdxdvWzLK6lpx.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2001-10-06", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6.608, + "voteCount": 111, + "popularity": 5.004 + }, + { + "id": 56355, + "title": "Hayate the Combat Butler", + "originalTitle": "ハヤテのごとく!", + "overview": "16-year-old Hayate is really down on his luck. Because his unemployed parents are good-for-nothings who waste what money they have on gambling, Hayate had to start working at a young age to help out his family. Although such experience has made him inhumanly fast and tough and skilled at things boys aren't normally skilled at, it has also left him in an awkward position, as his parents have racked up such a huge gambling debt that they have sold Hayate to the yakuza for the value of his organs. In a desperate attempt to avoid that fate, Hayate decides to become a \"bad guy\" and kidnap someone to be held for ransom, but his efforts to do so are mistaken as a confession of love by the girl he targets. When he helps save the (as it turns out) ultra-wealthy 13-year-old Nagi from real kidnappers, she takes him in and gives him a job as her new personal butler (and love interest) until he can pay off his debt. But Hayate is more attracted to Nagi's beautiful teenage maid Maria, and head butler Klaus is initially disapproving of a boy with such a poor look. And then there's Nagi's pet Tama, who is also a force to be reckoned with.", + "posterPath": "/kXNV13f4MiJZJ1oQqwsjetqbn2x.jpg", + "backdropPath": "/iJ5G4z3729y05kwt2Js0d98AxFL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-04-01", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.44, + "voteCount": 25, + "popularity": 5.0026 + }, + { + "id": 248416, + "title": "The Twisted Tale of Amanda Knox", + "originalTitle": "The Twisted Tale of Amanda Knox", + "overview": "Amanda Knox arrives in Italy for her study abroad only to be wrongfully imprisoned for murder weeks later. Follow Knox's relentless fight to prove her innocence and reclaim her freedom and examines why authorities and the world stood so firmly in judgment.", + "posterPath": "/udxkpbqBsVS4Hnrfn4HabDKKxb5.jpg", + "backdropPath": "/iLzaLdkva7wUV9HMyykaHFUFHKA.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-08-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.281, + "voteCount": 32, + "popularity": 5.0013 + }, + { + "id": 108261, + "title": "Mr. Queen", + "originalTitle": "철인왕후", + "overview": "A modern chef suddenly becomes trapped inside the body of a queen from the Joseon era, which causes chaos for everyone involved.", + "posterPath": "/aekZ1Mk3ROB19DDFNoSt5dcXoUQ.jpg", + "backdropPath": "/8GdL6o4zzSAJmHy5ZwWwTDLwXS1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10765 + ], + "genres": [ + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-12-12", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.526, + "voteCount": 460, + "popularity": 5.0011 + }, + { + "id": 70617, + "title": "Moominvalley", + "originalTitle": "Muumilaakso", + "overview": "Follow the life and adventures of curious, kind and idealistic Moomintroll. A typical hero in a coming-of-age story, Moomintroll tries to tackle the puzzle of growing up to his true, individualistic self while remaining a beloved part of the family.", + "posterPath": "/yhA4pHwPUDSR77xSOXgwj7smUoD.jpg", + "backdropPath": "/yIt45RgZW33BGcxoVH3ahXyU5QW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-02-25", + "releaseYear": "2019", + "originalLanguage": "fi", + "voteAverage": 7.4, + "voteCount": 18, + "popularity": 5 + }, + { + "id": 1393, + "title": "Not Going Out", + "originalTitle": "Not Going Out", + "overview": "Lee is a childish northerner who lives in a fancy penthouse apartment in London who goes through a variety of jobs such as a janitor and ice cream man, as well as attempting relationships with female flatmates. His best mate, Daily Mail reading, middle-class citizen Tim is always there to stop Lee from getting in trouble, or not? Mayhem is never far away with cleaner Barbara who has never done an honest day's work in her life.", + "posterPath": "/mzOriVp3DtlEZxh0plXZWBvzWB9.jpg", + "backdropPath": "/vdQqBYaOS9qO9xQuajcaqDKvvJ7.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-10-06", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 74, + "popularity": 4.9996 + }, + { + "id": 235924, + "title": "Criminal Code", + "originalTitle": "DNA DO CRIME", + "overview": "To crack the code of an investigation into a larger-than-life robbery, federal agents need to get creative.", + "posterPath": "/fDu0T5WE0QAoX2yAqZ1RtlWBn6I.jpg", + "backdropPath": "/x7J7YydPEnTZm6JoTqbKOYkVb8e.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2023-11-14", + "releaseYear": "2023", + "originalLanguage": "pt", + "voteAverage": 7.5, + "voteCount": 118, + "popularity": 4.9991 + }, + { + "id": 203744, + "title": "Sugar", + "originalTitle": "Sugar", + "overview": "An enigmatic private detective struggles with personal demons as he investigates the disappearance of a Hollywood producer's beloved granddaughter.", + "posterPath": "/dNrk52Rt13MxwahLneTZJezM6qD.jpg", + "backdropPath": "/7sV0OgNkPiY9XPzr0f3rATFrGje.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2024-04-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 256, + "popularity": 4.9973 + }, + { + "id": 241535, + "title": "Makeine: Too Many Losing Heroines!", + "originalTitle": "負けヒロインが多すぎる!", + "overview": "Meet the girls on the losing side of romance! First is Anna Yanami, the girl-next-door type who can’t say no to delicious food. Then there’s Lemon Yakishio, a beautiful and spirited athlete. Last but not least is Chika Komari, the cute yet shy heroine with gentle charm. Together, they navigate awkward setbacks hoping to finally find love!", + "posterPath": "/nLBBhmzN6tPhxMy9aFzDqMbAc4V.jpg", + "backdropPath": "/7mjnk0QfutRJgHKpz9yyyqI62wo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-07-14", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 57, + "popularity": 4.9965 + }, + { + "id": 130464, + "title": "Tell Me Lies", + "originalTitle": "Tell Me Lies", + "overview": "When Lucy Albright arrives on the campus of her small college, away from her mother whom she's never forgiven for an act of betrayal in her early teen years, Lucy embraces college life and all it has to offer. But everything changes when she meets Stephen DeMarco, who has a mysterious past of his own. Their addicting entanglement will have consequences they never could have imagined.", + "posterPath": "/tc5c5X1ZbJx5guaQUo1Xqt24S8z.jpg", + "backdropPath": "/q4KlioU6RzoscePvsK9rGD4ioRw.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2022-09-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 175, + "popularity": 4.9963 + }, + { + "id": 205366, + "title": "Why Raeliana Ended Up at the Duke's Mansion", + "originalTitle": "彼女が公爵邸に行った理由", + "overview": "Living inside a fairy tale may sound like a dream, but for this heroine, it’s more of a nightmare. After her mysterious death, Rinko is reborn as Raeliana—a loved and wealthy character in a novel. But she knows the ending: her murder at the hands of her fiancé. So, she hatches a plan to stay alive, one that involves a devilish duke and a phony engagement. Can she rewrite her story?", + "posterPath": "/4yY40FOXCpY0I2AQLkwPSSkzE5z.jpg", + "backdropPath": "/hWk3qCboi8nJE9X34WCXDxb2b8R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.415, + "voteCount": 53, + "popularity": 4.9961 + }, + { + "id": 92892, + "title": "Ahiru no Sora", + "originalTitle": "あひるの空", + "overview": "Sora joins the high school basketball club, but his unmotivated teammates don't care about the game. To get anywhere, he has to change their minds.", + "posterPath": "/buUgxLguqSOuc4phBsrrlc4HrlG.jpg", + "backdropPath": "/qx2d9ePiF6tXn7YBjFA4NpOXBxf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2019-10-01", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.434, + "voteCount": 183, + "popularity": 4.9921 + }, + { + "id": 65988, + "title": "Wynonna Earp", + "originalTitle": "Wynonna Earp", + "overview": "Wyatt Earp's great granddaughter Wynonna battles demons and other creatures with her unique abilities and a posse of dysfunctional allies - the only thing that can bring the paranormal to justice.", + "posterPath": "/qnIaDelA81dmFaXrhpz6M6dpGSD.jpg", + "backdropPath": "/qVu5MC7DiDOrlcKNZsb9rEJJ1UI.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 37 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Western" + ], + "releaseDate": "2016-04-01", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 786, + "popularity": 4.9921 + }, + { + "id": 61431, + "title": "The Little Murders of Agatha Christie", + "originalTitle": "Les Petits Meurtres d'Agatha Christie", + "overview": "French adaptations of the stories by Agatha Christie.", + "posterPath": "/3sYluRhKfL1SDWWYiujovCaQkF9.jpg", + "backdropPath": "/AXO8CHydLqjO7ir2cnnCHXVu1p.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 35, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Comedy", + "Drama" + ], + "releaseDate": "2009-01-09", + "releaseYear": "2009", + "originalLanguage": "fr", + "voteAverage": 7.3, + "voteCount": 49, + "popularity": 4.9921 + }, + { + "id": 10377, + "title": "One Step Beyond", + "originalTitle": "One Step Beyond", + "overview": "Alcoa Presents: One Step Beyond is an American anthology series created by Merwin Gerard. The original series ran for three seasons on ABC from January 1959 to July 1961.", + "posterPath": "/c0IHtUsTGy2XbAEPuPScwqDdcEB.jpg", + "backdropPath": "/rYWPWFUF3N8zIEzyH2git8hbXWy.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 10765 + ], + "genres": [ + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1959-01-20", + "releaseYear": "1959", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 13, + "popularity": 4.986 + }, + { + "id": 86830, + "title": "The Fiery Priest", + "originalTitle": "열혈사제", + "overview": "People commit variety of ugly crimes these days. However, they forgive themselves by giving testimony every week. They believe that they can repent just by having faith. But the truth is that they have faith to repeat the sins again and again without remorse. These people atone for their evil deeds just to feel comfortable and carefree. It is not about the victims who are suffering because of them. They say every people are equal before the religions. But it is time to discriminate people who only uses them for their interest. Screening if they are really good people, punishing if they deserve to be punished, and defending justice is needed for modern day religion. A priest with this sense of justice teams up with a detective and a prosecutor. They try to solve the mysterious death of an elderly priest and serve justice.", + "posterPath": "/5EDJlbB3S1vwOpsR3h1k0NMHiHY.jpg", + "backdropPath": "/dMQmCThNrnlNd4bfC8iIce76bpr.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 35, + 18 + ], + "genres": [ + "Crime", + "Comedy", + "Drama" + ], + "releaseDate": "2019-02-15", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 54, + "popularity": 4.9837 + }, + { + "id": 45997, + "title": "The Devil Is a Part-Timer!", + "originalTitle": "はたらく魔王さま!", + "overview": "Foiled by a hero when he’s inches away from conquering the world, the devil finds himself in modern-day Tokyo. With no real-world skills to speak of, the devil is forced to make ends meet flipping burgers at a fast food joint! To stall any further plans of world domination, the hero tracks the devil’s trail and takes on the lowly tasks of a telemarketer.", + "posterPath": "/55jYHFT8iJuASF8Mzg0V8Dh3N3M.jpg", + "backdropPath": "/lQoR4D4TJRx4Rm87Jr0e8eQD8RB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-04-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 276, + "popularity": 4.9833 + }, + { + "id": 66053, + "title": "Berserk", + "originalTitle": "ベルセルク", + "overview": "Spurred by the flame raging in his heart, the Black Swordsman Guts continues his seemingly endless quest for revenge. Standing in his path are heinous outlaws, delusional evil spirits, and a devout child of god. Even as it chips away at his life, Guts continues to fight his enemies, who wield repulsive and inhumane power, with nary but his body and sword—his strength as a human.", + "posterPath": "/kN0Nca1Deq0iK1AK5RtAiohWhZ9.jpg", + "backdropPath": "/fjCymH4xdWonDJEXBqLRLKsmKCs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-01", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 272, + "popularity": 4.9798 + }, + { + "id": 86374, + "title": "War of the Worlds", + "originalTitle": "War of the Worlds", + "overview": "When astronomers detect a transmission from another galaxy, it is definitive proof of intelligent extra-terrestrial life. The world’s population waits for further contact with bated breath. They do not have to wait long. Within days, mankind is all but wiped out by a devastating attack; pockets of humanity are left in an eerily deserted world. As aliens hunt and kill those left alive, the survivors ask a burning question – who are these attackers and why are they hell-bent on our destruction?", + "posterPath": "/yThmbQkxSzW4HHdAaoj8RYHFH3i.jpg", + "backdropPath": "/kri75jPdoOdaiZJ5p7AU4qEHTuL.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-10-28", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.262, + "voteCount": 889, + "popularity": 4.9781 + }, + { + "id": 135250, + "title": "Mike", + "originalTitle": "Mike", + "overview": "Explore the wild, tragic and controversial life and career of heavyweight champion Mike Tyson - one of the most polarizing figures in sports culture.", + "posterPath": "/iwoFJilBbno4MKfwiHWbUl2BZBp.jpg", + "backdropPath": "/3MCHc74eGFBcE507jKQez6xMpFH.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-08-25", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 181, + "popularity": 4.9766 + }, + { + "id": 241259, + "title": "Baby Reindeer", + "originalTitle": "Baby Reindeer", + "overview": "When a struggling comedian shows one act of kindness to a vulnerable woman, it sparks a suffocating obsession which threatens to wreck both their lives.", + "posterPath": "/tN9OcbkAOPwHSr1sgMornZtQZBx.jpg", + "backdropPath": "/2qLYxCyxf4fim0X5OqM5FjZqWXu.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-04-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.604, + "voteCount": 1023, + "popularity": 4.9755 + }, + { + "id": 80398, + "title": "Kally's Mashup", + "originalTitle": "Kally's Mashup", + "overview": "Kally is a musical prodigy trying to juggle being a classical piano virtuoso, a normal 14-year old girl, and having a secret desire to become a world-famous pop-star.", + "posterPath": "/6OCPzMApwOqAjPT41SGNvtFYf9P.jpg", + "backdropPath": "/mQy608Xc319ec3H8soJBO5y8fa3.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10766, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Soap", + "Family" + ], + "releaseDate": "2017-10-23", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 8.4, + "voteCount": 106, + "popularity": 4.974 + }, + { + "id": 18686, + "title": "Fanboy and Chum Chum", + "originalTitle": "Fanboy and Chum Chum", + "overview": "Fanboy and Chum Chum are fans of all things science fiction and fantasy, and wear wild superhero costumes with their underwear on the outside. Their lives are filled with adventure, from Fanboy's teacher turning into a zombie to an ice monster operating the Frosty Freezy Freeze machine. Their pal Kyle usually tags along on their escapades. Kyle is a real wizard, but Fanboy and Chum Chum are oblivious to his mystical powers, although they live in a world of fantasy.", + "posterPath": "/fyxTvqnpNbp2crlWUn2064kXd7Q.jpg", + "backdropPath": "/aFFC2qk2dECi8v5rxt13suS4gWD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-12", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 97, + "popularity": 4.9708 + }, + { + "id": 4415, + "title": "In Living Color", + "originalTitle": "In Living Color", + "overview": "Created by stars Keenen Ivory Wayans and Damon Wayans, this Emmy-winning sketch series offers cutting-edge satire and features a host of talent, including Jamie Foxx, Jim Carrey, David Alan Grier and Tommy Davidson.", + "posterPath": "/vr4bfbEvkAN4VreDwG9dyEOf4x4.jpg", + "backdropPath": "/wHaNXo7V8ZORngvvaQ4i84vze25.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1990-04-15", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.595, + "voteCount": 126, + "popularity": 4.9704 + }, + { + "id": 56219, + "title": "Drunk History", + "originalTitle": "Drunk History", + "overview": "Historical reenactments from A-list talent as told by inebriated storytellers. A unique take on the familiar and less familiar people and events from America’s great past as great moments in history are retold with unforgettable results.", + "posterPath": "/6zTclFjUEm6aTodjYciYtwzh5tY.jpg", + "backdropPath": "/ky85K8xOEjBSMJvlGUlw6k9c3fE.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2013-07-09", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.824, + "voteCount": 94, + "popularity": 4.9686 + }, + { + "id": 225180, + "title": "BLUE EYE SAMURAI", + "originalTitle": "BLUE EYE SAMURAI", + "overview": "Driven by a dream of revenge against those who made her an outcast in Edo-period Japan, a young warrior cuts a bloody path toward her destiny.", + "posterPath": "/fXm3JT4WLQVnwukdvghtAblc1wc.jpg", + "backdropPath": "/oCMZpwLBcb3dnRuzEKWNWrw1tHz.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2023-11-03", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.494, + "voteCount": 655, + "popularity": 4.9647 + }, + { + "id": 88367, + "title": "Scooby-Doo and Guess Who?", + "originalTitle": "Scooby-Doo and Guess Who?", + "overview": "The Mystery Inc. gang solve bigger mysteries while also encountering many memorable celebrities.", + "posterPath": "/g7vQXsELihik4oHJwqhL6WuTJ3j.jpg", + "backdropPath": "/adVJG1E4QEkUyZMRSqP3SRuyzJe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Family" + ], + "releaseDate": "2019-06-27", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 241, + "popularity": 4.9633 + }, + { + "id": 9687, + "title": "The Odyssey", + "originalTitle": "The Odyssey", + "overview": "In this adaptation of Homer's timeless epic, Armand Assante stars as Odysseus, the warrior King of the mythical island of Ithaca, who must endure a decade long quest to reach home after the Trojan war, overcoming savage monsters, powerful forces of nature, and seductive nymphs, and he must outsmart them all, with all the guile and intellect he can muster.", + "posterPath": "/rAm6B3WVRzT4XKD15qF1wrDbmmC.jpg", + "backdropPath": "/jmCegdxo0woQ3GpI3IuR7XxSMWN.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-05-18", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.187, + "voteCount": 815, + "popularity": 4.9628 + }, + { + "id": 71834, + "title": "Manyu Scroll", + "originalTitle": "魔乳秘剣帖", + "overview": "It is currently the Taiheimeji era, during the rule of the Tokugawa shogunate. In this era, breasts mean everything. If you have breasts, you are guaranteed wealth and popularity, but if you lack them, you are rarely considered human. Inside the shogunate, there is a group of warriors that support the government—the Manyuu Clan, which helps raise the future big breasts. Written on a secret scroll possessed by the clan, there are said to be various techniques on how to grow big and beautiful breasts. Chifusa is the heir of the clan. However, she takes the secret scroll and runs away with it, hoping to fight against the cruel world that the Manyuu Clan has created…", + "posterPath": "/4L6CqXL1NZwX9ZZ1drYzl0qyShG.jpg", + "backdropPath": "/pVHbKeG3n0fruq3qoTJbvRFnUUF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-07-11", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.005, + "voteCount": 184, + "popularity": 4.9592 + }, + { + "id": 92783, + "title": "She-Hulk: Attorney at Law", + "originalTitle": "She-Hulk: Attorney at Law", + "overview": "Jennifer Walters navigates the complicated life of a single, 30-something attorney who also happens to be a green 6-foot-7-inch superpowered hulk.", + "posterPath": "/hJfI6AGrmr4uSHRccfJuSsapvOb.jpg", + "backdropPath": "/eljErfkQUcFUgQkI4I1soZcH8MW.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-08-18", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.14, + "voteCount": 2400, + "popularity": 4.9591 + }, + { + "id": 597, + "title": "Cold Squad", + "originalTitle": "Cold Squad", + "overview": "Cold Squad is a Canadian police procedural television series first broadcast in 1998 that followed the investigations of a part of the Vancouver Police Department Homicide Division tasked with solving cold cases, the titular Cold Squad, as led by Sergeant Ali McCormick.\n\nThe cast of Cold Squad was diverse and changing, McCormick being the only character to appear in all 7 seasons. Some notable series regulars include Detective Tony Logozzo in seasons 1-2, Sgt. Frank Coscarella in seasons 3-4, Sgt. Len Harper in seasons 5-7, Insp. Vince Schneider season 1, Insp. Simon Ross season 2, Insp. Andrew Pawlachuk seasons 3-7, Det. Mickey Kollander seasons 3-6, Det. Nicco Sevallis seasons 3-6, Christine Wren seasons 4-7, as well as Det. Samantha Walters and Const. Ray Chase in season 7.\n\nBetween the second and third seasons, almost the entire on-screen cast other than Julie Stewart were replaced. This along with the new sets, a significant revamp of the credits and theme music, and even having McCormick's hair change from auburn to dirty-blonde all contributed to a considerable reworking of the series.", + "posterPath": "/4JC7VvbplEXMGw2jW15QzHqqoN6.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1998-01-23", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 13, + "popularity": 4.9577 + }, + { + "id": 90669, + "title": "1899", + "originalTitle": "1899", + "overview": "When mysterious events change the course of an immigrant ship headed for New York in 1899, a mind-bending riddle unfolds for its bewildered passengers.", + "posterPath": "/qmpUDEgZawIlDU5HP3IJ9HjnpI3.jpg", + "backdropPath": "/oZMEWCcnFWGdp4W4ICdJgkw1RYf.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2022-11-17", + "releaseYear": "2022", + "originalLanguage": "de", + "voteAverage": 7.507, + "voteCount": 1413, + "popularity": 4.9551 + }, + { + "id": 44815, + "title": "Ikkyū-san", + "originalTitle": "一休さん", + "overview": "The mischievous adventures of a young Ikkyū during his stay at Ankoku Temple. He relies on his intelligence and wit to solve all types of problems, from distraught farmers to greedy merchants.", + "posterPath": "/9XkTpvSoZDZvKMf59rr940pujQD.jpg", + "backdropPath": "/7Sn9xgoyjqsWOgSDAzdpzqiqTAt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1975-10-15", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 21, + "popularity": 4.954 + }, + { + "id": 31424, + "title": "Chuno", + "originalTitle": "추노", + "overview": "Dae-gil is the leader of a group of slave hunters that are hired to find a runaway slave named Tae-ha, who was once a great warrior.", + "posterPath": "/j4TL2CKDxUxUKSLwBL89cbUxqoU.jpg", + "backdropPath": "/pzoWsyJm1ud3YqqPK9scilCiPkt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2010-01-06", + "releaseYear": "2010", + "originalLanguage": "ko", + "voteAverage": 8, + "voteCount": 27, + "popularity": 4.9515 + }, + { + "id": 251941, + "title": "St. Denis Medical", + "originalTitle": "St. Denis Medical", + "overview": "An eclectic group of underfunded yet dedicated doctors and nurses navigates caring for patients — and each other — while keeping it all together at an Oregon hospital.", + "posterPath": "/8tUjI21ZcfSynLCk3Zr0Gs5BQwz.jpg", + "backdropPath": "/dtACf4sRA640q4l6oLyfMy75Viy.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-11-12", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 31, + "popularity": 4.9507 + }, + { + "id": 91768, + "title": "Ascendance of a Bookworm", + "originalTitle": "本好きの下剋上 司書になるためには手段を選んでいられません", + "overview": "Avid bookworm and college student Motosu Urano ends up dying in an unforeseen accident. This came right after the news that she would finally be able to work as a librarian as she had always dreamed of. When she regained consciousness, she was reborn as Main, the daughter of a poor soldier. She was in the town of Ehrenfest, which had a harsh class system. But as long as she had books, she didn't really need anything else. However, books were scarce and belonged only to the nobles. But that doesn't stop her, so she makes a decision... \"If there aren't any books, I'll just create some.\"", + "posterPath": "/aVGueAM88cc4sX6PeMvuAPObDc4.jpg", + "backdropPath": "/Aj4MQnt6QtWlojE9FcAX9jZAvLL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2019-10-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 123, + "popularity": 4.9473 + }, + { + "id": 2798, + "title": "Space Ghost Coast to Coast", + "originalTitle": "Space Ghost Coast to Coast", + "overview": "A cartoon superhero interacts with live guests via his television set in this parody talk show based on 1960s Hanna-Barbera cartoon character Space Ghost.", + "posterPath": "/sjTe8T7FRhNcSlmT4XF38dd1BEF.jpg", + "backdropPath": "/okJecNEHxfxAkf36sfeWu0AJC7M.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10767 + ], + "genres": [ + "Animation", + "Comedy", + "Talk" + ], + "releaseDate": "1994-04-15", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 103, + "popularity": 4.9473 + }, + { + "id": 77606, + "title": "The Boss Baby: Back in Business", + "originalTitle": "The Boss Baby: Back in Business", + "overview": "With a little help from his brother and accomplice, Tim, Boss Baby tries to balance family life with his job at Baby Corp headquarters.", + "posterPath": "/mUVZHkJPKDYgDy1dbDdi0Esj9eB.jpg", + "backdropPath": "/ry3j5NEF72tMezdEomGrVXb6pFB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "2018-04-06", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.073, + "voteCount": 1764, + "popularity": 4.9467 + }, + { + "id": 129412, + "title": "Game Changer", + "originalTitle": "Game Changer", + "overview": "In this game show, the game changes every show! Players begin each round without knowing the rules -- and must figure them out while competing to win.", + "posterPath": "/xsucathtIn3pg5SzxmvEVQgho4P.jpg", + "backdropPath": "/gQq3bLCVSSLwQcj8fan06ShjRPu.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10764 + ], + "genres": [ + "Comedy", + "Reality" + ], + "releaseDate": "2019-09-20", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 35, + "popularity": 4.9465 + }, + { + "id": 62327, + "title": "Blood Blockade Battlefront", + "originalTitle": "血界戦線", + "overview": "One day, New York City as we know it vanished overnight into a mysterious fog. Now known as Hellsalem's Lot, it has become a place where another world beyond imagining is connected to our reality. The balance within this new world is protected by a secret society known as Libra. Leo, a journalist and photographer who arrives in the city, is unexpectedly recruited to join their ranks.", + "posterPath": "/53yzJpVLeCQ8n93bvZ95fvBlA3L.jpg", + "backdropPath": "/m8b52XWf1jO11Aeaz5vPpAgeqZp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 133, + "popularity": 4.9461 + }, + { + "id": 208493, + "title": "I Got a Cheat Skill in Another World and Became Unrivaled in the Real World, Too", + "originalTitle": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "overview": "A door to another world stretches out before a boy who's been brutally bullied all his life. This alternate reality grants him access to all sorts of things, like cheat skills and a portal that lets him travel between his old and new worlds! Can this class loser turn his life around back home...?", + "posterPath": "/dXrUejdxJFgk6FGoB8V3VQhYsjJ.jpg", + "backdropPath": "/nxJSLabJHzAeRzweeWRl1EE40NJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.212, + "voteCount": 273, + "popularity": 4.9454 + }, + { + "id": 2082, + "title": "ChuckleVision", + "originalTitle": "ChuckleVision", + "overview": "ChuckleVision is a long-standing British children's series broadcast from 1987 to 2009. The Chuckle Brothers' famous comedy involves slapstick, other visual gags, wordplay, and catchphrases such as \"To me, to you!\" and \"Oh dear, oh dear!\"", + "posterPath": "/jx3UMc2daZrcQBWxt6cOsunJW8G.jpg", + "backdropPath": "/yiAb3P95kgehDK4RyNG23y9ncXf.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1987-09-26", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 17, + "popularity": 4.9453 + }, + { + "id": 156563, + "title": "The Reincarnation of the Strongest Exorcist in Another World", + "originalTitle": "最強陰陽師の異世界転生記", + "overview": "Betrayed and on the brink of death, genius exorcist Haruyoshi Kuga still has an ace up his sleeve—a reincarnation spell. With a successful incantation taking him to a new world reborn as Seika Lamprogue into a distinguished wizard family, his only wish is to find happiness. But as Seika’s onmyō art exceeds this world’s magic, will he be able to live an easy, happy-go-lucky life?", + "posterPath": "/ppnnpGWK9mUD8EHjKTRzQOD7uey.jpg", + "backdropPath": "/4UPmVUWFraqBsmKC2bpunGo76Z2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.117, + "voteCount": 64, + "popularity": 4.944 + }, + { + "id": 228026, + "title": "Law & Order Toronto: Criminal Intent", + "originalTitle": "Law & Order Toronto: Criminal Intent", + "overview": "An elite squad of detectives investigate high-profile crime and corruption in metro Toronto.", + "posterPath": "/n2NxrkG3KpZ6FwALqi5uiZF8zXC.jpg", + "backdropPath": "/lmmQ2nwN3Hn0CfJIncObeOD4lLT.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2024-02-22", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.909, + "voteCount": 23, + "popularity": 4.9438 + }, + { + "id": 5273, + "title": "Alfred Hitchcock Presents", + "originalTitle": "Alfred Hitchcock Presents", + "overview": "A television anthology series hosted by Alfred Hitchcock featuring dramas, thrillers, and mysteries.", + "posterPath": "/c9ZiCq8MVRifBDGi4VHNU3FPf79.jpg", + "backdropPath": "/aiZEtOKUfUY0zEeLupeLhnJlW7u.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "1955-10-02", + "releaseYear": "1955", + "originalLanguage": "en", + "voteAverage": 7.768, + "voteCount": 241, + "popularity": 4.9434 + }, + { + "id": 37858, + "title": "Fate/stay night", + "originalTitle": "Fate/stay night", + "overview": "Shirou Emiya lost his parents in a fire when he was young and was later adopted by the sorcerer Kiritsugu Emiya. Shirou is drawn into the Holy Grail War summons a female \"Servant\" known as Saber to protect him and obtain the Holy Grail.", + "posterPath": "/x7nYPOveHhINREhTtwBHot9ersB.jpg", + "backdropPath": "/b2mskN6F9kUolFc8mTBiEJwfXLC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2006-01-07", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.324, + "voteCount": 225, + "popularity": 4.9404 + }, + { + "id": 154385, + "title": "BEEF", + "originalTitle": "BEEF", + "overview": "A road rage incident between two strangers — a failing contractor and an unfulfilled entrepreneur — sparks a feud that brings out their darkest impulses.", + "posterPath": "/4b4v7RnPhNyPEaVGFarEuo74r8W.jpg", + "backdropPath": "/u7OpeS4eckBSR1wFxFTuyy3FjHE.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2023-04-06", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.742, + "voteCount": 811, + "popularity": 4.9381 + }, + { + "id": 3714, + "title": "Pippi Longstocking", + "originalTitle": "Pippi Långstrump", + "overview": "The adventures of Pippi Longstocking, an eccentric, super-strong, redheaded moppet and her best friends Tommy and Annika.", + "posterPath": "/bCMX9FK7fD6BncwsTFBhGAVvgTA.jpg", + "backdropPath": "/kXodjrgzRTtQo6CnAkHbhlzZlcj.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10751, + 10762 + ], + "genres": [ + "Comedy", + "Drama", + "Family", + "Kids" + ], + "releaseDate": "1969-02-08", + "releaseYear": "1969", + "originalLanguage": "sv", + "voteAverage": 7.402, + "voteCount": 169, + "popularity": 4.9381 + }, + { + "id": 61945, + "title": "Suburbia - Women on the Edge", + "originalTitle": "Vorstadtweiber", + "overview": "Vienna suburb. Better society. Appearance and reality. A golden cage. But is everything that glitters really gold? Actually, the five \"suburban women\" of the title couldn't be doing any better in their supposedly perfect, affluent world – could they?", + "posterPath": "/um3A1r8A5Cuco7ldJHKtMhU7zU9.jpg", + "backdropPath": "/uYgcyrinlFfXTFkflzkOjAmtlpP.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2015-01-12", + "releaseYear": "2015", + "originalLanguage": "de", + "voteAverage": 7.7, + "voteCount": 15, + "popularity": 4.9376 + }, + { + "id": 94280, + "title": "Steven Universe Future", + "originalTitle": "Steven Universe Future", + "overview": "After saving the universe, Steven is still at it, tying up every loose end. As he runs out of other people's problems to solve, he'll finally have to face his own.", + "posterPath": "/WtYiQk6432J0jCi61UQzLFtCCX.jpg", + "backdropPath": "/2yCZ1xzTNhX9d0rAGre58eBJEO5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 18, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Drama", + "Family" + ], + "releaseDate": "2019-12-07", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 747, + "popularity": 4.9368 + }, + { + "id": 226270, + "title": "Love in Pavilion", + "originalTitle": "淮水竹亭", + "overview": "It tells the story of Dongfang Huaizhu and Wangquan Hongye, the leaders of two major families, the Dongfangs and the Wangquans. In a time when humans and demons are in conflict, they work together to stabilize the situation in order to revive the Unity Alliance. On the seventh day of the seventh month, at the Bamboo Pavilion by the Huai River, their fates intertwine like the sheaths of two swords, never to be separated. They pick up the most heartwarming promise and tell a story that has endured for generations.", + "posterPath": "/rz9njPrgpOWKlXeU3e3lvMChjnD.jpg", + "backdropPath": "/v5gASVk9yLsKd3h6c44yPIy8PKr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2025-04-28", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 8.9, + "voteCount": 10, + "popularity": 4.9316 + }, + { + "id": 71018, + "title": "Seven Mortal Sins", + "originalTitle": "sin 七つの大罪", + "overview": "The prideful archangel Lucifer disobeys God and is cast into the lowest level of hell as a fallen angel. On her way to hell, Lucifer happens to meet a high school girl on Earth named Maria, who helps her. In hell, Lucifer meets Leviathan, and Leviathan explains to Lucifer about The Seven Deadly Sins, the seven demon king rulers of hell. After The Seven Deadly Sins seal Lucifer's powers, Lucifer goes on a journey with Maria and Leviathan to defeat them.", + "posterPath": "/tvJvByy99ul4hytAfNEboAFaFEY.jpg", + "backdropPath": "/J0N4IsYgtnKCVbzYQlnhnmV8F5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-15", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 47, + "popularity": 4.9299 + }, + { + "id": 83612, + "title": "Ever Night", + "originalTitle": "将夜", + "overview": "As the lone survivor of his kingdom, Ning Que joins a martial arts academy and must fight to protect his beloved, who's prophesied to bring about chaos.", + "posterPath": "/q8kBDPvFvEOdCqCC2ZkdPpb7xKo.jpg", + "backdropPath": "/vljrkTk594qIPP6VVzumdLe7m4V.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-31", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 7.1, + "voteCount": 30, + "popularity": 4.9265 + }, + { + "id": 62273, + "title": "Food Wars! Shokugeki no Soma", + "originalTitle": "食戟のソーマ", + "overview": "Young chef Soma enters the prestigious Totsuki Culinary Academy, where he must emerge victorious in over-the-top cooking battles or face expulsion.", + "posterPath": "/eAQHqcJXP0FBzXvQkIV5g5ZueZb.jpg", + "backdropPath": "/q40F3AWf1FLeXzgG2rV4E83Fc0D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.448, + "voteCount": 784, + "popularity": 4.9262 + }, + { + "id": 65648, + "title": "Maid Sama!", + "originalTitle": "会長はメイド様!", + "overview": "Misaki Ayuzawa is the first female student council president at a once all-boys school turned co-ed. She rules the school with strict discipline demeanor. But she has a secret, she works at a maid cafe due to her families circumstances. One day the popular A-student and notorious heart breaker Takumi Usui finds out her secret and makes a deal with her to keep it hush from the school in exchange for spending some time with him.", + "posterPath": "/igkn0M1bgMeATz59LShvVxZNdVd.jpg", + "backdropPath": "/w50RYqdXGNB0rM7mMrOLGzdS0p3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-04-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 603, + "popularity": 4.9257 + }, + { + "id": 4237, + "title": "Snorks", + "originalTitle": "Snorks", + "overview": "The Snorks is an animated television series produced by Hanna-Barbera which ran on NBC from September 15, 1984, to May 13, 1989. Although not as popular as the animated series The Smurfs, the program continued to be available in syndication from 1986 to 1989 as part of The Funtastic World of Hanna-Barbera's 3rd season, on USA Network in the late-1980s and early-1990s, on the BBC in the late 1990s, and from 2009–2011 and again from 2012–Present on Boomerang.", + "posterPath": "/rQmrzG1US6nvVRdW4dYHIXd7NQy.jpg", + "backdropPath": "/rohZ74fPTrwcXzyf7MzAF38NuzV.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Kids" + ], + "releaseDate": "1984-09-15", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 51, + "popularity": 4.9252 + }, + { + "id": 241063, + "title": "Escort Boys", + "originalTitle": "Escort Boys", + "overview": "In Camargue, four guys in dire straits turn to escorting to save their childhood beekeeping estate. Coached by the group's little sister who manages this unique 'business' in the region, they will have to service women and, through their desires... learn to be men of today.", + "posterPath": "/tGJFRIpTU8jwarl6fN85BA7blkJ.jpg", + "backdropPath": "/gwysYz3d9SvcsLsz2XV3DRHaBmL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2023-12-22", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 6.6, + "voteCount": 35, + "popularity": 4.9248 + }, + { + "id": 41064, + "title": "Der letzte Bulle", + "originalTitle": "Der letzte Bulle", + "overview": "Der letzte Bulle is a German television series that was first aired in 2010. The series is about a cop from the 1980s put into a modern police department in Essen.", + "posterPath": "/m1kz5RdlPun8QIpWmy7ZHtd7HmF.jpg", + "backdropPath": "/fopPscIGHZOnh4CiJLD1o3haxfC.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2010-04-12", + "releaseYear": "2010", + "originalLanguage": "de", + "voteAverage": 7.2, + "voteCount": 29, + "popularity": 4.9244 + }, + { + "id": 1878, + "title": "The Backyardigans", + "originalTitle": "The Backyardigans", + "overview": "Meet five lively animal friends who love to sing, dance and use their imaginations to embark on outrageous adventures to magical places.", + "posterPath": "/qph2MAw82C2DTQcuzRQdaglo9eU.jpg", + "backdropPath": "/fLI3GFGDjYXIXO5ehdQkeE0zeS0.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16 + ], + "genres": [ + "Kids", + "Animation" + ], + "releaseDate": "2004-10-11", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 113, + "popularity": 4.924 + }, + { + "id": 82700, + "title": "Baby", + "originalTitle": "Baby", + "overview": "Fed up with their families and classmates, two teen girls from a wealthy part of Rome are drawn to the city's underworld and start leading double lives.", + "posterPath": "/xswkOJni9tJYda2yN1QQtgBVaVJ.jpg", + "backdropPath": "/hcS061TTRke127eJtrbWWPIjUZe.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-11-30", + "releaseYear": "2018", + "originalLanguage": "it", + "voteAverage": 7.9, + "voteCount": 884, + "popularity": 4.9204 + }, + { + "id": 2253, + "title": "Ultraman Tiga", + "originalTitle": "ウルトラマンティガ", + "overview": "A high-tech squadron protects Earth from evil monsters and aliens with the help of a giant super-being named Ultraman Tiga.", + "posterPath": "/lYvAiTqXFGuLqos0Wi7899scn6z.jpg", + "backdropPath": "/asqloozvbP3BUkDrvQbmaPyFaF0.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1996-09-07", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 112, + "popularity": 4.9156 + }, + { + "id": 114118, + "title": "My Roommate Is a Gumiho", + "originalTitle": "간 떨어지는 동거", + "overview": "To become a human, a 999-year-old Gumiho, Shin Woo-yeo needs to fill his fox bead with human energy before he turns 1,000 years old. One day, a college girl, Lee Dam accidentally swallows Woo-yeo's fox bead.", + "posterPath": "/ep3TFArcl7jYipJymsKp2zuGv1m.jpg", + "backdropPath": "/bFjiFIVl8T3giKYQTweyr5Xp0QE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-05-26", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8.061, + "voteCount": 122, + "popularity": 4.9117 + }, + { + "id": 64555, + "title": "Frontier", + "originalTitle": "Frontier", + "overview": "In 18th-century North America, ruthless trappers and entrepreneurs fight to wrest control of the fur trade from the mighty Hudson's Bay Company.", + "posterPath": "/mhIeCeYgG4WJHNzaw2EyRpvmGX8.jpg", + "backdropPath": "/bcxdwh2mODxODzPtyiCZzfqpsAj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2016-11-06", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.828, + "voteCount": 317, + "popularity": 4.9092 + }, + { + "id": 42951, + "title": "Kaiji", + "originalTitle": "逆境無頼カイジ", + "overview": "Kaiji Itou is a good-for-nothing loiterer who spends his days drinking beer and stealing hubcaps—that is, until he ends up being tricked by his former co-worker. Unable to suddenly repay his friend's huge debt all by himself, Kaiji is offered a shady deal to participate in an illegal underground gamble on a cruise ship. This turns out to be nothing more than the beginning of his new life of hell—thrown headlong into a life-threatening roller coaster of mind games, cheating, and deceit.", + "posterPath": "/hKTG76a11adML9ecbJt07D3jH8i.jpg", + "backdropPath": "/xLgRBj0iO3DFTzcBmZqgR01NyTa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-10-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.109, + "voteCount": 96, + "popularity": 4.9072 + }, + { + "id": 39176, + "title": "Behzat Ç.: An Ankara Policeman", + "originalTitle": "Behzat Ç.: Bir Ankara Polisiyesi", + "overview": "Centered around a personally troubled, officially discredited police chief and his inharmonious police team in Ankara Police Force. Even though the show usually focuses on murders and other crimes that happens on a weekly basis, the undertone of the story leads to an eventual duel between Behzat Ç. and the rotten department officials and bureaucrats.", + "posterPath": "/aRqNQ5v2tvZ9ZRAXpYik0JamHkm.jpg", + "backdropPath": "/pF1OQe4zaXX9vOwxbxjZzws0CAe.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768, + 10759, + 80 + ], + "genres": [ + "Drama", + "War & Politics", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2010-09-19", + "releaseYear": "2010", + "originalLanguage": "tr", + "voteAverage": 7.7, + "voteCount": 80, + "popularity": 4.9071 + }, + { + "id": 3200, + "title": "Even Stevens", + "originalTitle": "Even Stevens", + "overview": "The Stevens are a middle-class family living in Sacramento, CA. Husband and father Steve is a successful attorney. Wife and mother Eileen is a state Senator. Their oldest child Donnie ia a high-school sports legend. Ren, an 8th-grader, is just about the perfect daughter. She makes the best grades, she's popular, she does volunteer work and other extracurricular tasks by the score. Her brother Louis, in the 7th grade, is her opposite. He likes to sleep late, he's messy, his grades are not good, he's frequently in detention and he seems to take nothing seriously. But he is serious about finding something of his own that he can do to put himself on a par with the rest of his overachieving family. Though he and Ren occasionally soften their attitudes toward each other, at any given moment the're likely to be fighting like mongoose and cobra.", + "posterPath": "/6wdftSHL6EF8sevUFJSVOnEBOHT.jpg", + "backdropPath": "/unpuZD1N1Wfxo9izU1YX88qKvv6.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-06-17", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 81, + "popularity": 4.9061 + }, + { + "id": 209077, + "title": "Undead Unluck", + "originalTitle": "アンデッドアンラック", + "overview": "Andy, a Negator with the ability \"Undead,\" has been long in search for someone with the ability to give him a 'real death.' Fuko Izumo brings misfortune to those around her due to her ability \"Unluck.\" The two decide to join the Union, an organization which aims to control and protect the world from unidentified phenomena. The two uncover the mystery of the world as they search for the \"greatest death ever.\"", + "posterPath": "/pJYOYFlu4Vayz5xXJJuP7ViwHnT.jpg", + "backdropPath": "/8uoNGqXeJCBoG2gLOsKW3qUDuaI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-10-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 120, + "popularity": 4.9036 + }, + { + "id": 61854, + "title": "Nicky, Ricky, Dicky & Dawn", + "originalTitle": "Nicky, Ricky, Dicky & Dawn", + "overview": "The story of a 10-year-old girl Dawn Haley whose sibling rivalry with her three brothers is heightened by the fact that they are quadruplets.", + "posterPath": "/nBkA2uXAaySBmlrinn5KroFZn94.jpg", + "backdropPath": "/rewalTto9U3qOysTv54HAwpcSIv.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10762, + 35 + ], + "genres": [ + "Family", + "Kids", + "Comedy" + ], + "releaseDate": "2014-09-13", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 99, + "popularity": 4.9003 + }, + { + "id": 118189, + "title": "The Serpent Queen", + "originalTitle": "The Serpent Queen", + "overview": "Considered an immigrant, common and plain, Catherine de Medici is married into the 16th century French court as an orphaned teenager expected to bring a fortune in dowry and produce many heirs, only to discover that her husband is in love with an older woman, her dowry is unpaid and she’s unable to concieve. Yet, only with her intelligence and determination, she manages to keep her marriage alive and masters the bloodsport that is the monarchy better than anyone else, ruling France for 50 years.", + "posterPath": "/qrpIpzbwoAZJTegfKSTlmz15jbf.jpg", + "backdropPath": "/o1n5b8AI7UWeJ8yxFzunf9in5OB.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-09-11", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 136, + "popularity": 4.8986 + }, + { + "id": 15871, + "title": "Shark Week", + "originalTitle": "Shark Week", + "overview": "The Discovery Channel's Shark Week, first broadcast on July 17, 1987, is a weeklong series of feature television programs dedicated to sharks. Held annually, normally in July or August, Shark Week was originally developed to raise awareness and respect for sharks. It is the longest-running cable television programming event in history. Now broadcast in over 72 countries, Shark Week is promoted heavily via social networks like Facebook and Twitter.", + "posterPath": "/wRAOmmAVxpYKHRT1ZIbcWz4pUTe.jpg", + "backdropPath": "/i0SR6e1nuGmC8X2FvZFAnEnf1G8.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1988-07-17", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 17, + "popularity": 4.8983 + }, + { + "id": 38715, + "title": "Sinterklaasjournaal", + "originalTitle": "Sinterklaasjournaal", + "overview": "", + "posterPath": "/thOkUNMen2b4KJKeH2k02jNCcI2.jpg", + "backdropPath": "/zcPxfsRzCHnBDWvU1SmZxLRbdzR.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10751 + ], + "genres": [ + "Kids", + "Family" + ], + "releaseDate": "2001-11-14", + "releaseYear": "2001", + "originalLanguage": "nl", + "voteAverage": 8.6, + "voteCount": 11, + "popularity": 4.8979 + }, + { + "id": 76719, + "title": "The Rain", + "originalTitle": "The Rain", + "overview": "After a brutal virus wipes out most of the population, two young siblings embark on a perilous search for safety. A Scandinavian thriller series.", + "posterPath": "/bBBpi5pgOEZlCOgx2q116oPdJnx.jpg", + "backdropPath": "/rfK7BGBUoqXc2EiKGbKuzaeSDjW.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-05-04", + "releaseYear": "2018", + "originalLanguage": "da", + "voteAverage": 7.254, + "voteCount": 1288, + "popularity": 4.8931 + }, + { + "id": 43967, + "title": "Girls und Panzer", + "originalTitle": "ガールズ&パンツァー", + "overview": "In this world, Sensha-do (戦車道), the art of tank-combat, is a traditional Japanese martial art for girls. Miho, a girl who just transferred into the Ōrai Girls' Academy in Ibaraki Prefecture, has been ordered by the academy's student council chairperson to join the school team and compete in the national Sensha-do championships.", + "posterPath": "/hKEgErh0c9ljzHyODohZWzapI9U.jpg", + "backdropPath": "/MCRB9i9bECRS7b7h4QM40uL5kz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2012-10-09", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.737, + "voteCount": 78, + "popularity": 4.891 + }, + { + "id": 72311, + "title": "The Advisors Alliance", + "originalTitle": "大军师司马懿之军师联盟", + "overview": "The story of Sima Yi, a great politician and strategist who lived during the Three Kingdoms era. By his side, Sima Yi has his politically-astute distaff members of his household, and pitted against them are the formidable Cao Cao and his heirs. After defending the Kingdom of Wei from Kongming formidable talents, who will end up with the ultimate power?", + "posterPath": "/xdlltLF34oFEJ0yIQ64JROFR2VN.jpg", + "backdropPath": "/sJWR25Jfk9IYBC4iOiOXFoTjs0V.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2017-06-22", + "releaseYear": "2017", + "originalLanguage": "zh", + "voteAverage": 8.3, + "voteCount": 25, + "popularity": 4.8894 + }, + { + "id": 234800, + "title": "Curses!", + "originalTitle": "Curses!", + "overview": "The Vanderhouvens are a typical family...except a curse recently turned Alex—their loving husband and father—to stone. In order to save him, his wife and kids set out on spine-tingling adventures to return ancient artifacts stolen by an ancestor.", + "posterPath": "/sB0pjty0yMjCXJG0X2I8zu8fM57.jpg", + "backdropPath": "/CJ9XvdlBQVXOhH7wHb64OHmzbq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759, + 10765, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2023-10-26", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.563, + "voteCount": 16, + "popularity": 4.889 + }, + { + "id": 89844, + "title": "30 Coins", + "originalTitle": "30 monedas", + "overview": "Father Vergara—an exorcist, boxer and ex-convict—lives in a remote village in Spain. Hoping to be lost and forgotten, Vergara’s demons catch up to him.", + "posterPath": "/gb1JG7jzjWKQPdhc2TSokoiFK2S.jpg", + "backdropPath": "/j5B7G6NsWfgLawCAUsQU8Qrl6Tm.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2020-11-29", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 7.256, + "voteCount": 628, + "popularity": 4.8882 + }, + { + "id": 83463, + "title": "A Portrait of Jianghu: Bad Guys", + "originalTitle": "画江湖之不良人", + "overview": "Two martial artists are brutally killed by a team of assassins, leaving their wards, a young boy and girl, defenseless. A martial arts master dispatches of the assassins, sparing their lives, and decides to take them in. He raises them and teaches them martial arts.", + "posterPath": "/9NaAIq970v66BSUvJyGUuxeZx5f.jpg", + "backdropPath": "/d16l4tj30LoA88kFd3qZLdyRZhF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-31", + "releaseYear": "2014", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 17, + "popularity": 4.8862 + }, + { + "id": 94028, + "title": "RIPLEY", + "originalTitle": "RIPLEY", + "overview": "A grifter in 1960s New York is hired to convince a wealthy man's son to return home from Italy and begins a life of deceit, fraud and murder.", + "posterPath": "/rpSo8z9alultGVTqQ3dkLEyU8xx.jpg", + "backdropPath": "/Av4ku3UIoWBbxNxKjXrFohMS6xi.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-04-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.003, + "voteCount": 345, + "popularity": 4.8829 + }, + { + "id": 3089, + "title": "Parker Lewis Can't Lose", + "originalTitle": "Parker Lewis Can't Lose", + "overview": "Parker Lewis is a teenager who apparently can't lose. He's cool, cute, popular, hip – and seems to get away with anything. That's not to say he's got no problems. His two primary nemeses are school principal Grace Musso, whose goal is getting Parker expelled; and his little sister Shelly, whose sole purpose seems to be tattling on Parker. However, with best friends Mikey and Jerry, Parker takes on the world and makes the best of high school.", + "posterPath": "/3kVzjNtBDPy0rY5gXOx7nELDGKO.jpg", + "backdropPath": "/t0HV1EDBlZ5qmDZriR4zuZlTYHn.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1990-09-02", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.267, + "voteCount": 75, + "popularity": 4.8829 + }, + { + "id": 81127, + "title": "Single Parents", + "originalTitle": "Single Parents", + "overview": "A group of single parents lean on each other to help raise their 7-year-old kids and maintain some kind of personal lives outside of parenthood.", + "posterPath": "/qL2MIOtTNLEKXGFZ0oKBqwbujIi.jpg", + "backdropPath": "/vKJGkOo3yqbpbZBv6133r8F3eUt.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-09-26", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.902, + "voteCount": 66, + "popularity": 4.8827 + }, + { + "id": 64589, + "title": "Profiling Paris", + "originalTitle": "Profilage", + "overview": "Chloé Saint-Laurent is a profiler and works with a police team to solve murders in Paris. She's very sweet, she wears very colored clothes and a huge yellow bag. She looks like a little girl who need a doll, but she's very smart and a very good profiler. Step by step, she fit in the team and her colleagues, very reserved at first, became her best friends.", + "posterPath": "/8IWWLIHhuUxMe2mmZ7n1wujp01f.jpg", + "backdropPath": "/nmbhymKrATtjjEgbZzyKNJhBPI3.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2009-04-23", + "releaseYear": "2009", + "originalLanguage": "fr", + "voteAverage": 6.9, + "voteCount": 32, + "popularity": 4.8825 + }, + { + "id": 676, + "title": "Tom and Jerry Tales", + "originalTitle": "Tom and Jerry Tales", + "overview": "Tom and Jerry Tales is an American animated television series featuring the cat-and-mouse duo Tom and Jerry.", + "posterPath": "/gthxkV1MHAwqsVNLIU93MDm3ApL.jpg", + "backdropPath": "/e7gXqszTL2hWhTOkGA1HIJFnSZ0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Family" + ], + "releaseDate": "2006-09-23", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 141, + "popularity": 4.8816 + }, + { + "id": 39659, + "title": "TIGER & BUNNY", + "originalTitle": "TIGER & BUNNY", + "overview": "In an alternate New York City protected by a band of superheroes called NEXT, veteran Wild Tiger is forced to team up with rookie Barnaby Brooks Jr.", + "posterPath": "/7wMu4oweCllUTdFFjAhIRTh1L6p.jpg", + "backdropPath": "/buSADMJdGIngbPFk9ddoP6RQYnI.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 50, + "popularity": 4.8809 + }, + { + "id": 68780, + "title": "Star", + "originalTitle": "Star", + "overview": "Star is a tough-as-nails young woman who came up in the foster care system and decides one day to take control of her destiny. She tracks down her sister, Simone, and her Instagram bestie, Alexandra, and together, the trio journeys to Atlanta with the hope of becoming music superstars.", + "posterPath": "/poQgqeiKzA50etdQoJxELMA6M4s.jpg", + "backdropPath": "/p4yhSieDPF9zRMUbr9Ar4XrjbST.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-12-14", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 141, + "popularity": 4.8788 + }, + { + "id": 31677, + "title": "30 for 30", + "originalTitle": "30 for 30", + "overview": "30 for 30 is the title for a series of documentary films airing on ESPN, its sister networks, and online highlighting interesting people and events in sports history. This currently includes four \"volumes\" of 30 episodes each, a 13-episode series under the ESPN Films Presents title in 2011–2012, and a series of 30 for 30 Shorts shown through the ESPN.com website. The series has also expanded to include Soccer Stories, which aired in advance of the 2014 FIFA World Cup, and audio podcasts. This entry refers to the main Volumes of the series presented by ESPN", + "posterPath": "/g1CdZEUcnVYypLOp8cfb7W9mSp2.jpg", + "backdropPath": "/raTLTdAluxHod8Zj5h5OtIuVoVC.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2009-10-06", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.395, + "voteCount": 43, + "popularity": 4.877 + }, + { + "id": 1894, + "title": "LazyTown", + "originalTitle": "LazyTown", + "overview": "A pink-haired girl named Stephanie moves to LazyTown with her uncle (the mayor of LazyTown), where she tries to teach its extremely lazy residents that physical activity is beneficial.", + "posterPath": "/9bkxU7kTMLuhBOPnkAYXtCsqZj3.jpg", + "backdropPath": "/zHqc7PndtnJzxfSYuSqhKiqRYSo.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 10751 + ], + "genres": [ + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "2004-08-16", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.272, + "voteCount": 116, + "popularity": 4.8769 + }, + { + "id": 92782, + "title": "Ms. Marvel", + "originalTitle": "Ms. Marvel", + "overview": "A great student, avid gamer, and voracious fan-fic scribe, Kamala Khan has a special affinity for superheroes, particularly Captain Marvel. However, she struggles to fit in at home and at school — that is, until she gets superpowers like the heroes she’s always looked up to. Life is easier with superpowers, right?", + "posterPath": "/3HWWh92kZbD7odwJX7nKmXNZsYo.jpg", + "backdropPath": "/mfcLUWASJghU8MTNK38eYktfE83.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2022-06-08", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.315, + "voteCount": 1369, + "popularity": 4.8748 + }, + { + "id": 83097, + "title": "The Promised Neverland", + "originalTitle": "約束のネバーランド", + "overview": "Emma, Norman and Ray are the brightest kids at the Grace Field House orphanage. And under the care of the woman they refer to as “Mom,” all the kids have enjoyed a comfortable life. Good food, clean clothes and the perfect environment to learn—what more could an orphan ask for? One day, though, Emma and Norman uncover the dark truth of the outside world they are forbidden from seeing.", + "posterPath": "/oBgRCpAbtMpk1v8wfdsIph7lPQE.jpg", + "backdropPath": "/6t8N28C5NbwqjCHRXhyY1S06Lib.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 10759, + 18, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2019-01-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.328, + "voteCount": 1209, + "popularity": 4.8726 + }, + { + "id": 72, + "title": "Only Fools and Horses", + "originalTitle": "Only Fools and Horses", + "overview": "Only Fools and Horses.... Is a British sitcom created and written by John Sullivan. Seven series were originally transmitted on BBC One from 1981 to 1991, with sixteen sporadic Christmas specials aired until 2003.\n\nIn working-class Peckham in south-east London, ambitious market trader Derek 'Del Boy' Trotter and his younger half-brother Rodney, explore their highs and lows in life, in particular their attempts to get rich.\n\nInitially not an immediate hit and receiving little promotion early on, it later achieved consistently high ratings, and the 1996 episode \"Time on Our Hands\" (originally billed as the series finale) holds the record for the biggest UK audience for a sitcom episode, attracting 24.3 million viewers. The series bears a significant influence on British culture, contributing several words and phrases to the English language.", + "posterPath": "/8QznQBwr4aqPIQTiymL7obM3qOK.jpg", + "backdropPath": "/K8oVAMcE19IvzJsPlRVfDnB4Zq.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1981-09-08", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 8.028, + "voteCount": 289, + "popularity": 4.8715 + }, + { + "id": 202783, + "title": "A Killer Paradox", + "originalTitle": "살인자ㅇ난감", + "overview": "When one accidental killing leads to another, an ordinary young man finds himself stuck in an endless cat-and-mouse chase with a shrewd detective.", + "posterPath": "/i2yYZGT2If8XcCZS9ASF1g13MiT.jpg", + "backdropPath": "/viQZtznvR20oTTSbXp6MPAWkGB2.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 35, + 9648, + 18 + ], + "genres": [ + "Crime", + "Comedy", + "Mystery", + "Drama" + ], + "releaseDate": "2024-02-09", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.37, + "voteCount": 161, + "popularity": 4.8649 + }, + { + "id": 101359, + "title": "The Secret of Skinwalker Ranch", + "originalTitle": "The Secret of Skinwalker Ranch", + "overview": "The investigation of the world’s most mysterious hot spot for UFO and “High Strangeness” phenomena with astrophysicist Dr. Travis Taylor who joins real estate tycoon Brandon Fugal, along with his team of scientists and researchers on Utah’s notorious Skinwalker Ranch. The team utilizes cutting edge technology to investigate the 512-acre property to uncover the possibly “otherworldly” perpetrators behind it all. With everything from mysterious animal deaths to hidden underground workings and possible gateways that open to other dimensions, witness the close encounters that go beyond conventional explanation, as the team risks everything to finally reveal the ultimate secret of Skinwalker Ranch.", + "posterPath": "/j8PpovebgIhrt89AQVvkogcX34v.jpg", + "backdropPath": "/6gdTUejzzULZFcPWVdITyHmN88X.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 99 + ], + "genres": [ + "Reality", + "Documentary" + ], + "releaseDate": "2020-03-31", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 54, + "popularity": 4.8634 + }, + { + "id": 84661, + "title": "The Outsider", + "originalTitle": "The Outsider", + "overview": "When an insidious supernatural force edges its way into a seemingly straightforward investigation into the gruesome murder of a young boy, it leads a seasoned cop and an unorthodox investigator to question everything they believe in.", + "posterPath": "/aMiPwPQjQI1EZN3xP2V0sSU37dc.jpg", + "backdropPath": "/lmlsqpAfDZnZumcFhbsTrOy9uNZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2020-01-12", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.368, + "voteCount": 1591, + "popularity": 4.863 + }, + { + "id": 240692, + "title": "Jack & Joker: U Steal My Heart!", + "originalTitle": "ทำไมต้องเป็นเธอทุกที", + "overview": "To pay off his family's debt, a gifted taekwondo prodigy becomes the unwitting accomplice of a charismatic, legendary thief.", + "posterPath": "/X3bmROVCGZUI2HFCwOWySS6ji1.jpg", + "backdropPath": "/5HnwImVAdKNZTllozH2WEtFmAwI.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2024-09-09", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 9.5, + "voteCount": 46, + "popularity": 4.8611 + }, + { + "id": 97083, + "title": "The Circle", + "originalTitle": "The Circle", + "overview": "Status and strategy collide in this social experiment and competition show where online players flirt, befriend and catfish their way toward $100,000.", + "posterPath": "/bQRxhfXXsH4ccScOBHs51bgwNe4.jpg", + "backdropPath": "/9RvOSdK6oHbTZmGswApOziC0zc8.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2020-01-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.803, + "voteCount": 94, + "popularity": 4.8611 + }, + { + "id": 867, + "title": "The John Larroquette Show", + "originalTitle": "The John Larroquette Show", + "overview": "The John Larroquette Show is an American television sitcom .The show was a vehicle for John Larroquette following his run as Dan Fielding on Night Court. The series takes place in a seedy bus terminal in St. Louis, Missouri and originally focused on the somewhat broken people who worked the night shift, and in particular, the lead character's battle with alcoholism.", + "posterPath": "/4PQmSvqPbLI4lqmwHxZh8W5A1ob.jpg", + "backdropPath": "/mSArbafbUEMOEV4hG1K2W1UAUT0.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1993-09-02", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 16, + "popularity": 4.8609 + }, + { + "id": 43032, + "title": "You're Under Arrest!", + "originalTitle": "逮捕しちゃうぞ", + "overview": "Tokyo Highway Patrolwomen Natsumi and Miyuki get off to a bad start when Miyuki busts Natsumi for reckless moped driving on her way to work. Things get worse when they find out they're going to be partners!", + "posterPath": "/kwakYzynPqNFiW4RBjW3hZrMkRM.jpg", + "backdropPath": "/3fudCvQUkDUZqH3rJ0X9iw7sHbe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1996-10-05", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 11, + "popularity": 4.8601 + }, + { + "id": 72705, + "title": "Marvel's Spider-Man", + "originalTitle": "Marvel's Spider-Man", + "overview": "An insecure but courageous and intelligent teen named Peter Parker, a new student of Midtown High, is bitten by a radioactive spider and given powers. He becomes a hero named Spider-Man after the death of his uncle and he must adapt to this new way of life.", + "posterPath": "/dKdcyyHUR5WTMnrbPdYN5y9xPVp.jpg", + "backdropPath": "/qDum1yhNftUMaIB3pPiZ7PLsIto.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10751 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "2017-08-19", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.455, + "voteCount": 380, + "popularity": 4.859 + }, + { + "id": 42916, + "title": "Toradora!", + "originalTitle": "とらドラ!", + "overview": "Ryūji Takasu is a gentle high school student with a love for housework; but in contrast to his kind nature, he has an intimidating face that often gets him labeled as a delinquent. On the other hand is Taiga Aisaka, a small, doll-like student who is anything but a cute and fragile girl. Equipped with a wooden katana and feisty personality, Taiga is known throughout the school as the \"Palmtop Tiger.\" One day, an embarrassing mistake causes the two students to cross paths. Ryūji discovers that Taiga actually has a sweet side: she has a crush on the popular vice president, Yūsaku Kitamura, who happens to be his best friend. But things only get crazier when Ryūji reveals that he has a crush on Minori Kushieda—Taiga's best friend! Toradora! is a romantic comedy that follows this odd duo as they embark on a quest to help each other with their respective crushes, forming an unlikely alliance in the process.", + "posterPath": "/jgLSYTAgjQgwBqLEw1bgr8vNxeK.jpg", + "backdropPath": "/3IxznCOIYjajctSJ6BtlkDfJ22Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2008-10-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.199, + "voteCount": 624, + "popularity": 4.8563 + }, + { + "id": 34114, + "title": "Cat's Eye", + "originalTitle": "キャッツ♥アイ", + "overview": "Cat's Eye is the most notorious group of art thieves in Japan. No one knows their identities, but for most of Tokyo, the mystery only heightens their allure.", + "posterPath": "/5nXl9MZu7PfqkwZYYbC28nQ03pT.jpg", + "backdropPath": "/8npPz9oiCoff01DrphmFoIRI46y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 18, + 9648, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "1983-07-11", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 6.911, + "voteCount": 56, + "popularity": 4.8561 + }, + { + "id": 416, + "title": "Harvey Birdman, Attorney at Law", + "originalTitle": "Harvey Birdman, Attorney at Law", + "overview": "Harvey Birdman, Attorney at Law features ex-superhero Harvey T. Birdman of Birdman and the Galaxy Trio as an attorney working for a law firm alongside other cartoon stars from 1960s and 1970s Hanna-Barbera cartoon series. Similarly, Harvey's clients are also primarily composed of characters taken from Hanna-Barbera cartoon series of the same era. Many of Birdman's nemeses featured in his former cartoon series also became attorneys, often representing the opposing side of a given case.", + "posterPath": "/tBVSDa48aOcq7vF0xLFprRWZgbh.jpg", + "backdropPath": "/2CqC0XVbK2mdEkVVDDKXi1jWG0M.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35, + 10759, + 80 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2000-12-30", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 116, + "popularity": 4.8538 + }, + { + "id": 37722, + "title": "Dream High", + "originalTitle": "드림하이", + "overview": "Six dedicated students at Kirin Art High School work to achieve their dreams of becoming stars in the Korean music industry.", + "posterPath": "/vqlPVNTnYNoXTqyIaW2oN1qV2lZ.jpg", + "backdropPath": "/1ENWqq5onPtbOYSUXbB9fl7rV5h.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-01-03", + "releaseYear": "2011", + "originalLanguage": "ko", + "voteAverage": 6.8, + "voteCount": 81, + "popularity": 4.8531 + }, + { + "id": 66558, + "title": "Voltron: Legendary Defender", + "originalTitle": "Voltron: Legendary Defender", + "overview": "Five unlikely teenage heroes and their flying robot lions unite to form the megapowerful Voltron and defend the universe from evil.", + "posterPath": "/yWAGNuPuUWJT9gIQmGdZiTGJWzh.jpg", + "backdropPath": "/A7zBjRDFh1TXG3Buhi55mmS1qSr.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2016-06-10", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 138, + "popularity": 4.8527 + }, + { + "id": 279060, + "title": "Chespirito: Not Really on Purpose", + "originalTitle": "Chespirito: Sin querer queriendo", + "overview": "Miniseries that follow the life and career of Mexican actor, comedian and producer Roberto Gómez Bolaños, known for being the creator of El Chavo del 8, El Chapulín Colorado and Chespirito.", + "posterPath": "/mwsuIxLL84wfJGWhN7oOrFfpZ6d.jpg", + "backdropPath": "/y8tPZ9P4tYqYiACs6t4mlcWJnSC.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-06-05", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.966, + "voteCount": 443, + "popularity": 4.8524 + }, + { + "id": 47663, + "title": "The Ark", + "originalTitle": "The Ark", + "overview": "100 years in the future, planetary colonization missions have begun as a necessity to help secure the survival of the human race. The first of these missions on a spacecraft known as Ark One encounters a catastrophic event causing massive destruction and loss of life. With more than a year left to go before reaching their target planet, a lack of life-sustaining supplies and loss of leadership, the remaining crew must become the best versions of themselves to stay on course and survive.", + "posterPath": "/rec774m02XNLSjU9qm5z6UUfMRl.jpg", + "backdropPath": "/nUEcobWsTpvOh23US0MRZXIU8jt.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2023-02-01", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.329, + "voteCount": 146, + "popularity": 4.8522 + }, + { + "id": 12940, + "title": "Hard Knocks", + "originalTitle": "Hard Knocks", + "overview": "An inside look at NFL training camps. From the top coaches to the rookies trying to make the team, Hard Knocks showcases what it takes to be in the NFL.", + "posterPath": "/qVhNm2gnBE6IVIdgUMqOKMdMSc9.jpg", + "backdropPath": "/qEJWULZRFVvydnI7ooIee0Kc7i.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10764 + ], + "genres": [ + "Documentary", + "Reality" + ], + "releaseDate": "2001-08-01", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 16, + "popularity": 4.8512 + }, + { + "id": 84856, + "title": "Like a Flowing River", + "originalTitle": "大江大河", + "overview": "The story of Song Yunhui, Lei Dongbao, and Yang Xun as they take part in China’s economic reform from the 1980s to the 1990s.", + "posterPath": "/swbiM9qZjdViO9YHieTSIWH4XUO.jpg", + "backdropPath": "/9njs4uMroaRTbadHbMhObC6gEvx.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-12-10", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 8.3, + "voteCount": 16, + "popularity": 4.8463 + }, + { + "id": 87017, + "title": "P-Valley", + "originalTitle": "P-Valley", + "overview": "Down deep in the Mississippi Delta, Trap music meets film noir in this kaleidoscopic story of a little-strip-club-that-could and the big characters who come through its doors—the hopeful, the lost, the broken, the ballers, the beautiful, and the damned.", + "posterPath": "/qAuKjGNbcwdhbpxSciak8BFjQ5F.jpg", + "backdropPath": "/qaBwj91q7bx21y4xFAAYHR7wrDL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2020-07-12", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 240, + "popularity": 4.8431 + }, + { + "id": 13781, + "title": "Heathcliff and the Catillac Cats", + "originalTitle": "Heathcliff and the Catillac Cats", + "overview": "Heathcliff knows he is the best cat around! Never have we seen such self-confidence topped off with a heavy dose of vanity, cunning, ruthlessness, and a mischievous love of gags. He cruises and struts down the street and watch out any person, cat, or dog who gets in his way! Although he may terrorize the neighborhood, let an outsider try to push anyone around and he is a veritable tiger of defense. On the other side of town are The Catillac Cats, which typically revolve around leader Riff-Raff's get-rich-quick schemes or searches for food.", + "posterPath": "/AAS88x2ncjskKTm4Je1cNdrnf3.jpg", + "backdropPath": "/qGTzrFc98LHRtuKD6d931rUvLeA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1984-09-17", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 50, + "popularity": 4.8431 + }, + { + "id": 76874, + "title": "Alexa & Katie", + "originalTitle": "Alexa & Katie", + "overview": "Lifelong best friends Alexa and Katie are eagerly anticipating the start of their freshman year of high school. The pals confront a crisis that leaves them feeling like outsiders at a time when what seems to matter most is fitting in.", + "posterPath": "/aXNWQzzQ7yPSZMaWYA96NStN8DC.jpg", + "backdropPath": "/puakB1M78oqHoyf6qP1Nfx9IMse.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-03-23", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.129, + "voteCount": 209, + "popularity": 4.8424 + }, + { + "id": 539, + "title": "Squidbillies", + "originalTitle": "Squidbillies", + "overview": "Squidbillies is an animated television series about the Cuylers, an impoverished family of anthropomorphic hillbilly mud squids living in the Appalachian region of Georgia's mountains. The show is produced by Williams Street Studios for the Adult Swim programming block of Cartoon Network and premiered on October 16, 2005. It is written by Dave Willis, co-creator of Aqua Teen Hunger Force, and Jim Fortier, previously of The Brak Show, both of whom worked on the Adult Swim series Space Ghost Coast to Coast. The animation is done by Awesome Incorporated, with background design by Ben Prisk.", + "posterPath": "/ffXx3qq4eopQMof6M26tZ2yiiT3.jpg", + "backdropPath": "/3gTIwbdGPE5d448o0dqOtYeDXBx.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2005-10-16", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 77, + "popularity": 4.8412 + }, + { + "id": 244643, + "title": "El amor no tiene receta", + "originalTitle": "El amor no tiene receta", + "overview": "Paz Roble, a kind, hard-working and honest woman from whom her husband, Fermín, takes her newborn daughter. Fermín has a large debt with some lenders and to pay it he decides to sell his daughter to Mauro Nicoliti. This plagiarism is orchestrated by Geneva, Mauro's adoptive sister. She lost her first-born daughter in childbirth and does everything to replace her dead daughter and keep her husband's fortune. On the other hand, Esteban Villa de Cortés loses his wife and becomes a widower with his three children. Elvira Moncada, Esteban's mother-in-law, holds him responsible for the death of her daughter. After a series of unexpected events, Esteban and Paz meet in the neighborhood where she lives with her family. The chemistry and great understanding that exists between them makes it inevitable that they will fall in love.", + "posterPath": "/oEgTz6fhs5ZPopU2AyESPF4Esak.jpg", + "backdropPath": "/bIhmqQNXcyWRzH153d3jaCbLTy3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18, + 10751, + 10766, + 35 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Family", + "Soap", + "Comedy" + ], + "releaseDate": "2024-02-19", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.573, + "voteCount": 75, + "popularity": 4.8375 + }, + { + "id": 154, + "title": "Good Times", + "originalTitle": "Good Times", + "overview": "Good Times is an American sitcom that originally aired from February 8, 1974, until August 1, 1979, on the CBS television network. It was created by Eric Monte and Mike Evans, and developed by Norman Lear, the series' primary executive producer. Good Times is a spin-off of Maude, which is itself a spin-off of All in the Family along with The Jeffersons.\n\nThe series is set in Chicago. The first two seasons were taped at CBS Television City in Hollywood. In the fall of 1975, the show moved to Metromedia Square, where Norman Lear's own production company was housed.", + "posterPath": "/zZlaGU4RJMhTKFxmQ6RAEYNjM0l.jpg", + "backdropPath": "/16YMKoILiLS1RcZCSs9NFn9U46U.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1974-02-08", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 80, + "popularity": 4.8355 + }, + { + "id": 243964, + "title": "Melo Movie", + "originalTitle": "멜로무비", + "overview": "A movie buff falls for an aspiring director, igniting a romance that fizzles out too soon. When their paths cross again, can love find its way back?", + "posterPath": "/iEVOYk8eoMdCLFrNXtRSyqVM20c.jpg", + "backdropPath": "/9QjIFAVFN7Pe4MbF2O7oHvLkFsI.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-02-14", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.178, + "voteCount": 45, + "popularity": 4.834 + }, + { + "id": 85184, + "title": "The Noite com Danilo Gentili", + "originalTitle": "The Noite com Danilo Gentili", + "overview": "", + "posterPath": "/agA6JjPuTsuVdJblhVt8vtiKalf.jpg", + "backdropPath": "/lIEput5jpJm1I0Yz3pXtWBs4X22.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2014-03-10", + "releaseYear": "2014", + "originalLanguage": "pt", + "voteAverage": 5.3, + "voteCount": 10, + "popularity": 4.8338 + }, + { + "id": 210781, + "title": "My Lovely Liar", + "originalTitle": "소용없어 거짓말", + "overview": "A woman who can't trust people because of her ability to hear lies and a mystic composer who hid his indescribable identity, become involved in each other's lives to uncover the truth.", + "posterPath": "/msYlN0cIpuTKlWYnEStdoBuHmvX.jpg", + "backdropPath": "/epX98PDMyv7lZPlmmJJvfu8AfJp.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 35, + 18, + 10765 + ], + "genres": [ + "Mystery", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-31", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.547, + "voteCount": 74, + "popularity": 4.8305 + }, + { + "id": 46154, + "title": "Rebel Rio", + "originalTitle": "Rebelde", + "overview": "Elite Way is one of the most renowned educational institutions in the country, where students have access to high quality education and play sports. Despite the rigid schedule, the richest families in Rio de Janeiro want that their children study in the Elite Way. This is the case of Alice, Diego, Roberta, Carla and Tomás, some rebel teenagers and full of fancies that will discover in music a common goal.\n\n", + "posterPath": "/opN93mii680gMSn4ud6EYQlupA2.jpg", + "backdropPath": "/roIlyzrpvTTcbmgew5b34KvW9Gh.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 10751, + 18 + ], + "genres": [ + "Soap", + "Family", + "Drama" + ], + "releaseDate": "2011-03-21", + "releaseYear": "2011", + "originalLanguage": "pt", + "voteAverage": 7, + "voteCount": 11, + "popularity": 4.8261 + }, + { + "id": 32836, + "title": "Back Streets", + "originalTitle": "Arka Sokaklar", + "overview": "The series tells the story of the family lives of the police officers working in a special team of the Istanbul Police Department's Public Security Department and their adventures on the streets of Istanbul. The team encounters different and diverse human stories during their missions. The Istanbul Police Chief Rıza Soylu (Zafer Ergin), with his years of experience and fatherhood, approaches these stories, which at times make them smile and at other times are heartbreaking, and guides the other young members of the team.", + "posterPath": "/mxFzuKK8yEz9KdJXb6sPlhUU07s.jpg", + "backdropPath": "/m8iQSgowqLOp54P9g1PEjr7MaG7.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 10751, + 9648, + 35 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Family", + "Mystery", + "Comedy" + ], + "releaseDate": "2006-07-31", + "releaseYear": "2006", + "originalLanguage": "tr", + "voteAverage": 5.607, + "voteCount": 28, + "popularity": 4.8249 + }, + { + "id": 77410, + "title": "Muppet Babies", + "originalTitle": "Muppet Babies", + "overview": "The reimagined playroom antics and wacky adventures of the young Kermit the Frog, Piggy, Fozzie Bear, Gonzo, Animal, Summer Penguin, and Miss Nanny.", + "posterPath": "/mKO39v4anUjh73s9NIIRp8HKlqm.jpg", + "backdropPath": "/dhpiUjED67h3vHaQevuD2T8KyaK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2018-03-23", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 15, + "popularity": 4.8229 + }, + { + "id": 65564, + "title": "Bunnicula", + "originalTitle": "Bunnicula", + "overview": "A dark comedic adventure about the titular Bunnicula, a vampire rabbit, Mina, his owner, and her two pets, Chester the cat and Harold the dog. Instead of blood, Bunnicula feeds on carrots to sustain himself which gives him super abilities which come in handy on his and his friends escapades.", + "posterPath": "/zpL2TN3GsvwiA0XJjpaJSwdV5Wo.jpg", + "backdropPath": "/sPlk2lRWANurhAevUaa4TOngZev.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2016-02-06", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 23, + "popularity": 4.8214 + }, + { + "id": 243200, + "title": "Old Dog, New Tricks", + "originalTitle": "Animal", + "overview": "Cash-strapped vet Antón takes a job at a fancy pet store, going from treating rural farm animals to peddling premium treats for pampered pooches.", + "posterPath": "/UgYg7GY6LYQnGhCmt1PQ7OhwEU.jpg", + "backdropPath": "/jeua3sqZS9JQkOIBToLm6rvNUn9.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.561, + "voteCount": 33, + "popularity": 4.8211 + }, + { + "id": 95707, + "title": "Kaizoku Sentai Gokaiger", + "originalTitle": "海賊戦隊ゴーカイジャー", + "overview": "A group of young pirates from space come to Earth to obtain the \"Greatest Treasure in the Universe\", which can only be acquired after obtaining the Ultimate Powers of the 34 Super Sentai. However, they end up running afoul of the Space Empire Zangyack, whose earlier invasion forces were wiped out by the 34 Super Sentai long ago. As a result, the space pirates use \"pirate copies\" of the powers of the older teams and fight the Zangyack forces as the Gokaigers.", + "posterPath": "/yHHf6ERcZMp3av3Bw41FYR68F9I.jpg", + "backdropPath": "/x3fvIdnXluHW2XgPont68E7tFCn.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2011-02-13", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 20, + "popularity": 4.8195 + }, + { + "id": 80743, + "title": "Insatiable", + "originalTitle": "Insatiable", + "overview": "A bullied teenager turns to beauty pageants as a way to exact her revenge, with the help of a disgraced coach who soon realizes he's in over his head.", + "posterPath": "/lHZ4xqGQlmyiFTOVtwnNpTcZgkd.jpg", + "backdropPath": "/xavmlGLjXwIEafnRV0RqGbUufuA.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-08-10", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.769, + "voteCount": 1671, + "popularity": 4.8193 + }, + { + "id": 4562, + "title": "Seven Days", + "originalTitle": "Seven Days", + "overview": "\"Ever wish you could live your last week all over again? Well, my name's Frank B. Parker, and I do it all the time. I work for a secret government project experimenting in time travel. When things really get screwed up, I'm the guinea pig they send back to take care of it. The catch is, I can only go back 7 days.\"", + "posterPath": "/yhnSqxQc8QaeBC2ZuWqZDtECtHv.jpg", + "backdropPath": "/tmTqDRHs3oXdAQApF8G2D3q5GFx.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1998-10-07", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 55, + "popularity": 4.8188 + }, + { + "id": 215092, + "title": "Alpha Males", + "originalTitle": "Machos alfa", + "overview": "Pedro, Luis, Raúl and Santi are four friends who feel a bit lost in the new world of empowered women, each trying to adjust in their own haphazard way.", + "posterPath": "/NqID21yImku6B7kq0oCQTxX2rm.jpg", + "backdropPath": "/iQFRJfvlxF94B3qz6eMDep5y5yV.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2022-12-30", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 7.5, + "voteCount": 127, + "popularity": 4.8181 + }, + { + "id": 157747, + "title": "Transformers: EarthSpark", + "originalTitle": "Transformers: EarthSpark", + "overview": "The Malto Family’s world turns upside down when the Terrans, the first Earthborn Transformers robots, spark to life. The Terrans will forge an alliance between the human Malto family and the legendary Autobots, uniting them in a shared mission.", + "posterPath": "/jLwU37QusZDkkOuFNb1TA6NQZNT.jpg", + "backdropPath": "/gzVkLZOM0er10OwEUJyhl9G7oE7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2022-11-11", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 34, + "popularity": 4.8177 + }, + { + "id": 49608, + "title": "A Mother's Love", + "originalTitle": "Canım Annem", + "overview": "Zeynep is an innocent and beautiful girl who's very fond of her mother. One day, her mother Cemre dies in an accident. No one can bring themselves to tell Zeynep that her mother is dead. Zeynep was born with a heart condition and she is not strong enough to bear the news. When she was dying, Zeynep's mother is slandered so that Murat, who used to love her madly, now hates her deeply. Now that Asude, her grandmother has the perfect conditions to make Murat marry Melek, the woman she'd like to see as her daughter-in-law. The night that Zeynep finds out about her mother's death, she also finds out that Murat is to marry Melek and she has an attack. When Zeynep's heart is about to stop, a miracle happens. Zeynep comes across Nazli, who looks exactly like her mother.", + "posterPath": "/pPjyZWvaLzu2MRllG64p6eyQyre.jpg", + "backdropPath": "/r9slE8R3rFgDC84VPb10GgPDQUg.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2022-02-14", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 13, + "popularity": 4.817 + }, + { + "id": 106009, + "title": "Numberblocks", + "originalTitle": "Numberblocks", + "overview": "Learn how much fun counting can be with the Numberblocks - a fun-loving group of numbers who work together to solve problems big and small.", + "posterPath": "/vt872bR11jYDRSzTSfLuOmb2SMt.jpg", + "backdropPath": "/u9H3GJHNxlQwVeyJDxGGD7Uu9iH.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Family" + ], + "releaseDate": "2016-01-23", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.9, + "voteCount": 15, + "popularity": 4.8165 + }, + { + "id": 124394, + "title": "Power Book III: Raising Kanan", + "originalTitle": "Power Book III: Raising Kanan", + "overview": "Set in South Jamaica, Queens, in 1991, this prequel to \"Power\" revolves around the coming of age of Kanan Stark.", + "posterPath": "/pZ7IaHON9hnu8C0g3zdoWwIsJ9t.jpg", + "backdropPath": "/qiDq1iCK0Ie9uwxJu2gDeVxDvI1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2021-07-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 184, + "popularity": 4.816 + }, + { + "id": 115577, + "title": "Sonic Prime", + "originalTitle": "Sonic Prime", + "overview": "When an explosive battle with Dr. Eggman shatters the universe, Sonic races through parallel dimensions to reconnect with his friends and save the world.", + "posterPath": "/mlDVnjgx89bmGvtXnKYDbowpadV.jpg", + "backdropPath": "/pYiIcenKt7L2cMrhn67xAxCGgzR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2022-12-15", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8.229, + "voteCount": 514, + "popularity": 4.8158 + }, + { + "id": 233592, + "title": "Between Lands", + "originalTitle": "Entre tierras", + "overview": "To protect her sister and save her family from ruin, a selfless woman navigates an arranged marriage with a wealthy man who hides dark secrets.", + "posterPath": "/1Ea63e9yhMGKCTmRVvD5H9FZuUW.jpg", + "backdropPath": "/hw3B0x3oNybeaJKZoJdlgELQFsW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-09-10", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 6.865, + "voteCount": 26, + "popularity": 4.815 + }, + { + "id": 78075, + "title": "The Repair Shop", + "originalTitle": "The Repair Shop", + "overview": "The Repair Shop is a workshop of dreams, where broken or damaged cherished family heirlooms are brought back to life. Furniture restorers, horologists, metal workers, ceramicists, upholsterers and all manner of skilled craftsmen and women have been brought together to work in one extraordinary space, restoring much-loved possessions to their former glory.", + "posterPath": "/4YjXfhJmwCWWqoHWiPSNkoMPZHd.jpg", + "backdropPath": "/pBHziUFN7lzRu8WyBJsNhrMKvFJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2017-03-27", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 28, + "popularity": 4.8129 + }, + { + "id": 115645, + "title": "Genesis", + "originalTitle": "Gênesis", + "overview": "The story of the first 2,300 years of humanity and recounts events exclusively from that period. The plot begins by giving us a greater understanding of why we exist and how we turned from perfection to imperfection. The origin of all social and racial problems is there at the beginning of everything, when via one decision a human being who only knew good and enjoyed it so much also chose to know evil.", + "posterPath": "/qZJt1XlRVbQhGV7MtZnbiR6vxPh.jpg", + "backdropPath": "/k8rqfo7RWsaILRdXIfpEJcuG1lT.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2021-01-19", + "releaseYear": "2021", + "originalLanguage": "pt", + "voteAverage": 7.8, + "voteCount": 226, + "popularity": 4.8121 + }, + { + "id": 82809, + "title": "False Identity", + "originalTitle": "Falsa identidad", + "overview": "Isabel and Diego, two complete strangers, must assume the identity of a married couple in order to flee the state of Sonora.", + "posterPath": "/rGIVID9KFrE6oMOtqost2Ccd9Co.jpg", + "backdropPath": "/vwsXyOGWOTVACbAjKOfKlQFO2OX.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759 + ], + "genres": [ + "Crime", + "Action & Adventure" + ], + "releaseDate": "2018-10-03", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 7.554, + "voteCount": 532, + "popularity": 4.8103 + }, + { + "id": 35138, + "title": "Hetalia", + "originalTitle": "ヘタリア", + "overview": "Forget what you learned in history class, and imagine all the nations of the world as guys on an inappropriate reality show. Pledge allegiance to your favorite superpower in Hetalia Axis Powers!", + "posterPath": "/hiMKkopeJU4UB4OW3o4hpYS7CB8.jpg", + "backdropPath": "/4Weg8hccl09H3rv9KCZz7fXSgob.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-01-24", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.781, + "voteCount": 32, + "popularity": 4.8092 + }, + { + "id": 261868, + "title": "Witch Watch", + "originalTitle": "ウィッチウォッチ", + "overview": "A diligent teen winds up living with his spunky childhood friend, a trainee witch, to protect her from a dire prophecy. But can they survive high school?", + "posterPath": "/48KKO5QHkowaCVsEpKLdvrzir3a.jpg", + "backdropPath": "/yTfaG7igCJa324DU0QaxCTzYBXF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 36, + "popularity": 4.8075 + }, + { + "id": 94904, + "title": "My Next Life as a Villainess: All Routes Lead to Doom!", + "originalTitle": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "overview": "Wealthy heiress Catarina Claes is hit in the head with a rock and recovers the memories of her past life. It turns out the world she lives in is the world of the game Fortune Lover, an otome game she was obsessed with in her past life... but she's been cast as the villain character who tries to foil the protagonist's romances!", + "posterPath": "/wGlRnnqmUmbmLc4gRiWlIsv9L3L.jpg", + "backdropPath": "/cErFnClnNFtxjljACfo3knIvOeG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 92, + "popularity": 4.8066 + }, + { + "id": 60874, + "title": "Space Dandy", + "originalTitle": "スペース☆ダンディ", + "overview": "Space Dandy is a dandy in space! This dreamy adventurer with a to-die-for pompadour travels across the galaxy in search of aliens no one has ever laid eyes on. Each new species he discovers earns him a hefty reward, but this dandy has to be quick on his feet because it’s first come – first served! Accompanied by his sidekicks, a rundown robot named QT and Meow the cat-looking space alien, Dandy bravely explores unknown worlds inhabited by a variety aliens. Join the best dressed alien hunter in all of space and time as he embarks on an adventure that ends at the edge of the universe!", + "posterPath": "/yNjRKE4W2ZJIoCDA2o6brNqpjg7.jpg", + "backdropPath": "/o5P2aI2MKuMYZIP5YO3ahVMBaOh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2014-01-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 121, + "popularity": 4.8063 + }, + { + "id": 52698, + "title": "El Kebeer Awi", + "originalTitle": "الكبير أوي", + "overview": "Al Kabeer seeks to find love again after his wife was gone, unaware that what he is looking for is closer than he imagines.", + "posterPath": "/oj4XM6wpGRIcx3QoQx1PF1fx5E5.jpg", + "backdropPath": "/wZsD7yIXU4f7IORXEv2lb5MKao0.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "2010-08-11", + "releaseYear": "2010", + "originalLanguage": "ar", + "voteAverage": 7, + "voteCount": 53, + "popularity": 4.8027 + }, + { + "id": 75893, + "title": "V", + "originalTitle": "V", + "overview": "Once again, Earth is the battleground. But now the aliens whose human guise hides their true reptilian natures are wiser. They believe the secret to their survival on Earth lies in the DNA of the newly born half-human, half-spaceling Starchild. But that's something the world's Resistance Fighters cannot allow.", + "posterPath": "/Aps7fkPWZbhyUvB0hkZ6NV8LtE.jpg", + "backdropPath": "/A8SYR6WvxAaAgid4R4JZUTCw4ko.jpg", + "mediaType": "tv", + "genreIds": [ + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy" + ], + "releaseDate": "1984-10-26", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 7.062, + "voteCount": 170, + "popularity": 4.8025 + }, + { + "id": 645, + "title": "Rhoda", + "originalTitle": "Rhoda", + "overview": "", + "posterPath": "/7nVSlqyqtlXuTiEYjku7fzWYav5.jpg", + "backdropPath": "/7x3MrOXE1f3B1JzmW4p2kIxidzr.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1974-09-09", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 27, + "popularity": 4.8024 + }, + { + "id": 32962, + "title": "Louie", + "originalTitle": "Louie", + "overview": "Louis C.K. stars as a fictionalized version of himself; a comedian and newly divorced father raising his two daughters in New York City.", + "posterPath": "/ubWj0BLRV1UDP8ELnTr2is2Wl0Y.jpg", + "backdropPath": "/afyjB6cwJnTbo0OmnrGTl1V1pNt.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2010-06-29", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.793, + "voteCount": 548, + "popularity": 4.8018 + }, + { + "id": 9513, + "title": "Hinter Gittern - Der Frauenknast", + "originalTitle": "Hinter Gittern - Der Frauenknast", + "overview": "Drama set in a women's prison in Germany. Susanne Teubner, a sympathetic young woman who has killed her husband in an affect, is poorly advised by her lawyer and sentenced to life imprisonment for willful murder. The arrival in prison is a shock to her. Resigned and exhausted, she endures the degrading admission procedure. She doesn't notice that the young doctor Dr. Beck immediately felt more than professional interest for her.", + "posterPath": "/4XdQxqrEBY1W2MAvZquPRzOcZ2R.jpg", + "backdropPath": "/9eKzJ2W5fa8ymYESrFcEdjh9ldS.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1997-09-22", + "releaseYear": "1997", + "originalLanguage": "de", + "voteAverage": 4.1, + "voteCount": 10, + "popularity": 4.7998 + }, + { + "id": 543, + "title": "The Proud Family", + "originalTitle": "The Proud Family", + "overview": "Follow the adventures and misadventures of Penny, a 14-year-old African American girl who's doing her best to navigate through the early years of teen-dom. Penny's every encounter inevitably spirals into bigger than life situations filled with hi-jinks, hilarity and heart. Her quest to balance her home, school and social lives are further complicated by friends like the sassy Dijonay, Penny's nemesis LaCienega Boulevardez, her loving, if not over-protective parents and her hip-to-the-groove-granny, Suga Mama.", + "posterPath": "/wcfbfActZ9VZ3anFqe3YYNWOHsG.jpg", + "backdropPath": "/1HZpsTp3N8QQDSNDu5yEmBAb7s1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "2001-09-15", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.726, + "voteCount": 146, + "popularity": 4.7997 + }, + { + "id": 2016, + "title": "Mama's Family", + "originalTitle": "Mama's Family", + "overview": "Thelma Harper and her spinster sister Fran open their home to Thelma's recently divorced son Vinton and his teenage son and daughter. It's quite an adjustment for everyone, especially the cranky, argumentative Thelma.", + "posterPath": "/qal1KQkksYDuDnxUBETEpdoVvoX.jpg", + "backdropPath": "/eLIhwHOLBDeHoJFFHX4MddAJqdD.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1983-01-22", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 47, + "popularity": 4.7995 + }, + { + "id": 280038, + "title": "Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin", + "originalTitle": "異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~", + "overview": "In Eternal Nations, a fantasy strategy game where players manage an empire, Takuto Ira is a legendary player who sits atop the leaderboard. Takuto goes unconscious during a hospitalization and awakens on the continent of Idoragya, which looks just like the game. Takuto meets Sludge Atou, his favorite unit in the game, and decides to build Mynoghra, an evil empire.", + "posterPath": "/cPVLebbkrh3H0yXba4NW5fdrPUp.jpg", + "backdropPath": "/drINdRuh71M8MpoPWcxwpP9yDEU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 21, + "popularity": 4.7989 + }, + { + "id": 33965, + "title": "Littlest Pet Shop", + "originalTitle": "Littlest Pet Shop", + "overview": "When Blythe Baxter moved into the city with her father, she never expected to move into the apartment above the Littlest Pet Shop. But an even bigger surprise awaited her. Blythe can talk to pets... and they can talk back!", + "posterPath": "/2D0O7iZuN0AKnEB4D7mw08DCL1n.jpg", + "backdropPath": "/bijyMtsmqQB9NPqbuBiCltWtAop.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2012-11-10", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 28, + "popularity": 4.7963 + }, + { + "id": 260823, + "title": "From Old Country Bumpkin to Master Swordsman", + "originalTitle": "片田舎のおっさん、剣聖になる", + "overview": "Beryl Gardenant, a middle-aged swordsman running a dojo in the backwaters, lives a quiet life, until Allucia, former student and Commander of the Royal Order of Knights, appears! Beryl’s life is about to change dramatically! City life. Old students. New friends and formidable foes. It’s all too much. But after years of training, he has mad skills, and he’s been dubbed “the backwater swordmaster.”", + "posterPath": "/ujQp5egkJOkDHx4TehlgHePFcRv.jpg", + "backdropPath": "/sEagMcuLL3beaHc3ToiZicMuYSb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.645, + "voteCount": 62, + "popularity": 4.7955 + }, + { + "id": 3729, + "title": "High Kick", + "originalTitle": "거침없이 하이킥", + "overview": "High Kick! was a popular South Korean situation comedy revolving around the life of the Lee family, taking place in Seoul at the same time as the broadcast. The title of the show \"High Kick!\" has several implications, one of which is the oft-depicted high kicks of Yoon-ho, one of the main characters. The show aired in South Korea from Monday to Friday in sitcom format. Due to its popularity, the show filmed more episodes than were initially planned. Many of the characters starred in commercials and advertisements in Korea. The show's popularity also led to High Kick Through the Roof, which aired in 2009-2010, and High Kick 3: The Counterattack of the Short Leg, which aired in 2011-2012.", + "posterPath": "/2p9ZBFn6TJGN2bci4DymhngEaeS.jpg", + "backdropPath": "/buLTIMHGzUOIgskUzqg7WML4vcV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2006-11-06", + "releaseYear": "2006", + "originalLanguage": "ko", + "voteAverage": 8.692, + "voteCount": 13, + "popularity": 4.7955 + }, + { + "id": 32736, + "title": "The Defenders", + "originalTitle": "The Defenders", + "overview": "The Defenders is a drama about two colorful Las Vegas defense attorneys who go all-in when it comes to representing their clients. Nick and Pete are the local go-to guys with an eclectic client list who are still looking to hit their own jackpot.", + "posterPath": "/xAW5aSnv6ALlJvXQG1zTSpfCll5.jpg", + "backdropPath": "/759ooTcQt1DPNQafHTOjFpxY1MD.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2010-09-22", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 33, + "popularity": 4.7945 + }, + { + "id": 4575, + "title": "Lizzie McGuire", + "originalTitle": "Lizzie McGuire", + "overview": "Lizzie McGuire is all about the ordinary and not-so-ordinary adventures of a junior high student and her two best friends as they try to deal with the ups and downs of school, popularity, boys, parents, a bratty little brother--just life in general. And if Lizzie leaves anything unsaid, you can bet that her cartoon alter ego will say it for her!", + "posterPath": "/3WiL6yy2R0A9Io2hkodoPTBMS7o.jpg", + "backdropPath": "/9TDtNdKwwJKAbddufpFlfUgBiCl.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 10751 + ], + "genres": [ + "Comedy", + "Kids", + "Family" + ], + "releaseDate": "2001-01-12", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 338, + "popularity": 4.793 + }, + { + "id": 6616, + "title": "Bonkers", + "originalTitle": "Bonkers", + "overview": "Bonkers is an animated American television series that aired from September 4, 1993 to August 24, 1995 in first-run syndication. The syndicated run was available both separately, and as part of The Disney Afternoon. The show was last seen on Toon Disney, but was taken off the schedule in late 2004.", + "posterPath": "/eZW4rWFY356fBAGNG9SrsyU6WMH.jpg", + "backdropPath": "/9oORP9DqqkjaLOqsWygXm0eEoqg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1993-09-04", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 42, + "popularity": 4.7913 + }, + { + "id": 7248, + "title": "The Magic School Bus", + "originalTitle": "The Magic School Bus", + "overview": "An eccentric schoolteacher takes her class on wondrous educational field trips with the help of a magical school bus.", + "posterPath": "/3A70wxUpplD4V3IcL8WmNFBgAbV.jpg", + "backdropPath": "/pWZjTb2ixwVEzvnsvv3KYz5pvIs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10751, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Family", + "Action & Adventure", + "Kids" + ], + "releaseDate": "1994-09-10", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.635, + "voteCount": 122, + "popularity": 4.7911 + }, + { + "id": 63714, + "title": "Porta dos Fundos", + "originalTitle": "Porta dos Fundos", + "overview": "A series of short comedy films.", + "posterPath": "/ogNJzZ5elxPY3eb95716nBUnNEv.jpg", + "backdropPath": "/5axnUAVnRCPpY24fqzUDQn9ug7P.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-08-07", + "releaseYear": "2012", + "originalLanguage": "pt", + "voteAverage": 6.942, + "voteCount": 26, + "popularity": 4.7901 + }, + { + "id": 1835, + "title": "Kenan & Kel", + "originalTitle": "Kenan & Kel", + "overview": "Set in Chicago, the show follows the kid-friendly misadventures of two high-school friends who are always scheming and dreaming. Kenan, who works at a grocery store, constantly devises crazy plans to strike it rich, while orange-soda-loving buddy Kel is always dragged along for the ride despite his track record for messing things up.", + "posterPath": "/ftRkgMhF1CofVSLMeonh9Hjz7a4.jpg", + "backdropPath": "/i9ynM8JIvA0zs8hKImeq9D1SUtx.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 10762 + ], + "genres": [ + "Family", + "Comedy", + "Kids" + ], + "releaseDate": "1996-08-17", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 394, + "popularity": 4.7875 + }, + { + "id": 63353, + "title": "Difficult People", + "originalTitle": "Difficult People", + "overview": "Life is really tough for Julie Kessler and Billy Epstein, two thirty-something aspiring comics living and working in New York City. While their friends and acquaintances move on to find success and love, they continue to struggle with careers and relationships, getting more bitter by the day.", + "posterPath": "/2ji3KnVj7ilpL67DtScIHzxxjHH.jpg", + "backdropPath": "/j5FuLsbi1Faj7bK2q6d6rBwQ5Ci.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-08-05", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 40, + "popularity": 4.787 + }, + { + "id": 202213, + "title": "History of the World: Part II", + "originalTitle": "History of the World: Part II", + "overview": "Explore different periods of human history through a variety of sketches.", + "posterPath": "/6PlHUsScubMx3VADGRh1kIylML2.jpg", + "backdropPath": "/1LyPGN2D5MtMeCPzmfq5QC5zaXv.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-03-06", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.635, + "voteCount": 78, + "popularity": 4.7869 + }, + { + "id": 57736, + "title": "The Musketeers", + "originalTitle": "The Musketeers", + "overview": "Set in 17th century Paris, musketeers Athos, Porthos, Aramis and D'Artagnan are members of an elite band of soldiers who fight for what is just. They are heroes in the truest and most abiding sense – men that can be trusted and believed in to do the right thing, regardless of personal risk.", + "posterPath": "/6kOMlk4hlavwO5L82eLdklN0fm5.jpg", + "backdropPath": "/nkPWqWZQ84WtbUY5RktSPPrNdWO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2014-01-19", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 189, + "popularity": 4.7869 + }, + { + "id": 61148, + "title": "Empress Ki", + "originalTitle": "기황후", + "overview": "A woman born in Korea navigates her way through love, war, politics and national loyalties to become a powerful empress in China's Yuan dynasty.", + "posterPath": "/cH9PMmBkhtVMlCdi8fgvMqekNKi.jpg", + "backdropPath": "/pefCiIoIrWglxwpoqIdnhL0IlGZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2013-10-28", + "releaseYear": "2013", + "originalLanguage": "ko", + "voteAverage": 7.367, + "voteCount": 64, + "popularity": 4.7855 + }, + { + "id": 12272, + "title": "Thriller", + "originalTitle": "Thriller", + "overview": "Thriller is an American anthology television series that aired during the 1960–61 and 1961–62 seasons on NBC. The show featured host Boris Karloff introducing a mix of self-contained, macabre weird-horror and morbid, hitchockian crime stories, in some of which he also starred.", + "posterPath": "/lLrNBo5Krzu1oNlxEqKprk8UW5b.jpg", + "backdropPath": "/4gFB4BF4zojCrD5JVHp74xWcoQL.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "1960-09-13", + "releaseYear": "1960", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 19, + "popularity": 4.7849 + }, + { + "id": 2009, + "title": "Rocket Power", + "originalTitle": "Rocket Power", + "overview": "The daily lives of four friends who enjoy extreme sports, surfing, and getting into some crazy situations.", + "posterPath": "/2As5aMc84mtTurD2DfDLytNLhkh.jpg", + "backdropPath": "/oBGchglw5lgrW7jc5UYK7IHsi4X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1999-08-16", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 7.69, + "voteCount": 306, + "popularity": 4.7842 + }, + { + "id": 258023, + "title": "The American Revolution", + "originalTitle": "The American Revolution", + "overview": "The American Revolution was at once a war for independence, a war of conquest, a civil war, and a world war, fought by neighbors on American farms and between global powers an ocean or more away. It impacted millions from Vermont’s Green Mountains to the swamps of South Carolina, from Indian Country to the Iberian Peninsula. In defeating the British Empire and giving birth to a new nation, the American Revolution turned the world upside-down. Thirteen colonies on the Atlantic Coast united in rebellion, won their independence, and established a republic that still endures. The American Revolution will present the story of the men and women of the Revolutionary generation, their humanity in victory and defeat, and the crisis that they lived through.", + "posterPath": "/76UCiD6Or5w2Ms8PW7XNcPtr9fD.jpg", + "backdropPath": "/yce0L2syqZ7PVcg9FR9Zqy9yDLG.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10768 + ], + "genres": [ + "Documentary", + "War & Politics" + ], + "releaseDate": "2025-11-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.688, + "voteCount": 16, + "popularity": 4.7834 + }, + { + "id": 1849, + "title": "Benson", + "originalTitle": "Benson", + "overview": "A butler deals with life at the governor's mansion.", + "posterPath": "/pXQIwDfMMDF6GVJdgLm68Exm5wo.jpg", + "backdropPath": "/hs0q37NVgFkN8AMtXhKbtw3w4gR.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1979-09-13", + "releaseYear": "1979", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 38, + "popularity": 4.7826 + }, + { + "id": 92611, + "title": "RuPaul's Drag Race UK", + "originalTitle": "RuPaul's Drag Race UK", + "overview": "RuPaul has made the trip across the pond in search of a queen with the most charisma, uniqueness, nerve and talent in all the land.", + "posterPath": "/AjHMC80XeQlqYA9WjGcYaQaH45R.jpg", + "backdropPath": "/AaJVYiHTFNeehKde1H4o57m4Gw8.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2019-10-03", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 58, + "popularity": 4.7811 + }, + { + "id": 31389, + "title": "Republic of Doyle", + "originalTitle": "Republic of Doyle", + "overview": "Jake Doyle and his ex-cop father, Malachy, run a Newfoundland detective agency. Their rugged seaside town never lacks for intriguing cases, and the Doyles don't always land on the right side of the law.", + "posterPath": "/k6ixXBiyOrsn0nrZ7zPG6dtqAHw.jpg", + "backdropPath": "/xPLeGDdtPde91W1AsxUfuqRoPlq.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2010-01-06", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 37, + "popularity": 4.781 + }, + { + "id": 10826, + "title": "Astro Boy", + "originalTitle": "鉄腕アトム", + "overview": "In the year 2000, Dr. Boyton creates a super-robot in his deceased son's image. He calls the robot Astro Boy. Astro Boy can swim oceans, leap over mountains, even fly into space on his own power. However, Astro Boy can't replace his son. Dr. Boyton becomes dissatisfied with the boy robot and disowns him.\n\nAstro Boy is befriended by Dr. Packadermus J. Elefun of the Institute of Science, who guides him through his adventures. Endowed with super strength, rocket-powered flight, a selfless heart and a kind demeanor, Astro Boy fights a never-ending crusade against the forces of evil!", + "posterPath": "/nmzhfHyuOfhmTH9A20LhFP6u5Fx.jpg", + "backdropPath": "/pAEOrnk8VLf4aDv2fFowdUPN4Ii.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1963-01-01", + "releaseYear": "1963", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 15, + "popularity": 4.781 + }, + { + "id": 100281, + "title": "Moriarty the Patriot", + "originalTitle": "憂国のモリアーティ", + "overview": "In the late 19th century, the British Empire nobility reigns while its working class suffers at their hands. Sympathetic to their plight, William James Moriarty wants to topple it all. Frustrated by the systemic inequity, Moriarty strategizes to fix the entire nation. Not even consulting detective Sherlock Holmes can stand in his way. It’s time for crime to revolutionize the world!", + "posterPath": "/lLcmshfrLg7JUMwMCnp5fuNqtoQ.jpg", + "backdropPath": "/en2X3XWGiUwZFe9pH9r06Si3Nbh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2020-10-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 225, + "popularity": 4.7802 + }, + { + "id": 97173, + "title": "Behind Her Eyes", + "originalTitle": "Behind Her Eyes", + "overview": "A single mother enters a world of twisted mind games when she begins an affair with her psychiatrist boss while secretly befriending his mysterious wife.", + "posterPath": "/sfd90NIf778KoBFmpdBTow4xTm7.jpg", + "backdropPath": "/mGbJ2qmfmlWU9vSTbOExJC14WRW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-02-17", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.335, + "voteCount": 638, + "popularity": 4.7787 + }, + { + "id": 925, + "title": "77 Sunset Strip", + "originalTitle": "77 Sunset Strip", + "overview": "Stu Bailey and Jeff Spencer are the wisecracking, womanizing private-detective heroes of this Warner Brothers drama. They work out of an office located at 77 Sunset Strip in Los Angeles, California, right next door to a snazzy restaurant where Kookie works as a valet. The finger-snapping, slang-talking Kookie occasionally helps Stu and Jeff with their cases, and eventually becomes a full-fledged member of the detective agency. Rex Randolph and J.R. Hale also join the firm, and Suzanne is their leggy secretary.", + "posterPath": "/3E533YY70yC3upv49XkeDcvd5z0.jpg", + "backdropPath": "/5FrnNiMyQIKeSYRD4hR5b0uRaTF.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1958-10-10", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 22, + "popularity": 4.7758 + }, + { + "id": 5027, + "title": "Baa Baa Black Sheep", + "originalTitle": "Baa Baa Black Sheep", + "overview": "The dramatized World War II adventures of US Major Gregory \"Pappy\" Boyington and his Marine Attack Squadron 214, AKA The Black Sheep Squadron.", + "posterPath": "/u4VN9UMiUfPVgIvtubGQyfrZ581.jpg", + "backdropPath": "/olGfr2re6T9DRjEIqMLtFylGPRm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10768 + ], + "genres": [ + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "1976-09-21", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 42, + "popularity": 4.775 + }, + { + "id": 99969, + "title": "The Sommerdahl Murders", + "originalTitle": "Sommerdahl", + "overview": "A love triangle between Dan Sommerdahl, his wife Marianne Sommerdahl and their best friend Flemming Torp occurs as they try to solves killings in Helsingør.", + "posterPath": "/aFuXiLrcygidkgOFGB2cq2hcvIq.jpg", + "backdropPath": "/dVrKJkcvssTm5oY8Pv4fX1EB6YS.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2020-03-01", + "releaseYear": "2020", + "originalLanguage": "da", + "voteAverage": 5.6, + "voteCount": 25, + "popularity": 4.7742 + }, + { + "id": 115694, + "title": "Shikimori's Not Just a Cutie", + "originalTitle": "可愛いだけじゃない式守さん", + "overview": "Shikimori seems like the perfect girlfriend: cute, fun to be around, sweet when she wants to be… but she has a cool dark side that comes out under the right circumstances. And her boyfriend Izumi loves to be around when that happens!", + "posterPath": "/oHRSx63ilsx0dGg3K8yVPfs4BoA.jpg", + "backdropPath": "/9q69OEoEtpb7NcSZwNFZzF29o0E.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 178, + "popularity": 4.7741 + }, + { + "id": 83062, + "title": "Mocro Maffia", + "originalTitle": "Mocro Maffia", + "overview": "Best friends Romano, Potlood and De Paus rise in the rank of the criminal world. Before they know it, they run Amsterdam's entire coke market. Because of jealousy, their relation becomes complicated and ends up hostile.", + "posterPath": "/iM6tRt7VQ6p6yqnpBkwb8zZmprC.jpg", + "backdropPath": "/52YPN3cHpj5cgCCJrsO1bckoUK5.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10759 + ], + "genres": [ + "Crime", + "Action & Adventure" + ], + "releaseDate": "2018-10-11", + "releaseYear": "2018", + "originalLanguage": "nl", + "voteAverage": 8.4, + "voteCount": 28, + "popularity": 4.7735 + }, + { + "id": 3840, + "title": "The Commish", + "originalTitle": "The Commish", + "overview": "Tony Scali is a former Brooklyn cop now the Police Commissioner of a small upstate city. But for Scali, this is no desk job. He's a tough yet compassionate boss, a loving husband and father, and a hands-on law enforcer with an unorthodox style of bending the rules. From parenthood to politics, from sex crimes to murder cases, one man takes it day-to-day with offbeat humor and street- smart skill.", + "posterPath": "/osvVYFdCtz223oOQmMcoM1N4JGP.jpg", + "backdropPath": "/wNOQcJhGh6e7fBSKoOR8JznbaZL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1991-09-28", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 25, + "popularity": 4.7711 + }, + { + "id": 135959, + "title": "That '90s Show", + "originalTitle": "That '90s Show", + "overview": "Hello, Wisconsin! It's 1995 and Leia Forman, daughter of Eric and Donna, is visiting her grandparents for the summer where she bonds with a new generation of Point Place kids under the watchful eye of Kitty and the stern glare of Red. Sex, drugs and rock 'n roll never dies, it just changes clothes.", + "posterPath": "/nZcufEuqZqNYMx6mNjlh2rmjDqx.jpg", + "backdropPath": "/23WUgvjfnQFNwSPSSG9CdGFnauN.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-01-19", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 192, + "popularity": 4.7704 + }, + { + "id": 45194, + "title": "Dragnet", + "originalTitle": "Dragnet", + "overview": "Police Detective Sgt. Joe Friday and his partners investigate crimes in Los Angeles.", + "posterPath": "/tvozcbojiCAHIFar7kdaGfwSWew.jpg", + "backdropPath": "/k7w3VSy1F4pW5HeoZjk2wn73AXS.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1967-01-12", + "releaseYear": "1967", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 17, + "popularity": 4.769 + }, + { + "id": 283396, + "title": "Juan Gabriel: I Must, I Can, I Will", + "originalTitle": "Juan Gabriel: Debo, puedo y quiero", + "overview": "Rare videos and exclusive interviews reveal the genius, sacrifices and duality between the public and private lives of iconic singer-songwriter Juan Gabriel.", + "posterPath": "/mHj6BA1TWnNRy8OnEkbBiRSYZH9.jpg", + "backdropPath": "/geL62Uzk5yTplLxlNWQoHdLr2UF.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2025-10-30", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 8.469, + "voteCount": 32, + "popularity": 4.7681 + }, + { + "id": 1458, + "title": "Franklin", + "originalTitle": "Franklin", + "overview": "Franklin is an Canadian educational animated television series, based on the Franklin the Turtle books by Brenda Clark and Paulette Bourgeois. The television series was named after its main character, Franklin the Turtle. It was produced by PolyGram Television, Alphanim, LuxAnimation, Nelvana, Neurones Enterprises, Reader's Digest for Young Families, TF1, Funbag Animation Studios, Europool, Mini TFO, and Family Channel, and syndicated by Summit Entertainment.", + "posterPath": "/ep0ol2okz8IB8T0LxhfJMXvJ3Mk.jpg", + "backdropPath": "/yWHVK0Gswv2mH8V7fsJ2wshBJRO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Family" + ], + "releaseDate": "1997-11-03", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 108, + "popularity": 4.7674 + }, + { + "id": 119243, + "title": "iCarly", + "originalTitle": "iCarly", + "overview": "Ten years after signing off of one of TV's most iconic shows, Carly, Spencer, and Freddie are back, navigating the next chapter of their lives, facing the uncertainties of life in their twenties.", + "posterPath": "/tM4P2RNIIFzFJi7UngNVB80sRCp.jpg", + "backdropPath": "/jl1ie3pkBNv0T5dBQeK8CuQvxTM.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2021-06-17", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 798, + "popularity": 4.7644 + }, + { + "id": 60381, + "title": "Mountain Men", + "originalTitle": "Mountain Men", + "overview": "Profiles of some of the men who choose to live off the grid in the unspoiled wilderness, where dangers like mudslides, falling trees and bears are all part of everyday life.", + "posterPath": "/dzlqua6t8yNX4tm0JVgmYaq5j7U.jpg", + "backdropPath": "/do2tZ184MVSc6TxJSakV45bmiHC.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 99 + ], + "genres": [ + "Reality", + "Documentary" + ], + "releaseDate": "2012-05-31", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.536, + "voteCount": 28, + "popularity": 4.7634 + }, + { + "id": 1480, + "title": "Ally McBeal", + "originalTitle": "Ally McBeal", + "overview": "Ally McBeal is a young lawyer working at the Boston law firm Cage and Fish. Ally's lives and loves are eccentric, humorous, dramatic with an incredibly overactive imagination that's working overtime!", + "posterPath": "/weS8htxS2j0EQ6jorK3WOR1dZpH.jpg", + "backdropPath": "/xCMs3IxaGqKSc5cwngRUlhmjbwl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1997-09-08", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.558, + "voteCount": 336, + "popularity": 4.7625 + }, + { + "id": 218833, + "title": "Blue Archive the Animation", + "originalTitle": "ブルーアーカイブ The Animation", + "overview": "The city's academies are divided into their own districts and are considered mostly independent.\n\nThe General Student Council acts as a governing board to manage the academies as a whole. However, the group's ability to govern has come to a halt since the mysterious disappearance of the General Student Council president. Countless issues have begun to surface throughout Kivotos in the absence of the president's leadership.\n\nTo avoid disaster, the General Student Council requests assistance from the Federal Investigation Club, otherwise known as Schale. In fact, Schale is the city's newest club and the last to be approved before the president's disappearance.\n\nTo accomplish its task, Schale relies on the guidance of a Sensei who can help them resolve the incidents around Kivotos.", + "posterPath": "/5RkURIXHgWtCemtDS1Cnp3FIl2R.jpg", + "backdropPath": "/m4A7OiIK4VvBUiTfkBH6dFM2vH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 13, + "popularity": 4.761 + }, + { + "id": 971, + "title": "WKRP in Cincinnati", + "originalTitle": "WKRP in Cincinnati", + "overview": "When a Cincinnati radio station switches from sedate music to top-40 rock 'n' roll, its staff of oddball characters is forced to switch gears quickly. New programming director Andy Travis brings in a new DJ named Venus Flytrap to work with the station's burned-out veteran, Dr. Johnny Fever. Neurotic newsman Les Nessman, eager beaver Bailey Quarters, sleazy salesman Herb Tarlek, blonde bombshell Jennifer Marlowe, who serves as the station's ultra-capable receptionist, and station manager Arthur Carlson, whose domineering mother owns WKRP, round out the eccentric bunch.", + "posterPath": "/dP3eGvgzztqbSr73UDNLh0o35hS.jpg", + "backdropPath": "/w3ihDcCxjbVXPLUY1v4Dwb0OJzj.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1978-09-18", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 85, + "popularity": 4.76 + }, + { + "id": 118821, + "title": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "originalTitle": "世界最高の暗殺者、異世界貴族に転生する", + "overview": "The world's number one assassin has been reincarnated as the eldest son of a family of aristocrat assassins. In exchange for being reincarnated in another world, a goddess has imposed upon him one condition. \"Kill the Hero who is prophesied to destroy the world.\" This was to be the mission in his new life. The synergistic effect of the vast knowledge and experience he gained that made all manner of assassinations possible in the modern world, and the secret techniques and magic of the fantasy world's most powerful family of assassins turn him into the greatest assassin of all time.", + "posterPath": "/iusQCT2pje1Mc8A8LKnW1uZ5BOO.jpg", + "backdropPath": "/aTIE2FOGSl0jFP46kSFc47vUKIp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 276, + "popularity": 4.7586 + }, + { + "id": 16321, + "title": "Casi Ángeles", + "originalTitle": "Casi Ángeles", + "overview": "A group of kids is abused and exploited, but everything changes with Cielo and Nico. A story full of music, songs, choreography and competitions.", + "posterPath": "/udjzwnd0foTPIJUZKW579YCHvb1.jpg", + "backdropPath": "/tVXXPNnNWeoENMRUiVQxvKNWGnr.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 9648, + 10765, + 10766 + ], + "genres": [ + "Comedy", + "Drama", + "Mystery", + "Sci-Fi & Fantasy", + "Soap" + ], + "releaseDate": "2007-03-21", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 7.2, + "voteCount": 25, + "popularity": 4.7586 + }, + { + "id": 63145, + "title": "Charlotte", + "originalTitle": "シャーロット", + "overview": "All thanks to the special ability that he developed, Yuu was able to cheat his way into a very prestigious high school. With his power, he thought nothing was going to stand in his way, until he met a mysterious girl named Nao Tomori and other students with special abilities just like him. It was the beginning to a new life.", + "posterPath": "/k4HvQUklsGE9ii9eBZIN1Y02Iyj.jpg", + "backdropPath": "/4qXkWqX1g9OgsNw2RSDayDcIpeG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.28, + "voteCount": 623, + "popularity": 4.7585 + }, + { + "id": 3793, + "title": "Invader ZIM", + "originalTitle": "Invader ZIM", + "overview": "Zim dreams of greatness. Unfortunately, though, he's hopelessly inept as a space invader. Desperate to be rid of the annoying Zim, his planet's leaders send him on a mission to infiltrate Earth, providing him with leftover, cobbled-together equipment. To their consternation, Zim succeeds in setting up a base on Earth and infiltrating human culture, posing as a human child as he plots the planet's downfall. Only Zim's archnemesis, Dib, recognizes that Zim is an alien, and of course, nobody believes Dib's claims.", + "posterPath": "/h9T3oTwclpHP13BeutA7wQjEC4r.jpg", + "backdropPath": "/kghB6MVN0k0PfEuxf6ZiYg7NJBi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Kids" + ], + "releaseDate": "2001-03-30", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.492, + "voteCount": 439, + "popularity": 4.7553 + }, + { + "id": 275593, + "title": "Ms. Incognito", + "originalTitle": "착한 여자 부세미", + "overview": "A bodyguard hides in a village as a kindergarten teacher to avoid her boss' enemies – but faces a new challenge in a skeptical strawberry farmer!", + "posterPath": "/jG0hr4bvJM1iOEcScgav7zmMF5P.jpg", + "backdropPath": "/aAjm3w7Gnjw7HDe5UQ0BbTec7S2.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-09-29", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.923, + "voteCount": 13, + "popularity": 4.7527 + }, + { + "id": 213439, + "title": "Ohsama Sentai King-Ohger", + "originalTitle": "王様戦隊キングオージャー", + "overview": "There is an ancient prophecy shared amongst the kingdoms of Chikyu- 2,000 years after their fall, the Territorial Empire Bugnarok will once again rise up to kill all humans. However, five kings and their guardian deity, King-Ohger, will stand up to face them. This is the story of kings who will defend Chikyu, as well as a coming-of-age story for one young man who will achieve kingship henceforth.", + "posterPath": "/euSDSrIyUhWbac1tzmg9d3KtmSE.jpg", + "backdropPath": "/tPnTMXXuZ3Ylt4tdmIfN5mtjL9f.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2023-03-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 19, + "popularity": 4.7526 + }, + { + "id": 13895, + "title": "Bat Masterson", + "originalTitle": "Bat Masterson", + "overview": "Bat Masterson is an American Western television series which showed a fictionalized account of the life of real-life marshal/gambler/dandy Bat Masterson. The title character was played by Gene Barry and the half-hour black-and-white shows ran on NBC from 1958 to 1961. The series was produced by Ziv Television Productions, the company responsible for such hit series as Sea Hunt and Highway Patrol.", + "posterPath": "/8OxFU939AMas2yV7fohnYf74dEX.jpg", + "backdropPath": "/3D4K2LdT3MiRlcgsnKlZT9K6CRB.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "1958-10-08", + "releaseYear": "1958", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 14, + "popularity": 4.7523 + }, + { + "id": 33428, + "title": "MAD", + "originalTitle": "MAD", + "overview": "Mad is an American animated sketch comedy series created by Kevin Shinick and produced by Warner Bros. Animation. Based upon the magazine of the same name, each episode is a collection of short animated parodies of television shows, movies, games, celebrities, and other media using various types of animation instead of the usual animation style that Warner Bros. Animation is known for. The series premiered on the evening of September 6, 2010 on Cartoon Network. It has been described as a \"kid-friendly version of Robot Chicken\".", + "posterPath": "/lpMdJzQUD0gXafoFo5L92DNg9QU.jpg", + "backdropPath": "/pb1LLQKETjejzCrlCvrXuI3bEty.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-09-06", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 254, + "popularity": 4.7507 + }, + { + "id": 195780, + "title": "Wedding Agreement: The Series", + "originalTitle": "Wedding Agreement: The Series", + "overview": "On the night of her wedding, Tari suddenly gets served with an agreement from her husband, Bian, stating that their marriage will end after only a year. Bian, whose heart is faithful to his long-term girlfriend Sarah, had only agreed to their arranged marriage to appease his parents' wishes. Tari attempts to win Bian's love.", + "posterPath": "/8HjY3BZTWvaCwBIHimKe7ZR0SQs.jpg", + "backdropPath": "/poaO3YdBsf8lj4TVfzC5iE6gRx7.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-03-25", + "releaseYear": "2022", + "originalLanguage": "id", + "voteAverage": 6.8, + "voteCount": 22, + "popularity": 4.7497 + }, + { + "id": 246862, + "title": "New PANTY & STOCKING with GARTERBELT", + "originalTitle": "New PANTY & STOCKING with GARTERBELT", + "overview": "On the brink between Heaven and Hell lies the town of Daten City, where sinister spirits known as \"Ghosts\" feast upon humanity.", + "posterPath": "/4BreeBRj2yJpqwlMtIlFhd8NI50.jpg", + "backdropPath": "/gy5b64sYb2xsyEESVInfeBE1jcC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9.1, + "voteCount": 21, + "popularity": 4.749 + }, + { + "id": 227371, + "title": "Fake Profile", + "originalTitle": "Perfil falso", + "overview": "Camila meets her Prince Charming through a dating app. After an idyllic romance, she plans to surprise him — only to end up trapped in a false paradise.", + "posterPath": "/3KyyfuG5VxUmpJFnw0pa1SkTsuL.jpg", + "backdropPath": "/7e7GKWe49a8g96KP037PcrGtG6I.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-05-31", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 7.271, + "voteCount": 180, + "popularity": 4.7483 + }, + { + "id": 16870, + "title": "Comedy Club", + "originalTitle": "Камеди Клаб", + "overview": "Comedy Club is a Russian stand-up comedy TV show broadcast by the Russian TNT channel since April 23, 2005. Long-time residents of the club are Garik Martirosyan, Timur Batrutdinov, Garik Kharlamov, Pavel Volya, Alexandr Revva, Alexander Nezlobin and others. The show host is Garik Martirosyan. Comedy Club headquarters are located in Moscow.", + "posterPath": "/tPIbd7JZVxSWNjcJQYEvPu3qo5z.jpg", + "backdropPath": "/csGZ0TL7Nh3HLdBNJhhu8N8sr0b.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-04-23", + "releaseYear": "2005", + "originalLanguage": "ru", + "voteAverage": 6.5, + "voteCount": 24, + "popularity": 4.7474 + }, + { + "id": 81747, + "title": "Tell Me a Story", + "originalTitle": "Tell Me a Story", + "overview": "The world's most beloved fairy tales reimagined as a dark and twisted psychological thriller.", + "posterPath": "/56aw0q12N8ujbcEdCXaLZMfAYXd.jpg", + "backdropPath": "/9X1Lh8DHFPYSgqYkihgfZ3CR1Gv.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-10-31", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 268, + "popularity": 4.747 + }, + { + "id": 102229, + "title": "1994", + "originalTitle": "1994", + "overview": "After the breakdown of the old government, and with it the First Republic, Italy changed for good in 1994. Spinster Leo is all too aware of this. He pushed hard to see Berlusconi get elected Prime Minister. He knows it's not easy to win power, but holding on to it verges on the impossible. By the same token, it seems equally impossible for populist politician Pietro to change. Even now that he has an office at the Prime Minister's premises in Rome, he still can't cast off his old bad habits. Nor can he forget the only woman he has ever loved. A former TV starlet now turned politician and Congresswoman, Veronica has to decide who the man of her life is going to be. She has realized she no longer wants to be just a woman on the arm of powerful men. It is the start of her own push for power.", + "posterPath": "/4TTdhOO0SIU1YJ2uzVlye1gxkyi.jpg", + "backdropPath": "/a2Q2og2N3H8qr5UVuvANZqrRa0M.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-10-04", + "releaseYear": "2019", + "originalLanguage": "it", + "voteAverage": 7.1, + "voteCount": 43, + "popularity": 4.7447 + }, + { + "id": 252649, + "title": "ThamePo: Heart That Skips A Beat", + "originalTitle": "เธมโป้ Heart That Skips a Beat", + "overview": "Feelings bloom and lines blur when a young man documenting the final concert of a popular boy band develops a close bond with the lonely lead singer.", + "posterPath": "/f3TaaVz2EdWXqfAa5RAkk5U8AJV.jpg", + "backdropPath": "/aJW0iLaT7OkOVZoxfdTagIAy2Z2.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-12-13", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 8.95, + "voteCount": 20, + "popularity": 4.7437 + }, + { + "id": 51537, + "title": "Life on Top", + "originalTitle": "Life on Top", + "overview": "Based on a novel by Clara Darling, about a college grad who heads to a big city looking for work and discovers her older sister, who's been living there for years, is a model.", + "posterPath": "/pkl24FjCH9o2THRLebDA0GRD7Dy.jpg", + "backdropPath": "/6bF4iNv06Y0EomDoLGHuy1Y4cUI.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-10-03", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 22, + "popularity": 4.7436 + }, + { + "id": 132908, + "title": "Pedro El Escamoso", + "originalTitle": "Pedro El Escamoso", + "overview": "A charming man moves to the big city and falls for a female executive in this comedic telenovela.", + "posterPath": "/v0DhAsHHiFpMmbe6zWG6F15gh4f.jpg", + "backdropPath": "/dMM9pFclduZN3Jy2757fDcrsNMa.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10766, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Soap", + "Family" + ], + "releaseDate": "2001-08-24", + "releaseYear": "2001", + "originalLanguage": "es", + "voteAverage": 7.625, + "voteCount": 40, + "popularity": 4.7427 + }, + { + "id": 76148, + "title": "Derry Girls", + "originalTitle": "Derry Girls", + "overview": "Amidst the political conflict of Northern Ireland in the 1990s, five secondary school students square off with the universal challenges of being a teenager.", + "posterPath": "/btIm8LOtm2qgHIA2IHmQJvD1Mju.jpg", + "backdropPath": "/aF9sIUIXyIagWy7OftzkgRZ6310.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-01-04", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 351, + "popularity": 4.7405 + }, + { + "id": 203164, + "title": "Strong Girl Nam-soon", + "originalTitle": "힘쎈여자 강남순", + "overview": "Gifted with superhuman strength, a young woman returns to Korea to find her birth family — only to be entangled in a drug case that could test her power.", + "posterPath": "/rjkHORZvB5bnz7kH1PufFCKsX4I.jpg", + "backdropPath": "/6gyJwBbgFD0MYap1AFWQKOkve6D.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10765, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2023-10-07", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.6, + "voteCount": 135, + "popularity": 4.7394 + }, + { + "id": 126248, + "title": "Wounded Heart", + "originalTitle": "Kalp Yarası", + "overview": "Ferit is the cherished heir apparent of one of the well-established families of Antakya. Ayse, on the other hand, is a lively young girl living in Istanbul who has managed to stand on her own feet. Ferit, who is about to marry Hande, the daughter of the Varoglu Family, confronts the facts before the wedding and his world turns upside down.", + "posterPath": "/iEIKOUTTa0yyUWOLeQop8KzG5R4.jpg", + "backdropPath": "/yOXUkHRmWKbPEbUhQvrQ3GKlfSV.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2021-06-28", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 8, + "voteCount": 12, + "popularity": 4.7384 + }, + { + "id": 79434, + "title": "What's Wrong with Secretary Kim", + "originalTitle": "김비서가 왜 그럴까", + "overview": "Lee Young-Joon's family runs a large company and he works as the vice-president of the company. He is smart, rich and handsome, but he is arrogant. His secretary is Kim Mi-So. She has worked for him for years and she is perfect for him, but Kim Mi-So decides to quit her job.", + "posterPath": "/w6muIYgrx1XZFombs3N8owfgLwf.jpg", + "backdropPath": "/kKlzA0owtx63wxpiYxgzSXrx6yz.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-06-06", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 8.3, + "voteCount": 676, + "popularity": 4.7374 + }, + { + "id": 44807, + "title": "Fatmagul", + "originalTitle": "Fatmagül'ün Suçu Ne?", + "overview": "Fatmagül'ün Suçu Ne? is a Turkish television drama series produced by Ay Yapım and broadcast on Kanal D. The series is based on Vedat Türkali's novel, Fatmagül'ün Suçu Ne?, which was made into a film in 1986. The series is written by duo Ece Yörenç and Melek Gençoğlu. The soundtrack was done by Toygar Işıklı.", + "posterPath": "/zRbndORP3qUuIFOxhgPmgEA3Mul.jpg", + "backdropPath": "/skhj97gLnExFLkn4JvYpeYV39d8.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "2010-09-16", + "releaseYear": "2010", + "originalLanguage": "tr", + "voteAverage": 8, + "voteCount": 423, + "popularity": 4.7366 + }, + { + "id": 80729, + "title": "BanG Dream! Girls Band Party!☆PICO", + "originalTitle": "BanG Dream!ガルパ☆ピコ", + "overview": "BanG Dream! Girls Band Party!☆PICO, or simply GARUPA☆PICO, is a mini-anime series featuring the characters from the smartphone game Girls Band Party!", + "posterPath": "/d3NY5DJ4N5vJU1X8yiZ6Uc3jKDO.jpg", + "backdropPath": "/nG8p1q0zh1HgV8OSr9QUWDTvXgi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-07-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 14, + "popularity": 4.7351 + }, + { + "id": 2472, + "title": "The Apprentice", + "originalTitle": "The Apprentice", + "overview": "British version of the reality competitions series that sees young entrepreneurs compete in several business tasks, attempting to survive the weekly firings in order to become the business partner of one of the most successful businessmen.", + "posterPath": "/2GhXaFR3n5OnfBHDATwdXlOeswL.jpg", + "backdropPath": "/fRpAoUzw8PMdOYfXeabEBUY7fFF.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2005-02-16", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 29, + "popularity": 4.7336 + }, + { + "id": 3531, + "title": "The Celebrity Apprentice", + "originalTitle": "The Celebrity Apprentice", + "overview": "The ultimate sixteen-week job interview where eighteen Americans compete in a series of rigorous business tasks, many of which include prominent Fortune 500 companies and require street smarts and intelligence to conquer, in order to show the boss that they are the best candidate for his companies. In each episode, the losing team is sent to the boardroom where they are judged on their performance in the task. One person is fired and sent home.", + "posterPath": "/2iVTag30OjNfVh69hojqFD4BR1G.jpg", + "backdropPath": "/dge0eGJj3vZ5xG4oVysaJO9J5QX.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2004-01-08", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 70, + "popularity": 4.7333 + }, + { + "id": 83295, + "title": "Impure", + "originalTitle": "Impuros", + "overview": "Rio de Janeiro, during the 90's. Evandro dreams about becoming a great businessman, but ends up entering the world of crime and making an empire out of his criminal organization. His business skills and leadership abilities draw the attention of Morello, a federal police officer with a self-destructive behavior who sees in Evandro a worthy enemy. Two strategists that share the love for danger. The hunt down begins.", + "posterPath": "/t6Io2THhCujEKnzaHEt9oiTCzMM.jpg", + "backdropPath": "/9NhIZNHbsyWoTmMhd2c7mG14IMO.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2018-10-19", + "releaseYear": "2018", + "originalLanguage": "pt", + "voteAverage": 7.2, + "voteCount": 43, + "popularity": 4.7329 + }, + { + "id": 45013, + "title": "Wander Over Yonder", + "originalTitle": "Wander Over Yonder", + "overview": "The adventures of Wander, an eternally-optimistic intergalactic traveler and constant do-gooder, and his quick-tempered but loyal steed and best friend, Sylvia. The friendliest face in outer space, Wander journeys across the galaxies to spread good cheer and to help anyone he can — much to his overly pragmatic stallion’s chagrin. Their fun-loving escapades often lead them to clash with the evil villain Lord Hater and his army of Watchdogs, who travel from planet to planet trying to make hate the order of the day. Together, the best friends travel through the cosmos, happening upon one freewheeling adventure after another and making new friends and foes.", + "posterPath": "/ow88KmFUXMb6S4EKOWyTBy8ta7O.jpg", + "backdropPath": "/1Be0q7wRrSADtXTQueGWOggxpEm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35, + 10765 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-09-13", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 92, + "popularity": 4.7325 + }, + { + "id": 219543, + "title": "Creature Commandos", + "originalTitle": "Creature Commandos", + "overview": "Follow the exploits of the Creature Commandos, a secret team of incarcerated monsters recruited for missions deemed too dangerous for humans. When all else fails... they're your last, worst option.", + "posterPath": "/bB3G6Ug1jfsOUptb0RJsqrgMVta.jpg", + "backdropPath": "/y8T8BhptuHFPR0hCGcUSMyUfUfm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-12-05", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.792, + "voteCount": 265, + "popularity": 4.7316 + }, + { + "id": 67549, + "title": "Milo Murphy's Law", + "originalTitle": "Milo Murphy's Law", + "overview": "Milo Murphy is the personification of Murphy’s Law where anything that can go wrong will go wrong. Suffering from Extreme Hereditary Murphy’s Law condition (EHML), Milo always looks to make the best of the cards he’s been dealt and his endless optimism and enthusiasm can turn any catastrophe into a wild adventure. Together, he and his friends will learn that it’s all about a positive attitude and not to sweat the big stuff… and it’s all big stuff.", + "posterPath": "/cUoMoeOm2ALLtPrbP4WwEzj4lO3.jpg", + "backdropPath": "/qqYXPgDiYtcjaTGQ6l6BfWtVjNK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Family", + "Comedy" + ], + "releaseDate": "2016-10-03", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 91, + "popularity": 4.7306 + }, + { + "id": 120155, + "title": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "originalTitle": "史上最強の大魔王、村人Aに転生する", + "overview": "In his past life, he was known as Demon Lord Varvatos, an all-powerful magic user and ruler. But he was lonely after the loss of his friends and loved ones during his rise to power, so in his dying moments, Varvatos cast a reincarnation spell so that he'd get a second chance at just being a normal guy. At first it looks like that's going to work – he's reborn thousands of years later as villager Ard. Unfortunately for him, his memories are still intact and he's not aware just how much has been lost over the time he spent not existing, and it looks like that's going to cost him his normal life.", + "posterPath": "/dtULGP3qRi932NzYGsp7u6q6zAS.jpg", + "backdropPath": "/7PqkW8dr5WV6VcU3UeWOlx0cQP8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 88, + "popularity": 4.7273 + }, + { + "id": 219, + "title": "Kyle XY", + "originalTitle": "Kyle XY", + "overview": "A suburban family that takes in a mysterious teen naive to the world around him. As Kyle begins to show signs of brilliance, solving the mystery of his origin and potential abilities becomes the family's mission.", + "posterPath": "/4omwjf3HgGx4nZXcA0Avmd9bQny.jpg", + "backdropPath": "/gHZ0m4CVV64GROPLBy8iQOJy0Dr.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2006-06-26", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.044, + "voteCount": 365, + "popularity": 4.7264 + }, + { + "id": 61628, + "title": "World Trigger", + "originalTitle": "ワールドトリガー", + "overview": "A gate to another world opens in Mikado City, and monsters called Neighbors emerge. It's up to Border Defense agent Osamu Mikumo to fight them.", + "posterPath": "/lchqxvVvOeSfkpuvVAIxaDm8Mth.jpg", + "backdropPath": "/q4zS5BRgypeMcF6ui3pxWgn0ABn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 46, + "popularity": 4.7253 + }, + { + "id": 62428, + "title": "Saint Seiya: Soul of Gold", + "originalTitle": "聖闘士星矢 黄金魂 -soul of gold-", + "overview": "Transcending eternity, the 12 Gold Saints return to protect love and peace on Earth! They gave their lives to destroy the Wailing Wall to break the way for Seiya and the Saints in their battle against Hades in the Underworld! Though presumed to have perished, Aiolia and the other Gold Saints return to the beautiful earthly world of radiating luminescence! Why have these lost souls been brought back to life? Shrouded in this deep mystery, Aiolia becomes embroiled in a duel. When he burns his Cosmo to its limit…the Cloth of Leo transforms! In 2015, the Golden Cosmo is finally revived!", + "posterPath": "/3IhGGHp8ek5ZQZ53kuIJsaXzlJC.jpg", + "backdropPath": "/javXvHa9sBIZhv1gVMjCPT0mVbo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2015-04-11", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.999, + "voteCount": 749, + "popularity": 4.7245 + }, + { + "id": 9103, + "title": "Kimagure Orange Road", + "originalTitle": "きまぐれオレンジ☆ロード", + "overview": "Kyosuke Kasuga, fifteen, moves to a new city and falls for Madoka Ayukawa. She's friendly when they're alone, but acts like a delinquent when in front of others. Kyosuke meanwhile struggles not to break the heart of Hikaru Hiyama, who fell in love after seeing him make an impossible basketball shot. To add the cherry to this particular sundae, Kyosuke and his family (sisters, grandfather, and cousins) all have various powers. And while Kyosuke's desperate to keep those powers a secret, his younger sisters (among others) aren't quite as concerned about it.", + "posterPath": "/spa4vqIguULjaWpXmjmVGcAfWDt.jpg", + "backdropPath": "/e1LFeXUc7cFZ844OIt7x6Gr4cna.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1987-04-06", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 28, + "popularity": 4.7245 + }, + { + "id": 62823, + "title": "Scream: The TV Series", + "originalTitle": "Scream: The TV Series", + "overview": "What starts as a YouTube video going viral, soon leads to problems for the teenagers of Lakewood and serves as the catalyst for a murder that opens up a window to the town's troubled past. Everyone has secrets. Everyone tells lies. Everyone is fair game.", + "posterPath": "/cTRUcUnAydqboYfis0IhhY1edDt.jpg", + "backdropPath": "/gCo9Vcare7WQBKYsAn5rOAcFnP8.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2015-06-30", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.872, + "voteCount": 1139, + "popularity": 4.7239 + }, + { + "id": 88358, + "title": "Wisting", + "originalTitle": "Wisting", + "overview": "Empathetic, meticulous and relentless - the only thing to escape Larvik detective William Wisting in his hunt for Norway's most notorious criminals is a happy family life. And when two mysterious deaths interrupt Wisting's Christmas, it is the beginning of a showdown with the deadliest killer of them all.", + "posterPath": "/Ac9S0Y7yHSM39F7CAs1dNIjlcAp.jpg", + "backdropPath": "/qChLazsKTDqMnJlY5T35yHUg6fV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2019-04-11", + "releaseYear": "2019", + "originalLanguage": "no", + "voteAverage": 7.067, + "voteCount": 104, + "popularity": 4.7236 + }, + { + "id": 4603, + "title": "Faerie Tale Theatre", + "originalTitle": "Faerie Tale Theatre", + "overview": "A live-action children's television anthology series retelling popular fairy tales.", + "posterPath": "/5pKkikAvKfyiAmxwkw1HHb2z2Za.jpg", + "backdropPath": "/3aNOOw4jZwv2gqwDqlZLqaAvOyr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10765, + 35 + ], + "genres": [ + "Drama", + "Family", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1982-09-11", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 23, + "popularity": 4.7227 + }, + { + "id": 214994, + "title": "Bitch X Rich", + "originalTitle": "청담국제고등학교", + "overview": "Kim Hye-in has to transfer to Cheongdam International High School after witnessing a murder. She crosses paths with Baek Je-na, a bully who happens to be connected to the case.", + "posterPath": "/gigYIx6DCgs9cFmvFEXTBo2Zwkm.jpg", + "backdropPath": "/t2fl4Po0H38ZYwzPboTTXhQ6v3Y.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2023-05-31", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.4, + "voteCount": 29, + "popularity": 4.7208 + }, + { + "id": 147050, + "title": "Disclaimer", + "originalTitle": "Disclaimer", + "overview": "When an intriguing novel appears at the bedside of a journalist whose career has been built on revealing transgressions, she is horrified to realize she's a key character in a long-buried story—one that exposes her darkest secret.", + "posterPath": "/6TdW4T2EsnhXrPQccB8szK93UhF.jpg", + "backdropPath": "/j7HEQlQoWA2weOR7jS1h5YbsEvM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2024-10-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 247, + "popularity": 4.7202 + }, + { + "id": 113720, + "title": "My Better Half", + "originalTitle": "Sol Yanım", + "overview": "The drama series follows the story of a mother and her young daughter, Serra, as they try to get used to their new life in an ordinary neighborhood after falling from grace.\n\nSerra, who is learning to stand on her own two feet, will encounter Selim, the heir of the rich and powerful Kutlusoy family, and sparks will definitely fly.", + "posterPath": "/lDDLShl0WYUdwDTgI1zVlliEViN.jpg", + "backdropPath": "/i3UxDwbnAzTmayjkOLppEKewAxg.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-11-26", + "releaseYear": "2020", + "originalLanguage": "tr", + "voteAverage": 9.1, + "voteCount": 16, + "popularity": 4.7177 + }, + { + "id": 6060, + "title": "Kyunki... Saas Bhi Kabhi Bahu Thi...", + "originalTitle": "क्योंकि सास भी कभी बहू थी", + "overview": "A mother-in-law's struggle to put up with her three bahu's. The three bahu's have grown up sons. The bahu's sons start to get involved with having girlfriends and the bahu's try and break their relationships up.", + "posterPath": "/dfthWcPV9G4zMjAWUhyVZXlXN2.jpg", + "backdropPath": "/gwXnESfjDqop3tDLoGxSwCUP8GD.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 10766 + ], + "genres": [ + "Drama", + "Family", + "Soap" + ], + "releaseDate": "2000-07-03", + "releaseYear": "2000", + "originalLanguage": "hi", + "voteAverage": 3, + "voteCount": 11, + "popularity": 4.7171 + }, + { + "id": 4662, + "title": "Close to Home", + "originalTitle": "Close to Home", + "overview": "Close to Home is an American crime drama television series co-produced by Warner Bros. Television and Jerry Bruckheimer Television for CBS.", + "posterPath": "/2XEPUdSWPqPcH7DZraHAAIYwJ5L.jpg", + "backdropPath": "/bvxS3yWjijgZxyRbwBihn9W6vQq.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2005-09-20", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 20, + "popularity": 4.7157 + }, + { + "id": 127588, + "title": "Love, Reason, Get Even", + "originalTitle": "Aşk Mantık İntikam", + "overview": "A couple gets divorced after several years of marriage. After that, the man suddenly gets rich, and life changes again when his ex-wife starts working with him.", + "posterPath": "/yL6PorZ5VuOlg5RK0SFzayem52V.jpg", + "backdropPath": "/kWLUwqkkq3nrmNSBZqdmylZl731.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-06-18", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 8.6, + "voteCount": 26, + "popularity": 4.7156 + }, + { + "id": 194774, + "title": "Vermeil in Gold", + "originalTitle": "金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "overview": "Rather than take a more sensible approach to salvaging his grades in time for graduation, Alto summons a bit of otherworldly help. Only after does he learn he’s bound the legendary she-devil Vermeil into service as his familiar!", + "posterPath": "/bwAVzmeSKCCQbwixsuhADX5u6j7.jpg", + "backdropPath": "/a9Y9xwkrqE4vOK12qfZejZXgDjb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 92, + "popularity": 4.715 + }, + { + "id": 87491, + "title": "DC Super Hero Girls", + "originalTitle": "DC Super Hero Girls", + "overview": "The world may know them as Wonder Woman, Supergirl and Batgirl, but not-so-typical teenagers Diana, Kara and Barbara, alongside their Super Hero friends have much more to deal with than just protecting Metropolis from some of the most sinister school-aged Super-Villains. After all, being teens is tough enough, what with school, friends, family and the chaos that comes with managing a social life. But add super powers and a secret identity to the mix, and things can get a lot more complicated.", + "posterPath": "/sjjyQ0OKUnUTzJpLi5CDOzZCE88.jpg", + "backdropPath": "/7JEEoYSAn7kG7dveImqCBVEK3UI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10751, + 10765, + 10762, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Family", + "Sci-Fi & Fantasy", + "Kids", + "Comedy" + ], + "releaseDate": "2019-03-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.894, + "voteCount": 175, + "popularity": 4.7131 + }, + { + "id": 79093, + "title": "Star Wars Resistance", + "originalTitle": "Star Wars Resistance", + "overview": "Kazuda Xiono, a young pilot for the Resistance, is tasked with a top secret mission to investigate the First Order, a growing threat in the galaxy.", + "posterPath": "/xul6SG8rar3wkHPY8YusUtxcdlZ.jpg", + "backdropPath": "/Ad2y46YKP2u81bsR4axajbbJKwS.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2018-10-07", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 163, + "popularity": 4.7122 + }, + { + "id": 235355, + "title": "Resident Playbook", + "originalTitle": "언젠가는 슬기로울 전공의생활", + "overview": "First-year OBGYN residents at Yulje Medical Center navigate the chaos of their work and personal lives, all in their quest to become exceptional doctors.", + "posterPath": "/bB5Tu1Rzq6guKsMhV59aszN9c0a.jpg", + "backdropPath": "/rLizgs2rieC2IMIZPbgguICrZZm.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-04-12", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.936, + "voteCount": 39, + "popularity": 4.712 + }, + { + "id": 135840, + "title": "Our Blues", + "originalTitle": "우리들의 블루스", + "overview": "Romance is sweet and bitter — and life riddled with ups and downs — in multiple stories about people who live and work on bustling Jeju island.", + "posterPath": "/sT5Mlt5UmKiGfBisccwmD4LnPRD.jpg", + "backdropPath": "/v7tP30lhgEs3QwJhkrTRW6eHwXV.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-04-09", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.6, + "voteCount": 66, + "popularity": 4.7074 + }, + { + "id": 254993, + "title": "Embrace in the Dark Night", + "originalTitle": "我们在黑夜中相拥", + "overview": "Wen Xi is drawn into an underground fight club and becomes the prize for champion Xu Zheqing, who is secretly a security consultant tasked with saving her. Three years later, after her twin sister’s mysterious death, Wen Xi assumes her sister’s identity at a company, where she reunites with Xu. Now on opposite sides, can they reconcile their feelings and uncover the truth?", + "posterPath": "/dGBg7KKsNRNzeVeKePrgwfKw1m5.jpg", + "backdropPath": "/bKLWC6ppultOZk0qPyYGWRqoQNm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 9648 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2024-08-06", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.74, + "voteCount": 25, + "popularity": 4.7072 + }, + { + "id": 115678, + "title": "As If", + "originalTitle": "Gibi", + "overview": "Yılmaz and İlkkan are two friends who are constantly fighting each other. Their biggest feature is always being able to do things that will turn their ordinary lives upside down. They magnify small events incredibly and give you a nervous breakdown. They are the embodiment of the misfortunes, strange events and despair we experience every day.", + "posterPath": "/y1uhSlwcjuzOTxviRDqiMkExnVv.jpg", + "backdropPath": "/p7VgbdDN2LK41JTavzJ9x3i4ktE.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2021-01-01", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 8.551, + "voteCount": 69, + "popularity": 4.7055 + }, + { + "id": 228853, + "title": "The Prince", + "originalTitle": "Prens", + "overview": "Following the death of the king, the youngest and least loved royal son -- known simply as “Prince” -- assumes the throne in the Kingdom of Bongomia.", + "posterPath": "/kgiEixCPFs4W8HTwvfIPqVqkQCk.jpg", + "backdropPath": "/88DMFlyPDuyUeFrUDswbWSV2CQg.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-06-16", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 8.435, + "voteCount": 46, + "popularity": 4.704 + }, + { + "id": 220801, + "title": "Fool Me Once", + "originalTitle": "Fool Me Once", + "overview": "When ex-soldier Maya sees her murdered husband on a secret nanny cam, she uncovers a deadly conspiracy that stretches deep into the past.", + "posterPath": "/Ertv4WLEyHgi8zN4ldOKgPcGAZ.jpg", + "backdropPath": "/v9OgLxYCq5newNdtF8dQAFENs4l.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2024-01-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.147, + "voteCount": 411, + "popularity": 4.7037 + }, + { + "id": 46671, + "title": "The Future Diary", + "originalTitle": "未来日記", + "overview": "Reality quickly unravels when antisocial Yukiteru is called into a death match against 11 other mentally scarred individuals. Each player has a prophetic device tuned to their personality, giving them control over their future—and the fate of their foes.", + "posterPath": "/5MxOVu9eItgGZh4AQrtAnbZIsJr.jpg", + "backdropPath": "/eziTZNETERfYgflR9RENyy5QhSo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2011-10-09", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.581, + "voteCount": 449, + "popularity": 4.7026 + }, + { + "id": 64710, + "title": "Noragami", + "originalTitle": "ノラガミ", + "overview": "Hiyori Iki is a normal middle school student until she was involved in a bus accident while trying to protect a stranger. This incident causes her soul to frequently slip out of her body, and she becomes aware of the existence of two parallel worlds. Through her soul, she meets the strange, nameless god without a shrine, Yato. Yato is determined to make a name for himself out there by accepting any wishes for 5 yen, including Hiyori's to fix her body.", + "posterPath": "/5hb8qfoPKQMlLfuhZcbcXwCRVEd.jpg", + "backdropPath": "/n5J23cWQW4FUWhifL530qEkstFY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-01-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.229, + "voteCount": 659, + "popularity": 4.7025 + }, + { + "id": 70484, + "title": "Britannia", + "originalTitle": "Britannia", + "overview": "An epic drama set in 43AD as the Roman Imperial Army – determined and terrified in equal measure - returns to crush the Celtic heart of Britannia - a mysterious land ruled by warrior women and powerful druids who can channel the powerful forces of the underworld. Or so they say.", + "posterPath": "/fjdXymXAas9NSehc6GCOHQcEM05.jpg", + "backdropPath": "/9I27ONgKUNlboFFT35el1MZYKnN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-01-18", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 214, + "popularity": 4.7005 + }, + { + "id": 66149, + "title": "The Powerpuff Girls", + "originalTitle": "The Powerpuff Girls", + "overview": "Three colorful, sugarcoated kids trying to juggle school and save the world before bedtime.", + "posterPath": "/n8M0tl1V2QYRLbs3hPQfJgQgTgT.jpg", + "backdropPath": "/1FkQNRA0O5j4s6bW8iHp1sWqFSk.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10759, + 10762, + 10751 + ], + "genres": [ + "Comedy", + "Animation", + "Action & Adventure", + "Kids", + "Family" + ], + "releaseDate": "2016-04-04", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 81, + "popularity": 4.7 + }, + { + "id": 157769, + "title": "The No Man Zone", + "originalTitle": "Два холма", + "overview": "The year is 2140. Society has undergone profound change and is now run as a matriarchy, thus removing its reliance on men. Two Hills is one of the communities founded by this new order. It is a place of perfection, where there is harmony rather than conflict, science and reason prevail and the environment is protected and respected. One of its inhabitants is the history teacher, Rada. On her birthday she takes her students on a guided tour of a special area outside of Two Hills, a place where the so-called “primates” live. The \"primates\" are men (and a handful of women) who have chosen to live beyond female control. However, the tranquillity of Rada’s perfectly arranged female-centric world comes under threat when she meets the young \"primate\", Hera. It’s a classic girl-meets-boy story, in a world where the rules have fundamentally changed.", + "posterPath": "/nrJe7ndAoZ8obw2fUlG4oLhX2sh.jpg", + "backdropPath": "/ixFXZMJwtXavPFiIAOTqxRHkNW7.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-28", + "releaseYear": "2022", + "originalLanguage": "ru", + "voteAverage": 7.556, + "voteCount": 45, + "popularity": 4.6969 + }, + { + "id": 216082, + "title": "Zero Day", + "originalTitle": "Zero Day", + "overview": "A former U.S. President is called out of retirement to find the source of a deadly cyberattack, only to discover a vast web of lies and conspiracies.", + "posterPath": "/odIyR46aAX59dvQ1ON4P53ow1aE.jpg", + "backdropPath": "/t4JPNpET4aEmMA4Fg7Bfc7tI6jQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2025-02-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.967, + "voteCount": 380, + "popularity": 4.6966 + }, + { + "id": 300894, + "title": "Kurukshetra", + "originalTitle": "Kurukshetra", + "overview": "An epic 18-day battle unfolds through the perspectives of 18 warriors, revealing their inner struggles and ethical challenges during a war between brothers.", + "posterPath": "/amNFukSD0hpj5omLkikfaNw42sp.jpg", + "backdropPath": "/u39VepT8l7cgDy9nsXG76t4av9n.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 16 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Animation" + ], + "releaseDate": "2025-10-10", + "releaseYear": "2025", + "originalLanguage": "hi", + "voteAverage": 8.762, + "voteCount": 21, + "popularity": 4.6953 + }, + { + "id": 43078, + "title": "Miss Fisher's Murder Mysteries", + "originalTitle": "Miss Fisher's Murder Mysteries", + "overview": "Our lady sleuth sashays through the back lanes and jazz clubs of late 1920’s Melbourne, fighting injustice with her pearl handled pistol and her dagger sharp wit. Leaving a trail of admirers in her wake, our thoroughly modern heroine makes sure she enjoys every moment of her lucky life. Based on author Kerry Greenwood's Phryne Fisher Murder Mystery novels.", + "posterPath": "/AeHJVpoWWKtCyFIZ6LbLkAR52vz.jpg", + "backdropPath": "/hX3IxzUc6EUh0PG1mCpCfnuK7ul.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2012-02-24", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.654, + "voteCount": 162, + "popularity": 4.695 + }, + { + "id": 113360, + "title": "Jimihen!! Jimiko o Kae Chau Jun Isei Kouyuu", + "originalTitle": "じみへんっ!!~地味子を変えちゃう純異性交遊~", + "overview": "The story follows Rena Yukuhasahi, a reserved office lady and Ryouhei Hachiya, a businessman and fellow colleague. Yukuhasahi appears to be the most reserved girl in the company, but becomes a super beautiful woman when she dresses up. Flustered in the presence of her transformed self, Hachiya insists on taking her out, only to find themselves in front of a love hotel.", + "posterPath": "/to5FshluwPdO9d3Ucs7fagJL7OU.jpg", + "backdropPath": "/kPO4rsDkSwmGMRDejvLAel8FafA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-01-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.292, + "voteCount": 24, + "popularity": 4.6939 + }, + { + "id": 93166, + "title": "The Capture", + "originalTitle": "The Capture", + "overview": "When soldier Shaun Emery's conviction for a murder in Afghanistan is overturned due to flawed video evidence, he returns to life as a free man with his young daughter. But when damning CCTV footage from a night out in London comes to light, Shaun's life takes a shocking turn and he must soon fight for his freedom once again.", + "posterPath": "/bCuTIRmnd6eBNZ9oBBQ2KAtErid.jpg", + "backdropPath": "/nU5ZeZZ9iV5c9orHBOgkYiGM4DM.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2019-09-03", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 266, + "popularity": 4.6939 + }, + { + "id": 2294, + "title": "China Beach", + "originalTitle": "China Beach", + "overview": "Dateline: November 1967. Within klicks of Danang, Vietnam, sits a U.S. Army base, bar and hospital on China Beach filled with wounded soldiers and one very lovely but damaged Army Nurse Colleen McMurphy. Many heroes, dead and alive, try to make sense of life and death in between bourbon, bullets and battles.", + "posterPath": "/hAHjHqh9b31xljMxSc6PBet3a1X.jpg", + "backdropPath": "/cQsSW2uuh802aVCJx5HR9Y9FovX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "1988-04-26", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 32, + "popularity": 4.6911 + }, + { + "id": 91557, + "title": "Ragnarok", + "originalTitle": "Ragnarok", + "overview": "A small Norwegian town experiencing warm winters and violent downpours seems to be headed for another Ragnarök -- unless someone intervenes in time.", + "posterPath": "/37p95Lpe7mfVX86ZcVr7TisAHPn.jpg", + "backdropPath": "/wu444tM9YBllq9UcBv5TeidO3j3.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2020-01-31", + "releaseYear": "2020", + "originalLanguage": "no", + "voteAverage": 7.8, + "voteCount": 1093, + "popularity": 4.6887 + }, + { + "id": 238711, + "title": "Lost in Love", + "originalTitle": "Sakla Beni", + "overview": "Mete and Naz are the favorite children of rich and powerful families. Both of them are spoiled and used to getting everything they want in life. Their story, which started with the promise of their families in their childhood, flows towards marriage today with their inability to break away from each other. But when Naz's maid İncila, who has been with him since childhood, suddenly appears in front of Mete, Mete questions all the decisions he has made in life. Will this encounter between İncila and Mete change the direction of the story Naz wrote with all her stubbornness and help Mete find true love?", + "posterPath": "/pEAJzdBhrjZ3Q9Ix6LBIYGH6Sqm.jpg", + "backdropPath": "/xLXFPtKfbf3xVswKNaAtTrRRDgp.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-11-02", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 6.333, + "voteCount": 18, + "popularity": 4.6885 + }, + { + "id": 32697, + "title": "Harry's Law", + "originalTitle": "Harry's Law", + "overview": "Harriet, Matthew and Malcolm couldn't be any more different, but when they cross paths, they realize they're all looking for a fresh start. The most unlikely of people are starting a law practice in the most unlikely of places -- a rundown shoe store.", + "posterPath": "/agFM2SKoUYgAFz2YiRhfva8hdDU.jpg", + "backdropPath": "/slZLirUAduYaPxmoDzTIq4K9vkZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2011-01-17", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.31, + "voteCount": 43, + "popularity": 4.687 + }, + { + "id": 75, + "title": "Two Guys and a Girl", + "originalTitle": "Two Guys and a Girl", + "overview": "This story revolves around the lives of three teenagers, Berg, Pete and Sharon and how their lives are entwined. It further deals with the bonds they share with each other.", + "posterPath": "/ulm7wLxyxDNO8kEe12oTM5efWfb.jpg", + "backdropPath": "/4xQf8p7jjf1BW4zs8jlituUrvbr.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1998-03-10", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 151, + "popularity": 4.6848 + }, + { + "id": 7017, + "title": "Laredo", + "originalTitle": "Laredo", + "overview": "Laredo is an American Western television series that aired on NBC from September 16, 1965, to April 7, 1967. Laredo stars Neville Brand, William Smith, Peter Brown, and Philip Carey as Texas Rangers. It is set on the Mexican border about Laredo, Texas. The program was produced by Universal Television.\n\nThe pilot episode of Laredo aired on NBC's The Virginian under the title, \"We've Lost a Train\". It was released theatrically in 1969 under the title Backtrack. Three episodes from the first season of the series were edited into the 1968 feature film Three Guns for Texas.", + "posterPath": "/maqeHrvQNhIzR8UmQyS11pq4EpB.jpg", + "backdropPath": "/qfoyo1B96KsK3PhZbHSvopF851l.jpg", + "mediaType": "tv", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1965-09-16", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 13, + "popularity": 4.683 + }, + { + "id": 1087, + "title": "Serial Experiments Lain", + "originalTitle": "serial experiments lain", + "overview": "Lain—driven by the abrupt suicide of a classmate—logs on to the Wired and promptly loses herself in a twisted mass of hallucinations, memories, and interconnected-psyches.", + "posterPath": "/2eAPjPjkkiF10vOiHjECRIDXqtd.jpg", + "backdropPath": "/nFSFdAn8freV16fmSC9rKggXzDl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "1998-07-06", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.222, + "voteCount": 588, + "popularity": 4.6826 + }, + { + "id": 3956, + "title": "Who Do You Think You Are?", + "originalTitle": "Who Do You Think You Are?", + "overview": "A British genealogy documentary series in which celebrities trace their ancestry, discovering secrets and surprises from their past.", + "posterPath": "/v7vzsmEDVDzUgEuiMAMRdyh0abW.jpg", + "backdropPath": "/csZAN2mTQgmNmRyTARfnqJa47QM.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10751 + ], + "genres": [ + "Documentary", + "Family" + ], + "releaseDate": "2004-10-12", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 24, + "popularity": 4.681 + }, + { + "id": 130372, + "title": "Doogie Kamealoha, M.D.", + "originalTitle": "Doogie Kamealoha, M.D.", + "overview": "Lahela 'Doogie' Kamealoha, a 16-year-old prodigy juggles a budding medical career and life as a teenager. With the support of her caring and comical 'ohana (family) and friends, Lahela is determined to make the most of her teenage years and forge her own path.", + "posterPath": "/qS9NwCJDPnHWtJbgiFmpc8T90tP.jpg", + "backdropPath": "/xjxKYSGycoUQWZ9OUr2Ou6kyIhy.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 35 + ], + "genres": [ + "Drama", + "Family", + "Comedy" + ], + "releaseDate": "2021-09-08", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 200, + "popularity": 4.6807 + }, + { + "id": 2312, + "title": "The Jamie Foxx Show", + "originalTitle": "The Jamie Foxx Show", + "overview": "Texas native Jamie King is an aspiring actor who heads to Hollywood in hopes to find fame and fortune in the entertainment industry. To support himself, he works at his Aunt Helen and Uncle Junior's Los Angeles hotel, the King's Towers.", + "posterPath": "/75rRmOm7jfGdxhYeg36mgnetYJS.jpg", + "backdropPath": "/ePTYK7g0nyDAVzgjQZ3JuTVxfGg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1996-08-28", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.855, + "voteCount": 31, + "popularity": 4.6795 + }, + { + "id": 44256, + "title": "The Adventures of the Mole", + "originalTitle": "O krtkovi", + "overview": "Created by Czech director and animator Zdeněk Miler in 1956, Krtek, or The Mole in English, was an international hit with children. Because the cartoons were presented with no dialogue, Krtek was held to no national boundaries.\n\nMilers daughter voiced the noises and grunts that Krtek made, and gave Miler the feedback from a child's perspective he needed to keep his stories focus on his young fans.", + "posterPath": "/tkuoiW7Q8iOHBckBEePhwV8SVLI.jpg", + "backdropPath": "/4lQuc92U8irlFtJOCXoHp8P5EA8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1957-09-13", + "releaseYear": "1957", + "originalLanguage": "cs", + "voteAverage": 8, + "voteCount": 65, + "popularity": 4.678 + }, + { + "id": 1082, + "title": "Red Shoe Diaries", + "originalTitle": "Red Shoe Diaries", + "overview": "Jake takes out an ad in the newspaper after the suicide of his unfaithful fiancée, in an effort to understand the reasons for the betrayal. By soliciting the secret diaries of other women, he hopes to find some reconciliation with the truth.", + "posterPath": "/ko7HHjQSMSz0lcYtRSFOX2EWdSj.jpg", + "backdropPath": "/cLVLLUs01kNyZcgDeonL8YaAgO8.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1992-06-27", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 31, + "popularity": 4.6771 + }, + { + "id": 208067, + "title": "My Love Story with Yamada-kun at Lv999", + "originalTitle": "山田くんとLv999の恋をする", + "overview": "Recently dumped, Akane is just about to quit the game she used to play with her boyfriend, when she meets Yamada in the same RPG. Yamada in real life turns out to be somewhat of a legend. The only problem is - he is ONLY interested in the game. As Akane's feelings grow, will Yamada's focus stay on the game?", + "posterPath": "/6RTMDyXZpzACsSg5AcRSUHMO8m2.jpg", + "backdropPath": "/4U5cJTbXBzW1WxDUZErqU3VNNWl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 160, + "popularity": 4.6731 + }, + { + "id": 216272, + "title": "Unnamed Memory", + "originalTitle": "Unnamed Memory", + "overview": "Climbing a deadly tower, Oscar seeks the power of its master, the Witch of the Azure Moon. He hopes her incredible magic can break a curse that will kill any woman he takes for a wife. However, when the prince sees how beautiful Tinasha is, he has a better idea—since she's surely strong enough to survive his curse, she should just marry him instead! Tinasha isn't keen on the idea but agrees to live with Oscar in the royal castle for a year while researching the spell placed on the prince. The witch's pretty face hides several lifetimes of dark secrets, however—secrets that begin resurfacing.", + "posterPath": "/tvrc6PfamASdvp334FYUrViR3Hp.jpg", + "backdropPath": "/coZ81U0aSjT0jOrE5CI7HsyBdeY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.074, + "voteCount": 47, + "popularity": 4.6726 + }, + { + "id": 30667, + "title": "The George Burns and Gracie Allen Show", + "originalTitle": "The George Burns and Gracie Allen Show", + "overview": "Burns and Allen, an American comedy duo consisting of George Burns and his wife, Gracie Allen, worked together as a comedy team in vaudeville, films, radio and television and achieved great success over four decades.", + "posterPath": "/kvCVEK1AeNTBbY5OREw2YdRa9bF.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1950-10-12", + "releaseYear": "1950", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 18, + "popularity": 4.6721 + }, + { + "id": 93785, + "title": "Barbarians", + "originalTitle": "Barbaren", + "overview": "Three people's fates are interwoven in the Battle of the Teutoburg Forest in 9 A.D., during which Germanic warriors halt the spread of the Roman Empire.", + "posterPath": "/r3cUaeLUGT8c0YIR8qCDDH2iJSU.jpg", + "backdropPath": "/iU955nBcsc5Zr5e31eWU2xKVqHk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2020-10-23", + "releaseYear": "2020", + "originalLanguage": "de", + "voteAverage": 7.288, + "voteCount": 633, + "popularity": 4.6717 + }, + { + "id": 126929, + "title": "Welcome to Wrexham", + "originalTitle": "Welcome to Wrexham", + "overview": "Documentary series tracking the dreams and worries of Wrexham, a working-class town in North Wales, UK, as two Hollywood stars (Rob McElhenney and Ryan Reynolds) take ownership of the town’s historic yet struggling football club.", + "posterPath": "/53CNogAzbbwepLxQS5jIfGG35MQ.jpg", + "backdropPath": "/dA6innktqCBLE1kpGW1W1XGaRd0.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2022-08-24", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.762, + "voteCount": 152, + "popularity": 4.6699 + }, + { + "id": 1915, + "title": "The Larry Sanders Show", + "originalTitle": "The Larry Sanders Show", + "overview": "Comic Garry Shandling draws upon his own talk show experiences to create the character of Larry Sanders, a paranoid, insecure host of a late night talk show. Larry, along with his obsequious TV sidekick Hank Kingsley and his fiercely protective producer Artie, allows Garry Shandling and his talented writers to look behind the scenes and to show us a convincing slice of behind the camera life.", + "posterPath": "/qMRVylcs6y2naOp7s6RIawELTAL.jpg", + "backdropPath": "/adRpPvoZwWXazuBx6hx5U1V6JNi.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1992-08-15", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 86, + "popularity": 4.6678 + }, + { + "id": 1566, + "title": "All of Us", + "originalTitle": "All of Us", + "overview": "Robert James, an entertainment reporter for a local Los Angeles television station, is handsome, smart and thoroughly modern in his thinking. Recently divorced from the somewhat self-absorbed Neesee, the mother of their endearing 6-year-old son, Robert refuses to buy into the old stereotype that being divorced means you can't get along with the ex.", + "posterPath": "/5ydBzxhOhJKI8sGtYKuMP7wEele.jpg", + "backdropPath": "/l6RgKNzSlGQmCNDDqshk5qszQlA.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2003-09-16", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 24, + "popularity": 4.6657 + }, + { + "id": 49546, + "title": "Our People", + "originalTitle": "Bizimkiler", + "overview": "Bizimkiler (Ours, Our People) was a Turkish drama, represented the lives of the people shared the same neighborhood. It is one of the longest-running series in Turkish television drama history.", + "posterPath": "/3Px2e9XgpOhhofAUUT9NRmrARvq.jpg", + "backdropPath": "/2Hfw1JfHMNNMu5vkszd6zelShnw.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "1989-01-07", + "releaseYear": "1989", + "originalLanguage": "tr", + "voteAverage": 8.318, + "voteCount": 22, + "popularity": 4.6623 + }, + { + "id": 47318, + "title": "Graceland", + "originalTitle": "Graceland", + "overview": "In Southern California, a beachfront property was seized and turned into a residence for undercover cops. They are all top agents of the DEA, FBI, and Customs and they are living in this house unofficially known as \"Graceland\". Coming of a new graduating at the top of his class, FBI rookie, Mike Warren, could make the life of a legendary FBI agent Paul Briggs and the others, more complicated or it could reveal the truth. It is based upon actual events.", + "posterPath": "/oX3Hp4snTJH1chqnC8La0MkJJlZ.jpg", + "backdropPath": "/YrBlOwPEYAbOiNhd2VulRhTqqM.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2013-06-06", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.164, + "voteCount": 131, + "popularity": 4.6616 + }, + { + "id": 12822, + "title": "The Octopus", + "originalTitle": "La Piovra", + "overview": "An epic crime saga of power, money, violence and corruption. The mafia controls everything through local and international networks like an octopus, and anyone who tries to bring them down pays the ultimate price.", + "posterPath": "/2gLLftWX1ecorSXq2jBMosQAcKx.jpg", + "backdropPath": "/bE8ArAxpwIRfQXHX6zEaUzoSPOV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1984-03-11", + "releaseYear": "1984", + "originalLanguage": "it", + "voteAverage": 7.8, + "voteCount": 56, + "popularity": 4.6591 + }, + { + "id": 37471, + "title": "Nura: Rise of the Yokai Clan", + "originalTitle": "ぬらりひょんの孫", + "overview": "Rikuo Nura, is 3 parts human and a quarter Demon, lives in a house of spirits with his grandfather, The current clan head of the Nura youkai. Rikuo is set to be the next clan head, despite the fact he dislikes his demon side. He soon come to terms with his demon blood and decides to take his position as young master of the Nura house. However there are those who will certainly not allow it to be easy.", + "posterPath": "/qHY5y8pQiIIJfXeko7t9JTqA32p.jpg", + "backdropPath": "/dIc8YQrs3fRbB7b9pGzgTqDMnpJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2010-07-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 89, + "popularity": 4.6581 + }, + { + "id": 74018, + "title": "The Legend of the Galactic Heroes: Die Neue These", + "originalTitle": "銀河英雄伝説 Die Neue These", + "overview": "Caught in a 150-year-long war, interstellar nations reach the pinnacle of strategic combat at the hands of two genius leaders. Reinhard of the Galactic Empire, and Yang of the Free Planets Alliance lead the charge from opposing fronts. Fighting is their destiny, but in this vast universe torn by political intrigue, their greatest enemy may not be each other.", + "posterPath": "/aOXYjnJqGYIELPEMg1shcPXBbhj.jpg", + "backdropPath": "/8SqEzhSAo53mn4gITdlrCUAKcCg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10768, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "War & Politics", + "Drama" + ], + "releaseDate": "2018-03-31", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 75, + "popularity": 4.6564 + }, + { + "id": 228878, + "title": "Common Side Effects", + "originalTitle": "Common Side Effects", + "overview": "Former high school lab partners Marshall and Frances begin to unravel a conspiracy involving big pharma and the federal government to suppress knowledge of a rare mushroom that may hold the key to curing all the world’s diseases.", + "posterPath": "/a8X5XXP49DHrySTXJMUIN5HI1Wz.jpg", + "backdropPath": "/4drV6iluttgjZmU1Q0xDqjrBQ1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-02-02", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8.404, + "voteCount": 209, + "popularity": 4.6537 + }, + { + "id": 5615, + "title": "Engine Sentai Go-Onger", + "originalTitle": "炎神戦隊ゴーオンジャー", + "overview": "The Barbaric Machine Clan “Gaiark” was exiled from the Machine World by the Engines, who are huge machines that have their own will. With the exile, the Gaiark switched their target to the world of humans and attacked to pollute the Earth in order to make it more habitable for them. This is when three young individuals with hearts of justice stand up as Go-Ongers.", + "posterPath": "/bHcrJjOR59vm87r2RFYRrcDxkDp.jpg", + "backdropPath": "/9ifgcsYIRgVyoROUpWpefP7dBAV.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 10759, + 10762 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2008-02-17", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 19, + "popularity": 4.653 + }, + { + "id": 203178, + "title": "Not Dead Yet", + "originalTitle": "Not Dead Yet", + "overview": "Nell Serrano is a broke and newly single self-described disaster. She works to restart the life and career she left behind some 10 years ago. When writing obituaries is the only job she can find, Nell starts getting life advice from an unlikely (and dead) source.", + "posterPath": "/i8QXtqpE5bCQHuSj7e2tRt6HdTK.jpg", + "backdropPath": "/ymZZtP9Ylt9t72nIACpINQ020co.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-02-08", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.99, + "voteCount": 99, + "popularity": 4.6517 + }, + { + "id": 10382, + "title": "The Joy of Painting", + "originalTitle": "The Joy of Painting", + "overview": "The Joy of Painting was an American television show hosted by painter Bob Ross that taught its viewers techniques for landscape oil painting. Although Ross could complete a painting in half an hour, the intent of the show was not to teach viewers \"speed painting\". Rather, he intended for viewers to learn certain techniques within the time that the show was allotted. The show began on January 11, 1983, and lasted until May 17, 1994, a year before Ross' death.", + "posterPath": "/ydK7b8zyuD36OTK2tcDS97ik96A.jpg", + "backdropPath": "/mMBSu3N2oyPbLXiOoItVapRcRLX.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 99 + ], + "genres": [ + "Family", + "Documentary" + ], + "releaseDate": "1983-01-11", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 57, + "popularity": 4.6506 + }, + { + "id": 86588, + "title": "Hightown", + "originalTitle": "Hightown", + "overview": "Amid the drug trade on Cape Cod, a body washes ashore and is discovered by an irreverent National Marine Fisheries Service officer, Jackie Quinones, who is determined to help solve the murder even if the state cops want her nowhere near the case.", + "posterPath": "/69hornrvpKWIzBMCNzsVTZOggOw.jpg", + "backdropPath": "/ztVsNaFGpStklljabuaPBdHpEii.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2020-05-17", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 104, + "popularity": 4.6501 + }, + { + "id": 72462, + "title": "Free Rein", + "originalTitle": "Free Rein", + "overview": "A 15-year-old from LA spends the summer at her mom's childhood home on an island off the coast of England, where she bonds with a mysterious horse.", + "posterPath": "/wqyFaf0nuthVW914JbZHaWLp6Ds.jpg", + "backdropPath": "/nxin1UEwN0WqYQOmUwMaLnzmYY0.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10762, + 18 + ], + "genres": [ + "Family", + "Kids", + "Drama" + ], + "releaseDate": "2017-06-22", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.891, + "voteCount": 206, + "popularity": 4.6492 + }, + { + "id": 97727, + "title": "Inside Job", + "originalTitle": "Inside Job", + "overview": "For employees of the Deep State, conspiracies aren't just theories — they're fact. And keeping them a secret is a full-time job.", + "posterPath": "/qwJUDMJ4i3KBYjeUFK9Js87iJEa.jpg", + "backdropPath": "/133OYaLU9ebhxY1aYCAmzx5q1ZJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2021-10-22", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.12, + "voteCount": 918, + "popularity": 4.6479 + }, + { + "id": 61969, + "title": "Angie Tribeca", + "originalTitle": "Angie Tribeca", + "overview": "Lone-wolf detective Angie Tribeca and a squad of committed LAPD detectives investigate the most serious cases, from the murder of a ventriloquist to a rash of baker suicides.", + "posterPath": "/xi6gGST5L7FiUiYDPifHGtzl3zG.jpg", + "backdropPath": "/abPpGpwh7lpbNJxmut4hSEPTZfk.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 80 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2016-01-17", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.391, + "voteCount": 138, + "popularity": 4.6472 + }, + { + "id": 4568, + "title": "Pepper Ann", + "originalTitle": "Pepper Ann", + "overview": "The quirky adventures of Pepper Ann, a 12-year-old girl trying to get through life with her family and friends.", + "posterPath": "/605jNVI63jueuJTKg032F7U7xEj.jpg", + "backdropPath": "/58F1asSb9dnPr1yDeVxfi4Aenei.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1997-09-13", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.641, + "voteCount": 39, + "popularity": 4.6462 + }, + { + "id": 34158, + "title": "Magic Knight Rayearth", + "originalTitle": "魔法騎士レイアース", + "overview": "Three young girls, Hikaru, Umi, and Fuu, are transported to a magical world called Cephiro during a field trip to Tokyo Tower. They are soon greeted by Master Mage Clef, who explains to them that they have been summoned to become the Legendary Magic Knights and save Cephiro. The girls are less than enthusiastic about this idea, and only want to return home. Clef further explains that they must seek out the three Rune Gods to help them fight. He bestows armor and magical powers to each of them. They learn from Clef that High Priest Zagato has kidnapped the Pillar of Cephiro, Princess Emeraude. The Pillar of Cephiro has the sole responsibility of keeping Cephiro alive and in balance with her prayers. Without Princess Emeraude, Cephiro would fall into ruin. Hikaru, Umi, and Fuu must fight off Zagato's henchman and find the Rune Gods if they ever want to get back home. They soon learn that friendship and loyalty are the only things they can rely on in the crumbling Cephiro.", + "posterPath": "/pm3hODqtNDLqucDVvakky8FrhMx.jpg", + "backdropPath": "/mVya8Yf5BV8wBLXXAremnzHumAK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "1994-10-17", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 8.413, + "voteCount": 206, + "popularity": 4.643 + }, + { + "id": 212766, + "title": "New Saga", + "originalTitle": "強くてニューサーガ", + "overview": "After a brutal war, magic swordsman Kyle defeats the Demon King but is left dying. A crimson crystal sends him four years into the past to his once-destroyed hometown where he finds his lost loved ones alive. Armed with future knowledge, Kyle vows to prevent the coming tragedy and rewrite fate.", + "posterPath": "/dmZ74VyWi3I8ZqJ1m3Fmcc1etgp.jpg", + "backdropPath": "/u9p6IIYllP8gwZB2URx08jIYdvZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 4.6418 + }, + { + "id": 4623, + "title": "The Emperor's New School", + "originalTitle": "The Emperor's New School", + "overview": "It's about Kuzco, a self-centered and spoiled teen who must survive the trials of Incan public school and pass all of his classes so that he can officially become Emperor. His friend Malina keeps his attitude in check, while the evil Yzma (cleverly disguised as Principal Amzy) and her dim-witted sidekick Kronk are out to make sure Kuzco fails.", + "posterPath": "/g1TlTdWPcofNIklBdInaJFp7NkF.jpg", + "backdropPath": "/hibm0a7FMZcVHfskLowF5xLuqtp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Kids", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-01-27", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 156, + "popularity": 4.6409 + }, + { + "id": 99080, + "title": "Peter Grill and the Philosopher's Time", + "originalTitle": "ピーター・グリルと賢者の時間", + "overview": "Upon winning a fighting tournament and being crowned the world’s strongest warrior, Peter Grill discovers a downside to his newfound fame. Women of all species, from ogres to elves, are scrambling over each other for his seed to ensure they have the strongest babies possible. Poor Peter just wants to settle down with his lovey dovey fiancée, but he’ll have to outmatch, outwit, and outrun a harem of very determined monster girls to do so!", + "posterPath": "/4Gf6ugUPhcw0x0GadVByoFtATL6.jpg", + "backdropPath": "/otxnF5SsC3aicquF1jTeYI377g1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.945, + "voteCount": 235, + "popularity": 4.6404 + }, + { + "id": 226687, + "title": "All Elite Wrestling: Collision", + "originalTitle": "All Elite Wrestling: Collision", + "overview": "An in-ring show featuring more wrestlers, more stories and more action to super-serve fans.", + "posterPath": "/3BjRrrvmL9TuiOfvvKgeHDURuuW.jpg", + "backdropPath": "/rTZobV5hHeytu9ymS0aJPmXThvO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-06-17", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.357, + "voteCount": 15, + "popularity": 4.6395 + }, + { + "id": 260471, + "title": "Shifting Gears", + "originalTitle": "Shifting Gears", + "overview": "Matt is a stubborn, widowed owner of a classic car restoration shop. When Matt's estranged daughter Riley and her teenage kids move into his house, the real restoration begins.", + "posterPath": "/tZnI8fWCtmJ9doCYSJwoJBITBiV.jpg", + "backdropPath": "/mDJgsLw4ZNkIRhXySfHr7hDyMXK.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-01-08", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.283, + "voteCount": 54, + "popularity": 4.6374 + }, + { + "id": 10151, + "title": "The Jack Benny Program", + "originalTitle": "The Jack Benny Program", + "overview": "Laugh along with funnyman Jack Benny as he brings his underplayed humor to TV along with regular performers from his radio show days.", + "posterPath": "/iwXBIb8zWPpt916UoOiYBPigbEI.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1950-10-28", + "releaseYear": "1950", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 16, + "popularity": 4.6367 + }, + { + "id": 45815, + "title": "Brazil Avenue", + "originalTitle": "Avenida Brasil", + "overview": "Brazil Avenue is a dynamic, lifelike, and modern telenovela that reveals how unrelenting ambition and inflicted cruelty can change a young girl’s destiny and lead her to seek revenge.\n\n", + "posterPath": "/3wH4kZ0hdoizAcgqCgp3gUD1fFq.jpg", + "backdropPath": "/5ssgDp28z1Nif6hR8OFrNQUspd4.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 9648, + 80 + ], + "genres": [ + "Soap", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2012-03-26", + "releaseYear": "2012", + "originalLanguage": "pt", + "voteAverage": 8.1, + "voteCount": 1286, + "popularity": 4.6359 + }, + { + "id": 51828, + "title": "Dicte", + "originalTitle": "Dicte", + "overview": "Newly divorced journalist returns to her hometown to restart her life and work through her past.", + "posterPath": "/uDJ1wQtvJhlRVkAnc1hTNjriemE.jpg", + "backdropPath": "/rk0OEhCP1qhk9SFNSeWxPXDRzEe.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2013-01-07", + "releaseYear": "2013", + "originalLanguage": "da", + "voteAverage": 6.967, + "voteCount": 45, + "popularity": 4.6341 + }, + { + "id": 206693, + "title": "My Dearest", + "originalTitle": "연인", + "overview": "A love-story between a noblewoman and a mysterious man who shows up in her hometown set in the 1600s during the Qing invasion.", + "posterPath": "/d00uWx8T84ZRsguQTqITl3HnFJO.jpg", + "backdropPath": "/3MkrzqX1jog9ItFux72MvYyYfuT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2023-08-04", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.116, + "voteCount": 44, + "popularity": 4.634 + }, + { + "id": 13667, + "title": "MTV Movie & TV Awards", + "originalTitle": "MTV Movie & TV Awards", + "overview": "The annual film & TV awards show presented by MTV. The nominees are decided by producers and executives at MTV with winners decided online by the general public.", + "posterPath": "/lPsSVqXFott193XjMpBS2qNsdWw.jpg", + "backdropPath": "/zu2vKWoIwdLN8raXNDASmTpawi6.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "1992-06-10", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 8.1, + "voteCount": 13, + "popularity": 4.6337 + }, + { + "id": 70626, + "title": "Stranger", + "originalTitle": "비밀의 숲", + "overview": "Hwang Shi Mok underwent brain surgery as a child to curb his violent temper, which left him devoid of emotions. Hwang becomes a prosecutor known for his piercing intelligence and logic, but he is ostracized because he lacks empathy and social skills. He is also one of only a handful of upright prosecutors who have refused to take bribes. One day, he encounters a stabbing victim while investigating corruption. He meets Lieutenant Han Yeo Jin at the crime scene. They join forces to root out corruption at the prosecutors’ office and solve a serial murder case.", + "posterPath": "/blbbtx7DyvZ3JTGyc9MCArDL79b.jpg", + "backdropPath": "/4jY17xSgcZT9WodpXtnjVAJjSba.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2017-06-10", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 8.3, + "voteCount": 188, + "popularity": 4.6336 + }, + { + "id": 5299, + "title": "Life Goes On", + "originalTitle": "Life Goes On", + "overview": "Life Goes On is a television series that aired on ABC from September 12, 1989, to May 23, 1993. The show centers on the Thatcher family living in suburban Chicago: Drew, his wife Elizabeth, and their children Paige, Rebecca, and Charles, who is known as Corky. Life Goes On was the first television series to have a major character with Down syndrome.", + "posterPath": "/6a27QlSY2oC87OGX48lUp0J9SiK.jpg", + "backdropPath": "/1yhDGIPEvWRqrMUy2Dj38PK1RyP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "1989-09-12", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 27, + "popularity": 4.6333 + }, + { + "id": 158646, + "title": "Is It Cake?", + "originalTitle": "Is It Cake?", + "overview": "Skilled cake artists create mouthwatering replicas of handbags, sewing machines and more in a mind-bending baking contest inspired by a popular meme.", + "posterPath": "/nDohKinqCX0EudNNstxYWI730jI.jpg", + "backdropPath": "/moFIug9RURNnlGybDkUBsmdSJ8f.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2022-03-18", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.923, + "voteCount": 52, + "popularity": 4.6328 + }, + { + "id": 98986, + "title": "Uzaki-chan Wants to Hang Out!", + "originalTitle": "宇崎ちゃんは遊びたい!", + "overview": "Shinichi Sakurai’s one wish is for a little peace and quiet. But Hana Uzaki — his boisterous, well-endowed underclassman — has other plans. All she wants is to hang out and poke fun at him. With the help of her chipper charm and peppy persistence, this might just be the start of a beautiful relationship!", + "posterPath": "/kg7PD9mqKUlJulKTeHzVwHAKqqR.jpg", + "backdropPath": "/c8Z2eI5PK3agXAhlNpyIFuYJXfx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-07-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.302, + "voteCount": 975, + "popularity": 4.6284 + }, + { + "id": 1974, + "title": "The Bob Newhart Show", + "originalTitle": "The Bob Newhart Show", + "overview": "The Bob Newhart Show is an American situation comedy produced by MTM Enterprises, which aired 142 original episodes on CBS from September 16, 1972, to April 1, 1978. Comedian Bob Newhart portrays a psychologist having to deal with his patients and fellow office workers. The show was filmed before a live audience.", + "posterPath": "/cPI10fZ2c896h5pAc1oP6TrOW0G.jpg", + "backdropPath": "/vE6yzGzNqQdjdOFw48C41a4pF5j.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1972-09-16", + "releaseYear": "1972", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 60, + "popularity": 4.6249 + }, + { + "id": 5281, + "title": "Bakuryu Sentai Abaranger", + "originalTitle": "爆竜戦隊アバレンジャー", + "overview": "The meteorite believed to have once killed off the dinosaurs actually rattled the Earth into two parallel universes — Another Earth and Dino Earth, where dinosaurs continued to thrive. Now they have evolved into the Saurians, a race of humanoid dinosaurs, and the Bakuryu , a race of mechanized dinosaurs. But the wall between our universes has been breached. The Evolians that have been at war with the Saurians and Bakuryu have invaded, and it's up to the Abarangers to protect the world!", + "posterPath": "/oKvauf15zNdThK2HqhG4cBe4b2C.jpg", + "backdropPath": "/gbY5crvWFNCRgME9fu05kddHhXH.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 35, + 10762 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "2003-02-16", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 18, + "popularity": 4.6242 + }, + { + "id": 74321, + "title": "Will & Grace", + "originalTitle": "Will & Grace", + "overview": "That’s right, honey! A decade after their unforgettable eight-season run, comedy’s most fabulous foursome is back.", + "posterPath": "/iRsgY1TRNTccltEGk9V9wNqqKOx.jpg", + "backdropPath": "/aqQQaeMQZF4nobKYi3W1QshRfGE.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-09-28", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.523, + "voteCount": 88, + "popularity": 4.6241 + }, + { + "id": 194567, + "title": "The Lazarus Project", + "originalTitle": "The Lazarus Project", + "overview": "George wakes up to find himself several months in the past before being recruited for the Lazarus Project – a secret organization that turns back time when the world is at threat of extinction.", + "posterPath": "/xw7GkWtmPQDU8qzfKshFEN038sj.jpg", + "backdropPath": "/jFLhBues4pdhj2zEIkwDxhGdkcb.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2022-06-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 200, + "popularity": 4.6187 + }, + { + "id": 13674, + "title": "Mobile Suit Zeta Gundam", + "originalTitle": "機動戦士Zガンダム", + "overview": "Universal Century 0087, 7 years have passed since the end of the One Year War between the Earth Federation and the Principality of Zeon. The Earth Federation has created an elite task force, known as the Titans, who are responsible for hunting the remaining Zeon forces. However, the power-hungry Titans have spurred the creation of a rebellious faction called the Anti-Earth Union Group (AEUG).", + "posterPath": "/2KXINVDQqBgKIZAed7Ncz15TAq8.jpg", + "backdropPath": "/zK1OaOHgl7dNAE1sKEMXatu2I1s.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10768, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "War & Politics", + "Drama" + ], + "releaseDate": "1985-03-02", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 38, + "popularity": 4.6186 + }, + { + "id": 133174, + "title": "All the Queen's Men", + "originalTitle": "All the Queen's Men", + "overview": "Marilyn \"Madam\" DeVille is at the top of her game in the Atlanta nightclub industry, and she won't let anyone or anything stand her in way as she rules a crew of male exotic dancers.", + "posterPath": "/eXswCm8rvJUQbU89ihb0CQVJGpS.jpg", + "backdropPath": "/dt75jPUtDiY7sZpQaNoFKv3zkv.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-09-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.552, + "voteCount": 67, + "popularity": 4.6165 + }, + { + "id": 7283, + "title": "Los Serrano", + "originalTitle": "Los Serrano", + "overview": "Los Serrano is a Spanish television drama comedy which premiered on 22 April 2003 and aired on Telecinco. It tells the story of the Serrano family, who lives in Round Santa Justa No 133, located in the fictional neighborhood of Santa Justa, in the Ribera del Manzanares, in Madrid. The success of the series in Spain and in several other countries in Europe and elsewhere helped launch the career of several young actors and actresses, especially actor and musician Fran Perea, who acts in the series and sings its theme song, \"1 más 1 son 7\".", + "posterPath": "/w9hPecVLyCkbnJLLdjFu67URBZP.jpg", + "backdropPath": "/nXmxvy4VyiaYVVINJYARSD3CTLi.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 18 + ], + "genres": [ + "Comedy", + "Family", + "Drama" + ], + "releaseDate": "2003-04-22", + "releaseYear": "2003", + "originalLanguage": "es", + "voteAverage": 6.589, + "voteCount": 45, + "popularity": 4.6158 + }, + { + "id": 5459, + "title": "Don't Mess with the Angel", + "originalTitle": "Cuidado con el Ángel", + "overview": "Cuidado Con El Ángel is a Telenovela distributed by Televisa starring Maite Perroni and William Levy. The telenovela, a production of Nathalie Lartilleux, premiered on June 9, 2008 and finished its broadcast March 6, 2009. It had millions of viewers worldwide, and broke records in America.", + "posterPath": "/8lVsyvIfxEDYUfZTZ3weIwQCu6j.jpg", + "backdropPath": "/6GVjKfxBrPBLEKWebRxDzsHHMgO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2008-06-09", + "releaseYear": "2008", + "originalLanguage": "es", + "voteAverage": 7.5, + "voteCount": 483, + "popularity": 4.6158 + }, + { + "id": 23936, + "title": "The Wonderful World of Disney", + "originalTitle": "The Wonderful World of Disney", + "overview": "Walt Disney Productions (later The Walt Disney Company) has produced an anthology television series under several different titles since 1954. The original version of the series premiered on ABC in 1954. The show was broadcast weekly on one of the Big Three television networks until 1990, a 36-year span with only a two-year hiatus in 1984-85. The series was broadcast on Sunday for 25 of those years. From 1991 until 1997, the series aired infrequently. The program resumed a regular schedule in 1997 on the ABC fall schedule, coinciding with Disney's recent purchase of the network. From 1997 until 2008, the program aired regularly on ABC. Subsequently, ABC continued the series as an occasional special presentation.", + "posterPath": "/liQIvgYvnNwqjV6MvnFzvlXJNL2.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 10751 + ], + "genres": [ + "Animation", + "Family" + ], + "releaseDate": "1997-09-28", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 27, + "popularity": 4.6142 + }, + { + "id": 63452, + "title": "Wer weiß denn sowas?", + "originalTitle": "Wer weiß denn sowas?", + "overview": "", + "posterPath": "/abKjah96esLWObidBcWmvKJv61E.jpg", + "backdropPath": "/d5Kf4bAu1GMQ2PHViKCGtnbYdTx.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10751 + ], + "genres": [ + "Reality", + "Family" + ], + "releaseDate": "2015-07-06", + "releaseYear": "2015", + "originalLanguage": "de", + "voteAverage": 7.6, + "voteCount": 12, + "popularity": 4.6136 + }, + { + "id": 68726, + "title": "SashaTanya", + "originalTitle": "СашаТаня", + "overview": "Sasha and Tanya have graduated and moved out of the dormitory. They now live with their son Alyosha in their own two-room apartment in the Moscow suburb of Yuzhnoe Butovo. And, boy, are their neighbors ever weird.", + "posterPath": "/q85NuQyxMlwq4QhWfuT0ZPcAUa.jpg", + "backdropPath": "/fYzzKjM5ee1TxCcEybajZxLEB8o.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2013-06-03", + "releaseYear": "2013", + "originalLanguage": "ru", + "voteAverage": 5.9, + "voteCount": 24, + "popularity": 4.6134 + }, + { + "id": 39249, + "title": "Wilsberg", + "originalTitle": "Wilsberg", + "overview": "Georg Wilsberg is an antiquarian in Münster. He used to be a lawyer but lost his license. Since then he has been working as a private detective. The always clammy Wilsberg urgently needs this income. In addition, he depends on the support of his friends, especially because of the car.", + "posterPath": "/jJrTBO049FLoPhDNB0YZTetkX87.jpg", + "backdropPath": "/l9CJh1u4JtWGzNTNJgg6He2yrLL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1995-02-20", + "releaseYear": "1995", + "originalLanguage": "de", + "voteAverage": 7.8, + "voteCount": 22, + "popularity": 4.6129 + }, + { + "id": 68878, + "title": "La Doña", + "originalTitle": "La Doña", + "overview": "A story of revenge and ambition, seduction and betrayal; all told from the perspective of an offended and abused woman named Altagracia. Altagracia represents the hundreds of thousands of Mexican women who have been victims of the violence by faceless men who are protected by impunity. But Altagracia, transformed into a strong-willed, ruthless man-eater known as La Doña, will seek out each and every one of these men to bring them to justice.", + "posterPath": "/xPe11sREBZIPUB1SnwckuElru1h.jpg", + "backdropPath": "/tVuvFG14yhypkP1zdFjfx3BJTCO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2016-11-29", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 7.374, + "voteCount": 631, + "popularity": 4.6106 + }, + { + "id": 200707, + "title": "The Escape of the Seven", + "originalTitle": "7인의 탈출", + "overview": "The mysterious disappearance of a girl brings together seven people from all different walks of life. They all have an intertwined connection to her disappearance in the most horrific, unfathomable, and despicable way. As money drives them to their greed, lies, and delirium, they face divine retribution as they struggle for their lives in a picturesque revenge. How far will they go to claim their innocence, and will anyone make it out alive?", + "posterPath": "/gVx3QEJ7ShVXdJJdWIYmTgwplXi.jpg", + "backdropPath": "/6ohqTb4r9AdW5hRD6r5Aa7W3Ddq.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2023-09-15", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 6.9, + "voteCount": 26, + "popularity": 4.6101 + }, + { + "id": 9051, + "title": "La mujer en el espejo", + "originalTitle": "La mujer en el espejo", + "overview": "La Mujer en el Espejo is the title of a Colombian telenovela that first aired in Colombia in 1997 and was later remade & aired again in Colombia in 2004 by Telemundo.", + "posterPath": "/55mTUGuoj3r8xOf3pTqWGpHorm4.jpg", + "backdropPath": "/mPbu3mRRDuQU1Z3DULM6XRyz9ds.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2004-12-07", + "releaseYear": "2004", + "originalLanguage": "es", + "voteAverage": 7.136, + "voteCount": 381, + "popularity": 4.6097 + }, + { + "id": 67570, + "title": "Love Doesn't Understand Words", + "originalTitle": "Aşk Laftan Anlamaz", + "overview": "Hayat is a country girl with strict parents. She is in a love hate relationship with her boss Murat. Hayat is full of secrets that can ruin her career and relationship.", + "posterPath": "/krSdiuUrsqka7FFtaqjxEqC0bE9.jpg", + "backdropPath": "/nWNH4OTbiZTxqfPOgSYI2U17aCJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-06-15", + "releaseYear": "2016", + "originalLanguage": "tr", + "voteAverage": 8.4, + "voteCount": 36, + "popularity": 4.6063 + }, + { + "id": 112836, + "title": "Money Heist: Korea - Joint Economic Area", + "originalTitle": "종이의 집: 공동경제구역", + "overview": "Disguised under the shadows of a mask, a crew of desperados band together under the leadership of a criminal mastermind known only as “The Professor” to pull off the biggest heist Korea has ever seen.", + "posterPath": "/bnfTPTTytrZZ9Aw6hoOQdojiaKo.jpg", + "backdropPath": "/lcTuggU70y6pt6x13Rv1Ffjs93K.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2022-06-24", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 7.735, + "voteCount": 699, + "popularity": 4.6055 + }, + { + "id": 34284, + "title": "The Only Way Is Essex", + "originalTitle": "The Only Way Is Essex", + "overview": "Part soap opera, part reality show, TOWIE follows the lives, loves and scandals of a group of real-life Essex guys and girls. Cameras capture the happenings at all kinds of glamorous locations as the cast meet up in nail bars, nightclubs and salons. Each episode features action filmed just a few days previously.", + "posterPath": "/n6hnIR4HSSIF9xLsZyY8N29tQN4.jpg", + "backdropPath": "/h2LEazhlBqEB8N4R1KKlHYCm7YR.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2010-10-10", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 23, + "popularity": 4.6025 + }, + { + "id": 205072, + "title": "Beyond Paradise", + "originalTitle": "Beyond Paradise", + "overview": "After leaving paradise and seeking a quieter life, Humphrey has taken a job as Detective Inspector in his fiancée Martha's hometown. But with the high crime rate, maybe things will be louder than expected.", + "posterPath": "/eec5dch6bq7ftKnvWGFTOZiK38k.jpg", + "backdropPath": "/zlFXtd5UxmtgWfP5mxDYaaYAO3v.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2023-02-24", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.558, + "voteCount": 44, + "popularity": 4.6015 + }, + { + "id": 246992, + "title": "Sirens", + "originalTitle": "Sirens", + "overview": "Worried about her sister's too-close relationship with her billionaire boss, a scrappy everywoman seeks answers at a lavish seaside estate.", + "posterPath": "/mezbwX9gFWTXl0XiicS5ZMcdXVx.jpg", + "backdropPath": "/nFOufr0IvCtMLyTleHOrtyj0htv.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-05-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.795, + "voteCount": 129, + "popularity": 4.5999 + }, + { + "id": 106524, + "title": "MIU404", + "originalTitle": "MIU404", + "overview": "The Mobile Investigative Unit (known as \"MIU\") of the Tokyo Metropolitan Police Department attempts to solve cases within 24 hours. Detective Kazumi Shima is selected as a new member of MIU. He is intelligent, with excellent observation and communication skills. Yet, he does not trust other people. He is unable to find a partner in MIU and is ordered to partner with Police Officer Ai Ibuki, who works at a police substation. Ibuki applied for MIU, but he failed. He is in excellent physical condition, but he lacks knowledge and experience as a detective. Shima learns about Ibuki's background and he becomes more nervous. Finally, Shima has his first meeting with Ibuki.", + "posterPath": "/xOdguozUF1UGtpT4j9BJ1zSR6ZX.jpg", + "backdropPath": "/4Y1qgUiDLBWlkS7SiXHTWak5ucy.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2020-06-26", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 23, + "popularity": 4.599 + }, + { + "id": 83708, + "title": "Stellar Transformation", + "originalTitle": "星辰变", + "overview": "In a galaxy far away, there is a kid without innate ability to practice internal techniques. So, in order to gain the respect of his father, he resolutely chooses to follow the more difficult and painful path of practicing external techniques. As the years go by, he grows up, but what really changes his life is a mysterious meteoric crystal stone – the Meteoric Tear. This stone fuses with the young man’s body unnoticed, and he seems to undergo drastic transformations as a result. After that, everything is changed. Eventually his father knows that the son for whom he hasn’t really shown a lot of consideration possesses astonishing abilities. And there’s a lot more to come.", + "posterPath": "/i5l3cYbXYOlHWabtyexmVafxuL8.jpg", + "backdropPath": "/ebFJAugBWQyOgZsFSNQrfIF27uC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 7.615, + "voteCount": 13, + "popularity": 4.5987 + }, + { + "id": 126723, + "title": "My Dear Guardian", + "originalTitle": "爱上特种兵", + "overview": "A story that follows a warm and gentle military medic and the 'ice mountain' military officer as they fulfill their duties and also find love.", + "posterPath": "/pokhvXqTYbC824ExXJ4LaUhMChw.jpg", + "backdropPath": "/7tuYjHKUINkjx7sFJpPUezKmyC4.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-06-01", + "releaseYear": "2021", + "originalLanguage": "zh", + "voteAverage": 7, + "voteCount": 13, + "popularity": 4.5911 + }, + { + "id": 61859, + "title": "The Night Manager", + "originalTitle": "The Night Manager", + "overview": "Former British soldier Jonathan Pine navigates the shadowy recesses of Whitehall and Washington where an unholy alliance operates between the intelligence community and the secret arms trade. To infiltrate the inner circle of lethal arms dealer Richard Onslow Roper, Pine must himself become a criminal.", + "posterPath": "/hdCC5N42cXERbzIn6ED7oqTKtkq.jpg", + "backdropPath": "/86Lac0EmcXyKM40MC9yjRHI62hk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2016-02-21", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.761, + "voteCount": 1126, + "popularity": 4.5902 + }, + { + "id": 66078, + "title": "Twin Star Exorcists", + "originalTitle": "双星の陰陽師", + "overview": "Rokuro is from a family of exorcists, but he'd rather be a singer, a soccer player or anything but an exorcist! He's forced to own up to his own incredible potential when new arrival Benio stirs his competitive spirit. But their rivalry gets a twist when they earn the prestigious title of \"Twin Star Exorcists\"—two supreme fighters fated to marry and birth the ultimate spiritual warrior!", + "posterPath": "/dbGtsHEuV8zREyMEXmf5YFtUZyL.jpg", + "backdropPath": "/3maf3FaLAq31NaoKy1lje4LvuK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.43, + "voteCount": 359, + "popularity": 4.5888 + }, + { + "id": 10472, + "title": "Austin City Limits", + "originalTitle": "Austin City Limits", + "overview": "Now the longest-running music series in American television history, ACL showcases popular music legends and innovators from every genre.", + "posterPath": "/q5jxpBFJvwMeqMI7Rg5cqZPdE7V.jpg", + "backdropPath": "/6wfNpk7St2cfGZVSWPmjZehuSYH.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1975-01-01", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 18, + "popularity": 4.5888 + }, + { + "id": 4459, + "title": "The Muppet Show", + "originalTitle": "The Muppet Show", + "overview": "Go behind the curtains as Kermit the Frog and his muppet friends struggle to put on a weekly variety show.", + "posterPath": "/6UNPGS6RCmChcZO0ehouZRFiVRs.jpg", + "backdropPath": "/9UyPl2zR9dckpnmBWP6Xz4E6P3G.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 35, + 10751 + ], + "genres": [ + "Kids", + "Comedy", + "Family" + ], + "releaseDate": "1976-09-05", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 332, + "popularity": 4.5855 + }, + { + "id": 288, + "title": "¡Mucha Lucha!", + "originalTitle": "¡Mucha Lucha!", + "overview": "¡Mucha Lucha! is an American-Canadian animated television series created by Eddie Mort and Lili Chin. The show is set in a town centered around lucha libre and follows the adventures of three children, Rikochet, The Flea and Buena Girl, as they struggle through the Foremost World-Renowned International School of Lucha, where they study.", + "posterPath": "/w12B6di7moo2otX4X4y3y3gKagz.jpg", + "backdropPath": "/YxgCE30aQdxi86LwBflZI5esKV.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 35, + 16 + ], + "genres": [ + "Kids", + "Comedy", + "Animation" + ], + "releaseDate": "2002-08-17", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 394, + "popularity": 4.5848 + }, + { + "id": 232616, + "title": "The Atypical Family", + "originalTitle": "히어로는 아닙니다만", + "overview": "Once blessed with unique superpowers, a family loses their abilities due to modern day problems — until a mysterious woman changes everything.", + "posterPath": "/AnoQxxH3RoMRrUj5fm9SFRYlfxP.jpg", + "backdropPath": "/hbksC9zJiV1na8rW6BMJ7ywycVX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-05-04", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 103, + "popularity": 4.5847 + }, + { + "id": 60905, + "title": "Salem", + "originalTitle": "Salem", + "overview": "Set in the volatile world of 17th century Massachusetts, 'Salem' explores what really fueled the town's infamous witch trials and dares to uncover the dark, supernatural truth hiding behind the veil of this infamous period in American history. In Salem, witches are real, but they are not who or what they seem.", + "posterPath": "/sS9pnQSjH2COeBvhRalfyZlN4TJ.jpg", + "backdropPath": "/f1sjJoT21vH9snaCjipKlMM1DCF.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2014-04-20", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 360, + "popularity": 4.5841 + }, + { + "id": 3809, + "title": "Yin Yang Yo!", + "originalTitle": "Yin Yang Yo!", + "overview": "Two 11-year-old rabbit twins named Yin and Yang train under Master Yo, a grumpy old panda. They learn the sacred art of Woo Foo, a special type of martial arts that involves both might and magic. They must work together to save the world from evil villains and forces that want to destroy, corrupt or take it over. However, through all these adventures, Yin and Yang still portray stereotypical siblings; belligerently antagonistic but still ultimately caring about each other and working together if needed.", + "posterPath": "/qb8gxfpjQ2smnnDIEiEsFmK1lqE.jpg", + "backdropPath": "/iAyrPRIy0RjIFIFMHcDaRe0CW9U.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10759, + 10765, + 35, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Kids" + ], + "releaseDate": "2006-08-26", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 120, + "popularity": 4.5824 + }, + { + "id": 61120, + "title": "Running Wild with Bear Grylls", + "originalTitle": "Running Wild with Bear Grylls", + "overview": "The famed survivalist takes A-list celebrities on journeys into the wildest locations around the world, forcing the stars to push their bodies and minds to the limit to successfully complete the adventure of a lifetime.", + "posterPath": "/sA3E8KlWPGVY2JjbsmtgW8Lk4mG.jpg", + "backdropPath": "/5oeyV08lHHnCksfxSqWN0Fr5C0e.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10764 + ], + "genres": [ + "Action & Adventure", + "Reality" + ], + "releaseDate": "2014-07-28", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 54, + "popularity": 4.5817 + }, + { + "id": 249695, + "title": "Doctor Odyssey", + "originalTitle": "Doctor Odyssey", + "overview": "Max is the new on-board doctor for a luxury cruise ship where the small but mighty medical team navigate unique medical crises and each other, miles from shore.", + "posterPath": "/78KamrNZE0ZzPLBjEug16BASJ5M.jpg", + "backdropPath": "/pGW53bLFTUG8Gjx5SDb3hpDQ5Yd.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-09-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.543, + "voteCount": 69, + "popularity": 4.5788 + }, + { + "id": 241138, + "title": "Rising Impact", + "originalTitle": "ライジングインパクト", + "overview": "When a third-grader's natural gift for golf is accidentally discovered by a pro player, the boy embarks on a journey to be the world's best golfer.", + "posterPath": "/i0jKVRkxf12hOUR1RZF62r9WdCk.jpg", + "backdropPath": "/lTOL2HtDkBJ4R5dHEKT8JlVxFhd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-06-22", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 36, + "popularity": 4.577 + }, + { + "id": 2382, + "title": "Freaks and Geeks", + "originalTitle": "Freaks and Geeks", + "overview": "High school mathlete Lindsay Weir rebels and begins hanging out with a crowd of burnouts (the \"freaks\"), while her brother Sam Weir navigates a different part of the social universe with his nerdy friends (the \"geeks\").", + "posterPath": "/tPqV63zcW6ZV0Hd48DMGb5UzQIG.jpg", + "backdropPath": "/1lOGkpGa9SjZ2uP1PxfxDkSXRNs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1999-09-25", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 827, + "popularity": 4.5754 + }, + { + "id": 37527, + "title": "Chobits", + "originalTitle": "ちょびっツ", + "overview": "Tokyo is abuzz with persocoms – humanoid computers that are virtually perfect. The socially and technologically inept Hideki is dying to get his hands on one. When he finds Chii abandoned in the trash, she’s cuter than any current model he’s ever seen before. But when he gets her home and turns her on, she has no data and only a single learning program installed. While Hideki puts his whole heart into teaching Chii the ins and outs of humanity, a mystery unfolds as a dark secret within her awakens.", + "posterPath": "/9gjM4FgXyjzzvP6W6MckC48hK1R.jpg", + "backdropPath": "/4dTV1Ygbl5hypkrnxpH9Q8qSZbq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-04-02", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.08, + "voteCount": 225, + "popularity": 4.5748 + }, + { + "id": 73549, + "title": "Odd Squad", + "originalTitle": "Odd Squad", + "overview": "Odd Squad saves the day whenever something unusual happens.", + "posterPath": "/yRVaHKUbUF7e97po0fulgG4yM3h.jpg", + "backdropPath": "/4PehC4usZ8PoChlUP3Y5TI4KaQF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 10751, + 10765, + 9648, + 10762 + ], + "genres": [ + "Comedy", + "Crime", + "Family", + "Sci-Fi & Fantasy", + "Mystery", + "Kids" + ], + "releaseDate": "2014-11-26", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 33, + "popularity": 4.5723 + }, + { + "id": 124800, + "title": "Love & Death", + "originalTitle": "Love & Death", + "overview": "Candy and Pat Montgomery and Betty and Allan Gore — two churchgoing couples — enjoy their small town Texas life... until an extramarital affair leads somebody to pick up an axe.", + "posterPath": "/8WchbT0UPQeo3PZ6G01fhccYaQB.jpg", + "backdropPath": "/A1kULtnwc9v4gaYqIGyMu4YDOFu.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2023-04-27", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.83, + "voteCount": 405, + "popularity": 4.5721 + }, + { + "id": 62430, + "title": "The Heroic Legend of Arslan", + "originalTitle": "アルスラーン戦記", + "overview": "Arslan is the heir apparent of Pars, a strong nation that sits at the hear of the trade route connecting the East and the West. When the pagan nation of Lusitania begins an invasion of Pars, the timid Arslan is confronted with battle for the first time. His worst anxieties are realized the Parsian army falls for a Lusitanian stratagem and are routed. He barely escapes with his life, thanks to the loyal and indomitable warrior Daryun. Together they will stand against the invasion and the cruelties of fate that are about to blow down on Pars.", + "posterPath": "/p6F6pGoNNtIViDxHkU4wDeseiyJ.jpg", + "backdropPath": "/ty3fCZumomMkHPHRxACDQJkTEyD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.975, + "voteCount": 80, + "popularity": 4.5719 + }, + { + "id": 16730, + "title": "American Music Awards", + "originalTitle": "American Music Awards", + "overview": "An annual American music awards show. Unlike the Grammys, which are awarded on the basis of votes by members of the Recording Academy, the AMAs are determined by a poll of the public and music buyers.", + "posterPath": "/lMfGSoq6otbyu7orszqAH4s9TQU.jpg", + "backdropPath": "/b7bdBCRw4siIhqEVKqbtOb3VlTS.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1974-02-19", + "releaseYear": "1974", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 12, + "popularity": 4.5718 + }, + { + "id": 4331, + "title": "Wonder Woman", + "originalTitle": "Wonder Woman", + "overview": "With the strength of Hercules, the wisdom of Athena, the speed of Mercury and the beauty of Aphrodite, she’s Wonder Woman. Beautiful Amazon princess Wonder Woman travels to 1940s America disguised as Diana Prince, assistant to handsome but trouble-prone Major Steve Trevor. Using her golden belt, which imbues her with astonishing strength, her bullet-deflecting bracelets, a golden lasso that dispels dishonesty and an invisible supersonic plane, Wonder Woman combats evil.", + "posterPath": "/7vHxWO6ahByDWzWufFL48MXaktT.jpg", + "backdropPath": "/qwPc8zjwUYTcpKWzvw7ux4cwClB.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1975-11-07", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 477, + "popularity": 4.5714 + }, + { + "id": 99073, + "title": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "originalTitle": "スライム倒して300年、知らないうちにレベルMAXになってました", + "overview": "After dying of overwork in the real world, I’m reincarnated as an immortal witch, and I spend 300 years enjoying a relaxing life. At some point, though, I end up at level 99! All those years spent killing slimes to make the money to pay the bills gave me a ton of experience points. Rumors of the level 99 witch spread, and soon I’m up to my ears in curious adventurers, duelist dragons, and even a monster girl calling me her mom! I’ve never been on an adventure, but I’m the strongest in the world… What’s going to happen to my relaxing life?!", + "posterPath": "/iyTiJqrAs2YItyTYGI18PdqX65c.jpg", + "backdropPath": "/45feYn6zwVrwLcBtiaLOXzavtOT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 226, + "popularity": 4.5713 + }, + { + "id": 130, + "title": "All Grown Up!", + "originalTitle": "All Grown Up!", + "overview": "The former \"Rugrats\" tots now face preteen issues and dilemmas.", + "posterPath": "/e950CuuRk3MdRytXJ9cE905QrLS.jpg", + "backdropPath": "/uEP4DOKEzoWvoJKGcg2eUOap6s1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Kids" + ], + "releaseDate": "2003-04-12", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 200, + "popularity": 4.571 + }, + { + "id": 97317, + "title": "Detective Chinatown", + "originalTitle": "唐人街探案", + "overview": "Strange crimes occur in Thailand as the ranking for the world's best detective sees a shift. New detectives come into the picture to tackle three difficult cases.", + "posterPath": "/vIFUJnpJhs4RjG0LHlyHj3wVb5K.jpg", + "backdropPath": "/5GSnx4RRqMcBR8LUNJA7yhGVvr2.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2020-01-01", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 7.5, + "voteCount": 31, + "popularity": 4.5678 + }, + { + "id": 128013, + "title": "Santo", + "originalTitle": "Santo", + "overview": "Two cops must learn to work together to catch the world's most-wanted drug dealer, whose face has never been revealed.", + "posterPath": "/nQszDXGfiM0FLZ1ZQ1M5vkpv9OT.jpg", + "backdropPath": "/twybTlqm4v7JKjkxktZqmffGT8k.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2022-09-16", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 5.6, + "voteCount": 36, + "popularity": 4.5673 + }, + { + "id": 16047, + "title": "Anne of Green Gables", + "originalTitle": "赤毛のアン", + "overview": "Anne Shirley is a freckle-faced, red-haired girl, who grows up in an orphanage having lost her parents at a very early age. Anne is always cheerful and fun-loving despite being brought up without love or affection. When she turns 11, she is adopted by the old farmer Matthew Cuthbert and his sister Marilla. Anne starts her new life with Matthew and Marilla at a farm called \"Green Gables\", but actually the Cuthberts wanted a boy who could help with their work on the farm... Overcoming many hardships and meeting many friends and people, Anne grows up to be a strong-minded woman.", + "posterPath": "/hW5TyvMdJbyAOOzFCTQCwDHa3g5.jpg", + "backdropPath": "/9QKNNX8LikJOO2N52UfThr1yuIF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10762 + ], + "genres": [ + "Animation", + "Drama", + "Kids" + ], + "releaseDate": "1979-01-07", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 45, + "popularity": 4.5671 + }, + { + "id": 39357, + "title": "Suburgatory", + "originalTitle": "Suburgatory", + "overview": "Single father George Altman is doing his best to raise his sixteen-year-old daughter Tessa in the big city. When he discovers a box of condoms in her bedroom, though, he decides the time has come to move her to a more wholesome and nurturing environment: the suburbs. But behind the beautiful homes and perfect lawns lurk the Franken-moms, spray tans, nose jobs, and Red Bull-guzzling teens who have nothing in common with Tessa. It’s a whole new world, one that makes George wonder if they haven’t jumped out of the frying pan and into the fire.", + "posterPath": "/eJiclykJKNv1FAlTubCdaY2KM2a.jpg", + "backdropPath": "/c4MmtebDn3Gp6BDb7JQBciOB83V.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-09-28", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.715, + "voteCount": 216, + "popularity": 4.5668 + }, + { + "id": 89901, + "title": "Dickinson", + "originalTitle": "Dickinson", + "overview": "Emily Dickinson. Poet. Daughter. Total rebel. In this coming-of-age story, Emily’s determined to become the world's greatest poet.", + "posterPath": "/dDdcAfHBZ6Aalv53iR6o35CSLWA.jpg", + "backdropPath": "/eDNJVnvhB4BZ3jy5twiME9yrZYD.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.5, + "voteCount": 960, + "popularity": 4.5664 + }, + { + "id": 1570, + "title": "The Adventures of Tintin", + "originalTitle": "The Adventures of Tintin", + "overview": "Travel with Tintin, the young and intrepid Belgian reporter, and his faithful dog Snowy as they take you from Tibet to the Moon, or from Egypt to the depths of the sea -- solving mysteries, pursuing truth and justice, and gambling with their lives.", + "posterPath": "/x269Sp8n4YOIATxm1y9cpXwj4Ah.jpg", + "backdropPath": "/e9pwnvHUVtP7jg4icWXYRWF2uc9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "1991-10-02", + "releaseYear": "1991", + "originalLanguage": "fr", + "voteAverage": 8, + "voteCount": 346, + "popularity": 4.5662 + }, + { + "id": 5303, + "title": "The Storyteller", + "originalTitle": "The Storyteller", + "overview": "The Storyteller aided by his cynical dog, narrates classic folk tales, fables, and legends.", + "posterPath": "/4zyfBsIxQfEK0RcfJvwXgHTKqfn.jpg", + "backdropPath": "/celzfQGiEaOLzZaGPYrO3fP2ogX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10751, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Family", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1988-05-15", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 229, + "popularity": 4.5647 + }, + { + "id": 33873, + "title": "Sonny with a Chance", + "originalTitle": "Sonny with a Chance", + "overview": "Allison \"Sonny\" Munroe makes the leap from the Midwest to Los Angeles to join the cast of \"So Random!,\" the most popular sketch comedy TV show for kids and tweens. Her fellow young actors are resident teen queen Tawni, super suave Nico, gregarious funnyman Grady and quirky Zora. Now Sonny must somehow balance these new friendships while adjusting to her family's decidedly different way of life in Hollywood. Meanwhile, Sonny must also contend with heartthrob Chad Dylan Cooper, star of the rival show \"MacKenzie Falls,\" who makes it known that he thinks his dramatic work is better than her comedy career.", + "posterPath": "/qcHLCFCBCoTfZYzLGALF3wIV97r.jpg", + "backdropPath": "/edkpfJLutoFxmf0qwGE4rqWCVRZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2009-02-08", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 340, + "popularity": 4.5618 + }, + { + "id": 69630, + "title": "The Bold Type", + "originalTitle": "The Bold Type", + "overview": "A glimpse into the outrageous lives of Jane, Kat and Sutton, who are working at the nation's top women's magazine, Scarlet, while navigating their careers, identities and individual voices.", + "posterPath": "/cKloQpl6zE7kdFf8SUeYU2qPT9H.jpg", + "backdropPath": "/ppBiYWnUn2STU8YUdlct4Klfyu4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2017-06-20", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 191, + "popularity": 4.5613 + }, + { + "id": 85322, + "title": "Star☆Twinkle PreCure", + "originalTitle": "スター☆トゥインクルプリキュア", + "overview": "When Hikaru Hoshina transforms into Cure Star, she embarks on an outer space adventure to find the rest of the Star Twinkle Cures and save the universe!", + "posterPath": "/7y1FvOFTXcYSLRSabHlfDHixNYl.jpg", + "backdropPath": "/vcTnsyruvtsgjf2kv38tu4nDCa9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35, + 10751, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2019-02-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 11, + "popularity": 4.5611 + }, + { + "id": 259730, + "title": "The Accident", + "originalTitle": "Accidente", + "overview": "When a birthday party takes a tragic turn, its ripples shatter a close-knit community — tearing families, friendships and hearts apart.", + "posterPath": "/wMD1rnBwYAUe12JT6NHYaguXofs.jpg", + "backdropPath": "/HmLButiM2Ja8ePsoXAbNYLKVqT.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-08-21", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.289, + "voteCount": 123, + "popularity": 4.5608 + }, + { + "id": 15561, + "title": "Chara's Café", + "originalTitle": "Το Καφέ της Χαράς", + "overview": "This series takes place at the isolated village of Kolokotronitsi, a place where life has stuck some decades ago. When Hara, a young woman from Athens comes to the village and opens a cafe, a conflict occurs between her and the totally conservative mayor, Periandros, who doesn't want the ideals and ethic of his village to be destroyed.", + "posterPath": "/s3la7PtHUGOLNkGCRuSjrTiNSZv.jpg", + "backdropPath": "/PfC9TIvXcb1IL0RIDLjCqPdCdq.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "2003-10-03", + "releaseYear": "2003", + "originalLanguage": "el", + "voteAverage": 6.2, + "voteCount": 12, + "popularity": 4.5602 + }, + { + "id": 88024, + "title": "Ruthless City", + "originalTitle": "Zalim İstanbul", + "overview": "The life of a disabled guy changes dramatically after a family from a small town comes to Istanbul. How will Seher behave after she learns that her mother-in-law has agreed with Agah Karacay? What will Ceren do when she learns that she is supposed to get married to disabled Nedim instead of Cenk? Will Cemre manage to save Nedim’s life with her care and treatment? Will Seniz manage to keep her secrets? Will Ceren eventually fulfill her dreams of becoming rich? Will Cenk eventually find a true love? How will the life of Karacay family change after the arrival of Seher and her children? Will Nedim become healthy again?", + "posterPath": "/11vDIfbzW9Yauuymz8QYYlpMDQv.jpg", + "backdropPath": "/zLHTXSMaUDyjImp5tnfPzNN8aTj.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2019-04-01", + "releaseYear": "2019", + "originalLanguage": "tr", + "voteAverage": 7.6, + "voteCount": 13, + "popularity": 4.5594 + }, + { + "id": 3882, + "title": "My Favorite Martian", + "originalTitle": "My Favorite Martian", + "overview": "Newspaper reporter Tim O'Hara finds a crashed alien spaceship that contains one live alien. Not wanting to be discovered by the authorities, the Martian assumes the identity of Tim's Uncle Martin and begins to repair his spaceship so that he can return to Mars.", + "posterPath": "/kw90AgVKEPwfKLtC07hoRQFwOXk.jpg", + "backdropPath": "/hAoeLuQjL176bQ4jfGpqUhg442A.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "1963-09-29", + "releaseYear": "1963", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 31, + "popularity": 4.557 + }, + { + "id": 99084, + "title": "Princess Connect! Re:Dive", + "originalTitle": "プリンセスコネクト!Re:Dive", + "overview": "In the beautiful land of Astraea where a gentle breeze blows, a young man named Yuuki awakens with no memory of his past. There he encounters a guide who has sworn to care for him—Kokkoro, a lovely swordswoman who's always feeling peckish—Pecorine, and a cat-eared sorceress with a prickly attitude—Karyl. Led by fate, these four come together to form the \"Gourmet Guild.\" And so their adventure begins...", + "posterPath": "/5NVgbJpJguHsBPR7X7amzioQ9ot.jpg", + "backdropPath": "/scJQ1hweNICQwuToHlLEmO7qRqs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 47, + "popularity": 4.5569 + }, + { + "id": 61520, + "title": "Sanjay and Craig", + "originalTitle": "Sanjay and Craig", + "overview": "Sanjay and Craig is an American animated television series produced by Nickelodeon. The show is about a 12-year-old boy named Sanjay Patel who owns a talking pet snake named Craig.", + "posterPath": "/uFBWQcMe79V5xKWML8HX6dYRwG8.jpg", + "backdropPath": "/d37TQ68rmmBm195mF2WOGYfEDYz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2013-05-25", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.394, + "voteCount": 47, + "popularity": 4.5566 + }, + { + "id": 54315, + "title": "Brain Games", + "originalTitle": "Brain Games", + "overview": "Get ready to have your mind messed with! \"Brain Games\" is a groundbreaking series that uses interactive experiments, misdirection and tricks to demonstrate how our brains create the illusion of seamless reality through our memory, through our sensory perception, and how we focus our attention.", + "posterPath": "/1hGDLtVGomV5peD1BcPN8HRymad.jpg", + "backdropPath": "/kYtRcad1x6Ve3p9jKzNt0XB54Yp.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 35, + 10764 + ], + "genres": [ + "Documentary", + "Comedy", + "Reality" + ], + "releaseDate": "2011-10-09", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 72, + "popularity": 4.5552 + }, + { + "id": 85922, + "title": "Space Force", + "originalTitle": "Space Force", + "overview": "A four-star general begrudgingly teams up with an eccentric scientist to get the U.S. military's newest agency — Space Force — ready for lift-off.", + "posterPath": "/zgu3p4NvisS8CI68cUfBKbvAvu8.jpg", + "backdropPath": "/lV6WA95QboTUQDkFWjP3wI9U8xp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-05-29", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 785, + "popularity": 4.5545 + }, + { + "id": 21731, + "title": "Mobile Suit Gundam", + "originalTitle": "機動戦士ガンダム", + "overview": "What would you do if you suddenly found yourself in the middle of a war? Teenager Amuro Ray sees his life shattered when war comes to his home. During the chaos, Amuro finds himself inside the mobile suit Gundam, the Earth Federation's new secret weapon, and he somehow gets it to work. Amuro and the other refugees flee their homeland on the warship White Base. This group of children and inexperienced soldiers will change the outcome of the war.", + "posterPath": "/BMqben5yxK5bBdHALi9jfyp517.jpg", + "backdropPath": "/484TQnWzNSm2iGj6XMY66VBDr6g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1979-04-07", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.813, + "voteCount": 64, + "popularity": 4.5499 + }, + { + "id": 128883, + "title": "Hometown Cha-Cha-Cha", + "originalTitle": "갯마을 차차차", + "overview": "A big-city dentist opens up a practice in a close-knit seaside village, home to a charming jack-of-all-trades who is her polar opposite in every way.", + "posterPath": "/en6lrlJ1DhyvkeZEqrk3R6EJz1p.jpg", + "backdropPath": "/ffYmWMifWThFgDI7DkFBRc1SC1b.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-08-28", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8.1, + "voteCount": 598, + "popularity": 4.5498 + }, + { + "id": 643, + "title": "My Family", + "originalTitle": "My Family", + "overview": "Ben Harper is a moderately successful family man and dentist. He is also undergoing a mid-life crisis and trying to cope with the bizarre reality of raising teenage children. His wife Susan seems quite happy, enjoys her job as a London tour guide, however at home her ability to find her way around a cookbook or pantry is less successful.\n\nTheir three children Nick, Janey, and Michael are as different as chalk and cheese. Nick (19) is on his gap year, but doesn't get much further than the sofa or job centre, Janey is as sharp as a tack and 16 going on 25, while Michael is a very bright, computer-nerdish 12 year old who is just discovering girls.", + "posterPath": "/yjZIAhfqJoXLyWVFNzoTxOdNDDA.jpg", + "backdropPath": "/sE6X54SP0jsfgWToF43xcxtQD8d.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-09-19", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 66, + "popularity": 4.5497 + }, + { + "id": 132750, + "title": "Dead Boy Detectives", + "originalTitle": "Dead Boy Detectives", + "overview": "Two teen ghosts work alongside a clairvoyant to solve mysteries for their supernatural clientele — until a powerful witch complicates their plans.", + "posterPath": "/346ju9C5zy0tkzfQoetOYtM74gw.jpg", + "backdropPath": "/ySQuGiSNMC3dbL1rdiVivrwsD5C.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.727, + "voteCount": 281, + "popularity": 4.5492 + }, + { + "id": 70964, + "title": "Brockmire", + "originalTitle": "Brockmire", + "overview": "A famed major league baseball announcer who suffers an embarrassing and very public meltdown live on the air after discovering his beloved wife's serial infidelity decides to reclaim his career and love life in a small town a decade later.", + "posterPath": "/5qt3pvbEqIhCI2pBCAPES0v8zP3.jpg", + "backdropPath": "/qNkPxEs57BVMYulBFQFo3JNRz2l.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2017-04-05", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 63, + "popularity": 4.5473 + }, + { + "id": 53020, + "title": "Teekyu", + "originalTitle": "てーきゅう", + "overview": "The series follows the hilarious everyday routines of four girls in the Kameido High tennis club who, on occasion, actually play some tennis.", + "posterPath": "/vqv9MS8LfboiUDoc00D0Qw0awCB.jpg", + "backdropPath": "/awFuZcxrAGnReHrYWOkBqFBBeJy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-10-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.35, + "voteCount": 20, + "popularity": 4.5468 + }, + { + "id": 34663, + "title": "Zenki", + "originalTitle": "鬼神童子ZENKI", + "overview": "In ancient times, a great battle was waged between a master mage, Enno, and an evil demon goddess, Karuma. Enno didn't have the strength to defeat her alone and was forced to call upon Zenki, a powerful protector demon. After Karuma was defeated, Enno sealed Zenki away in a pillar located inside his temple.\n\n1,200 years after this epic battle, Enno's descendant, Chiaki, unleashes her family's powers to summon Zenki.", + "posterPath": "/sFhXlSqk4FnAvDBaG9YKYnJiE1V.jpg", + "backdropPath": "/2bo6q6SbX0JSjZ4cqQuLijuNVg0.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1995-01-09", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 99, + "popularity": 4.5465 + }, + { + "id": 67431, + "title": "Monica and Friends", + "originalTitle": "Turma da Mônica", + "overview": "Monica, the leader of the crew and 'ruler of the street,' is a little girl with a strong personality, not one to overlook any insult. She absolutely loves her stuffed bunny, Samson, and takes him with her everywhere. Jimmy Five, one of her best friends, is a smart kid, but he's always provoking her. Maggy is Monica's best friend and a super cute girl, who is always eating watermelons. To complete the show's main quartet, enter Smudge, a skillful boy who is terrified of water.", + "posterPath": "/V57onWsHdZUMOao3uixaUBbO4o.jpg", + "backdropPath": "/cTW722AtOb14gAu11ppXn7Vz85m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1976-12-24", + "releaseYear": "1976", + "originalLanguage": "pt", + "voteAverage": 8.3, + "voteCount": 19, + "popularity": 4.5445 + }, + { + "id": 106393, + "title": "Star Trek: Prodigy", + "originalTitle": "Star Trek: Prodigy", + "overview": "A motley crew of young rebellious aliens commandeer an old Starfleet ship and must figure out how to work together while navigating a greater galaxy, in search for a better future. These six young outcasts know nothing about the ship they have commandeered, but over the course of their adventures together, they will each be introduced to Starfleet and the ideals it represents.", + "posterPath": "/eUFD446HtoayV4FsXGmECXZdm7x.jpg", + "backdropPath": "/nmT2Tgk9TZlYDCciQdQ4HI5rytl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2021-10-28", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 171, + "popularity": 4.5433 + }, + { + "id": 248276, + "title": "Blank", + "originalTitle": "Blank : เติมคำว่ารักลงในช่องว่าง", + "overview": "Khun Nueng, M.L. Sipakorn, is a beautiful woman who's grown up under pressure from her grandmother. She's never been allowed to be herself, never met someone she could feel loved by or worthy of. Then she meets Anueng, cheerful and bright. Beneath the smiling face, however, there's a sadness hidden in her eyes. She makes her heart flutter like never before. Unfortunately, the sixteen years age difference, family and societal norms keep their love from flourishing.", + "posterPath": "/cPgAEWlZQMY2baVL7fhVMkckQwa.jpg", + "backdropPath": "/54VXv1qjuNvCX8VCRMkJu1QY3wn.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-03-02", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 8.385, + "voteCount": 13, + "popularity": 4.542 + }, + { + "id": 212246, + "title": "Interior Chinatown", + "originalTitle": "Interior Chinatown", + "overview": "Willis Wu, a background character trapped in a police procedural, tries to find his way into the larger story–and along the way discovers secrets about the strange world he inhabits and his family's buried history.", + "posterPath": "/7lyvgPGYNNBt9EPyBotS7U1i1Kp.jpg", + "backdropPath": "/5y4cSOkBHoacJbymwldlDQtdN1W.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 35 + ], + "genres": [ + "Drama", + "Crime", + "Comedy" + ], + "releaseDate": "2024-11-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 60, + "popularity": 4.5389 + }, + { + "id": 237330, + "title": "Pluto", + "originalTitle": "นิทาน ดวงดาว ความรัก", + "overview": "Ai-oon is the disappointing twin of successful and beloved Ob-oom. They aren't close.\n\nOn Ob-oom's wedding night, she takes Ai-oon aside and makes a request of her. Ob-oon and her husband Paul will be going away for their honeymoon and she'll be leaving something important behind: a lover, May, she hasn't broken up with—and she wants Ai-oon to do it for her.\n\nIn the early morning following the wedding, Ai-oon learns that the newlyweds got into an accident. Paul has passed away and Ob-oom is in a coma. When Ai-oon decides to fullfil her sister's request, she's shocked to learn that May is both blind and a woman. She finds herself unprepared to complete the task.", + "posterPath": "/i4umoWmqGjVIMyAQYLL64lJcLoS.jpg", + "backdropPath": "/f9HEPtPmW22z9dRhWmG9k76P8V.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2024-10-19", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 8.2, + "voteCount": 12, + "popularity": 4.5375 + }, + { + "id": 7098, + "title": "Law & Order: UK", + "originalTitle": "Law & Order: UK", + "overview": "Adapted from the hit US series, Law & Order: UK follows a team of police detectives and prosecutors representing the public interest in the criminal justice system.", + "posterPath": "/6cQ76tkIVRTurBgktZxryH8cdh4.jpg", + "backdropPath": "/qNqre6kPY8JcogbKPs2oHEaW9Nm.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-02-23", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.07, + "voteCount": 43, + "popularity": 4.5375 + }, + { + "id": 42942, + "title": "Angel Beats!", + "originalTitle": "Angel Beats!", + "overview": "Angel Beats takes place in the afterlife and focuses on Otonashi, a boy who lost his memories of his life after dying. He is enrolled into the afterlife school and meets a girl named Yuri who invites him to join the Afterlife Battlefront — an organization she leads which fights against God. The Battlefront fight against the student council president Angel, a girl with supernatural powers.", + "posterPath": "/wz1PuXrg5ERQvyXKex3cGDie2hj.jpg", + "backdropPath": "/1YyxdXFA9AJ0WHRQ7SfHxvKJp1n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2010-04-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.904, + "voteCount": 449, + "popularity": 4.5339 + }, + { + "id": 91267, + "title": "My Life Is Murder", + "originalTitle": "My Life Is Murder", + "overview": "Investigator Alexa Crowe, cannot help fighting the good fight – whether it is solving murders or combatting the small frustrations of everyday life. Fearless and unapologetic, Alexa's unique skills and insights into the darker quirks of human nature, allows her to provoke, comfort and push the right buttons as she unravels the truth behind the most baffling of crimes.", + "posterPath": "/qRdSW7Jg4e2RLABpliOKlu181.jpg", + "backdropPath": "/1wRNBYHomZa4mjzBDu57Eh1vS31.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648, + 35 + ], + "genres": [ + "Drama", + "Crime", + "Mystery", + "Comedy" + ], + "releaseDate": "2019-07-17", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 63, + "popularity": 4.5332 + }, + { + "id": 21021, + "title": "Code Blue", + "originalTitle": "コード・ブルー ドクターヘリ緊急救命", + "overview": "Four young physicians are assigned to the “Doctor Helicopter” system, the latest medical system where a medical team is dispatched to the patients via helicopter to provide medical care in the field as soon as possible. The doctors experience traumatic medical situations, deal with personal ambitions, and witness the fragility of life, all while growing personally and professionally.", + "posterPath": "/rBzW9ugeSJ0PvfqD1jkSkNaeKQh.jpg", + "backdropPath": "/qDIm4spVSvSMFL6rbtBkMD6Tbg9.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2008-07-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 22, + "popularity": 4.5318 + }, + { + "id": 5639, + "title": "Pushing Daisies", + "originalTitle": "Pushing Daisies", + "overview": "A pie-maker, with the power to bring dead people back to life, solves murder mysteries with his alive-again childhood sweetheart, a cynical private investigator, and a lovesick waitress.", + "posterPath": "/oSRO8cGvve0pggPK9gHGItfl4j5.jpg", + "backdropPath": "/arUn23XkUVV7JlD2a53BKnlzx64.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 80 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2007-10-03", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.847, + "voteCount": 438, + "popularity": 4.5316 + }, + { + "id": 83103, + "title": "Domestic Girlfriend", + "originalTitle": "ドメスティックな彼女", + "overview": "Natsuo is a high school boy who is experiencing the crushing despair of unrequited love. To make matters worse, the person he is in love with is his teacher, Hina. In an attempt to lift his spirits, he attends a mixer where he meets a girl named Rui. The two sleep together, expecting never to see one another again, but fate has other plans. His life suddenly becomes more complicated when his father comes home and announces he has remarried a woman with two daughters whom Natsuo has met before: Hina and Rui!", + "posterPath": "/yT5HNeqQaoF4TmmQi3RMj8P7uwZ.jpg", + "backdropPath": "/9uv4pVYNyf7bpm7MIjQOAaBwhbK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2019-01-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.157, + "voteCount": 452, + "popularity": 4.5314 + }, + { + "id": 256711, + "title": "The Rainmaker", + "originalTitle": "The Rainmaker", + "overview": "Fresh out of law school, Rudy Baylor goes head to head with courtroom lion Leo Drummond as well as his law school girlfriend, Sarah. Rudy, along with his boss, Bruiser, and her disheveled paralegal, Deck, uncovers two connected conspiracies surrounding the mysterious death of their client's son.", + "posterPath": "/q8l0lj20amBFi0SBs8NI9yJpaHq.jpg", + "backdropPath": "/8ZJYKoCmRCdaMDArewEwg3Uy8Bg.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-08-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 20, + "popularity": 4.5306 + }, + { + "id": 67156, + "title": "Man with a Plan", + "originalTitle": "Man with a Plan", + "overview": "A dad finds out that parenting is harder than he thought after his wife goes back to work and he's left at home to take care of the kids.", + "posterPath": "/fCJMHR0GmR4layd4KQXC1HUPMlf.jpg", + "backdropPath": "/r4BgDyLaWKd1ealnVEsG2eJLsc.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-10-24", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.738, + "voteCount": 122, + "popularity": 4.5306 + }, + { + "id": 202099, + "title": "True Lies", + "originalTitle": "True Lies", + "overview": "Shocked to discover that her bland and unremarkable computer consultant husband is a skilled international spy, an unfulfilled suburban housewife is propelled into a life of danger and adventure when she's recruited to work alongside him to save the world as they try to revitalize their passionless marriage.", + "posterPath": "/lTnVIuHiXPnFALOSBQWUOkSR8Ya.jpg", + "backdropPath": "/izANb0XYjvuAgRAcIxZ1iBJwN2T.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35 + ], + "genres": [ + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2023-03-01", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.076, + "voteCount": 86, + "popularity": 4.5305 + }, + { + "id": 208878, + "title": "Violet like the sea", + "originalTitle": "Viola Come Il Mare", + "overview": "Viola Vitale, Miss Italy and fashion journalist, returns to Sicily to look for her father. She starts working for a digital news company and joins police inspector Francesco Demir in solving crime with the help of synesthesia.", + "posterPath": "/AmGnTDwQxcL9y8NuX8XNF0ZDizp.jpg", + "backdropPath": "/kLiwgVtM1Vg9R5aftu23zyITvCo.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2022-09-30", + "releaseYear": "2022", + "originalLanguage": "it", + "voteAverage": 7.7, + "voteCount": 29, + "popularity": 4.5302 + }, + { + "id": 12875, + "title": "The Dean Martin Show", + "originalTitle": "The Dean Martin Show", + "overview": "The Dean Martin Show, also known as The Dean Martin Variety Show, is a TV variety-comedy series that ran from 1965 to 1974 for 264 episodes. It was broadcast by NBC and hosted by entertainer Dean Martin. The theme song to the series was his 1964 hit \"Everybody Loves Somebody.\"", + "posterPath": "/gOxZ92eL4Eyn61297yw8cLSMnWH.jpg", + "backdropPath": "/rCaeldcqxWU4BRaZHyrr9gU2qig.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1965-09-16", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 19, + "popularity": 4.5292 + }, + { + "id": 202284, + "title": "Ninja Kamui", + "originalTitle": "Ninja Kamui", + "overview": "A team of assassins exacts a bloody retribution on Joe Logan – a former ninja who escaped his clan – and his family for betraying their ancient code. Rising from his seeming \"death,\" Joe will re-emerge as his former self – Ninja Kamui – to avenge his family and friends and bring down the very clan that made him.", + "posterPath": "/A7mYSloFonDcQtHTqyLqEg9rIkh.jpg", + "backdropPath": "/3nmDXGCDcHbtP3Rw4vi9RD3cmmX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-02-11", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 325, + "popularity": 4.5274 + }, + { + "id": 214160, + "title": "Found", + "originalTitle": "Found", + "overview": "In any given year, more than 600,000 people are reported missing in the U.S. Of these reported cases, more than half of the missing people are people of color, too easily neglected by the system. Gabi Mosely, a former missing person herself, now specializes in PR and leads a crisis management team that seeks out these missing people. But unbeknownst to anyone, Mosely is hiding a dark secret of her own.", + "posterPath": "/b6Uo0Tkjhqlze7R7DgGmP9Fq4Ce.jpg", + "backdropPath": "/yMAZSN3t48O9UaBSmNGkcKcqLT4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2023-10-03", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.36, + "voteCount": 68, + "popularity": 4.5259 + }, + { + "id": 206799, + "title": "Dark Gathering", + "originalTitle": "ダークギャザリング", + "overview": "The story centers on Keitarou Gentouga, who has the ability to be a spirit medium. In junior high school, he got someone else wrapped up in a spirit possession incident, and he has been a shut-in for more than two years. As he reintroduces himself to society as a private tutor, he meets a genius girl named Yayoi Houzuki. Yayoi is instantly able to tell that Keitarou has skill as a spirit medium, and she invites him to go with her to a haunted location. The two then start their journey capturing evil spirits.", + "posterPath": "/4fSzalgBWLC52TGPGn91tNBoO0m.jpg", + "backdropPath": "/fctgQPXyx6quhA7TY0xTb9STIuS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2023-07-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 27, + "popularity": 4.5246 + }, + { + "id": 242874, + "title": "Valle salvaje", + "originalTitle": "Valle salvaje", + "overview": "1763. The life of Adriana, a brave and loyal woman, suffers an unexpected setback when she receives a devastating blow: her father has died, and, as a result of a secret pact, she must travel from the city of Madrid to Valle Salvaje, in northern Spain, to marry a stranger. A dark secret from her past follows her to the remote valley, home to her fiancé's family and her troubled aunt, Doña Victoria. There, her life will change forever. She will experience true love, betrayal, and danger as she tries to uncover the truth behind her father's death.", + "posterPath": "/qB356qujmLpMZrY4TobXE9Wtalm.jpg", + "backdropPath": "/oncTvFY9goRyWAQRdDh2FKQ5Zhs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2024-09-18", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.5, + "voteCount": 68, + "popularity": 4.5216 + }, + { + "id": 99654, + "title": "18 Again", + "originalTitle": "18 어게인", + "overview": "At a difficult place in his marriage and career, a middle-aged man gets a shot at a do-over when he's transformed back into his 18-year-old body.", + "posterPath": "/AwoC5PiNdi1RZTZTgOGGdHqCzrC.jpg", + "backdropPath": "/hGtx3dAB6x0ShXpDk4BBvt74Mtx.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10765 + ], + "genres": [ + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-09-21", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.322, + "voteCount": 253, + "popularity": 4.5209 + }, + { + "id": 106454, + "title": "The Afterparty", + "originalTitle": "The Afterparty", + "overview": "Nothing is as it seems in this hilarious murder mystery where each suspect's story is told through a different film genre.", + "posterPath": "/9iAxAxeX5RjB39ckhxPMDCJPpG9.jpg", + "backdropPath": "/9ZyAUZrfccsjtDwYgc7yvOBnqM9.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 35, + 80 + ], + "genres": [ + "Mystery", + "Comedy", + "Crime" + ], + "releaseDate": "2022-01-28", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 195, + "popularity": 4.5199 + }, + { + "id": 3320, + "title": "Biker Mice from Mars", + "originalTitle": "Biker Mice from Mars", + "overview": "Three anthropomorphic mice motorcyclists named Throttle, Modo, and Vinnie escape a war on their home planet Mars before arriving to defend the Earth from the evil that destroyed their homeland and to one day return to Mars.", + "posterPath": "/gBnbkQ7t6Ctri0A4nKDYWqIVF3f.jpg", + "backdropPath": "/7O1f7OWj61quryRpuGIGj4Y7jq7.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1993-09-18", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.231, + "voteCount": 67, + "popularity": 4.5199 + }, + { + "id": 70288, + "title": "The Haunted House", + "originalTitle": "신비아파트", + "overview": "With help from a 102-year-old goblin dwelling beneath their haunted apartment building, two siblings deal with ghosts and take on spooky mysteries.", + "posterPath": "/vDmy9WeyfajqdLJUN0FXWGwdV4r.jpg", + "backdropPath": "/67QWsllQHPAXgpil1HFFbttebTw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2016-07-20", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 7.3, + "voteCount": 11, + "popularity": 4.5196 + }, + { + "id": 39510, + "title": "Touch", + "originalTitle": "Touch", + "overview": "Martin Bohm, a widower and single father, is haunted by an inability to connect to his autistic, mute 11-year-old son, Jake. Their relationship and their lives take an extraordinary turn when he discovers his gifted son has the ability to see things that no one else can and the patterns that connect seemingly unrelated events.", + "posterPath": "/4qreaxQD4azrRuZWdevyjVAKt8V.jpg", + "backdropPath": "/3lUiFkhZYVCgAA4icyRvUv3LztC.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2012-01-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.621, + "voteCount": 311, + "popularity": 4.5155 + }, + { + "id": 86686, + "title": "Creepshow", + "originalTitle": "Creepshow", + "overview": "A young boy's horror comic book comes to life in this anthology series of terrifying tales.", + "posterPath": "/fassm77VqtSDHv9x17eJ3DkGVml.jpg", + "backdropPath": "/snfoAKeCQc2MLsLtrybiWuPUjOM.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-09-26", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 316, + "popularity": 4.5146 + }, + { + "id": 32222, + "title": "Die Schwarzwaldklinik", + "originalTitle": "Die Schwarzwaldklinik", + "overview": "The Black Forest Clinic is a German language medical drama television series that was produced by and filmed in West Germany. The series was produced between 1984 and 1988 with the original airing being from October 2, 1985 to March 25, 1989 on West Germany's ZDF television channel.\n\nThe series' storyline follows the inner workings of a small fictional hospital in the Black Forest region of Germany as well as the lives of the Brinkmann family of doctors who work at the hospital.\n\nShortly after broadcasting had begun in 1985, The Black Forest Clinic became a highly popular television event, reaching audiences of over 20 million viewers. 25 years since its debut, it is still highly regarded in Germany. The series had been re-broadcast several times since 1985 and has spawned two television films released 20 years after its initial airing.", + "posterPath": "/ovIHVQ0VNK8SG6SqI3aNZLAikGt.jpg", + "backdropPath": "/g3bEhlYcQZ43gIE7nTpOuBLfpzt.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18 + ], + "genres": [ + "Family", + "Drama" + ], + "releaseDate": "1985-10-22", + "releaseYear": "1985", + "originalLanguage": "de", + "voteAverage": 6.4, + "voteCount": 20, + "popularity": 4.5144 + }, + { + "id": 233256, + "title": "The Stolen Girl", + "originalTitle": "The Stolen Girl", + "overview": "Mother of two, Elisa, allows her daughter, Lucia, to go on an impromptu sleepover with her new best friend Josephine after meeting Josephine's mother, Rebecca, at her beautiful home. But when Elisa arrives to collect Lucia the next day, the house turns out to be an empty luxury rental and Lucia has been abducted.", + "posterPath": "/jfEEnO3zHWrJNVMQuv3TCNLrIzZ.jpg", + "backdropPath": "/dDx7bjxtJcMwUhowCn7VhPwLEzp.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-04-16", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.132, + "voteCount": 57, + "popularity": 4.5143 + }, + { + "id": 115236, + "title": "The Saint's Magic Power Is Omnipotent", + "originalTitle": "聖女の魔力は万能です", + "overview": "Sei, a 20-year-old office worker, is whisked away to a whole new world. Unfortunately for Sei, the ritual that summoned her—meant to produce a \"Saint\" who would banish the dark magic—brought two people over instead of one. And everyone prefers the second girl over Sei?! But this is just fine by Sei, who leaves the royal palace to set up shop making potions and cosmetics with her newfound magic. Business is booming, and this might not be such a bad life, after all...as long as her supposed Sainthood doesn't come back to haunt her.", + "posterPath": "/mPbvla7nfhpfILvJhmbeKGpVYwu.jpg", + "backdropPath": "/u1KvPCwqUH0Qr8btglG0cDnxUEj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 112, + "popularity": 4.514 + }, + { + "id": 2675, + "title": "The Little Mermaid", + "originalTitle": "The Little Mermaid", + "overview": "Disney's The Little Mermaid is an American animated television series produced by Walt Disney Television Animation based on the 1989 Disney film of the same name. It features the adventures of Ariel as a mermaid prior to the events of the film. This series is the first Disney television series to be spun off from a major animated film. Some of the voice actors of the film reprise their roles in the series, among them Jodi Benson as Ariel, Samuel E. Wright as Sebastian, Kenneth Mars as King Triton, and Pat Carroll as Ursula.", + "posterPath": "/32Tb6HZc8yAWqHesMSMnMozr6pi.jpg", + "backdropPath": "/9XCRhni0n5qbs9CkcOh4TMHiR4J.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10762, + 10765 + ], + "genres": [ + "Family", + "Animation", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-09-12", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 7.004, + "voteCount": 714, + "popularity": 4.5111 + }, + { + "id": 66774, + "title": "Epic Rap Battles of History", + "originalTitle": "Epic Rap Battles of History", + "overview": "Pitting notable historical and pop culture figures, real and fictional, against one another in a rap battle format.", + "posterPath": "/4qXok4hvDCdzyp4JoJ82WByHToh.jpg", + "backdropPath": "/1yF4JnCSSB3AG3pdxkAPnUh12Ws.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2010-09-26", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 38, + "popularity": 4.51 + }, + { + "id": 61244, + "title": "Happy Valley", + "originalTitle": "Happy Valley", + "overview": "Happy Valley is a dark, funny, multi-layered thriller revolving around the personal and professional life of Catherine, a dedicated, experienced, hard-working copper. She is also a bereaved mother who looks after her orphaned grandchild.", + "posterPath": "/xZK5iQSrn2mouZEk2PwyLPCwa4u.jpg", + "backdropPath": "/zG1K7njAaHcLElUKqNRqmVEbXdh.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2014-04-29", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.95, + "voteCount": 357, + "popularity": 4.5087 + }, + { + "id": 8991, + "title": "Digimon Frontier", + "originalTitle": "デジモンフロンティア", + "overview": "Five children receive strange messages on their cell phones that lead them to a train that takes them to the Digital World, a strange world filled with bizarre creatures called Digimon. These children have been sent there to stop an evil Digimon named Cherubimon from completely annihilating the planet of all its inhabitants. In order to accomplish this, the five children must locate their \"spirits\", which will evolve them into the Legendary Warrior Digimon. Unfortunately for them Cherubimon has ordered his servants to stop the kids from finishing the mission; eventually the children will have to fight Cherubimon's forces in order to save the planet.", + "posterPath": "/oPdbgUOdvgw3HUKCUv4cVWantdI.jpg", + "backdropPath": "/bm1pRYmji3aYVQ46oG9Orl3HhIM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-04-07", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 158, + "popularity": 4.504 + }, + { + "id": 62687, + "title": "Limitless", + "originalTitle": "Limitless", + "overview": "Brian Finch's life takes an extraordinary turn when he uses NZT-48, a neuroenhancing drug whose mystery and chaos lead him to working for the FBI and a senator who is not what he seems.", + "posterPath": "/l5BERaKn3ozRTLhoylIiNwMDvax.jpg", + "backdropPath": "/5jrncO35yqeYjcv7GiCh27qxRR1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10759 + ], + "genres": [ + "Drama", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2015-09-22", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.317, + "voteCount": 904, + "popularity": 4.5013 + }, + { + "id": 78508, + "title": "DRUCK", + "originalTitle": "DRUCK", + "overview": "Druck follows a group of friends in their teen life in Berlin and deals with daily and current events, like friendship, love and the search for their own identity. Every season centers on a new character.", + "posterPath": "/tnqOWEj9qmVPJphIzQ1HFOo9lwU.jpg", + "backdropPath": "/rtMPDlUDXbIAcewFbYsa1nbuo0j.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-03-23", + "releaseYear": "2018", + "originalLanguage": "de", + "voteAverage": 8.5, + "voteCount": 22, + "popularity": 4.5009 + }, + { + "id": 115857, + "title": "Daughter from Another Mother", + "originalTitle": "Madre solo hay dos", + "overview": "After realizing their babies were exchanged at birth, two women develop a plan to adjust to their new lives: creating a single —and peculiar— family.", + "posterPath": "/lq0n5QzBA78ndUDb9SdN93P8hjY.jpg", + "backdropPath": "/eAZtz2ydxBaHtJw3J42Gdy2DSpc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-01-20", + "releaseYear": "2021", + "originalLanguage": "es", + "voteAverage": 7.6, + "voteCount": 1250, + "popularity": 4.4988 + }, + { + "id": 40143, + "title": "Shaman King", + "originalTitle": "シャーマンキング", + "overview": "Asakura Yoh is a shaman, a person who communicates with ghosts. He enters the Shaman Fight, for whoever wins the tournament gets to commune with the Great Spirit, God... that and his fiance Anna wants to be the wife of the Shaman King. Helping him are his friends Manta, Horo Horo, Ryu, and his samurai ghost partner, Amidamaru.", + "posterPath": "/bDJLF92frEmKSr1OlCZN5P1kx6W.jpg", + "backdropPath": "/f7DC5Qu0MJBtbAK9zCOU2rzz6NG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-07-04", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.513, + "voteCount": 429, + "popularity": 4.4942 + }, + { + "id": 208825, + "title": "Parasyte: The Grey", + "originalTitle": "기생수: 더 그레이", + "overview": "When unidentified parasites violently take over human hosts and gain power, humanity must rise to combat the growing threat.", + "posterPath": "/9UPneQ4NF7g6WDNSFE5qyt88wJn.jpg", + "backdropPath": "/p4rJTY1rvQrffoh2P09sty5cz8B.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2024-04-05", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.466, + "voteCount": 282, + "popularity": 4.4941 + }, + { + "id": 2693, + "title": "Extras", + "originalTitle": "Extras", + "overview": "Andy Millman gave up his day job five years ago in the hope of achieving the big time, but he’s yet to land a speaking part, let alone saunter down the red carpet to pick up an Oscar. He remains optimistic however, as rubbing shoulders with the A-list on-set only serves to reinforce his belief that the big time is just a job or two away.", + "posterPath": "/oxiA2O4wRBCOzvfxYjNKZQuitQc.jpg", + "backdropPath": "/bWShstEC6UN1EuHpqGUGOnLmjqH.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-07-21", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.787, + "voteCount": 395, + "popularity": 4.4938 + }, + { + "id": 60956, + "title": "Doctor Stranger", + "originalTitle": "닥터 이방인", + "overview": "As a child, Park Hoon and his dad were kidnapped and taken to North Korea. He grew up there, learning to be a doctor just like his father. When Park Hoon escapes back to South Korea and begins work at a prestigious hospital, he makes it his goal to earn enough money to go back to North Korea to rescue his true love. He'll do anything to find her, but then he meets and falls for a mysterious woman who looks exactly like her.", + "posterPath": "/odH9cebqUNHKh1p6BKVSs0gsD34.jpg", + "backdropPath": "/mTb5sBKD5GkAE6vHyjZH3kR3v1T.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2014-05-05", + "releaseYear": "2014", + "originalLanguage": "ko", + "voteAverage": 8.087, + "voteCount": 294, + "popularity": 4.4934 + }, + { + "id": 71340, + "title": "Krypton", + "originalTitle": "Krypton", + "overview": "Set two generations before the destruction of the legendary Man of Steel’s home planet, Krypton follows Superman’s grandfather — whose House of El was ostracized and shamed — as he fights to redeem his family’s honor and save his beloved world from chaos.", + "posterPath": "/kMMWb4zIZKBnO3lOpVBXCL1BeNI.jpg", + "backdropPath": "/lpItdOGWnECp6CSzTnXldQ6uY2B.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-03-21", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 479, + "popularity": 4.4931 + }, + { + "id": 56353, + "title": "Oreimo", + "originalTitle": "俺の妹がこんなに可愛いわけがない", + "overview": "Oreimo follows the daily life of an ordinary high school boy named Kyousuke Kousaka. Kyousuke’s younger sister Kirino is a pretty fashion model, but also hides a dark secret of being an otaku of adult games. Kyousuke is the only person to whom Kirino reveals her hidden obsession and other issues.", + "posterPath": "/efZcn6XAMhz4n5vHVKRPVvvBfJ2.jpg", + "backdropPath": "/jfMxNkSh6CP6jWpOS60IzciMHa0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-10-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 143, + "popularity": 4.4926 + }, + { + "id": 8892, + "title": "Pinoy Big Brother", + "originalTitle": "Pinoy Big Brother", + "overview": "The Philippine adaptation of the reality game show \"Big Brother\" features Filipino housemates live together, share their stories and build meaningful relationships as they do tasks and challenges supervised by Big Brother. Every week a nomination is done, and the public decides who gets evicted and eventually become the Big Winner of the program.", + "posterPath": "/zUva0cs2SOjoxFPpwINbpevzoax.jpg", + "backdropPath": "/nCXV9ARvIE2Yc9tLg6pBwpPpPld.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2005-08-21", + "releaseYear": "2005", + "originalLanguage": "tl", + "voteAverage": 5.6, + "voteCount": 10, + "popularity": 4.4913 + }, + { + "id": 78798, + "title": "Busted!", + "originalTitle": "범인은 바로 너!", + "overview": "Suspense, surprises and fun abound in this Korean variety game show featuring big personalities and even bigger mysteries in every episode.", + "posterPath": "/6oTuXYHY6sqgy3haRh04GixUr7f.jpg", + "backdropPath": "/56YHtJezhk6y7SczrYz6pmmf9oU.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648 + ], + "genres": [ + "Comedy", + "Mystery" + ], + "releaseDate": "2018-05-04", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 7.8, + "voteCount": 38, + "popularity": 4.491 + }, + { + "id": 25492, + "title": "Sengoku BASARA: Samurai Kings", + "originalTitle": "戦国BASARA", + "overview": "During the Sengoku period, there are many factions constantly at war. One of these is led by a one-eyed man named Date Masamune and another by the imposing Takeda Shingen. The latter has a fiercely loyal subordinate named Sanada Yukimura who goes head to head against Date Masamune multiple times, but the battles between them tend to get interrupted. One such battle occurs when both men try to go after another leader named Imagawa, and they’re forced to break off their heated duel when Imagawa attempts to flee the scene with his body doubles. Yukimura and Masamune go after separate Imagawas, but all of the doubles are killed by a third party, and when their paths cross again, they are in front of the menacing Oda Nobunaga and his army. It was Nobunaga’s subordinates that killed those body doubles, and Nobunaga himself proceeds to kill the real Imagawa with a shotgun blast to the head.", + "posterPath": "/bFdT4pUHnUuACXiLTnzhTK75kpv.jpg", + "backdropPath": "/kw6M3YXYcdmiUMSdFcfNMM8BJNM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2009-04-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 20, + "popularity": 4.4871 + }, + { + "id": 79410, + "title": "After Life", + "originalTitle": "After Life", + "overview": "Tony had a perfect life. But after his wife Lisa suddenly dies, Tony changes. After contemplating taking his own life, he decides instead to live long enough to punish the world by saying and doing whatever he likes from now on.", + "posterPath": "/6eJf4h9XcvqK64vbx27EFlLVURm.jpg", + "backdropPath": "/AeVleqwWBMkiliVw6lFZICTTMiO.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-03-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.886, + "voteCount": 980, + "popularity": 4.4854 + }, + { + "id": 197188, + "title": "The Town Doctor", + "originalTitle": "Kasaba Doktoru", + "overview": "Medical drama series, local adaptation of the Korean scripted format “Dr. Romantic”, centering on a genius doctor with an accomplished career who somehow ends up leaving it all behind to be a neighborhood doctor in a small town where he meets some younger doctors and becomes a mentor to them.", + "posterPath": "/snaKsrV9Y1D1xjfxr5JylgOhH62.jpg", + "backdropPath": "/rpwd3UV5IajJFkS4oQPhPVhxHtH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2022-04-08", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 7.7, + "voteCount": 15, + "popularity": 4.4844 + }, + { + "id": 125527, + "title": "Twist of Fate", + "originalTitle": "Baht Oyunu", + "overview": "Ada is a young girl who believes that if she is abandoned by her first love, she will be unhappy forever like the women of her maternal side. While trying to escape the fate of her family, Ada falls in love with Rüzgar, a student from Albania at the same university who is threatened with deportation. Believing that Rüzgar is her first love, Ada proposes him and they have a fake marriage to prevent his deportation. She believes that Rüzgar will literally propose to her on the 3rd anniversary of their fake marriage and then their real marriage adventure will finally begin. But unfortunately, all the dreams and hopes of Ada will be ruined when she is abandoned by Rüzgar on their 3rd wedding anniversary. Ada immediately takes action to get her first love back. But fate has its own way and will put Bora in Ada's way at an unexpected moment... A workaholic, callous, self-righteous alpha male with tightly closed doors for love...", + "posterPath": "/3qBdshcYgdgLZmO3AVbNtMKqbSf.jpg", + "backdropPath": "/3N0Xh9JJYR8dwEVjGoXegvODB8F.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-06-15", + "releaseYear": "2021", + "originalLanguage": "tr", + "voteAverage": 8.6, + "voteCount": 20, + "popularity": 4.4827 + }, + { + "id": 70573, + "title": "GLOW", + "originalTitle": "GLOW", + "overview": "In 1980s LA, a crew of misfits reinvent themselves as the Gorgeous Ladies of Wrestling.", + "posterPath": "/aqQlgRgUwVTfbdxe33vfDEMiCa2.jpg", + "backdropPath": "/30totGPtBLM5ginollLv0sjyglK.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2017-06-23", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.268, + "voteCount": 416, + "popularity": 4.4803 + }, + { + "id": 68814, + "title": "Strong Woman Do Bong-Soon", + "originalTitle": "힘쎈여자 도봉순", + "overview": "Born with supernatural strength, Bong-soon fights evil and procures justice while getting tangled in a love triangle with her CEO boss and cop crush.", + "posterPath": "/sPdS6oUdXfBNGKROE5RY5s5laqx.jpg", + "backdropPath": "/93KsJLWcGwpFtjfzQ3gOa8GB3bP.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 18 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2017-02-24", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 8.1, + "voteCount": 291, + "popularity": 4.4801 + }, + { + "id": 12406, + "title": "Powerpuff Girls Z", + "originalTitle": "出ましたっ!パワパフガールズZ", + "overview": "Professor Utonium and his son Ken are studying the strange Chemical X. When a mochi cake falls into the formula, it changes into Chemical Z. Ken fires a ray of Chemical Z at a glacier in Tokyo Bay, however that causes strange lights to scatter, some of them aim at three normal girls, Momoko, Miyako, and Kaoru. This gives them the power to transform into superheroes, the Powerpuff Girls Z!", + "posterPath": "/lJpPdByOlbmU1Gu40VOL6fEg9U3.jpg", + "backdropPath": "/1PaEWlOjm0Qxo4w6NAvJRnZbKDN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2006-07-01", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 231, + "popularity": 4.4789 + }, + { + "id": 215799, + "title": "Go! Go! Loser Ranger!", + "originalTitle": "戦隊大失格", + "overview": "With their old hideout and bosses wiped out, the surviving Dusters make a secret agreement with the Ranger Force to engage in the weekly Sunday Showdown - one where they will always be defeated. Tired of this charade, Fighter D finally steps up to make a change once and for all!", + "posterPath": "/1xLqRhNM41Xv0UZRZsHBhsnB1lx.jpg", + "backdropPath": "/M0CIWl08Bj2U271ahU61JkWztc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 45, + "popularity": 4.4788 + }, + { + "id": 39388, + "title": "Femme Fatales", + "originalTitle": "Femme Fatales", + "overview": "This provocative hit series tells the stories of dangerous women who find extraordinary ways of coping with their problems, channeling their survival instincts and bringing out their inner guile.", + "posterPath": "/qUE2ceDcYaz53okDNFNeLIlXaek.jpg", + "backdropPath": "/z84nLyWnCTQcYCbjBOvydMYO5ZP.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2011-05-13", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 32, + "popularity": 4.4782 + }, + { + "id": 9152, + "title": "Steel Jeeg", + "originalTitle": "鋼鉄ジーグ", + "overview": "Hiroshi Shiba is a car racer who is mortally wounded in a laboratory accident, but restored to life by his father, Professor Shiba.", + "posterPath": "/gYkW3uz2kOOyPsFxb87HMK7ArrL.jpg", + "backdropPath": "/ali6jWoZo1rGY3fgbNbUuZAR7LY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1975-10-05", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 7.986, + "voteCount": 72, + "popularity": 4.4779 + }, + { + "id": 254544, + "title": "The Waterfront", + "originalTitle": "The Waterfront", + "overview": "A prominent North Carolina fishing family wades into treacherous waters to keep their crumbling business empire afloat.", + "posterPath": "/uRzJaOysinMti88BGuu8m8shVCp.jpg", + "backdropPath": "/kootCU91JSYiQZwkJgHgyb4tz9m.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-06-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.273, + "voteCount": 64, + "popularity": 4.4774 + }, + { + "id": 90808, + "title": "Gremlins: Secrets of the Mogwai", + "originalTitle": "Gremlins: Secrets of the Mogwai", + "overview": "Set in 1920s Shanghai, ten-year-old Sam and 12-year-old Elle return the Mogwai Gizmo back home to the lush and perilous Valley of Jade.", + "posterPath": "/fkkBQsWgRX7OFxzV0jtCM88a0Xq.jpg", + "backdropPath": "/mIwxdw9onfxmmIR3vz57wWvyUwN.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 16, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Animation", + "Family" + ], + "releaseDate": "2023-05-23", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 33, + "popularity": 4.4773 + }, + { + "id": 85219, + "title": "Great Journey of Teenagers", + "originalTitle": "少年歌行", + "overview": "Wangyou, Master of Hanshui Temple died mysteriously and when the news about a golden coffin spreads throughout the world, it triggered disputes between the World of Martial arts. Join a group of youths, Lei Wujie, Xiao Se, Tang Lian, Sikong Qianluo, Heavenly Maiden Rui in their adventure as the mystery of the golden coffin unravels.", + "posterPath": "/A1RbBXzNWzFdIzBv7Z837mUKitH.jpg", + "backdropPath": "/yoUKQw05KXX2c2WxqWjzJKguzc9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-12-26", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 11, + "popularity": 4.4737 + }, + { + "id": 90447, + "title": "Hotel Del Luna", + "originalTitle": "호텔 델루나", + "overview": "When he's invited to manage a hotel for dead souls, an elite hotelier gets to know the establishment's ancient owner and her strange world.", + "posterPath": "/8bizZsXoAsOTbhyFKfBogC8mgG2.jpg", + "backdropPath": "/epq6I0AwVaHldCrQ6xJ5ZsAyHCF.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 8.517, + "voteCount": 594, + "popularity": 4.4722 + }, + { + "id": 66859, + "title": "Better Things", + "originalTitle": "Better Things", + "overview": "Sam Fox is a single, working actor with no filter trying to raise her three daughters – Max, Frankie and Duke – in Los Angeles. She is mom, dad, referee and the cops.", + "posterPath": "/oydV7sWkFSBvHK57DfbPZzz4aDJ.jpg", + "backdropPath": "/wjx1GfVyaATVbKozljXjQZZulNy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-09-08", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.215, + "voteCount": 193, + "popularity": 4.4716 + }, + { + "id": 233629, + "title": "Bodies", + "originalTitle": "Bodies", + "overview": "One victim, found dead on a London street. Four detectives, in four different time periods, must solve the mystery to protect Britain's future.", + "posterPath": "/qWX71nLvoLsBNPEjddZMC75lq6I.jpg", + "backdropPath": "/zdE0HzIFadTkGliGyh8DbMuZ3IH.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 10765, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2023-10-19", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.156, + "voteCount": 464, + "popularity": 4.4708 + }, + { + "id": 85586, + "title": "Coroner", + "originalTitle": "Coroner", + "overview": "Jenny Cooper investigates unexplained or sudden deaths in the city of Toronto. Fierce and quick-witted, Jenny is a newly-widowed single mother with secrets of her own to unearth.", + "posterPath": "/7zEVxcNEDxVtRf29zvjjy6cazm4.jpg", + "backdropPath": "/i46T9MnizqIYuRHINZfr8enXsot.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2019-01-07", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 233, + "popularity": 4.4707 + }, + { + "id": 146393, + "title": "Back From the Brink", + "originalTitle": "护心", + "overview": "Tian Yao is a dragon spirit who was betrayed by his lover and stripped of his dragon bones. He meets Yan Hui, a free-spirited young maiden who holds the key to help him regain his powers and his faith in love. Mysteries will abound as Yan Hui come to learn of her true origin.", + "posterPath": "/g5Zkg5k0qNWhkSD8kOKlEAV6bep.jpg", + "backdropPath": "/63ETmXVN4qhoyiKBaUYrs8mgyKd.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-05-09", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 7.1, + "voteCount": 15, + "popularity": 4.4685 + }, + { + "id": 721, + "title": "Extreme Makeover: Home Edition", + "originalTitle": "Extreme Makeover: Home Edition", + "overview": "Extreme Makeover: Home Edition is an American reality television series providing home improvements for less fortunate families and community schools. The show is hosted by carpenter and veteran television personality Ty Pennington.\n\nEach episode features a family that has faced some sort of recent or ongoing hardship such as a natural disaster or a family member with a life-threatening illness, in need of new hope. The show's producers coordinate with a local construction contractor, which then coordinates with various companies in the building trades for a makeover of the family's home. This includes interior, exterior and landscaping, performed in seven days while the family is on vacation and documented in the episode. If the house is beyond repair, they replace it entirely.", + "posterPath": "/nM43UpAWF3Tleshq16N8vLsMhGr.jpg", + "backdropPath": "/tQI1Q60AamuYWuS1q0r62qoYh1Z.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2003-12-03", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 51, + "popularity": 4.4669 + }, + { + "id": 121078, + "title": "Mieruko-chan", + "originalTitle": "見える子ちゃん", + "overview": "She can see dead people…she just chooses to ignore them. That’s Miko’s plan, anyway, with horrifying (and sometimes hilarious) results.", + "posterPath": "/pNLGu2qOg0Blz8wGhGEDErjEn0Y.jpg", + "backdropPath": "/7hQELklt1Au1RAEB0sEy5iXAIw9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.121, + "voteCount": 346, + "popularity": 4.4635 + }, + { + "id": 52453, + "title": "Young Justice Bao", + "originalTitle": "少年包青天", + "overview": "", + "posterPath": "/2RD0HTRH0seCOyj1HGD7DLxICBP.jpg", + "backdropPath": "/ozDlNwSmiEynngph0Xn8YacIcdT.jpg", + "mediaType": "tv", + "genreIds": [ + 9648 + ], + "genres": [ + "Mystery" + ], + "releaseDate": "2000-09-04", + "releaseYear": "2000", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 18, + "popularity": 4.4631 + }, + { + "id": 6390, + "title": "Escape to the Country", + "originalTitle": "Escape to the Country", + "overview": "The property show that helps prospective buyers find their dream home in the country.", + "posterPath": "/ykSfW3rU7Th0VvrgB85nHvQZCAN.jpg", + "backdropPath": "/w7oNyGaZ8Tz9LnAr0nf6dvKC968.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2002-10-14", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 25, + "popularity": 4.461 + }, + { + "id": 79070, + "title": "Partners for Justice", + "originalTitle": "검법남녀", + "overview": "Baek Beom has worked as a forensic doctor for 10 years. He has a bad personality, but he is excellent with his work. Baek Beom does not open his mind to other people. Eun Sol is a rookie prosecutor with a warm heart. She has a bright personality and she comes from wealth family background. The forensic doctor and prosecutor work together to solve cases.", + "posterPath": "/lPU34PKrjJNISguneRdAB7zQfTj.jpg", + "backdropPath": "/it0fRj6zOV9o5rIzxmjqqSAAS8t.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2018-05-14", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 6.865, + "voteCount": 37, + "popularity": 4.4607 + }, + { + "id": 8379, + "title": "Clifford the Big Red Dog", + "originalTitle": "Clifford the Big Red Dog", + "overview": "The adventures of a larger-than-life red dog on Bridwell Island.", + "posterPath": "/tZLS8aT8Iqnbw8oMKIi1WHidCA1.jpg", + "backdropPath": "/4XKhVE10MOao7dieT4QP34vKk9K.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2000-09-04", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.573, + "voteCount": 82, + "popularity": 4.4598 + }, + { + "id": 185, + "title": "Carnivàle", + "originalTitle": "Carnivàle", + "overview": "Carnivàle is an American television series set in the United States during the Great Depression and Dust Bowl. In tracing the lives of two disparate groups of people, its overarching story depicts the battle between good and evil and the struggle between free will and destiny; the storyline mixes Christian theology with gnosticism and Masonic lore, particularly that of the Knights Templar.", + "posterPath": "/5pKvfZ3qLuKJd8PQfKcPxN9jTO9.jpg", + "backdropPath": "/gPXlZQr7PR3Ay2pP6XBdvVKmM25.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2003-09-14", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.896, + "voteCount": 441, + "popularity": 4.459 + }, + { + "id": 78473, + "title": "DRAGON PILOT: Hisone and Masotan", + "originalTitle": "ひそねとまそたん", + "overview": "Recently stationed Air Self-Defense Force rookie Hisone Amakasu is chosen by a dragon concealed within Gifu Air Base to be his pilot.", + "posterPath": "/6oaEH8CNlMDiiQHUSeirza96q0g.jpg", + "backdropPath": "/lBKYxelnuK2wAERVtvRiG06OOm6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-04-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 23, + "popularity": 4.4584 + }, + { + "id": 57109, + "title": "Die schlechtesten Filme aller Zeiten", + "originalTitle": "Die schlechtesten Filme aller Zeiten", + "overview": "A satirical film series in which Oliver Kalkofe and Peter Rütten present and comment on B-movies that are characterized by a particularly bad style or unintentionally funny ideas.", + "posterPath": "/fMgQH6yY64yUQu1ZI5yoZoCextu.jpg", + "backdropPath": "/7ARjHi3bZ6sARV6KlDiijmuG8eD.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2013-07-26", + "releaseYear": "2013", + "originalLanguage": "de", + "voteAverage": 7.808, + "voteCount": 13, + "popularity": 4.4568 + }, + { + "id": 62425, + "title": "Dark Matter", + "originalTitle": "Dark Matter", + "overview": "The six-person crew of a derelict spaceship awakens from stasis in the farthest reaches of space. Their memories wiped clean, they have no recollection of who they are or how they got on board. The only clue to their identities is a cargo bay full of weaponry and a destination: a remote mining colony that is about to become a war zone. With no idea whose side they are on, they face a deadly decision. Will these amnesiacs turn their backs on history, or will their pasts catch up with them?", + "posterPath": "/oWYOFBvIMkW64n51uD4mdje6k2u.jpg", + "backdropPath": "/4wwWDjLfJVMt2hh8DIa2rzEx5VS.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2015-06-12", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.753, + "voteCount": 821, + "popularity": 4.4551 + }, + { + "id": 60654, + "title": "Magi", + "originalTitle": "マギ", + "overview": "This story is about the flow of fate and the battle to keep the world on the right path. Aladdin is a boy who has set out to explore the world after being trapped in a room for most of his life. His best friend is a flute with a djinn in it named Ugo. Soon enough, Aladdin discovers he is a Magi, a magician who chooses kings, and he was born to choose kings who will follow the righteous path, battling against those who want to destroy fate. Follow his adventures as he meets others from 1001 Arabian Nights, like Ali Baba and Sinbad, and fights to keep the balance of world in check!", + "posterPath": "/cDIDw98GGkVvyDa2ko0KGmE5g2A.jpg", + "backdropPath": "/AcKnrZgsf8ea8NJWdGWlqSYTQBG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.311, + "voteCount": 201, + "popularity": 4.4544 + }, + { + "id": 282606, + "title": "The Anatomy of a Moment", + "originalTitle": "Anatomía de un instante", + "overview": "Madrid, Spain, February 23, 1981. A group of Civil Guards storm into the Congress of Deputies and terrorize those present by firing shots into the air. Only three men remain unmoved: Prime Minister Adolfo Suárez; Vice President Manuel Gutiérrez Mellado; and Santiago Carrillo, leader of the Communist Party.", + "posterPath": "/scY4Pt273NuYlZtlAkm8LKqOKGA.jpg", + "backdropPath": "/60LW2gYrAd2vnYgCez6vmceM8je.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2025-11-20", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.792, + "voteCount": 12, + "popularity": 4.4533 + }, + { + "id": 66330, + "title": "W: Two Worlds", + "originalTitle": "W(더블유)", + "overview": "After being pulled into the webtoon world created by her father, a surgical resident gets entangled in a murder mystery involving the story's hero.", + "posterPath": "/9WJMvid29p0XOzVhnsL1aJyoV4x.jpg", + "backdropPath": "/iOyiuJhKlKY4tVT8EfJ1GwnM2By.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2016-07-20", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 8.5, + "voteCount": 947, + "popularity": 4.453 + }, + { + "id": 27660, + "title": "Legend of the Galactic Heroes", + "originalTitle": "銀河英雄伝説", + "overview": "War rages between the Galactic Empire and the Free Planets Alliance. With two new brilliant young leaders at the helm, anything can happen in this military space opera.", + "posterPath": "/j6amUPH88lc7cJf54MKZCf4a9NA.jpg", + "backdropPath": "/kaO9Z6jgQJ6h7SdjpHwZmz0GcfZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18, + 10768 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama", + "War & Politics" + ], + "releaseDate": "1988-12-01", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 8.679, + "voteCount": 84, + "popularity": 4.4525 + }, + { + "id": 4743, + "title": "The Boarding School", + "originalTitle": "El internado", + "overview": "El Internado Laguna Negra was a Spanish television drama-thriller focusing on the students of a fictional boarding school in a forest, where teenagers are sent by their parents to study. The boarding school is situated in a forest far from the city, on the outskirts on which macabre events occur. The series debut on 24 May 2007, and is a production of Antena 3. Although the show is recorded and produced in HD, it is only broadcast in SD. However, an HD Blu-ray Disc release has been announced.", + "posterPath": "/dc72GJphHg6Wh22KcsAKnyo6FlL.jpg", + "backdropPath": "/AtI6V2h4SGtjvGD6rUsAGy3DZ1b.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 10751 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Family" + ], + "releaseDate": "2007-05-24", + "releaseYear": "2007", + "originalLanguage": "es", + "voteAverage": 8.2, + "voteCount": 612, + "popularity": 4.4524 + }, + { + "id": 153581, + "title": "Hello Again!", + "originalTitle": "И снова здравствуйте!", + "overview": "Animated comedy with Andrei Merzlikin about the adventures of the bandit Boris who rose from the dead. He awakens in the morgue and decides to reveal the secret of his own death, enlisting the help of a young medical trainee Artem. What is the avenger capable of, who has been in the other world and is eager to punish the killers? Boris is capable of a lot.", + "posterPath": "/h44AoZWEO6xenzNBQ4dJWMeGKsn.jpg", + "backdropPath": "/5mXjRXU8Fy36J6AQaaHiYwh4nxc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2022-02-02", + "releaseYear": "2022", + "originalLanguage": "ru", + "voteAverage": 7.7, + "voteCount": 22, + "popularity": 4.4521 + }, + { + "id": 80563, + "title": "How Not to Summon a Demon Lord", + "originalTitle": "異世界魔王と召喚少女の奴隷魔術", + "overview": "When it comes to the fantasy MMORPG Cross Reverie, none can match the power of the Demon King Diablo. Possessing the game’s rarest artifacts and an unrivaled player level, he overpowers all foolish enough to confront him. But despite his fearsome reputation, Diablo’s true identity is Takuma Sakamoto, a shut-in gamer devoid of any social skills. Defeating hopeless challengers day by day, Takuma cares about nothing else but his virtual life—that is, until a summoning spell suddenly transports him to another world where he has Diablo’s appearance!\n\nIn this new world resembling his favorite game, Takuma is greeted by the two girls who summoned him. They perform an Enslavement Ritual in an attempt to subjugate him, but the spell backfires and causes them to become his slaves instead. With the situation now becoming more awkward than ever, Takuma decides to accompany the girls in finding a way to unbind their contract while learning to adapt to his new existence as the menacing Demon King.", + "posterPath": "/oVozVLWMTej4CRBpfu0ehxofBHS.jpg", + "backdropPath": "/vGY4bcMUhkqUyCaR6SC8s1zPC7O.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2018-07-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 334, + "popularity": 4.4521 + }, + { + "id": 10496, + "title": "It Takes a Thief", + "originalTitle": "It Takes a Thief", + "overview": "Convicted cat burglar Alexander Mundy gets an offer he can't refuse from the United States government: If he puts his formidable thieving skills to work for them, he'll be released from prison. Alexander's dad, Alister, sometimes comes out of retirement as a thief to help his son on special jobs.", + "posterPath": "/17OV310dMUvJXN0YAgwtDUwYM5b.jpg", + "backdropPath": "/KulnfimeXzQuyi7tHTbBd6VV82.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1968-01-09", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 7.24, + "voteCount": 25, + "popularity": 4.4521 + }, + { + "id": 233912, + "title": "Guardians of the Dafeng", + "originalTitle": "大奉打更人", + "overview": "Xu Qi’an, a recent police academy graduate, awakens in a strange world filled with Confucians, Taoists, Buddhists, demons, and warlocks. Facing imminent exile to a remote frontier town, he seizes the chance to change his fate by joining a powerful organization of guardians.", + "posterPath": "/zhIvZOCzwjJdn1Xu2KWikC7Luiq.jpg", + "backdropPath": "/5JbWk5f3zSbwkQjbCazWi1adDMl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 35, + 9648 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Comedy", + "Mystery" + ], + "releaseDate": "2024-12-28", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.4, + "voteCount": 32, + "popularity": 4.4509 + }, + { + "id": 65329, + "title": "Hyouka", + "originalTitle": "氷菓", + "overview": "Oreki Houtarou is a minimalistic high school boy. One day, he joins the Classic Literature Club at his elder sister's request. There he meets Chitanda Eru, Fukube Satoshi, and Ibara Mayaka. Chitanda is a calm beautiful girl but she turns into an embodiment of curiosity once she says, \"I'm curious.\" Fukube is a smiling boy with a fantastic memory who calls himself a database. Ibara is a short girl and is strict with others and herself. They begin to investigate a case that occurred 45 years ago. Hints of the mystery are buried in an old collection of works of the former members of Classics Club. The collection is titled \"Hyouka.\"", + "posterPath": "/qoAig2n9LkukqnizytaBtOSwif7.jpg", + "backdropPath": "/kmUuJ4BHkX1cQKnFBJ2vv22bmmS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy" + ], + "releaseDate": "2012-04-23", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.109, + "voteCount": 345, + "popularity": 4.449 + }, + { + "id": 11370, + "title": "Britain's Got Talent", + "originalTitle": "Britain's Got Talent", + "overview": "Britain's best (and worst) variety acts compete to win a spot at the Royal Variety Show.", + "posterPath": "/pq2ucORhC3FcBg474E62Qt2QxAU.jpg", + "backdropPath": "/dNiBq47FIHaDof1lP4uLQwsfUDm.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2007-06-09", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 74, + "popularity": 4.4478 + }, + { + "id": 36983, + "title": "Rosario + Vampire", + "originalTitle": "ロザリオとバンパイア", + "overview": "An ordinary high school boy fails to get into any private academy except one — which happens to be populated by supernatural creatures disguised as humans. To survive, he has to pretend that he is one of them and blend in.", + "posterPath": "/wbJmT1SjraMZY7BPLLvVMaCm9fl.jpg", + "backdropPath": "/t7CqJNLEsBs8OlV4RyweaLg6B1Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-01-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 284, + "popularity": 4.4472 + }, + { + "id": 132005, + "title": "Hammer and Bolter", + "originalTitle": "Hammer and Bolter", + "overview": "Hammer and Bolter is an anthology series that delves into the dark corners of Warhammer, presenting a multitude of different characters and factions.", + "posterPath": "/i3DCi6ZXo0ISp8cIUHBJGmZggmy.jpg", + "backdropPath": "/um68fUh5ayzmSD164OXumckzP08.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2021-08-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 17, + "popularity": 4.4469 + }, + { + "id": 99588, + "title": "Kamp Koral: SpongeBob's Under Years", + "originalTitle": "Kamp Koral: SpongeBob's Under Years", + "overview": "SpongeBob and friends spend the summer catching jellyfish, building camp-fires, and swimming in Lake Yuckymuck at Camp Coral, located in the Kelp Forest.", + "posterPath": "/peZYB3aFOBoZbpFhOZogrTHVlqX.jpg", + "backdropPath": "/1qCGrhbbBLZpPY1NhyDjGymwq0X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2021-03-04", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 520, + "popularity": 4.4465 + }, + { + "id": 232510, + "title": "MIGNON", + "originalTitle": "민용", + "overview": "In a brutal underground world, a vampire medic and a wounded young fighter form a fragile bond—one built on pain, longing, and forbidden desire.", + "posterPath": "/jvm1Ix9HckF4vpIkDp9tBaMbh8y.jpg", + "backdropPath": "/uVtezq3V55HcP51caYGOMlSGSB3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-08-11", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.094, + "voteCount": 16, + "popularity": 4.4443 + }, + { + "id": 62211, + "title": "Sonic Boom", + "originalTitle": "Sonic Boom", + "overview": "The speedy blue hedgehog Sonic with sidekick Tails and pals Knuckles, Amy and Sticks tries to ward off the evil plans of Dr. Eggman, who is hellbent on taking over the world. Sonic faces regular battles with Eggman's henchmen, including loyal robots Orbot and Cubot, evil interns, and giant, robotic monsters.", + "posterPath": "/d8m6CBrCjcLsIH8iGV3sKdLkoAg.jpg", + "backdropPath": "/wkiP6KZIE9HiB13k8R8l6XmkKgi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2014-11-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 357, + "popularity": 4.4437 + }, + { + "id": 270487, + "title": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "originalTitle": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "overview": "Not every party treats you like a hero—especially when you’re a lowly red mage like Yuke. So, after years of constant ridicule by his A-rank party members, he ditches them. Searching for a new party, he reunites with former students Marina, Silk, and Rain, and joins their group. But on a quest to conquer the world’s greatest dungeon, they become entangled in chaos that threatens the world.", + "posterPath": "/I0AU52dvJzQptvbmWfVnVBgm75.jpg", + "backdropPath": "/mjCLM0KHXErVCvz4UMuUV1l2Th.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-12", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 26, + "popularity": 4.4435 + }, + { + "id": 83135, + "title": "The Twilight Zone", + "originalTitle": "The Twilight Zone", + "overview": "Tales of science fiction, fantasy and the occult, exploring humanity's hopes, despairs, prides and prejudices in metaphoric ways. Next stop ahead The Twilight Zone.", + "posterPath": "/aEuzZqJTEH9E4JwQyv8JtuCu22B.jpg", + "backdropPath": "/7esDVGdVWqLkpsrUV4bb4QoXLMU.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2019-04-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 407, + "popularity": 4.4409 + }, + { + "id": 18770, + "title": "Gran Hermano", + "originalTitle": "Gran Hermano", + "overview": "Gran Hermano is a reality television series broadcast in Spain on Telecinco and La Siete produced by Endemol. It is part of the Big Brother franchise first developed in the Netherlands. As of February 2012, 19 editions of the show have aired.", + "posterPath": "/gQ0Emh2LT047Fip2HWye3NkrkQB.jpg", + "backdropPath": "/ookJ1LS8Uc0ji7cSDuJfV7Qh6Lb.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2000-04-23", + "releaseYear": "2000", + "originalLanguage": "es", + "voteAverage": 4.4, + "voteCount": 17, + "popularity": 4.4408 + }, + { + "id": 108382, + "title": "Ariza", + "originalTitle": "Arıza", + "overview": "The series tells an incredibly gripping story of a regular man and taxi driver named Ali Rıza, whose life changes forever upon encountering a breathtaking customer named Halide, the precious daughter of a known mob boss", + "posterPath": "/rrbuAhoHNyTQCUSBcM3AEQxwKmi.jpg", + "backdropPath": "/lmDpdX58pDkwsucNut8z0693I6P.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2020-09-13", + "releaseYear": "2020", + "originalLanguage": "tr", + "voteAverage": 7.1, + "voteCount": 14, + "popularity": 4.4399 + }, + { + "id": 1509, + "title": "Hope & Faith", + "originalTitle": "Hope & Faith", + "overview": "Hope, a down-to-earth, happily married mother of three has her tidy world turned upside down when her celebrity sister moves in. Faith was living the Hollywood life as a soap opera star before her character was killed off.", + "posterPath": "/z2ysVqKDuwEDwYtipaiVOE0SZaP.jpg", + "backdropPath": "/fWtiHQvbZmeUr0rCrrzN9c3AmsK.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-09-23", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 5.27, + "voteCount": 37, + "popularity": 4.4398 + }, + { + "id": 99799, + "title": "Alex Rider", + "originalTitle": "Alex Rider", + "overview": "Alex Rider is an ordinary teenager enlisted to work on behalf of MI6, where he uses skills he didn't know he had to become an extraordinary spy.", + "posterPath": "/7VkzkvA0XckUClWrlkt4fnmTrkL.jpg", + "backdropPath": "/qAaOTF6zEujZDY5Qn7671Wjtnk4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2020-11-12", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 349, + "popularity": 4.4392 + }, + { + "id": 66610, + "title": "Tootuff", + "originalTitle": "Titeuf", + "overview": "", + "posterPath": "/58BLXyYTVx1yw78Cu83itWNhE3F.jpg", + "backdropPath": "/zYsrtMe8iw2aD02W5PuoSRDJKNg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2001-04-04", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 5.9, + "voteCount": 19, + "popularity": 4.4378 + }, + { + "id": 69470, + "title": "Santa Clarita Diet", + "originalTitle": "Santa Clarita Diet", + "overview": "They're ordinary husband and wife realtors until she undergoes a dramatic change that sends them down a road of death and destruction. In a good way.", + "posterPath": "/5rBjNm2sRubaXKBnU904NInFi7P.jpg", + "backdropPath": "/zPCDfLwOEtEhddaT2xeO5ChErsV.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648, + 80 + ], + "genres": [ + "Comedy", + "Mystery", + "Crime" + ], + "releaseDate": "2017-02-03", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.446, + "voteCount": 771, + "popularity": 4.4374 + }, + { + "id": 653, + "title": "Metalocalypse", + "originalTitle": "Metalocalypse", + "overview": "Part-American, part-Scandinavian death-metal band Dethklok has a lingering effect on its fans, who take the words seriously and do anything Dethklok lyrics say. The government fears the band's influence and sets out to destroy it by covert means; for example, by sending military pharmaceutical psychotropic drug manufacturers. Deemed sociopaths for tossing hot coffee at their concert attendees, two of the band members are alcoholics, and they all have self-esteem issues.", + "posterPath": "/aJ8e3EjggpnnGOPjLRUka6lt1Ly.jpg", + "backdropPath": "/nLaF4UJbjotJzXhTZWUJgD7FeFI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2006-08-06", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 7.594, + "voteCount": 203, + "popularity": 4.4366 + }, + { + "id": 259537, + "title": "Sword of Coming", + "originalTitle": "剑来", + "overview": "", + "posterPath": "/2pT4uBFKymVPLktor6dbeOZzDcJ.jpg", + "backdropPath": "/lhLbAAwMaeoPxvE7bVUQkSDQZ4m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-08-15", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 9.2, + "voteCount": 16, + "popularity": 4.4351 + }, + { + "id": 5357, + "title": "Hyakujuu Sentai Gaoranger", + "originalTitle": "百獣戦隊ガオレンジャー", + "overview": "Long ago, a great, destructive war between humans the Orgs was ended; the people of Earth were believed to be the victors. But now, 1,000 years later, the Orgs have returned. And five new warriors have been selected by the Power Animals to claim the responsibility of protecting humanity once again, by becoming Gaorangers!", + "posterPath": "/mDTG3RYT6LzNxuJypkG43ICyIEM.jpg", + "backdropPath": "/hmhSP3LnFkuhfMmXTLzo5kV23Oz.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 10762 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2001-02-18", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 20, + "popularity": 4.4347 + }, + { + "id": 210, + "title": "The Man from U.N.C.L.E.", + "originalTitle": "The Man from U.N.C.L.E.", + "overview": "Agents Napoleon Solo and Illya Kuryakin work for a secret intelligence service working under the auspices of the U.N.\n\nTheir immediate superior is Mr. Waverly.\n\nTogether they operate out of a secret base beneath the streets of New York City, and accesses through several cover business such as Del Floria's Tailor Shop and the Masque Club.\n\nThis secret intelligence service is called U.N.C.L.E.\n\nUnited Network Command for Law and Enforcement.", + "posterPath": "/a0nMOwNZXyJrMTPoaCzJJZeT0Yl.jpg", + "backdropPath": "/tMcg1Q5fCEDRCXYfZIZTsYAZZxk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1964-09-22", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 7.09, + "voteCount": 67, + "popularity": 4.4332 + }, + { + "id": 61744, + "title": "Mozart in the Jungle", + "originalTitle": "Mozart in the Jungle", + "overview": "In the tradition of Anthony Bourdain's \"Kitchen Confidential\" and Gelsey Kirkland's \"Dancing on my Grave\" comes an insider’s look into the secret world of classical musicians.\n\nFrom her debut recital at Carnegie Recital Hall to the Broadway pits of \"Les Miserables\" and \"Miss Saigon,\" Blair Tindall has played with some of the biggest names in classical music for twenty-five years. Now in \"Mozart in the Jungle,\" Tindall exposes the scandalous rock and roll lifestyles of the musicians, conductors, and administrators who inhabit the insular world of classical music.", + "posterPath": "/gPKPcFffmdZhu91Wa103GN5NLCZ.jpg", + "backdropPath": "/2ROn7ZDAFIzZsFzqsNB7DsclPLE.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2014-02-06", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.496, + "voteCount": 239, + "popularity": 4.4325 + }, + { + "id": 156993, + "title": "Harry Wild", + "originalTitle": "Harry Wild", + "overview": "A recently retired English professor discovers a real knack for investigation and cannot help but interfere with the cases assigned to her police detective son.", + "posterPath": "/aLnxpbhwsJ3XCATDEfFaAmJV80d.jpg", + "backdropPath": "/qTtEGZdcShTjgj1wsLvJ0OGGh5e.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 35 + ], + "genres": [ + "Drama", + "Mystery", + "Comedy" + ], + "releaseDate": "2022-04-04", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 53, + "popularity": 4.427 + }, + { + "id": 61591, + "title": "Adam zkt. Eva", + "originalTitle": "Adam zkt. Eva", + "overview": "Adam zkt. Eva (Dutch for Adam seeks Eve) is a Dutch television dating show. The show's gimmick is that the two candidates are naked, and an additional twist is that a second candidate (also naked) for the main character's affections is introduced halfway through the program.", + "posterPath": "/xGaxMnVYETXiFAo7IGAaFs2mem8.jpg", + "backdropPath": "/bHBEpfysFrRgnVVLpbcAO707x8N.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2014-03-04", + "releaseYear": "2014", + "originalLanguage": "nl", + "voteAverage": 3.7, + "voteCount": 16, + "popularity": 4.4245 + }, + { + "id": 63418, + "title": "Code Black", + "originalTitle": "Code Black", + "overview": "Inspired by the award-winning documentary, this medical drama is set in the busiest and most notorious ER in the nation where the extraordinary staff confront a challenged system in order to protect their ideals and the patients who need them the most.", + "posterPath": "/3T1b6YK6vLrZoLZC5hd65ZuRLq8.jpg", + "backdropPath": "/AekZz93QCISOYFELhxyRCSzcAit.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2015-09-30", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.753, + "voteCount": 269, + "popularity": 4.4225 + }, + { + "id": 104, + "title": "The Legend of the Condor Heroes", + "originalTitle": "射鵰英雄傳", + "overview": "The Legend of the Condor Heroes is a Hong Kong television series adapted from Louis Cha's novel of the same title. It was first broadcast on TVB Jade in Hong Kong in 1983. The 59 episodes long series is divided into three parts. This 1983 version is considered by many to be a classic television adaptation of the novel and features the breakthrough role of Barbara Yung, who played Huang Rong.", + "posterPath": "/wuOGPke8Dm5g5X4qfYwHu3gXAyX.jpg", + "backdropPath": "/fcKuYJGQdI8E0Pec4PJUGILKXWe.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "1983-02-28", + "releaseYear": "1983", + "originalLanguage": "cn", + "voteAverage": 8.1, + "voteCount": 20, + "popularity": 4.4221 + }, + { + "id": 36697, + "title": "Seitokai Yakuindomo", + "originalTitle": "生徒会役員共", + "overview": "Ousai Academy is a former all-girls private high school which has recently been integrated for both genders. Takatoshi Tsuda is pushed into becoming the vice-president of the student council, where he is the lone male member surrounded by three beautiful girls.", + "posterPath": "/htcCw1HrElxHV9GQ5KLapm4CjlA.jpg", + "backdropPath": "/b4SHDDUluls6huC0hq9lC3wP4vx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-07-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 43, + "popularity": 4.4209 + }, + { + "id": 64492, + "title": "SHIROBAKO", + "originalTitle": "SHIROBAKO", + "overview": "In a school in northeastern Japan, five friends in the animation club, Aoi, Ema, Shizuka, Misa, and Midori swear to complete a new anime called \"Shinbutsu Konkou SHICHIFUKUJIN\" with some donuts. Since then, day after day, the five spend all of their time on anime production. The awe of going from rough sketches to animation, and the awkward acting in the after-recording session... The final product was finished at the cultural fair six months later. After they graduated they still pursued animation and swore on some donuts that they would make another anime together.", + "posterPath": "/boxBWiZ1NxVLLkoCPbP2NKdv1WT.jpg", + "backdropPath": "/3K37gBsWIPWhKKT5DMW37bOnp4k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2014-10-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 70, + "popularity": 4.4199 + }, + { + "id": 34573, + "title": "A.N.T. Farm", + "originalTitle": "A.N.T. Farm", + "overview": "Chyna Parks, an 11 year old musical prodigy, gets into a gifted program called Advanced Natural Talents at the local high school. Along with her fellow elementary school-aged 'ANTs', she must navigate the halls of a new school of older kids who are not particularly fond of grade-skipping newbies.", + "posterPath": "/rnO9xtMhfudmd4LBiXoYWb4ckog.jpg", + "backdropPath": "/2lM9j1DhjWePt1v9ooQesBTe9Cc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "2011-05-06", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.212, + "voteCount": 139, + "popularity": 4.4181 + }, + { + "id": 66902, + "title": "Below Deck Mediterranean", + "originalTitle": "Below Deck Mediterranean", + "overview": "Follow crew members living and working aboard a 150’ mega-yacht as it undertakes a charter season in the Mediterranean. Providing unparalleled service to wealthy and uncompromising guests is made even more difficult as the team faces everything from love triangles to seeing fellow crew members shockingly cross the line with guests.", + "posterPath": "/u88QjNj1xyGwnZMtSZjA9jDNNro.jpg", + "backdropPath": "/44YZBY9eCyVM5nyZAmua6ovD64S.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2016-05-03", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 49, + "popularity": 4.4161 + }, + { + "id": 38881, + "title": "Transformers: Rescue Bots", + "originalTitle": "Transformers: Rescue Bots", + "overview": "A team of specialized Autobots not quite ready for prime-time battles against the Decepticons is given a vital mission by Optimus Prime. The goal for the Bots is to learn about mankind and how to help others to find out what it really means to be a hero.", + "posterPath": "/wtugHPxksnORftAs7EOGK3Oy0I5.jpg", + "backdropPath": "/mhAWfN7iDXxINW3wiTDvxjBkwkj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-02-18", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 35, + "popularity": 4.4156 + }, + { + "id": 66023, + "title": "Marcella", + "originalTitle": "Marcella", + "overview": "Marcella is shocked to the core of her being when her husband Jason leaves her unexpectedly, confessing he no longer loves her. Heartbroken, Marcella returns to the Met’s Murder Squad. Ten years ago Marcella gave up her fast-tracked police career to marry and devote her life to her family. With the abrupt end to her marriage and isolated from her 13 year old daughter and 10 year old son, Marcella throws herself into work to stop herself from falling apart.", + "posterPath": "/k0FUUaaHYEcNrcEnIbPcmO6LIIA.jpg", + "backdropPath": "/n5ELbp4GXH4nnNkCvQTPH5fetUJ.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-04-04", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 262, + "popularity": 4.4144 + }, + { + "id": 261091, + "title": "The Shiunji Family Children", + "originalTitle": "紫雲寺家の子供たち", + "overview": "The Shiunji family with their seven children reside in a mansion within Tokyo’s Setagaya ward. The eldest son, Arata, is tired of being pushed around by his five sisters and daydreams of a life without them. That is, until Arata’s father reveals a shocking truth—Arata isn’t biologically related to his sisters! The siblings’ relationships will be tested as they navigate life in this new light.", + "posterPath": "/tvhXMejlXyOUo24we09pXSgKw5j.jpg", + "backdropPath": "/kVZcEY6PCeweU4GFWBOnlKAM28L.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.553, + "voteCount": 39, + "popularity": 4.4135 + }, + { + "id": 273801, + "title": "It's Florida, Man.", + "originalTitle": "It's Florida, Man.", + "overview": "This irreverent late-night comedy series brings to life unbelievable, ripped-from-the-headlines tales of the Sunshine State. Featuring interviews with everyday Floridians and playful recreations starring a rotating cast of actors and comedians, this hilarious and outrageous series sheds light on the viral, wacky, and weird.", + "posterPath": "/yrGQwoY9XUglAlCDzsIlr3ws4pM.jpg", + "backdropPath": "/hbWqmgF9NYU2ATBWqvhLnOCeW2V.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-10-18", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 12, + "popularity": 4.4134 + }, + { + "id": 45844, + "title": "Star Blazers: Space Battleship Yamato 2199", + "originalTitle": "宇宙戦艦ヤマト2199", + "overview": "The year is 2199. The human race has been crushed in their war with the Gamilos, driven into underground cities by the invader's assault. Scientists estimate they have only a year left. The young officers Susumu Kodai and Daisuke Shima receive a mysterious capsule from a ship that made an emergency landing on Mars and return with it to Earth. It contains humanity's last hope: the planet Iscandar on the other side of the Magellan Galaxy has the technology to defeat the Gamilos and restore the planet. The space battleship Yamato is entrusted with this task, but they have only one year before humanity ends.", + "posterPath": "/kP0qdJDIV2kHF2CTw8l5RrGyZYE.jpg", + "backdropPath": "/A8tHJQef2u4rMKgG1GAZJmpcqfJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2013-04-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.274, + "voteCount": 53, + "popularity": 4.4132 + }, + { + "id": 2167, + "title": "All Saints", + "originalTitle": "All Saints", + "overview": "Medical drama focusing on the working and personal lives of the doctors and nurses working on the front line of a busy inner city Emergency Department at All Saints Hospital.", + "posterPath": "/cuKUm2nweOCpb1pl2k8k0THTBvn.jpg", + "backdropPath": "/9tYSEovniAwcV7bKfWtlq9uD84w.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1998-02-24", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 5.7, + "voteCount": 11, + "popularity": 4.4131 + }, + { + "id": 53721, + "title": "Love Live! School Idol Project", + "originalTitle": "ラブライブ! School idol project", + "overview": "Otonokizaka High School is planning to close within three years. However, nine female students come together with one thing in mind—form a pop idol group to revive the school’s popularity and keep it from shutting down. 'In order to protect our beloved school, there’s only one thing we can do...become pop stars!'", + "posterPath": "/xEAZIGmMuBVR3japyKHz9QgxEmr.jpg", + "backdropPath": "/5ZheCj2EtBkgF5uzfRBTFE3yKFl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2013-01-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 82, + "popularity": 4.4129 + }, + { + "id": 123548, + "title": "Castlevania: Nocturne", + "originalTitle": "Castlevania: Nocturne", + "overview": "As revolution sweeps France, Richter Belmont fights to uphold his family's legacy and prevent the rise of a ruthless, power-hungry vampire ruler.", + "posterPath": "/4XJwo95ktJ7xupw1bCMuP91kyYr.jpg", + "backdropPath": "/1swj9HxDkjzsO3yHlSwRA38hMFN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2023-09-28", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.825, + "voteCount": 240, + "popularity": 4.4127 + }, + { + "id": 56590, + "title": "The Eric Andre Show", + "originalTitle": "The Eric Andre Show", + "overview": "A comedic talk show from an alternate reality featuring unstable hosts, a variety of celebrities—both real and fake—and unusual studio action.", + "posterPath": "/mXmZJy8AtOF5s5SMW3WfAVxYG7V.jpg", + "backdropPath": "/bYx97fcrrAQOJldXdKW4iXCsHsl.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-05-20", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 156, + "popularity": 4.4116 + }, + { + "id": 40417, + "title": "Leyla and Mecnun", + "originalTitle": "Leyla ile Mecnun", + "overview": "Leyla ile Mecnun is a Turkish television comedy series. The show is set in Istanbul, Turkey and premiered in 2011 on TRT. The series is a surreal and absurd comedy that revolves around the fictional love story between Leyla and Mecnun.", + "posterPath": "/3jPLJJXbFabb29mOxZOK0xctcy6.jpg", + "backdropPath": "/aEQEIXDmjd9otezUu64VFmpO51K.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 18, + 10765 + ], + "genres": [ + "Family", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-02-09", + "releaseYear": "2011", + "originalLanguage": "tr", + "voteAverage": 8.126, + "voteCount": 115, + "popularity": 4.4106 + }, + { + "id": 86382, + "title": "The Stand", + "originalTitle": "The Stand", + "overview": "In a world mostly wiped out by the plague and embroiled in an elemental struggle between good and evil, the fate of mankind rests on the frail shoulders of the 108-year-old Mother Abagail and a handful of survivors. Their worst nightmares are embodied in a man with a lethal smile and unspeakable powers: Randall Flagg, the Dark Man.", + "posterPath": "/w6XiuRK5QQaLNmIqDRCWOpEcHwi.jpg", + "backdropPath": "/b7MUOLzo9kxQRSjGHwp589HMdxI.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-12-17", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.866, + "voteCount": 695, + "popularity": 4.4086 + }, + { + "id": 13780, + "title": "The Thorn Birds", + "originalTitle": "The Thorn Birds", + "overview": "The story based on a novel by Colleen McCullough focuses on three generations of the Cleary family living on a sheep station in the Australian outback.", + "posterPath": "/hlBkKc9JGPszx9FjLnARad9yQA3.jpg", + "backdropPath": "/qF13JH8SG6VsthWq3J5x4pLNR2K.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1983-03-27", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 125, + "popularity": 4.4085 + }, + { + "id": 247732, + "title": "NCIS: Tony & Ziva", + "originalTitle": "NCIS: Tony & Ziva", + "overview": "When his security company is attacked, Tony and Ziva must go on the run across Europe, try to figure out who is after them and maybe even learn to trust each other again so that they can finally have their unconventional happily ever after.", + "posterPath": "/zNIANQsAs2kbxbzbTTe5dTBzhKe.jpg", + "backdropPath": "/ub0xUWZUBoAwy1eBG1uwi9ikaVg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2025-09-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.934, + "voteCount": 53, + "popularity": 4.4078 + }, + { + "id": 131305, + "title": "Celebrity", + "originalTitle": "셀러브리티", + "overview": "Fame. Money. Power. One young woman fights to become the next hottest celebrity in the glamorous yet scandalous world of influencers in Seoul.", + "posterPath": "/bYhzribGfkw6eeKkicJHx7U3Bwy.jpg", + "backdropPath": "/ggOukDTllje9G36qKuXJtzMcRRT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2023-06-30", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.7, + "voteCount": 138, + "popularity": 4.4065 + }, + { + "id": 83524, + "title": "The New Nurses", + "originalTitle": "Sygeplejeskolen", + "overview": "The lives of Erik and Anna, students at a nursing school in 1950s Denmark, a time and place where it was not normal for a man to become a nurse.", + "posterPath": "/tbFkjvJLaRBk3EgdwMAsVfa6MkJ.jpg", + "backdropPath": "/3XJO9xerSMIPhz101rkSnbVLdNX.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-10-21", + "releaseYear": "2018", + "originalLanguage": "da", + "voteAverage": 8, + "voteCount": 17, + "popularity": 4.4065 + }, + { + "id": 891, + "title": "Thunderbirds", + "originalTitle": "Thunderbirds", + "overview": "Thunderbirds is a 1960s British science-fiction television series which was produced using a mixed method of marionette puppetry and scale-model special effects termed \"Supermarionation\". The series is set in the 21st century and follows the exploits of International Rescue, a secret organization formed to save people in mortal danger with the help of technologically advanced land, sea, air and space vehicles and equipment, launched from a hidden base on Tracy Island in the South Pacific Ocean.", + "posterPath": "/8uwms1QTwIvelcyVBLCOvYwfV9m.jpg", + "backdropPath": "/7LbWPcttJ5a8YPnwwD7mHNd4D6X.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10759, + 16, + 10765 + ], + "genres": [ + "Family", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1965-09-30", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 7.536, + "voteCount": 96, + "popularity": 4.4049 + }, + { + "id": 92788, + "title": "Marvel's Moon Girl and Devil Dinosaur", + "originalTitle": "Marvel's Moon Girl and Devil Dinosaur", + "overview": "After 13-year-old super-genius Lunella accidentally brings ten-ton T-Rex, Devil Dinosaur into present-day New York City via a time vortex, the duo works together to protect the city's Lower East Side from danger.", + "posterPath": "/1oFkjiF9fT2asKWjRiJtlbhu3hn.jpg", + "backdropPath": "/ieZ9AdB3yJF9jZSVO39zZ9d4D1y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-02-10", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 37, + "popularity": 4.4044 + }, + { + "id": 130368, + "title": "Love Between Fairy and Devil", + "originalTitle": "苍兰诀", + "overview": "When a low-ranked fairy accidentally resurrects a powerful demon, their fates become cosmically entangled as the world is thrown into turmoil.", + "posterPath": "/mNgUuTGkOj19Z09zKa76bE6J5Di.jpg", + "backdropPath": "/pECcUE53TjkrR2VsAgF7JICzH7k.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-08-07", + "releaseYear": "2022", + "originalLanguage": "zh", + "voteAverage": 8.3, + "voteCount": 163, + "popularity": 4.4042 + }, + { + "id": 62640, + "title": "Nisekoi", + "originalTitle": "ニセコイ", + "overview": "Raku Ichijo is an average high school student. He also happens to be the sole heir to the head of a Yakuza Family called the Shuei-gumi. 10 years ago, Raku made a promise… a secret promise with a girl he met. They promised one another that they will “get married when they reunite.” Since then, Raku never let go of the pendant the girl gave him.", + "posterPath": "/vYfnw5eRLrne4ZLDaRdHgvGyys7.jpg", + "backdropPath": "/cY7FuCOp9RdbOrZ6rmTvnOpknSJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.226, + "voteCount": 338, + "popularity": 4.4039 + }, + { + "id": 14853, + "title": "The Clone", + "originalTitle": "O Clone", + "overview": "Human cloning. The Islamic world. Two young people, two different cultures, two different beliefs. An impossible love story that not even time could erase. During a trip to Morocco, Lucas has a forbidden romance with Jade. He returns to Brazil after the death of his twin brother Diogo. A close family friend, scientist Albieri uses this situation to produce the first human clone using cells taken from Lucas. Twenty years later, Jade, Lucas and his clone form an odd love triangle.", + "posterPath": "/55r16i772LJkfeGGtlWugScVA10.jpg", + "backdropPath": "/jdzd5rTeUi1njP4SPJf43SpDSUf.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 10765 + ], + "genres": [ + "Soap", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-10-01", + "releaseYear": "2001", + "originalLanguage": "pt", + "voteAverage": 8.024, + "voteCount": 356, + "popularity": 4.4036 + }, + { + "id": 14141, + "title": "V", + "originalTitle": "V", + "overview": "Fifty spaceships, each three miles across, hover ominously above Earth's major cities. The Visitors that emerge are humanlike in appearance and extend the hand of friendship. Our planet's resources are just what these aliens need to survive. And for its future survival, unsuspecting humankind will need... a miracle!", + "posterPath": "/xLD3Oy9rJTrs3ogPpw7OQIPEpgP.jpg", + "backdropPath": "/wkE9IUAKemdWGWOad3D0jTi0LVi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-05-01", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.737, + "voteCount": 954, + "popularity": 4.4026 + }, + { + "id": 3275, + "title": "Alias Smith and Jones", + "originalTitle": "Alias Smith and Jones", + "overview": "Alias Smith and Jones is an American Western series that originally aired on ABC from 1971 to 1973. It stars Pete Duel as Hannibal Heyes and Ben Murphy as Jedediah \"Kid\" Curry, a pair of cousin outlaws trying to reform. The governor offers them a conditional amnesty, as he wants to keep the pact under wraps for political reasons. The condition is that they will still be wanted— until the governor can claim they have reformed and warrant clemency.", + "posterPath": "/cvivxPeLnXUGiZtgeHdLVA6xGmb.jpg", + "backdropPath": "/wz9b19dihwqkOpaQjofmYeqXTCU.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 80 + ], + "genres": [ + "Western", + "Crime" + ], + "releaseDate": "1971-01-05", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 30, + "popularity": 4.4024 + }, + { + "id": 87508, + "title": "Delhi Crime", + "originalTitle": "दिल्ली क्राइम", + "overview": "Following the police force as they investigate high-profile crimes in Delhi, this series has seasons inspired by both real and fictional events.", + "posterPath": "/xkpkTj6KGsjSaet0VQaq0aTn31D.jpg", + "backdropPath": "/j6djmR4hi8ULL0xUPQN4ZVyzgVN.jpg", + "mediaType": "tv", + "genreIds": [ + 80 + ], + "genres": [ + "Crime" + ], + "releaseDate": "2019-03-22", + "releaseYear": "2019", + "originalLanguage": "hi", + "voteAverage": 7.8, + "voteCount": 113, + "popularity": 4.4011 + }, + { + "id": 19849, + "title": "Blood+", + "originalTitle": "Blood+", + "overview": "Unable to remember the past, high school senior Saya Otonashi must rediscover her destiny in order to defeat the chiropteran vampires that threaten her loved ones' existence.", + "posterPath": "/hc7xnAqzhfocgsWzY6K8W6nu6WP.jpg", + "backdropPath": "/goD9FEuGxbSwzn8a6C0ZXIV95Dk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2005-10-08", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 273, + "popularity": 4.4007 + }, + { + "id": 245285, + "title": "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells", + "originalTitle": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "overview": "Touka always faded into the background at school. And when he’s summoned to another world with his classmates, that still doesn’t change! They all acquire top-rank skills, except Touka, who’s deemed a failure and cast to ancient ruins by the goddess Vicius. Turns out, his low-rank skills may not be so useless after all. Now, he seeks revenge against the goddess, and his true nature is revealed.", + "posterPath": "/jY95c66M8CODXtBtpfM2AQh3UuK.jpg", + "backdropPath": "/wnOyzCLRiTAdmoY8V1Dmk3AWyHg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 94, + "popularity": 4.3998 + }, + { + "id": 47990, + "title": "Grand Hotel", + "originalTitle": "Gran Hotel", + "overview": "A young man arrives at the Grand Hotel, an ideal place in the middle of the wilderness to investigate his sister's disappearance. What he ignores is that he's about to meet his greater love: the pretty and seductive daughter of the Hotel's owner. Between this young couple, of different social classes, a very passionate love will be born. A dangerous romance will be entwined with the mysteries and secrets hidden between the walls of the Grand Hotel. In The Grand Hotel no one is who we think it is, no one is free of hazards or suspicious. A complex web of lies, secrets and betrayal awaits...", + "posterPath": "/torRHecFDxYOSQ2J7q6Y90F3CWV.jpg", + "backdropPath": "/1qdqPghGXPIX49WWjhehgPSDXKi.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2011-05-10", + "releaseYear": "2011", + "originalLanguage": "es", + "voteAverage": 7.742, + "voteCount": 99, + "popularity": 4.3978 + }, + { + "id": 196454, + "title": "Queen Charlotte: A Bridgerton Story", + "originalTitle": "Queen Charlotte: A Bridgerton Story", + "overview": "The story of how the young Queen Charlotte’s marriage to King George sparked both a great love story and a societal shift, creating the world of the Ton inherited by the characters in Bridgerton.", + "posterPath": "/eR7btjpvOugivUYSoEsD2iAOYsJ.jpg", + "backdropPath": "/92R2R75gIiVo32dIm0JUaIytpij.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-05-04", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.969, + "voteCount": 620, + "popularity": 4.3946 + }, + { + "id": 62181, + "title": "Miles from Tomorrowland", + "originalTitle": "Miles from Tomorrowland", + "overview": "This intergalactic adventure charts the outer space missions of young adventurer Miles Callisto and his family – mom and ship captain, Phoebe; mechanical engineer dad, Leo; tech-savvy big sister, Loretta; and robo-ostrich pet, Merc – as they help connect the universe on behalf of the Tomorrowland Transit Authority.", + "posterPath": "/qrFeGDHg7XStVlRIxBDOTGSEZav.jpg", + "backdropPath": "/6Y9hVj4lFw8w0lsDj35ZGded7Cm.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10759, + 10765 + ], + "genres": [ + "Family", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-02-06", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 26, + "popularity": 4.3937 + }, + { + "id": 7087, + "title": "Being Human", + "originalTitle": "Being Human", + "overview": "Deciding to turn over a new leaf, a group of friends who also happen to be vampires and werewolves move into a house together, only to find that it is haunted by ghosts of people who have been killed under mysterious circumstances. As they deal with the challenges of being supernatural creatures, their desire to be human bonds them.", + "posterPath": "/rlDefnxVHcXwwm2bxPHknNRl4l.jpg", + "backdropPath": "/gkWfeC2eDk3QfKvEO7Zv8bOM732.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2009-01-25", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 225, + "popularity": 4.3932 + }, + { + "id": 33955, + "title": "Pound Puppies", + "originalTitle": "Pound Puppies", + "overview": "Lucky, Cookie and the rest of the dogs in Shelter 17 have an important secret mission: to help every dog that comes to the pound find a new home.", + "posterPath": "/qRRfKjKtYsVeEZkBmfYLYo2PEAc.jpg", + "backdropPath": "/iCIXFU1HnUaXVtGnbP0pGR0OOlR.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2010-10-10", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 10, + "popularity": 4.3901 + }, + { + "id": 203704, + "title": "Junji Ito Maniac: Japanese Tales of the Macabre", + "originalTitle": "伊藤潤二『マニアック』", + "overview": "From the mind of horror manga maestro Junji Ito comes a spine-tingling selection of some of his most bizarre, disturbing and terrifying tales.", + "posterPath": "/eE3vyu2F8upsQujhS8IP7QiG8Hm.jpg", + "backdropPath": "/tI4A1Md9J5QHARl60TsMpekSsvg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2023-01-19", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.981, + "voteCount": 131, + "popularity": 4.3899 + }, + { + "id": 5656, + "title": "The Ray Bradbury Theater", + "originalTitle": "The Ray Bradbury Theater", + "overview": "A Canadian-produced fantastic anthology series scripted by famed science-fiction author Ray Bradbury. Many of the teleplays were based upon Bradbury's novels and short stories.", + "posterPath": "/fFgcmn91k9zrlHm9WmQ1lCDD9Hs.jpg", + "backdropPath": "/ddjjHuDq4sNX94jN2P8wuTHnBrW.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1985-05-21", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 37, + "popularity": 4.389 + }, + { + "id": 44, + "title": "Adventures of Sonic the Hedgehog", + "originalTitle": "Adventures of Sonic the Hedgehog", + "overview": "A comical, light-hearted and gag-driven adventure series based on the titular character, an arrogant and mischievous yet kind-hearted teenage hedgehog with the power to move at supersonic speeds. Sonic, with his idolizing young friend Tails, regularly oppose the wicked Dr. Ivo Robotnik, his robot henchmen Scratch, Grounder and Coconuts, and thwart their plans to conquer their home planet of Mobius.", + "posterPath": "/z24YFviGeEGUgOw4TytKuC4izVM.jpg", + "backdropPath": "/q8QhJVgoCt99gKkigvkrSXAB76Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "1993-09-06", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 6.495, + "voteCount": 107, + "popularity": 4.389 + }, + { + "id": 565, + "title": "Muppet Babies", + "originalTitle": "Muppet Babies", + "overview": "The Muppet Babies (Kermit, Piggy, Gonzo, Fozzy and company) live in a large nursery watched over by Nanny. The babies have active imaginations, and often embark upon adventures into imaginary worlds.", + "posterPath": "/oJc14qy42hABKKWlQwEguFdeTdU.jpg", + "backdropPath": "/7MvcGimIdLrreRgVPhoQLq8FHjp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1984-11-05", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 121, + "popularity": 4.3878 + }, + { + "id": 402, + "title": "Still Standing", + "originalTitle": "Still Standing", + "overview": "After 18 years of marriage, high school sweethearts Bill and Judy Miller still make each other laugh and try to keep their marriage intact, even when their family pulls them in different directions. Since Bill has a far more immature approach to marriage and raising their three children than Judy does, they work at striking a balance and remembering why they love each other, quirks and all.", + "posterPath": "/iMZNlCtkdJx9q0Z04thVwSQ6Y9t.jpg", + "backdropPath": "/3hCgghAAKralrDmiFtyZvsHC9aP.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2002-09-30", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.762, + "voteCount": 61, + "popularity": 4.3876 + }, + { + "id": 69367, + "title": "Saekano: How to Raise a Boring Girlfriend", + "originalTitle": "冴えない彼女の育てかた", + "overview": "Tomoya Aki is an otaku who has a dream. His dream is to create the best visual novel game ever. The main heroine for this game and the inspiration for this dream is a background character named Megumi Kato who somehow stumbles into main character-esque traits in his eyes. To complete the game in time he has to call upon the aid of his anime loving professional friends who aren't so keen on the choice of his main heroine.", + "posterPath": "/GP7I1yKTp6giJz2fdy0LBWo4zV.jpg", + "backdropPath": "/3HvXeJzSztADlAua3l4gjawVhPC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-01-16", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 81, + "popularity": 4.3873 + }, + { + "id": 28061, + "title": "School Days", + "originalTitle": "School Days", + "overview": "A rumor states that if you take a photo of someone you like with your cellphone and keep it hidden, they'll fall for you. Will Makoto win his love by taking a picture of Kotonoha without anyone knowing?", + "posterPath": "/5JhEzJIsBLXOshoTnBaX9499I8l.jpg", + "backdropPath": "/hUiStKQC4dDSgvENR1YUMY2HUtg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-07-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 157, + "popularity": 4.3839 + }, + { + "id": 10315, + "title": "This Is Your Life", + "originalTitle": "This Is Your Life", + "overview": "This Is Your Life is an American television documentary series broadcast on NBC, originally hosted by its producer, Ralph Edwards from 1952 to 1961. In the show, the host surprises a guest, and proceeds to take them through their life in front of an audience, including special guest appearances by colleagues, friends and family.\n\nEdwards revived the show in 1971-72, while Joseph Campanella hosted a version in 1983. Edwards returned for some specials in the late 1980s, before his death in 2005. The show originated as a radio show on NBC Radio airing from 1948 to 1952.", + "posterPath": "/ot1iWBTekpduO2q6TFto7zj2hf.jpg", + "backdropPath": "/nLjkLp9D5udtgMd2UAweRrHRP9.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1952-10-01", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 12, + "popularity": 4.382 + }, + { + "id": 203, + "title": "The Sarah Jane Adventures", + "originalTitle": "The Sarah Jane Adventures", + "overview": "Sarah Jane Smith is a truly remarkable woman who inhabits a world of mystery, danger and wonder; a world where aliens are commonplace and the Earth is under constant threat. A world that Maria Jackson, a seemingly ordinary girl, can only dream of – until she moves in next door. Nothing will ever be ordinary again.", + "posterPath": "/hq0S1VtUabnORdp3l3m11OA67BP.jpg", + "backdropPath": "/cBJDOCMFAV4Ls8nZLRRj424RgID.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2007-09-24", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 112, + "popularity": 4.3818 + }, + { + "id": 79588, + "title": "Pennyworth: The Origin of Batman's Butler", + "originalTitle": "Pennyworth: The Origin of Batman's Butler", + "overview": "The origin story of Bruce Wayne's legendary butler, Alfred Pennyworth, a former British SAS soldier who forms a security company in 1960s London and goes to work with young billionaire Thomas Wayne and his wife Martha, before they become Bruce Wayne’s parents.", + "posterPath": "/mEHMfWe7pCWMelEkdrtRvVULopT.jpg", + "backdropPath": "/iSAIVuXUu7IyEzPoXRkWoaMQf8S.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2019-07-28", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 360, + "popularity": 4.3813 + }, + { + "id": 586, + "title": "Martial Law", + "originalTitle": "Martial Law", + "overview": "Sammo Law spins, kicks, and chops his way through crime as a one-man police force in Los Angeles. He's a tough law enforcer who comes to the U.S. in search of a former friend and protegée — and gets drafted as part of the LAPD.", + "posterPath": "/iLseFnM1UwzHLQxnNTiCqfRMgkx.jpg", + "backdropPath": "/bEEeg5AZElE39TKRMJ2hkoD0WR0.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "1998-09-26", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 7.117, + "voteCount": 103, + "popularity": 4.3802 + }, + { + "id": 222405, + "title": "The Tattooist of Auschwitz", + "originalTitle": "The Tattooist of Auschwitz", + "overview": "The powerful real-life story of Lali Sokolov, a Jewish prisoner who was tasked with tattooing ID numbers on prisoners' arms in the Auschwitz-Birkenau concentration camp during World War II.", + "posterPath": "/nAdgX2CmkrNaRTJelFlBkpRQO0b.jpg", + "backdropPath": "/xdsDHphOINSYytOHw4gSd4b4NPu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "2024-05-02", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.056, + "voteCount": 134, + "popularity": 4.3795 + }, + { + "id": 67773, + "title": "Dirk Gently's Holistic Detective Agency", + "originalTitle": "Dirk Gently's Holistic Detective Agency", + "overview": "A comedic thriller that follows the bizarre adventures of eccentric “holistic” detective Dirk Gently and his reluctant assistant Todd. An adaptation of Douglas Adams’ wildly successful comic novels.", + "posterPath": "/q8oMpXPEAUJJ0KztsRs5K51T2lo.jpg", + "backdropPath": "/ey9RcQXlp8hm0o7fFQfFza3JB5F.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 80 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2016-10-22", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.678, + "voteCount": 858, + "popularity": 4.3785 + }, + { + "id": 67098, + "title": "Shimmer and Shine", + "originalTitle": "Shimmer and Shine", + "overview": "Twins genies, Shimmer and Shine, grant their human friend Leah three wishes every day - unintentional chaos follows.", + "posterPath": "/2zym6tVGMYugPWUHGEYko7FwO3y.jpg", + "backdropPath": "/7PmQcndz6JpLXHql2etmi5Y1YPw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2015-05-11", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.25, + "voteCount": 16, + "popularity": 4.378 + }, + { + "id": 1952, + "title": "Mystery Science Theater 3000", + "originalTitle": "Mystery Science Theater 3000", + "overview": "A stranded spaceship pilot captured by mad scientists survives a blitz of cheesy B movies by riffing on them with his funny robot pals.", + "posterPath": "/nNeb35RFoeLwxu0CFzZ9NAI5UTA.jpg", + "backdropPath": "/dnePq1kDs0On398Oc7sVUCZgtft.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1989-11-25", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 215, + "popularity": 4.3767 + }, + { + "id": 225385, + "title": "Black Doves", + "originalTitle": "Black Doves", + "overview": "When a spy posing as a politician's wife learns her lover has been murdered, an old assassin friend joins her on a quest for truth — and vengeance.", + "posterPath": "/uoXtkm2P4HPPL8T3IBJ02G3hCC4.jpg", + "backdropPath": "/hP5pMJfxbY9p72LgEY6j9qGidtE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648, + 80 + ], + "genres": [ + "Action & Adventure", + "Mystery", + "Crime" + ], + "releaseDate": "2024-12-05", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.109, + "voteCount": 340, + "popularity": 4.3764 + }, + { + "id": 111111, + "title": "Blood of Zeus", + "originalTitle": "Blood of Zeus", + "overview": "In a brewing war between the gods of Olympus and the titans, Heron, a commoner living on the outskirts of ancient Greece, becomes mankind's best hope of surviving an evil demon army, when he discovers the secrets of his past.", + "posterPath": "/zXRR5tgGLtKrRmuN4ko9SLAdCiZ.jpg", + "backdropPath": "/5Oj9YrVNadPGMyMOCt9SDfeF3Je.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-27", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.768, + "voteCount": 583, + "popularity": 4.3751 + }, + { + "id": 91425, + "title": "Infinity Train", + "originalTitle": "Infinity Train", + "overview": "Passengers on board the mysterious Infinity Train must explore a series of endless cars that each contain unique worlds and puzzles to solve in order to unravel the mysteries of the train - and within themselves - to open the doorway home.", + "posterPath": "/wEhc48kGjoWw8qcHu2Lar7NFrgG.jpg", + "backdropPath": "/xMFRoCMrpEeS5cl7gXpJqC4PhIN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-08-05", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8.4, + "voteCount": 290, + "popularity": 4.3751 + }, + { + "id": 13826, + "title": "Monkey", + "originalTitle": "西遊記", + "overview": "Buddhist priest Tripitaka and his three disciples Monkey, Pigsy, and Sandy, travel from China to India to fetch the Buddhist scriptures. They have been sent by Buddha, and getting these scriptures will bring peace to the people of the world.", + "posterPath": "/hTD4srwd55a6zMAR56uwWqXVcgT.jpg", + "backdropPath": "/bNYQItHLn77mZ4Fp6WCTnajBvGZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1978-10-01", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 16, + "popularity": 4.3749 + }, + { + "id": 14426, + "title": "Parlamentet", + "originalTitle": "Parlamentet", + "overview": "Parlamentet is a satirical panel gameshow on on TV4, which parodies Swedish political debate. It was first broadcast in 1999 and is currently in its 23rd series. The current presenter is Anders S. Nilsson, who has hosted the show since 2004. Current team members include Babben Larsson, Robin Paulsson, Johan Rheborg and Johan Glans. Kodjo Akolor has also been featured. The program is a Swedish version of the short-run British show If I Ruled the World, which itself was as spin-off from Have I Got News For You - both produced by Hat Trick Productions. The comedians are divided into two teams, red and blue, representing traditional political colours. At the end of the show, the audience vote for the winners based on which team was funniest.", + "posterPath": "/zDYqsr3Z934ev5Gc2H9ekaTimgy.jpg", + "backdropPath": "/rserIiHLH7K6Yjb0eBrjnKmk6EW.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 35 + ], + "genres": [ + "News", + "Comedy" + ], + "releaseDate": "1999-01-18", + "releaseYear": "1999", + "originalLanguage": "sv", + "voteAverage": 5.4, + "voteCount": 14, + "popularity": 4.3744 + }, + { + "id": 236, + "title": "The Flash", + "originalTitle": "The Flash", + "overview": "When a bolt of lightening crashes through a police crime lab, a mix of electrically charged substances bathes chemist Barry Allen, transforming him into the fastest man alive--The Flash.", + "posterPath": "/fi1GEdCbyWRDHpyJcB25YYK7fh4.jpg", + "backdropPath": "/4yqH859U1oklGm4O5mFhrmtabKL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1990-09-20", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 510, + "popularity": 4.374 + }, + { + "id": 72328, + "title": "HIStory", + "originalTitle": "HIStory", + "overview": "From high school hallways to corporate boardrooms, from ghostly reunions to mob drama, HIStory tells daring BL romances across time and space.", + "posterPath": "/46eyJ81iqsF8eikoRv9BZdoXobZ.jpg", + "backdropPath": "/seTcGoritqz8gfDRsfJnGFG6Ka1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10759, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Comedy", + "Action & Adventure", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-02-14", + "releaseYear": "2017", + "originalLanguage": "zh", + "voteAverage": 7.2, + "voteCount": 42, + "popularity": 4.3735 + }, + { + "id": 224414, + "title": "You and Everything Else", + "originalTitle": "은중과 상연", + "overview": "From teen years to adulthood, two friends linked by warmth and tension grow apart — until one is asked to accompany the other through her final days.", + "posterPath": "/o6h56VuZMmBDxmpRGwCYqGkMGCj.jpg", + "backdropPath": "/5VxTROBF4YeokB5aaJXzAvFzr8j.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-09-12", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.375, + "voteCount": 16, + "popularity": 4.3734 + }, + { + "id": 95612, + "title": "Home for Christmas", + "originalTitle": "Hjem til jul", + "overview": "Tired of the constant comments on her relationship status, perpetually single Johanne starts a 24-day hunt for a boyfriend to bring home for Christmas.", + "posterPath": "/9ISBql67OPMVZtTt5ZBWD3FBQpG.jpg", + "backdropPath": "/yhzrN644c0ax3CrZnfzkQWD4aVX.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-12-05", + "releaseYear": "2019", + "originalLanguage": "no", + "voteAverage": 7.4, + "voteCount": 236, + "popularity": 4.3731 + }, + { + "id": 8114, + "title": "Lockup", + "originalTitle": "Lockup", + "overview": "Lockup explore prison facilities throughout the United States, profiling notable inmates, incidents, and prison operations.", + "posterPath": "/5vRJiZAkETxYqJm47RoTikZB3Wz.jpg", + "backdropPath": "/x6FjHEmKjLILe3LOjE5uDXNXbKk.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 18, + 80 + ], + "genres": [ + "Documentary", + "Drama", + "Crime" + ], + "releaseDate": "2005-06-04", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 12, + "popularity": 4.3721 + }, + { + "id": 96481, + "title": "Rise of Empires: Ottoman", + "originalTitle": "Rise of Empires: Ottoman", + "overview": "Ottoman Sultan Mehmed II wages an epic campaign to take the Byzantine capital of Constantinople and shapes the course of history for centuries.", + "posterPath": "/nkvdPFYo7o2IQWooJvA9UE0nvAp.jpg", + "backdropPath": "/ztruG6mR07igZWchQHiaFkND8Di.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10768, + 10759 + ], + "genres": [ + "Documentary", + "War & Politics", + "Action & Adventure" + ], + "releaseDate": "2020-01-24", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.474, + "voteCount": 329, + "popularity": 4.3716 + }, + { + "id": 90972, + "title": "Station Eleven", + "originalTitle": "Station Eleven", + "overview": "The survivors of a devastating flu attempt to rebuild and reimagine the world anew – while holding on to the best of what’s been lost.", + "posterPath": "/xWlhMOzRxUpu4uzkWcDQOaESCE.jpg", + "backdropPath": "/kiiPOuzjyIe793tgGsM5j5DaRxb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 9648 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2021-12-16", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.035, + "voteCount": 372, + "popularity": 4.3708 + }, + { + "id": 93287, + "title": "The Flight Attendant", + "originalTitle": "The Flight Attendant", + "overview": "Flight attendant Cassandra Bowden wakes in her hotel room hungover from the night before in Dubai with a dead body lying next to her. Afraid to call the police, she continues her morning as if nothing happened. In New York, she is met by FBI agents who question her about her recent layover in Bangkok. Still unable to piece the night together, she begins to wonder if she could be the killer.", + "posterPath": "/oCK0o8CWV46Z0PUdh7CKXnjD2Po.jpg", + "backdropPath": "/yfolrexaapJ1LIxGaNmGqJdo7LT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 35 + ], + "genres": [ + "Drama", + "Mystery", + "Comedy" + ], + "releaseDate": "2020-11-26", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 591, + "popularity": 4.3705 + }, + { + "id": 104699, + "title": "SHAMAN KING", + "originalTitle": "SHAMAN KING", + "overview": "Medium Yoh Asakura enters a battle tournament held every 500 years, competing with other shamans in a bid to become the all-powerful Shaman King.", + "posterPath": "/teXqFftBqZJq5xPATc3WO1BwrgG.jpg", + "backdropPath": "/k6iGYjgTKmPoMTLv7e0XjZ0VG3h.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-04-01", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 299, + "popularity": 4.3693 + }, + { + "id": 2928, + "title": "The Hardy Boys / Nancy Drew Mysteries", + "originalTitle": "The Hardy Boys / Nancy Drew Mysteries", + "overview": "The Hardy Boys/Nancy Drew Mysteries is a television series which aired for three seasons on ABC. The series starred Parker Stevenson and Shaun Cassidy as amateur sleuth brothers Frank and Joe Hardy, respectively, and Pamela Sue Martin as girl detective Nancy Drew.\n\nThe Hardy Boys/Nancy Drew Mysteries was unusual in that it often dealt with the characters individually, in an almost anthological style. That is, some episodes featured only the Hardy Boys and others only Nancy Drew.", + "posterPath": "/2gNO5CI1U46a7faNu5aJUEsFS6H.jpg", + "backdropPath": "/lcD0YyuOx8SHgmMAb6BFRfFCGdF.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10759 + ], + "genres": [ + "Mystery", + "Action & Adventure" + ], + "releaseDate": "1977-01-30", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.107, + "voteCount": 28, + "popularity": 4.3671 + }, + { + "id": 4035, + "title": "Inspector Gadget", + "originalTitle": "Inspector Gadget", + "overview": "Inspector Gadget is a clumsy, dim-witted human cyborg detective with various bionic gadgets built into his body. Gadget stumbles around working the cases while his niece and dog do most of the investigating. Gadget's arch-nemesis is Dr. Claw, the leader of an evil organisation, known as \"M.A.D.\"", + "posterPath": "/j9ePYXtL3giEJq6ZVh4kDaUU0o4.jpg", + "backdropPath": "/vWaIxifDJeKXq4igHTOE5epqcop.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-09-05", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 414, + "popularity": 4.3644 + }, + { + "id": 10458, + "title": "The Real McCoys", + "originalTitle": "The Real McCoys", + "overview": "The Real McCoys is an American situation comedy co-produced by Danny Thomas' \"Marterto Productions\", in association with Walter Brennan and Irving Pincus' \"Westgate\" company. The series aired for five seasons on the ABC-TV network from 1957 through 1962 and then for its final year on CBS from 1962 to 1963.\n\nThe series, set in the San Fernando Valley of California, was filmed in Hollywood at Desilu studios.", + "posterPath": "/2xpqTNMVtnBfXQVAR1eP5ay2UAz.jpg", + "backdropPath": "/1XF2p5Tyuq5W8R6QorwXwiDlsIB.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1957-10-03", + "releaseYear": "1957", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 12, + "popularity": 4.3635 + }, + { + "id": 2559, + "title": "Boon", + "originalTitle": "Boon", + "overview": "Boon is a British television drama and modern-day western series starring Michael Elphick, David Daker, and later Neil Morrissey. It was created by Jim Hill and Bill Stair and filmed by Central Television for ITV. It revolved around the life of a modern-day Lone Ranger and ex-firefighter, Ken Boon.", + "posterPath": "/xjbb4DLt9dnjNvSFWAy3rNZQZJU.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Crime" + ], + "releaseDate": "1986-01-14", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 13, + "popularity": 4.3631 + }, + { + "id": 218589, + "title": "Those About to Die", + "originalTitle": "Those About to Die", + "overview": "Within the spectacular, complex and corrupt world of gladiatorial sports in Ancient Rome, follow an ensemble of diverse characters across the many layers of Roman society where sports, politics and business intersect and collide.", + "posterPath": "/gvz0m4MJ8sAj6yMcQdwN07bNjRY.jpg", + "backdropPath": "/vX71TGviqLsOtDNJ9q1QR4m14kH.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-07-18", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.443, + "voteCount": 299, + "popularity": 4.3605 + }, + { + "id": 236385, + "title": "T・P BON", + "originalTitle": "T・Pぼん", + "overview": "After Bon accidentally intervenes in a Time Patrol case, he must join Agent Ream in saving innocent lives from the past — while watching history unfold.", + "posterPath": "/13HE9ZZorQ3KLQrFW2KOH0dZLlW.jpg", + "backdropPath": "/8JT2teOpP9Q8BD9R1sQKnZWG8Kb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-05-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 19, + "popularity": 4.3599 + }, + { + "id": 10808, + "title": "Tarzan", + "originalTitle": "Tarzan", + "overview": "Tarzan is a series that aired on NBC from 1966 – 1968. The series portrayed Tarzan as a well-educated character, one who, tired of civilization, had returned to the jungle where he had been raised. The show retained many of the trappings of the classic movie series, including Cheeta, while excluding other elements, such as Jane, as part of the \"new look\" for the fabled apeman that producer Sy Weintraub had introduced in previous motion pictures starring Gordon Scott, Jock Mahoney, and Mike Henry. CBS aired repeat episodes the program during the summer of 1969.", + "posterPath": "/keL3WMJW45o7rd5aKDPMG3bgf1p.jpg", + "backdropPath": "/c2upeHDXVyGoZnStyl8cZFHk0Xv.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1966-09-08", + "releaseYear": "1966", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 23, + "popularity": 4.3569 + }, + { + "id": 59717, + "title": "Comedians in Cars Getting Coffee", + "originalTitle": "Comedians in Cars Getting Coffee", + "overview": "Jerry takes his comedy pals out for coffee in a selection of his classic automobiles. Larry David sums it up best when he says, 'You've finally made a show about nothing.'", + "posterPath": "/hpK5MsFa7k7RQdClvRglBo0wAoT.jpg", + "backdropPath": "/yQDsMnXoBjNl6x6rfwAeITNcLKy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2012-07-19", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.127, + "voteCount": 161, + "popularity": 4.3557 + }, + { + "id": 63406, + "title": "THE iDOLM@STER Cinderella Girls", + "originalTitle": "アイドルマスター シンデレラガールズ", + "overview": "There are many idols with long-established talent agency 346 Production. And now the company is starting a new program, the Cinderella Project! Girls leading normal lives are chosen to be aspiring idols and see another world for the first time in this Cinderella story. Can they all climb the stairs that lead to the palace?\n\nThe magic begins now...", + "posterPath": "/o1Z73WXPziv3JjVpwfPbtoOMFfi.jpg", + "backdropPath": "/hFo8WcMktlZasmnM0tScJVhAjHn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-01-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 17, + "popularity": 4.3531 + }, + { + "id": 67106, + "title": "The Deep", + "originalTitle": "The Deep", + "overview": "The adventures of the Nekton family, a family of daring underwater explorers who live aboard a state-of-the-art submarine, The Aronnax, and explore uncharted areas of the earth's oceans to unravel the mysteries of the deep.", + "posterPath": "/3aoRvpHjuRmn76P2AVXZIBDoCdg.jpg", + "backdropPath": "/ixSG9hAB54A1dlmBOW8qTExOyzw.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10751, + 16, + 10759 + ], + "genres": [ + "Kids", + "Family", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2015-12-01", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 27, + "popularity": 4.3529 + }, + { + "id": 79788, + "title": "Watchmen", + "originalTitle": "Watchmen", + "overview": "Set in an alternate history where “superheroes” are treated as outlaws, “Watchmen” embraces the nostalgia of the original groundbreaking graphic novel while attempting to break new ground of its own.", + "posterPath": "/m8rWq3j73ZGhDuSCZWMMoE9ePH1.jpg", + "backdropPath": "/fh2CStc3fKFYhkKOFyUHBGksRWj.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10765, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2019-10-20", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.631, + "voteCount": 1517, + "popularity": 4.3521 + }, + { + "id": 46975, + "title": "Crossing Lines", + "originalTitle": "Crossing Lines", + "overview": "Through globalization, many countries have been opened and barriers removed to ensure easy trade, travel and cultural diversity. However, this openness has given opportunities to criminals looking to exploit the system and ultimately threaten our global safety. As Europe has become a \"safe house\" for criminals eluding law enforcers, a special kind of law enforcement team is needed to handle specific ongoing crimes on a global level. \"Crossing Lines\" is the story of one such team, made up of five international cops, headed by Captain Daniel. The team - comprised of individuals who have little in common - must learn to live and work under the most dangerous and potentially deadly conditions. Housed in an unused storage section underneath the ICC, this mismatched team faces bureaucratic, jurisdictional and cultural obstacles while traversing continents in pursuit of justice.", + "posterPath": "/ow8RQrZJUQfOeR5alsj9OAXoxic.jpg", + "backdropPath": "/46CHPlDDTRNyMuSMQ64FS4nUrtM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2013-08-22", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.679, + "voteCount": 117, + "popularity": 4.3507 + }, + { + "id": 5744, + "title": "Tokusou Sentai Dekaranger", + "originalTitle": "特捜戦隊デカレンジャー", + "overview": "Welcome to Megalopolis! Once a peaceful Earth city, it's now a haven for criminals aided by the nefarious Alienizer arms dealer, Agent Abrella. Now, it's up to Ban Akaza and the Special Police Dekarangers to protect the Earth from the invading Alienizers and finally bring peace and justice back to the planet.", + "posterPath": "/gnJMQ4u7lkySxahhuwZ96u69Vx2.jpg", + "backdropPath": "/hM4CnVs5wW9SI1TQkMTljsHhUE5.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 35, + 10762 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "2004-02-15", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 20, + "popularity": 4.3506 + }, + { + "id": 90855, + "title": "SAINT SEIYA: Knights of the Zodiac", + "originalTitle": "SAINT SEIYA: Knights of the Zodiac", + "overview": "Seiya and the Knights of the Zodiac rise again to protect the reincarnation of the goddess Athena, but a dark prophecy hangs over them all.", + "posterPath": "/yzfjuIkWzO0ImMEgg9fMHDzR3JP.jpg", + "backdropPath": "/lA3MKdT3QOrYGe5dg7Uzuceu8zZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-19", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.416, + "voteCount": 659, + "popularity": 4.3504 + }, + { + "id": 68388, + "title": "Insider", + "originalTitle": "İçerde", + "overview": "Even though two brothers are completely separated from each other after the imprisoning of their father and the kidnapping of their twin brother, they meet by coincidence years after when both choose to enter the police academy.", + "posterPath": "/yWoQNqdxkx1QnYbzPI2SikUdPzc.jpg", + "backdropPath": "/ex0PAmD0YpM36GKjJrEIMC3JdWD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2016-09-19", + "releaseYear": "2016", + "originalLanguage": "tr", + "voteAverage": 7.9, + "voteCount": 45, + "popularity": 4.3482 + }, + { + "id": 284219, + "title": "La Jefa", + "originalTitle": "La Jefa", + "overview": "Gloria's perfect life shatters when hitmen kill her fiancé at their wedding. Abandoned by family, pursued by enemies, and stripped of assets, she must enter the money laundering world to protect her son.", + "posterPath": "/5PpqPl6OPonNNet7dxCOxXCxkst.jpg", + "backdropPath": "/7atgiE3S0rzYhCItMn7TLUuJNud.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10766 + ], + "genres": [ + "Crime", + "Drama", + "Soap" + ], + "releaseDate": "2025-02-18", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 8.5, + "voteCount": 18, + "popularity": 4.3473 + }, + { + "id": 116041, + "title": "Love (ft. Marriage and Divorce)", + "originalTitle": "결혼작사 이혼작곡", + "overview": "Everything comes unraveling for three successful women who work on a radio show as twists, turns and troubles plague their seemingly happy marriages.", + "posterPath": "/bb82u4HyI8I469TGw2B7d1oM49.jpg", + "backdropPath": "/hkwceBwHOkog5GeDvB1tErKa3Jt.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-01-23", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 6.8, + "voteCount": 23, + "popularity": 4.3471 + }, + { + "id": 84584, + "title": "Dollface", + "originalTitle": "Dollface", + "overview": "After being dumped by her longtime boyfriend, a young woman must deal with her own imagination in order to literally and metaphorically re-enter the world of women, and rekindle the female friendships she left behind.", + "posterPath": "/bksxsGXrhsMyOsvsEbtlFH1zMTh.jpg", + "backdropPath": "/20V9t1IRs5OPWUdPNZ2nHYVsngr.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-11-15", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.964, + "voteCount": 98, + "popularity": 4.3463 + }, + { + "id": 223212, + "title": "The Impossible Heir", + "originalTitle": "로얄로더", + "overview": "An ambitious boy grows up and joins an intense war of desires to become a star of his own.", + "posterPath": "/ksIQrUoJERXBnVcxAxkMQDpzx3l.jpg", + "backdropPath": "/sXT9JVUznUwwVy3LsYeD4kCwGgv.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-02-28", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.7, + "voteCount": 44, + "popularity": 4.3462 + }, + { + "id": 83073, + "title": "A Hot Night With My Boss in a Capsule Hotel", + "originalTitle": "終電後、カプセルホテルで、上司に微熱伝わる夜。", + "overview": "The anime centers on Minori, an office worker, and her boss Hadano, who are constantly arguing with each other. One night, after a company drinking party, Minori and Hadano are having their usual argument, when Minori realizes that she has missed the last train. They decide to spend the night at a nearby capsule hotel, but an incident forces them to share the same unit. (Source: ANN)", + "posterPath": "/ogANREOg2iRnI9J1hHX6rE19v0P.jpg", + "backdropPath": "/6m3klrwIfBZlDZtbf1DR6jK9uGX.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-10-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 4.692, + "voteCount": 13, + "popularity": 4.3432 + }, + { + "id": 112833, + "title": "Juvenile Justice", + "originalTitle": "소년심판", + "overview": "A tough judge balances her aversion to minor offenders with firm beliefs on justice and punishment as she tackles complex cases inside a juvenile court.", + "posterPath": "/xH2wTVlsUlYeFEOVGFDaamHkMCm.jpg", + "backdropPath": "/eW6CqrGSRUk6xMbdCjreMQiP5W8.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-02-25", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 7.942, + "voteCount": 215, + "popularity": 4.3407 + }, + { + "id": 96120, + "title": "SUPER HxEROS", + "originalTitle": "ド級編隊エグゼロス", + "overview": "Earth faces an unprecedented threat from an invasion by the mysterious Kiseichuu. The Kiseichuu feed on human sexual energy, also known as “H-energy,” and weaken the human population.\n\nHigh school student Retto Enjo is a member of the hero group HxEROS, who fight together to save the earth from the Kiseichuu.", + "posterPath": "/myqtIeEhLxtU5eOfv0tjRhoLod8.jpg", + "backdropPath": "/kDssH6sbp3cL3qogtTBLp7s9g63.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2020-07-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 42, + "popularity": 4.3387 + }, + { + "id": 207493, + "title": "The Aristocrat's Otherworldly Adventure: Serving Gods Who Go Too Far", + "originalTitle": "転生貴族の異世界冒険録~自重を知らない神々の使徒~", + "overview": "After dying in the act of stopping a crime in modern Japan, our hero is reincarnated as Cain von Silford, third son of a noble family in a world of swords and sorcery. In his new life, all children receive a blessing from the gods...but Cain is unexpectedly blessed with an absolutely enormous, over-the-top cornucopia of magical powers. If his dream of traveling the world as a free spirit is to come true, he can't reveal too much of his potential to the wrong people. A light-hearted, escapist adventure in another world begins!", + "posterPath": "/aH3EKIPW9XRaIJQeF7EYlOe7SEK.jpg", + "backdropPath": "/k3V9eGCWmiOTKSQTBjG48pJhDHd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.102, + "voteCount": 54, + "popularity": 4.3378 + }, + { + "id": 47600, + "title": "Rogue", + "originalTitle": "Rogue", + "overview": "Grace, a morally and emotionally-conflicted undercover detective, is tormented by the possibility that her own actions contributed to her son’s death. Grace’s search for the truth is further complicated by her forbidden relationship with Jimmy, the crime boss who may have played a hand in the crime.", + "posterPath": "/fiGa4VkDw9lb2AqKUbZvNd4K1Jw.jpg", + "backdropPath": "/d3yH8mpA18XWstykMriaGqRwXTH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2013-04-03", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.708, + "voteCount": 60, + "popularity": 4.3367 + }, + { + "id": 1926, + "title": "Ed", + "originalTitle": "Ed", + "overview": "After his wife leaves him and he's fired from his job at a high-profile New York city law firm, Ed Stevens moves back to his small hometown of Stuckeyville where he buys the local bowling alley and attempts to win the heart of his high school crush.", + "posterPath": "/dkbqibIYSx2wtQRCF37O5Vnnjx8.jpg", + "backdropPath": "/6rnycSpcPmM7JX1WXbWFbfxcBpj.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2000-10-08", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.68, + "voteCount": 50, + "popularity": 4.3367 + }, + { + "id": 13189, + "title": "Chelsea Lately", + "originalTitle": "Chelsea Lately", + "overview": "Comedian Chelsea Handler spoofs celebrities, TV, movies, news, while dishing out her personal views on current events with the help of a rotating panel of comedians.", + "posterPath": "/h7kmKQKGoFv2GgDWpybqB8Zb29.jpg", + "backdropPath": "/xXjYhhXx9DdHH47gnMhsISkOTZV.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-07-16", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.5, + "voteCount": 22, + "popularity": 4.3366 + }, + { + "id": 69295, + "title": "Masamune-kun's Revenge", + "originalTitle": "政宗くんのリベンジ", + "overview": "As a child, Masamune Makabe once suffered greatly at the hands of a wealthy and beautiful girl named Aki Adagaki, who nicknamed him \"Piggy\" due to his chubby appearance. Seeking revenge against his tormentor, Masamune works hard to improve himself and returns as an incredibly handsome, albeit narcissistic, high school student. When he encounters Aki once again, he is prepared to exact vengeance.\n\nWith the aid of the rich girl's maid, Yoshino Koiwai, Masamune slowly begins to build his relationship with Aki, intending to break her heart when the time is right. However, as his friendship with Aki begins to grow, Masamune starts to question the objectives of his devious plans, and if bringing them to fruition is what his heart truly desires.", + "posterPath": "/lOkjPZ2EO0K1H0CgRAd8SLBTOav.jpg", + "backdropPath": "/iEVC4TM0CyH0AVq4BE3AnfB7tbO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-01-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.701, + "voteCount": 353, + "popularity": 4.3356 + }, + { + "id": 37851, + "title": "Digimon Fusion", + "originalTitle": "デジモンクロスウォーズ", + "overview": "Digimon Fusion, known in Japan as Digimon Xros Wars and in Malaysia as Digimon Fusion Battles, is the sixth anime children television series in the Digimon franchise by Akiyoshi Hongō, produced by Toei Animation. It follows a boy named Taiki Kudō who utilizes the power of joining together Digimon in order to save the Digital World. The series was broadcast on TV Asahi and Asahi Broadcasting Corporation between July 6, 2010 and March 25, 2012, divided into three seasons, titled Xros Wars, The Evil Death Generals and the Seven Kingdoms, and The Young Hunters Who Leapt Through Time respectively.", + "posterPath": "/4jX2k06hM9p489ML1byyBQHEKl5.jpg", + "backdropPath": "/U413c8Oojq02PNrvDPEj2juLNt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-07-06", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 47, + "popularity": 4.3354 + }, + { + "id": 113959, + "title": "Duster", + "originalTitle": "Duster", + "overview": "In 1972, the first Black female FBI agent heads to the Southwest and recruits a gutsy getaway driver in a bold effort to take down a growing crime syndicate.", + "posterPath": "/wYBsKEFU0qHdhSI9QtQjL8HELMn.jpg", + "backdropPath": "/8UuyKCIaX0MqcECmcgPxFCANkq4.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-05-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.155, + "voteCount": 58, + "popularity": 4.3352 + }, + { + "id": 245842, + "title": "Wistoria: Wand and Sword", + "originalTitle": "杖と剣のウィストリア", + "overview": "In a world where magic reigns, Will Serfort can’t cast a spell. Though hardworking, Will’s classmates think less of him for it. However, he has a secret strength: his sword. Can Will defy expectations with muscle over magic and blade over wand? Find out in this epic sword-and-sorcery adventure!", + "posterPath": "/gxYKhO0GuPAeCb3llknWu53bYYS.jpg", + "backdropPath": "/7sGeLiMVrD0QyKWjhEbLWmZIj2w.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 84, + "popularity": 4.3343 + }, + { + "id": 79792, + "title": "Love Island Australia", + "originalTitle": "Love Island Australia", + "overview": "The Australian version of the hit UK's reality show, Love Island. In Mallorca, Spain, 10 Aussie singles will play the ultimate game of love. After finding their match, they must stay together while surviving temptations as new singles enter the villa.", + "posterPath": "/ogkVvAeQT65FtEdKwu7JzB7RX35.jpg", + "backdropPath": "/e4HxxfDlSmlOzXaNoSuNZLX9IA7.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2018-05-27", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 5, + "voteCount": 37, + "popularity": 4.3337 + }, + { + "id": 53918, + "title": "Encouragement of Climb", + "originalTitle": "ヤマノススメ", + "overview": "Aoi prefers indoor hobbies and is afraid of heights, but her childhood friend Hinata loves to show off her passion for mountain climbing. As young children they once watched the sunrise from the top of a mountain, and now they've decided to take up mountain climbing in hopes of seeing that sunrise again. They have cooking battles with mountaineering gear, climb small hills in their neighborhood, and meet new mountaineering friends as they learn the ropes of the hobby. When will they finally see that sunrise again?", + "posterPath": "/rWTWz0GOw6WEzbAa5OUIpP3Ec9q.jpg", + "backdropPath": "/s8z3AiRHlwE1xgqrE9S542ohqOE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2013-01-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 25, + "popularity": 4.3334 + }, + { + "id": 21781, + "title": "The Super Hero Squad Show", + "originalTitle": "The Super Hero Squad Show", + "overview": "The Super Hero Squad Show is an American cartoon series by Marvel Animation. It is based on the Marvel Super Hero Squad action figure line from Hasbro, which portray the Avengers, the X-Men, and various other characters of the Marvel Universe in a cartoonish super-deformed-style. It is also a self-aware parody of the Marvel characters, with influences taken from on the comedic Mini Marvels series of parody comic books, in that the heroes tend to find themselves in comedic situations, and have cartoonish bents in comparison to their usually serious personalities, and is an overall comedic take on the Avengers. The series' animation was produced by Film Roman and Marvel Animation.", + "posterPath": "/3CdaaPZdU1Xv2c6hDaSVWhsXtuO.jpg", + "backdropPath": "/tSbZytA2RSLVXgEjTNTb27ZkvjZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2009-09-14", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.496, + "voteCount": 126, + "popularity": 4.3318 + }, + { + "id": 67780, + "title": "Easy", + "originalTitle": "Easy", + "overview": "This eclectic, star-studded anthology follows diverse Chicagoans fumbling through the modern maze of love, sex, technology and culture. First dates, friends with benefits, couples with kids. Whatever your relationship status is, it's always complicated.", + "posterPath": "/uh0pHb6JV0m6Vjmz1tGhohr9B7y.jpg", + "backdropPath": "/ng7BUy4OHKyD5QeZnobdjzf8RrM.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2016-09-22", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.984, + "voteCount": 160, + "popularity": 4.3309 + }, + { + "id": 93660, + "title": "A Little Late with Lilly Singh", + "originalTitle": "A Little Late with Lilly Singh", + "overview": "The comedian, actress, social media sensation, producer and author of \"How to Be a Bawse: A Guide to Conquering Life,\" Lilly Singh brings her unique perspective to late night as she hosts celebrity interviews, talks current events, performs musical and sketch comedy, plays games, and more.", + "posterPath": "/1o8OOaHP4JTKCSDDgsBrkRZVA1O.jpg", + "backdropPath": "/lZbSA0xExNp6XabNa5Hqwab9th5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2019-09-16", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 3.6, + "voteCount": 36, + "popularity": 4.3294 + }, + { + "id": 1528, + "title": "Phil of the Future", + "originalTitle": "Phil of the Future", + "overview": "Meet the Diffy family, a futuristic family from the year 2121. When the eccentric dad, Lloyd, rents a time machine for their family vacation, everyone is excited. But then something goes wrong. Their time machine malfunctions and they are thrown out of the space/time continuum in the year 2004.", + "posterPath": "/Aq3GfvfcWnaI8IgQwocz6mhNkzb.jpg", + "backdropPath": "/onJsk0SgdIeUDoX7kOEnfyhx9TO.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10751, + 10762 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2004-06-18", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.683, + "voteCount": 71, + "popularity": 4.3267 + }, + { + "id": 46087, + "title": "Uni", + "originalTitle": "Универ", + "overview": "The son of oligarch Sylvestre Sergeev, Sasha, fled from the university in London, where he studied finance, and entered the astronomical department of the physics department of a Moscow university. Sylvester Andreevich wants to return his son to his former life, but he wants to live \"among the people\" and wants to achieve everything in life himself. In parallel with this, many funny situations happen to the heroes of the series.", + "posterPath": "/98k931imEOxoPzphHELObRfNknH.jpg", + "backdropPath": "/tH3tvJ9JKw2zkQqNGy22cE92WVY.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2008-08-25", + "releaseYear": "2008", + "originalLanguage": "ru", + "voteAverage": 6, + "voteCount": 43, + "popularity": 4.3261 + }, + { + "id": 56354, + "title": "Minami-ke", + "originalTitle": "みなみけ", + "overview": "There are three of the Minami sisters: Haruka, Kana and Chiaki, who have an average life. The girls only have each other to depend on and help each other get through everything from love confessions to cooking.", + "posterPath": "/zgdsmw06yv8JeLzw4Vp1ODgSrjj.jpg", + "backdropPath": "/aE01glYvPayPVK1loGmttVUWQeP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-10-08", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.222, + "voteCount": 27, + "popularity": 4.3238 + }, + { + "id": 13008, + "title": "TMZ", + "originalTitle": "TMZ", + "overview": "Based on the popular gossip website, this entertainment newsmagazine delivers daily updates on Hollywood's rich, beautiful and screwed-up. The program often shows highlights of the day's staff meeting during which reporters pitch ideas for stories to air that day.", + "posterPath": "/qotUEfomNK4r1ZVPVNAbXHon8Oh.jpg", + "backdropPath": "/fBe7YuZH03raDtrp2ooHtAICOJm.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 35 + ], + "genres": [ + "News", + "Comedy" + ], + "releaseDate": "2007-09-10", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 22, + "popularity": 4.3237 + }, + { + "id": 11258, + "title": "McHale's Navy", + "originalTitle": "McHale's Navy", + "overview": "An experienced South Pacific Sea Dog by the name of Quinton McHale, was commissioned as a Lieutenant Commander into the U.S. Navy Reserve at the start of World War II.\n\nMcHale was made the Skipper of the Torpedo Patrol (PT) Boat #73 stationed at the U.S. Naval Installation on the island of Taratupa in the Southwest Pacific.\n\nThe 73 'Family' included, among others, a con man and amateur Magician, a womanizing hunk, a dedicated Family man, a guitar-playing, moonshine-making Tennessee good ol' boy, and even a deserter from the Japanese Navy, who was an excellent cook.", + "posterPath": "/fTbprFBTt4lZb9CQpHZ4FR4BAHk.jpg", + "backdropPath": "/41vLAcBrxwJd3wO9hAZhGHDRUlQ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1962-10-11", + "releaseYear": "1962", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 25, + "popularity": 4.3222 + }, + { + "id": 96650, + "title": "The Adventures of Paddington", + "originalTitle": "The Adventures of Paddington", + "overview": "Journey to London for heart-warming adventures with beloved British bear Paddington in this CG-animated series, which centres on a younger Paddington as he writes letters to Aunt Lucy celebrating the new things he has discovered through the day’s exciting activities.", + "posterPath": "/8kueFMhO5zvrXgBtM8mdEOJRV2D.jpg", + "backdropPath": "/r4ymAKfEBtz6bXRf7e12Xn0RZFe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2019-12-20", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.786, + "voteCount": 13, + "popularity": 4.32 + }, + { + "id": 99995, + "title": "I'm Standing on a Million Lives", + "originalTitle": "100万の命の上に俺は立っている", + "overview": "Ninth grader Yotsuya Yuusuke is practical, friendless, and not active in any clubs. Then one day, he and two female classmates are suddenly sent to another world where they must work together to battle for their lives. Yotsuya is a lone wolf and has always lived his life according to his wants, but how will that work out now that he’s supposed to be a hero?!", + "posterPath": "/vdUva7C2B1wZI2D4vjBSWJIc8IG.jpg", + "backdropPath": "/esBYtd4HLuEd5E1vlbTdBdgcdfe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 61, + "popularity": 4.3197 + }, + { + "id": 1394, + "title": "Ninja Sentai Kakuranger", + "originalTitle": "忍者戦隊カクレンジャー", + "overview": "It's been a long time since the great war between the Three God Generals and the Youkais, an ancient race of monstrous spirits. Since then, imprisoned in a cave protected by the mystical Seal Door, their leader Daimaou and his Youkai army wait, planning for the day they can finally strike. That day has arrived and it is up to the Kakurangers, along with the Three God Generals, to defeat the Youkais, before Daimaou's villainy destroys Earth!", + "posterPath": "/zxInqzS33cyk9Af2m9ftfi6cMQS.jpg", + "backdropPath": "/m4nUjyQFiawhcViG2CkWNI7MdMl.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1994-02-17", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 10, + "popularity": 4.3196 + }, + { + "id": 39845, + "title": "The Voice", + "originalTitle": "The Voice", + "overview": "Contestants compete in a singing competition that focuses on the quality of their voice.", + "posterPath": "/t79aBTcPC4vEeeDMv8cWE9tnVwe.jpg", + "backdropPath": "/sjmrwVdhUEz7apAzKXQ5u5mDpLi.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2012-04-15", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 5.593, + "voteCount": 27, + "popularity": 4.3195 + }, + { + "id": 44684, + "title": "Nichijou: My Ordinary Life", + "originalTitle": "日常", + "overview": "Follow the adventures of three ordinary girls as they make life’s awkward moments a thousand times worse. Along with a colorful bunch of classmates, they learn their most important lessons the hard way. Meanwhile down the street, a pocket-sized professor makes life difficult for a robot who just wants to be normal. But normal is the last thing you can expect in a town where salmon falls from the sky. In fact, the only thing you can count on is your friends, but even they are totally weird.", + "posterPath": "/qmi1VpOvPFRHg02fbLuc3pVrMbt.jpg", + "backdropPath": "/4JVsZUZjZJgz7KZ70YRVzhdjgpK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.419, + "voteCount": 135, + "popularity": 4.3183 + }, + { + "id": 5895, + "title": "FLCL", + "originalTitle": "フリクリ", + "overview": "Naota is a normal boy who kills some time with a normal girl by a stream that flows underneath a bridge. Nothing unusual happens in this town. The fact that Haruhara Haruko crashes into the main character with her Vespa a short while later and subsequently hits him over the head with her Rickenbacker 4003 bass guitar doesn’t really make any difference to any other day here. The at first glance unconnected, bizarre events that don’t seem to follow any pattern whatsoever don’t change anything about Naota’s boring life, either – because nothing incredible ever happens in this town.", + "posterPath": "/FkgA8CcmiLJGVCRYRQ2g2UfVtF.jpg", + "backdropPath": "/uiBb01nmHwyVTSILSMKJ4WIvijc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-04-26", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 7.946, + "voteCount": 398, + "popularity": 4.3173 + }, + { + "id": 2925, + "title": "BeastMaster", + "originalTitle": "BeastMaster", + "overview": "BeastMaster chronicles the adventures of Dar, the last surviving male of the storied Sula tribe, who is blessed with the ability to communicate telepathically with the animals of his ancient world. Also endowed with the strength, courage and fighting skills of a great warrior, he uses his gifts to defend all living creatures oppressed by the forces of evil.", + "posterPath": "/kp0BYJwFfPlkSejAoIGc2GR77bD.jpg", + "backdropPath": "/h1dnWZILgbeXeGWFfpALq6pg3Nn.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-10-09", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 53, + "popularity": 4.314 + }, + { + "id": 70649, + "title": "While You Were Sleeping", + "originalTitle": "당신이 잠든 사이에", + "overview": "Nam Hong Ju, endowed with the ability to foresee events, resides with her widowed mother who runs a small restaurant. Despite her gift, she often finds herself powerless to change the outcomes. On the other side of the street, Jung Jae Chan, a rookie prosecutor, and his younger brother Seung Won become their new neighbors. An unusual dream involving Hong Ju, ruthless attorney Lee Yu Beom, and a life-saving intervention leads Jae Chan to realize their destinies are intertwined, as they begin sharing dreams and connecting in mysterious ways.", + "posterPath": "/g809WCxgOKWXip47Epmwh1ttmVP.jpg", + "backdropPath": "/riBZVXvjQYSZEV0l2XZcDAwr0wO.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-09-27", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 8.4, + "voteCount": 137, + "popularity": 4.3129 + }, + { + "id": 231260, + "title": "Playboyy", + "originalTitle": "เล่นจนเป็นเรื่อง", + "overview": "Three friends dive into the dark side of the sex industry to find a missing person, facing their own fears and desires along the way.", + "posterPath": "/7Ewd3BLkE5MshNFxDFAdmDYvXkS.jpg", + "backdropPath": "/zw7jm3EzJmmzoq8LrRC46bgr1Fc.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2023-11-16", + "releaseYear": "2023", + "originalLanguage": "th", + "voteAverage": 7.8, + "voteCount": 11, + "popularity": 4.312 + }, + { + "id": 64165, + "title": "Call My Agent!", + "originalTitle": "Dix pour cent", + "overview": "At a top Paris talent firm, agents scramble to keep their star clients happy—and their business afloat—after an unexpected crisis.", + "posterPath": "/3whFzxzeKuTIgPzm2c0pm5xAhEL.jpg", + "backdropPath": "/4hmHHZnanKEb1fLTkmYePvENmuI.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2015-10-14", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 7.7, + "voteCount": 184, + "popularity": 4.3118 + }, + { + "id": 99962, + "title": "McDonald & Dodds", + "originalTitle": "McDonald & Dodds", + "overview": "Two detectives, DCI McDonald and DS Dodds, who seemingly have nothing in common, are thrown together and forge a rumbustious friendship and entertaining partnership.", + "posterPath": "/yR9oUsGFsGOBcygzjF0cA2c45bx.jpg", + "backdropPath": "/1H2L8QnfSmpHsFjPnoQMWgjPhBW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80, + 35 + ], + "genres": [ + "Drama", + "Mystery", + "Crime", + "Comedy" + ], + "releaseDate": "2020-03-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 55, + "popularity": 4.3106 + }, + { + "id": 71761, + "title": "Taskmaster Sweden", + "originalTitle": "Bäst i test", + "overview": "Swedish version of Taskmaster.", + "posterPath": "/5O6BQNKbobbXQ9UXghcStrxaOEE.jpg", + "backdropPath": "/cwCsuhZvpO6CDKYyE8wPqbKGcWh.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-03-10", + "releaseYear": "2017", + "originalLanguage": "sv", + "voteAverage": 7.4, + "voteCount": 16, + "popularity": 4.3099 + }, + { + "id": 157383, + "title": "The Golden Spoon", + "originalTitle": "금수저", + "overview": "Would you trade your poor but loving family for a life of riches? When Seung Cheon gets his hands on a magical spoon that allows him to switch lives with his rich best friend, he thinks it’s a no-brainer. But life-altering decisions are always accompanied by a sense of doubt, and with only three chances to change his mind, Seung Cheon has to decide which of his two possible futures is worth keeping.", + "posterPath": "/1fJcOnUsRlpiCSt3J35T1Ga9UHV.jpg", + "backdropPath": "/zFxqn3zMlH13Ld2JIpYT33oA73S.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-09-23", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 7, + "voteCount": 44, + "popularity": 4.3096 + }, + { + "id": 100436, + "title": "Akudama Drive", + "originalTitle": "アクダマドライブ", + "overview": "Many years ago, a Great Civil War ravaged Japan, leaving the country fragmented between two regions: Kansai and Kanto. In Kansai, a group of six Akudama carry out missions given to them by a mysterious black cat, while evading the police. But a dangerous journey is about to unfold when a civilian girl becomes twisted into the Akudama's way of life and witnesses their criminal drives.", + "posterPath": "/1s3fwsH3AjuyzObYHiptiYRgFa.jpg", + "backdropPath": "/9guUQdqCWB1P6yK35p6UJ7lhQVw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2020-10-08", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 157, + "popularity": 4.3094 + }, + { + "id": 56425, + "title": "Baki the Grappler", + "originalTitle": "グラップラー刃牙", + "overview": "Baki Hanma is a young fighter who yearns to follow in the footsteps of his father, Yujiro, and become the strongest fighter in the world. Through that he trains tirelessly and fights constantly to hone his skills and develop his body to achieve these goals. Many intense battles lay ahead of Baki as he goes about his quest to be the best and ultimately take the title of \"King\" from his father.", + "posterPath": "/2iafrubNKwB7iA7z8Y1TkHyOrsh.jpg", + "backdropPath": "/n25EHQeXdmtfTxUDpPFy8ZCnKie.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2001-01-08", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.878, + "voteCount": 333, + "popularity": 4.3081 + }, + { + "id": 75191, + "title": "The Terror", + "originalTitle": "The Terror", + "overview": "A chilling anthology series featuring stories of people in terrifying situations inspired by true historical events.", + "posterPath": "/bKkOcso0YuCBK7dixkn3VSd0dUr.jpg", + "backdropPath": "/ssyZgYScV9eClakZDwu4sPrgMmy.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 10765 + ], + "genres": [ + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-03-26", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 928, + "popularity": 4.3076 + }, + { + "id": 72305, + "title": "Kakegurui", + "originalTitle": "賭ケグルイ", + "overview": "Hyakkaou Private Academy. An institution for the privileged with a very peculiar curriculum. You see, when you're the sons and daughters of the wealthiest of the wealthy, it's not athletic prowess or book smarts that keep you ahead. It's reading your opponent, the art of the deal. What better way to hone those skills than with a rigorous curriculum of gambling? At Hyakkaou Private Academy, the winners live like kings, and the losers are put through the wringer. But when Yumeko Jabami enrolls, she's gonna teach these kids what a high roller really looks like!", + "posterPath": "/xsZOMx3ojsER12lRHNe7TcT7YqM.jpg", + "backdropPath": "/n35AGT8JMMcbdPMxXLg4KMUuLx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Crime" + ], + "releaseDate": "2017-07-01", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.148, + "voteCount": 1532, + "popularity": 4.3058 + }, + { + "id": 226529, + "title": "Light Shop", + "originalTitle": "조명가게", + "overview": "In a mysterious shop that sells lamps, the dead may return to the world of the living, while the living may not walk out alive.", + "posterPath": "/iRgH73xibpeNZ8zzPDkIpxuoKgC.jpg", + "backdropPath": "/bGcMuFVzW0LitMJWSzp4EjmzQ0b.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2024-12-04", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.435, + "voteCount": 210, + "popularity": 4.3053 + }, + { + "id": 84619, + "title": "Kaitou Sentai Lupinranger vs. Keisatsu Sentai Patranger", + "originalTitle": "快盗戦隊ルパンレンジャーVS警察戦隊パトレンジャー", + "overview": "The Lupin Collection, a vast ensemble of dangerous items acquired by the legendary gentleman thief Arsène Lupin, is stolen by an interdimensional crime syndicate known as the Ganglars. However, they receive opposition from two Super Sentai teams: the Lupinrangers, who aim to steal back the collection to live up their namesake's reputation and save those they have lost, and the Patrangers, who are tasked with upholding justice by retrieving the collection and taking down the Gangler.", + "posterPath": "/rF8ev6C92BhltZTbS2wz9AmSpRc.jpg", + "backdropPath": "/eVaNJRpo0NGip1zIndO73P2vmis.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 10762 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2018-02-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 11, + "popularity": 4.3053 + }, + { + "id": 278704, + "title": "Mobile Suit Gundam GQuuuuuuX", + "originalTitle": "機動戦士Gundam GQuuuuuuX(ジークアクス)", + "overview": "High-school student Amate Yuzuriha lives peacefully in a space colony floating in outer space. But when she meets a war refugee named Nyaan, Amate is drawn into the illegal mobile suit dueling sport known as Clan Battle.", + "posterPath": "/jb5d4vqHmKSQh9rB2T394e3z5To.jpg", + "backdropPath": "/rJMsUShjVc4vYwiAEZyKuQ94BX9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-04-09", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 32, + "popularity": 4.3046 + }, + { + "id": 101099, + "title": "Fairies Albums", + "originalTitle": "百妖谱", + "overview": "To casual observers, Tao Yao appears to be nothing more than an ordinary young girl. In fact, she is anything but. Tao Yao is actually a spirit healer. And her goal is not to treat people, but animals, monsters, and spirits who have found themselves in precarious situations. But she is not alone in her quest. She has also been joined by a diminutive monk named Mo Ya and Liu Gon Zi, a snake demon who has taken control of a man’s body. Will this motley crew help rescue the spirits and monsters who need Tao Yao’s help?", + "posterPath": "/fYUoMOep9Gb7vxpJbFDG9PyjWHA.jpg", + "backdropPath": "/sYRl90qkg2LePROZUl4Hho2vVI8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-25", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 8.2, + "voteCount": 13, + "popularity": 4.3026 + }, + { + "id": 243083, + "title": "Flourished Peony", + "originalTitle": "国色芳华", + "overview": "He Weifang, the daughter of a merchant, partners with the infamous Jiang Changyang to run a flower business, empowering women and challenging societal norms. As their bond deepens, He Weifang uncovers Jiang Changyang's true identity and is inspired to focus on ventures that benefit the greater good.", + "posterPath": "/4Kuw2vKrYaw6hBAL2IE3LNtvEzU.jpg", + "backdropPath": "/r5sLAaPcG0faL0AY9zzLQFb0EpP.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-01-07", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.6, + "voteCount": 14, + "popularity": 4.3009 + }, + { + "id": 74739, + "title": "UniKitty!", + "originalTitle": "UniKitty!", + "overview": "As ruler of the kingdom, Unikitty has busy days full of royal responsibilities. Unikitty is most interested in making sure everyone is happy and ridding the kingdom of negativity, but don't misunderstand her optimism, she is one kitty not to be crossed. While she may be full of boundless energy and creativity, Unikitty is a force to be reckoned with if anyone gets in the way of spreading her positive vibes, especially if anyone makes her little brother and best friend, Puppycorn, sad. Also living in the castle are Dr. Fox, the resident scientist, and Unikitty's trusty bodyguard, Hawkodile. Through it all, Unikitty and her friends make sure that every day is the happiest and most creative ever.", + "posterPath": "/tPpWpCmd7gx3ksYWQR7qRW86lvO.jpg", + "backdropPath": "/hVlRg8S1MBRIJaNzlq98ajb7HE.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2017-10-28", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 24, + "popularity": 4.2999 + }, + { + "id": 2886, + "title": "Flipper", + "originalTitle": "Flipper", + "overview": "Flipper, from Ivan Tors Films in association with Metro-Goldwyn-Mayer Television, is an American television program first broadcast on NBC from September 19, 1964, until April 15, 1967. Flipper, a bottlenose dolphin, is the companion animal of Porter Ricks, Chief Warden at fictional Coral Key Park and Marine Preserve in southern Florida, and his two young sons, Sandy and Bud. The show has been dubbed an \"aquatic Lassie\", and a considerable amount of juvenile merchandise inspired by the show was produced during its first-run.", + "posterPath": "/20EltUp6f3dqY3YQBcVY8T2scuH.jpg", + "backdropPath": "/sJYv5oQGqhNSsZFPITHEOLUTJpo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10751, + 18 + ], + "genres": [ + "Action & Adventure", + "Family", + "Drama" + ], + "releaseDate": "1964-09-19", + "releaseYear": "1964", + "originalLanguage": "en", + "voteAverage": 6.118, + "voteCount": 51, + "popularity": 4.299 + }, + { + "id": 34708, + "title": "Genshiken", + "originalTitle": "げんしけん", + "overview": "Sasahara Kanji is a college freshman who decides to join a student society to share his hidden thoughts on manga, anime and gaming. As he participates in club activities such as visiting dojin shops and anime festivals he opens his mind and resolves that he will make his way into the otaku world.", + "posterPath": "/erC2U9IB0eIJpecKE6QxuK9Rkab.jpg", + "backdropPath": "/h9IQsx7dMMJPDPRIKS44utEQOfP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-10-11", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 35, + "popularity": 4.298 + }, + { + "id": 9957, + "title": "The Mask: Animated Series", + "originalTitle": "The Mask: Animated Series", + "overview": "Insecure bank clerk Stanley Ipkiss uses an ancient mask to gain superpowers while taking on the mischievous and cartoonish, but heroic and good-hearted personality of The Mask", + "posterPath": "/8IuTg9XaviDwpfm99IXUUPukrVA.jpg", + "backdropPath": "/kCn0YRqJyhjiyP7hTtLnEVLyYvk.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 10759, + 10765 + ], + "genres": [ + "Family", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-08-12", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.193, + "voteCount": 496, + "popularity": 4.2969 + }, + { + "id": 275216, + "title": "Somewhere Somehow", + "originalTitle": "รัก ปาก แข็ง", + "overview": "Kee, a cool tsundere, and Peem, a mischievous rich girl, become inseparable friends. No one knows the truth, though, that really, they've been secretly in love with one another since high school. From handmade pork floss, a gear necklace as a token of love, to an accidental first kiss, hearts will be racing. But love is never so easy, and fate plays its tricks. The two are separated and it will be seven years before they meet again... as boss and employee.", + "posterPath": "/d8YvEerCNvKpfXoJHpvp2XvqjKY.jpg", + "backdropPath": "/6r33JZ6wM0S7dRvGsi942UVUnvV.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2025-08-08", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 9.8, + "voteCount": 27, + "popularity": 4.2962 + }, + { + "id": 89959, + "title": "Strangers from Hell", + "originalTitle": "타인은 지옥이다", + "overview": "Unpleasant events disturb the life of an aspiring crime fiction writer when he becomes a resident of an apartment building teeming with shady neighbors.", + "posterPath": "/o66rEzPzZZWxSrcus2f46CedHhq.jpg", + "backdropPath": "/d607EV6DKTPv9QajQ3sSRJhG3dJ.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2019-08-31", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 8.1, + "voteCount": 130, + "popularity": 4.296 + }, + { + "id": 10838, + "title": "Dear John", + "originalTitle": "Dear John", + "overview": "Dear John starred Judd Hirsch as easygoing Drake Prep high school teacher John Lacey who is dumped by his wife, Wendy, via a Dear John letter. Wendy ends up with everything in the divorce settlement, including custody of the couple's son, forcing John to move into an apartment in Ozone Park, Queens. John soon joins the One-2-One Club, a self help group for divorced, widowed or lonely people. The group is led by Louise (Jane Carr), a sex-obsessed British woman. Other members of the group include Kate McCarron (Isabella Hofmann), a sweet divorcée; Kirk Morris (Jere Burns), a cocky ladies' man; Ralph Drang (Harry Groener), a shy and neurotic tollbooth collector; Bonnie Philbert (Billie Bird), a feisty senior citizen; and Tom, Mrs. Philbert's quiet boyfriend (Tom Willett).", + "posterPath": "/r4P8x0k5O7SOFkZB6e9y3IJHR7p.jpg", + "backdropPath": "/xfjvqLE3JklZB8ARZ0iWLFBdAXe.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1988-10-06", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 18, + "popularity": 4.295 + }, + { + "id": 2966, + "title": "Crime Story", + "originalTitle": "Crime Story", + "overview": "The hard-boiled saga of hair-trigger cop Lieutenant Mike Torello and his obsessive pursuit of ruthless gangster Ray Luca.", + "posterPath": "/he4iKKlgXnT7kPAjvYFeREiHPmj.jpg", + "backdropPath": "/pCF7Pyuy7bioVx1PIeRu9vTI1Tu.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10759, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "1986-09-19", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.971, + "voteCount": 70, + "popularity": 4.2947 + }, + { + "id": 79618, + "title": "City on a Hill", + "originalTitle": "City on a Hill", + "overview": "In early 90s Boston, an African-American District Attorney comes in from Brooklyn advocating change and forms an unlikely alliance with a corrupt yet venerated FBI veteran invested in maintaining the status quo. Together they take on a family of armored car robbers from Charlestown in a case that grows to encompass and eventually upend Boston’s city-wide criminal justice system.", + "posterPath": "/rxa00ipClA8SUQxTdZQOyt2NlB8.jpg", + "backdropPath": "/yFa7wVytud4D7BDp5e5yk8mLwpK.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2019-06-16", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 172, + "popularity": 4.2944 + }, + { + "id": 3814, + "title": "All That", + "originalTitle": "All That", + "overview": "A zany sketch comedy featuring many wacky characters hosted for kids and by kids.", + "posterPath": "/ve8xcICNeTQqY99jnSmmEqXa0wP.jpg", + "backdropPath": "/ouYCVksfFXZgI1D0G9A5izh3YMg.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1994-04-16", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 7.703, + "voteCount": 32, + "popularity": 4.2943 + }, + { + "id": 48175, + "title": "A Polish Family", + "originalTitle": "rodzinka.pl", + "overview": "Ludwik and Natalia Boski navigate the chaos of raising three children while also managing their busy careers.", + "posterPath": "/mlDzytURLa1AOSxjgLsyf88Vq3J.jpg", + "backdropPath": "/dlbfhHqBIPtqnQ09Rc2GPfaivn3.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-03-02", + "releaseYear": "2011", + "originalLanguage": "pl", + "voteAverage": 6.3, + "voteCount": 15, + "popularity": 4.2935 + }, + { + "id": 60804, + "title": "The Night Shift", + "originalTitle": "The Night Shift", + "overview": "The stories of the men and women who work the overnight shift at San Antonio Memorial Hospital. They are an irreverent and special breed, particularly adrenaline junkie T.C. Callahan.", + "posterPath": "/qSfjudewdGEHAva8LvlbyH0ydof.jpg", + "backdropPath": "/ccShG5F2gn12yAQnDOnoI29dImJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-05-27", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 241, + "popularity": 4.293 + }, + { + "id": 272512, + "title": "Our Youth", + "originalTitle": "未成年~未熟な俺たちは不器用に進行中~", + "overview": "Jin Minase, a dedicated student, finds his routine disrupted when he repeatedly encounters Hirukawa, a classmate from a rough neighborhood. Their unexpected interactions make Jin question his own life choices.", + "posterPath": "/wgjVCLLzDmH3Y5leC8mStrblhrG.jpg", + "backdropPath": "/oWTWIOAH0sof449XFIwa3lgyFpS.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.9, + "voteCount": 26, + "popularity": 4.2915 + }, + { + "id": 202318, + "title": "Crash Course in Romance", + "originalTitle": "일타 스캔들", + "overview": "The series follows the bittersweet relationship between a banchan shop owner whose daughter enters the war of Korea's college entrance exams, and a top hagwon instructor.", + "posterPath": "/88rQREli2xtoDV6HToJysp71ZL7.jpg", + "backdropPath": "/16M5khLLfZJCb2y9JlyujiGPPBQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2023-01-14", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.222, + "voteCount": 116, + "popularity": 4.2894 + }, + { + "id": 66256, + "title": "Love in the Moonlight", + "originalTitle": "구르미 그린 달빛", + "overview": "A young Joseon woman who's lived her whole life as a man ends up as a eunuch in the royal palace, where she begins to bond with the crown prince.", + "posterPath": "/qKir5S1ka8UkWVo8aGW9T19IIHC.jpg", + "backdropPath": "/1nvdHIVrCuJahMAXYcSx2Mh9bPt.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10768 + ], + "genres": [ + "Comedy", + "Drama", + "War & Politics" + ], + "releaseDate": "2016-08-22", + "releaseYear": "2016", + "originalLanguage": "ko", + "voteAverage": 6.927, + "voteCount": 96, + "popularity": 4.2876 + }, + { + "id": 42887, + "title": "Sayonara Zetsubou Sensei", + "originalTitle": "さよなら絶望先生", + "overview": "A teacher takes all aspects of life, word and culture in the most negative light possible.", + "posterPath": "/276AsHWttACemazdqLx9E9Iio2m.jpg", + "backdropPath": "/nslpQg01ZcjzDBUjlgB39fGnJOK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-07-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.179, + "voteCount": 39, + "popularity": 4.2868 + }, + { + "id": 111551, + "title": "Haireta mou ton Platano", + "originalTitle": "Χαιρέτα μου τον Πλάτανο", + "overview": "The small Greek village of Platanos (Plane Tree) buries the elderly recluse Vangelas and notifies the deceased's estranged children and grandchildren about his death. Vangela's will leaves 3 million euros to his family, but requires them to move to the village and obey certain terms in order to inherit.", + "posterPath": "/vAu6or1W4G1q7wJxQfDmATtnIg.jpg", + "backdropPath": "/1vgdmeW6keP47DQ1tGwfVCdUKqu.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2020-10-12", + "releaseYear": "2020", + "originalLanguage": "el", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 4.2834 + }, + { + "id": 304849, + "title": "50 Seconds: The Fernando Báez Sosa Case", + "originalTitle": "50 segundos: El caso Fernando Báez Sosa", + "overview": "This documentary series explores the case of Fernando Báez Sosa, whose fatal beating by a group of young men was caught on video, shocking Argentina.", + "posterPath": "/voMljae3BXWo63qnM9QikVJpUK.jpg", + "backdropPath": "/AiH3pDVAxt485WzCaBjRQHcP599.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 80 + ], + "genres": [ + "Documentary", + "Crime" + ], + "releaseDate": "2025-11-13", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.577, + "voteCount": 13, + "popularity": 4.2831 + }, + { + "id": 158226, + "title": "The Dolls", + "originalTitle": "The Тёлки", + "overview": "The roaring twenties of the new century. The era of messengers, electronic cigarettes and universal digitalization. The main character is Andrey Mirkin, a promising head of a PR agency. He owes his success and beautiful life to women. Mirkin can seduce almost anyone, he is charismatic, courteous and cynically uses it. He goes head over heels, not thinking about how many lives he has ruined along the way. He just doesn't care. The cherry on the cake in the hero's career promises to be a multimillion-dollar tender. Mirkin's victory in it is guaranteed in advance. But no one knows how much dirt is behind this well-being. And in the coming days, it will overwhelm Mirkin.", + "posterPath": "/mJnwXZE2FcumKwPdeRNA5PrIbXH.jpg", + "backdropPath": "/4uV6Jhh4p0WrSAwvSEiL0iGZwGt.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-02-24", + "releaseYear": "2022", + "originalLanguage": "ru", + "voteAverage": 6.846, + "voteCount": 13, + "popularity": 4.2813 + }, + { + "id": 13923, + "title": "Journey to the West", + "originalTitle": "西游记", + "overview": "Journey to the West is a Chinese television series adapted from the classical novel of the same title. The series was first broadcast on CCTV in China on 1 October 1986. The series became an instant classic in China and is still being praised as the best and most authentic interpretation of the novel. Unadapted portions of the original story were later covered in the second season, which was released in 1999.", + "posterPath": "/bAl4rX85qVbGeVslvQqFRDHsQ6X.jpg", + "backdropPath": "/wrjHvure9UtVFwkDuIlq0ZkP6tY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1986-02-09", + "releaseYear": "1986", + "originalLanguage": "zh", + "voteAverage": 8.387, + "voteCount": 62, + "popularity": 4.2807 + }, + { + "id": 10370, + "title": "The Hitchhiker", + "originalTitle": "The Hitchhiker", + "overview": "A young hitchhiker introduces characters who are about to experience a frightening and sometimes supernatural incident of some kind in this moody anthology series.", + "posterPath": "/AmOBNQXTMPsi3NvcadHxfM4xEVZ.jpg", + "backdropPath": "/hiKKRRIJ9WB7mGxzhheQVcDIfYO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "1983-11-23", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 32, + "popularity": 4.2806 + }, + { + "id": 17611, + "title": "Southland", + "originalTitle": "Southland", + "overview": "A raw and authentic look into the Los Angeles crime scene, going far inside the lives of cops, criminals, victims and their families. The show centers on four main characters: Officer John Cooper, a seasoned cop who will have to prove himself again after recovering from surgery; Officer Ben Sherman, who still has much to learn after recently completing his training rotation; Detective Lydia Adams, whose unending caseload hits closer to home; and Sammy Bryant, a former detective who decided to go back to being a uniform cop after the traumatic death of his partner.", + "posterPath": "/flj41WynQKea6DVHgRbbPSWOB1t.jpg", + "backdropPath": "/wjWyxg8bJATeYOUkNE2aUdYE0eh.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-04-09", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 193, + "popularity": 4.2783 + }, + { + "id": 520, + "title": "Sledge Hammer!", + "originalTitle": "Sledge Hammer!", + "overview": "Sledge Hammer! is an American satirical police sitcom produced by New World Television that ran for two seasons on ABC from 1986 to 1988. The series was created by Alan Spencer and stars David Rasche as Inspector Sledge Hammer, a preposterous caricature of the standard \"cop on the edge\" character. Al Jean and Mike Reiss, best known for their work on The Simpsons, wrote for the show and worked as story editors.", + "posterPath": "/exYBfVOkRDg9f7HlRIDZ6gy3A73.jpg", + "backdropPath": "/62TMbi34WJupGcmcWQ21ZScg42U.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 10759 + ], + "genres": [ + "Comedy", + "Crime", + "Action & Adventure" + ], + "releaseDate": "1986-09-23", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 161, + "popularity": 4.2769 + }, + { + "id": 31687, + "title": "Dragonaut: The Resonance", + "originalTitle": "ドラゴノーツ -ザ・レゾナンス-", + "overview": "An asteroid is headed for Earth and in order to avoid Earth's impending destruction, the ISDA create the \"Dragonaut\" after finding a dragon egg under the ocean. This weapon's primary purpose is to destroy the asteroid when the time comes. However, they soon find out that the asteroid is not their only threat, as powerful dragon-like creatures, which are bent on destruction, appear.\n\nAfter witnessing a murder by one of the creatures, Jin Kamishina, a lonely 18-year-old boy who lost his family in a shuttle accident, gets involved in the mysteries of the dragons and becomes the chosen pilot of the Dragonaut. Helping him on his journey is Toa, a mysterious girl who saves him from falling to his death after the creature attacks him.", + "posterPath": "/ecc22QKASVfzpsF3W6GkKtIAbnz.jpg", + "backdropPath": "/mbmzfrwFpcWvvRgnI3teMpAMplP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.687, + "voteCount": 259, + "popularity": 4.2766 + }, + { + "id": 61529, + "title": "Hozuki's Coolheadedness", + "originalTitle": "鬼灯の冷徹", + "overview": "Hōzuki is the aide to the great king of Hell, King Enma. Calm and super-sadistic, Hōzuki tries to resolve the various problems in Hell, including a rampaging Momotarō and his companions. However, he also likes spending his free time on his hobbies, such as fawning over cute animals and raising \"Goldfish Flowers.\"", + "posterPath": "/f1lI5HInStAwD43elO3LubKoHdc.jpg", + "backdropPath": "/mU9oVlqvyQtKIQIcdZ9CjGwuQLJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 31, + "popularity": 4.2765 + }, + { + "id": 49297, + "title": "The Incredible Dr. Pol", + "originalTitle": "The Incredible Dr. Pol", + "overview": "Set in Central Michigan's farm country, this reality series follows the work done at Pol Veterinary Services. Specializing in large farm animals, Dr. Pol treats horses, pigs, cows, sheep, alpacas, goats, chickens and even an occasional reindeer. The program also features Dr. Brenda Grettenberger, who has worked with Dr. Pol since 1992.", + "posterPath": "/faMFGFfNVfoyFRzEW9xODCtatj7.jpg", + "backdropPath": "/lzfuPfP4aqbGgzIfh5tLirKDyRE.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 99 + ], + "genres": [ + "Reality", + "Documentary" + ], + "releaseDate": "2011-10-29", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 32, + "popularity": 4.2763 + }, + { + "id": 131532, + "title": "Monster High", + "originalTitle": "Monster High", + "overview": "Based on the Monster High franchise, Clawdeen Wolf arrives at Monster High with a dark secret. With the help of her friends Draculaura and Frankie Stein, she is able to embrace her true monster heart and save the school from total destruction.", + "posterPath": "/t6M7K3YnUcbEeYHNIGeTjWo3LWz.jpg", + "backdropPath": "/iuN3WnRHfEHzwAtUHmVJoANEpeP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762, + 35 + ], + "genres": [ + "Animation", + "Family", + "Kids", + "Comedy" + ], + "releaseDate": "2022-10-06", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 52, + "popularity": 4.2752 + }, + { + "id": 5487, + "title": "I, Claudius", + "originalTitle": "I, Claudius", + "overview": "Acclaimed blackly comic historical drama series. Set amidst a web of power, corruption and lies, it chronicles the reigns of the Roman emperors - Augustus, Tiberius, Caligula and finally Claudius.", + "posterPath": "/oztxNqan7wKvFuCDS55WyUmKNMU.jpg", + "backdropPath": "/ep6X0ekrWS0go3UXPRXmtN6AfNs.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "1976-09-20", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 125, + "popularity": 4.2749 + }, + { + "id": 88806, + "title": "The Demon Girl Next Door", + "originalTitle": "まちカドまぞく", + "overview": "Awakening her dormant abilities as a devil one day, Yuuko Yoshida aka Shadow Mistress Yuuko, is entrusted with the mission to defeat the Light clan's shrine maiden, a magical girl, by her ancestor Lilith. Yuuko meets magical girl Momo Chiyoda through her classmate Anri Sada, and challenges her to a duel, but loses quickly due to her lack of strength.\n\nSince then, Yuuko has struggled with her role as a devil and her duel with Momo, and borrowed help from her regularly. However, by a strange coincidence, Yuuko also weakens Momo by taking away her power to cooperate in protecting the peace of Tama city.", + "posterPath": "/jTzpBCrmWfqOdF3XoanFfpwKYZU.jpg", + "backdropPath": "/73A148n9q7TKX9gBZj8WW0s4HVU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 31, + "popularity": 4.2746 + }, + { + "id": 1097, + "title": "Ergo Proxy", + "originalTitle": "Ergo Proxy", + "overview": "In a futuristic world almost barren of life, mankind is confined to mechanized domed cities where A.I.’s control all aspects of life. In this world, humans are no longer born, they are manufactured in a production line; and alongside them live androids known as autoreivs. Within one of these domed sanctuaries named Romdeau lives Re-l Mayer, one of a few citizens who aren’t entirely prevented from thinking. Her grandfather's prominent position and the affection of the scientist Daedalus have left her more free will than is normally allowed, but Re-l has started to question the sanctity of the city and the citizens' perfect way of life. With mysterious beings known as proxies causing havoc and a man named Vincent causing great influence on her life, Re-l must travel outside of the city to find the answers she seeks and discover the mystery behind \"the awakening\".", + "posterPath": "/tHcce6PKnhNBneSMbadI4jynHpY.jpg", + "backdropPath": "/jGAgj9QztYjSsYCnZhDMgBUzQKU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2006-02-25", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.618, + "voteCount": 370, + "popularity": 4.2743 + }, + { + "id": 207411, + "title": "Good American Family", + "originalTitle": "Good American Family", + "overview": "A Midwestern couple adopts who they believe to be a little girl with dwarfism but gradually started to believe she may not be who she said she was.", + "posterPath": "/fzznLJmBzU5tTxFzklepKifE16o.jpg", + "backdropPath": "/jkyjkLuKxKa2PXaTcPDfrBUHxi8.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-03-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 204, + "popularity": 4.2741 + }, + { + "id": 36951, + "title": "Vamp", + "originalTitle": "Vamp", + "overview": "After making a Faustian bargain with a vampire for fame, a regretful young singer must find a sacred, lost artifact that might revert the curse.", + "posterPath": "/uIU87AvtHQI8tr3kNvO8aegtQRI.jpg", + "backdropPath": "/lHZH2fL364idYF3ivBBZ4ugjbej.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 35, + 10759 + ], + "genres": [ + "Soap", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1991-07-15", + "releaseYear": "1991", + "originalLanguage": "pt", + "voteAverage": 7.9, + "voteCount": 10, + "popularity": 4.2726 + }, + { + "id": 9867, + "title": "The Sylvester & Tweety Mysteries", + "originalTitle": "The Sylvester & Tweety Mysteries", + "overview": "Sylvester and Tweety help out when Granny opens a detective agency.", + "posterPath": "/b8AkMeacC71nABALm5GgT1x5nMo.jpg", + "backdropPath": "/37NKej5mfqvTxvJVoADfRaVVl6h.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Crime" + ], + "releaseDate": "1995-09-09", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 107, + "popularity": 4.272 + }, + { + "id": 74094, + "title": "Our Love Has Always Been 10 Centimeters Apart.", + "originalTitle": "いつだって僕らの恋は10センチだった。", + "overview": "The moment Miou Aida first met Haruki Serizawa at the Sakuragaoka High School Entrance Ceremony they both felt an unexplainable connection. Despite their completely different personalities, they found themselves walking home together after school every day. As they spend more time together, their feelings for each other grow stronger.", + "posterPath": "/qJ4DavCdbDx29tQQNlGkC56jeKV.jpg", + "backdropPath": "/bChKb5SGjzGYqjxWutAuZF1sRWn.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 16 + ], + "genres": [ + "Comedy", + "Drama", + "Animation" + ], + "releaseDate": "2017-11-25", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 254, + "popularity": 4.2718 + }, + { + "id": 86031, + "title": "Dr. STONE", + "originalTitle": "Dr.STONE", + "overview": "One fateful day, all of humanity was petrified by a blinding flash of light. After several millennia, high schooler Taiju awakens and finds himself lost in a world of statues. However, he’s not alone! His science-loving friend Senku’s been up and running for a few months and he's got a grand plan in mind—to kickstart civilization with the power of science!", + "posterPath": "/rocRrglJfYkglKilmFaStvo5EvS.jpg", + "backdropPath": "/lN13BPAEnc5iXmoxxBQHOZ1ScfZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.543, + "voteCount": 1582, + "popularity": 4.271 + }, + { + "id": 126, + "title": "Unsolved Mysteries", + "originalTitle": "Unsolved Mysteries", + "overview": "Combines four to five segments of dramatic re-enactments, interviews and updates of real human and paranormal mysteries. An audience interactive call-to-action request allowed viewers to call in with tips to help solve the cases.", + "posterPath": "/1bOXbWqNsRU2ykPiE586I18coLf.jpg", + "backdropPath": "/jCXk0VvqiyulPBzHf1hDN1PK0mW.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 80 + ], + "genres": [ + "Mystery", + "Drama", + "Crime" + ], + "releaseDate": "1988-10-05", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 143, + "popularity": 4.2708 + }, + { + "id": 63893, + "title": "Peter Rabbit", + "originalTitle": "Peter Rabbit", + "overview": "Nickelodeon brings treasured literary icon Peter Rabbit to life with the new CG-animated preschool series, Peter Rabbit. The series is a fresh re-imagining of the popular Beatrix Potter children’s books based on Peter Rabbit. Peter Rabbit features educational goals that encourage preschoolers to learn problem-solving and interpersonal skills, self-efficacy, resilience, positive re-framing and fostering an interest in and respect for nature.", + "posterPath": "/36MwBWUBwWa61ndbSXGqz7dHYqF.jpg", + "backdropPath": "/fC6rvUO5PebCb5Irc6PUTNlRNGF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Family" + ], + "releaseDate": "2013-03-20", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 18, + "popularity": 4.2703 + }, + { + "id": 42671, + "title": "Elfen Lied", + "originalTitle": "エルフェンリート", + "overview": "The Diclonius, a mutated homo sapien that is said to be selected by God and will eventually become the destruction of mankind, possesses two horns in their heads, and has a \"sixth sense\" which gives it telekinetic abilities. Due to this dangerous power, they have been captured and isolated in laboratories by the government. Lucy, a young and psychotic Diclonius, manages to break free of her confines and brutally murder most of the guards in the laboratory, only to get shot in the head as she makes her escape. She survives and manages to drift along to a beach, where two teenagers named Kouta and Yuka discovers her. Having lost her memories, she was named after the only thing that she can now say, \"Nyuu,\" and the two allow her to stay at Kouta's home. However, it appears that the evil \"Lucy\" is not dead just yet...", + "posterPath": "/mYakikF9MYpiRRQKnXQD6ubRHwr.jpg", + "backdropPath": "/1g7fMpp0c5tOlHoLMABx6LI7gMu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-07-25", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.32, + "voteCount": 1381, + "popularity": 4.2692 + }, + { + "id": 67011, + "title": "Hybrid x Heart Magias Academy Ataraxia", + "originalTitle": "魔装学園 H×H", + "overview": "Hida Kizuna possesses the HHG (Heart Hybrid Gear) ability, but it is not strong enough to make him particularly important. His older sister calls him to transfer to a strategic defense school, where many of the students (many of which are large-breasted girls) use their HHG abilities to fight invaders from another world while wearing extremely skimpy pilot outfits. Kizuna's fighting ability doesn't measure up, but his sister has another plan—apparently having erotic experiences with Kizuna will allow the girls to replenish their energy or power-up. It looks like his new school life is going to be full of embarrassment.", + "posterPath": "/s53DVqH9F2cw22O8enndCBQgTsF.jpg", + "backdropPath": "/4zGeLoH6dpVtzQAHIGTKM1SS92w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 191, + "popularity": 4.2684 + }, + { + "id": 46733, + "title": "Married to Medicine", + "originalTitle": "Married to Medicine", + "overview": "Follows a group of successful and educated women who are connected to the world of medicine in Atlanta, including doctors and wives of doctors. Whether delivering babies in Louboutins or rushing off to galas in Buckhead, these women do everything with style, drama, and of course, southern flair.", + "posterPath": "/wXLEtYR7xKCiqVnfMC10jHYlhQk.jpg", + "backdropPath": "/ziIXFXox3DVKewDw5ZzhcMSyAum.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 18, + 99 + ], + "genres": [ + "Reality", + "Drama", + "Documentary" + ], + "releaseDate": "2013-03-24", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 12, + "popularity": 4.268 + }, + { + "id": 245684, + "title": "Culinary Class Wars", + "originalTitle": "흑백요리사: 요리 계급 전쟁", + "overview": "Eighty \"Black Spoon\" underdog cooks with a knack for flavor face 20 elite \"White Spoon\" chefs in a fierce cooking showdown among 100 contenders.", + "posterPath": "/dXaSWfISSbivyNy9X6zkOnxD9Gp.jpg", + "backdropPath": "/p63GY5JaHX4fine4fgQkhSoqc6r.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2024-09-17", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.5, + "voteCount": 49, + "popularity": 4.2668 + }, + { + "id": 54, + "title": "Growing Pains", + "originalTitle": "Growing Pains", + "overview": "Fatherhood has taken on a whole new meaning for Jason Seaver, who has assumed the chores of cooking, cleaning and minding the kids so that his wife, Maggie, can pursue a career in journalism after spending 15 years as a housewife.", + "posterPath": "/dhzttMAkFTFAax2CTBAql1CaaXB.jpg", + "backdropPath": "/rwr4VtrwuUuRbIGz5Nar0QmPoNO.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1985-09-24", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6.478, + "voteCount": 158, + "popularity": 4.2667 + }, + { + "id": 3122, + "title": "Star Wars: Clone Wars", + "originalTitle": "Star Wars: Clone Wars", + "overview": "During the Clone Wars, Jedi Master Obi-Wan Kenobi leads an assault on the planet Muunilinst, home of the Intergalactic Banking Clan; and his Padawan, Anakin Skywalker, is appointed by Supreme Chancellor Palpatine to lead the Republic’s space forces. Meanwhile, Separatist leader and Sith Lord Count Dooku takes in Force-sensitive gladiator Asajj Ventress as his Sith apprentice, and tasks her with eliminating Skywalker.", + "posterPath": "/jKfAVTGkf9qpGPZ4E1pNKdW6vra.jpg", + "backdropPath": "/6Bsfr4QipqfAMlv9DCk8zNACvUG.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-11-07", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 462, + "popularity": 4.266 + }, + { + "id": 62290, + "title": "Thunderbirds Are Go!", + "originalTitle": "Thunderbirds Are Go!", + "overview": "Remake of the hit 1960s television show. In the 21st century, Jeff Tracy, a former astronaut, amasses a colossal fortune and decides that he must use it to benefit others. His answer to this desire is to create International Rescue, a unique private emergency response service equipped with customized designed vehicles and equipment that enable the organization to react to any crisis whether it be in sea, air, land, or space. Jeff's five sons volunteer to operate as the pilots and field agents, as well \"Brain\" who acts as the teams engineer. In addition, Jeff's friend, Kyrano and his daughter Tanusha aka Kayo (based on the original series Tin-Tin character) agree to be the support staff. In addition to the field team, IR also maintains an intelligence network with Lady Penelope and her ex-con chauffeur, Parker as the chief agents in this arm.", + "posterPath": "/mBg8HsWI9powZJzhYJa1VLTFANU.jpg", + "backdropPath": "/iEBkU9ujRL1qtVs7BoZl6y23r8z.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10759, + 16 + ], + "genres": [ + "Family", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 47, + "popularity": 4.2658 + }, + { + "id": 158141, + "title": "Supacell", + "originalTitle": "Supacell", + "overview": "When five ordinary South Londoners discover they have extraordinary powers, it's down to just one man to bring them together to save the woman he loves.", + "posterPath": "/vHtNgRLWdMk7wIV2WbqkOzU7HHI.jpg", + "backdropPath": "/st2VoiCq6RVKsHoLFAchB9cTmKO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-06-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.478, + "voteCount": 227, + "popularity": 4.2624 + }, + { + "id": 136840, + "title": "The Demon Sword Master of Excalibur Academy", + "originalTitle": "聖剣学院の魔剣使い", + "overview": "Awakening from magical stasis after a thousand years, the Dark Lord Leonis suddenly finds himself in the body of a ten-year-old boy! He quickly meets Riselia, a girl confronting the Voids, creatures that have nearly exterminated humanity. Determined to uncover the mysteries of this strange new era, Leonis enrolls in Excalibur Academy, a school that trains students to fight back against these enigmatic monsters. Could the Voids hold some connection to Leonis's past?", + "posterPath": "/rvUIWcUg23JwWDVF7oTqLFmUe9g.jpg", + "backdropPath": "/6GQR7tE6R8RZfiLt3AMZOdco3ad.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 26, + "popularity": 4.262 + }, + { + "id": 65592, + "title": "Full Frontal with Samantha Bee", + "originalTitle": "Full Frontal with Samantha Bee", + "overview": "Samantha Bee breaks up late-night's all-male sausage fest with her nuanced view of political and cultural issues, her sharp interview skills, her repartee with world leaders and, of course, her 10-pound lady balls.", + "posterPath": "/Rr5QFKeao5G35dddh7iXpF2ePz.jpg", + "backdropPath": "/gVGElSmAqL7zYbtU06qqlfR1GJq.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 10767, + 35 + ], + "genres": [ + "News", + "Talk", + "Comedy" + ], + "releaseDate": "2016-02-08", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.872, + "voteCount": 90, + "popularity": 4.2599 + }, + { + "id": 63330, + "title": "My Wife is the Student Council President", + "originalTitle": "おくさまが生徒会長!", + "overview": "The story begins with Izumi Hayato running to be student body president. But when a beautiful girl swings in promising the liberalization of love while flinging condoms into the audience, he ends up losing to her and becoming the vice president. At the student council meeting, the newly-elected president invites herself over to Izumi's house, where she promptly announces she is to become Izumi's wife thanks to an agreement that their parents had made, a drunken promise decades ago that their children would one day become husband and wife. Naturally Hayato is against this, but Ui has the complete opposite reaction, and even wants to live with him!\n\nWill the upset Hayato and the overenthusiastic Ui be able to manage their school and marital life while keeping it a secret from the other students? Or will the two never come to understand each other's feelings?", + "posterPath": "/tcd7hgNMeK8Fv8TWvtb9uHks4lh.jpg", + "backdropPath": "/znGv00S7OKADZic4QlohGNBciV1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-02", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 44, + "popularity": 4.2574 + }, + { + "id": 237247, + "title": "Oxen", + "originalTitle": "Oxen", + "overview": "War veteran and former hunter soldier Niels Oxen, Denmark's most decorated soldier ever. Sent home with war trauma, he tries to create meaning in life and to make everyday life fit together.", + "posterPath": "/A1rujCJTNJRfHO02NVWCW1pVCIx.jpg", + "backdropPath": "/cVQTxwqf3QtGt7docyLHSIHAC41.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10768 + ], + "genres": [ + "Crime", + "War & Politics" + ], + "releaseDate": "2023-10-22", + "releaseYear": "2023", + "originalLanguage": "da", + "voteAverage": 6.882, + "voteCount": 17, + "popularity": 4.2569 + }, + { + "id": 44169, + "title": "Brickleberry", + "originalTitle": "Brickleberry", + "overview": "Brickleberry National Park is facing closure, but not if the park’s dysfunctional park rangers can help it!\n\n“Brickleberry,” an animated half-hour series, follows the crazy bunch of park rangers as they do their worst to keep the park running. Steve (David Herman) has been “Ranger of the Month” every month for years, so he feels threatened when Ethel (Natasha Leggero) is transferred from Yellowstone National Park to help whip the park into shape. Connie (Roger Black) and Denzel (Jerry Minor) are two unique rangers that each bring special skills (or in Denzel’s case, lack of skills) to the job, and Woody (Tom Kenny) is the hapless Head Ranger who puts nothing above his beloved park, except his adopted bear cub, Malloy (Daniel Tosh), who he’s taken in and spoils to death.", + "posterPath": "/nLeOBqvDWuZfyMq7DGRT13YDRNK.jpg", + "backdropPath": "/ulmOoXIsaTMAD9hMBoF9lXouy8v.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2012-09-25", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.233, + "voteCount": 232, + "popularity": 4.2542 + }, + { + "id": 19649, + "title": "Jesus of Nazareth", + "originalTitle": "Jesus of Nazareth", + "overview": "Dramatizes the Birth, Life, Ministry, Crucifixion, and Resurrection of Jesus Christ, largely according to the Holy Bible's New Testament Gospels.", + "posterPath": "/dlGmVpZ2rpGRDZsSa64nzyu90xk.jpg", + "backdropPath": "/ghwUUPFiS64XBzL2t1oPlG71eFe.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1977-03-27", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 538, + "popularity": 4.2516 + }, + { + "id": 52891, + "title": "YuruYuri: Happy Go Lily", + "originalTitle": "ゆるゆり", + "overview": "On her first day attending the all-girls Nanamori Middle School in Takaoka, Toyama Akaza Akari oversleeps, to be awakened by her one-year-senior childhood friends: the level-headed Funami Yui and the often self-centered Toshinou Kyouko. Planning on exciting club activities at school, Akari joins the club her older friends have set up. But as it turns out Kyouko and Yui simply took over the former room of the now defunct tea ceremony club for their own Amusement Club. In regard to what the club does, Kyouko explains: \"We just hang out and do whatever we want!\" This is not exactly what the helpful and energetic Akari had hoped for. Surprisingly a few days later Yoshikawa Chinatsu joins the club even though she mistook it for the former tea ceremony club.\n\nAnd so the four fun-loving girls could enjoy spending their spare time at the club were it not for the student council, in person of vice president Sugiura Ayano, who does her very best to shut down this unauthorized club.", + "posterPath": "/syLTfsI9B1JzvKz27btK0xK97Y8.jpg", + "backdropPath": "/dw577aCpZs62KpZ5osWcZuRVplv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-07-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.688, + "voteCount": 128, + "popularity": 4.2506 + }, + { + "id": 129516, + "title": "My Stepmom's Daughter Is My Ex", + "originalTitle": "継母の連れ子が元カノだった", + "overview": "Ah, high school. Is there any better place to start fresh after a horrible middle school relationship? Nope! Not unless your ex ends up at the same school as you and is now your stepsibling. What was supposed to be a sanctuary of peace where I could avoid ever seeing her again has become a living nightmare! Everywhere I look, I see her—in my house, in my school, in my class. There's no escape! She even claims that she's the older sibling. Like hell she is!\n\nBut I won't lose to her. After all, I'm the older brother in this new family situation. That's right, we're family now. No matter how much we may have thought we loved each other before, we saw one another's true colors and realized we weren't meant for each other. That's why even though we may keep up a buddy-buddy sibling act for the sake of our parents, things will never go back to the way they used to be.", + "posterPath": "/eQMIfN5L2eIwOeFep6Dt6H7X4kg.jpg", + "backdropPath": "/zHcOjSiEOtV553eK2ldZJevUHvO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 63, + "popularity": 4.2487 + }, + { + "id": 3556, + "title": "From the Earth to the Moon", + "originalTitle": "From the Earth to the Moon", + "overview": "The story of the United States' space program, from its beginnings in 1961 to the final moon mission in 1972.", + "posterPath": "/sSnYvoVT2PYWJbF0aWdUFvLqKhR.jpg", + "backdropPath": "/6bSYn0NCdVqDuBdwqPvulsNstLA.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1998-04-05", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 8.154, + "voteCount": 120, + "popularity": 4.2485 + }, + { + "id": 74802, + "title": "Deadwind", + "originalTitle": "Karppi", + "overview": "When Sofia Karppi, a detective in her 30's who is trying to get over her husband's death, discovers the body of a young woman on a construction site, she triggers a chain of events that threatens to destroy her life again.", + "posterPath": "/cUKqWS2v7D6DVKQze2Iz2netwRH.jpg", + "backdropPath": "/44l4MxfKWW6F5Ksqxq37tB2CTwK.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2018-03-14", + "releaseYear": "2018", + "originalLanguage": "fi", + "voteAverage": 7, + "voteCount": 147, + "popularity": 4.2483 + }, + { + "id": 117706, + "title": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "originalTitle": "進化の実~知らないうちに勝ち組人生~", + "overview": "High school student Hiiragi Seiichi is bullied by his classmates for being a \"loser.\" One day, his entire school is suddenly transported to a video game-like world of swords and sorcery. When he accidentally eats \"the Fruit of Evolution,\" his life as a successful \"winner\" begins.", + "posterPath": "/5HcGeXvGybHdnKeMqKAJyCBknqI.jpg", + "backdropPath": "/szgcMnJSa7HgM0UufecKsPC1Fbg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 122, + "popularity": 4.2471 + }, + { + "id": 68921, + "title": "WWE 205 Live", + "originalTitle": "WWE 205 Live", + "overview": "WWE's division of Cruiserweight's battle it out to decide who is the greatest wrestler under 205lbs.", + "posterPath": "/f6NlvoEJH8KxQI58ecTBkcsbQVF.jpg", + "backdropPath": "/krtHrxeeWsIBDNaHWyh5W8tpVyJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2016-11-29", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 38, + "popularity": 4.2467 + }, + { + "id": 232018, + "title": "Paris Has Fallen", + "originalTitle": "Paris Has Fallen", + "overview": "A protection officer and an MI6 operative team up after a terrorist attack. They suspect a mole as they race to thwart a larger conspiracy threatening Paris.", + "posterPath": "/ei1jnjJ154XN1E4q9JKEpuEImup.jpg", + "backdropPath": "/v0eBR7tZIWQKNtb2MyJtAji5OjA.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10768 + ], + "genres": [ + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2024-09-23", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 7.2, + "voteCount": 87, + "popularity": 4.2463 + }, + { + "id": 110948, + "title": "The Snoopy Show", + "originalTitle": "The Snoopy Show", + "overview": "The world's most iconic dog is ready for his close-up. Dive into new adventures with the happy-dancing, high-flying, big-dreaming beagle, who's joined by best friend Woodstock and the rest of the Peanuts gang.", + "posterPath": "/qgB5CZwqrnZ99f8NHUL7ogPrgi3.jpg", + "backdropPath": "/o04090TAInK18zXAkp71Duq8Qbx.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2021-02-05", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 154, + "popularity": 4.2463 + }, + { + "id": 61583, + "title": "Cuarto Milenio", + "originalTitle": "Cuarto Milenio", + "overview": "", + "posterPath": "/fnuPYgBw5UriMqE6bfrtbjZlrqH.jpg", + "backdropPath": "/g8weGWJqH7p3EBbXncqBX3vUdZ4.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 9648 + ], + "genres": [ + "Reality", + "Mystery" + ], + "releaseDate": "2005-11-13", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 7.6, + "voteCount": 50, + "popularity": 4.2458 + }, + { + "id": 34075, + "title": "Yes! PreCure 5", + "originalTitle": "Yes!プリキュア5", + "overview": "Nozomi Yumehara, a regular student, finds a magical book called the Dream Collet in the library and meets Coco and Nuts, two creatures from the Palmier Kingdom. They plead with Nozomi to restore their world, which has been destroyed by an organization called the Nightmares, by completing the Dream Collet and finding the 55 Pinkies to make any wish come true. Meanwhile, the Nightmares are moving into the real world. Once Nozomi agrees to help, Coco and Nuts transform her into the legendary warrior Cure Dream and turn four fellow students into her Pretty Cure team.", + "posterPath": "/wQy3HqxoTWF3hByfIiMlVJMPolR.jpg", + "backdropPath": "/9y4CDHwiq1WMbE8OH3JKT7ElBe5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-02-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 14, + "popularity": 4.2438 + }, + { + "id": 1365, + "title": "Eli Stone", + "originalTitle": "Eli Stone", + "overview": "Many lawyers consider themselves prophets, but Eli Stone may be the real deal. Eli has built a successful career at a top law firm in San Francisco representing only the biggest and richest corporations that make a habit of screwing over the little guy. But after experiencing a series of odd hallucinations, Eli seeks to find a deeper meaning to life while trying not to lose his job and destroy his relationship with the bosses' daughter. When Eli discovers an aneurysm in his brain, he wonders if his condition is truly medical or if perhaps he now has a higher calling.", + "posterPath": "/hWVuLjx3QPhpfTCePbB9nunIJt0.jpg", + "backdropPath": "/zDMhlS46RQSJpwjsUVT0LNsIcWN.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2008-01-31", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 82, + "popularity": 4.2429 + }, + { + "id": 46025, + "title": "Infinite Stratos", + "originalTitle": "IS<インフィニット・ストラトス>", + "overview": "Girls from all over the world gather at IS Academy to learn how to become IS pilots. However, since Ichika can somehow pilot the IS even though he is male, he was forced to attend IS Academy as the only male in this school.", + "posterPath": "/yNlNasqGkEwJENNT5ad3T2xU3pJ.jpg", + "backdropPath": "/xQNNHHLJj7WNUplWTKrB36pK55c.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-01-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.642, + "voteCount": 144, + "popularity": 4.2421 + }, + { + "id": 38233, + "title": "Grachi", + "originalTitle": "Grachi", + "overview": "Grachi is a young woman who will learn to use her magical powers. She will have to face Matilda and the evil Director of Escolarium, who plans to become the most powerful witch.", + "posterPath": "/bNrwjZ1ANGP2NGHHzEVISPigkx3.jpg", + "backdropPath": "/dLY5ZQYw3RRu9qu8YbAdvxU1mcA.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 35, + 10766 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Comedy", + "Soap" + ], + "releaseDate": "2011-05-02", + "releaseYear": "2011", + "originalLanguage": "es", + "voteAverage": 7.2, + "voteCount": 13, + "popularity": 4.242 + }, + { + "id": 284605, + "title": "The Survivors", + "originalTitle": "The Survivors", + "overview": "Fifteen years ago, the loss of three young people tore this sleepy seaside town apart. Now, the mysterious death of a young woman dredges up the past.", + "posterPath": "/4Xgf1axYG97G7BYC661O27t9iYu.jpg", + "backdropPath": "/sxzodKyKvW2sXjI9awYFjo2ePNz.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2025-06-06", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.81, + "voteCount": 58, + "popularity": 4.2409 + }, + { + "id": 81983, + "title": "Paradise PD", + "originalTitle": "Paradise PD", + "overview": "An eager young rookie joins the ragtag small-town police force led by his dad as they bumble, squabble and snort their way through a big drug case.", + "posterPath": "/desSj4kx0y9p61vm9QBE3Wm8GxK.jpg", + "backdropPath": "/eVj45YR8BUKblq2YaUw8xu255xF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-08-31", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.202, + "voteCount": 379, + "popularity": 4.2408 + }, + { + "id": 37798, + "title": "Mrs. Pepper Pot", + "originalTitle": "スプーンおばさん", + "overview": "Mrs. Pepper Pot lives in a small village with her husband, and enjoys a unique life because she has a small magic spoon that helps her reduce her size, and during that, Mrs. Pepper Pot embarks on a series of adventures during which she communicates with animals easily.", + "posterPath": "/iNriQC7e0MPUjwlBRjkQ1nOubNk.jpg", + "backdropPath": "/5RFXsrhq3d23SR7lJGouLFNHMkT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-04-04", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 10, + "popularity": 4.24 + }, + { + "id": 300999, + "title": "True Haunting", + "originalTitle": "True Haunting", + "overview": "Paranormal encounters from the viewpoint of those who lived them are detailed through immersive reenactments and present-day interviews.", + "posterPath": "/8XK4kBkP7QVIPnl6dFfdPSCICs6.jpg", + "backdropPath": "/oS4ZzG1c4xZtZRrJipNqXs1b17Z.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 9648 + ], + "genres": [ + "Documentary", + "Mystery" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 17, + "popularity": 4.2395 + }, + { + "id": 103786, + "title": "The Cuphead Show!", + "originalTitle": "The Cuphead Show!", + "overview": "Follow the misadventures of the impulsive Cuphead and his cautious but persuadable brother Mugman in this animated series based on the hit video game.", + "posterPath": "/l6nGUyxKCi7ODvyfc8qQShliVEd.jpg", + "backdropPath": "/hdA9Tz16tfwfW1k7x66APoLrkdk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2022-02-18", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 353, + "popularity": 4.2379 + }, + { + "id": 300258, + "title": "Los hilos del pasado", + "originalTitle": "Los hilos del pasado", + "overview": "Carolina Guillén is a renowned fashion designer haunted by a painful past. Years ago, she had a baby with a young novice who never knew about the pregnancy. Alone and without support, she was forced to give up her child, a decision that hardened her into a cold and demanding woman. Many years later, a young model named Cristina arrives at her fashion house and quickly rises to stardom, despite Carolina’s harsh treatment. When Cristina falls in love with Carlos, Carolina’s stepson, their romance leads to an unexpected pregnancy. Before Cristina can share the news, Carolina fires her without realizing that she is the daughter she abandoned long ago. As Carolina’s world begins to unravel, the shocking secret of her lost child will change her life forever.", + "posterPath": "/k3dGAfWNvr23FQl5e8yDGxv847T.jpg", + "backdropPath": "/AgOJ5Jgtj1ZVbBfWD4dArXbUdaC.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2025-09-10", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.813, + "voteCount": 32, + "popularity": 4.2371 + }, + { + "id": 45116, + "title": "The King of Braves GaoGaiGar", + "originalTitle": "勇者王ガオガイガー", + "overview": "In the year 2005, a race of alien monsters emerge from underground and launch a series of attacks on the city of Tokyo. The only defense against these creatures is the awesome giant robot GaoGaiGar and its pilot, Guy Shishio.", + "posterPath": "/21KKpYBKf0mz4U1BX9S180uVhoE.jpg", + "backdropPath": "/bmv8e9LQiNhl2KccYoa42RZm3WY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-02-01", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.727, + "voteCount": 11, + "popularity": 4.2355 + }, + { + "id": 117303, + "title": "Lessons in Chemistry", + "originalTitle": "Lessons in Chemistry", + "overview": "In the 1950s, Elizabeth Zott's dream of being a scientist is challenged by a society that says women belong in the domestic sphere. She accepts a job on a TV cooking show and sets out to teach a nation of overlooked housewives way more than recipes.", + "posterPath": "/tCPIf5f6jUIr8KDMWsfaXwXW0kl.jpg", + "backdropPath": "/cuG3f2l51KdvP9IzBHlol2jR2FC.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-10-12", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 326, + "popularity": 4.234 + }, + { + "id": 2641, + "title": "Rolie Polie Olie", + "originalTitle": "Rolie Polie Olie", + "overview": "Rolie Polie Olie was a children's television series produced by Nelvana, distributed by Disney, and created by William Joyce, Maggie Swanson, and Anne Wood. The show centers on a little roly pollie who is composed of several spheres and other three-dimensional geometric shapes. The show was one of the earliest series that was fully animated in CGI, and the first CGI animated preschool series.Rolie Polie Olie now airs in reruns on Disney Junior.\n\nRolie Polie Olie won a Gemini Award in Canada for \"Best Animated Program\" in 1999. The show also won a Daytime Emmy Award for \"Outstanding Special Class Animated Program\" in 2000 and 2005. William Joyce won a 1999 Daytime Emmy for Best Production Design for this series. The show has a vintage atmosphere reminiscent of the 1950s and early 1960s, with futuristic elements.", + "posterPath": "/vSLEwvCy1sJXRSItHMqtqTXiOsG.jpg", + "backdropPath": "/etLbSV6o9V5IJnY9NGVCS8gKtLa.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-10-04", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 35, + "popularity": 4.2284 + }, + { + "id": 93520, + "title": "Ghostwriter", + "originalTitle": "Ghostwriter", + "overview": "When a ghost haunts a neighborhood bookstore and starts releasing fictional characters into the real world, a group of friends team up to solve an exciting mystery surrounding the ghost's unfinished business.", + "posterPath": "/cylPAXqLws5yM9oJa47MsHItBy8.jpg", + "backdropPath": "/fCxjr9HRpZnE1f9IfYrDUBQHQCR.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10765, + 10759 + ], + "genres": [ + "Kids", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-11-01", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 125, + "popularity": 4.2282 + }, + { + "id": 88319, + "title": "The Legend of Luo Xiaohei", + "originalTitle": "罗小黑战记", + "overview": "The story begins on a rainy night, when a homeless little black cat is brought home by a young girl Luo Xiaobai. She names the cat Luo Xiao Hei. However, Luo Xiao Hei is no ordinary cat: he is a supernatural entity that hosts several small creatures called Heixiu. As Luo Xiao Hei new life soon threatened by the mysterious Diting, who commands three winged wolves.", + "posterPath": "/bDhBjhFknuPx3mcCInuTa3XaQmw.jpg", + "backdropPath": "/zAozwV3l9bvcGzDUsDYvbOryBKY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-03-17", + "releaseYear": "2011", + "originalLanguage": "zh", + "voteAverage": 9.5, + "voteCount": 16, + "popularity": 4.228 + }, + { + "id": 65353, + "title": "Carmilla", + "originalTitle": "Carmilla", + "overview": "Laura Hollis, a newly enrolled college student at Silas University, shares a room with Betty, who mysteriously disappears all of a sudden. Little does Laura know that after this fateful night, nothing will be the same in her life, starting with meeting her new roommate from hell, Carmilla Karnstein.\n\n\"Carmilla\" is a single-camera, scripted transmedia series that puts a modern spin on the cult classic Gothic vampire novella by Joseph Sheridan Le Fanu. It's a story of a young woman’s susceptibility to the attentions of a female vampire.", + "posterPath": "/8QtaDRC3a1EXvwQ56MLnOVmZ3Ou.jpg", + "backdropPath": "/oIBhaotrWd4P3ZoCndDq6HVqteM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2014-08-19", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.85, + "voteCount": 30, + "popularity": 4.2279 + }, + { + "id": 65292, + "title": "Ajin", + "originalTitle": "亜人", + "overview": "17 years ago, immortals first appeared on the battlefields of Africa. Later, rare, unknown new immortal lifeforms began appearing among humans, and they became known as \"Ajin\" (demi-humans). Just before summer vacation, a Japanese high school student is instantly killed in a traffic accident on his way home from school. However, he is revived, and a price is placed on his head. Thus begins a boy's life on the run from all of humankind.", + "posterPath": "/fnHBwIKxwrFleSzvHzTqcAzDRM.jpg", + "backdropPath": "/kOQkt6e18Fe5h9qnkd3PmffX7og.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2016-01-16", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 330, + "popularity": 4.2267 + }, + { + "id": 118956, + "title": "DOTA: Dragon's Blood", + "originalTitle": "DOTA: Dragon's Blood", + "overview": "After encounters with a dragon and a princess on her own mission, a Dragon Knight becomes embroiled in events larger than he could have ever imagined.", + "posterPath": "/6Qwwam0TQEMQmFMagjtLmcQHJYs.jpg", + "backdropPath": "/wsYqM5sRdWglejqm8MugRDRp7D.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2021-03-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 446, + "popularity": 4.2264 + }, + { + "id": 15768, + "title": "The Guild", + "originalTitle": "The Guild", + "overview": "Fantasy and reality collide when a surprisingly diverse group of online video-game addicts struggle to balance the game with personal relationships.", + "posterPath": "/nDMtG1NwnpA3rPDld38BvWRsVf.jpg", + "backdropPath": "/8gcJEB0jdXqhvYjkCnOCcMnTD8h.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-07-27", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.133, + "voteCount": 113, + "popularity": 4.2261 + }, + { + "id": 2996, + "title": "The Office", + "originalTitle": "The Office", + "overview": "Nightmare boss. Tedious colleagues. Pointless tasks. Welcome to Wernham Hogg. Fancy a tea break with David Brent? Classic comedy from the archive.", + "posterPath": "/oX2JKE1RzAONMbYlujHx0hRAJo1.jpg", + "backdropPath": "/9GWU1AyNqUYIUl1tU7CvXEHUVs9.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2001-07-09", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.829, + "voteCount": 905, + "popularity": 4.226 + }, + { + "id": 34996, + "title": "Teen Mom 2", + "originalTitle": "Teen Mom 2", + "overview": "Jenelle, Chelsea, Kailyn, and Leah are four young women navigating complicated lives. It's not always easy being a young mom.", + "posterPath": "/75pVCsDlbEOYZaRlOqumIS3l8rF.jpg", + "backdropPath": "/arN9ZE0pAjWuyzfY9oSqvRQvfC5.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2011-01-11", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 66, + "popularity": 4.2256 + }, + { + "id": 96162, + "title": "Itaewon Class", + "originalTitle": "이태원 클라쓰", + "overview": "In a colorful Seoul neighborhood, an ex-con and his friends fight a mighty foe to make their ambitious dreams for their street bar a reality.", + "posterPath": "/qg7q0piY0fTt2enlIRHwKKRwNjS.jpg", + "backdropPath": "/rtYQCa2NzX8RspbOmwfAla6BemO.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-01-31", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.407, + "voteCount": 381, + "popularity": 4.2242 + }, + { + "id": 122235, + "title": "Joe Pickett", + "originalTitle": "Joe Pickett", + "overview": "A game warden and his family navigate the changing political and socio-economic climate in a small rural town in Wyoming on the verge of economic collapse. Surrounded by rich history and vast wildlife, the township hides decades of schemes and secrets that are yet to be uncovered.", + "posterPath": "/pWBCwK0lp5RLCyG89JzrhEVny47.jpg", + "backdropPath": "/gazijGFhqouUBvrTiFE9f0ZqF07.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "2021-12-06", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 82, + "popularity": 4.2238 + }, + { + "id": 43232, + "title": "Kyo Kara Maoh!", + "originalTitle": "今日から㋮王!", + "overview": "After being flushed down a toilet, 15-year-old Yuuri Shibuya is transported to an alternate world called the New Demon Kingdom, and is told that he is to be the new king of the demons.", + "posterPath": "/2ez4tj98hlSN7QUcneW7NCsOpNo.jpg", + "backdropPath": "/4x1Nou6H85cG72OmEnasjRTVeJ4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2004-04-03", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 15, + "popularity": 4.2237 + }, + { + "id": 31628, + "title": "Pair of Kings", + "originalTitle": "Pair of Kings", + "overview": "Brady and Boomer, 16-year-old fraternal twins, are typical teens being raised by relatives in Chicago. But when the Royal Secretary to the Throne of the Island of Kinkou, arrives to inform the boys of their lineage, their lives change drastically. Now, Brady and Boomer must relocate and claim the throne as joint Kings of the island.", + "posterPath": "/k8OQOO5DWtBTgTtc1xoXxYSCy5O.jpg", + "backdropPath": "/eeyZqchUXikR040di8Ng7Zvu83g.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10759, + 35, + 10765 + ], + "genres": [ + "Family", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-09-10", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 116, + "popularity": 4.2235 + }, + { + "id": 1095, + "title": "Ghost in the Shell: Stand Alone Complex", + "originalTitle": "攻殻機動隊 STAND ALONE COMPLEX", + "overview": "In the future when technological enhancements and robotics are a way of life, Major Motoko Kusanagi and Section 9 take care of the jobs that are too difficult for the police. Section 9 employs hackers, sharpshooters, detectives and cyborgs all in an effort to thwart cyber criminals and their plans to attack the innocent.", + "posterPath": "/6UH2vJryPpQp38noqvchu3uEeqX.jpg", + "backdropPath": "/2rvFW70UeOMCTXGmYHij1bwHCiu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 80, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-10-01", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 404, + "popularity": 4.2218 + }, + { + "id": 114924, + "title": "Time Bandits", + "originalTitle": "Time Bandits", + "overview": "Eleven-year-old Kevin's passion for history is put to the test when he joins a ragtag group of time-traveling thieves on a high-stakes and hilarious adventure.", + "posterPath": "/ahnTuygdAbjXvLKzLQlK2txosMX.jpg", + "backdropPath": "/A51uUl3APMGOiB2FkzQvs49HOdd.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2024-07-23", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.175, + "voteCount": 114, + "popularity": 4.2214 + }, + { + "id": 137437, + "title": "National Treasure: Edge of History", + "originalTitle": "National Treasure: Edge of History", + "overview": "While searching for history's greatest treasure, Jess Valenzuela unburies her family's secret past.", + "posterPath": "/9VW8wF6KpG01fMY4erZ9bw7A4Er.jpg", + "backdropPath": "/y2s4Xdi99Mu2Nh85Y89YZrbY5r6.jpg", + "mediaType": "tv", + "genreIds": [ + 10759 + ], + "genres": [ + "Action & Adventure" + ], + "releaseDate": "2022-12-14", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.836, + "voteCount": 226, + "popularity": 4.2195 + }, + { + "id": 99494, + "title": "Flower of Evil", + "originalTitle": "악의 꽃", + "overview": "Hiding a twisted past, a man maintains his facade as the perfect husband to his detective wife — until she begins investigating a series of murders.", + "posterPath": "/ozPDfBmsrJDFF9ZhwQNxcGLXvzm.jpg", + "backdropPath": "/3rP5OCR8nCUlC960GGkYxV0RPp5.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2020-07-29", + "releaseYear": "2020", + "originalLanguage": "ko", + "voteAverage": 8.231, + "voteCount": 566, + "popularity": 4.2191 + }, + { + "id": 156240, + "title": "The Chelsea Detective", + "originalTitle": "The Chelsea Detective", + "overview": "Detective Inspector Max Arnold lives on a battered houseboat at the end of Cheyne Walk after separating from his art dealer wife Astrid. The son of a local bookshop owner, Max is a far cry from the affluent elite whose crimes he'll help solve along with D.C. Priya Shamsie.", + "posterPath": "/5wkzja9xjIPMc46cAGuei172lnu.jpg", + "backdropPath": "/izA8dORQJsva6AwFsOBxoOmawnp.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648 + ], + "genres": [ + "Crime", + "Mystery" + ], + "releaseDate": "2022-02-07", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 56, + "popularity": 4.2174 + }, + { + "id": 13339, + "title": "Space Battleship Yamato", + "originalTitle": "宇宙戦艦ヤマト", + "overview": "Space Battleship Yamato is a Japanese science fiction anime series featuring an eponymous spacecraft. It is also known to English-speaking audiences as Space Cruiser Yamato; an English-dubbed and heavily edited version of the series was broadcast on North American and Australian television as Star Blazers. The first two seasons of this version were broadcast in Greece in 1981-82 as Διαστημόπλοιο Αργώ. An Italian-language version was also broadcast under the name Star Blazers in Italy, and a Portuguese-language version was successfully shown in Brazil under the title Patrulha Estelar and Viaje a la Ultima Galaxia or Astronave Intrepido in Spain and Latin America.\n\nIt is a seminal series in the history of anime, marking a turn towards more complex serious works and influencing works such as Mobile Suit Gundam and Neon Genesis Evangelion; Hideaki Anno has ranked Yamato his favorite anime and credited it with sparking his interest in anime.\n\nYamato was the first anime series or movie to win the Seiun Award, a feat not repeated until the 1985 Nausicaä of the Valley of the Wind.", + "posterPath": "/3Zzgx624eyFOmZxvmETLGlZTg20.jpg", + "backdropPath": "/irLMjcXWJEcHAdAQBn6KFYTAmuo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1974-10-06", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 14, + "popularity": 4.2171 + }, + { + "id": 4599, + "title": "Yes, Dear", + "originalTitle": "Yes, Dear", + "overview": "A comedy about two young couples and their outrageously contrasting views on parenting. Greg and Kim Warner struggle on a daily basis to become perfect at the job. Kim is a neurotic, stay-at-home mother, and although her husband, Greg, is a success in his career, his more difficult job is keeping his wife calm as they raise their two young children. While Kim is determined to be the perfect mother and perfect wife and to raise the perfect children, her sister, Christine Hughes, a very down-to-earth mother of two, continually reminds her that life will never be perfect. Christine's husband, Jimmy, often feels compelled to share with his brother-in-law his philosophy about being a husband and a parent while still remaining a man.", + "posterPath": "/bEcwkwonvM9OSnfYFtOmhRFHuoZ.jpg", + "backdropPath": "/k1V2SmjkSO0eryZPEZtKmcHG0yS.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2000-10-02", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 6.683, + "voteCount": 41, + "popularity": 4.2169 + }, + { + "id": 1584, + "title": "What a Cartoon!", + "originalTitle": "What a Cartoon!", + "overview": "Various original cartoons by some of today's top animators.", + "posterPath": "/hxlRNgdB1dvtylJuLyXHGtVo3Tu.jpg", + "backdropPath": "/SwelVZszZ1yn6g7wGokN4PHy7w.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "1995-02-20", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 23, + "popularity": 4.2159 + }, + { + "id": 34105, + "title": "Golden Boy", + "originalTitle": "GOLDEN BOY さすらいのお勉強野郎", + "overview": "Kintaro Oe is a 25-year-old boy who left Tokyo University and now lives a simple life, traveling by bicycle to learn everything he can about the world.", + "posterPath": "/ahkQ6qnqouwZw7nro2YDEYLzrNn.jpg", + "backdropPath": "/v3w1ttzuqoBWaJ17w8lv4AATMdo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1995-10-27", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 8.176, + "voteCount": 491, + "popularity": 4.2155 + }, + { + "id": 3554, + "title": "The Parkers", + "originalTitle": "The Parkers", + "overview": "Spunky daughter Kim is mortified when her bigger-than-life mom, Nikki, decides to go back to school at the same junior college she attends.", + "posterPath": "/vV2wJKLoM3VnHUkNoRHMaLc968c.jpg", + "backdropPath": "/cQS61ikUL78Cv0DM7CL5r7HUN2z.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1999-08-30", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 8.242, + "voteCount": 33, + "popularity": 4.2148 + }, + { + "id": 221486, + "title": "Bookie", + "originalTitle": "Bookie", + "overview": "A veteran bookie struggles to survive the impending legalization of sports gambling, increasingly unstable clients, family, co-workers, and a lifestyle that bounces him around every corner of Los Angeles, high and low.", + "posterPath": "/2g2ioERz9CwdfAXv5ykQR7h3Ie3.jpg", + "backdropPath": "/3ZfBgVYfgYx1NSJSm2T3upkFxkf.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-11-30", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 48, + "popularity": 4.2142 + }, + { + "id": 40395, + "title": "Absolute Zero", + "originalTitle": "絶対零度", + "overview": "Izumi Sakuragi is a new police sergeant with the Special Investigations Office, which was set up within the Metropolitan Police in November last year. The new investigation team uses DNA analysis and the latest in forensics science to investigate cold cases as well as cases suspected to involve missing persons.", + "posterPath": "/kqk2GROSyVnQpHDyTC4g5wjgJXl.jpg", + "backdropPath": "/tRlOLgbvhzJ8lKY8QsLdV6zIb14.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2010-04-13", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 10, + "popularity": 4.2131 + }, + { + "id": 84840, + "title": "I Love Paraisópolis", + "originalTitle": "I Love Paraisópolis", + "overview": "", + "posterPath": "/91czmLnBNHBIsGcWvrAjZV73gRs.jpg", + "backdropPath": "/zV1NB2KkavQBQ0WXOzXFdS81XOP.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2015-05-11", + "releaseYear": "2015", + "originalLanguage": "pt", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 4.2128 + }, + { + "id": 41280, + "title": "The Cesaronis", + "originalTitle": "I Cesaroni", + "overview": "Giulio is a widower, struggling to raise three sons, Marco, Rudi, and Mimmo, as best he can. He lives in Rome's working-class Garbatella neighborhood and runs a wine shop with his two brothers. Lucia, meanwhile, comes from Milan's middle-class background; she's divorced and trying to rebuild her life with her two daughters, Eva and Alice. The two meet by chance and recognize each other: they had a fling as teenagers, many years earlier. Yet first love is never forgotten, and so Giulio and Lucia find themselves together again. Their meeting, however, changes not only the lives of a man and a woman, but also those of two families as different as could be. Two families who find themselves living under the same roof without even having had the time to get to know each other well.", + "posterPath": "/h6EaTBCOZlSaAEOTiaINzsYW9VR.jpg", + "backdropPath": "/wt3nLs5Fcn1yFzgjB7bHdcI2h4I.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2006-09-07", + "releaseYear": "2006", + "originalLanguage": "it", + "voteAverage": 7.075, + "voteCount": 53, + "popularity": 4.2119 + }, + { + "id": 3856, + "title": "Ultraman Taro", + "originalTitle": "ウルトラマンタロウ", + "overview": "Kotaro Higashi trained to be a boxer, but after an icident with Astromons, he was killed. However, his body was brought to Nebula M-78 where Mother of Ultra saved his life by joining him with Ultraman Taro. Taro had spent many years training, honing his skills based on those of the other Ultra Brothers to become strong. The two returned to earth as a new kaiju era was beginning.", + "posterPath": "/kQIcKS1N0HPahg3HcamPszw31H2.jpg", + "backdropPath": "/bpseglVmyzjyzHEM1nJTKnzWy6b.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1973-04-06", + "releaseYear": "1973", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 11, + "popularity": 4.2074 + }, + { + "id": 67166, + "title": "El marginal", + "originalTitle": "El marginal", + "overview": "An ex-cop entered a prison as convicted under a false identity in order to infiltrate within a group of prisoners that has just kidnapped the teenage daughter of an important national judge.", + "posterPath": "/p1GFsUK5nCVHYNtjRxoGyfGdD9C.jpg", + "backdropPath": "/b2HJgNFTyqhd2BKmgWImG6r7mGy.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2016-06-02", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 8.2, + "voteCount": 411, + "popularity": 4.2056 + }, + { + "id": 2598, + "title": "Dancing on Ice", + "originalTitle": "Dancing on Ice", + "overview": "Dancing on Ice is a British television show in which celebrities and their professional partners figure skate in front of a panel of judges consisting of Christopher Dean, Jayne Torvill, Oti Mabuse, and Ashley Banjo.\n\nPresented by: Holly Willoughby (S1–7, S10–) and Stephen Mulhern (S16–).\n\nFormer presented by: Philip Schofield (S1–S15), Christine Bleakley (S8–S9)\n\nJudged by: Christopher Dean (S10-), Jayne Torvill (S10-), Oti Mabuse (S14-), Ashley Banjo (S10–)\n\nFormer judged by: Karen Barber (S1–5. S8-S9), Robin Cousins (S1-9), Jason Gardiner (S1-6, S8-11), Nicky Slater (S1-5), Karen Kresge (S1), Natalie Bestemianova (S2), Ruthie Henshall (S3–4), Emma Bunton (S5-6), Louie Spence (S7), Katarina Witt (S7), Ashley Roberts (S8–9), John Barrowman (S12-13)", + "posterPath": "/el97jvNC9QEkjmfdTW7NbX4x2k9.jpg", + "backdropPath": "/6GTb77sDdEHcZl3OzE7dOPq07jl.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2006-01-14", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 5.2, + "voteCount": 13, + "popularity": 4.2012 + }, + { + "id": 61389, + "title": "Saint Seiya: The Lost Canvas", + "originalTitle": "聖闘士星矢 THE LOST CANVAS 冥王神話", + "overview": "The Sacred war tale that took place during the 18th century is now unveiled. Tenma, Alone and Sasha, three orphans living their childhood protecting each other and then separated at diferent ages made a pact to meet again. Find themselves again connected but now in roles they never saw as posible. Pegasus, Hades and Athena. Its now time to fight but destiny can be bitter since war between Athena and Hades forces can put old friends and families face to face.", + "posterPath": "/eJNAxUHVXXUSbuc6D1ojSYH6S1r.jpg", + "backdropPath": "/gtHBhTeN7IBq0bba2QpWa7Hln8m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2009-06-24", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.278, + "voteCount": 635, + "popularity": 4.2006 + }, + { + "id": 131365, + "title": "The Wrong Way to Use Healing Magic", + "originalTitle": "治癒魔法の間違った使い方", + "overview": "An ordinary walk home from school turns into an epic journey for Usato. After suddenly being dropped into another world with two fellow students, Usato learns he was summoned there by accident. But things turn around when he discovers a unique aptitude for healing magic! Now, he trains beyond human limitations, using his self-healing abilities to gain absurd strength and unrivaled stamina.", + "posterPath": "/uQEbcmuUwDfPiVUIRCF6d57eErM.jpg", + "backdropPath": "/1WbGhlLj1z6PC6Vrz5baouodURB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 92, + "popularity": 4.1993 + }, + { + "id": 7842, + "title": "The Tom and Jerry Show", + "originalTitle": "The Tom and Jerry Show", + "overview": "The New Tom & Jerry Show is an animated television series produced for Saturday mornings by Hanna-Barbera Productions in association with Metro-Goldwyn-Mayer Television in 1975 for ABC based on the theatrical shorts and characters Tom and Jerry.", + "posterPath": "/olhPG4SHIZuDngkQtKJBOMK9BiQ.jpg", + "backdropPath": "/l9UK0JT5vcmm2RXaz7PcP9GnogA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Family", + "Comedy" + ], + "releaseDate": "1975-09-06", + "releaseYear": "1975", + "originalLanguage": "en", + "voteAverage": 7.691, + "voteCount": 1151, + "popularity": 4.1974 + }, + { + "id": 34186, + "title": "Chi's Sweet Home", + "originalTitle": "チーズスイートホーム", + "overview": "An American Shorthair kitten wanders away from her mother and siblings one day while enjoying a walk outside. Lost in her surroundings, she struggles to find her way back home. She is soon found by the Yamada family. Finding a home for her proves to be difficult, so the family eventually decides to keep the kitten, naming her \"Chi\".", + "posterPath": "/xEJmKzbOq87E7eMp0eatgmJ2DSa.jpg", + "backdropPath": "/sQ6udM8ZUNPxrOtut8T4sP27tOR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2008-03-31", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 17, + "popularity": 4.1968 + }, + { + "id": 87164, + "title": "The Heaven Sword and the Dragon Saber", + "originalTitle": "倚天屠龙记", + "overview": "Heavenly Sword and Dragon Slaying Sabre is a 2019 Chinese wuxia television series adapted from the novel The Heaven Sword and Dragon Saber by Jin Yong. Originally published in newspapers from 1961 to 1963, the story has been revised twice; once in 1979 and the second in 2005. This remake is primarily based on the third edition of the novel. The series is the first adaptation to be released as a web series and was first broadcast on Tencent in China on February 27, 2019.", + "posterPath": "/knRIzaWIXBtV8KZMWwG1biykQiZ.jpg", + "backdropPath": "/8W05Bq6d5FIuiDrbX8Rh11WEXUd.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2019-02-27", + "releaseYear": "2019", + "originalLanguage": "zh", + "voteAverage": 7.3, + "voteCount": 11, + "popularity": 4.1945 + }, + { + "id": 30773, + "title": "The Yogi Bear Show", + "originalTitle": "The Yogi Bear Show", + "overview": "From his home in Jellystone Park, Yogi Bear dreams of nothing more in life than to outwit as many unsuspecting tourists as he can and grab their prized picnic baskets all while staying one step ahead of the ever-exasperated Ranger Smith. Yogi's little buddy, Boo-Boo, tries to keep Yogi out of trouble but rarely succeeds. That's okay because not even Ranger Smith can stay mad for long at the lovable, irresistible Yogi Bear.", + "posterPath": "/alDnwQ75JZu3V3aoa4F5w7LoyL7.jpg", + "backdropPath": "/nBGYEPVOPsq9qyNGnZzIXPzVWxr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1961-01-30", + "releaseYear": "1961", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 235, + "popularity": 4.1945 + }, + { + "id": 34607, + "title": "Penn & Teller: Fool Us", + "originalTitle": "Penn & Teller: Fool Us", + "overview": "Illusionists Penn & Teller throw down the gauntlet to aspiring magicians to perform their most mystifying trick - and fool Penn and Teller. Penn & Teller have no prior knowledge of either the performers or the planned trick. They sit in the audience just like everyone else, watching every move the guest magicians make. If any illusionist fools the professionals, they win a five star trip to Las Vegas to perform as the opening act in Penn & Teller's world famous show at the Rio Hotel & Casino.", + "posterPath": "/8fLyvZZ2yxDhjqc2z6L2iwtW4T3.jpg", + "backdropPath": "/9k1rQCVREwF0Z7cHlUu6CoTwTnO.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2011-01-07", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.129, + "voteCount": 97, + "popularity": 4.1903 + }, + { + "id": 237327, + "title": "My Golden Blood", + "originalTitle": "เลือดนายลมหายใจฉัน", + "overview": "Mark is a vampire who hasn't found the meaning of life in centuries until he meets Tong, who gives him a reason to live. However, Tong's rare and powerful blood is irresistible to vampires, and Mark not only has to protect Tong from other vampires, he also has to fight his inner desire, struggling between love and instinct.", + "posterPath": "/620RwvVH5ZAN0k4TsuARAyySQ0y.jpg", + "backdropPath": "/udHJQa6qqfkoufp0u5sddJTkt1M.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-03-12", + "releaseYear": "2025", + "originalLanguage": "th", + "voteAverage": 9.136, + "voteCount": 22, + "popularity": 4.1883 + }, + { + "id": 6647, + "title": "The Bold and the Beautiful", + "originalTitle": "The Bold and the Beautiful", + "overview": "Continuing drama combining romance and intrigue set against the glittering backdrop of Beverly Hills and the American fashion industry.", + "posterPath": "/rbmLSQHmSSCBhSfRhvToAEvSsqI.jpg", + "backdropPath": "/slVKYnKNyfcPv35AG3MXlAq9IqV.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1987-03-23", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 5.489, + "voteCount": 142, + "popularity": 4.1879 + }, + { + "id": 66871, + "title": "SIX", + "originalTitle": "SIX", + "overview": "Action drama series inspired by the real missions of Navy SEAL Team Six.", + "posterPath": "/3UUbbelbbHGo0AEHK7DQbJMosnJ.jpg", + "backdropPath": "/2MoGj8pxVHgyBb3mAsfhYO67j5h.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18, + 80, + 10759 + ], + "genres": [ + "War & Politics", + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2017-01-18", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 502, + "popularity": 4.1877 + }, + { + "id": 194718, + "title": "Reborn to Master the Blade: From Hero-King to Extraordinary Squire ♀", + "originalTitle": "英雄王、武を極めるため転生す ~そして、世界最強の見習い騎士♀~", + "overview": "After living a life devoted to serving his country and people, Inglis’ one wish to be free of a king’s burden and to train was actually heard, but as a beautiful girl! Reborn in the far future as a daughter to renowned knights, Inglis can now focus on mastering the martial arts. A wish has been granted, and Inglis will be on the front lines fulfilling the dream of becoming the strongest knight.", + "posterPath": "/zrnUnV0PFWnJ1G6wDvzkQL2HL9d.jpg", + "backdropPath": "/uxOlf8zRKQ6TnEN1QxiORcJKcDf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 50, + "popularity": 4.1853 + }, + { + "id": 61367, + "title": "The Mysteries of Laura", + "originalTitle": "The Mysteries of Laura", + "overview": "Laura Diamond, a brilliant NYPD homicide detective balances her “Columbo” day job with a crazy family life that includes two unruly twin boys and a soon-to-be ex-husband — also a cop — who just can't seem to sign the divorce papers. Between cleaning up after her boys and cleaning up the streets, she’d be the first to admit she has her “hot mess” moments in this hilariously authentic look at what it really means to be a “working mom” today. Somehow, she makes it all work with the help of her sexy and understanding partner, and things becomes even more complicated when her husband, ironically, becomes her boss at the precinct. For Laura, every day is a high-wire balancing act.", + "posterPath": "/AdJJMOA2I6Yw6NTPsEWS5jPxy0L.jpg", + "backdropPath": "/vZg0FLPeSh2DzbkoCJYIh4uKETH.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80, + 18 + ], + "genres": [ + "Mystery", + "Crime", + "Drama" + ], + "releaseDate": "2014-09-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.155, + "voteCount": 110, + "popularity": 4.1834 + }, + { + "id": 619, + "title": "Half & Half", + "originalTitle": "Half & Half", + "overview": "Half & Half is an American sitcom that aired on UPN from September 23, 2002, to May 15, 2006. The show focuses on the lives of two paternal half-sisters in their twenties who were estranged throughout their childhood, and are finally developing a close relationship. The series is set in San Francisco.\n\nIt was the second-most-watched show on UPN's Monday night line-up and fourth overall on the network. The show was on The CW's first draft line-up in March 2006, but due to several circumstances—including The CW's contractual obligation to pick up Reba, the uncancelling of All of Us, and the pick-up of the Girlfriends spin-off The Game—Half & Half was left off the final Fall 2006 schedule and ended production. The series has aired in reruns on Global TV in Canada, Trouble in the UK and in local syndication in the United States. It also airs in the United States on TV One.", + "posterPath": "/8TVku3ieyStr4mJihUZal2gay9I.jpg", + "backdropPath": "/2PtQyFLTdpzr7MkxKCTBN5dmPpA.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2002-09-23", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 22, + "popularity": 4.1831 + }, + { + "id": 16169, + "title": "Esmeralda", + "originalTitle": "Esmeralda", + "overview": "Esmeralda is a telenovela that was released by Televisa in 1997. It is a remake of a 1970 Venezuelan telenovela of that same name, and was itself remade in Brazil in 2004. Another version is Topacio from Venezuela in 1984.\n\nOne of the most famous telenovela all the time.", + "posterPath": "/vsW9cQo4XL50zCz00groza5EmW0.jpg", + "backdropPath": "/jdM7XAINHU4sjy7A8hzphOYwmoT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1996-12-31", + "releaseYear": "1996", + "originalLanguage": "es", + "voteAverage": 7.3, + "voteCount": 167, + "popularity": 4.1817 + }, + { + "id": 229609, + "title": "My Daughter Left the Nest and Returned an S-Rank Adventurer", + "originalTitle": "冒険者になりたいと都に出て行った娘がSランクになってた", + "overview": "The young adventurer Belgrieve retires to a quieter life after losing his leg to a beast. While gathering herbs in the woods one day, he rescues an abandoned child. Angeline trains with her father and later achieves S-Rank in the capital’s adventurer guild. Five years later, she decides to return home. Will Belgrieve get another chance at being an adventurer? Will Angeline return home unscathed?", + "posterPath": "/21RbBglma8tFhKBLX2UxfZ4DT8X.jpg", + "backdropPath": "/r65DFW2YePjqKjsjVRVkTNokqs1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.542, + "voteCount": 24, + "popularity": 4.1814 + }, + { + "id": 32915, + "title": "Akasya Durağı", + "originalTitle": "Akasya Durağı", + "overview": "Akasya Durağı is a Turkish comedy television series on Kanal D, which initially broadcast in 2008\n\nThe Story:\n\nNuri is a very old driver and when he become retired he start his own taxi company with money that earned for all of his life. There are a few sympathetic driver and pure tea maker-office boy at the taxi company. And all of them life is very interesting and very funny. They have great time at the taxi company. Too many events do and find our drivers and their lives'. The story goes so... By the way, everyone says to Nuri 'Nuri Dad' because he is a very good man.", + "posterPath": "/aZVlKCq6vRRes1wvzYMV8NTBwKd.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2008-07-14", + "releaseYear": "2008", + "originalLanguage": "tr", + "voteAverage": 6.441, + "voteCount": 34, + "popularity": 4.1797 + }, + { + "id": 19092, + "title": "FlashForward", + "originalTitle": "FlashForward", + "overview": "When the entire world blacks out for two minutes and seventeen seconds, everyone sees a flash of their own future 6 months from the present. For some, the future is hopeful, while for others, it is unexpected. For a few, it doesn't seem to exist. Knowing their fate will alter each person's life, destinies will be changed.", + "posterPath": "/7iu2HJ8ZSNbBgFLi42JNcuPjBax.jpg", + "backdropPath": "/pX0YNhgplZW4zCcA4jDVrr2wBiM.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2009-09-24", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 7.027, + "voteCount": 509, + "popularity": 4.1772 + }, + { + "id": 61194, + "title": "Robocar Poli", + "originalTitle": "로보카폴리", + "overview": "When disaster strikes in Brooms Town, police car Robocar Poli, fire truck Robotruck Roy and their friends on the rescue team race to save the day.", + "posterPath": "/1LbEo2Gk3IP5DjN07K7xJQ9usEw.jpg", + "backdropPath": "/8Tvmia6usI20KUnDkc9UltAfwmG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751, + 10759, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Family", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2011-02-28", + "releaseYear": "2011", + "originalLanguage": "ko", + "voteAverage": 6.6, + "voteCount": 10, + "popularity": 4.1757 + }, + { + "id": 34852, + "title": "The Law of Ueki", + "originalTitle": "うえきの法則", + "overview": "The fate of the world rests on Ueki, an average junior high student. Average until he gains the power to change trash into trees. Granted to him by the enigmatic Mr K., Ueki’s strange power forces him to participate in the 100-fighter \"Battle of Supernatural Powers.\" If Ueki wins the tournament, Mr. K will become the new King of the Celestial World while Ueki will receive the \"Talent of Blank\", allowing him to choose any power he desires. However, if Ueki gets too many penalties during the game, he will disappear!", + "posterPath": "/nry8XaWoKiqVz5hLkBfeFkxUQEe.jpg", + "backdropPath": "/38KLQDWmnr2J2Lysc12JVoVEhwG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-04", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 39, + "popularity": 4.1714 + }, + { + "id": 214540, + "title": "Dead Mount Death Play", + "originalTitle": "デッドマウント・デスプレイ", + "overview": "As a legendary hero nears victory against a necromancer known as The Corpse God, things take an unexpected turn with the dark sorcerer’s final gambit—reincarnation magic. This last-ditch effort catches the brave fighter off guard, and now he’s a boy named Polka Shinoyama in a whole new world! The showdown between good and evil just got epic.", + "posterPath": "/oOlg3bPWOKBgy5kgOTVe8pJz4HI.jpg", + "backdropPath": "/tNiN29L1IaLK5uQIGMgtQvUKQVt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-11", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.83, + "voteCount": 56, + "popularity": 4.1708 + }, + { + "id": 71528, + "title": "Drop the Mic", + "originalTitle": "Drop the Mic", + "overview": "Based on a popular segment on \"The Late Late Show With James Corden\" and emceed by rapper-actor Method Man and model Hailey Baldwin, \"Drop the Mic\" invites celebrities from the worlds of entertainment, music, sports, and pop culture to compete in rap battles. Episodes feature four players in head-to-head battles, creating moments packed with lyrical creativity and \"Did you hear that?\" moments. Studio audience votes determine the mic-dropping winner of each battle.", + "posterPath": "/iOgPg0GVMcx8CPdc1NlUoWg5mtC.jpg", + "backdropPath": "/vu0T40EGPRH4HW44ch8fAuXgZSF.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 35 + ], + "genres": [ + "Reality", + "Comedy" + ], + "releaseDate": "2017-10-24", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 4.1693 + }, + { + "id": 238084, + "title": "Trigger", + "originalTitle": "트리거", + "overview": "As illegal firearms flood into a gun-free South Korea, a resolute cop and a mysterious partner join forces to stop the chaos from sweeping the nation.", + "posterPath": "/9eDF8Z4iFFCmQROiuej54rSK9LT.jpg", + "backdropPath": "/5FNa2FWtoSGFYc3x34T9dPHdFAi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2025-07-25", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.59, + "voteCount": 67, + "popularity": 4.1691 + }, + { + "id": 132979, + "title": "Bad and Crazy", + "originalTitle": "배드 앤 크레이지", + "overview": "A superhero drama about Soo-yeol who has lived his whole life as a materialistic police detective, but changes into a champion for justice and fights against police corruption when a hidden persona called \"K\" awakens inside him.", + "posterPath": "/t9CRsIT1sGZY3bEpkWPZjMb4EWy.jpg", + "backdropPath": "/6MQaS4mMnM2WPvsAdQvZDOTxRK9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-12-17", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 7.9, + "voteCount": 98, + "popularity": 4.1671 + }, + { + "id": 102434, + "title": "The Head", + "originalTitle": "The Head", + "overview": "In an isolated and inaccessible Antarctic research station in which winter has fallen on the South Pole and the sun will soon disappear for the next six months, a small team, known as the Winterers, remain at the Polaris VI Antarctic Research Station to continue their innovative research. Renowned biologist Arthur Wilde is determined to find a solution to climate change, but his quest turns into a nightmare when several of his esteemed scientists suddenly begin to die.", + "posterPath": "/gFiFKWx8nBjo3iRYcosdJeYUtaX.jpg", + "backdropPath": "/8GAIpNkyVHorYZhCKYT4hC9C7Dv.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2020-06-12", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 173, + "popularity": 4.167 + }, + { + "id": 4003, + "title": "The Mod Squad", + "originalTitle": "The Mod Squad", + "overview": "The Mod Squad was the enormously successful groundbreaking \"hippie\" undercover cop show that ran on ABC from September 24, 1968, until August 23, 1973. It starred Michael Cole as Pete Cochren, Peggy Lipton as Julie Barnes, Clarence Williams III as Linc Hayes, and Tige Andrews as Captain Adam Greer. The executive producers of the series were Aaron Spelling and Danny Thomas.\n\nThe iconic counter-culture police series earned six Emmy nominations, four Golden Globe nominations plus one win for Peggy Lipton, one Directors Guild of America award, and four Logies. In 1997 the episode \"Mother of Sorrow\" was ranked #95 on TV Guide's 100 Greatest Episodes of All Time.", + "posterPath": "/c5HaIPOSZitasqNlLRp8ZzuUsSn.jpg", + "backdropPath": "/46aFk5gKSZaV44iV6iLwuhwtswt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1968-09-24", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 24, + "popularity": 4.167 + }, + { + "id": 33155, + "title": "Offspring", + "originalTitle": "Offspring", + "overview": "An exuberant drama set in Melbourne's Fitzroy, centering on Nina Proudman and her struggle to deal with her fabulously messy family, her hunt for a decent love life and her tendency to overthink and fly off into fantasy.", + "posterPath": "/m0lZo55EY4Mxf5MdkYoVoIkOR8W.jpg", + "backdropPath": "/7yEbqUxa0UcWCQ0LsIHLnPLO98C.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-08-22", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.904, + "voteCount": 26, + "popularity": 4.1633 + }, + { + "id": 37913, + "title": "American Ninja Warrior", + "originalTitle": "American Ninja Warrior", + "overview": "Follow competitors as they tackle a series of challenging obstacle courses in both city qualifying and city finals rounds across the country. Those that successfully complete the finals course in their designated region move on to the national finals round in Las Vegas, where they face a stunning four-stage course modeled after the famed Mt. Midoriyama course in Japan. The winner will take home a grand prize of $1 million.", + "posterPath": "/iAL6JYSfMp3v009qbQCyMwiGl2g.jpg", + "backdropPath": "/wCuGxz9dxsPPPoCW9eqcZnEyM4A.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2009-12-12", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 72, + "popularity": 4.1632 + }, + { + "id": 10620, + "title": "Maya the Bee", + "originalTitle": "みつばちマーヤの冒険", + "overview": "The adventures of a young and happy bee who is sent by her queen to search for pollen, and in doing so she finds a new world that surrounds her, making friends with various forest creatures.", + "posterPath": "/aViIrap16cmxz6dbBwI9JCremrD.jpg", + "backdropPath": "/ffqFjz0fp0Vt6y8GMhR9a1UOD9j.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1975-04-01", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 87, + "popularity": 4.1632 + }, + { + "id": 61014, + "title": "The Knick", + "originalTitle": "The Knick", + "overview": "Set in downtown New York in 1900, 'The Knick' is centered on the Knickerbocker Hospital and its staff, notably Dr. John Thackery, the hospital's brilliant chief surgeon who pushes medicine's boundaries, pioneering new procedures despite a severe drug addiction.", + "posterPath": "/oeEqDSIVOi6q0GcZj8L9Q6G7fGC.jpg", + "backdropPath": "/5dH0UdUDON0FOKfm9guXgOkWMlH.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-08-08", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.864, + "voteCount": 479, + "popularity": 4.1631 + }, + { + "id": 248982, + "title": "Cassandra", + "originalTitle": "Cassandra", + "overview": "A family moves into a vintage smart home and discovers that it's under the control of a virtual assistant — who will stop at nothing to keep them there.", + "posterPath": "/62TJdt6GlzdRbyWY9RYWjljgg3b.jpg", + "backdropPath": "/4GAmr9BWRfVjZ3GAntm7yjVf82i.jpg", + "mediaType": "tv", + "genreIds": [ + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-02-06", + "releaseYear": "2025", + "originalLanguage": "de", + "voteAverage": 7.115, + "voteCount": 231, + "popularity": 4.1627 + }, + { + "id": 79102, + "title": "Nude", + "originalTitle": "Nu", + "overview": "In 2026, a radical change requires everyone to live naked in a pacified and peaceful France. But the murder of a young woman found dressed revives tensions. The investigation is entrusted to a young inspector who collaborates with her ex-partner, just out of the coma in which he had fallen at the time ... where everyone was still wearing clothes.", + "posterPath": "/jVWhTvUpGgvyYn2ApS9OyOAw7GA.jpg", + "backdropPath": "/atO5Zy1161A0l3FGMCO5UqDcfJn.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2018-06-07", + "releaseYear": "2018", + "originalLanguage": "fr", + "voteAverage": 5.273, + "voteCount": 11, + "popularity": 4.1613 + }, + { + "id": 61019, + "title": "Street Outlaws", + "originalTitle": "Street Outlaws", + "overview": "From a 1969 Chevy Nova to a race-ready farm truck, the vehicles - and their drivers - come in all shapes and sizes and have one thing in common: the need for speed. But according to the STREET OUTLAWS of Oklahoma City - home to one of the largest undercover street racing rings in America – if you’re not on “the list,” you don’t matter. The “list” contains the 10 fastest street-racing cars in Oklahoma City and they are the best of the best. Not only will these guys will do anything -ANYTHING- to get ranked on this list, they’ll do whatever it takes to STAY ranked. Street racing comes first - before family, before friends and before work. The stakes are high and these drivers will put everything on the line to get to top, where there can only be one #1.", + "posterPath": "/oQXmhjhmqdArArpnubmtm20d0zX.jpg", + "backdropPath": "/d5lTgzzY0vs3Or89oc5ik7ONgQA.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2013-12-16", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 64, + "popularity": 4.1613 + }, + { + "id": 42035, + "title": "The Boat", + "originalTitle": "El barco", + "overview": "A global cataclysm, caused by a fatal accident in Geneva (Switzerland) during the implementation of the particle accelerator will lead to the crew and students of the school-ship Polar Star to live the greatest adventure of their lives. Isolated and aware that we only have each other, the ship will become their only home.", + "posterPath": "/tfifgKMWPCtEebp7wH9vBKkDpcx.jpg", + "backdropPath": "/juDksh1UeSodTjavLxiC4JJgn3F.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648, + 18 + ], + "genres": [ + "Action & Adventure", + "Mystery", + "Drama" + ], + "releaseDate": "2011-01-17", + "releaseYear": "2011", + "originalLanguage": "es", + "voteAverage": 7.842, + "voteCount": 1667, + "popularity": 4.1606 + }, + { + "id": 120734, + "title": "Just Beyond", + "originalTitle": "Just Beyond", + "overview": "An anthology series that tells astonishing and thought-provoking stories of a reality just beyond the one we know. Each episode introduces viewers to a new cast of characters who must go on a surprising journey of self-discovery in a supernatural world of witches, aliens, ghosts and parallel universes.", + "posterPath": "/yByXllpVtTfDf2wT0qe1MSGdRFa.jpg", + "backdropPath": "/ltmyHkIfpO3w5Zb1DmuQXwsJyiS.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2021-10-13", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 232, + "popularity": 4.1601 + }, + { + "id": 71673, + "title": "Princess Agents", + "originalTitle": "特工皇妃楚乔传", + "overview": "During the Warring Period, slave girl Chu Qiao survives a deadly hunting game and is drawn into the ruthless power struggles of the Yuwen family. Trained by Yuwen Yue and bonded with Prince Yan Xun, she faces betrayal and war. As Yan Xun becomes consumed by revenge, Chu Qiao forges her own path, rising as a military strategist and fighting to end slavery.", + "posterPath": "/ryD5pRIG4YCcRhd0imRu3A2XZ18.jpg", + "backdropPath": "/no8e871eeA9RJDFxvuQqSnwrPMZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-06-05", + "releaseYear": "2017", + "originalLanguage": "zh", + "voteAverage": 7.5, + "voteCount": 220, + "popularity": 4.1571 + }, + { + "id": 178, + "title": "My Life as a Teenage Robot", + "originalTitle": "My Life as a Teenage Robot", + "overview": "Jenny, aka XJ-9, is a super-powered robot with a super-sensitive teenage heart. Her primary function is protecting the planet from disaster, but – like all teenagers – she has her own ideas about how she would like to live her life. Bored with being a superhero, Jenny wants to do something really exciting – like go to high school!", + "posterPath": "/xHucEYE9gZDCqQA1tZeCJe9x0JN.jpg", + "backdropPath": "/cCy8zz9QcI3bzzfMtbvixk7hYmq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2002-10-18", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 7.395, + "voteCount": 181, + "popularity": 4.1554 + }, + { + "id": 110283, + "title": "The Sea Beyond", + "originalTitle": "Mare Fuori", + "overview": "Naples. Still an organized crime stronghold. For the inmates at the Juvenile Detention Centre, time and space are interrupted. Taken away from their families and friends, they now have the opportunity to understand who they have been, who they are, who they want to be.", + "posterPath": "/3ApBEhgv4jE7K7RdpawLCLLtlJd.jpg", + "backdropPath": "/509CnjLa0O9eJSBwqwArNdUohY9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2020-09-23", + "releaseYear": "2020", + "originalLanguage": "it", + "voteAverage": 7.6, + "voteCount": 123, + "popularity": 4.1543 + }, + { + "id": 40293, + "title": "Da Vinci's Demons", + "originalTitle": "Da Vinci's Demons", + "overview": "The series follows the \"untold\" story of Leonardo Da Vinci: the genius during his early years in Renaissance Florence. As a 25-year old artist, inventor, swordsman, lover, dreamer and idealist, he struggles to live within the confines of his own reality and time as he begins to not only see the future, but invent it.", + "posterPath": "/sR8m3EUxmRJi4S9u5sfBDRLce1Z.jpg", + "backdropPath": "/wHcLMdK85CIJu76RNxnq6rhS2FF.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-04-12", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.533, + "voteCount": 671, + "popularity": 4.154 + }, + { + "id": 3126, + "title": "Byker Grove", + "originalTitle": "Byker Grove", + "overview": "Byker Grove was a British television series which aired between 1989 and 2006 and was created by Adele Rose. The show was broadcast at 5.10pm after Newsround on CBBC on BBC One. It was aimed at an older teenager and young adult audience, tackling serious and sometimes controversial storylines.", + "posterPath": "/l3A4T56GW4uuAazP0WB6qgl4Gif.jpg", + "backdropPath": "/g22fX03s45Fcni9hBAAfIi5pwjV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "1989-11-08", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 5.4, + "voteCount": 13, + "popularity": 4.1536 + }, + { + "id": 55216, + "title": "Scènes de ménages", + "originalTitle": "Scènes de ménages", + "overview": "Scènes de ménages depicts the daily lives of several couples from different generations, illustrating with humor their arguments, tender moments and little idiosyncrasies. Each episode is made up of short sketches, in which the characters exchange scathing retorts and funny situations.", + "posterPath": "/38N3KQblPyTLGWNZs2qmy9mQywm.jpg", + "backdropPath": "/pnTYmGcsJBgQyI6qB8wHyvbuHBW.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10767 + ], + "genres": [ + "Comedy", + "Family", + "Talk" + ], + "releaseDate": "2009-11-09", + "releaseYear": "2009", + "originalLanguage": "fr", + "voteAverage": 6.2, + "voteCount": 27, + "popularity": 4.1531 + }, + { + "id": 37419, + "title": "Zoids: Chaotic Century", + "originalTitle": "ゾイド", + "overview": "Set on the distant planet Zi, the story unfolds in a world where biomechanical creatures called Zoids serve as powerful weapons in the long-standing conflict between the Helic Republic and the Guylos Empire. A fragile ceasefire holds, but rising tensions and the return of ancient Zoidian technology threaten to plunge both nations back into war. The story follows Van Flyheight, a young boy who discovers Fiona, a mysterious girl with no memory, and Zeke, an Organoid capable of enhancing a Zoid’s combat abilities. Traveling with the resourceful Moonbay and the reserved mercenary Irvine, the group searches for clues to Fiona’s past. Their journey leads them across the Republic and eventually into the heart of a renewed conflict that will shape the future of Zi.", + "posterPath": "/aVGuBvoBr9ujme4uUkAIRYk5vlt.jpg", + "backdropPath": "/zCJkiqMFoxcpYPKqhIhStEeVF2c.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-09-04", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.587, + "voteCount": 358, + "popularity": 4.1531 + }, + { + "id": 228979, + "title": "If You Love", + "originalTitle": "Ya Çok Seversen", + "overview": "Leyla is a resilient orphan with an intense spirit who joins a team of con men to fund the search for her long-lost parents. When she first meets Ateş, the brooding and cynical scion of a wealthy family, things don’t go well. Leyla is turned off by Ateş’s playboy charms, seeing him as just another privileged snob. But when fate reunites them, Leyla's radiant personality gradually breaks through his defenses, and Ateş discovers a new, more mature side of himself. Amidst a backdrop of mystery and emotional turmoil, the two opposites find themselves drawn together.", + "posterPath": "/wSTocsRoodFpSURHvLr6rljlOZL.jpg", + "backdropPath": "/ioMYIb9PPklLSoIWA7g8Z1HUtBL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2023-07-06", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 7.5, + "voteCount": 13, + "popularity": 4.1518 + }, + { + "id": 82822, + "title": "Zombie Land SAGA", + "originalTitle": "ゾンビランドサガ", + "overview": "A typical morning. The usual music. Their normal lives. The peace these seven girls experience will suddenly be destroyed. By the living dead... zombies. A reality that they never wanted a part of, an amazing and terrifying zombie world. They all share one wish: \"We want to live.\" These girls will struggle through this saga, in order to achieve a miracle.", + "posterPath": "/lrY6TlF4xPVvK1K59BilkWrcPS9.jpg", + "backdropPath": "/zd3BxI5qC8U2Feg83H4tLkwLcfg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.005, + "voteCount": 184, + "popularity": 4.1518 + }, + { + "id": 82317, + "title": "Where's the Logic?", + "originalTitle": "Где логика?", + "overview": "Humanity knows two types of logic: male and female. In the new TNT show, we do not push them together, but rather make them work for one common result. Star couples, partners on the set, just good friends and acquaintances will together try to build logical links between the most seemingly illogical events, objects or facts.", + "posterPath": "/jHil8jpAG6OqQYIqGh96yA4b71m.jpg", + "backdropPath": "/jaQtgZfFuvFz2t1fGZ5g0JvnAST.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2015-11-29", + "releaseYear": "2015", + "originalLanguage": "ru", + "voteAverage": 8.1, + "voteCount": 11, + "popularity": 4.1509 + }, + { + "id": 126660, + "title": "Professor T", + "originalTitle": "Professor T", + "overview": "Professor Jasper Tempest, a genius Cambridge University criminologist with OCD and an overbearing mother, advises the police. British version of the Belgian crime drama of the same name.", + "posterPath": "/jJ9SjrX7tEAwHigRq20TeANhH1Q.jpg", + "backdropPath": "/q9tRxUOQ2K3vAvziTWhh9VYhZan.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2021-07-18", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 52, + "popularity": 4.1507 + }, + { + "id": 246026, + "title": "The Gringo Hunters", + "originalTitle": "Los gringo hunters", + "overview": "A top Mexican police unit hunts down fleeing U.S. fugitives as a nefarious scheme unfolds within their force.", + "posterPath": "/whbIGlMfi4gvJD2kyZ1PUtzURnn.jpg", + "backdropPath": "/onha1ViNuO04qLSSASx7hZC6TD3.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-07-09", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 7.615, + "voteCount": 26, + "popularity": 4.1499 + }, + { + "id": 78036, + "title": "Creeped Out", + "originalTitle": "Creeped Out", + "overview": "A masked figure known as \"The Curious\" collects tales of dark magic, otherworldly encounters and twisted technology in this kids anthology series.", + "posterPath": "/5TFYkGC8eSUlIz2TMqL4IKPUbBK.jpg", + "backdropPath": "/9YrrHB7LIiuMElYpgeLbXi0uZj9.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2017-10-31", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.165, + "voteCount": 124, + "popularity": 4.1498 + }, + { + "id": 86957, + "title": "Green Eggs and Ham", + "originalTitle": "Green Eggs and Ham", + "overview": "Guy-Am-I, an inventor, and his friend Sam-I-Am go on a cross-country trip that would test the limits of their friendship. As they learn to try new things, they find out what adventure brings.", + "posterPath": "/sPbNUuCOD2ilcVWf5yjjkMqyoxs.jpg", + "backdropPath": "/xKVSklZoRM6YkBoUYfY7XYPKmVV.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10751, + 16, + 35, + 10759 + ], + "genres": [ + "Kids", + "Family", + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2019-11-08", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 64, + "popularity": 4.1495 + }, + { + "id": 70878, + "title": "Eromanga Sensei", + "originalTitle": "エロマンガ先生", + "overview": "Masamune Izumi is a high school student who writes light novels. Sagiri Izumi is an antisocial girl who never leaves her room. A year ago, she became Masamune's stepsister. But one day, Masamune discovers a terrifying revelation: the artist “Eromanga-sensei,” who illustrates his novels, is none other than his sister Sagiri! His antisocial little sister, who lives under the same roof as him, uses a spicy pseudonym and draws obscenities?!", + "posterPath": "/ot5F1TLvaoQQ0awE1zluC7skUoz.jpg", + "backdropPath": "/6hbd2zP73s9pm8ndy1xwEv7Ehem.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-04-09", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 99, + "popularity": 4.1492 + }, + { + "id": 101972, + "title": "Our Last Crusade or the Rise of a New World", + "originalTitle": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "overview": "For years, a great war has raged on between the scientifically advanced Empire and a paradise of witches known as the Nebulis Sovereignty. This age-old battle sets the scene for a fateful encounter between two young combatants: an imperial swordsman, Iska, and the witch princess, Aliceliese. As sworn enemies, they vow to cut each other down in order to unite their worlds, and yet Iska finds himself entranced by her beauty and righteousness, while Aliceliese is moved by his strength and resolve. In the midst of a never-ending war that forbids them from being together, they have no choice but to destroy each other-or find another way.", + "posterPath": "/1VtaTXsHTRfh8m49OVJfMb4JVuh.jpg", + "backdropPath": "/gjUkdl62eBtxAl4L4Xurm5UBZ0x.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2020-10-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 240, + "popularity": 4.1474 + }, + { + "id": 35507, + "title": "Marmalade Boy", + "originalTitle": "ママレード・ボーイ", + "overview": "Miki's parents come home from their vacation to announce that they are getting a divorce. But what is more shocking is that they have switched partners with another couple! And to top things off, this other couple has a handsome son, Yuu, who Miki begins to develop feelings for. To make things more disturbing, everyone moves into one house. What will everyone think about Miki's family lifestyle?", + "posterPath": "/u4WOnZT6UYdjKzAuwiJtjTbBtvD.jpg", + "backdropPath": "/php69V5IfHB6MnM2vQKsYywms3k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1994-03-13", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.643, + "voteCount": 21, + "popularity": 4.1474 + }, + { + "id": 2399, + "title": "Pie in the Sky", + "originalTitle": "Pie in the Sky", + "overview": "Pie in the Sky is a British offbeat police comedy drama programme starring Richard Griffiths and Maggie Steed, created by Andrew Payne and first broadcast in five series on BBC1 between 13 March 1994 and 17 August 1997 as well as being syndicated on other channels in other countries, including the Australian Broadcasting Corporation. The series departs slightly from other police dramas in that the protagonist, Henry Crabbe, while still being an on-duty policeman, is also the head chef of the title restaurant set in the fictional town of Middleton and county of Westershire.", + "posterPath": "/qlbRdPHnAK7d5eb5Jx5qVLyFN0D.jpg", + "backdropPath": "/x2ySe94FqEirGPpmEv05EFUztye.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1994-03-13", + "releaseYear": "1994", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 13, + "popularity": 4.1469 + }, + { + "id": 233519, + "title": "Anything Goes", + "originalTitle": "Vale Tudo", + "overview": "The story of a mother and daughter with opposing views on the path to success in life takes the audience on a contemporary journey about character, ethics and honesty.", + "posterPath": "/4ub4Lbl2Ymn6bJ2ld6mKkKVy25m.jpg", + "backdropPath": "/qX9epDSi7n4NGHx9To2HrNPNYty.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2025-03-31", + "releaseYear": "2025", + "originalLanguage": "pt", + "voteAverage": 6.2, + "voteCount": 12, + "popularity": 4.1453 + }, + { + "id": 247518, + "title": "Grotesquerie", + "originalTitle": "Grotesquerie", + "overview": "A series of heinous crimes have unsettled a small community, and Detective Lois Tryon feels they are eerily personal, as if someone—or something—is taunting her.", + "posterPath": "/vu7X19nHIJ9HOXhES3DIhO9N99c.jpg", + "backdropPath": "/tUdqnpN03fQFWAe5O7d61O2lNkr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2024-09-25", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.285, + "voteCount": 237, + "popularity": 4.1448 + }, + { + "id": 61963, + "title": "Waiting for the Sun", + "originalTitle": "Güneşi Beklerken", + "overview": "Zeynep is a beautiful high school student who has a moderate and ordinary life with her mother Demet in a small city. Zeynep has been raised without knowing her father but she always think about him when she stays alone. She was told that her father was a seaman and was lost in the sea when he was on duty.", + "posterPath": "/aNNq8MOtGvw0ETt8xSICrq3sKXv.jpg", + "backdropPath": "/fJiYVdH9CYai9JvgT46Y4cGTJ26.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2013-07-02", + "releaseYear": "2013", + "originalLanguage": "tr", + "voteAverage": 7.8, + "voteCount": 13, + "popularity": 4.1437 + }, + { + "id": 2778, + "title": "Wheel of Fortune", + "originalTitle": "Wheel of Fortune", + "overview": "This game show sees contestants solve word puzzles, similar to those used in Hangman, to win cash and prizes determined by spinning a giant carnival wheel.", + "posterPath": "/a6XruJ8a8LFNhrB0L20QcjmDXi6.jpg", + "backdropPath": "/qxVTe9JOL33AJIlOv4s504hf8pp.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10764 + ], + "genres": [ + "Family", + "Reality" + ], + "releaseDate": "1983-09-19", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 77, + "popularity": 4.1435 + }, + { + "id": 385, + "title": "Maury", + "originalTitle": "Maury", + "overview": "Veteran TV journalist Maury Povich tackles volatile issues with his guests and studio audience on this daily, hourlong talk show.", + "posterPath": "/uYLXRiNi1TClZmXQPcZ5mDnpc0T.jpg", + "backdropPath": "/55gUltv4ZT8qZldQmf1qWGjYgJP.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "1991-09-09", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 5.333, + "voteCount": 42, + "popularity": 4.1432 + }, + { + "id": 12188, + "title": "The Ruth Rendell Mysteries", + "originalTitle": "The Ruth Rendell Mysteries", + "overview": "The Ruth Rendell mysteries is a British television series made by TVS and Meridian Television for ITV between 2 August 1987 and 11 October 2000.", + "posterPath": "/y9wIBLSOOBwGCiEbfMNIeRjGOzM.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "1987-08-02", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 11, + "popularity": 4.1427 + }, + { + "id": 83314, + "title": "Tsurune", + "originalTitle": "ツルネ", + "overview": "After target panic drives him from archery in middle school, Minato decides to return to the sport when his friends join the high school kyudo club.", + "posterPath": "/o9hGhB8UpGOUVXlcn2oyE7kCYS8.jpg", + "backdropPath": "/Aq8mDnF6tSVXCRXmkva5SIOENW1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-10-22", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 32, + "popularity": 4.1426 + }, + { + "id": 17967, + "title": "Treme", + "originalTitle": "Treme", + "overview": "Tremé takes its name from a neighborhood of New Orleans and portrays life in the aftermath of the 2005 hurricane. Beginning three months after Hurricane Katrina, the residents of New Orleans, including musicians, chefs, Mardi Gras Indians, and other New Orleanians struggle to rebuild their lives, their homes and their unique culture.", + "posterPath": "/k4pV1FUccFmmbz9DwUON7KWT0gi.jpg", + "backdropPath": "/f1Zj0KJpaead6cUoOkpWZblMyET.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-04-11", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 7.555, + "voteCount": 145, + "popularity": 4.1399 + }, + { + "id": 99346, + "title": "The English", + "originalTitle": "The English", + "overview": "An aristocratic Englishwoman, Lady Cornelia Locke, arrives into the new and wild landscape of the American West to wreak revenge on the man she sees as responsible for the death of her son.", + "posterPath": "/aAFAwxj0VzBRyX5biAHUJM73qYG.jpg", + "backdropPath": "/eenxjEAPwPbkjN6W5ZzTbfLA4GM.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "2022-11-10", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.237, + "voteCount": 215, + "popularity": 4.1396 + }, + { + "id": 255, + "title": "Hi Hi Puffy AmiYumi", + "originalTitle": "Hi Hi Puffy AmiYumi", + "overview": "Hi Hi Puffy AmiYumi follows the adventures of two very cool, but very different pop stars as they travel from gig to gig or just hang out in their tour bus. Being famous rock stars, Ami and Yumi tour the globe in their customized Puffy bus, a veritable condo on wheels with all the major amenities and an ever-changing interior. Ami is the peppy, positive, and resourceful one. Yumi is the hard-rocking, no-nonsense cynic with an absolutely infallible sense of cool. Together, these superstars take the world by storm with musical talent, trend-setting style and humor, despite occasional misjudgments from their well-meaning but tragically square manager, Kaz.", + "posterPath": "/dVlsQzfxewEdHpu7SiVUpRAVNyU.jpg", + "backdropPath": "/16JZ5IRrA9YSxVSqWflY0nLhLwz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2004-11-19", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 139, + "popularity": 4.1393 + }, + { + "id": 237052, + "title": "The Lost Station Girls", + "originalTitle": "Les Disparues de la gare", + "overview": "Between 1995 and 2001 in southern France, a teenage girl vanishes and three young women are murdered—sparking a relentless manhunt that will haunt detective Flore Robin and the Perpignan police for years.", + "posterPath": "/282rRZ3wKntv82FPZ3qMnAsNMkV.jpg", + "backdropPath": "/kXBr9CWrutta2PxUkbYlI9EXrC8.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-10-08", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 7.6, + "voteCount": 21, + "popularity": 4.1375 + }, + { + "id": 220074, + "title": "Flex x Cop", + "originalTitle": "재벌X형사", + "overview": "A chaebol cop joins forces with a gritty detective to take down criminals with a touch of wealth and a whole lot of wit.", + "posterPath": "/rEuuCZb7PsVzRYJ1DiWJZ7QYFqn.jpg", + "backdropPath": "/nOGPxfYqd0f3oeFGGinpDOP68MQ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2024-01-26", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.8, + "voteCount": 35, + "popularity": 4.1364 + }, + { + "id": 210757, + "title": "The Knockout", + "originalTitle": "狂飙", + "overview": "20 years of perseverance, hot-blooded teenagers finally become the people's hero.", + "posterPath": "/SIY6lVRZ9W1C4GU3Dvi3l4MSFs.jpg", + "backdropPath": "/i4xRsWEAwGgL5wMm8jrBbxxXKEI.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2023-01-14", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.155, + "voteCount": 97, + "popularity": 4.1359 + }, + { + "id": 77341, + "title": "Enemigo íntimo", + "originalTitle": "Enemigo íntimo", + "overview": "The story of two siblings who witness the murder of their parents in the hands of one of the drug cartels in Mexico, after which Alejandro Ferrer's younger sister is kidnapped. 25 years later, Alejandro is now the captain of the Federal Police and seeks revenge against the narcos for destroying his family.", + "posterPath": "/81URAPXi0GP9Ul4MxcVSiDEnpPq.jpg", + "backdropPath": "/aTSkfXJ9rY1rGtYStcJUrX2wq73.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2018-02-21", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 7.589, + "voteCount": 431, + "popularity": 4.1347 + }, + { + "id": 38165, + "title": "ThunderCats", + "originalTitle": "ThunderCats", + "overview": "The ThunderCats are on the move! After the kingdom of Thundera is attacked by the lizard people, Lion-O leads Tygra, Cheetara and the other heroes on a quest for the Book of Omens and the magic stones of legend. But he'll have to face villains like Mumm-Ra, the ancient evil sorceror, and Slithe, the dangerous lizard general. Luckily, he has the Sword of Omens and its amazing powers at his disposal.", + "posterPath": "/9DRhh5eRLtg6lNBCahEfLtyE0Sp.jpg", + "backdropPath": "/3dZ5tX1LaTrFKc8k2WNuviGg2SO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-07-29", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 253, + "popularity": 4.134 + }, + { + "id": 253797, + "title": "Happy Kanako's Killer Life", + "originalTitle": "幸せカナコの殺し屋生活", + "overview": "When Kanako accidentally applies to work at an assassination agency, the timid office worker discovers that she has a knack for bumping people off. Will she ever earn the respect of Sakurai, her prickly and kinda hot co-worker–and why is she still having silly workplace problems when she’s employed with hitmen?!", + "posterPath": "/fexmmsbdZ55i64LhoTB2xJxERhj.jpg", + "backdropPath": "/ktJuBweEd244Jy7gm3zs2l6OAwI.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 18 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-02-28", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 22, + "popularity": 4.1333 + }, + { + "id": 96450, + "title": "Miss Scarlet", + "originalTitle": "Miss Scarlet", + "overview": "When Eliza Scarlet's father dies, he leaves her penniless, but she resolves to continue his detective agency. To operate in a male-dominated world, though, she needs a partner... step forward a detective known as the Duke. Eliza and The Duke strike up a mismatched, fiery relationship as they team up to solve crime in the murkiest depths of 1880’s London.", + "posterPath": "/9pbxTckwvaTXMABenkcmO1VhQi8.jpg", + "backdropPath": "/fRkL08tLtjMKaiDjkdniAS2MXw6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2020-03-31", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.307, + "voteCount": 106, + "popularity": 4.1328 + }, + { + "id": 203616, + "title": "High Tides", + "originalTitle": "Knokke off", + "overview": "Over a tense summer on the Belgian coast, a wealthy friend group faces adulthood's harsh realities while grappling with love and societal expectations.", + "posterPath": "/aH4pbrLQJbjWytHOFhHlAi97zcu.jpg", + "backdropPath": "/lPngbBaCqSga0LpWBDhEgrtsSRp.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-05-12", + "releaseYear": "2023", + "originalLanguage": "nl", + "voteAverage": 6.698, + "voteCount": 58, + "popularity": 4.1325 + }, + { + "id": 63157, + "title": "Turbo FAST", + "originalTitle": "Turbo FAST", + "overview": "After Turbo the Snail's improbable win at the Indianapolis 500, the superfast racer finds his life forever changed after he returns from his victory tour. Namely, Tito, his human companion, has built Starlite City, a massive miniature city with an elaborate adjoining race track for Turbo and his fellow snails to live and race in. However, Turbo finds his new life no less hectic as he and his friends face new rivals of all varieties eager to take the champion on. Regardless of the danger, Turbo and his colleagues of the Fast Action Stunt Team are ready for the challenge.", + "posterPath": "/c3SFrFRYNS0VIH0Cmb4onGAz5dd.jpg", + "backdropPath": "/rpdEfX5xHcmhQ1wSLwr987jwBXp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762, + 35 + ], + "genres": [ + "Animation", + "Family", + "Kids", + "Comedy" + ], + "releaseDate": "2013-12-24", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 31, + "popularity": 4.1312 + }, + { + "id": 5690, + "title": "Moonlight", + "originalTitle": "Moonlight", + "overview": "Mick St. John is a captivating, charming and immortal private investigator from Los Angeles, who defies the traditional blood-sucking norms of his vampire tendencies by using his wit and powerful supernatural abilities to help the living.", + "posterPath": "/3rWk9g0Oup5WHcrpjvw5zW1WhLc.jpg", + "backdropPath": "/9q096hngNt9jBJVM3hi9beNNK9E.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80, + 18, + 10765 + ], + "genres": [ + "Mystery", + "Crime", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-09-28", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 171, + "popularity": 4.131 + }, + { + "id": 13862, + "title": "Shōgun", + "originalTitle": "Shōgun", + "overview": "An English navigator becomes both a player and pawn in complex political games in feudal Japan.", + "posterPath": "/eW543y699jZMQAiBxqMBkYGXwjP.jpg", + "backdropPath": "/j5hn3Xn2BDbwR3tBX7s8m8Y1zce.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10768 + ], + "genres": [ + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "1980-09-15", + "releaseYear": "1980", + "originalLanguage": "en", + "voteAverage": 7.618, + "voteCount": 220, + "popularity": 4.13 + }, + { + "id": 231749, + "title": "Miss Night and Day", + "originalTitle": "낮과 밤이 다른 그녀", + "overview": "A bittersweet romantic comedy about a job seeker who suddenly gets stuck in time as an old-ager one day, and an extraordinary internship with a prosecutor who is caught up in her all day and night.", + "posterPath": "/yfE5kgRsgZD9lXtCS0dnfOz7Kk5.jpg", + "backdropPath": "/s5XtGhamnK0yx9MI5XVhHMiJr70.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Mystery" + ], + "releaseDate": "2024-06-15", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.532, + "voteCount": 139, + "popularity": 4.1274 + }, + { + "id": 2076, + "title": "Silver Spoons", + "originalTitle": "Silver Spoons", + "overview": "Wealthy, young-at-heart business owner Edward Stratton III is stunned to discover his brief marriage several years ago produced a son, Richard Bluedhorn-Stratton, now 12 and standing in Edward's living room, wanting to live with the father he never knew. Although Edward's first impulse is to send Ricky to boarding school, he soon relents and let his son move in with him and Kate, his love-struck secretary.", + "posterPath": "/u0R3oUbGITld0kfvdnfxr8rtqAD.jpg", + "backdropPath": "/4hUElOjWavce33FkD1z2tXXDNa1.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1982-09-25", + "releaseYear": "1982", + "originalLanguage": "en", + "voteAverage": 6.286, + "voteCount": 49, + "popularity": 4.1267 + }, + { + "id": 114925, + "title": "Pam & Tommy", + "originalTitle": "Pam & Tommy", + "overview": "This comedic series takes on the true story behind the release of the first ever viral video in history — the sex tape of Pamela Anderson and Tommy Lee.", + "posterPath": "/u6Hfb3EsnvlPChr01jErXDTsdan.jpg", + "backdropPath": "/z6GVQ8DfyQ6u7YfU16O5XiHCDr5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-02-02", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 283, + "popularity": 4.1264 + }, + { + "id": 71128, + "title": "Hunter Street", + "originalTitle": "Hunter Street", + "overview": "Sleuthy foster siblings Max, Tess, Sal, Anika, and Daniel Hunter find new quests, more mysteries, and even new Hunter sibs!", + "posterPath": "/rm1g7V1qMbus6rlwKP0aTxywhDH.jpg", + "backdropPath": "/jE0GkWgfEqoMv4pY7lSKx6TT6ut.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10759, + 35, + 10762, + 9648 + ], + "genres": [ + "Family", + "Action & Adventure", + "Comedy", + "Kids", + "Mystery" + ], + "releaseDate": "2017-03-11", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 37, + "popularity": 4.1263 + }, + { + "id": 55089, + "title": "Who Wants to Be a Millionaire?", + "originalTitle": "Who Wants to Be a Millionaire?", + "overview": "A game show created in the United Kingdom, in which contestants attempt to answer general knowledge questions in an intimidating atmosphere in order to scoop the £1 million top prize. The original series was hosted by Chris Tarrant, and its modern-day revival is hosted by Jeremy Clarkson.", + "posterPath": "/fHX69KYNPhVENfQ7XkZ1UvRMKVl.jpg", + "backdropPath": "/d61HAPYS3XVYOTRBCKf0LON1cag.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "1998-09-04", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.862, + "voteCount": 29, + "popularity": 4.1254 + }, + { + "id": 93216, + "title": "Kuzey Yıldızı: İlk Aşk", + "originalTitle": "Kuzey Yıldızı: İlk Aşk", + "overview": "Yildiz has loved Kuzey for as long as she has known. She has seen no one but him. Families are also friendly to each other. Kuzey and Yildiz are engaged. But when Kuzey goes to Istanbul to study at university, he forgets all his words and sets sail for new love. When this is learned by his family, Kuzey is excommunicated by everyone in the village, including his own family. Kuzey married the woman he loved. He had three children. Twenty years later, he experienced the pain that Yildiz experienced. He was abandoned by the woman he loved. Kuzey returns to his hometown with his three daughters. Yildiz swore to send him where he came from.", + "posterPath": "/ufpbzxbIKekjwG2bLgqXtv5tbYU.jpg", + "backdropPath": "/A9ttUJVTw6VpbIvX3mMuTHW6PVW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-09-14", + "releaseYear": "2019", + "originalLanguage": "tr", + "voteAverage": 8.455, + "voteCount": 11, + "popularity": 4.125 + }, + { + "id": 4994, + "title": "Biography", + "originalTitle": "Biography", + "overview": "Biography is a documentary television series. It was originally a half-hour filmed series produced for CBS by David Wolper from 1961 to 1964 and hosted by Mike Wallace. The A&E Network later re-ran it and has produced new episodes since 1987. The older version featured historical figures such as Helen Keller and Mark Twain, or long-dead entertainment figures such as Will Rogers or John Barrymore. The A&E series has placed the emphasis on such people as Marilyn Monroe, Elvis Presley, Plácido Domingo, Freddie Mercury, Jacqueline Kennedy Onassis, Eric Clapton, Pope John Paul II, Gene Tierney, Selena, Diego Rivera, Mao Zedong and Queen Elizabeth II, and fictional characters like The Phantom, Superman, Hamlet, Betty Boop, and Santa Claus. The program ended up profiling enough figures that in 1999, A&E spun it off into an entire network, The Biography Channel.", + "posterPath": "/8R9gswhn3Cpul7dmjMpLv4aPYrK.jpg", + "backdropPath": "/g2EO4aUEZu4WzNOB8ddn1nqpVD7.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1987-04-06", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 33, + "popularity": 4.1246 + }, + { + "id": 239053, + "title": "My Stand-In", + "originalTitle": "ตัวนาย ตัวแทน", + "overview": "Joe, a stuntman reincarnated into another's body after an accident, reconnects with Ming, who seeks answers about Joe's mysterious second chance at life.", + "posterPath": "/fjmpJWoSX0vOJGFwUS27pEpbMW5.jpg", + "backdropPath": "/ppUlLFmxjUZUskcpgVLAUzUlmSq.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-04-26", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 8, + "voteCount": 20, + "popularity": 4.1244 + }, + { + "id": 232926, + "title": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "originalTitle": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "overview": "Rishe, the duke’s daughter, is no stranger to reincarnation—it’s her seventh life, after all. Each life restarts at her broken engagement. Having been a merchant, a maid, and a knight, she now desires leisure. But her world changes when a prince, who killed her in a past life, proposes! To prevent war and live to a ripe old age, she begins her seventh life as the bride of an enemy nation’s prince.", + "posterPath": "/5k7bkqolsaJVCj321gLkuikk2Ax.jpg", + "backdropPath": "/h7XtT43z3UffjdwbWkOeR3vGkaV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.833, + "voteCount": 78, + "popularity": 4.1242 + }, + { + "id": 13793, + "title": "The Chronicles of Narnia", + "originalTitle": "The Chronicles of Narnia", + "overview": "Peter, Susan, Edmund and Lucy are evacuated from London at the beginning of the Second World War, little dreaming of the magical adventures that lie ahead.", + "posterPath": "/pfAFIkQd9MD4KDxlElCVSNKwnaR.jpg", + "backdropPath": "/kXTZR11xLYaShf3ZMeTmBP9Lsq7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1988-11-13", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 19, + "popularity": 4.123 + }, + { + "id": 74387, + "title": "Final Space", + "originalTitle": "Final Space", + "overview": "An astronaut named Gary and his planet-destroying sidekick Mooncake embark on serialized journeys through space in order to unlock the mystery of “Final Space,” the last point in the universe, if it actually does exist.", + "posterPath": "/cf4chvwB40cEpsagSrRaEIqBFoG.jpg", + "backdropPath": "/vEMl9RED1HelffdKWxToa3fmyo2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2018-02-26", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.382, + "voteCount": 913, + "popularity": 4.1216 + }, + { + "id": 2386, + "title": "In the Nick of Time", + "originalTitle": "Στο Παρά Πέντε", + "overview": "Five people, strangers to each other, are in the wrong place at the wrong time. They witness a murder and from then on an endless tangle of adventures begins for them. Dalia, Zoumboulia, Spyros, Fotis, Angela... unite in a group, draw strength from each other and aim to deliver justice in an old and dark case... Through dangers and upheavals they will manage to reach in the truth of the case but also their own, personal truth.", + "posterPath": "/shSmGTs6JfZjKYnCLBEh9g6iR0p.jpg", + "backdropPath": "/uNooub0UvoU86iKXDeqBbCtfU7I.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648 + ], + "genres": [ + "Comedy", + "Mystery" + ], + "releaseDate": "2005-09-26", + "releaseYear": "2005", + "originalLanguage": "el", + "voteAverage": 8.4, + "voteCount": 31, + "popularity": 4.1216 + }, + { + "id": 63980, + "title": "Camera Café", + "originalTitle": "Camera Café", + "overview": "", + "posterPath": "/x054RVrUUIMxkNj1jg0WPS4EmpD.jpg", + "backdropPath": "/x71bs8fs4pIkGSG5m7nhKAW3r4a.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2005-09-18", + "releaseYear": "2005", + "originalLanguage": "es", + "voteAverage": 5.9, + "voteCount": 21, + "popularity": 4.1189 + }, + { + "id": 90234, + "title": "Sweet Diva", + "originalTitle": "A Dona do Pedaço", + "overview": "Maria da Paz is a committed baker who becomes a wealthy businesswoman twenty years after a tragedy strikes on the day of her wedding to Amadeu. From this broken union a baby is born, Jô, who seeks power and despises her mother’s humble origins. Afraid that her parents’ reunion might spoil her plans, Jô starts an alliance with the charming Régis to convince Maria to marry him and, together, they plan to steal all of Maria’s fortune. In this exciting telenovela written by Emmy Awards winner Walcyr Carrasco, Maria’s optimism must be stronger than Jô’s ambition when the baker finds out about the betrayal and her own daughter’s dangerous secrets.", + "posterPath": "/9WXkn39mIIOT9dFsQJMczk3PeFJ.jpg", + "backdropPath": "/cNx1R1CzdqJ3hlri8JGQWH0gLQp.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 35, + 80 + ], + "genres": [ + "Soap", + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "2019-05-20", + "releaseYear": "2019", + "originalLanguage": "pt", + "voteAverage": 7.273, + "voteCount": 22, + "popularity": 4.1167 + }, + { + "id": 71887, + "title": "Marlon", + "originalTitle": "Marlon", + "overview": "A loving (but immature) father is committed to co-parenting his two kids with his very-together ex-wife. While his misguided fatherly advice, unstoppable larger-than-life personality and unpredictable Internet superstardom might get in the way sometimes, for Marlon, family really always does come first - even if he's the biggest kid of all.", + "posterPath": "/7jCZupMTSyS3SohvE14T3xVT36n.jpg", + "backdropPath": "/7SDggAJXFqgXwcVSyMzJYi5n7cg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2017-08-16", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.609, + "voteCount": 138, + "popularity": 4.1164 + }, + { + "id": 279322, + "title": "Mobius", + "originalTitle": "不眠日", + "overview": "In Hua'ao City, a brilliant detective with a flawless track record faces his toughest case yet when a string of seemingly perfect murders shakes the city. With no evidence, no witnesses, and a killer who vanishes without a trace, he must race against time to uncover the truth. As hidden dangers lurk in every corner, the line between hunter and hunted begins to blur.", + "posterPath": "/4ebIeyHZ9Er3qKqzrLPxrLP4ERZ.jpg", + "backdropPath": "/sTtZV6qfAmrTRNnR3crivqIeAJt.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80, + 10759 + ], + "genres": [ + "Drama", + "Mystery", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2025-09-17", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.786, + "voteCount": 14, + "popularity": 4.1148 + }, + { + "id": 62099, + "title": "The Ministry of Time", + "originalTitle": "El Ministerio del Tiempo", + "overview": "A soldier from the 15th century, a university student from the 19th century and a nurse from the present join the secret 'Department of Time', a secret department within the Spanish government with the ability to travel through time. Their mission is prevent changes in history.", + "posterPath": "/sNv6aE47PTTTpHknT3gzmF2rBgh.jpg", + "backdropPath": "/5qaax4Avwtdl045OIHr2OD2fr9P.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2015-02-24", + "releaseYear": "2015", + "originalLanguage": "es", + "voteAverage": 7.6, + "voteCount": 199, + "popularity": 4.1145 + }, + { + "id": 39497, + "title": "Transporter: The Series", + "originalTitle": "Transporter: The Series", + "overview": "The adventures of professional transporter Frank Martin, who can always be counted on to get the job done—discreetly. Operating in a seedy underworld of dangerous criminals and desperate players, his three rules are: Never change the deal, no names, and never open the package. Occasionally, complications arise and rules get broken.", + "posterPath": "/23ESZ6mTcJw8zHOkW4G38uIz147.jpg", + "backdropPath": "/jMc4O629ABQBKATN903mnuNrxJj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2013-01-04", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 5.993, + "voteCount": 134, + "popularity": 4.1145 + }, + { + "id": 156898, + "title": "BASTARD‼ -Heavy Metal, Dark Fantasy-", + "originalTitle": "BASTARD!! -暗黒の破壊神-", + "overview": "When evil forces threaten to resurrect Anthrasax, the God of Destruction, the Kingdom of Meta-llicana calls on a volatile dark wizard for help.", + "posterPath": "/l9JU3dlMumuRXxHilT6RSWQ5OT9.jpg", + "backdropPath": "/3KoMq6ll73zwb3ZiY04DmgAozDl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-06-30", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 134, + "popularity": 4.1133 + }, + { + "id": 92648, + "title": "Arsenal Military Academy", + "originalTitle": "烈火军校", + "overview": "In 1910s China, nineteen year old Xie Xiang follows in her deceased brother's footsteps and enrolls in military school disguised as a man. She befriends her fellow cadets and and earns the respect of her instructors during the intense training. However, when the unfortunate arrival of the Imperial Japanese troops creates a web of distressing conspiracies, the batch and their allies are forced to prove their courage and resilience.", + "posterPath": "/sVqP8rGqTrjJtJV9t4UuiPKwLEq.jpg", + "backdropPath": "/vpQJvBjc8H2KEyjExXuyzqwcVJS.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18, + 10759 + ], + "genres": [ + "War & Politics", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2019-08-05", + "releaseYear": "2019", + "originalLanguage": "zh", + "voteAverage": 7.9, + "voteCount": 24, + "popularity": 4.1127 + }, + { + "id": 113256, + "title": "Banished from the Hero's Party, I Decided to Live a Quiet Life in the Countryside", + "originalTitle": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "overview": "After being betrayed by the Hero’s party, Red hopes to start anew by opening an apothecary in a small town. He wants to keep his past life secret, but it won’t be easy...especially when a beautiful adventurer from his past asks to move in.", + "posterPath": "/hk5qqvJLRBDaPYBc8lKkSYQrR1c.jpg", + "backdropPath": "/vSgHoghjoAdVSi1GnGmfeEO6JRx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 86, + "popularity": 4.1112 + }, + { + "id": 80884, + "title": "Ashes of Love", + "originalTitle": "香蜜沉沉烬如霜", + "overview": "Jin Mi is the daughter of a flower deity who is fed a pill that prevents her from feeling or expressing romantic love. She gets tangled in a love triangle with Heavenly Prince Xu Feng and the ambitious Night Deity Run Yu.", + "posterPath": "/FdUxxXN0NqS03gxzKgxiWCobue.jpg", + "backdropPath": "/bvMGbHE3jZV6WwS5h6ix9hJAOJR.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-08-02", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 8.148, + "voteCount": 44, + "popularity": 4.1112 + }, + { + "id": 107588, + "title": "Aashram", + "originalTitle": "आश्रम", + "overview": "A duplicitous, aashram based, Indian Godman's good deeds serve activities criminal and unholy, such as rapes, murders, drugs, vote bank politics and forced male emasculation. The law and a few crusaders investigate to bring him to account.", + "posterPath": "/qObi7KzAPaxH3ybTLHhAl87LRJZ.jpg", + "backdropPath": "/ycrAqPzKabKQBIvBRxkROChqc64.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2020-08-28", + "releaseYear": "2020", + "originalLanguage": "hi", + "voteAverage": 5.1, + "voteCount": 16, + "popularity": 4.1103 + }, + { + "id": 212588, + "title": "Furies", + "originalTitle": "Furies", + "overview": "Seeking to avenge her father's death, a young woman becomes entangled in the web of the Fury, peacekeeper of the Paris criminal underworld.", + "posterPath": "/8sHKc6kNKjdhvHBP2c5zoSS16v5.jpg", + "backdropPath": "/lOM5ho8qmqQh0F6cn1DxGB61RvR.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80 + ], + "genres": [ + "Action & Adventure", + "Crime" + ], + "releaseDate": "2024-03-01", + "releaseYear": "2024", + "originalLanguage": "fr", + "voteAverage": 7.115, + "voteCount": 117, + "popularity": 4.11 + }, + { + "id": 58539, + "title": "Wild at Heart", + "originalTitle": "Corazón Indomable", + "overview": "Corazón indomable is a Mexican telenovela produced by Nathalie Lartilleux for Televisa. It is a remake of Marimar, produced in 1994, and starring Thalía and Eduardo Capetillo.\n\nAna Brenda Contreras and Daniel Arenas star as the protagonists, while Ingrid Martz, Elizabeth Álvarez, Carlos de la Mota and René Strickler star as the antagonists.", + "posterPath": "/yXpYJyLptcASCUQxLI4bbE4SmZ2.jpg", + "backdropPath": "/om2JVp4XOo2iU3CFeo9TqJEdsNu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "2013-02-25", + "releaseYear": "2013", + "originalLanguage": "es", + "voteAverage": 7.8, + "voteCount": 487, + "popularity": 4.1099 + }, + { + "id": 3810, + "title": "Da Vinci's Inquest", + "originalTitle": "Da Vinci's Inquest", + "overview": "Da Vinci's Inquest is a Canadian dramatic television series that aired on CBC Television from 1998 to 2005. While never a ratings blockbuster, seven seasons of thirteen episodes each were filmed for a total of ninety-one episodes.\n\nThe show, set and filmed in Vancouver, stars Nicholas Campbell as Dominic Da Vinci, once an undercover officer for the Royal Canadian Mounted Police, but now a crusading coroner who seeks justice in the cases he investigates.\n\nThe cast also includes Gwynyth Walsh as Da Vinci's ex-wife and chief pathologist Patricia Da Vinci, Donnelly Rhodes as detective Leo Shannon, and Ian Tracey as detective Mick Leary.", + "posterPath": "/yTiI8j1ykKYtn0fYNedE9eju4Fr.jpg", + "backdropPath": "/1sTKcEJkjwCHZ2r2Oti2a7P4UXz.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1998-10-07", + "releaseYear": "1998", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 4.1098 + }, + { + "id": 232402, + "title": "S Line", + "originalTitle": "S라인", + "overview": "A young woman with the ability to see mysterious red connections between lovers discovers her secret gift is no longer unique when special glasses granting similar powers appear on the black market.", + "posterPath": "/7TGolwcia6AI6uvInBOoedAi9Il.jpg", + "backdropPath": "/x0rCzswwYCEm4HM3c8v8L8olB2X.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.7, + "voteCount": 135, + "popularity": 4.1085 + }, + { + "id": 199318, + "title": "Bad Sisters", + "originalTitle": "Bad Sisters", + "overview": "The tight-knit Garvey sisters have always looked out for one another. But when the toxic brother-in-law they all wanted dead actually dies, it turns their lives upside down and tests their bond like nothing before.", + "posterPath": "/z63D1Y8udrrFOhLFCT9YElcTr0w.jpg", + "backdropPath": "/aAVRi7XqkJZE6uUEn2Enbhj8rPx.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-08-19", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.51, + "voteCount": 248, + "popularity": 4.1083 + }, + { + "id": 16135, + "title": "Wild Angel", + "originalTitle": "Muñeca Brava", + "overview": "An orphan who's working in a Mansion, falls in love with the owners' son.", + "posterPath": "/cMMiFdM9KZqJAjHTisSRYSR3YlN.jpg", + "backdropPath": "/pXcBTvoFIee7cOwqE6BUF9wFKRY.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10766 + ], + "genres": [ + "Comedy", + "Drama", + "Soap" + ], + "releaseDate": "1998-11-16", + "releaseYear": "1998", + "originalLanguage": "es", + "voteAverage": 7.3, + "voteCount": 67, + "popularity": 4.1083 + }, + { + "id": 61752, + "title": "Hellsing Ultimate", + "originalTitle": "ヘルシング アルティメット", + "overview": "For over a century, the mysterious Hellsing Organization has been secretly protecting the British Empire from the undead. When Sir Integra Hellsing succeeded as the head of the organization, she also inherited the ultimate weapon against these supernatural enemies: Alucard, a rogue vampire possessing mysterious and frightening powers. Now, Hellsing must deal with a more dangerous threat than vampires.", + "posterPath": "/cz8vNiws00m8tzIpdBCPFgUuBYw.jpg", + "backdropPath": "/mz5L2zlZuMlQwVE8Yxvb2YK1wsl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-02-10", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.411, + "voteCount": 670, + "popularity": 4.1067 + }, + { + "id": 45799, + "title": "K", + "originalTitle": "K", + "overview": "Shiro is an easygoing teenager content with just being a student—until his seemingly perfect life is halted when a bloodthirsty clan, glowing red with fire, attempts to kill him in the streets. Unbeknownst to Shiro, he is suspected of murdering a member of their clan and will need a miracle to escape their vengeance. Miraculously, a young man named Kurou Yatogami swings in and aids Shiro in his getaway, only to reveal he's also after Shiro's life. Now a hunted man, Shiro will have to evade the clans of seven powerful kings and desperately try to prove his innocence—before it’s too late!", + "posterPath": "/52eQfCm8yGEQHNZefyHr6uIysqt.jpg", + "backdropPath": "/bYo6FuWOWJuZTu7dqo5H3M1b7z4.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2012-10-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 88, + "popularity": 4.1065 + }, + { + "id": 116725, + "title": "Vivy: Fluorite Eye's Song", + "originalTitle": "Vivy -Fluorite Eye's Song-", + "overview": "In the near future, Vivy, a diva-type A.I., went up on stage each day with hopes of putting her heart into her song. One day, the A.I. Matsumoto, who claims to have arrived from 100 years in the future, appears before Vivy with an important request...", + "posterPath": "/xRakd62ihUP19NBgWyJzjO26NxE.jpg", + "backdropPath": "/fOlKY2rpDnoxcWU6a0Z4dpRA61d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-04-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.009, + "voteCount": 159, + "popularity": 4.1061 + }, + { + "id": 61789, + "title": "Alaskan Bush People", + "originalTitle": "Alaskan Bush People", + "overview": "Deep in the Alaskan wilderness lives a newly discovered family who was born and raised wild. Billy Brown, his wife Ami and their seven grown children – 5 boys and 2 girls – are so far removed from civilization that they often go six to nine months of the year without seeing an outsider. They’ve developed their own accent and dialect, refer to themselves as a \"wolf pack,\" and at night, all nine sleep together in a one-room cabin. Simply put, they are unlike any other family in America. Recently, according to the Browns, the cabin where they lived for years was seized and burned to the ground for being in the wrong location on public land.", + "posterPath": "/uUrQfZHcnaSwmW7ZtkLEQ1lmpYl.jpg", + "backdropPath": "/utFM4lkrQ5lX2KNDjwMYLzFBrX3.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10751 + ], + "genres": [ + "Reality", + "Family" + ], + "releaseDate": "2014-05-06", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.41, + "voteCount": 61, + "popularity": 4.1041 + }, + { + "id": 62904, + "title": "Just Add Magic", + "originalTitle": "Just Add Magic", + "overview": "Kelly Quinn and her two BFF's, Darbie and Hannah, stumble upon her grandmother's mysterious cookbook in the attic and discover some far from ordinary recipes. When the Shut'em Up Shortcake silences Kelly's pesky little brother and the Healing Hazelnut Tart heals Darbie's ankle, the girls discover they have the power of magic. A single-camera live-action pilot based on the popular book.", + "posterPath": "/v7olj5StoSFVsgkBhOihDaR56eJ.jpg", + "backdropPath": "/fPksNJggRWtEvgcaKccYMZEYrug.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10762, + 10765, + 35, + 9648 + ], + "genres": [ + "Family", + "Kids", + "Sci-Fi & Fantasy", + "Comedy", + "Mystery" + ], + "releaseDate": "2016-01-15", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.627, + "voteCount": 79, + "popularity": 4.102 + }, + { + "id": 274671, + "title": "The Beginning After the End", + "originalTitle": "最強の王様、二度目の人生は何をする?", + "overview": "After a mysterious death, King Grey is reborn as Arthur Leywin on the magical continent of Dicathen. Although he enters his second life as a baby, his previous wisdom remains. He begins to master magic and forge his own path as the years go by, seeking to correct the mistakes of his past life.", + "posterPath": "/u0QWnKUhxcxecQSclMBNnO5MXh.jpg", + "backdropPath": "/epPoqwhas9lhZasJ9yVYJod2GQa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2025-04-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 43, + "popularity": 4.0981 + }, + { + "id": 3222, + "title": "Murder One", + "originalTitle": "Murder One", + "overview": "Theodore 'Teddy' Hoffman is a highly-regarded defense attorney in a prestigious Los Angeles law firm. Having successfully defended the wealthy but suspicious Richard Cross in a much-publicised murder trial, he is now involved in the defense of Neil Avedon, a famous young actor who has been suffering from severe drug and alcohol problems - and has been charged with the murder for which Cross was acquitted.", + "posterPath": "/8POnAqZ1W5ttbeWpEVosMxhTIo4.jpg", + "backdropPath": "/idnFqnwinR8P62aWUq1n1fPh0sP.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1995-09-20", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 29, + "popularity": 4.0975 + }, + { + "id": 246381, + "title": "Prime Target", + "originalTitle": "Prime Target", + "overview": "A brilliant math student is on the verge of a major breakthrough when a shadowy enemy tries to stop him. Fighting for answers—and his life—he teams up with a government agent to unravel a high-stakes conspiracy.", + "posterPath": "/bGYCimDXRL7cE3uETLZzMCFOdJo.jpg", + "backdropPath": "/4LBPDopxQXtK3t6mea7CV5AWNk6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-01-22", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 107, + "popularity": 4.0945 + }, + { + "id": 155631, + "title": "The Santa Clauses", + "originalTitle": "The Santa Clauses", + "overview": "After nearly three decades of being Santa Claus, Scott Calvin’s magic begins to falter. As he struggles to keep up with the demands of the job, he discovers a new clause that forces him to rethink his role as Santa and as a father.", + "posterPath": "/fWTQBoKfGdn6n2UaD7TQp9WxeHO.jpg", + "backdropPath": "/wDXz9MtI5yNNC7R8LF02rk1BXJR.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2022-11-16", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 166, + "popularity": 4.0927 + }, + { + "id": 81667, + "title": "The Rise of Phoenixes", + "originalTitle": "天盛长歌", + "overview": "When a secret from the past rears its head, respected warrior Feng Zhiwei is forced to choose between revenge and her loyalty to ruling prince Ning Yi.", + "posterPath": "/oClpkfN2ath0GLZFstW1P7wMlan.jpg", + "backdropPath": "/rigY2xFVJZtc9H3lWkyQY0f6YYk.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-08-14", + "releaseYear": "2018", + "originalLanguage": "zh", + "voteAverage": 8.029, + "voteCount": 35, + "popularity": 4.0892 + }, + { + "id": 42729, + "title": "The Twelve Kingdoms", + "originalTitle": "十二国記", + "overview": "Nakajima Youko is your average somewhat timid high school student. One day, a strange man named Keiki appears before her, swearing allegiance. Before she could properly register what was happening, demon-like creatures attack Youko and her friends, after which they are pulled into a different world. A world unlike what she has ever known. Separated from Keiki, Youko and her friends must do whatever they can if they wish to survive in this new world.", + "posterPath": "/miv7pBSxdbFUs4Un5SfHHMoSx5y.jpg", + "backdropPath": "/fB2k11exO93IeWnpwrY1mzE89ul.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2002-04-09", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 46, + "popularity": 4.0844 + }, + { + "id": 234995, + "title": "Sengoku Youko", + "originalTitle": "戦国妖狐", + "overview": "Humans and katawara are at war, but there are those on each side who join forces. Tama is a fox spirit who loves humans, while her sendou brother, Jinka, despises them. Together, they use the power of spirit transformation to defeat the monstrous katawara and put an end to the evils of this chaotic age. What destiny awaits the duo at the end of their journey?", + "posterPath": "/rLeQZRlvJmXnIIV65lNOO3RGrqP.jpg", + "backdropPath": "/b7gnYXCCKSOpsKhuotDx0892yhl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-01-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.875, + "voteCount": 24, + "popularity": 4.0839 + }, + { + "id": 107329, + "title": "Go Ahead", + "originalTitle": "以家人之名", + "overview": "Three friends from troubled families form a unique, lasting bond — but their pasts soon cast a cloud over their lives.", + "posterPath": "/75SigmLMhs3x4rA149w2hxT3iXD.jpg", + "backdropPath": "/rFoYY2Idt9Zz76jKNR4TFuZ6kJ9.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 35 + ], + "genres": [ + "Drama", + "Family", + "Comedy" + ], + "releaseDate": "2020-08-10", + "releaseYear": "2020", + "originalLanguage": "zh", + "voteAverage": 8.4, + "voteCount": 203, + "popularity": 4.0834 + }, + { + "id": 73467, + "title": "Godless", + "originalTitle": "Godless", + "overview": "A ruthless outlaw terrorizes the West in search of a former member of his gang, who’s found a new life in a quiet town populated only by women.", + "posterPath": "/ePOD0ofGWFDTbZR84QhM7kpYMPX.jpg", + "backdropPath": "/3CdnJBsEm2hZffF23wOJtfC0EIq.jpg", + "mediaType": "tv", + "genreIds": [ + 37, + 18 + ], + "genres": [ + "Western", + "Drama" + ], + "releaseDate": "2017-11-22", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.733, + "voteCount": 655, + "popularity": 4.0809 + }, + { + "id": 114479, + "title": "The Acolyte", + "originalTitle": "The Acolyte", + "overview": "A hundred years before the rise of the Empire, the Jedi Order and the Galactic Republic have prospered for centuries without war. During this time, an investigation into a shocking crime spree pits a Jedi Master against a dangerous warrior from his past.", + "posterPath": "/1dcoIe9uKbWykq2zsnkaz2rxPnP.jpg", + "backdropPath": "/kwronSXO1ogMqHHFvY2eBxfFLdn.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765, + 10759 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-06-04", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 5.485, + "voteCount": 757, + "popularity": 4.0806 + }, + { + "id": 91569, + "title": "Nagi's Long Vacation", + "originalTitle": "凪のお暇", + "overview": "Nagi Oshima quits her job, cuts off everybody she knows (including her boyfriend), quits social media and cancels her cellphone. To restart her life, she moves to an old apartment in the suburbs of Tokyo. She wants to have a pleasant and free life, not caring about other people.", + "posterPath": "/ds1jojEqlEFnGuX3lMaPa8uwLjX.jpg", + "backdropPath": "/dVX4fbrGg2LjgKzrNL4miiLe1Ja.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2019-07-19", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.357, + "voteCount": 14, + "popularity": 4.0799 + }, + { + "id": 2513, + "title": "Dr. Katz, Professional Therapist", + "originalTitle": "Dr. Katz, Professional Therapist", + "overview": "From living with his deadbeat son, Ben, to his day-to-day dealings with his stunningly sarcastic secretary, Laura, join therapist Jonathan Katz as he picks the brains of your favorite stand-up comedians.", + "posterPath": "/wHqJxW6vCi8g3ZZJnFEDGcMsaor.jpg", + "backdropPath": "/rERIB8dpX3irFCqejNasiJz82ae.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1995-05-28", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 57, + "popularity": 4.0798 + }, + { + "id": 252640, + "title": "Legend of Zang Hai", + "originalTitle": "藏海传", + "overview": "\"Legend of Zang Hai\" follows the son of Imperial Astronomer Kuai Duo. Consumed by vengeance, he spends a decade honing his skills. Assuming the name Zang Hai, he ventures into the capital to uncover the truth, avenge his family, and restore justice.", + "posterPath": "/6Nn2qwv2GrQ1cHkrgwCeSdEbbw8.jpg", + "backdropPath": "/1SLimeCtDZhk9CCKj4qr435yvPT.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-05-18", + "releaseYear": "2025", + "originalLanguage": "zh", + "voteAverage": 7.464, + "voteCount": 28, + "popularity": 4.0792 + }, + { + "id": 2666, + "title": "The Tribe", + "originalTitle": "The Tribe", + "overview": "The Tribe is a New Zealand/British post-apocalyptic fictional TV series primarily aimed at teenagers. It is set in a near-future in which all adults have been wiped out by a deadly virus, leaving the children of the world to fend for themselves. The show's focus is on an unnamed city inhabited by tribes of children and teenagers. It was primarily filmed in and around Wellington, New Zealand.\n\nThe series was created by Raymond Thompson and Harry Duffin and was developed and produced by the Cloud 9 Screen Entertainment Group in conjunction with the UK's Channel 5. It has aired on over 40 broadcast networks around the world.", + "posterPath": "/uxS2iK6MqKOznkwd0PT24ZcZXIV.jpg", + "backdropPath": "/i14O694buEhWSr5pHKnrVWMms2w.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10762, + 10751 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "1999-04-24", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 24, + "popularity": 4.0775 + }, + { + "id": 218342, + "title": "A Good Girl's Guide to Murder", + "originalTitle": "A Good Girl's Guide to Murder", + "overview": "Five years after the death of schoolgirl Andie Bell, Pippa Fitz-Amobi sets out to uncover what really happened to her. Sal Singh, Andie's boyfriend, admitted to the murder before taking his own life, but Pip doesn't believe he's responsible and teams up with Sal's brother Ravi to uncover the truth. If Sal Singh isn't a murderer and the real killer is still out there, how far will they go to keep Pip from finding out the truth?", + "posterPath": "/mzkstyDSsTRswCMRvoBD5ULPnIt.jpg", + "backdropPath": "/8zLyVhEsH6SM9diX7CUUWcaRlk0.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2024-07-10", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.421, + "voteCount": 258, + "popularity": 4.0769 + }, + { + "id": 9855, + "title": "Police Story", + "originalTitle": "Police Story", + "overview": "Police Story is an anthology television crime drama. The show was the brainchild of author and former policeman Joseph Wambaugh and represented a major step forward in the realistic depiction of police work and violence on network TV. Although it was an anthology, there were certain things that all episodes had in common; for instance, the main character in each episode was a police officer. The setting was always Los Angeles and the characters always worked for some branch of the LAPD. Notwithstanding the anthology format, there were recurring characters. Scott Brady appeared in more than a dozen episodes as \"Vinnie,\" a former cop who, upon retirement, had opened a bar catering to police officers, and who acted as a sort of Greek chorus during the run of the series, commenting on the characters and plots.", + "posterPath": "/wfhiGakYfjk8XeDKRpya9P4tNu9.jpg", + "backdropPath": "/tRLAUxsHaoRYXnpiTXpWm0YiZsC.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "1973-03-20", + "releaseYear": "1973", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 17, + "popularity": 4.0754 + }, + { + "id": 85801, + "title": "High School Musical: The Musical: The Series", + "originalTitle": "High School Musical: The Musical: The Series", + "overview": "A group of East High students countdown to the opening night of their school’s first-ever production of “High School Musical.” Showmances blossom; friendships are tested while new ones are made; rivalries flare and lives are changed forever as these young people discover the transformative power that only a high school drama club can provide.", + "posterPath": "/2KmbFkZD42I8Q7IZy4WxmZm9W6O.jpg", + "backdropPath": "/uUojnsT9WVrGG4eiQheaDkPUI9M.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35, + 18 + ], + "genres": [ + "Family", + "Comedy", + "Drama" + ], + "releaseDate": "2019-11-12", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.961, + "voteCount": 792, + "popularity": 4.075 + }, + { + "id": 2677, + "title": "Secret Army", + "originalTitle": "Secret Army", + "overview": "World War II drama about covert organisation Lifeline helping allied airmen escape after being shot down in occupied Europe, working with the Resistance and hiding from the Gestapo.", + "posterPath": "/xf1eqEBfXDH7a8b7jmi0cucCiOD.jpg", + "backdropPath": "/9LAyILDyuMlJtb4wmz4uttWd8qN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768 + ], + "genres": [ + "Drama", + "War & Politics" + ], + "releaseDate": "1977-09-07", + "releaseYear": "1977", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 11, + "popularity": 4.0718 + }, + { + "id": 114922, + "title": "Citadel", + "originalTitle": "Citadel", + "overview": "What if you lost your memory? What if a spy didn’t know they were a spy? Years ago, the top agents of Citadel, Mason Kane and Nadia Sinh, had their minds wiped. But, they’re called back to action as sinister forces emerge from the past. With the help of spymaster Bernard Orlick, these former lovers must remember the past to save the future.", + "posterPath": "/AcrDB32TqpAGwvQFbICALGxSzn3.jpg", + "backdropPath": "/3cgRI0hOq3dYyezSYrsfdmqxtMw.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2023-04-27", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 463, + "popularity": 4.0713 + }, + { + "id": 36041, + "title": "Bakuman", + "originalTitle": "バクマン。", + "overview": "Moritaka Mashiro and Akito Takagi are pretty much foils of each other. Mashiro, an average 9th grade student but talented artist, and Takagi, an overall advanced 9th grader and aspiring writer. After great convincing, Takagi convinces Mashiro to join him in becoming the greatest mangakas Japan has ever seen. Takagi, with his gift of writing, hopes to become a successful mangaka, and Mashiro, with his gift of art, hopes to marry the girl of his dreams, Azuki Miho.", + "posterPath": "/fwch4T5aUDPuJ6zUzkub8prfhtI.jpg", + "backdropPath": "/2tbcQK7H3t1ia3pArvNt4ZXyL7T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2010-10-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.136, + "voteCount": 143, + "popularity": 4.0713 + }, + { + "id": 60319, + "title": "Tu cara me suena", + "originalTitle": "Tu cara me suena", + "overview": "", + "posterPath": "/AeVzYmEzRvNWNfy1XfaKW4TZ6wi.jpg", + "backdropPath": "/kxRBK95nsEJ8y7msgYQmwOqVl9a.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-09-28", + "releaseYear": "2011", + "originalLanguage": "es", + "voteAverage": 7.1, + "voteCount": 19, + "popularity": 4.0707 + }, + { + "id": 93550, + "title": "I Can I BB", + "originalTitle": "奇葩说", + "overview": "", + "posterPath": "/ppPd6Zs1XPuXZAnPlfB4NkeN6MV.jpg", + "backdropPath": "/oiR4HHPdTCRcvisouCcKSG7zeVJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 10764 + ], + "genres": [ + "Talk", + "Reality" + ], + "releaseDate": "2014-11-22", + "releaseYear": "2014", + "originalLanguage": "zh", + "voteAverage": 8.3, + "voteCount": 13, + "popularity": 4.0702 + }, + { + "id": 64437, + "title": "Outsiders", + "originalTitle": "Outsiders", + "overview": "A struggle for power and control set in the rugged and mysterious hills of Appalachia, \"Outsiders\" tells the story of the Farrell clan, a family of outsiders who've been in these parts since before anyone can remember. Living off the grid and above the law on their mountaintop homestead, they'll protect their world and defend their way of life using any means necessary.", + "posterPath": "/f1zIu7mxsAKyJqnR5hrQN525KMK.jpg", + "backdropPath": "/mJDSAQ3ZnlwXTuMN5QEjubOcl6f.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-01-26", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 136, + "popularity": 4.069 + }, + { + "id": 135340, + "title": "Happiness", + "originalTitle": "해피니스", + "overview": "A new type of deadly virus spread throughout the city, and the apartment where has different social classes of people is sealed off. With the fear of the virus, and the conflicts of the different classes, the residents have to spend and survive in the new habitation.", + "posterPath": "/8EnkVJwDP2QSJqOKte9EUjYKu4C.jpg", + "backdropPath": "/hQ4GRoPuF3f6whlclxveFoOODnk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-11-05", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 8, + "voteCount": 540, + "popularity": 4.0681 + }, + { + "id": 46150, + "title": "Carrossel", + "originalTitle": "Carrossel", + "overview": "Carrossel is a children's telenovela created by Abel Santa Cruz and written by Íris Abravanel, originally transmitted on SBT from May 21, 2012 to present. It is a Brazilian remake of the Mexican telenovela Carrusel, which in turn had been inspired by the Argentinean telenovela Jacinta Pichimahuida, la Maestra que no se Olvida.\n\nIn a short time the display was a telenovela phenomenon of hearing canal causing quite successful among the children public yielding several CDs, DVDs, toys and other products in less than a year. including we have made several spin-offs based on it, including a cartoon series and television sitcom.", + "posterPath": "/3OpTb80gvYF34LPJNpvDPtnzIcM.jpg", + "backdropPath": "/n6H6NqizCFqAMT4RNHeUpwBTZAD.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "2012-05-21", + "releaseYear": "2012", + "originalLanguage": "pt", + "voteAverage": 7.9, + "voteCount": 16, + "popularity": 4.0678 + }, + { + "id": 65448, + "title": "Stolen Life", + "originalTitle": "Откраднат живот", + "overview": "Love, treachery, sin, redemption, difficult decisions and surprising twists are the basis of dramatic story in the series \"Stolen Life\", which being played out against the backdrop of extreme life of the medical profession.", + "posterPath": "/5iPXsfEkKYldXUyUWmBsYIQ1Mhh.jpg", + "backdropPath": "/yPvqUEteRhTjrQIEIu38KbKctDj.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-03-08", + "releaseYear": "2016", + "originalLanguage": "bg", + "voteAverage": 3.1, + "voteCount": 23, + "popularity": 4.0666 + }, + { + "id": 69017, + "title": "One Day at a Time", + "originalTitle": "One Day at a Time", + "overview": "In a reimagining of the TV classic, a newly single Latina mother raises her teen daughter and tween son with the \"help\" of her old-school mom.", + "posterPath": "/yiQcmPm6pTYyAAp3Q9Ge2xMkf8b.jpg", + "backdropPath": "/uD3Yd00HAvII86KB4oxWIXfUIB5.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-01-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.773, + "voteCount": 181, + "popularity": 4.0651 + }, + { + "id": 15822, + "title": "Zorro", + "originalTitle": "Zorro", + "overview": "Zorro, also known as The New Zorro, New World Zorro, and Zorro 1990, is an American action-adventure drama series featuring Duncan Regehr as the character of Zorro. Regehr portrayed the fearless Latino hero and fencer on The Family Channel from 1990 to 1993. The series was shot entirely in Madrid, Spain and produced by New World Television, The Family Channel, Ellipse Programme of Canal Plus, Beta TV, and RAI. 88 episodes of the series were produced, 10 more than the first Zorro television series, which was produced by Disney in the late 1950s.\n\nSince 2011, the series is currently airing in the United States on the Retro Television Network as The New Zorro. Peter Rodgers Organization is the distributor for this version of Zorro.", + "posterPath": "/iuo9I7AF6HSs4RdpwHb2QFOkZjk.jpg", + "backdropPath": "/borJhTreo7a0f8YwDvcVZTrWi0Q.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "1990-01-05", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 7.121, + "voteCount": 265, + "popularity": 4.0643 + }, + { + "id": 90721, + "title": "Rookie Historian Goo Hae-Ryung", + "originalTitle": "신입사관 구해령", + "overview": "The story takes place at the beginning of the 19th century. Goo Hae-Ryung is a historian who tries to fight gender stereotypes as her work is often looked down on. She meets Prince Yi Rim.", + "posterPath": "/ijHgv6ZbvW4ZUu2QbHwOSb3YPTK.jpg", + "backdropPath": "/oBLzaHvZfTmZlNQeRF1ZouX4WjK.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2019-07-17", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 7.5, + "voteCount": 69, + "popularity": 4.0642 + }, + { + "id": 132983, + "title": "Octonauts: Above & Beyond", + "originalTitle": "Octonauts: Above & Beyond", + "overview": "The Octonauts expand their exploration beyond the sea -- and onto land! With new rides and new friends, they'll protect any habitats and animals at risk.", + "posterPath": "/1V7IYlTVyGmjwiEH9SvPZREzfom.jpg", + "backdropPath": "/2TGXOSMJ57s9Ole7nBTMK2CxneP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Family" + ], + "releaseDate": "2021-09-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 8.8, + "voteCount": 15, + "popularity": 4.0627 + }, + { + "id": 194831, + "title": "Immoral Guild", + "originalTitle": "不徳のギルド", + "overview": "The skilled hunter Kikuru Madan has decided to retire out of fear of wasting his youth. One day, a guild staff member suggests that he go on a quest with a new female martial artist named Hitamu Kyan. However, she keeps getting hit by monsters one after another.", + "posterPath": "/lDqRJgunhvkHLJaH7BZjVtA1GzA.jpg", + "backdropPath": "/cBCb40cX8539PVKFXZ7N6aJlHsu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.904, + "voteCount": 26, + "popularity": 4.0611 + }, + { + "id": 248866, + "title": "My Deer Friend Nokotan", + "originalTitle": "しかのこのこのここしたんたん", + "overview": "Koshi Torako has everyone fooled. Her classmates see her as the perfect honor student, unaware of her secret delinquent past. But her new picturesque school life is thrown into chaos when she bumps into Shikanoko Noko, a girl with antlers! Mayhem seems to follow this strange doe-eyed girl. Who, or what, is she?", + "posterPath": "/1kj6PyMoL5J4GrBlFrGieXGkJUr.jpg", + "backdropPath": "/wd9FCguhc8MQDUZG7Pz2klzGBOL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.753, + "voteCount": 73, + "popularity": 4.0591 + }, + { + "id": 243248, + "title": "Queen Mantis", + "originalTitle": "사마귀: 살인자의 외출", + "overview": "Cha Su-yeol, a police officer who has long despised his mother, the notorious 'Mantis' serial killer, must reluctantly turn to her for help when a copycat killer emerges.", + "posterPath": "/WWGI3LOzufVJavMdy6BAIInMPY.jpg", + "backdropPath": "/4A5TEvk99fCg8WSgImYJ6dqqe8Y.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2025-09-05", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.3, + "voteCount": 17, + "popularity": 4.0584 + }, + { + "id": 234910, + "title": "Tying the Knot with an Amagami Sister", + "originalTitle": "甘神さんちの縁結び", + "overview": "Uryu Kamihate is a high school student hoping to enroll in Kyoto University’s medical school. After being taken in by the chief priest at Amagami Shrine, he is told he must marry one of three maiden sisters—Yae, Yuna, or Asahi—to live at, and one day inherit, the Amagami Shrine. Kamihate will need to sweep one of the maidens off her feet in this story of romance, friendship, and fun.", + "posterPath": "/15xFmoqTEryUWL7kUjY1QSby8XY.jpg", + "backdropPath": "/9NIyeGexonYn4ETKp9PkziPnkry.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-10-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 15, + "popularity": 4.0563 + }, + { + "id": 89905, + "title": "Normal People", + "originalTitle": "Normal People", + "overview": "Marianne and Connell weave in and out of each other's lives in this exploration of sex, power and the desire to love and be loved.", + "posterPath": "/tbKSsFd4ImzUgbYolttkq4pmOPQ.jpg", + "backdropPath": "/b8Sg5AWwbMI0pdU1TQvKz0y4IBd.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-04-26", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 8.122, + "voteCount": 1261, + "popularity": 4.0563 + }, + { + "id": 124010, + "title": "How I Met Your Father", + "originalTitle": "How I Met Your Father", + "overview": "In the near future, Sophie tells her son the story of how she met his father: a story that catapults us back to the year 2021 where Sophie and her close-knit group of friends are in the midst of figuring out who they are, what they want out of life, and how to fall in love in the age of dating apps and limitless options.", + "posterPath": "/8psLGtFzTMYCXxUNMpMOCB6doPn.jpg", + "backdropPath": "/z8gFddoVzskuqxQuqW5CLSxcBY5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2022-01-18", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 6.513, + "voteCount": 262, + "popularity": 4.0554 + }, + { + "id": 49953, + "title": "Alice Nevers, le juge est une femme", + "originalTitle": "Alice Nevers, le juge est une femme", + "overview": "", + "posterPath": "/ib75ekjFVChCgkOOQNLX7IWdjKf.jpg", + "backdropPath": "/vzhEN2hvWtN6Hvur3AsLIUv2b2h.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2002-09-02", + "releaseYear": "2002", + "originalLanguage": "fr", + "voteAverage": 5, + "voteCount": 11, + "popularity": 4.0533 + }, + { + "id": 2059, + "title": "Rosemary & Thyme", + "originalTitle": "Rosemary & Thyme", + "overview": "Brought together by professional and personal heartache, two plucky ladies plant the seeds for a brighter future. Rosemary Boxer, with a doctorate in plant pathology, and Laura Thyme, a former police constable and avid gardener, discover their shared love of green-thumbness and start a gardening business. As they restore various English gardens back to their lavish states, the inquisitive pair also find themselves uncovering an assortment of mysteries.", + "posterPath": "/lqWPl0dZK1EPjUH0iZgEJuCtvuO.jpg", + "backdropPath": "/ck4HYEqNV2n2lGfii5HAKckFbBW.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2003-08-31", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.304, + "voteCount": 28, + "popularity": 4.0532 + }, + { + "id": 116761, + "title": "Julia", + "originalTitle": "Julia", + "overview": "Through Julia Child’s life and her singular joie de vivre, the series explores a pivotal time in American history – the emergence of public television as a new social institution, feminism and the women's movement, the nature of celebrity and America's cultural evolution.", + "posterPath": "/ebXgoq33gsIC3ULeX53gZKN86No.jpg", + "backdropPath": "/ilczgkeb22nEBxTCOEyegetJbue.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-03-31", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 52, + "popularity": 4.0531 + }, + { + "id": 100988, + "title": "Higurashi: When They Cry - NEW", + "originalTitle": "ひぐらしのなく頃に 業", + "overview": "New kid Keiichi Maebara is settling into his new home of peaceful Hinamizawa village. Making quick friends with the girls from his school, he's arrived in time for the big festival of the year. But something about this isolated town seems \"off,\" and his feelings of dread continue to grow. With a gnawing fear that he's right, what dark secrets could this small community be hiding?", + "posterPath": "/rZocpkrc1qrntJXR2gbVPLWPAlk.jpg", + "backdropPath": "/8fsV0aqSHQlbyvZlWyynruat0MP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-10-01", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 48, + "popularity": 4.053 + }, + { + "id": 177, + "title": "I Am Weasel", + "originalTitle": "I Am Weasel", + "overview": "The adventures of the noble, generous, intelligent and good-at-everything I.M. Weasel, who must compete once again with his arch-enemy, the bumbling, brainless and utterly talentless I.R. Baboon.", + "posterPath": "/ibSVhfayNItAAoGkI8bHYOHPQdH.jpg", + "backdropPath": "/4vR2Ctk0dBrEKIxwBaV3BCkYCRc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1997-07-22", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 196, + "popularity": 4.0517 + }, + { + "id": 224882, + "title": "The Assassins", + "originalTitle": "الحشاشين", + "overview": "The events take place in a historical context, in the 11th century, where the leader of the Assassins, Hassan al-Sabah, and his leadership of the band that was famous for carrying out bloody assassinations of prominent figures at that stage.", + "posterPath": "/qhnkrV58m9lLUL0BWX4MtKRqpKH.jpg", + "backdropPath": "/lxiVSSy62EgJaCqoL4zw13MokXX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2024-03-11", + "releaseYear": "2024", + "originalLanguage": "ar", + "voteAverage": 7.6, + "voteCount": 17, + "popularity": 4.0508 + }, + { + "id": 64593, + "title": "Beowulf: Return to the Shieldlands", + "originalTitle": "Beowulf: Return to the Shieldlands", + "overview": "Beowulf, a hero of the Geats, comes to the aid of Hrothgar, the king of the Danes, whose mead hall in Heorot has been under attack by a monster known as Grendel.", + "posterPath": "/yfsNeyRYclfCe1bDM3xVYEpuxEE.jpg", + "backdropPath": "/rsZSfEfAeFmobAx7bi6TSz982dh.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-03", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 5.5, + "voteCount": 65, + "popularity": 4.0505 + }, + { + "id": 45209, + "title": "Space Brothers", + "originalTitle": "宇宙兄弟", + "overview": "When they were young, the brothers Mutta and Hibito promised each other they would become astronauts. Now, in 2025, Hibito has followed his dream to become the first Japanese on the moon, but Mutta has just been fired from his job. His brother reminds him of their childhood promise, and Mutta decides once again to aim for space.", + "posterPath": "/3o6W53edDLWtYOE2fCLK3154mIV.jpg", + "backdropPath": "/qAFZFYzKOtGPV3u4AuuYl2fYVFh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-03-31", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 22, + "popularity": 4.0488 + }, + { + "id": 937, + "title": "Behind the Music", + "originalTitle": "Behind the Music", + "overview": "An intimate look into the personal lives of pop music's greatest and most influential artists.", + "posterPath": "/pMnNFb6eFKF5edRh62Km2IqfdAG.jpg", + "backdropPath": "/3u7dMmGTuXDm4WBIrKAeEsLDTEu.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "1997-08-17", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 13, + "popularity": 4.0486 + }, + { + "id": 216304, + "title": "The Director Who Buys Me Dinner", + "originalTitle": "밥만 잘 사주는 이상한 이사님", + "overview": "Min Youtan remembers every past life. Dongbaek doesn’t. To break a curse, Youtan must make him fall in love—again.", + "posterPath": "/9b7NuTsNptt24noCnibYBUjPLdS.jpg", + "backdropPath": "/iMnTy3qslLjYC47gcSgjWjQ8zij.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-12-15", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 5.825, + "voteCount": 20, + "popularity": 4.0474 + }, + { + "id": 8838, + "title": "Texhnolyze", + "originalTitle": "TEXHNOLYZE", + "overview": "Denizens of Lux have come to call it \"The City\" and treat it as a sentient force. Three factions vie for control of the city: the Organo, a strictly professional conglomerate with ties to the criminal underworld in the prosthetics business; the Union, a fanatical populist group interfering with Organo's affairs; and Racan, a marauding group of Texhnolyzed youths.", + "posterPath": "/4ZVfHLBx6UMIa6jxWNQ5GcIvqOX.jpg", + "backdropPath": "/2WF4740oFcY5O89K2ktexCfyx9G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-04-17", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 67, + "popularity": 4.0464 + }, + { + "id": 76747, + "title": "On My Block", + "originalTitle": "On My Block", + "overview": "In a rough Los Angeles neighborhood, four smart, funny and streetwise teens find their lifelong friendship tested as they begin high school.", + "posterPath": "/w6oviv65UEducvjAdH3sYYaxdu2.jpg", + "backdropPath": "/jt7c70Axkhy7o9u00JT8Lygfd3H.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2018-03-16", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 668, + "popularity": 4.0454 + }, + { + "id": 39518, + "title": "My Babysitter's a Vampire", + "originalTitle": "My Babysitter's a Vampire", + "overview": "Ethan, Benny and fledgling vampire Sarah battle zombies, demons and the other supernatural beasties that regularly threaten their school.", + "posterPath": "/bBH0zyyMblIecCWgc4zDGT5KaNA.jpg", + "backdropPath": "/hzkX0Mujeika5hBQGxFd8anFEB2.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 10765, + 9648, + 10762, + 10751 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery", + "Kids", + "Family" + ], + "releaseDate": "2011-06-27", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 8.107, + "voteCount": 354, + "popularity": 4.0452 + }, + { + "id": 62569, + "title": "Go! Princess PreCure", + "originalTitle": "Go! プリンセスプリキュア", + "overview": "Go! Princess PreCure is set in a boarding junior high school, named Noble Academy. The protagonist Haruka Haruno is a 13-year-old first-year student. Her big dream is to be a princess someday because she admired a princess in the picture book she has kept since her childhood. One day, she transforms into Cure Flora with the \"Dress Up Key\" which Prince Kanata of Hope Kingdom gave her as a good luck charm when she was little. Then she also finds other Pretty Cure girls in her school, 14-year-old Minami Kaidou as Cure Mermaid and 13-year-old Kirara Amanogawa as Cure Twinkle. As the Princess Pretty Cure team, with two fairies Pafu and Aroma, they fight against the dark witch Dyspear, who hates all the dreams in the world and wants to turn them to despair.", + "posterPath": "/uVwqlyJ6oqk4eRXYR7QIccFJ8pd.jpg", + "backdropPath": "/ihXmTqQQaFNLP3W53z8ZxeCPuAy.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35, + 10759, + 10751, + 18, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Comedy", + "Action & Adventure", + "Family", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-02-01", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 12, + "popularity": 4.045 + }, + { + "id": 35579, + "title": "Princess Sarah", + "originalTitle": "小公女セーラ", + "overview": "Sarah Crewe, the young daughter of a wealthy Englishman in India, starts attending a prestigious boarding school in London. However after a series of unexpected tragic events, she is forced to become a maid at the school.", + "posterPath": "/gCYJnaNl2Ekym2l2IEx2dFsrjnp.jpg", + "backdropPath": "/tO5S51guxvWG2tgUQ5AZPmRULQQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1985-01-06", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 45, + "popularity": 4.0448 + }, + { + "id": 1043, + "title": "Ouran High School Host Club", + "originalTitle": "桜蘭高校ホスト部", + "overview": "New student Haruhi stumbles on the Ouran High School Host Club, an all-male group that makes money by entertaining the girls of the school.", + "posterPath": "/2bO4wYNTYSC2mV0YvomZtaHRLMp.jpg", + "backdropPath": "/77TdSJAkYelWhEeBEZ8pR3Ns6To.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.187, + "voteCount": 233, + "popularity": 4.0447 + }, + { + "id": 109930, + "title": "The Wonderful World of Mickey Mouse", + "originalTitle": "The Wonderful World of Mickey Mouse", + "overview": "It's nothing but fun and excitement for Mickey and his best pals – Minnie, Donald, Daisy, Goofy and Pluto - as they embark on their greatest adventures yet, navigating the curveballs of a wild and zany world where the magic of Disney makes the impossible possible.", + "posterPath": "/8F1V4ve64YPmyRZZ5u0jh7KCIID.jpg", + "backdropPath": "/Eto7g02aDIbK0P5a1TTyKqbVSm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2020-11-18", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 100, + "popularity": 4.0445 + }, + { + "id": 93219, + "title": "The Movies That Made Us", + "originalTitle": "The Movies That Made Us", + "overview": "These blockbusters brought us together and gave us the time of our lives. Meet the actors, directors and industry insiders who made them happen.", + "posterPath": "/l7p40cVratmPTdWrx4UFjZbANKF.jpg", + "backdropPath": "/mQYdERQ3flDX5s1jb7Jc2KHrK8C.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2019-11-29", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 125, + "popularity": 4.0419 + }, + { + "id": 66551, + "title": "The Mick", + "originalTitle": "The Mick", + "overview": "Mackenzie \"Mickey\" Murphy is a hard-living, foul-mouthed, cigarette-smoking woman who moves to affluent Greenwich, CT to raise the spoiled kids of her wealthy sister who fled the country to avoid a federal indictment. She quickly learns what the rest of us already know - other people's children are awful.", + "posterPath": "/jwYBohob30EeP1rJJMx9zcWSaGS.jpg", + "backdropPath": "/5xCxoMktHFsrcF283IMTL4OGtuR.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2017-01-01", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.158, + "voteCount": 262, + "popularity": 4.0417 + }, + { + "id": 53007, + "title": "Burger Quiz", + "originalTitle": "Burger Quiz", + "overview": "A French humorous game show taking place in a burger restaurant which is managed by the TV host.", + "posterPath": "/oiT0r9RW98aDvELLkpG2QG0uU4e.jpg", + "backdropPath": "/8t2m6vPXtLc3SVSuJJ2JjkJavza.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "2001-08-27", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 7.3, + "voteCount": 23, + "popularity": 4.0417 + }, + { + "id": 77532, + "title": "Woman", + "originalTitle": "Kadın", + "overview": "The story of mother Bahar, who carries the weight and love of two children in their hearts with enthusiasm in their hearts. Bahar, abandoned by her mother when she was eight years old, later lost her grandma and her father. When she thinks she is all alone, she meets Sarp, whom she delicately loves.", + "posterPath": "/z4eY2vftw6yKjfSTd5Z9ky89x36.jpg", + "backdropPath": "/87jtXEQrDGgRTbbYiDvqYWcOFWp.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-10-24", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 7.578, + "voteCount": 443, + "popularity": 4.0391 + }, + { + "id": 239005, + "title": "Seoul Busters", + "originalTitle": "강매강", + "overview": "Songwon Police Violent Crimes Unit 2 has the lowest arrest rate in the country. After their chief is demoted, the team is exiled to a closed daycare center. Enter Yubin, their new leader. Despite the team's initial distrust, Yubin and the team start to bond as they solve cases together.", + "posterPath": "/nYDvkvutYQNKj2lhQTavGzgUE6L.jpg", + "backdropPath": "/vas44Kp1BPca4ou2cBb4orAQ53F.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2024-09-11", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 8.412, + "voteCount": 17, + "popularity": 4.0379 + }, + { + "id": 4334, + "title": "Freakazoid!", + "originalTitle": "Freakazoid!", + "overview": "The adventures of Freakazoid, a manic, insane superhero who battles with an array of super villains.", + "posterPath": "/ig0pc2AhY5d3GEghcxEWwo9AUtg.jpg", + "backdropPath": "/t9owI1MGsFCIamNQmPkjUFh8b5T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1995-09-09", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 171, + "popularity": 4.0369 + }, + { + "id": 60888, + "title": "Young & Hungry", + "originalTitle": "Young & Hungry", + "overview": "Two worlds collide when Josh, a wealthy young tech entrepreneur, meets Gabi, a feisty young food blogger, looking to be his personal chef. Gabi is desperate for the job and must prove herself, mostly to Josh's aide, who prefers a famous chef for the job. When Josh enlists Gabi to prepare a romantic meal for him and his girlfriend, the dinner goes awry and Gabi finds herself in a very awkward position. With the help of her best friend Sofia and Josh's housekeeper, Gabi turns a difficult situation into an opportunity for employment and maybe even love. Gabi gets some much needed help and advice from Josh’s assistant and his housekeeper.", + "posterPath": "/iu5hmJaeTM0yrfM9azHFSjN0EIu.jpg", + "backdropPath": "/pTzgocsWDXy3Td72k3FMZXmTCuc.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2014-06-25", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 151, + "popularity": 4.0368 + }, + { + "id": 6782, + "title": "Pucca", + "originalTitle": "Pucca", + "overview": "\"Pucca\" is a TV series based on a Flash animation series published by Vooz Character Systems. It follows the trails and exploits of a South Korean girl named Pucca who is insanely in love with a prideful ninja named Garu. Meanwhile, Garu and Pucca help their town of Sooga Village out when evil ninjas attack, as well as diffuse a lot of the absurd situations that frequently plague the town. This show could best be described as a cleaned-up version of South Park meets Looney Tunes meets Naruto. There is some very subtly hidden adult humor; but most of the adult jokes would not go noticed by small children, who are the primary audience.", + "posterPath": "/xQjSUOEQTrCqDoBiEYIrNlajCD.jpg", + "backdropPath": "/nfAUOxd3qeZZpfPESIivZOyvije.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Kids" + ], + "releaseDate": "2006-09-18", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 8.186, + "voteCount": 591, + "popularity": 4.0355 + }, + { + "id": 240805, + "title": "Fatal Crossing", + "originalTitle": "Pigerne fra Englandsbåden", + "overview": "Nora Sand a journalist working as a foreign correspondent for a Danish newspaper, at the peak of her career she's accused of having had an affair with one of her sources in a big case. Nora gets suspended, travels home to Denmark.", + "posterPath": "/gnBHMfRu0fYe7sK55A1WFNOSmGr.jpg", + "backdropPath": "/55NbZHqLK79K7aAOzQUxoo6Izgl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2023-11-29", + "releaseYear": "2023", + "originalLanguage": "da", + "voteAverage": 7.1, + "voteCount": 10, + "popularity": 4.0325 + }, + { + "id": 112581, + "title": "The Rig", + "originalTitle": "The Rig", + "overview": "When the crew of the Kinloch Bravo find themselves cut off from all communication with the Scottish mainland by a mysterious fog, they must fight to find a way home whilst managing environmental pressures, mounting paranoia and rising tensions. But as the threat facing them reveals itself to be something beyond their wildest imagination, the divided crew must form an alliance to ensure survival.", + "posterPath": "/o8KxvfdpSVCP53d4S6a4DPHOqNh.jpg", + "backdropPath": "/bGMLZoRtfIY0OxtCOpZiwkUzeQl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-06", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.715, + "voteCount": 200, + "popularity": 4.0324 + }, + { + "id": 4579, + "title": "The Champions", + "originalTitle": "The Champions", + "overview": "The Champions is a British espionage/science fiction/occult detective fiction adventure series consisting of 30 episodes broadcast on the UK network ITV during 1968–1969, produced by Lew Grade's ITC Entertainment production company. The series was broadcast in the US on NBC, starting in summer 1968.", + "posterPath": "/93fLFB8HfKAhVKF968Dl03ITwOX.jpg", + "backdropPath": "/3uU2xfwDQzxmpOB0XIr3VuP0ZFF.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1968-09-25", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6.175, + "voteCount": 20, + "popularity": 4.0319 + }, + { + "id": 132559, + "title": "The Croods: Family Tree", + "originalTitle": "The Croods: Family Tree", + "overview": "Two very different families join forces to create a new community, an us-against-the-world, cave person co-op on the most amazing farm in the history of prehistory!", + "posterPath": "/c0x8dGn1eurgf2TxvLHsPBrJKks.jpg", + "backdropPath": "/5QKGJ4nEjAq4TSTvhJw5PrNcIbu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10759, + 35 + ], + "genres": [ + "Animation", + "Family", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2021-09-23", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 752, + "popularity": 4.0312 + }, + { + "id": 87773, + "title": "The Bay", + "originalTitle": "The Bay", + "overview": "Family Liaison Officer Lisa Armstrong becomes a little too emotionally involved with a case (to the point where she might compromise it) concerning a pair of missing Morecambe twins to whose distraught parents she is assigned.", + "posterPath": "/1ZbCq6t1aKssAhFOjvslUpt9W2x.jpg", + "backdropPath": "/4mMsczbC1Xhvsx1SjzozoTtImO1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2019-03-20", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 86, + "popularity": 4.0298 + }, + { + "id": 62082, + "title": "Junior League", + "originalTitle": "Молодёжка", + "overview": "In the town of Podolsk, The Bears hockey club hires a new coach, Sergei Makeyev, a former National Hockey League player, who sets out to get the club to the Junior Hockey League and make The Bears a successful team.", + "posterPath": "/iUiI4wBTto4qJQZMucM8fc3UeUR.jpg", + "backdropPath": "/fSYdsNleRLl0Sq1amnXcRxqDyLY.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ru", + "voteAverage": 7.2, + "voteCount": 25, + "popularity": 4.0255 + }, + { + "id": 7463, + "title": "The Best Sex Ever", + "originalTitle": "The Best Sex Ever", + "overview": "Veronica hosts a midnight radio show called \"The Best Sex Ever\". Each night \"after all the good girls and boys have gone to bed\", she invites listeners to call in and share their own personal erotic tale about \"the best sex you ever had\". In each episode Veronica suggests a theme for that night's show, and one caller's story is presented, with Veronica occasionally interjecting comments or questions.", + "posterPath": "/o1t2ZuJeZnyowW1OKX3G9NSNZmR.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-05-03", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 3.754, + "voteCount": 61, + "popularity": 4.0252 + }, + { + "id": 290160, + "title": "Marry My Husband: Japan", + "originalTitle": "私の夫と結婚して", + "overview": "Misa has been a supporting character all her life, blindly trusting her best friend and husband. When she discovers their affair, the betrayal results in her death. Waking up ten years in the past, Misa vows to become the main character of her own story. She plans to ruin her betrayers by making them marry each other, but after meeting her director at work, starts to consider who she truly is.", + "posterPath": "/mxBKb1DEqzhUUHh9EI1H7ZVErRD.jpg", + "backdropPath": "/z6Hsjm0kt5ajxPZOAY18TX8U5dn.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10765 + ], + "genres": [ + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-06-27", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.261, + "voteCount": 23, + "popularity": 4.0228 + }, + { + "id": 7448, + "title": "A Favorita", + "originalTitle": "A Favorita", + "overview": "Donatela and Flora, two friends who became rivals. One of them committed a homicide and pretends to be innocent. There are two versions for the same story. Who, after all, is telling the truth? Donatela or Flora?", + "posterPath": "/9P1bP4G6t8A3BCoscADJV2Rpsi1.jpg", + "backdropPath": "/fDBIVzxxtQ6jA0AindKKTkWEMq2.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 9648 + ], + "genres": [ + "Soap", + "Drama", + "Mystery" + ], + "releaseDate": "2008-06-02", + "releaseYear": "2008", + "originalLanguage": "pt", + "voteAverage": 7.8, + "voteCount": 36, + "popularity": 4.0213 + }, + { + "id": 71349, + "title": "Suspicious Partner", + "originalTitle": "수상한 파트너", + "overview": "Noh Ji Wook is a prosecutor in the Central District Prosecutors’ Office who ends up switching professions to a private attorney. He harbors a trauma stemming from an event in his childhood involving his parents and his first love. Eun Bong Hee, a Taekwondo athlete in her youth, is a prosecutor trainee who has become a murder suspect. Eun Bong Hee and Noh Ji Wook both find themselves being the focus of a killer.", + "posterPath": "/e5ytMZlkGlVWtxSoLypobMaqZEO.jpg", + "backdropPath": "/qzw3CA3AqrLsBa25XUjLLpkWrAk.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2017-05-10", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 7.852, + "voteCount": 152, + "popularity": 4.0202 + }, + { + "id": 6515, + "title": "Unhappily Ever After", + "originalTitle": "Unhappily Ever After", + "overview": "", + "posterPath": "/b0UUpXSoSWwvkZKFWcDGLQ2xHM5.jpg", + "backdropPath": "/sdvAYIcQ4l3bDfIxkB19Dw4tizx.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1995-01-11", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 36, + "popularity": 4.0198 + }, + { + "id": 96571, + "title": "Move to Heaven", + "originalTitle": "무브 투 헤븐: 나는 유품정리사입니다", + "overview": "Finding life in all that’s left behind, a detail-oriented trauma cleaner and his estranged uncle deliver untold stories of the departed to loved ones.", + "posterPath": "/gUvA20jcHABFPjYMIiZl5o9tWi3.jpg", + "backdropPath": "/tsdhmP9H7ZDveYDE0wkh90tjX3S.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2021-05-14", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 7.958, + "voteCount": 355, + "popularity": 4.0181 + }, + { + "id": 1618, + "title": "Justice League", + "originalTitle": "Justice League", + "overview": "The long-awaited rebirth of the greatest superhero team of all time: Batman, Superman, Wonder Woman, The Flash, Hawkgirl, Green Lantern, and Martian Manhunter.", + "posterPath": "/b6P4pAoEOHMzK429erFipH4b8kM.jpg", + "backdropPath": "/3UvUqgMROuu5CWYHu4yfxi4SZdk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-11-17", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 8.185, + "voteCount": 553, + "popularity": 4.0181 + }, + { + "id": 10738, + "title": "Family", + "originalTitle": "Family", + "overview": "The lives of the middle-class Lawrence family in Pasadena, California.", + "posterPath": "/iqk1mPSU7OtK3OI4GMItjzWcZx6.jpg", + "backdropPath": "/p8VRVSJc06aroATTiK40q3oyIfS.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "1976-03-09", + "releaseYear": "1976", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 15, + "popularity": 4.0162 + }, + { + "id": 243403, + "title": "Ready, Set, Love", + "originalTitle": "เกมชนคนโสด", + "overview": "In a world grappling with a dwindling male population, an unassuming woman becomes a contender in a government-sponsored dating competition.", + "posterPath": "/lQL1O2rBDbkXTFPyWSopCJs8l4X.jpg", + "backdropPath": "/6k0Xo6HmRVsbqACKB9hU4TAocxY.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2024-02-15", + "releaseYear": "2024", + "originalLanguage": "th", + "voteAverage": 7.7, + "voteCount": 49, + "popularity": 4.0161 + }, + { + "id": 102904, + "title": "Sweet Magnolias", + "originalTitle": "Sweet Magnolias", + "overview": "Lifelong friends Maddie, Helen and Dana Sue lift each other up as they juggle relationships, family and careers in the small Southern town of Serenity.", + "posterPath": "/n1WDSFOnCCg3cdHHGBywZtYIzf9.jpg", + "backdropPath": "/wt60Q4doM2vrubiCsutwaeWncLL.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-05-19", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.766, + "voteCount": 252, + "popularity": 4.015 + }, + { + "id": 4557, + "title": "Lovejoy", + "originalTitle": "Lovejoy", + "overview": "The adventures of the eponymous Lovejoy, a likeable but roguish antiques dealer based in East Anglia. Within the trade, he has a reputation as a “divvie”, a person with an almost supernatural powers for recognising exceptional items as well as distinguishing genuine antique from clever fakes or forgeries.", + "posterPath": "/d433J9jLaOI3T99mPIudkW6b9RO.jpg", + "backdropPath": "/qLarafHjS9IPRgqVGU97prD9x3d.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 9648 + ], + "genres": [ + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "1986-01-10", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 51, + "popularity": 4.0143 + }, + { + "id": 102316, + "title": "Love Life", + "originalTitle": "Love Life", + "overview": "A romantic comedy anthology series which follows a different protagonist each season on the journey from first love to last love, with each half-hour episode chronicling one of their relationships.", + "posterPath": "/yIlbPxb7KC4k112v8vattKwLsN7.jpg", + "backdropPath": "/4FcM7aI4IbROqlMEcp70fSl57W5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-05-27", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 99, + "popularity": 4.014 + }, + { + "id": 39362, + "title": "Alphas", + "originalTitle": "Alphas", + "overview": "Five ordinary people with superhuman physical and mental abilities are brought together to form one extraordinary team of Alphas. Operating within the U.S. Department of Defense, the team investigates cases that point to others with Alpha abilities.", + "posterPath": "/z4pjaJPojPTue3tGcualzwQqo1Y.jpg", + "backdropPath": "/mLllZDfbpfPn78BT6ip7MNuC6oA.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2011-07-11", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 6.781, + "voteCount": 324, + "popularity": 4.0138 + }, + { + "id": 10331, + "title": "Spawn", + "originalTitle": "Spawn", + "overview": "Todd McFarlane's Spawn is an animated television series which aired on HBO from 1997 through 1999. It is also released on DVD as a film series. It is based on the Spawn comic series from Image Comics, and was nominated for and won an Emmy in 1999 for Outstanding Animation Program. An unrelated series titled Spawn: The Animation is in production since 2009, with Keith David reprising his role as the titular character. Like the comic book, the series features graphic violence, sexual scenes, and extensive use of profanity. Todd McFarlane's Spawn was ranked 5th on IGN's list of The Greatest Comic Book Cartoons Of All Time.", + "posterPath": "/5cVPGuo2wiWr1JdJRNhtW9jAja8.jpg", + "backdropPath": "/vOwzPlX7u7CARvugdio0BaCJvfv.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-05-16", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 288, + "popularity": 4.0138 + }, + { + "id": 84154, + "title": "3Below: Tales of Arcadia", + "originalTitle": "3Below: Tales of Arcadia", + "overview": "After crash-landing on Earth, two royal teen aliens on the run struggle to blend in with humans as they evade intergalactic bounty hunters.", + "posterPath": "/eWoplw8QJhSGDnhyYCrs9OugdTj.jpg", + "backdropPath": "/smryg5G3vkCImoQsPYrBSByOkOt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35, + 10765 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-12-21", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.47, + "voteCount": 133, + "popularity": 4.0136 + }, + { + "id": 31936, + "title": "Melissa & Joey", + "originalTitle": "Melissa & Joey", + "overview": "Mel is a local politician from a political family. When a family scandal leaves her niece, Lennox, and nephew, Ryder, without their parents, Mel takes them in. She hires Joe to become the family's male nanny, or \"manny,\" after a Ponzi scheme leaves him broke.", + "posterPath": "/fTl1DSKH2VP5o70b44wsYJLn1xP.jpg", + "backdropPath": "/nq9n6uh7J6lHhb5ttgrn4qD4Ht2.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "2010-08-17", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.846, + "voteCount": 114, + "popularity": 4.0136 + }, + { + "id": 22104, + "title": "Touch", + "originalTitle": "タッチ", + "overview": "Twins Kazuya and Tatsuya, and their neighbor Minami have played together since they were children and built an unbreakable bond. But with puberty, the twins realized something: Minami is a girl, and three is a crowd.\n\nAs the trio tries to preserve their relationship, Kazuya's pledge to make Minami's dream come true by taking her to Koshien with his baseball pitching skills makes the slackerish Tatsuya wonder about himself, and his own goals. But Minami has another dream she wants fulfilled, and as the twins continue to push themselves, with Minami in the middle, a life-changing tragedy leads one twin down a path he once never would've considered...", + "posterPath": "/zPwmMiIOZvUQXeSAf8vnKdfguYd.jpg", + "backdropPath": "/j5K8sZEb0vVGlgBVauGKypgEine.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1985-03-24", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 9.238, + "voteCount": 21, + "popularity": 4.0134 + }, + { + "id": 81007, + "title": "Sparta", + "originalTitle": "Sпарта", + "overview": "If you ever asked yourself what if there is any place where all your desires could suddenly come true, you should play «Sparta». «Sparta» is a game without any rules. Experiencing the game will change your life by the reason of virtual world crossing the borders and becoming the part of our daily routine.", + "posterPath": "/rkr1UIvkfAmx2MCudh3aBXURVUV.jpg", + "backdropPath": "/hCA3TJBAAYNWQ7JqdWg0Z3CQHX5.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2018-07-09", + "releaseYear": "2018", + "originalLanguage": "ru", + "voteAverage": 6.6, + "voteCount": 16, + "popularity": 4.0124 + }, + { + "id": 78397, + "title": "Porus", + "originalTitle": "पोरस", + "overview": "The story of Indian warrior Porus and his life especially the Battle of the Hydaspes with the Great Alexander.", + "posterPath": "/fvVisAxoxK11f4wdYla7bzfaVUQ.jpg", + "backdropPath": "/pU8J0pVnKGd0I65HmMdBQ0aTvGK.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10751 + ], + "genres": [ + "Action & Adventure", + "Family" + ], + "releaseDate": "2017-11-27", + "releaseYear": "2017", + "originalLanguage": "hi", + "voteAverage": 8.615, + "voteCount": 13, + "popularity": 4.0115 + }, + { + "id": 218631, + "title": "Gangnam B-Side", + "originalTitle": "강남 비-사이드", + "overview": "When Jaehee, a top call girl at a club in Gangnam, goes missing, Detective Kang Dongwoo returns to crack the case. Prosecutor Min Seojin aims to rise in rank, while the notorious pimp, Yoon Gilho becomes a prime suspect. They unravel a web of secrets and connections behind the case.", + "posterPath": "/4aeXrl8cSzUt8FHjqsHyoyZUox3.jpg", + "backdropPath": "/is55WKSiFpTtGLLqm0hMftiefwW.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2024-11-05", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.444, + "voteCount": 62, + "popularity": 4.0113 + }, + { + "id": 59134, + "title": "The Doctor Blake Mysteries", + "originalTitle": "The Doctor Blake Mysteries", + "overview": "Dr Lucien Blake left Ballarat as a young man. But now he finds himself returning to take over not only his dead father's medical practice, but also his on-call role as the town's police surgeon, only to find change is afoot, nothing is sacred, and no one is safe.", + "posterPath": "/nQ9uCfDu12jLxMU3ea618LMvMyX.jpg", + "backdropPath": "/xlK27IlLQ2K5InXSLkgl4mJUbCx.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2013-02-01", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 48, + "popularity": 4.0101 + }, + { + "id": 27318, + "title": "Breadwinners", + "originalTitle": "Breadwinners", + "overview": "Two ducks fly around in a rocket-powered van, delivering bread to other ducks in Pondgea.", + "posterPath": "/eOWAf4jeNPQX2JLMdJ3T1ad1kqR.jpg", + "backdropPath": "/gxPye7hxVo20mKxohSO3o7YlpUX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-02-17", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 4.4, + "voteCount": 45, + "popularity": 4.0095 + }, + { + "id": 985, + "title": "Wacky Races", + "originalTitle": "Wacky Races", + "overview": "Wacky Races is an animated television series produced by Hanna-Barbera that originally aired in 1968. The show is a parody of traditional car races, featuring a variety of eccentric characters and their outlandish vehicles, all racing across different terrains in a madcap competition for first place.\n\nThe series is centered around a group of 11 racers, each with their own unique vehicle and distinct personality. The main characters include Dick Dastardly and his dog Muttley, who are always trying to cheat and sabotage the other competitors, although they never succeed. Other notable racers include Penelope Pitstop, the glamorous but tough driver; the adventurous Red Max; and the lovable duo, the Slag Brothers, who drive a massive, rock-like car.", + "posterPath": "/yHeolC3qvELoeq8poh7BsMpBKd9.jpg", + "backdropPath": "/pfwENDuQ5cjD5ANgvMkgS9MRHcB.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35, + 10762 + ], + "genres": [ + "Family", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1968-09-14", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 7.314, + "voteCount": 228, + "popularity": 4.0094 + }, + { + "id": 81357, + "title": "Dead to Me", + "originalTitle": "Dead to Me", + "overview": "A hotheaded widow searching for the hit-and-run driver who mowed down her husband befriends an eccentric optimist who isn't quite what she seems.", + "posterPath": "/mAj18PHeACxqcrEus4pD8pksRmB.jpg", + "backdropPath": "/j4TXQ7OJsLx1Ba6z8XA7is0DcRZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "2019-05-03", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.297, + "voteCount": 580, + "popularity": 4.0093 + }, + { + "id": 138395, + "title": "Un Professore", + "originalTitle": "Un Professore", + "overview": "", + "posterPath": "/g1Z60kHQ8NsryXtsrXfEysTAQs2.jpg", + "backdropPath": "/rMJ4gcUXWYnTuniuaMhsYMXkzx4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "2021-11-11", + "releaseYear": "2021", + "originalLanguage": "it", + "voteAverage": 7.7, + "voteCount": 52, + "popularity": 4.0086 + }, + { + "id": 88033, + "title": "Les Guignols de l'info", + "originalTitle": "Les Guignols de l'info", + "overview": "", + "posterPath": "/9u7oDri9TvJXffoe6cyD2EDkQi2.jpg", + "backdropPath": "/l418EclewHc7BWxR00fg4CwBm2m.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 35, + 10767, + 10764 + ], + "genres": [ + "News", + "Comedy", + "Talk", + "Reality" + ], + "releaseDate": "1988-08-29", + "releaseYear": "1988", + "originalLanguage": "fr", + "voteAverage": 7.9, + "voteCount": 19, + "popularity": 4.0072 + }, + { + "id": 84970, + "title": "Desus & Mero", + "originalTitle": "Desus & Mero", + "overview": "The first ever weekly late-night talk show on Showtime features popular TV and podcast personalities Desus and Mero speaking off the cuff and chatting with guests at the intersection of pop culture, sports, music, politics and more.", + "posterPath": "/8dORUJPK1JSprVK8vkfejtZ2HiQ.jpg", + "backdropPath": "/o5RRMtqHpuAG5DE9GJbhTegd3OJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10767, + 35 + ], + "genres": [ + "Talk", + "Comedy" + ], + "releaseDate": "2019-02-21", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 5.1, + "voteCount": 12, + "popularity": 4.0047 + }, + { + "id": 37508, + "title": "Pretty Cure", + "originalTitle": "ふたりはプリキュア", + "overview": "Nagisa Misumi and Honoka Yukishiro couldn't be more different. Nagisa is sporty and Honoka bookish, and while they attend the same school, they have very little in common - until one day, a shower of shooting stars brings two very unlikely visitors into their lives: Mepple and Mipple, refugees from the Garden of Light, which has been conquered by Darkness. Endowed with new and startling powers, Nagisa and Honoka become Cure Black and Cure White, the legendary warriors of light - together, they are Pretty Cure.", + "posterPath": "/6mpebL9rM6Dobd0xy6Bwlhj9WYt.jpg", + "backdropPath": "/49KwlG377i8sBNBAZ8k3PZfkBOj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-02-01", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 25, + "popularity": 4.0024 + }, + { + "id": 6353, + "title": "The Story of Tracy Beaker", + "originalTitle": "The Story of Tracy Beaker", + "overview": "Tracy Beaker is a 10-year-old girl who has been placed in a children's home. Tracy makes new friends along the way and causes mischief wherever she goes.", + "posterPath": "/iggQkR7r6hfbaJwheZQIixHx9dK.jpg", + "backdropPath": "/dIL6DoQIxtDZN5FlSkFoSSKmlSm.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10751, + 16 + ], + "genres": [ + "Kids", + "Family", + "Animation" + ], + "releaseDate": "2002-01-08", + "releaseYear": "2002", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 29, + "popularity": 4.0017 + }, + { + "id": 93842, + "title": "Heirs of the Night", + "originalTitle": "Heirs of the Night", + "overview": "1889: the five remaining vampire clans in Europe are training to survive. In their midst is 14-year-old Alisa who has the power to choose between eternal life as a vampire or for all vampires to live as humans.", + "posterPath": "/mkD3oTxYfsOYThtTM6o5HQom1Ar.jpg", + "backdropPath": "/7cBRwe7eK812mhhWso4QBgnSg5y.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2019-10-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 36, + "popularity": 4.0007 + }, + { + "id": 67697, + "title": "Search Party", + "originalTitle": "Search Party", + "overview": "A dark comedy about four self-absorbed twenty-somethings who become entangled in an ominous mystery when a former college acquaintance suddenly disappears.", + "posterPath": "/8ldHjc3Hx29NKK0bfgaYZkIwQWN.jpg", + "backdropPath": "/kK2bP2ZWF2up3Y2uzBJupHCaMos.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 80 + ], + "genres": [ + "Comedy", + "Drama", + "Crime" + ], + "releaseDate": "2016-11-21", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 130, + "popularity": 4.0006 + }, + { + "id": 80056, + "title": "Fancy Nancy", + "originalTitle": "Fancy Nancy", + "overview": "Meet Nancy Clancy, a high-spirited young girl whose imagination and enthusiasm for all that is exquisite transforms the ordinary into the extraordinary – from her vast vocabulary to her creative and elaborate attire.", + "posterPath": "/2iNKvpHmh5IWlkycIGmY6yr1q7H.jpg", + "backdropPath": "/fIiiXIuFc8CRk12gh1Q7pJaZrpc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2018-07-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 6.773, + "voteCount": 22, + "popularity": 3.999 + }, + { + "id": 247441, + "title": "Testament: The Story of Moses", + "originalTitle": "Testament: The Story of Moses", + "overview": "This illuminating docudrama series chronicles Moses' remarkable life as a prince, prophet and more with insights from theologians and historians.", + "posterPath": "/rRMIvf9OismdaKSuyUoo3mQa3iD.jpg", + "backdropPath": "/yGkKI766rRvPiJLwEJ9MMRE4Trg.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 18, + 10765 + ], + "genres": [ + "Documentary", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-03-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.241, + "voteCount": 58, + "popularity": 3.9969 + }, + { + "id": 63451, + "title": "Naked and Afraid XL", + "originalTitle": "Naked and Afraid XL", + "overview": "A group of the best survival experts in the world take on an un-survivable situation: 40 days. 40 nights. No food, water or clothes. To survive they'll need to master the environment, pushing far beyond the breaking point. Will even one be able to finish?", + "posterPath": "/6cdVgcmrrC0RKNJ8U3EV8zuL2qC.jpg", + "backdropPath": "/qkfC7uVEQ5RiPsGmNhFQ0uO1LK1.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2015-11-08", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 46, + "popularity": 3.9948 + }, + { + "id": 10494, + "title": "Nowhere Man", + "originalTitle": "Nowhere Man", + "overview": "Thomas Veil is a documentary photographer who, in the course of one evening, seemingly has his whole existence erased...", + "posterPath": "/bMQ0IDjUs7tLf9XefBQGZ7AkvpP.jpg", + "backdropPath": "/kbFYiU57nqBvPTkvuDMMuQ68Esx.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18, + 10765 + ], + "genres": [ + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-08-28", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 33, + "popularity": 3.9942 + }, + { + "id": 218351, + "title": "The Gold", + "originalTitle": "The Gold", + "overview": "On 26 November 1983, six armed men break into the Brink's-Mat security depot, stumbling across gold bullion worth £26m.", + "posterPath": "/9JY9Gza4HQhXjIPXg9uSy8FeiSM.jpg", + "backdropPath": "/rp0f5vHNiAbe5EEIaw7XhJHQ7og.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2023-02-12", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 60, + "popularity": 3.9932 + }, + { + "id": 70637, + "title": "Akashic Records of Bastard Magic Instructor", + "originalTitle": "ロクでなし魔術講師と禁忌教典", + "overview": "The Alzano Imperial Magic Academy is located in the southern part of the Alzano Empire and is among most prominent magic schools in the world, where students can learn the highest forms of magic. All those who strive to learn magic dream of studying at this academy, and its students as well as its teachers are proud to be a part of its 400-year history. Glenn Radars is a new instructor who has suddenly been appointed to teach part-time at this highly respected academy. The previously unheard-of lessons of this man known as a good-for-nothing bastard are about to begin.", + "posterPath": "/8tfinAIY4SJu6hqdT1AyQBVkTLj.jpg", + "backdropPath": "/raZ0xTSdRhZIMQYChKdhUMyWMAa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.385, + "voteCount": 588, + "popularity": 3.9915 + }, + { + "id": 14544, + "title": "Koffee with Karan", + "originalTitle": "Koffee with Karan", + "overview": "Celebrity host Karan Johar gets up close and personal with various Bollywood personalities and discusses their major career milestones.", + "posterPath": "/xyaDqO917xzA0iQwtdMPHC5oJVV.jpg", + "backdropPath": "/m3jYKxdsfyDVS0ZU16PsGEspo26.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2004-11-19", + "releaseYear": "2004", + "originalLanguage": "hi", + "voteAverage": 5.7, + "voteCount": 21, + "popularity": 3.9915 + }, + { + "id": 103992, + "title": "A Teacher", + "originalTitle": "A Teacher", + "overview": "Claire Wilson, a young teacher at a suburban Texas high school, begins an affair with her student, Eric Walker. But their relationship accelerates faster than anticipated and the permanent damage becomes impossible to ignore.", + "posterPath": "/rH2eEuThzRQh87Uxz6SY3BuVNBD.jpg", + "backdropPath": "/62PAfgr3qoAIFv31secrYeeApKv.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2020-11-10", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 369, + "popularity": 3.9878 + }, + { + "id": 65945, + "title": "Kabaneri of the Iron Fortress", + "originalTitle": "甲鉄城のカバネリ", + "overview": "In the midst of an industrial revolution, the people of Hinomoto fight hordes of undead creatures, known as Kabane, using powerful armored trains.", + "posterPath": "/a9lY3DCLU3DWvUshho6hAX2hKKh.jpg", + "backdropPath": "/rGpgCQbdWvAThLKASFlFWWPdj3r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.858, + "voteCount": 179, + "popularity": 3.9874 + }, + { + "id": 23521, + "title": "Kids' Choice Awards", + "originalTitle": "Kids' Choice Awards", + "overview": "Honoring the year's biggest in television, film, music, and sports as voted by viewers worldwide of Nickelodeon networks. Winners receive a hollow orange blimp figurine which also functions as a kaleidoscope.", + "posterPath": "/aXmN5IYM0zWtfe8MD0WNMZlHjeE.jpg", + "backdropPath": "/fE4vTc4IAneVYFvKSoSL3Th91S1.jpg", + "mediaType": "tv", + "genreIds": [], + "genres": [], + "releaseDate": "1987-01-18", + "releaseYear": "1987", + "originalLanguage": "en", + "voteAverage": 8.7, + "voteCount": 19, + "popularity": 3.9869 + }, + { + "id": 93490, + "title": "My Country: The New Age", + "originalTitle": "나의 나라", + "overview": "Set during the turbulent time of the fall of Goryeo and the founding of Joseon, two former friends face-off against one another over a woman and the future shape of the nation.", + "posterPath": "/dU6JSuUSy2ZkWdlMUKzkJjhqtKD.jpg", + "backdropPath": "/htYLE8PeFSSjtrk1uUnScA6SJua.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2019-10-04", + "releaseYear": "2019", + "originalLanguage": "ko", + "voteAverage": 6.9, + "voteCount": 56, + "popularity": 3.9865 + }, + { + "id": 132117, + "title": "Farzi", + "originalTitle": "फर्जी", + "overview": "Sunny, a brilliant small-time artist is catapulted into the high-stakes world of counterfeiting when he creates the perfect fake currency note, even as Michael, a fiery, unorthodox task force officer wants to rid the country of the counterfeiting menace. In this thrilling cat-and-mouse race, losing is not an option!", + "posterPath": "/cTS86RwEBIDgCgUmjWQTSoPsK6p.jpg", + "backdropPath": "/rGkjtv6UdL1ysDmZuBjbNl3PAA1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2023-02-10", + "releaseYear": "2023", + "originalLanguage": "hi", + "voteAverage": 7.8, + "voteCount": 145, + "popularity": 3.9854 + }, + { + "id": 125909, + "title": "Batman: Caped Crusader", + "originalTitle": "Batman: Caped Crusader", + "overview": "Welcome to Gotham City, where the corrupt outnumber the good, criminals run rampant and law-abiding citizens live in a constant state of fear. Forged in the fire of tragedy, wealthy socialite Bruce Wayne becomes something both more and less than human—the Batman. His one-man crusade for justice attracts unexpected allies within the GCPD and City Hall, but his heroic actions spawn deadly, unforeseen ramifications.", + "posterPath": "/imuZQcnPNKNygPw28TESUq4tNsb.jpg", + "backdropPath": "/vTqkpDUe1DUUPcHDpcf0RT0gIQ0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Crime", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2024-08-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.403, + "voteCount": 221, + "popularity": 3.9851 + }, + { + "id": 86823, + "title": "Miru Tights", + "originalTitle": "みるタイツ", + "overview": "Inspired by mangaka Yomu’s fascination with women’s legwear presented in his art book “Yomu Tights”, “Miru Tights” takes us into a world of sheer tights and beautiful women’s legs. The bright Homi Moemi, the serious and ambitious Ren Aikawa, and the cheerful, albeit somewhat naïve Yua Nakabeni have been friends for a long time and of course, their tights are part of their everyday attire! While Homi likes to jump into the biggest puddles she can find on rainy days, and Yua devotes herself completely to cosplay – much to the delight of her numerous followers on Twitter – Ren is more serious and works at a small café in her free time.", + "posterPath": "/hvFKwK0g4FGXXMllfjZ28LWBcHA.jpg", + "backdropPath": "/fF9CNg5qeBb900qTM7Z9k0x6Pev.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-05-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 36, + "popularity": 3.9848 + }, + { + "id": 2589, + "title": "Head of the Class", + "originalTitle": "Head of the Class", + "overview": "Head of the Class is an American sitcom that ran from 1986 to 1991 on the ABC television network.\n\nThe series follows a group of gifted students in the Individualized Honors Program at the fictional Monroe High School in Manhattan, and their history teacher Charlie Moore. The program was ostensibly a vehicle for Hesseman, best known for his role as radio DJ Dr. Johnny Fever in the sitcom WKRP in Cincinnati. Hesseman left Head of the Class in 1990 and was replaced by Billy Connolly as teacher Billy MacGregor for the final season. After the series ended, Connolly appeared in a short-lived spin-off titled Billy.\n\nThe series was created and executive produced by Rich Eustis and Michael Elias. Rich Eustis had previously worked as a New York City substitute teacher while hoping to become an actor.", + "posterPath": "/hHa7u2ySBgRtUGpxAkd1Maf6ws6.jpg", + "backdropPath": "/rLy3MQrbJO3eKMs0TsyKtLz15K7.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1986-09-17", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 34, + "popularity": 3.9848 + }, + { + "id": 124920, + "title": "Rugrats", + "originalTitle": "Rugrats", + "overview": "A reinvention of the beloved 90s cartoon, Rugrats follows a group of adventurous babies as they discover the big world around them. Lead by Tommy Pickles, this toddler crew explores the world from their pint-sized and wildly imaginative perspective.", + "posterPath": "/bk5bqkQVYC32lozZO6Z0ZLw32jv.jpg", + "backdropPath": "/nAboNRbDqCHapI0Gn7eHMmtWH5h.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2021-05-27", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 132, + "popularity": 3.9846 + }, + { + "id": 42981, + "title": "HeartCatch PreCure!", + "originalTitle": "ハートキャッチプリキュア!", + "overview": "Tsubomi Hanasaki is a girl in the second grade of middle school who likes flowers and plants. One day she experiences a weird dream. In that dream, a large blooming tree appears. Suddenly, it loses all of its flowers and 2 fairies appear. A few days later after Tsubomi has transferred to Myoudou Academy, suddenly the fairies from the dream appear before her and plead to Tsubomi to become the legendary warrior Pretty Cure, and protect the Heart Tree. However, Tsubomi declines as she doesn't think that she would be able to do that. However, a mysterious enemy suddenly strikes and steals the Heart Flower of her classmate, Erika Kurumi. Now she doesn't have a choice. To retrieve Erika's Heart Flower, she has to transform into a Pretty Cure and fight. Working up the courage, Tsubomi turns into Cure Blossom and a new chapter of Pretty Cure begins!", + "posterPath": "/7WtUvsp45AJXRsitHbZdGmDqeJv.jpg", + "backdropPath": "/4RqKpKKGuBXDp28LGYeUbST92yM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Family", + "Kids" + ], + "releaseDate": "2010-02-07", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 10, + "popularity": 3.9837 + }, + { + "id": 157732, + "title": "Lawmen: Bass Reeves", + "originalTitle": "Lawmen: Bass Reeves", + "overview": "The story of Bass Reeves, the legendary lawman of the wild West, is brought to life. Reeves worked in the post-Reconstruction era as a federal peace officer in the Indian Territory, capturing over 3,000 of the most dangerous criminals without ever being wounded—and is believed to be the inspiration for The Lone Ranger.", + "posterPath": "/94OpFcIZ3ZExqyJgrYafo41tZSt.jpg", + "backdropPath": "/KwKRSJ1bSES8hORdQQn34QwH3V.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-11-05", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.17, + "voteCount": 147, + "popularity": 3.9814 + }, + { + "id": 4899, + "title": "I Spy", + "originalTitle": "I Spy", + "overview": "A pair of intelligence agents posing as a tennis pro and his coach go on secret missions around the world.", + "posterPath": "/jJBy1DabmJriKJ0a3Xzl79IAvus.jpg", + "backdropPath": "/vQKT7B7jCahjjL45Pjq9nI5x716.jpg", + "mediaType": "tv", + "genreIds": [ + 10759 + ], + "genres": [ + "Action & Adventure" + ], + "releaseDate": "1965-09-15", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 6.45, + "voteCount": 30, + "popularity": 3.9803 + }, + { + "id": 62601, + "title": "Rin-ne", + "originalTitle": "境界のRINNE", + "overview": "As a child Sakura Mamiya mysteriously disappeared in the woods behind her grandma's home. She returned whole and healthy, but since then she has had the power to see ghosts. Now a teenager, she just wishes the ghosts would leave her alone! At school, the desk next to Sakura's has been empty since the start of the school year, then one day her always-absent classmate shows up, and he's far more than what he seems!", + "posterPath": "/aWTAIftIb2pEnOPyXRDgpscJOKK.jpg", + "backdropPath": "/3fBRFTy6qKksHhJt9DzKJMmlh4w.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10749 + ], + "genres": [ + "Comedy", + "Animation", + "Romance" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 12, + "popularity": 3.98 + }, + { + "id": 39148, + "title": "Made in Chelsea", + "originalTitle": "Made in Chelsea", + "overview": "Reality series following the lives, loves and awks of SW3's bright young things.", + "posterPath": "/99xPXLPqKHcNRYq3fCU7GkHQyQI.jpg", + "backdropPath": "/4Xx7wdmv8sWAPyTCST2OkWokaT0.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 18 + ], + "genres": [ + "Reality", + "Drama" + ], + "releaseDate": "2011-05-09", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.682, + "voteCount": 22, + "popularity": 3.9795 + }, + { + "id": 46056, + "title": "heute-show", + "originalTitle": "heute-show", + "overview": "Oliver Welke and his team report on political topics as well as international news giving them their own satirical, comedic twist.", + "posterPath": "/y7SD3fDHBdhEyeXorsXVM5RKU4K.jpg", + "backdropPath": "/8xipQC0RfaMFsflRdVlIozAXlX7.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10763 + ], + "genres": [ + "Comedy", + "News" + ], + "releaseDate": "2009-09-08", + "releaseYear": "2009", + "originalLanguage": "de", + "voteAverage": 7.024, + "voteCount": 21, + "popularity": 3.979 + }, + { + "id": 71377, + "title": "The Mr. Peabody & Sherman Show", + "originalTitle": "The Mr. Peabody & Sherman Show", + "overview": "The world's smartest dog and his boy host a zany late-night comedy show from a swanky penthouse, with time-traveling historical figures and a live audience.", + "posterPath": "/gC8PDx7tfbXS9BqxBgj0YXKDIoW.jpg", + "backdropPath": "/3gurUoTME1Sa495LaLNJyN7T3AN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2015-10-09", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 19, + "popularity": 3.9779 + }, + { + "id": 225, + "title": "Sharpe", + "originalTitle": "Sharpe", + "overview": "Sharpe is a British series of television dramas starring Sean Bean as Richard Sharpe, a fictional British soldier in the Napoleonic Wars. Sharpe is the hero of a number of novels by Bernard Cornwell; most, though not all, of the episodes are based on the books. Produced by Celtic Films and Picture Palace Films for the ITV network, the series was shot mainly in Turkey and the Crimea, although some filming was also done in England, Spain and Portugal.\n\nThe series originally ran from 1993 to 1997. In 2004, as part of ITV's new set of drama, ITV announced that it intended to produce new episodes of Sharpe, in co-production with BBC America, loosely based on his time in India, with Sean Bean continuing his role as Sharpe. Sharpe's Challenge is a two-part adventure; part one premiered on ITV on 23 April 2006, with part two being shown the following night. With more gore than earlier episodes, the show was broadcast by BBC America in September 2006.", + "posterPath": "/adoq3P4qCeDquGXjtcwDDXECESH.jpg", + "backdropPath": "/64TCdZjKoFiJDmGg6S8XBzLgOgt.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 10759 + ], + "genres": [ + "War & Politics", + "Action & Adventure" + ], + "releaseDate": "1993-05-05", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 34, + "popularity": 3.9778 + }, + { + "id": 101352, + "title": "Panchayat", + "originalTitle": "पंचायत", + "overview": "Panchayat is a comedy-drama, which captures the journey of an engineering graduate Abhishek, who for lack of a better job option joins as secretary of a panchayat office in a remote village of Uttar Pradesh. Stuck between crazy villagers and a difficult village lifestyle Abhishek starts his job with the sole motivation of getting out of there as soon as possible, for which he even prepares for CAT.", + "posterPath": "/cPPhduQk1eX0MAE2JDaQRh3UZB5.jpg", + "backdropPath": "/iZ8EtGAqKWZdRJPzWfFseNfVxjh.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2020-03-05", + "releaseYear": "2020", + "originalLanguage": "hi", + "voteAverage": 8.188, + "voteCount": 120, + "popularity": 3.9772 + }, + { + "id": 5221, + "title": "Amen", + "originalTitle": "Amen", + "overview": "Amen is an American television sitcom produced by Carson Productions that ran from September 27, 1986 to May 11, 1991 on NBC. Set in Sherman Hemsley's real-life hometown of Philadelphia, Amen stars Hemsley as the deacon of a church and was part of a wave of successful sitcoms on NBC in the 1980s which featured entirely or almost-entirely black casts. Others included The Cosby Show, A Different World, and 227.", + "posterPath": "/apEoBrwwcRGrjE3I4B7uAQheRjQ.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1986-09-27", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 17, + "popularity": 3.9771 + }, + { + "id": 216089, + "title": "Fellow Travelers", + "originalTitle": "Fellow Travelers", + "overview": "A chronicle of a decades-long volatile romance between two men — from their first meeting during the height of the 1950s Lavender Scare to the AIDS crises of the 1980s.", + "posterPath": "/7d5MW2YoWDEr2MHXIdtfVzwt903.jpg", + "backdropPath": "/sKLX4lw29lg7Zw678RRtMQwuWa5.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-10-29", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.335, + "voteCount": 170, + "popularity": 3.9764 + }, + { + "id": 20407, + "title": "Chuggington", + "originalTitle": "Chuggington", + "overview": "Koko, Brewster and Wilson are three young, adventurous trainee \"chuggers\", learning about working on the railway in the town of Chuggington, with the help of the railway controller, Vee, the older engines, and their human friends.", + "posterPath": "/7LsJcmPIHmbpbO1NceqPPRbSfwL.jpg", + "backdropPath": "/5jZagQcJqhr28VFd1zSI7cYaYyq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2008-09-29", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 6.733, + "voteCount": 30, + "popularity": 3.9764 + }, + { + "id": 12143, + "title": "Azumanga Daioh", + "originalTitle": "あずまんが大王 THE ANIMATION", + "overview": "Ten year old child prodigy, Chiyo Mihama, is finding it tough fitting in at high school with the girls five years her elder: Osaka (dimwitted with a weird take on the world), Tomo (a powder keg that goes off at a moment’s notice), Kagura (the competitive athlete of the bunch), Yomi (the hothead), and Sakaki (timid and obsessed with a love of animals that isn’t reciprocated). Together with their teacher, they navigate the rough waters and fun times of high school.", + "posterPath": "/rvKqdJUmTjx99sOapCrTjIvwYP2.jpg", + "backdropPath": "/pJjSRchPAIpk1f9JsVlkLKx1oXj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2002-04-08", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 102, + "popularity": 3.9758 + }, + { + "id": 12409, + "title": "Star Academy", + "originalTitle": "Star Academy", + "overview": "Star Academy is a French reality television show produced by the Dutch company Endemol. It consists of a contest of young singers. It spawned an equally successful show in Quebec called Star Académie. It is broadcast on TF1. At the end of each season, selected contestants would go on tour around France, Morocco, Switzerland, Belgium, Tunisia, and other French-speaking countries.", + "posterPath": "/26qS8VmB7PgtkkBuA0J20nmTish.jpg", + "backdropPath": "/ugcdRKcOyUMAr9hAsL058cAX2vj.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2001-10-20", + "releaseYear": "2001", + "originalLanguage": "fr", + "voteAverage": 5.667, + "voteCount": 15, + "popularity": 3.9755 + }, + { + "id": 64099, + "title": "War and Peace", + "originalTitle": "War and Peace", + "overview": "The love story of young Countess Natasha Rostova and Count Pierre Bezukhov is interwoven with the Great Patriotic War of 1812 against Napoleon's invading army.", + "posterPath": "/e9uqJMuJXTlqgHrzmMjzhUsw7nI.jpg", + "backdropPath": "/dRz83kCWj4yu8SP7AbSzyvUO7rK.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-01-03", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 228, + "popularity": 3.9753 + }, + { + "id": 65566, + "title": "Intersection", + "originalTitle": "Kördüğüm", + "overview": "Naz who is a paediatrician loses her baby during pregnancy. Even though her husband wants another baby, she refuses to go through the same thing all over again. She goes to Italy for a conference and meets Ali Nejat there.", + "posterPath": "/6MmpJfOMVnxCseIqZcnc2oC0XM2.jpg", + "backdropPath": "/jL74f0C0ayNaICVCRsrBEydtmuy.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2016-01-07", + "releaseYear": "2016", + "originalLanguage": "tr", + "voteAverage": 5.8, + "voteCount": 35, + "popularity": 3.9747 + }, + { + "id": 205588, + "title": "Hear Me", + "originalTitle": "Duy Beni", + "overview": "The life of high school student Ekim, who lives in a humble neighborhood, is shaken by a tragic event that takes place in front of her eyes: her best friend Leyla is injured in a hit-and-run accident. The car disappears inside a prestigious private school, attended by the richest kids of the city. When the neighbors demand justice, the school tries to bury the news by giving scholarships to three studious teenagers from the neighborhood. Ekim, Bekir and Ayşe are chosen, but they soon realize that their life is about to get harder. Yet, Ekim has no intention of letting this go quietly, and there is one thing she is sure of: the criminal is one of the students. While she tries to uncover this dark secret and ensure justice, she will be troubled by her emotions as her heart is turned upside down.", + "posterPath": "/wxpu7cWd7Td1LlreFyZVJLrzMjV.jpg", + "backdropPath": "/q1Aka5Az6pHRx56xqh92jzbzPwL.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-07-07", + "releaseYear": "2022", + "originalLanguage": "tr", + "voteAverage": 7.7, + "voteCount": 19, + "popularity": 3.9746 + }, + { + "id": 239287, + "title": "Terminator Zero", + "originalTitle": "ターミネーター 0", + "overview": "A warrior from a post-apocalyptic future travels to 1997 to protect an AI scientist being hunted by an unfeeling — and indestructible — cyborg.", + "posterPath": "/v4sbn6IsJGAIZNHjdB4CprvS7zo.jpg", + "backdropPath": "/woH18JkZMYhMSWqtHkPA4F6Gd1z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-08-29", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.08, + "voteCount": 187, + "popularity": 3.9738 + }, + { + "id": 67699, + "title": "Tash ma Tash", + "originalTitle": "طاش ما طاش", + "overview": "Comedy drama sketches portraying social problems in the Saudi society with different takes on storylines.", + "posterPath": "/ewZskTZm8O04XeXoIlBJuKe02ZV.jpg", + "backdropPath": "/aop41hxXTvkDKNJR07d1HwJaUo5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "1993-02-22", + "releaseYear": "1993", + "originalLanguage": "ar", + "voteAverage": 8.2, + "voteCount": 11, + "popularity": 3.9731 + }, + { + "id": 60715, + "title": "Bref", + "originalTitle": "Bref", + "overview": "A lost thirty-something shares his struggles, from failed relationships to boring jobs and pointless nights out. Stuck in his routine at first, he slowly evolves, searching for meaning in his life. In short, he's just trying to live.", + "posterPath": "/alaRcixeZ1lLVb5NuvmJnAsfbyA.jpg", + "backdropPath": "/fcIlUK2WJYyqI9AvDWDyYeElZyV.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2011-08-29", + "releaseYear": "2011", + "originalLanguage": "fr", + "voteAverage": 8.1, + "voteCount": 162, + "popularity": 3.9726 + }, + { + "id": 37681, + "title": "Scarlet Heart", + "originalTitle": "步步惊心", + "overview": "Zhang Xiao, a 21st-century woman, is transported back to the Qing Dynasty during Emperor Kangxi's reign after a bizarre accident. She awakens in the body of Maertai Rouxi, a teenage nobleman's daughter, and must navigate life in a past world shaped by her mysterious connection to this historical figure.", + "posterPath": "/dNVmYG7n50dsh08WFEheq5oURpi.jpg", + "backdropPath": "/tc1AWRnXp4y56kwGborbDT3wWFB.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2011-09-10", + "releaseYear": "2011", + "originalLanguage": "zh", + "voteAverage": 8.1, + "voteCount": 22, + "popularity": 3.9719 + }, + { + "id": 69306, + "title": "No: 309", + "originalTitle": "No: 309", + "overview": "Out of pure coincidence, Onur and Lale meet at the same place due to a blind date that is arranged by their mothers.And during the next morning they find themselves in the same bed", + "posterPath": "/jYOcAeNQgSj7gff73Lmc2Pdd1QU.jpg", + "backdropPath": "/9s3W7nAPPhqlfM32z81uaujnavR.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2016-01-14", + "releaseYear": "2016", + "originalLanguage": "tr", + "voteAverage": 6.4, + "voteCount": 20, + "popularity": 3.9717 + }, + { + "id": 72736, + "title": "Frankie Drake Mysteries", + "originalTitle": "Frankie Drake Mysteries", + "overview": "Toronto’s only female private detective in the 1920s takes on the cases the police don’t want or can’t handle. From airplanes and booze running to American G-men, Communists and union busters, Frankie’s fearless sense of adventure gets her into all kinds of trouble, but she always manages to find her way out.", + "posterPath": "/saTRepmDwP3df0f0E8tJNX4BnrS.jpg", + "backdropPath": "/1qPnDOxWqDXKx3SeOvCuglosimJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2017-11-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 40, + "popularity": 3.9716 + }, + { + "id": 218145, + "title": "Mom for rent", + "originalTitle": "Mama na prenájom", + "overview": "Abandoned by his wife, Martin is lying to his daughter not to be upset. But as Hanka grows, these lies become unbearable. Martin meets Nada unexpectedly, asked her to be a rent-a-mother and all lives are completely changed.", + "posterPath": "/fH7PP2Rkdlo414IHvZABBHhtoqd.jpg", + "backdropPath": "/l7LRGYJY3NzIGBlpvHpMsNXHbm5.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2023-01-09", + "releaseYear": "2023", + "originalLanguage": "sk", + "voteAverage": 5.6, + "voteCount": 33, + "popularity": 3.971 + }, + { + "id": 68913, + "title": "Snowfall", + "originalTitle": "Snøfall", + "overview": "Selma, a 9 year old girl who lost her parents in an accident, is now living with Ruth, a quite strict neighbour who was just supposed to temporarily look after Selma and her dog Casper.", + "posterPath": "/k9n1CAFyhf6IgSCNqTFOC1OEctE.jpg", + "backdropPath": "/g7ALvYxMMVJmuE4ixX6zjB5mXpS.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 10762, + 18 + ], + "genres": [ + "Family", + "Kids", + "Drama" + ], + "releaseDate": "2016-12-01", + "releaseYear": "2016", + "originalLanguage": "no", + "voteAverage": 5.8, + "voteCount": 20, + "popularity": 3.9708 + }, + { + "id": 69530, + "title": "The Legend of the Condor Heroes", + "originalTitle": "射雕英雄传", + "overview": "During the Southern Song dynasty, Guo Jing and Yang Kang, two boys orphaned by war, grow up on opposite paths—one becoming a patriotic hero, the other consumed by ambition and betrayal.", + "posterPath": "/9Cs550R7Dj4vSAcjnpuK8rpdxnf.jpg", + "backdropPath": "/fXHrUSfTIXQsPwfGoqFqLtke1vb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2017-01-09", + "releaseYear": "2017", + "originalLanguage": "zh", + "voteAverage": 8.1, + "voteCount": 17, + "popularity": 3.9702 + }, + { + "id": 220286, + "title": "Ishura", + "originalTitle": "異修羅", + "overview": "A host of demigods have inherited the world after the Demon King has died, and a battle to determine the mightiest ensues.", + "posterPath": "/twNBSlJ6mbKGjbmhkKF09BeeCkD.jpg", + "backdropPath": "/4QJjj63L1pfhiF9rSRAVbwB4lLp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.758, + "voteCount": 31, + "popularity": 3.97 + }, + { + "id": 216310, + "title": "Castaway Diva", + "originalTitle": "무인도의 디바", + "overview": "Fifteen years after being stranded on a remote island, an aspiring singer reenters society — stopping at nothing to pursue her dream of becoming a diva.", + "posterPath": "/oYOxdgfPogMoXPizBjKcZx7f9k2.jpg", + "backdropPath": "/6b5AgwBJ9RQKzXh0B7kG0wWq5P9.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2023-10-28", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8, + "voteCount": 64, + "popularity": 3.97 + }, + { + "id": 4453, + "title": "The Hogan Family", + "originalTitle": "The Hogan Family", + "overview": "The Hogan Family is an American television situation comedy that aired on NBC from March 1, 1986 to May 7, 1990, and on CBS from September 15, 1990 until July 20, 1991. It was produced by Miller-Boyett Productions, along with Tal Productions, Inc., and in association with Lorimar Productions, Lorimar-Telepictures and Lorimar Television.\n\nThe show was originally titled Valerie and starred Valerie Harper as a mother trying to juggle her career with raising her three sons by her often-absent airline-pilot husband. Harper was written out of the series after the second season because of a dispute with the show's producers. Sandy Duncan joined the cast as the boys' aunt, who moved in and became their surrogate mom. During the show's third season, the series was known as Valerie's Family: The Hogans, then simply as The Hogan Family.", + "posterPath": "/2deFhQTN01DGG2ys9tNmRRB4SsY.jpg", + "backdropPath": "/aNVkp97dJDYkscOIK1PxVb5NEL0.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1986-03-01", + "releaseYear": "1986", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 23, + "popularity": 3.9693 + }, + { + "id": 247045, + "title": "Nyaight of the Living Cat", + "originalTitle": "ニャイト・オブ・ザ・リビングキャット", + "overview": "A virus turns humanity into feral cats, leaving a few survivors to fight back. Kunagi, a man with no past but vast cat knowledge, struggles to survive. However, the virus spreads through cuddles—can he resist the adorable menace?", + "posterPath": "/8RK3ejKdkw5KrUNzcURiwGpi9xO.jpg", + "backdropPath": "/gdBQEXiG6X9SOgFLhGOnPJJ23BN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-07-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 15, + "popularity": 3.9691 + }, + { + "id": 221112, + "title": "Amidst a Snowstorm of Love", + "originalTitle": "在暴雪时分", + "overview": "As a professional billiards player, Yin Guo has become quite a notable athlete. After receiving an invitation to play in a tournament in Hel, Yin Guo eagerly accepts. Little does she know that meeting former professional billiards player, Lin Yiyang, in Hel will change her life forever.", + "posterPath": "/1v5ABzgSMlVJG2acb6S6JAkEM2S.jpg", + "backdropPath": "/2EiNPJuZMTY7Bm9setnS1GqhGAl.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-02-02", + "releaseYear": "2024", + "originalLanguage": "zh", + "voteAverage": 7.932, + "voteCount": 22, + "popularity": 3.9691 + }, + { + "id": 82879, + "title": "RADIANT", + "originalTitle": "ラディアン", + "overview": "Seth is a boy who seeks to become a great magician, and a group of witches who seek to travel to the Radiant. Radiant is a mythical land that spawns monsters called \"Néméses\" which fall to the world from the sky. While traveling, they are also hunted by The Inquisition.", + "posterPath": "/yPeqnwD63wf23ZHlzEFeQLnZD3K.jpg", + "backdropPath": "/qjv2SeySNKodyX3CgpTWbhM31M4.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 121, + "popularity": 3.9664 + }, + { + "id": 53715, + "title": "Little Busters!", + "originalTitle": "リトルバスターズ!", + "overview": "Riki was a child when his parents died, leaving him hopeless and depressed. What saved him was a group of four kids calling themselves the Little Busters. They took Riki out and played with him during his time of need. He really enjoyed being together with them, and his grief gradually faded away. Now in his second year of high school they still hang out, fight and live together, and enjoy their school life.", + "posterPath": "/iyt2vTDIfpfBXKt7uTQn67YZK8z.jpg", + "backdropPath": "/y0h1OGpj79xvbqlTiQB4dSUh9qN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2012-10-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 17, + "popularity": 3.966 + }, + { + "id": 56351, + "title": "The World God Only Knows", + "originalTitle": "神のみぞ知るセカイ", + "overview": "Keima is a dating sim champion. Cute girls are rendered powerless by his irresistible game playing techniques. Too bad things aren't that way in the real world. That is, until his tempting game playing causes a real live—and very bubbly-cute—demon hunter named Elsie to materialize! Now Elsie wants Keima to help her free hot girls from sneaky demons who secretly possess them.", + "posterPath": "/7OmvlaTEivrL1WsHAnLu4D3RnUt.jpg", + "backdropPath": "/ZxQglWQ4w98DXm70ydAwyzi7lZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-08", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 46, + "popularity": 3.9637 + }, + { + "id": 106651, + "title": "Hellbound", + "originalTitle": "지옥", + "overview": "Unearthly beings deliver bloody condemnations, sending individuals to hell and giving rise to a religious group founded on the idea of divine justice.", + "posterPath": "/5NYdSAnDVIXePrSG2dznHdiibMk.jpg", + "backdropPath": "/ikN8ABD9pXHuW4JFqTEHr3ae8rd.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-11-19", + "releaseYear": "2021", + "originalLanguage": "ko", + "voteAverage": 7.344, + "voteCount": 966, + "popularity": 3.9635 + }, + { + "id": 62598, + "title": "Wicked Tuna", + "originalTitle": "Wicked Tuna", + "overview": "Fishing is a hard life, and harder with bluefin stocks depleted. In Gloucester, Massachusetts, there's a special breed of fishermen. For generations they've used rod and reel to catch the elusive bluefin tuna. They depend on these fish for their livelihood, and the competition is brutal. Over the next 10 weeks, the most skilled fishermen will set out in the frigid waters of the North Atlantic in hopes of catching the valuable bluefin tuna. When one bluefin can bring in as much as $20,000—they'll do whatever it takes to hook up.", + "posterPath": "/z1N5U6tTEl36OcLXgt4UnaPtC3M.jpg", + "backdropPath": "/5GcGsibDHlkmXk8rFiWR7kqU4l2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10764 + ], + "genres": [ + "Action & Adventure", + "Reality" + ], + "releaseDate": "2012-04-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 25, + "popularity": 3.9618 + }, + { + "id": 103830, + "title": "The Titan's Bride", + "originalTitle": "巨人族の花嫁", + "overview": "Koichi, a student about to graduate, is summoned to a world of Titans. It's the land of Tildant, where the prince, Caius, appears in front of Koichi and says, \"I want you to be my bride and give birth to my baby!\"", + "posterPath": "/bYaYGcY4lNLkvuxYupTRwRrnaqQ.jpg", + "backdropPath": "/kLVtqq3yiDU8sXvGizqy1bbBHl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.483, + "voteCount": 29, + "popularity": 3.9598 + }, + { + "id": 46101, + "title": "Her Own Destiny", + "originalTitle": "Senhora do Destino", + "overview": "A story about people who succeed in life thanks to nothing but their own efforts. Maria do Carmo is the main character of the telenovela; a mother of five who struggle to be successful in life, but whose most important will be recovering the love of her daughter who was kidnapped when she was just months old.", + "posterPath": "/x74oguhQltDFw8rUZX5C0Li9N56.jpg", + "backdropPath": "/p5D492rqjQmrcc8rQPLkcJ9FPpa.jpg", + "mediaType": "tv", + "genreIds": [ + 10766 + ], + "genres": [ + "Soap" + ], + "releaseDate": "2004-06-28", + "releaseYear": "2004", + "originalLanguage": "pt", + "voteAverage": 7.795, + "voteCount": 22, + "popularity": 3.9577 + }, + { + "id": 278331, + "title": "The First Night with the Duke", + "originalTitle": "남주의 첫날밤을 가져버렸다", + "overview": "Reincarnated as a minor character in a novel, Cha Seon-taek unexpectedly spends a night with Prince Kyungsung, sparking an intense and unexpected romance.", + "posterPath": "/kKpIpNJGT9MQpejVNpNXxP09eAr.jpg", + "backdropPath": "/xPFmxUuZnmYAlpoO5QI9AdYegxt.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2025-06-11", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.2, + "voteCount": 22, + "popularity": 3.9574 + }, + { + "id": 208397, + "title": "School Spirits", + "originalTitle": "School Spirits", + "overview": "Maddie, a teen stuck in the afterlife investigating her own mysterious disappearance, goes on a crime-solving journey as she adjusts to high school purgatory, but the closer she gets to discovering the truth, the more secrets and lies she uncovers.", + "posterPath": "/eb7ZJYZjed1bBQ8a4aMDwp5nvjF.jpg", + "backdropPath": "/vwbFFaMuPQdLXbjiGzc40Wd6nv6.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 18 + ], + "genres": [ + "Mystery", + "Drama" + ], + "releaseDate": "2023-03-09", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 7.799, + "voteCount": 206, + "popularity": 3.9566 + }, + { + "id": 71146, + "title": "Condor", + "originalTitle": "Condor", + "overview": "Young CIA analyst Joe Turner has his idealism tested when he learns that the CIA has been using an algorithm he developed to spy on American citizens, leading the organization to a terrorist plot that threatens the lives of millions. Inspired by Sydney Pollack’s 1975 political thriller Three Days of the Condor.", + "posterPath": "/28cIK70tN2t4gPTV8CBQZED1H2G.jpg", + "backdropPath": "/fc9ebsTmVCvv6jjD2qT7rWazaej.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2018-06-06", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.021, + "voteCount": 256, + "popularity": 3.9563 + }, + { + "id": 9899, + "title": "Saving Grace", + "originalTitle": "Saving Grace", + "overview": "Grace Hanadarko is a tormented, fast-living Oklahoma City police detective who, despite having an excellent career in solving crimes, takes self-destruction to new heights. After seeing tremendous tragedy, both professionally and personally, Grace reaches a turning point one night and meets a rough-hewn angel with a similar past who wants to help lead her back to the right path.", + "posterPath": "/kxasURRX1FHh1el6XYpSM2LGSVR.jpg", + "backdropPath": "/iPedkIT4fDPSxNBFFCdKzoXgHid.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2007-07-23", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.364, + "voteCount": 55, + "popularity": 3.9562 + }, + { + "id": 217583, + "title": "Dark Hearts", + "originalTitle": "Cœurs Noirs", + "overview": "The French Special Forces are deployed in Iraq, on the eve of the battle of Mosul, in October 2016. The members of this commando have the mission of finding and exfiltrating the daughter and the grandson of an important French Emir of Daesh who captured and who will cooperate with them only on this condition.", + "posterPath": "/hXU7KUsE5OUbSRBzZKaQYZ7icFW.jpg", + "backdropPath": "/iC6N4gTOKRqF8ywKkQZWi2pDGRT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10768, + 10759 + ], + "genres": [ + "Drama", + "War & Politics", + "Action & Adventure" + ], + "releaseDate": "2023-02-03", + "releaseYear": "2023", + "originalLanguage": "fr", + "voteAverage": 8.1, + "voteCount": 51, + "popularity": 3.9555 + }, + { + "id": 71904, + "title": "Capitaine Marleau", + "originalTitle": "Capitaine Marleau", + "overview": "Beneath her eccentric appearance, Captain Marleau is a formidable detective. Her Sherlock Holmes deerstalker cap, her character, her unusual appearance, her humor, her unpredictable behavior--Captain Marleau is not your average gendarme. She never rushes an investigation; she becomes the investigation and relentlessly pursues the suspects.", + "posterPath": "/2JSZjb9zAWkpqkhy1VoxBAqYIXS.jpg", + "backdropPath": "/hWYfGPw2K9tzroqaWSWSmaUuNsR.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2015-09-15", + "releaseYear": "2015", + "originalLanguage": "fr", + "voteAverage": 6, + "voteCount": 34, + "popularity": 3.9544 + }, + { + "id": 62201, + "title": "Rabbids Invasion", + "originalTitle": "Les Lapins Crétins : Invasion", + "overview": "The Rabbids are back in their new tv show. The rabbids discovers new things and learn what they do. But that they don't know is that they are curious.", + "posterPath": "/hOjv6MN6FzG4JMcD0NvEylIoLYq.jpg", + "backdropPath": "/cvytcYJFiVlp3tVUIfjSRHcSTfS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2013-08-03", + "releaseYear": "2013", + "originalLanguage": "fr", + "voteAverage": 7.7, + "voteCount": 98, + "popularity": 3.9542 + }, + { + "id": 64375, + "title": "Mobile Suit Gundam: Iron-Blooded Orphans", + "originalTitle": "機動戦士ガンダム 鉄血のオルフェンズ", + "overview": "On a terraformed post-disaster Mars, a group of child security agents rebel against the adults who betrayed them and the oppressive Earth government.", + "posterPath": "/x5M9yxvBhrUP4rsKSl3d9VzK7O.jpg", + "backdropPath": "/52mp7oFltDUkw3kx1ArlRZkLyr3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 10765 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.482, + "voteCount": 57, + "popularity": 3.954 + }, + { + "id": 237529, + "title": "Medalist", + "originalTitle": "メダリスト", + "overview": "Tsukasa Akeuraji, a frustrated skater, meets Inori Yuitsuka, a girl who yearns to be a figure skater. Motivated by Inori's obsession on the rink, Tsukasa begins coaching Inori. Inori's talent blossoms, and Tsukasa becomes a brilliant mentor. Together they aim to make her a glorious medalist!", + "posterPath": "/hK5eKFaj99mZwpmILnvKehWe9t1.jpg", + "backdropPath": "/lUZ6ThctsCMee63Cu02F1F6rgC1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-01-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 38, + "popularity": 3.9507 + }, + { + "id": 32632, + "title": "Law & Order: LA", + "originalTitle": "Law & Order: LA", + "overview": "From the tony Beverly Hills to the seedy side of Hollywood, LAPD’s elite Robbery Homicide Division is on the case. Fusing classic ripped-from-the-headlines storytelling with the backdrop of LA, the series delves into the high profile crimes of the west coast.", + "posterPath": "/mxYWv7XeeUqT0ikW9ccIyjeJKTQ.jpg", + "backdropPath": "/i3WNbk47niwSrWe3Q81vqpSndiY.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2010-09-29", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 40, + "popularity": 3.9492 + }, + { + "id": 208851, + "title": "A Thousand Blows", + "originalTitle": "A Thousand Blows", + "overview": "Hezekiah and Alec, two friends from Jamaica, finds themselves thrust into the criminal underbelly of London's East End. Here they meet Mary Carr, Queen of an all-female criminal gang known as the Forty Elephants, and run afoul of Sugar Goodson, criminal kingpin and notorious boxer.", + "posterPath": "/foO5Utd8MWrkM6U5cEityaYZYfJ.jpg", + "backdropPath": "/sDMS86jMXfh2QaiwrqhtDYuN0KA.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2025-02-21", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 69, + "popularity": 3.9486 + }, + { + "id": 2742, + "title": "Flight of the Conchords", + "originalTitle": "Flight of the Conchords", + "overview": "The trials and tribulations of a two man, digi-folk band who have moved from New Zealand to New York City in the hope of forging a successful music career. So far they've managed to find a manager (whose \"other\" job is at the New Zealand Consulate), one fan (a married obsessive) and one friend (who owns the local pawn shop) -- but not much else.", + "posterPath": "/ynboK8qiOTz0X44r59LpfF8jBP5.jpg", + "backdropPath": "/8zIkXZJ2UWy9pzcTMNQrFCeQkcP.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-06-17", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 375, + "popularity": 3.9469 + }, + { + "id": 74660, + "title": "Stiletto Vendetta", + "originalTitle": "Ufak Tefek Cinayetler", + "overview": "Three girls in high school made a prank on the fourth girl and caused her to be expelled from the high school with her teacher. After 20 years they got together in a high society environment.", + "posterPath": "/7GOqhzNWIAwBDH4iY3E2w1XY8h3.jpg", + "backdropPath": "/y2eqMjgSAI9cvsvuqnWZljLhrdZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2017-10-24", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 6.2, + "voteCount": 16, + "popularity": 3.9466 + }, + { + "id": 66134, + "title": "The Durrells", + "originalTitle": "The Durrells", + "overview": "In 1935, financially strapped widow Louisa Durrell, whose life has fallen apart, decides to move from England, with her four children (three sons, one daughter), to the island of Corfu, Greece. Once there, the family moves into a dilapidated old house that has no electricity and that is crumbling apart. But life on Corfu is cheap, it's an earthly paradise, and the Durrells proceed to forge their new existence, with all its challenges, adventures, and forming relationships.", + "posterPath": "/sgZiuQ9PMeyHU7xMaIctwRu4SLa.jpg", + "backdropPath": "/lkb3NBvByVWBvr63wE4weHVFz4i.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10751 + ], + "genres": [ + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "2016-04-03", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.385, + "voteCount": 117, + "popularity": 3.9465 + }, + { + "id": 197125, + "title": "Constellation", + "originalTitle": "Constellation", + "overview": "When a fatal accident occurs on board the International Space Station, a lone astronaut makes the heroic journey back to Earth, only to discover key pieces of her life—including her young daughter—have changed.", + "posterPath": "/21ICs3fxlxGslbzS4moCHk9HNo6.jpg", + "backdropPath": "/vyuYVtlB38DzXdF11XwyX7xPp0t.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2024-02-21", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 323, + "popularity": 3.9464 + }, + { + "id": 235389, + "title": "Re:Monster", + "originalTitle": "Re:Monster", + "overview": "After meeting an untimely death, Tomokui Kanata is reincarnated as a lowly goblin, but he's worked up a monstrous appetite. Thanks to his new ability that allows him to grow stronger the more he feeds, his feeble status quickly changes, and he rises to become the goblin leader. With a mix of his past memories, new body, and strong stomach, he's taking a bite out of this new fantastical world!", + "posterPath": "/AmFrA0jX0p9twH1IKfxcGWVz2X3.jpg", + "backdropPath": "/2VjHbqr00cPvT2U4Vy0JnWT8Fcz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.109, + "voteCount": 128, + "popularity": 3.9459 + }, + { + "id": 80169, + "title": "The House of Flowers", + "originalTitle": "La casa de las flores", + "overview": "A wealthy matriarch tries to maintain her family's facade of perfection after her husband's mistress exposes their dirty secrets.", + "posterPath": "/zAIp0cT4Hy6faiPYcOPl1VsuGR.jpg", + "backdropPath": "/lwxDow7sjT6jA31pOqPB0wTbrP1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2018-08-10", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 7.8, + "voteCount": 903, + "popularity": 3.9425 + }, + { + "id": 277665, + "title": "Anne Shirley", + "originalTitle": "アン・シャーリー", + "overview": "On the beautiful Prince Edward Island in Canada, an orphan named Anne Shirley is mistakenly sent to Green Gables, the home of Matthew and Marilla Cuthbert. They choose to adopt her anyway, as Anne finds friendship, love, and happiness in her new home. Come along for the story of a purehearted and imaginative girl growing up, leaving for college, and returning home a changed woman.", + "posterPath": "/ttSQg44aZMwcwotm4cBAzsh5KcB.jpg", + "backdropPath": "/wu36nyFmJVZOHjV2MNhFMmmA8ja.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10751 + ], + "genres": [ + "Animation", + "Drama", + "Family" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 24, + "popularity": 3.9415 + }, + { + "id": 80307, + "title": "Bodyguard", + "originalTitle": "Bodyguard", + "overview": "A troubled war veteran is assigned to protect a controversial politician who may be the target of a terror plot.", + "posterPath": "/5DUJTrHTRLHLCKWriPhdusQogAv.jpg", + "backdropPath": "/tvYf5SOIgAumuVoYn2eYKlotAbf.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 10768, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "War & Politics", + "Mystery" + ], + "releaseDate": "2018-08-26", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.768, + "voteCount": 1033, + "popularity": 3.9409 + }, + { + "id": 4709, + "title": "Man vs. Wild", + "originalTitle": "Man vs. Wild", + "overview": "Bear strands himself in popular wilderness destinations where tourists often find themselves lost or in danger.", + "posterPath": "/9M4xXcz9m1aUlRsASv7vsx776do.jpg", + "backdropPath": "/uir3NfY3J7WBhzVA8kkVGtz9sUB.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 99 + ], + "genres": [ + "Action & Adventure", + "Documentary" + ], + "releaseDate": "2006-10-27", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.959, + "voteCount": 181, + "popularity": 3.9409 + }, + { + "id": 12965, + "title": "María la del Barrio", + "originalTitle": "María la del Barrio", + "overview": "A brave, poor young girl is welcomed into a rich family and develops a romance with their misogynist youngest son, driving a woman already in love with him to go to great lengths to destroy their relationship.", + "posterPath": "/xGMquh71mh3w3QzUrl1AhCniHys.jpg", + "backdropPath": "/wt1AEm5eqsjiv3WOIvagUaizO9M.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10766 + ], + "genres": [ + "Drama", + "Soap" + ], + "releaseDate": "1995-08-14", + "releaseYear": "1995", + "originalLanguage": "es", + "voteAverage": 7.3, + "voteCount": 568, + "popularity": 3.9398 + }, + { + "id": 76530, + "title": "Price Of Passion", + "originalTitle": "Siyah Beyaz Aşk", + "overview": "Ferhat is a hitman working for his criminal uncle. Aslı is a young and idealistic doctor. One day, their roads crossed in the most unexpected way: Aslı is forced to operate on a man that Ferhat had shot.", + "posterPath": "/eO6C0NFLDpdnKnltEhKvkvUjIpk.jpg", + "backdropPath": "/kiJQB753D1wvaX36bFHBHVdBMlP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2017-10-16", + "releaseYear": "2017", + "originalLanguage": "tr", + "voteAverage": 7.9, + "voteCount": 192, + "popularity": 3.9385 + }, + { + "id": 2552, + "title": "Mork & Mindy", + "originalTitle": "Mork & Mindy", + "overview": "A wacky alien comes to Earth to study its residents and the life of the human woman he boards with is never the same.", + "posterPath": "/mzWJikslTFFeRloUNQmbAWbdU28.jpg", + "backdropPath": "/7w4OCRKq00tMAJlwVwW8vyFSodx.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1978-09-14", + "releaseYear": "1978", + "originalLanguage": "en", + "voteAverage": 7.037, + "voteCount": 149, + "popularity": 3.9371 + }, + { + "id": 85385, + "title": "L.A.'s Finest", + "originalTitle": "L.A.'s Finest", + "overview": "Syd Burnett has left her complicated past behind to become an LAPD detective. Paired with a new partner, Nancy McKenna, a working mom with an equally complex past, Syd is pushed to examine whether her unapologetic lifestyle might be masking a greater personal secret. These two women don't agree on much, but they find common ground when it comes to taking on the most dangerous criminals in Los Angeles.", + "posterPath": "/pecfFki7ADklKNuqMrcBD7U9lWc.jpg", + "backdropPath": "/ojSWom4hbO8RAhMem8jITICrKlD.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2019-05-13", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.994, + "voteCount": 243, + "popularity": 3.9368 + }, + { + "id": 73602, + "title": "Greenhouse Academy", + "originalTitle": "Greenhouse Academy", + "overview": "When teen siblings Hayley and Alex enter an elite boarding school, they find rivalry, romance and a mystery related to the recent loss of their mom.", + "posterPath": "/pwKPvq66nevyaj4OvBFFVK23fo8.jpg", + "backdropPath": "/1RvM2JdvSh4YdwUJlUxqBYRWpYu.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2017-09-08", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 155, + "popularity": 3.9363 + }, + { + "id": 217553, + "title": "The Trauma Code: Heroes on Call", + "originalTitle": "중증외상센터", + "overview": "To create a top-tier trauma center, a war-seasoned doctor arrives — bringing his blunt but skilled ways to transform his team into life-saving mavericks.", + "posterPath": "/y8h2RwUZM5chv9tuaKVwSPoo3KE.jpg", + "backdropPath": "/58XBnfKhP569SuZuXks3fNYpLBm.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-01-24", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 8.478, + "voteCount": 115, + "popularity": 3.9354 + }, + { + "id": 9980, + "title": "The New Woody Woodpecker Show", + "originalTitle": "The New Woody Woodpecker Show", + "overview": "The funny bird drives people crazy with his antics.", + "posterPath": "/oizXc3SnlSWDqPMmfe4koUj4RRo.jpg", + "backdropPath": "/vdcuZ7YHLemlTZ5NPfbctumWIg2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1999-05-08", + "releaseYear": "1999", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 59, + "popularity": 3.9353 + }, + { + "id": 11565, + "title": "Trial & Retribution", + "originalTitle": "Trial & Retribution", + "overview": "Trial & Retribution is a feature-length ITV police procedural television drama series that began in 1997. It was devised and written by Lynda La Plante as a follow-on from her successful television series Prime Suspect. Each episode of the Trial & Retribution series is broadcast over two nights. The 2008 series 10 had 10 episodes, the longest run of the drama so far. The latest series was number 12 which aired in February 2009.", + "posterPath": "/k6jgpAh3sfUdL5wGsgDJNkKlsKL.jpg", + "backdropPath": "/oOrR8zBOXRsGshPHsa345lhNBwj.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "1997-10-19", + "releaseYear": "1997", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 13, + "popularity": 3.9352 + }, + { + "id": 10860, + "title": "Road to Avonlea", + "originalTitle": "Road to Avonlea", + "overview": "In the fictional small town of Avonlea, Prince Edward Island, in the early 20th century, 10-year-old Montreal heiress Sara Stanley is sent by her wealthy father to live with her two maiden aunts, Hetty and Olivia King, to be near her late mother's side of the family.", + "posterPath": "/2392PwVEfsMOMgYD5q0KaRWbjhP.jpg", + "backdropPath": "/3uAG1CYReTdaowFrCvYPEsowqvR.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "1990-01-07", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 37, + "popularity": 3.9345 + }, + { + "id": 257064, + "title": "Volta por Cima", + "originalTitle": "Volta por Cima", + "overview": "", + "posterPath": "/nyN8R0P1Hqwq7ksJz4O2BIAUd4W.jpg", + "backdropPath": "/j5CR0gFPjwgmAXkV9HGaF4VMjIW.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 35, + 80 + ], + "genres": [ + "Soap", + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "2024-09-30", + "releaseYear": "2024", + "originalLanguage": "pt", + "voteAverage": 6.065, + "voteCount": 23, + "popularity": 3.9343 + }, + { + "id": 128010, + "title": "Welcome to Eden", + "originalTitle": "Bienvenidos a Edén", + "overview": "Are you happy? With this question, Zoa and four other attractive young people, very active on social networks, are invited to the most exclusive party in history on a secret island, organized by the brand of a new drink. What begins as an exciting journey will soon become the journey of a lifetime. But paradise is not really what it seems - Welcome to Eden.", + "posterPath": "/kZO0mtTHAgg9QVscLVtwCcQ7Hgx.jpg", + "backdropPath": "/aScn0gmLiwfz8fGSm8nwAPgo0pD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2022-05-06", + "releaseYear": "2022", + "originalLanguage": "es", + "voteAverage": 7.034, + "voteCount": 305, + "popularity": 3.9342 + }, + { + "id": 76818, + "title": "Chicken Girls", + "originalTitle": "Chicken Girls", + "overview": "Rhyme and her friends - known by their 'ship name, \"The Chicken Girls\" - have been dancing together forever. But this year, everything's changing.", + "posterPath": "/kr2VHCPjn4JHE5GDfdvep5iQzLF.jpg", + "backdropPath": "/kL3LnCNpALi0InjELsxkd7Do7Yi.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2017-09-05", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 30, + "popularity": 3.9338 + }, + { + "id": 138492, + "title": "The Spiderwick Chronicles", + "originalTitle": "The Spiderwick Chronicles", + "overview": "The coming-of-age story of the Grace Family, as they move from New York to Michigan and into their family's ancestral home. Upon arrival, the family not only uncovers mysteries hidden inside their great grandfather's Spiderwick Estate, but also discovers a secret, fantastical world around them.", + "posterPath": "/ic5Hs6zYcM4YUuxyezFUAFQie39.jpg", + "backdropPath": "/gzryDyEMkhtAYNlVRiMG1nriNdd.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10751 + ], + "genres": [ + "Action & Adventure", + "Family" + ], + "releaseDate": "2024-04-19", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 70, + "popularity": 3.9329 + }, + { + "id": 124396, + "title": "Sonny Boy", + "originalTitle": "Sonny Boy", + "overview": "On August 16, midway through a seemingly endless summer vacation, middle school third-year student Nagara, transfer student Nozomi, classmates Mizuho, Asakaze and their entire class are suddenly transported from their tranquil lives to a school adrift in an alternate dimension. They must survive with the super powers that have awakened within them.", + "posterPath": "/et4MvCxAQqw0jd8xEQ7U1DSr0Gv.jpg", + "backdropPath": "/rgmBS8zkk6RrGUOdWqzZs8hjZer.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-16", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 75, + "popularity": 3.9316 + }, + { + "id": 274479, + "title": "Lynley", + "originalTitle": "Lynley", + "overview": "Tommy Lynley is a brilliant police detective but an outsider in the force – simply by virtue of his aristocratic upbringing. He is paired with Barbara Havers, a sergeant with a maverick attitude and a working-class background. With seemingly nothing in common and against all odds, the mismatched duo of Lynley and Havers become a formidable team, bonded by their desire to see justice done.", + "posterPath": "/nBwCKjg3CNonSWMmE7VghNc4qBm.jpg", + "backdropPath": "/4FYLN9lzBawtCwtUqrKHbjmQBPr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-09-04", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 5.8, + "voteCount": 15, + "popularity": 3.9301 + }, + { + "id": 26453, + "title": "TRIGUN", + "originalTitle": "TRIGUN", + "overview": "Trigun takes place in the distant future on a desert planet. Vash the Stampede is a gunfighter with a legend so ruthless he has a $$60,000,000,000 bounty on his head. Entire towns evacuate at the rumor of his arrival. But the real Vash the Stampede, the enigmatic and conflicted lead character, is more heroic, even though he usually acts like a complete idiot.", + "posterPath": "/hethsQZwgtLG0Vux9H7UtMVfQ2n.jpg", + "backdropPath": "/unrJI17xAoGNgD2Yzspg51vkWeq.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "1998-04-02", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 475, + "popularity": 3.9299 + }, + { + "id": 63201, + "title": "Glitch", + "originalTitle": "Glitch", + "overview": "A police officer and a doctor face an emotionally charged mystery when seven local residents inexplicably return from the dead in peak physical form.", + "posterPath": "/po8xF3i0A3YbkXRDM64JdgFI8vd.jpg", + "backdropPath": "/soIancCX0rpvB2STEvJAyFzGUBu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-09", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.729, + "voteCount": 375, + "popularity": 3.9287 + }, + { + "id": 216523, + "title": "Ron Kamonohashi's Forbidden Deductions", + "originalTitle": "鴨乃橋ロンの禁断推理", + "overview": "Ron Kamonohashi was once regarded as a genius at the top detective training academy. But after a fatal mistake, he was expelled and forbidden to become a detective. Years later, police officer Totomaru Isshiki knocks on Ron’s door seeking help on a serial murder case. He finds Ron, now a messy-haired recluse, who agrees. Together, this mismatched detective team begins solving their first mystery!", + "posterPath": "/28soQPRQYUgi1cthtSqGkQFVwep.jpg", + "backdropPath": "/9EVQLSslxwSPiOqBufrzr7guJQ5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 80, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2023-10-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.345, + "voteCount": 42, + "popularity": 3.9284 + }, + { + "id": 203413, + "title": "My Lady Jane", + "originalTitle": "My Lady Jane", + "overview": "Gird your loins for the tragic tale of Lady Jane Grey, the young Tudor noblewoman who was Queen of England for nine days and then beheaded, back in good ol’ 1553. Actually... f*ck that. We’re retelling history the way it should have happened: the damsel in distress saves herself. This is an epic tale of true love and high adventure set in an alt-universe of action, history, fantasy, comedy, romance, and rompy-pompy. Buckle up.", + "posterPath": "/gu7Lx57RjrX9yVjc6tyoFUL6eXs.jpg", + "backdropPath": "/qs2YbseE7cC17AwFDmjNGzjCe9q.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 10765 + ], + "genres": [ + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-06-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.469, + "voteCount": 159, + "popularity": 3.928 + }, + { + "id": 243217, + "title": "Happy Face", + "originalTitle": "Happy Face", + "overview": "The story of Melissa Reed, daughter of Keith Jesperson, aka the Happy Face Killer. After decades of no contact, Keith forces his way back into his daughter’s life, and Melissa must find out if an innocent man is going to be put to death for a crime her father committed. In the process, she must face a reckoning of her own identity.", + "posterPath": "/sGHZrYxOU2U2JLrmYO12qGl1VK4.jpg", + "backdropPath": "/xlXNcdpqlxZqLOWBr4qNuKm8hEx.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2025-03-20", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 7.028, + "voteCount": 53, + "popularity": 3.9268 + }, + { + "id": 252372, + "title": "Murder Mindfully", + "originalTitle": "Achtsam Morden", + "overview": "When mafia lawyer Björn attends a mindfulness class to find a better work-life balance, he discovers surprising new coping strategies — including murder.", + "posterPath": "/3snsd7KLau14equwCz9YLZu9lTO.jpg", + "backdropPath": "/rsLZK4xAw1Oun0T5UWfG213qalP.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2024-10-31", + "releaseYear": "2024", + "originalLanguage": "de", + "voteAverage": 7.604, + "voteCount": 135, + "popularity": 3.9267 + }, + { + "id": 225178, + "title": "The Love You Give Me", + "originalTitle": "你给我的喜欢", + "overview": "Years after a painful breakup caused by illness and misunderstanding, former lovers Min Hui and Xin Qi reunite in the business world, only for a paternity test to reveal that Min Hui’s son may be Xin Qi’s — forcing them to navigate past wounds, parenthood, and the possibility of rekindled love.", + "posterPath": "/6kKF4Jrs2BcppSh0BAoXxAYn02V.jpg", + "backdropPath": "/4mn4Bn8Cc3OO1drFdGd8scXthW3.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-04-24", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 8.547, + "voteCount": 32, + "popularity": 3.9267 + }, + { + "id": 205319, + "title": "Daily Dose of Sunshine", + "originalTitle": "정신병동에도 아침이 와요", + "overview": "A kind-hearted nurse working in psychiatry goes above and beyond to be a ray of light for those under her care, despite the challenges coming her way.", + "posterPath": "/d9hIiomaPXu6W9qATzPSqHgxze8.jpg", + "backdropPath": "/bhCUn6Z509qTV4eBJZtjtQ4ennL.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-11-03", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.1, + "voteCount": 120, + "popularity": 3.9266 + }, + { + "id": 53052, + "title": "From the New World", + "originalTitle": "新世界より", + "overview": "Born into a world 1000 years in our future, Saki and her friends live in utopia. Not only is their idyllic community overflowing with resources, but technology is obsolete, thanks to a magical power that grants the ability to materialize anything. However, when Saki discovers a lost artifact, the facade is shattered! Faced with a startling truth about their town, Saki and her companions face dangers they never knew existed, and their choices may change the fate of everyone.", + "posterPath": "/ywghUXAMWJ2uY43bPUgRCPnusJF.jpg", + "backdropPath": "/xuBJ149u5JBaguceowuEf0so1y8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-09-29", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 109, + "popularity": 3.9262 + }, + { + "id": 34188, + "title": "Princess Lover!", + "originalTitle": "プリンセスラバー", + "overview": "Teppei Arima, who lost both of his parents in a car accident is attending the second year of high school. After being adopted by his grandfather Isshin Arima, the mightiest man in japanese economy, he is forced into the position as his grandfather’s successor, the head of the Arima Group. To be prepared for life in high society he has to attend an elite accademy for children of the higher social classes.", + "posterPath": "/rCpJWhIezs1HEp7R07eFwiEBNm8.jpg", + "backdropPath": "/52lDY5tyBQkVn9ERUOI53O0pM8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2009-07-06", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.292, + "voteCount": 24, + "popularity": 3.9253 + }, + { + "id": 112160, + "title": "The Way of the Househusband", + "originalTitle": "極主夫道", + "overview": "After disappearing from the underworld, the legendary yakuza known as the \"Immortal Dragon\" resurfaces — as a fiercely devoted stay-at-home husband.", + "posterPath": "/p63rAZt0s8kedJtdxGwD5VYZafc.jpg", + "backdropPath": "/iJS2mYxRwdQVcBt8VQa5zo2T6EN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 473, + "popularity": 3.9252 + }, + { + "id": 63646, + "title": "Counterpart", + "originalTitle": "Counterpart", + "overview": "Howard Silk is a lowly cog in a bureaucratic UN agency who is turning the last corner of a life filled with regret when he discovers the agency he works for is guarding a secret: a crossing to a parallel dimension.", + "posterPath": "/fVTpkoTkl7LJSoVCnuoHRPJvS4o.jpg", + "backdropPath": "/z2Q4lX7E76BuZMOOZrq4trz91j8.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-12-10", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.439, + "voteCount": 391, + "popularity": 3.9241 + }, + { + "id": 12662, + "title": "Adventures of Superman", + "originalTitle": "Adventures of Superman", + "overview": "It's a bird! It's a plane! It's a syndicated TV adaptation of the beloved DC Comics superhero! You know the drill: When he isn't fighting for truth, justice and the American way, the man in tights dons a suit and glasses for his secret identity as Daily Planet newspaper reporter Clark Kent, who works alongside friends Lois Lane and Jimmy Olsen for gruff boss Perry White.", + "posterPath": "/3eKmwXE2A394l3GB9eIOy7kYm25.jpg", + "backdropPath": "/rLvLP3WlfL9nGUmIiEfZc2zogpk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18, + 35, + 10751 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Comedy", + "Family" + ], + "releaseDate": "1952-09-19", + "releaseYear": "1952", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 58, + "popularity": 3.9229 + }, + { + "id": 75132, + "title": "The Art of Crime", + "originalTitle": "L'Art du crime", + "overview": "Fired for insubordination, PJ Antoine Verlay, good cop but a blood strand and having difficulty working as a team, is attached to the OCBC (Central Office for the fight against Traffic in Cultural Goods) thanks to the intervention of the commander Pardo, his friend who becomes, therefore, his new superior. A clever investigator, but a stranger to everything related to culture, Antoine will have to work with Florence Chassagne, renowned art historian, who lives, speaks and breathes culture, to the point that - fruit of her great imagination - it happens to her in the midst of daydreams, to see and talk to the great artists who have disappeared as if they were familiar to her.", + "posterPath": "/h4QoRGfDzUQriMLYXxIl31eT4LN.jpg", + "backdropPath": "/412Ox3uopknkrnOFQvuKaEk6L0o.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2017-11-17", + "releaseYear": "2017", + "originalLanguage": "fr", + "voteAverage": 6.6, + "voteCount": 39, + "popularity": 3.9204 + }, + { + "id": 209504, + "title": "Maestro in Blue", + "originalTitle": "Maestro", + "overview": "A musician goes to lead a festival on a scenic island, where he begins an unexpected romance and finds himself entwined in other people's problems.", + "posterPath": "/ckkTjgfDqfm7amTPODPMvjkIhh1.jpg", + "backdropPath": "/lMIIAqdNUOiyIDlqs8p9H3SHj0G.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2022-10-13", + "releaseYear": "2022", + "originalLanguage": "el", + "voteAverage": 6.316, + "voteCount": 38, + "popularity": 3.9181 + }, + { + "id": 60843, + "title": "Is the Order a Rabbit?", + "originalTitle": "ご注文はうさぎですか?", + "overview": "Cocoa Hoto is a positive and energetic girl who becomes friends with anyone in just three seconds. After moving in with the Kafuu family in order to attend high school away from home, she immediately befriends the shy and precocious granddaughter of Rabbit House cafe's founder, Chino Kafuu, who is often seen with the talking rabbit, Tippy, on her head. After beginning to work as a waitress in return for room and board, Cocoa also befriends another part-timer, Rize Tedeza, who has unusual behavior and significant physical capabilities due to her military upbringing; Chiya Ujimatsu, a waitress from a rival cafe who does everything at her own pace; and Sharo Kirima, another waitress at a different cafe who has the air of a noblewoman despite being impoverished. With fluffy silliness and caffeinated fun.", + "posterPath": "/gUlQ6mNGMzQi7fJ1Uo7FCMdlxF7.jpg", + "backdropPath": "/l7uE6gXpHeujRRi8szOK1ChFS4T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 34, + "popularity": 3.9165 + }, + { + "id": 88728, + "title": "I Think You Should Leave with Tim Robinson", + "originalTitle": "I Think You Should Leave with Tim Robinson", + "overview": "There is no such thing as an ordinary interaction in this offbeat sketch comedy series that features a deep roster of guest stars.", + "posterPath": "/26fMaTPRczCrTUOQ5svA1Db7l4h.jpg", + "backdropPath": "/2bY4Im5AReuHmKOuMjMr0myO9Rj.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2019-04-23", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 149, + "popularity": 3.9163 + }, + { + "id": 69889, + "title": "Imposters", + "originalTitle": "Imposters", + "overview": "Maddie, a persona shifting con-artist who is as beautiful as she is dangerous, leaves her unwitting victims tormented when they realize they have been used and robbed of everything – including their hearts. But things get complicated when her former targets, Ezra, Richard, and Jules team up to track her down.", + "posterPath": "/1nezOc66ykPbbUbZGlfjuJaJH2d.jpg", + "backdropPath": "/kl8hBoMohGjWzXVGN5sd6xMeLZT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 9648, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Mystery", + "Crime" + ], + "releaseDate": "2017-02-07", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 126, + "popularity": 3.9157 + }, + { + "id": 71740, + "title": "40 y 20", + "originalTitle": "40 y 20", + "overview": "A comedy series about a divorced dad who likes younger women, and his son who likes older women.", + "posterPath": "/6a5tGXaGimIBWntQUKKWyZcyj68.jpg", + "backdropPath": "/9WqwZQUDfzFmN8A0VaWKzyNBnv4.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2016-04-01", + "releaseYear": "2016", + "originalLanguage": "es", + "voteAverage": 8.045, + "voteCount": 1503, + "popularity": 3.9152 + }, + { + "id": 249054, + "title": "Romantics Anonymous", + "originalTitle": "匿名の恋人たち", + "overview": "A brilliant chocolatier who's afraid of making eye contact meets an heir who can't touch others — but somehow, they're immune to each other.", + "posterPath": "/jEP3ZQLzwy50sWYpJQGuS6SKrw6.jpg", + "backdropPath": "/2h4rN6HWyvZLyGsfNNzJyQFsfG5.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2025-10-16", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.469, + "voteCount": 17, + "popularity": 3.9151 + }, + { + "id": 11145, + "title": "Intervention", + "originalTitle": "Intervention", + "overview": "People whose uncontrollable addiction to drugs, alcohol or compulsive behavior has brought them to the brink of destruction and has devastated their family and friends are presented with a life-changing opportunity of intervention and rehab. Each addict must confront their darkest demons in order to begin their journey to recovery in the hopes that they can turn their lives around before it’s too late.", + "posterPath": "/voryX0sQ7NjWmkuYy13IZBqwT2d.jpg", + "backdropPath": "/lcaJ3LeyLG8kwYCQeh5SH6g3NA1.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10764 + ], + "genres": [ + "Documentary", + "Reality" + ], + "releaseDate": "2005-03-06", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 39, + "popularity": 3.9147 + }, + { + "id": 286723, + "title": "Welcome to the Outcast's Restaurant!", + "originalTitle": "追放者食堂へようこそ!", + "overview": "When superstar adventurer Dennis gets booted from the world’s strongest party, he teams up with runaway Atelier to serve up his true passion—delicious cuisine. But this not-so-average eatery has not-so-average patrons. Dennis will battle his quirky customers’ troubles with his trusty butcher knife and wok. Visit Adventurer’s Restaurant and fill up your heart and stomach!", + "posterPath": "/caWU2F1DSrrJgoJCSclpSoCWnge.jpg", + "backdropPath": "/exFWxrrWoI2QfzFId4SqZz0jkHP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.674, + "voteCount": 24, + "popularity": 3.914 + }, + { + "id": 849, + "title": "Monty Python's Flying Circus", + "originalTitle": "Monty Python's Flying Circus", + "overview": "A British sketch comedy series with the shows being composed of surreality, risqué or innuendo-laden humour, sight gags and observational sketches without punchlines.", + "posterPath": "/jugMPE9rTDySDyirqeDssPJLNQy.jpg", + "backdropPath": "/9GybuKLYceOhgV09BQ60MKTT5nN.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1969-10-05", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 8.247, + "voteCount": 671, + "popularity": 3.914 + }, + { + "id": 10126, + "title": "Taz-Mania", + "originalTitle": "Taz-Mania", + "overview": "The wildest teenager south of the Equator, Taz lives to party. With his insatiable appetite, he tends to eat everything in sight. The oldest child in a family of five, Taz works at a rather bizarre coastal resort, the Hotel Tasmania, as a bellhop, busboy to earn party money.", + "posterPath": "/ozqJKBZq3k7BjyAwv2A7V1Zv6Ba.jpg", + "backdropPath": "/kWwj7gNJsnd5ocTRvlmEznaB8wG.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35 + ], + "genres": [ + "Family", + "Animation", + "Comedy" + ], + "releaseDate": "1991-09-07", + "releaseYear": "1991", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 246, + "popularity": 3.9137 + }, + { + "id": 63463, + "title": "THE iDOLM@STER", + "originalTitle": "アイドルマスター", + "overview": "THE IDOLM@STER follows 13 girls from the 765 Production Studio, whose sole goals is to become the top idols in the Japanese entertainment industry. Along with the laughs, struggles and tears that are inherently part of this journey, you will cheer for the girls of iDOLM@STER as they climb their way to the top!", + "posterPath": "/6Apjxs1eRlp2H4WZHQoDXktXd76.jpg", + "backdropPath": "/1Z1KnqoHxJeqeVrB8yPu0i5VuF2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2011-07-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.75, + "voteCount": 26, + "popularity": 3.9134 + }, + { + "id": 136369, + "title": "Tomorrow", + "originalTitle": "내일", + "overview": "Once guiding the 'dead', now saving those who want to die! The Afterlife Office Human Fantasy.", + "posterPath": "/ucqzXu2WchcuqCiT7cVQ30WRiGk.jpg", + "backdropPath": "/2lQ1PwGFZKM9EakCw1j4NShEuuj.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2022-04-01", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 8.4, + "voteCount": 261, + "popularity": 3.913 + }, + { + "id": 194704, + "title": "The Big Door Prize", + "originalTitle": "The Big Door Prize", + "overview": "A small town is forever changed when a mysterious machine appears, promising to reveal everyone's true potential. Soon residents start changing jobs, rethinking relationships, and questioning long-held beliefs—all in pursuit of a better future.", + "posterPath": "/w9iG3waL71PGlabP8kZe5Io6Igj.jpg", + "backdropPath": "/2rfO7zh6e7rKaKCCvU4QrQwXLgv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-03-28", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 98, + "popularity": 3.9118 + }, + { + "id": 45994, + "title": "The Kitchen", + "originalTitle": "Кухня", + "overview": "Maksim \"Max\" Lavrov wants to become a great chef. But he finds out that the kitchen isn't the place for an easy career. And at restaurant \"Claude Monet,\" this job looks to be harder and much more complicated than just cooking.", + "posterPath": "/swsQXJvk5mgYyp4tJGj6YKQcj13.jpg", + "backdropPath": "/luL4r1Wzpu0QRmYgafXZZ29THId.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2012-10-22", + "releaseYear": "2012", + "originalLanguage": "ru", + "voteAverage": 7.8, + "voteCount": 99, + "popularity": 3.9109 + }, + { + "id": 38953, + "title": "Gigolos", + "originalTitle": "Gigolos", + "overview": "Make a date with the Gigolos. An extremely rare and uncensored look into the personal and professional lives of five hot guys in Vegas who like to hang out, have fun and get girls, but in their case they get paid for it. They find themselves in some unexpected positions as they balance relationships, friends and family with the demands of their female clientele. A reality series like no other, Gigolos is not only provocative but also surprisingly heartfelt. It's a wild ride for these real-life escorts who never miss a trick.", + "posterPath": "/ipCI4xoficgRV0Owj1noL3Gw30H.jpg", + "backdropPath": "/wjX2jdBEgzOdYlmBR43AMpRtj57.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2011-04-07", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 11, + "popularity": 3.9102 + }, + { + "id": 66014, + "title": "My 600-lb Life", + "originalTitle": "My 600-lb Life", + "overview": "Telling powerful stories in hourlong episodes, TLC follows medical journeys of morbidly obese people as they attempt to save their own lives. The featured individuals - each weighing more than 600 pounds confront lifelong emotional and physical struggles as they make the courageous decision to undergo high-risk gastric bypass surgery. In addition to drastically changing their appearances, they hope to reclaim their independence, mend relationships with friends and family, and renew their feelings of self-worth.", + "posterPath": "/rmS6nrKAscKwt91OM6KcOal8DO6.jpg", + "backdropPath": "/gmSE7zgHx7Wrqh5GggAFYhrLTpA.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2012-02-01", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 38, + "popularity": 3.9101 + }, + { + "id": 228477, + "title": "Zorro", + "originalTitle": "Zorro", + "overview": "Diego de la Vega returns to California to avenge his father's murder. After assuming the title of Zorro, he confronts the Governor, the malevolent leader of the Chinese community and a secret society, placing the common good above all.", + "posterPath": "/k6n4fQTbEpPuS5zjMtmVNIsA0wi.jpg", + "backdropPath": "/f5ZF7H4y9k4bRLyg9obIUlMbDSs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2024-01-25", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.4, + "voteCount": 134, + "popularity": 3.9067 + }, + { + "id": 247721, + "title": "Teacup", + "originalTitle": "Teacup", + "overview": "Trapped on a farm in rural Georgia, a group of neighbours must put aside their differences and unite in the face of a mysterious and deadly threat.", + "posterPath": "/cP5zuQvWAFrgWptS0iXvDI3iND.jpg", + "backdropPath": "/3zo3YWYb78twGI3bC7kNrnV3GRJ.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765, + 18 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-10-10", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.099, + "voteCount": 196, + "popularity": 3.9063 + }, + { + "id": 67080, + "title": "Impossible Engineering", + "originalTitle": "Impossible Engineering", + "overview": "Behind every seemingly impossible marvel of modern engineering is a cast of historic trailblazers who designed new building techniques, took risks on untested materials and revolutionised their field. Each episode details how giant structures, record-beating buildings, war ships and spacecraft are built and work. As the show revels in these modern day creations, it also leaps back in time to recount the stories of the exceptional engineers whose technological advances made it all possible.", + "posterPath": "/u1yhsnr0k1o6WcZBXnYQfZTHJbK.jpg", + "backdropPath": "/pheUkBDAovW96bA38ZvvQNqYXVj.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2015-04-13", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 16, + "popularity": 3.9052 + }, + { + "id": 63085, + "title": "Ushio and Tora", + "originalTitle": "うしおととら", + "overview": "When he stumbles upon Tora, a demon who's been impaled by a spear, young Ushio frees the beast and demands his help in fighting other agents of evil.", + "posterPath": "/zF0OxtfZlSIGK7SLq77qiAqe7T1.jpg", + "backdropPath": "/lkfCmTRHLTIW6hL8sS1zW4wCWjO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-07-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 148, + "popularity": 3.9035 + }, + { + "id": 70998, + "title": "Souryo to Majiwaru Shikiyoku no Yoru ni...", + "originalTitle": "僧侶と交わる色欲の夜に…", + "overview": "At a high school reunion, Mio Fukatani reunites with a classmate she has not seen in years—Takahide Kujou. She had always wanted to know more about the kind-hearted boy in high school, but once she realizes that Kujou has become a monk, she believes that any chance of getting to know him romantically is slim. Deciding to drink away her sorrows, she ends up walking home drunk, and surprisingly, running into Kujou who helps her get home.\n\nHowever, once inside, Kujou's lust for Mio becomes apparent and the two share an erotic night of passion. As this steamy romance blossoms between these two unlikely lovers, Mio and Kujou will undoubtedly spend many nights together in utter ecstasy.", + "posterPath": "/ueI9EeoRdMVa7hWEm21nQEU8Zv3.jpg", + "backdropPath": "/3JN7T3qNfHOJVa7NWaRgkdSYBgr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-04-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 13, + "popularity": 3.9023 + }, + { + "id": 66671, + "title": "Agatha Raisin", + "originalTitle": "Agatha Raisin", + "overview": "Burnt out on office politics, Agatha Raisin retires early to a picturesque village in the Cotswolds and soon finds a second career as an amateur detective investigating mischief, mayhem, and murder in her deceptively quaint town.", + "posterPath": "/fgTaESCmIjvH503TV8t3dPu2im4.jpg", + "backdropPath": "/26OhV3Ha7kRBi6t0Z6F0bcInbsw.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 9648 + ], + "genres": [ + "Comedy", + "Mystery" + ], + "releaseDate": "2016-06-07", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 6.113, + "voteCount": 53, + "popularity": 3.9018 + }, + { + "id": 109330, + "title": "Madagascar: A Little Wild", + "originalTitle": "Madagascar: A Little Wild", + "overview": "The early years of the Madagascar heroes Alex the Lion, Marty the Zebra, Melman the Giraffe and Gloria the Hippo, as they grow up in a rescue habitat at the Central Park Zoo.", + "posterPath": "/c9d59YbGDlg15tNOQ18oqRmf09t.jpg", + "backdropPath": "/93mtIi3zXrZHPKgDukDtbfM89yn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2020-09-07", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7, + "voteCount": 261, + "popularity": 3.9008 + }, + { + "id": 8863, + "title": "VanDread", + "originalTitle": "ヴァンドレッド", + "overview": "Hibiki Tokai, a male third-class laborer from Taraak, ends up stuck on a battleship after a botched attempt at stealing a robot. When female pirates capture the Taraakian Vanguard, things don't look like they could get any worse.", + "posterPath": "/2eyd5lS6tPqHj1da9TNb0AmYRbe.jpg", + "backdropPath": "/iwnopbQ7ryRignptbjGFWVvzBYk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2000-10-03", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 21, + "popularity": 3.9002 + }, + { + "id": 81026, + "title": "Rise of the Teenage Mutant Ninja Turtles", + "originalTitle": "Rise of the Teenage Mutant Ninja Turtles", + "overview": "Rise up! The Teenage Mutant Ninja Turtles get an all-new look, new weapons, and awesome new powers! Join the legendary heroes, Raph, Leo, Donnie and Mikey as these brothers discover a Hidden City beneath New York, learn amazing mystic ninja skills, battle absurd mutants… and always find time for a slice of their favorite pizza! Cowabunga!", + "posterPath": "/4LZxcn6nWG1yWBKG0RD98HY13b4.jpg", + "backdropPath": "/tyMkJH0YvK6uBydUbN1nkW4Ad3f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2018-07-20", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.279, + "voteCount": 68, + "popularity": 3.8997 + }, + { + "id": 7714, + "title": "True Jackson, VP", + "originalTitle": "True Jackson, VP", + "overview": "A 15-year-old fashionista lands the opportunity of a lifetime when the CEO of Mad Style hires her as the vice president of its youth apparel division.", + "posterPath": "/fDuoIlEnpFei6ZTO9n4JyCVsyYN.jpg", + "backdropPath": "/dfsFdHl2w7nUMAxzUKCotaWA6F9.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2008-11-08", + "releaseYear": "2008", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 41, + "popularity": 3.8988 + }, + { + "id": 67389, + "title": "Golden Time", + "originalTitle": "ゴールデンタイム", + "overview": "Banri Tada is a freshman at a Tokyo law school. After an accident, he suffers severe memory loss. Despite the incident, he befriends fellow freshman, Mitsuo Yanagisawa, which leads him to the beautiful, yet obsessive, Kouko Kaga.", + "posterPath": "/heCpefPuxekDMofvR6juY2cCew6.jpg", + "backdropPath": "/pLXzjzd5fKNHBHUldvkKgptHpmJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2013-10-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.515, + "voteCount": 564, + "popularity": 3.8986 + }, + { + "id": 82766, + "title": "Run with the Wind", + "originalTitle": "風が強く吹いている", + "overview": "Kakeru, a former elite runner at high school, is chased for stealing food. He is saved by Kansei University student Haiji, who is also a runner. Haiji persuades Kakeru to live in the old apartment \"Chikuseisou\" where he plans to team up with fellow residents to enter Hakone Ekiden Marathon, one of the most prominent university races in Japan. Kakeru soon finds out that all of the residents except for Haiji and himself are complete novices.", + "posterPath": "/zBZLWzncbPeeLhi6DJAx7MspHlS.jpg", + "backdropPath": "/p79OjKQC2eYnFpK01gTiios5XqN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2018-10-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 57, + "popularity": 3.8982 + }, + { + "id": 62487, + "title": "Harvey Beaks", + "originalTitle": "Harvey Beaks", + "overview": "A mild-mannered young bird and his best friends, a pair of rambunctious siblings called Fee and Foo, seek adventure and mischief in the magical forest that they call home.", + "posterPath": "/8ZyogSmk6UFKz6Cz3VOo93QRuB4.jpg", + "backdropPath": "/1MgkWA4WNSZcfYeumJ3KdxZa3Gy.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 16, + 35 + ], + "genres": [ + "Family", + "Animation", + "Comedy" + ], + "releaseDate": "2015-03-28", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 25, + "popularity": 3.8978 + }, + { + "id": 60626, + "title": "From Dusk Till Dawn: The Series", + "originalTitle": "From Dusk Till Dawn: The Series", + "overview": "The horror and crime thriller genres collide in this new original series from Robert Rodriguez, based on his cult grindhouse classic about bank-robbing brothers on the run, a lawman bent on bringing them to justice, the devout family caught in the cross-fire, and an ancient evil eager to feast on them all.", + "posterPath": "/pAfTOb7lHvRlTa86jw99nM8iU3K.jpg", + "backdropPath": "/fFi7yMB4ylHYRfn4o8idbhgnoRK.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 10765, + 18 + ], + "genres": [ + "Crime", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2014-03-11", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 351, + "popularity": 3.8973 + }, + { + "id": 68467, + "title": "3%", + "originalTitle": "3%", + "overview": "In a future where the elite inhabit an island paradise far from the crowded slums, you get one chance to join the 3% saved from squalor.", + "posterPath": "/uLBJSLuAQ8UqLIKZVWG3uNEXwjt.jpg", + "backdropPath": "/13fAhlv2BCqHek8VrDNi7cZMuG3.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-11-25", + "releaseYear": "2016", + "originalLanguage": "pt", + "voteAverage": 7.119, + "voteCount": 498, + "popularity": 3.8971 + }, + { + "id": 209876, + "title": "Dope Thief", + "originalTitle": "Dope Thief", + "overview": "Two lifelong friends in Philadelphia pose as DEA agents to rob small-time drug dealers. It's a perfect grift—until they choose the wrong mark and become targets of a massive narcotics enterprise.", + "posterPath": "/fB0LKIEagglaJcNYzFPkYAEWON.jpg", + "backdropPath": "/qbUeqIQAn1cy01OuSctGmatVJCC.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2025-03-13", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 104, + "popularity": 3.8968 + }, + { + "id": 4346, + "title": "Freddy's Nightmares", + "originalTitle": "Freddy's Nightmares", + "overview": "The evil, sinister killer of the \"Nightmare On Elm Street\" movies, Freddy Krueger, hosts this show, where each week, he shows us a tale of evil and death about the lives of people who live in Springwood.", + "posterPath": "/tISTXELQn3ZFC8mgBwEH77xKXkZ.jpg", + "backdropPath": "/m1Ycku6rUnB2ibyYKoq4UtZYqxA.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10765 + ], + "genres": [ + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1988-10-09", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 205, + "popularity": 3.896 + }, + { + "id": 2264, + "title": "The Care Bears", + "originalTitle": "The Care Bears", + "overview": "The Care Bears live in a faraway place up in the clouds called Care-a-Lot. They travel around the world on Missions in Caring, whilst evil villains such as Professor Coldheart and Lord No Heart, try to thwart their plans.", + "posterPath": "/cEfqYEzVlnBLnT36GJ3y8Jm5gAO.jpg", + "backdropPath": "/lyw9kEctO7msqLbe8DgxEbo6OYp.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1985-09-14", + "releaseYear": "1985", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 91, + "popularity": 3.8956 + }, + { + "id": 10118, + "title": "Father Knows Best", + "originalTitle": "Father Knows Best", + "overview": "Family man Jim Anderson copes with the everyday problems among his wife Margaret and their three children as they experience day-to-day changes.", + "posterPath": "/5uvDdhz7Fq2OceIbmmOVpk2cSwx.jpg", + "backdropPath": "/lGzltA2baJo3depl1ynoVG7lhdS.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751 + ], + "genres": [ + "Comedy", + "Family" + ], + "releaseDate": "1954-10-03", + "releaseYear": "1954", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 23, + "popularity": 3.8943 + }, + { + "id": 215103, + "title": "Teri Meri Doriyaann", + "originalTitle": "तेरी मेरी डोरियाँ", + "overview": "It’s hate at first sight for Sahiba and Angad! But destined to be together, their lives get intertwined by a marriage alliance, and a love-hate story ensues.", + "posterPath": "/4BHDmYiuSnNL3nqKIOzLJKYX4AN.jpg", + "backdropPath": "/3rIU17p1zzFEWnt7qyDEjC9RJJu.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751 + ], + "genres": [ + "Drama", + "Family" + ], + "releaseDate": "2023-01-04", + "releaseYear": "2023", + "originalLanguage": "hi", + "voteAverage": 7.2, + "voteCount": 111, + "popularity": 3.8939 + }, + { + "id": 68799, + "title": "Gilmore Girls: A Year in the Life", + "originalTitle": "Gilmore Girls: A Year in the Life", + "overview": "Set nearly a decade after the finale of the original series, this revival follows Lorelai, Rory and Emily Gilmore through four seasons of change.", + "posterPath": "/8vqjelflnBJAsfRWRQVGDkGfCFb.jpg", + "backdropPath": "/d6zPhw7e6iEY5iRvtm5gL1hbS3h.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2016-11-25", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.293, + "voteCount": 410, + "popularity": 3.8933 + }, + { + "id": 136044, + "title": "The Outlaws", + "originalTitle": "The Outlaws", + "overview": "Seven strangers from different walks of life - people who would never normally interact - are forced to work together to renovate a derelict community centre. They resent the menial physical labour and they resent each other. But when one of their number gets dragged into a dangerous world of organised crime, they unite in ways none of them thought possible.", + "posterPath": "/s8vp0S0iz2nPb7TpOpV0rHbm1er.jpg", + "backdropPath": "/nQb4zTRULkR1ifcoKGxPvkdgPSz.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 18 + ], + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "releaseDate": "2021-10-25", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 134, + "popularity": 3.8932 + }, + { + "id": 74180, + "title": "My Marriage Partner Is My Student, a Cocky Troublemaker", + "originalTitle": "お見合い相手は教え子、強気な、問題児。", + "overview": "Teacher Nano Saikawa hasn't given much thought to marriage, but her father's friend wants her to have a marriage interview with his son, Souichirou Takamiya. After the interview, they spend the day together. As they gradually become more comfortable with one another, Souichirou asks for her hand in marriage. Things quickly heat up between them, and the two wind up in bed together. However, when she removes his glasses, she discovers he is not Souichirou; he is actually one of her problem students, Souji Kuga!\n\nSouji's explanation is watertight: when he realized his brother was to be Nano's intended, Souji posed as him in order to be with her. And what's more, he is even confident that his family will approve of their marriage. However, an illicit relationship with a student is the last thing Nano wants. But will she be able to resist his charms, especially when her body begins to ache for his?.", + "posterPath": "/hK2xyIPdTD3cGgjxnebjRiueqCQ.jpg", + "backdropPath": "/m4Ub1bgSLNlVeKKX1sXjxQRIv2g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-10-01", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 13, + "popularity": 3.8931 + }, + { + "id": 127727, + "title": "Middlemost Post", + "originalTitle": "Middlemost Post", + "overview": "When a reformed raincloud teams up with a shipwrecked sea-postman and a magic walrus, the three form the Middlemost Post — the wackiest and most loveable postal service on Mt. Middlemost.", + "posterPath": "/4YYG6xn24XwEAvgQVgg6K1Gmhpy.jpg", + "backdropPath": "/1cKmoepeC6iUAGERULgOyyzhlhd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2021-07-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 12, + "popularity": 3.893 + }, + { + "id": 91764, + "title": "Sorcerous Stabber Orphen", + "originalTitle": "魔術士オーフェンはぐれ旅", + "overview": "Orphen is a powerful sorcerer who is notoriously lazy. Everything changes when he finds a way to save his sis, who was turned into a dragon during their days at magic academy. Betrayed by friends who refused to help, Orphen will stop at nothing to track her down, even if he has to go it alone.", + "posterPath": "/nWXrfd7HjbhRFTV3L2BPSNF0SK5.jpg", + "backdropPath": "/cFrLAsCYifsl2XuJcyvBXAybrOR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2020-01-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 52, + "popularity": 3.893 + }, + { + "id": 81114, + "title": "God Friended Me", + "originalTitle": "God Friended Me", + "overview": "A self-proclaimed \"pesky atheist\" is encouraged to help strangers by someone claiming to be God who friends him on Facebook.", + "posterPath": "/u2LsYYVniqK95fKHid85x2kngRT.jpg", + "backdropPath": "/vcw31JewR0wuX3RZ8x3Khdptsih.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10751, + 9648, + 35 + ], + "genres": [ + "Drama", + "Family", + "Mystery", + "Comedy" + ], + "releaseDate": "2018-09-30", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.73, + "voteCount": 202, + "popularity": 3.8918 + }, + { + "id": 135251, + "title": "The Idol", + "originalTitle": "The Idol", + "overview": "After a nervous breakdown derailed Jocelyn's last tour, she’s determined to claim her rightful status as the greatest and sexiest pop star in America. Her passions are reignited by Tedros, a nightclub impresario with a sordid past. Will her romantic awakening take her to glorious new heights or the deepest and darkest depths of her soul?", + "posterPath": "/gO9k7t9jSdkkWVG0deMZDpELZGw.jpg", + "backdropPath": "/jXx7drNHBtLJCHQPMRgiYyhrtKz.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2023-06-04", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 5.407, + "voteCount": 289, + "popularity": 3.8917 + }, + { + "id": 261102, + "title": "The Secret Lives of Mormon Wives", + "originalTitle": "The Secret Lives of Mormon Wives", + "overview": "The scandalous world of a group of Mormon mom influencers implodes when they get caught in the midst of a swinging sex scandal that makes international headlines. Now, their sisterhood is shook to its core. Faith, friendship and reputations are all on the line. Will #MomTok be able to survive and continue to give the rulebook a run for its money, or will this group fall from grace?", + "posterPath": "/aPGMZcStogqNo2tvU7PmNvpMK7y.jpg", + "backdropPath": "/l0ZjaXlVKuQysTjEZ4CnFOtedCa.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 99 + ], + "genres": [ + "Reality", + "Documentary" + ], + "releaseDate": "2024-09-06", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6.397, + "voteCount": 29, + "popularity": 3.8897 + }, + { + "id": 79699, + "title": "La hija del Mariachi", + "originalTitle": "La hija del Mariachi", + "overview": "Emiliano, a wealthy Mexican businessman, is ripped off by his friends and partners. Hidden in Bogotá, he receives help from Rosario, a mariachi singer. She does not know Emiliano’s background and that he is wanted by the police of two countries and by a criminal organization. With a new name and personality, he adapts well to his new life as a mariachi band member and finds in Rosario the love of his life. But he is afraid his secret will tear them apart. He needs to clear his name and resolve his case to avoid that fate. Meanwhile, he often finds his love tested and vulnerable to several rivals, but Rosario always trusts that he has been honest with her.", + "posterPath": "/a9J1rl8X4klFNMLTFGIJIHIjXgf.jpg", + "backdropPath": "/33YZcb774UyrSaUWMuQPCLvozU8.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2006-09-04", + "releaseYear": "2006", + "originalLanguage": "es", + "voteAverage": 8.033, + "voteCount": 1581, + "popularity": 3.8896 + }, + { + "id": 136295, + "title": "Hidden Truths 2", + "originalTitle": "Verdades Secretas 2", + "overview": "With no money and a sick young son, Angel returns to the underworld of fashion and luxury. Giovanna believes that Angel killed her father and will do anything to put her in jail. As a result, they start a personal war, which involves Cristiano, a private investigator.", + "posterPath": "/59qR62h1gkXNZv1zKLkWzk5SO2j.jpg", + "backdropPath": "/3CHC5GAlTFoFrf6BUgjO8Z9D0QN.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "2021-10-20", + "releaseYear": "2021", + "originalLanguage": "pt", + "voteAverage": 6.2, + "voteCount": 14, + "popularity": 3.8886 + }, + { + "id": 251883, + "title": "Thank You, Next", + "originalTitle": "Kimler Geldi Kimler Geçti", + "overview": "After a painful breakup, a young lawyer dives head first into the confusing world of modern dating, with the unwavering support of her best friends.", + "posterPath": "/q3tO7n5GbRcnPwnTfbimY4y3yv4.jpg", + "backdropPath": "/sdl9K3IZDo6Z2pqIUiNUz2YyNDJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2024-05-09", + "releaseYear": "2024", + "originalLanguage": "tr", + "voteAverage": 7.564, + "voteCount": 39, + "popularity": 3.8871 + }, + { + "id": 93256, + "title": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "originalTitle": "慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~", + "overview": "Goddess Ristarte summons Seiya Ryuuguuin, an OVERLY cautious hero to save the world of Gaeabrande. Seiya is obsessed with muscle training and buying extra armor to deal with low level creatures. It’s simply one cautious mission at-a-time for this hero!", + "posterPath": "/bbg1FMU7c3W06KUKrgIhIECFliZ.jpg", + "backdropPath": "/hikJz6TqmnS2czz18QZKVgWmKs2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2019-10-02", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 278, + "popularity": 3.8852 + }, + { + "id": 55925, + "title": "Hanzawa Naoki", + "originalTitle": "半沢直樹", + "overview": "Hanzawa Naoki works as a loan manager at the Osaka Nishi branch of Tokyo Central Bank. One day, Hanzawa makes a loan contract for 500 million yen with Nishi Osaka Steel Company. Hanzawa didn't want to approve the loan, but he had to due to the branch manager's order. Nishi Osaka Steel Company seems financially stable, but the company actually hides massive amounts of debt through fraudulent accounts. The company is caught. Three months later, Nishi Osaka Steel Company goes bankrupt. The bank's branch manager is Asano. He is an ambitious man and tries to shift the blame to Hanzawa. Hanzawa then attends an inquiry about the loan failure at the bank's headquarters in Tokyo. Hanzawa denies fault and promises to retrieve the 500 million yen loan. He did this because it's the only way for Hanzawa to survive as a banker.", + "posterPath": "/4Qnk3QvC8gxTWH5uM8thovg1j4Q.jpg", + "backdropPath": "/i3VsZ816Hf6z96REOohkwxCWj4z.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2013-07-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 85, + "popularity": 3.8838 + }, + { + "id": 72025, + "title": "The Jim Jefferies Show", + "originalTitle": "The Jim Jefferies Show", + "overview": "Each week, Jefferies tackles the week’s top stories from behind his desk and travels the globe to far-off locations to provide an eye opening look at hypocrisy around the world. Featuring interviews, international field pieces, and man on the ground investigations, Jim tackles the news of the day with no-bulls**t candor, piercing insight and a uniquely Aussie viewpoint.", + "posterPath": "/oGBUMBbBFlzFH41TADyFpkZbPWw.jpg", + "backdropPath": "/6ZBGjgnY6IEcMiWdKHHCDCfnOd.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2017-06-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.5, + "voteCount": 43, + "popularity": 3.8826 + }, + { + "id": 10848, + "title": "McMillan & Wife", + "originalTitle": "McMillan & Wife", + "overview": "McMillan & Wife is a lighthearted American police procedural that aired on NBC from September 17, 1971 to April 24, 1977. Starring Rock Hudson and Susan Saint James in the title roles, the series premiered in 90-minute episodes as part of the wheel series NBC Mystery Movie, in rotation with Columbo and McCloud. Initially airing on Wednesday night, the original line-up was shifted to Sundays in the second season, where it aired for the rest of its run. This was the first element to be created specially for the Mystery Movie strand.", + "posterPath": "/AfR5azFdmuEJ3V89mYRDSUpd7ul.jpg", + "backdropPath": "/lV0iwDzIbumemadNbkKyHQYMWPx.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "1971-09-29", + "releaseYear": "1971", + "originalLanguage": "en", + "voteAverage": 6.9, + "voteCount": 24, + "popularity": 3.8815 + }, + { + "id": 124067, + "title": "Winning Time: The Rise of the Lakers Dynasty", + "originalTitle": "Winning Time: The Rise of the Lakers Dynasty", + "overview": "A fast-break series chronicling the professional and personal lives of the 1980s Los Angeles Lakers, one of sports’ most revered and dominant dynasties — a team that defined an era, both on and off the court.", + "posterPath": "/6B9hTge98t52bQofyvs1M370k7n.jpg", + "backdropPath": "/Avl8fHtx4QUfdv15grQTHK8ACvr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2022-03-06", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 169, + "popularity": 3.8788 + }, + { + "id": 96203, + "title": "Gleipnir", + "originalTitle": "グレイプニル", + "overview": "Shuichi Kagaya is an ordinary high school kid in a boring little town. But when a beautiful classmate is caught in a warehouse fire, he discovers a mysterious power: he can transform into a furry dog with an oversized revolver and a zipper down his back. He saves the girl’s life, sharing his secret with her. But she’s searching for the sister who killed her family, and she doesn’t care how degrading it gets: she will use Shuichi to accomplish her mission…", + "posterPath": "/eF1kUIoyL2dxPGGsxNXYrkrAPs2.jpg", + "backdropPath": "/hfMLaKqYeOrWRZNuiAYggUW5bPG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.128, + "voteCount": 694, + "popularity": 3.8786 + }, + { + "id": 46268, + "title": "Moonshiners", + "originalTitle": "Moonshiners", + "overview": "Think the days of bootleggers, backwoods stills and \"white lightning\" are over? Not a chance! It's a multi-million dollar industry. But perhaps more importantly to the moonshiners, it's a tradition dating back hundreds of years, passed down to them from their forefathers. It's part of their history and culture. While this practice is surprisingly alive and well, it's not always legal. Moonshiners tells the story of those who brew their shine - often in the woods near their homes using camouflaged equipment - and the local authorities who try to keep them honest. Viewers will witness practices rarely, if ever, seen on television including the sacred rite of passage for a moonshiner - firing up the still for the first time. They will also meet legends, including notorious moonshiner Marvin \"Popcorn\" Sutton.", + "posterPath": "/brgOpuQs3nhqRKQWomMv0jpHqxM.jpg", + "backdropPath": "/jH8BWwd1kIfY3N614o9idhW8rOJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2011-12-06", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 41, + "popularity": 3.8771 + }, + { + "id": 1994, + "title": "Eve", + "originalTitle": "Eve", + "overview": "Eve is an American sitcom starring Eve, Jason Winston George, Ali Landry, Natalie Desselle-Reid, Brian Hooks and Sean Maguire. It aired on the UPN network from September 15, 2003 to May 11, 2006, with 66 episodes produced spanning 3 seasons. The series follows Shelly, a beautiful and intelligent woman of the new generation trying to navigate the exhilarating world of 21st century love, romance and career. The series was nominated in 2004 for Teen Choice Award for Choice Breakout TV Show and had seven nominations in major awards.", + "posterPath": "/fgZgKdFU2pkY3XrtCvTk2MZLNgc.jpg", + "backdropPath": "/3OLIrCTxTGlpmnxn4AVDEtMvez3.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-09-15", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 8.625, + "voteCount": 16, + "popularity": 3.8765 + }, + { + "id": 102966, + "title": "100 días para enamorarnos", + "originalTitle": "100 días para enamorarnos", + "overview": "Two couples who struggle to be near each other decide to give another chance for each other, 100 days for them to fall back in love.", + "posterPath": "/r13t1ohRQAlZpsjxgTKY7ypkWPc.jpg", + "backdropPath": "/iPzuUglKoIdWzETeRl6XEUeYdwr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2020-04-28", + "releaseYear": "2020", + "originalLanguage": "es", + "voteAverage": 7.7, + "voteCount": 1037, + "popularity": 3.8763 + }, + { + "id": 139130, + "title": "Skip and Loafer", + "originalTitle": "スキップとローファー", + "overview": "Iwakura Mitsumi, a tenacious country girl, prepares for high school in the big city. She meets the handsome Shima Sousuke, whose easygoing ways help her adapt in the real world.", + "posterPath": "/xHVy0gnLNpkNAdtd3DHsUVYYEDN.jpg", + "backdropPath": "/qelfKA1w2bNQIFthb606lIpbJHX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.778, + "voteCount": 72, + "popularity": 3.8745 + }, + { + "id": 100022, + "title": "Kemono Jihen", + "originalTitle": "怪物事変", + "overview": "When a series of animal bodies that rot away after a single night begin appearing in a remote mountain village, Inugami, a detective from Tokyo who specializes in the occult, is called to investigate.\n\nWhile working the case, he befriends a strange boy who works in the field every day instead of going to school. Shunned by his peers and nicknamed “Dorotabo” after a yokai that lives in the mud, he helps Inugami uncover the truth behind the killings — but supernatural forces are at work, and while Dorotabo is just a nickname, it might not be the only thing about the boy that isn’t human.", + "posterPath": "/vlEYvTnexLVEYGnX508DMwWGHYv.jpg", + "backdropPath": "/jQfH20FEhvZpnbTGpZbWPOzfAZd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 115, + "popularity": 3.8737 + }, + { + "id": 172, + "title": "Arli$$", + "originalTitle": "Arli$$", + "overview": "A behind-the-scenes look at the glitzy, big-money world of professional sports following the eternally optimistic and endlessly resourceful L.A. sports agent Arliss Michaels whose Achilles' heel is his inability to say “no” to clients and employees.", + "posterPath": "/cJgRJdI1UsdpXEpkVtlmT0quTzm.jpg", + "backdropPath": "/faukFVjVlLlwXIEhYllwdZaZOR.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1996-08-10", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 12, + "popularity": 3.8734 + }, + { + "id": 202208, + "title": "The Artful Dodger", + "originalTitle": "The Artful Dodger", + "overview": "It's a tale of reinvention, betrayal, redemption, and love with a twist. Jack Dawkins is The Artful Dodger, whose pickpocketing fingers have become the skilled hands of a surgeon. He is torn between an impossible love and the criminal underworld he secretly craves. This will require Artfulness.", + "posterPath": "/g3y1v3c7nLGZBaxWSxv3i4yV9bc.jpg", + "backdropPath": "/246Tozdy8IwzLlWqGXnEGPmgEVv.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 10759 + ], + "genres": [ + "Drama", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2023-11-29", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.041, + "voteCount": 181, + "popularity": 3.8725 + }, + { + "id": 79130, + "title": "Another Life", + "originalTitle": "Another Life", + "overview": "After a massive alien artifact lands on Earth, Niko Breckinridge leads an interstellar mission to track down its source and make first contact.", + "posterPath": "/htazQ0cPoloL5SJ2bqOCKh9UTcc.jpg", + "backdropPath": "/6ygiUWflbmz5p2LFc3COVHriQzK.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-07-25", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.057, + "voteCount": 432, + "popularity": 3.8724 + }, + { + "id": 93292, + "title": "Duncanville", + "originalTitle": "Duncanville", + "overview": "Like most 15-year-olds, Duncan can see adulthood on the horizon: money, freedom, cars and girls; but the reality is more like: always being broke, driving with one's mom sitting shotgun and babysitting one's sister. He's not exceptional, but he has a wild imagination in which he's never anything less than amazing.", + "posterPath": "/fLJ74pNLxYrAMFBNI95VSDPiOGd.jpg", + "backdropPath": "/gahwgNlUOWdA7pSgH0HJPEiVOsF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2020-02-16", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.7, + "voteCount": 272, + "popularity": 3.8712 + }, + { + "id": 45579, + "title": "The Moon Embracing the Sun", + "originalTitle": "해를 품은 달", + "overview": "Years after she's assumed dead by the palace, a young noblewoman, now trained as a shaman, returns to court to reclaim her rightful position as queen.", + "posterPath": "/zr6XJUtT61gWhWwjPIraY13SkAE.jpg", + "backdropPath": "/piKLj7BFkbVntaVmsGjZQigZQFl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-01-04", + "releaseYear": "2012", + "originalLanguage": "ko", + "voteAverage": 7.9, + "voteCount": 227, + "popularity": 3.8703 + }, + { + "id": 201019, + "title": "Tale of the Nine Tailed 1938", + "originalTitle": "구미호뎐1938", + "overview": "A K-fantasy action unfolds as the Nine-tailed fox makes a crash landing in the year 1938, an era of chaos, and he struggles to return to the present.", + "posterPath": "/xB55oDrJiIYn2yeC9YNy1KJ4rl5.jpg", + "backdropPath": "/d647Eb6NAULxaHknYzwXbRGlZnT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-05-06", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 8.1, + "voteCount": 80, + "popularity": 3.8702 + }, + { + "id": 61838, + "title": "Barbie: Life in the Dreamhouse", + "originalTitle": "Barbie: Life in the Dreamhouse", + "overview": "The series is set as a reality TV-esque show following Barbie, her sisters and her friends in the day-to-day activities that take place in the Dreamhouse and surrounding areas. Much of the humor in the show derives from parodying and lampooning both the traditional reality TV format and the Barbie franchise itself.", + "posterPath": "/c7HIZXKDaDekFAIcWU7bxP8cTv6.jpg", + "backdropPath": "/6ZYaLOle3iKOHlXqADnxt592v3O.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751 + ], + "genres": [ + "Animation", + "Family" + ], + "releaseDate": "2012-05-11", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 421, + "popularity": 3.87 + }, + { + "id": 6137, + "title": "The Courtship of Eddie's Father", + "originalTitle": "The Courtship of Eddie's Father", + "overview": "The Courtship of Eddie's Father is an American television sitcom based on the 1963 movie of the same name, which was based on the book written by Mark Toby. It tells the story of a widower, Tom Corbett, who is a magazine publisher, and his son, Eddie, who believes his father should marry, and manipulates situations surrounding the women his father is interested in. ABC had acquired the rights to the story; the series debuted on September 17, 1969, and was last broadcast on March 1, 1972.\n\nBixby received an Emmy nomination for the show.", + "posterPath": "/gMMgHbBnR1DXtHCfWvWqQnmaJVI.jpg", + "backdropPath": "/jK2RU0wxqy1BM5bWdqTgYs26qsm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10751, + 10762 + ], + "genres": [ + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1969-09-17", + "releaseYear": "1969", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 16, + "popularity": 3.8687 + }, + { + "id": 49933, + "title": "Love Undercover", + "originalTitle": "Ruhun Duymaz", + "overview": "Onur Karasu is a successful intelligence agent who was promoted to head of the department at a young age and has been after Civan Koral, the owner of Turkey's largest jewelry company. Onur, who thinks that Civan keeps the documents related to his illegal business in the safe in his house, becomes lovers with Civan's sister Hilal in order to get in and out of the house. When he learns that Civan will move abroad, Onur makes a sudden decision to propose to Hilal in order to get the documents without letting her get away. He plans to open the safe on their engagement day and arrest Civan, who is there for his sister's engagement. What he doesn't take into account is Hilal's close friend Ece. While Ece is trying to figure out what Onur is up to, her plans are upset when Onur catches her. Onur and Ece, two poles as opposite as day and night, will have to work together in a way they never wanted to.", + "posterPath": "/8yztVe81RN9rsHU4dW0ZxX4bKgU.jpg", + "backdropPath": "/1ugIWzpNewqsMws7UZipEcdth6w.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-07-24", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 8.5, + "voteCount": 15, + "popularity": 3.8681 + }, + { + "id": 64503, + "title": "Vai Que Cola", + "originalTitle": "Vai Que Cola", + "overview": "", + "posterPath": "/zkzMxY964DsFMmS42pL1j4h4KyP.jpg", + "backdropPath": "/7fNX16oQohjtxOHs9zm9cZRx0Fd.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-07-08", + "releaseYear": "2013", + "originalLanguage": "pt", + "voteAverage": 7.9, + "voteCount": 12, + "popularity": 3.868 + }, + { + "id": 230777, + "title": "The Trunk", + "originalTitle": "트렁크", + "overview": "A secret marriage service is uncovered when a trunk washes up on the shore, revealing the strange marriage between a couple in the thick of it all.", + "posterPath": "/3YQtEqg923Os5w5Qg8sbQL41shw.jpg", + "backdropPath": "/79DCyZhUcFsiGfyjNlFH1lS1t4c.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2024-11-29", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 6.92, + "voteCount": 56, + "popularity": 3.8672 + }, + { + "id": 155779, + "title": "Tiny Toons Looniversity", + "originalTitle": "Tiny Toons Looniversity", + "overview": "Follow Babs and Buster Bunny, Sweetie Bird, Hamton J. Pig, and Plucky Duck as they learn what it takes to be a professional toon.", + "posterPath": "/siC9LhWsSTpUvuSGNsCQZGE8zcI.jpg", + "backdropPath": "/nRWIpNayk6lyk5Acm60qditaa3H.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-09-09", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 26, + "popularity": 3.8666 + }, + { + "id": 155231, + "title": "Link: Eat, Love, Kill", + "originalTitle": "링크: 먹고, 사랑하라, 죽이게", + "overview": "Eun Gye-hoon, a famous chef, opens a restaurant in a town he lived when he was a little kid. In the past, he had a twin sister. But after a traumatic incident tat the hometown, the family lost her. He used to have a strong emotional link to his sister, able to synchronize with any kinds of feelings she was having. When Noh Da-hyun, a young woman in need of help, visits him one day, Gye-hoon starts to feel that strong link again.", + "posterPath": "/lyQQFIbDsdSBYpxG2EcS7gGEZ5j.jpg", + "backdropPath": "/nNB8ST1cCslJLPI9Uhn5uVht2Dd.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2022-06-06", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 7.7, + "voteCount": 121, + "popularity": 3.8663 + }, + { + "id": 215333, + "title": "The Snow Girl", + "originalTitle": "La chica de nieve", + "overview": "When a girl disappears in Málaga, a young journalist becomes fiercely determined to uncover the truth, risking everything to bring closure to the family.", + "posterPath": "/xoxglyQtYXsMk15DpsWVvbG1X9F.jpg", + "backdropPath": "/y8pTB7knYgwHxNSMOyGNTPqGL1S.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648 + ], + "genres": [ + "Crime", + "Mystery" + ], + "releaseDate": "2023-01-27", + "releaseYear": "2023", + "originalLanguage": "es", + "voteAverage": 7.209, + "voteCount": 189, + "popularity": 3.8653 + }, + { + "id": 4940, + "title": "Bad Girls Club", + "originalTitle": "Bad Girls Club", + "overview": "A cast of young women, who recognize that their outrageous behavior has hindered their relationships, careers and lives, are brought together in a beautiful mansion. They claim they want to change, but will living together help them move forward and turn their lives around – or will chaos rule?", + "posterPath": "/cEMlNl2madv94cfsNHbPiFBCaFg.jpg", + "backdropPath": "/8SaCHxWQ18qvXX9OnrVYaNd6VPD.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2006-12-05", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 86, + "popularity": 3.8653 + }, + { + "id": 261317, + "title": "Mistletoe Murders", + "originalTitle": "Mistletoe Murders", + "overview": "Emily Lane is a good-natured Christmas shop owner with a secret past. When local murders begin to pop up in Fletcher’s Grove, Emily can’t help but to use her unique talents from her past life to help solve murders that affect people in her new life. She crosses paths with Detective Sam Wilner who she starts to make a connection with, until he comes to learn there is more to Emily than meets the eye.", + "posterPath": "/yIdnPgf8rSHea1mWtOVH4NUzkfZ.jpg", + "backdropPath": "/vaYLp15PBoLrJWWlTUvgKeB7dXw.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2024-10-31", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 11, + "popularity": 3.865 + }, + { + "id": 35871, + "title": "Magical Princess Minky Momo", + "originalTitle": "魔法のプリンセス ミンキーモモ", + "overview": "The land of dreams, Fenarinarsa, was once a kingdom on Earth, but the kingdom gradually drifted away as humanity's belief in dreams waned. To save the kingdom, the king sends his only daughter, Minky Momo, on a mission to restore humanity's dreams. After establishing herself as the daughter of a childless couple, Momo strives to transform Earth into a planet rich with dreams once more. Armed with the power to transform into an adult with the proper skills to handle any situation, and accompanied by her animal companions, Momo vows to succeed in her quest by any means necessary.", + "posterPath": "/hmd5k7CIvAwoDaKdx82Y4qe3YGx.jpg", + "backdropPath": "/vxhdFxWKU74igmgVg4XjbW6yHa0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1982-03-18", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 11, + "popularity": 3.8647 + }, + { + "id": 1767, + "title": "Bobby's World", + "originalTitle": "Bobby's World", + "overview": "Bobby Generic lives in a typical suburban neighborhood and uses his overactive imagination to discover a world of daring adventure, incredible wonder and lots of laughs — all in pint-sized perspective.", + "posterPath": "/zrcPIkzTim0ICyc6h81LfmBSQgB.jpg", + "backdropPath": "/4cKT4tpP5xuuqfI9BWCdfIzKDXs.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10751, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "1990-09-08", + "releaseYear": "1990", + "originalLanguage": "en", + "voteAverage": 6.963, + "voteCount": 148, + "popularity": 3.8646 + }, + { + "id": 37759, + "title": "Dallas", + "originalTitle": "Dallas", + "overview": "J.R., Bobby and Sue Ellen Ewing are all back at Southfork, with plenty of secrets, schemes and betrayals in mind. This time, they're joined by the next generation of Ewings, who take ambition and deception to a new level.", + "posterPath": "/c76QP3y5PnZ5L1wUvRDqUuP2bd.jpg", + "backdropPath": "/xCyr9ay1lMgkA6HV2ugiWIFQtiR.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-06-13", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.953, + "voteCount": 75, + "popularity": 3.8642 + }, + { + "id": 61445, + "title": "Rage of Bahamut", + "originalTitle": "神撃のバハムート", + "overview": "Two thousand years ago, the black-and-silver-winged dragon, Bahamut, terrorized the magical land of Mistarcia. The humans, god, and demons that inhabited the land united forces against the fiend and sealed its power into a key which was split in two, one half protected by gods and the other protected by demons. Now, Mistarcia is a peaceful realm – until a human woman steals the god’s half of the key. Based on the immensely popular digital card game, Rage of Bahamut: Genesis is an exciting blend of action and fantasy.", + "posterPath": "/osUNCb2v2kIlyLg9DgM5zBlnyRB.jpg", + "backdropPath": "/asUFPHTGvdLvyyf3YxWZNvPWkoa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 135, + "popularity": 3.8634 + }, + { + "id": 41692, + "title": "Lonesome Dove", + "originalTitle": "Lonesome Dove", + "overview": "A pair of longtime friends and former Texas Rangers crave one last adventure before hanging-up their spurs. After stealing over a thousand head of cattle from rustlers south of the border, they recruit an unlikely crew of hands to drive the herd 3,000 miles north to the grasslands of Montana.", + "posterPath": "/qK4iseZGf0YhYx53ecawSGhL0sl.jpg", + "backdropPath": "/grThKpUYZ5nHppqAEvmF0pTSJa0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 37 + ], + "genres": [ + "Drama", + "Western" + ], + "releaseDate": "1989-02-05", + "releaseYear": "1989", + "originalLanguage": "en", + "voteAverage": 7.893, + "voteCount": 201, + "popularity": 3.8629 + }, + { + "id": 4225, + "title": "The Gadget Show", + "originalTitle": "The Gadget Show", + "overview": "The Gadget Show is a British television series which focuses on consumer technology. The show, which is broadcast on Channel 5 is currently presented by Jason Bradbury and Rachel Riley with Jon Bentley and Pollyanna Woodward.\n\nOriginally a thirty-minute show, it was extended to forty-five minutes, then later to sixty minutes. Repeats have also aired on the digital channel 5*, syndicated broadcasts on Discovery Science and Dave, and Channel 5's Internet on-demand service Demand 5. In Australia, it is aired on The Lifestyle Channel.", + "posterPath": "/b8hftDjIoVBiGP2gaBxjAU6GHdz.jpg", + "backdropPath": "/xXXt9FWD0coqGrj8FqbeowR69MY.jpg", + "mediaType": "tv", + "genreIds": [ + 10763, + 99 + ], + "genres": [ + "News", + "Documentary" + ], + "releaseDate": "2004-06-07", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 6.7, + "voteCount": 13, + "popularity": 3.8627 + }, + { + "id": 2215, + "title": "Monarch of the Glen", + "originalTitle": "Monarch of the Glen", + "overview": "Archie MacDonald, a young restaurateur is called back to his childhood home of Glenbogle where he is told he is the new Laird of Glenbogle.", + "posterPath": "/jeMhROvJWKTQuwSip5z5RsNPyfU.jpg", + "backdropPath": "/ecxni5kM5664x1cy4Hdi2WB1Zdy.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2000-02-27", + "releaseYear": "2000", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 23, + "popularity": 3.8614 + }, + { + "id": 61740, + "title": "Maya the Bee", + "originalTitle": "Die Biene Maja", + "overview": "Hello everyone, I'm Maya the Bee! What do I love? Freedom! That's why I live in the meadow instead of the hive. I have a thousand and one adventures with my friends: Shelby snail, Max the worm ... and of course Willy! Willy is very lazy and greedy ... But he's my best friend. Together, we go on an many adventures! Let's go!", + "posterPath": "/tBl8YASck7z2PWgCWHXRBuWyvCU.jpg", + "backdropPath": "/qiMGo8zBoW1Ez4QOO50rzCcGGeZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2013-04-01", + "releaseYear": "2013", + "originalLanguage": "de", + "voteAverage": 7.4, + "voteCount": 26, + "popularity": 3.8592 + }, + { + "id": 274875, + "title": "Twelve", + "originalTitle": "트웰브", + "overview": "A group of heroes, each embodying one of the 12 zodiac signs, battles to defend the Korean Peninsula from malevolent spirits.", + "posterPath": "/6q66Psq2cDrCsoz8cGDVa6gFmMm.jpg", + "backdropPath": "/22kJFY1PBSWNsQ4dBJvaaBNgM62.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2025-08-23", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.467, + "voteCount": 30, + "popularity": 3.8587 + }, + { + "id": 121460, + "title": "Voltaire High", + "originalTitle": "Mixte", + "overview": "It’s the first day of the 1963 school year at Voltaire High! And for the first time, girls and boys will mingle. This first year of coeducation is full of surprises, both for teachers and students.", + "posterPath": "/yKWkqxZYtey7JZGknajtsTzDahr.jpg", + "backdropPath": "/iFqZEdR96glFaLDUR2iOzIP5i65.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2021-06-14", + "releaseYear": "2021", + "originalLanguage": "fr", + "voteAverage": 7.9, + "voteCount": 69, + "popularity": 3.8587 + }, + { + "id": 202101, + "title": "Night Court", + "originalTitle": "Night Court", + "overview": "Unapologetically optimistic judge Abby Stone, the daughter of the late Harry Stone, follows in her father's footsteps as she presides over the night shift of a Manhattan arraignment court and tries to bring order to its crew of oddballs and cynics, most notably former night court prosecutor Dan Fielding.", + "posterPath": "/aDgsyosno3aKCiAn0UoUuw6HNME.jpg", + "backdropPath": "/qOvaHTMPnmrJLeKYCoTW4gDOcTm.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2023-01-17", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 50, + "popularity": 3.8575 + }, + { + "id": 106322, + "title": "Old Enough!", + "originalTitle": "はじめてのおつかい", + "overview": "Children go on errands all by themselves for the very first time as a camera crew follows along in this beloved, long-running reality show from Japan.", + "posterPath": "/ovMR6M5qBbXZBA8Waz3RI8kAwAL.jpg", + "backdropPath": "/t1DFvplainUaFhhFufrd7rbJDnd.jpg", + "mediaType": "tv", + "genreIds": [ + 10764, + 10751 + ], + "genres": [ + "Reality", + "Family" + ], + "releaseDate": "1991-06-08", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 11, + "popularity": 3.8571 + }, + { + "id": 73117, + "title": "Knightfall", + "originalTitle": "Knightfall", + "overview": "Go deep into the clandestine world of the legendary brotherhood of warrior monks known as The Knights Templar.", + "posterPath": "/5T3VJOF4ti3ep6JXqSgyzSGdv0h.jpg", + "backdropPath": "/aKYAuHyDIGnIAd35UAv1cpYWPWL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2017-12-06", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.005, + "voteCount": 332, + "popularity": 3.8559 + }, + { + "id": 106148, + "title": "SurrealEstate", + "originalTitle": "SurrealEstate", + "overview": "Aided by his own remarkable abilities and an eclectic team of associates, real estate agent Luke Roman specializes in “metaphysically engaged properties,” aka haunted houses. Together they investigate, clear and close the houses nobody else can.", + "posterPath": "/yrwNLzth5FjydiXJK1I1tOKdAFs.jpg", + "backdropPath": "/1O3vQB8XxMrMSV8JVArxdWYfret.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-16", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 6.593, + "voteCount": 81, + "popularity": 3.8558 + }, + { + "id": 66456, + "title": "Bizaardvark", + "originalTitle": "Bizaardvark", + "overview": "The live-action comedy follows comedy duo Paige and Frankie, two quirky teens who write funny songs and create music comedy videos for their online channel. With the help of friend and aspiring agent Bernie plus Vuuugle stars Dirk and Amelia, the best friends embark on comedic adventures in their quest to take the video blogging world by storm.", + "posterPath": "/r3zf9m6nvK55KhMukTqAg5rVEW7.jpg", + "backdropPath": "/7AsO1EES3cxHSiAHK8rNxbKYBYt.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 35 + ], + "genres": [ + "Family", + "Comedy" + ], + "releaseDate": "2016-06-24", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 74, + "popularity": 3.8557 + }, + { + "id": 94404, + "title": "Dorohedoro", + "originalTitle": "ドロヘドロ", + "overview": "Amnesiac Caiman seeks to undo his lizard head curse by killing the sorcerer responsible, with his friend Nikaido's help. In the Hole, that's a threat.", + "posterPath": "/u4RhmbMlKzeshDE2Wf3uxZuGck2.jpg", + "backdropPath": "/smKFUnGZf1lXaZgjUGYENFH53hx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-13", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 375, + "popularity": 3.8551 + }, + { + "id": 68595, + "title": "Planet Earth II", + "originalTitle": "Planet Earth II", + "overview": "David Attenborough presents a documentary series exploring how animals meet the challenges of surviving in the most iconic habitats on earth.", + "posterPath": "/5maYKYzWpE68ycxGh1luu4P2LOS.jpg", + "backdropPath": "/mGcfMh6BndPUdKVvC5nLGKyZMa9.jpg", + "mediaType": "tv", + "genreIds": [ + 99, + 10751 + ], + "genres": [ + "Documentary", + "Family" + ], + "releaseDate": "2016-11-06", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 8.612, + "voteCount": 867, + "popularity": 3.855 + }, + { + "id": 12635, + "title": "Brothers", + "originalTitle": "Brothers", + "overview": "Two conservative men support their younger brother when he comes out as gay, and help him navigate being openly homosexual in 1980s Philadelphia.", + "posterPath": "/9mBJsdAXYbNdbNquwxu5AKzEnQ2.jpg", + "backdropPath": "/yLiaNDffEn4QUUsiP5EoYhQqqoN.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1984-07-13", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 10, + "popularity": 3.8535 + }, + { + "id": 3921, + "title": "Clueless", + "originalTitle": "Clueless", + "overview": "CLUELESS is a television series spun off from the 1995 teen film of the same name. The series originally premiered on ABC on September 20, 1996 as a part of the TGIF lineup during its first season. The show then spent its last two seasons on UPN ending on May 25, 1999.", + "posterPath": "/2gYRjzWmgS2sNFlUfJBWXZyAOnw.jpg", + "backdropPath": "/SOqwVmQw9qb4bE5y5Hdx12CPL8.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1996-09-20", + "releaseYear": "1996", + "originalLanguage": "en", + "voteAverage": 6.1, + "voteCount": 36, + "popularity": 3.8521 + }, + { + "id": 72442, + "title": "Hotel Transylvania: The Series", + "originalTitle": "Hotel Transylvania: The Series", + "overview": "Mavis navigates life without her dad, Dracula, around and discovers one of the few common human and monster truths: being a teenager bites.", + "posterPath": "/mdPDFNqO7NWUtZIt66nMOmji7hg.jpg", + "backdropPath": "/1eSAVt4jcaYCudksnGRIiI8oOfJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-06-25", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 34, + "popularity": 3.8501 + }, + { + "id": 679, + "title": "Xiaolin Showdown", + "originalTitle": "Xiaolin Showdown", + "overview": "Xiaolin Showdown is an American animated television series that aired on Kids WB and was created by Christy Hui. Set in a world where martial arts battles and Eastern magic are commonplace, the series follows four young warriors in training that battle the forces of evil. They do this by protecting Shen Gong Wu from villains that would use them to conquer the world.\n\nOriginally airing on the Kids' WB block of programming on WB Network in 2003, the series ran for 3 seasons and 52 episodes. Typical episodes revolve around a specific Shen Gong Wu being revealed which results in both sides racing to find it. Episodes usually reach a head when one good and one evil character must challenge each other to a magical duel called a Xiaolin Showdown for possession of the artifact.\n\nA sequel series titled Xiaolin Chronicles was previewed on August 26, 2013 on Disney XD. It began its long-term run on September 14 the same year.", + "posterPath": "/mxxwz1kYyb5DBttl2VvmHgdDoRe.jpg", + "backdropPath": "/dhLi5XTGrj9R2aQa9XXfZnDhT1N.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2003-11-01", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 8.007, + "voteCount": 215, + "popularity": 3.8479 + }, + { + "id": 66282, + "title": "Berlin Station", + "originalTitle": "Berlin Station", + "overview": "A contemporary spy series that follows Daniel Miller, an undercover agent at the CIA station in Berlin, Germany.", + "posterPath": "/zn26BiTyU3LjQVB36ZQWtVBWseD.jpg", + "backdropPath": "/nEAnoMHXb1qeePbaxE1Kmv7gvh2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2016-10-16", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.219, + "voteCount": 160, + "popularity": 3.8474 + }, + { + "id": 47923, + "title": "Love Is in the Air", + "originalTitle": "Yer Gök Aşk", + "overview": "A wealthy Hancioglu family owns vast estates in Cappadocia, Turkey. Yusuf (Murat Unalmis) is the oldest son of this family, therefore, he manages the family business and bears all the responsibility of the family. Yusuf is very handsome, rich and hardworking man. Thus, there are lots of women who want to be his bride but, Yusuf wants to get married with a woman whom he loves.", + "posterPath": "/ueEPdHewIjJ0P3k11KRXbRHXbIm.jpg", + "backdropPath": "/1mP1qdANNF2i7zfScn6DBuJjWCJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-08-09", + "releaseYear": "2010", + "originalLanguage": "tr", + "voteAverage": 7.4, + "voteCount": 11, + "popularity": 3.847 + }, + { + "id": 229153, + "title": "Captain Fall", + "originalTitle": "Captain Fall", + "overview": "A goofy, gullible sea captain is hired to helm a high-end cruise ship and becomes the perfect fall guy for an illicit smuggling operation.", + "posterPath": "/qJk5ks6g9FYT2nQ82UzkJDTKRDW.jpg", + "backdropPath": "/ufm91i5QkOUjBVmZ5KfLdaclsPn.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2023-07-28", + "releaseYear": "2023", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 57, + "popularity": 3.8469 + }, + { + "id": 114500, + "title": "Win or Lose", + "originalTitle": "Win or Lose", + "overview": "As a championship game looms, eight characters are thrown a curveball in their off-the-field lives.", + "posterPath": "/rnVVkTU8noAZshs1sHdkxdGcVIP.jpg", + "backdropPath": "/erJMfbBfhasNw6gKpp8D1llxmPu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2025-02-19", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 8, + "voteCount": 125, + "popularity": 3.8456 + }, + { + "id": 38441, + "title": "Freezing", + "originalTitle": "フリージング", + "overview": "Eager to follow in the footsteps of his fallen sister, Kazuya enrolls at West Genetics Academy, a training facility for buxom heroes known as Pandoras. These courageous schoolgirls are genetically-enhanced with enough sex appeal to cripple a man – and the superhuman strength to slaughter aliens by the dozen. Kazuya’s role is that of Limiter, a Pandora’s battle partner, and he quickly sets his sights on the most feared beauty in school, Satellizer el Bridget. This full-figured annihilator of aliens is as desirable as she is deadly, but rubbing her the wrong way could lead to gross bodily harm. Can Kazuya forge a bond with his new partner and rise to the top of the ranks at West Genetics? Or will he fall victim to the mysterious bloodlust lurking within Satellizer?", + "posterPath": "/r1jVlUUpjdSB9TjcjiFcDGL6QmA.jpg", + "backdropPath": "/nPcgyYd2pJA5nuGJJ7EvNwzsJJ4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2011-01-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 73, + "popularity": 3.8451 + }, + { + "id": 44470, + "title": "Bar Rescue", + "originalTitle": "Bar Rescue", + "overview": "Jon Taffer is the Gordon Ramsay of the bar and nightclub business. In each episode, Taffer helps transform a struggling bar into a vibrant, profitable business, utilizing his expertise as a nightlife consultant", + "posterPath": "/siq3IzF0Uh22vvvtMhzcE7vr9AV.jpg", + "backdropPath": "/3lDciKqPmB8EcIr0YWekBdTK2mN.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2011-07-17", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.954, + "voteCount": 54, + "popularity": 3.845 + }, + { + "id": 299555, + "title": "Chainsaw Man - The Compilation", + "originalTitle": "チェンソーマン 総集篇", + "overview": "The two-part compilation, Part I and Part II, re-edits and condenses the key moments from the first season of the Chainsaw Man anime. This compilation revisits Denji's journey, from his humble beginnings as a debt-ridden devil hunter to his transformation into the Chainsaw Man.\n\nIn addition to the re-edited material, the compilation includes newly animated segments titled Chainsaw Days. These segments adapt bonus chapters from the original manga.", + "posterPath": "/23oDHewikLJRgwOrt7FlTzR0jnk.jpg", + "backdropPath": "/q5DjMk4rmZuTWRBkXRpjYKQX9ZQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-09-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 24, + "popularity": 3.8445 + }, + { + "id": 60556, + "title": "Bitten", + "originalTitle": "Bitten", + "overview": "Elena Micheals thought she left the world of supernatural behind when she left Stonehaven behind 'for good this time' she thought. Until the night she got the mysterious call from her pack leader asking her to come back. So now she is heading back, leaving her life as a normal photographer in Toronto for the moment to re-enter the world of werewolves, rules about protect the pack and a man she has spent years trying to get out of her system. Oh and did she mention she was the only living female werewolf in existence?", + "posterPath": "/guhxl5I8J1WVEA3yeDt8hwgpYWx.jpg", + "backdropPath": "/huZv8g3q1wsgxUaMmhWJC2DjL1K.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-01-11", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 264, + "popularity": 3.8442 + }, + { + "id": 70716, + "title": "Bikini Warriors", + "originalTitle": "ビキニ・ウォリアーズ", + "overview": "Prepare yourself for an adventure of epic proportions. With warriors so skilled at battling questionable slimes and taming tumescent tentacles, there's no need for all that bulky armor.", + "posterPath": "/x3Cqimi0eXWGVH5PEkZbZLuMYgI.jpg", + "backdropPath": "/xc5WV3yOhFgVQ9zbVyxqgsWAxZ8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-08", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 57, + "popularity": 3.8436 + }, + { + "id": 60743, + "title": "Constantine", + "originalTitle": "Constantine", + "overview": "A man struggling with his faith is haunted by the sins of his past but is suddenly thrust into the role of defending humanity from the gathering forces of darkness.", + "posterPath": "/gQ3bA1DBKyZwkDCHJFEAT0MkKpu.jpg", + "backdropPath": "/lmDDpCCei9kTPIZb13P2NAqpmvO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-24", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 7.758, + "voteCount": 1578, + "popularity": 3.8435 + }, + { + "id": 97513, + "title": "The Boarding School: Las Cumbres", + "originalTitle": "El internado: Las Cumbres", + "overview": "In an inaccessible place between the mountains and isolated from the world, a school is located next to an old monastery. The students are rebellious and problematic young people who live under the strict and severe discipline imposed by the center to reintegrate them into society. The surrounding forest is home to ancient legends, threats that are still valid and that will immerse them in terrifying adventures.", + "posterPath": "/9KvN6eNNY9kbiWlZ8IS175xj4Ym.jpg", + "backdropPath": "/oWaE5YmgwHSEBnrxvfh6lrlH72w.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2021-02-19", + "releaseYear": "2021", + "originalLanguage": "es", + "voteAverage": 7.523, + "voteCount": 886, + "popularity": 3.842 + }, + { + "id": 2255, + "title": "War of the Worlds", + "originalTitle": "War of the Worlds", + "overview": "Humanity must resume its war against the Martians when they revive after decades of hibernation following their defeat in the 1950s. The fate of Earth may very well rest in the hands of a small yet courageous band: astrophysicist Harrison Blackwood, paraplegic computer wizard Norton Drake, microbiologist Suzanne McCullough and military man Paul Ironhorse.", + "posterPath": "/aooe8m3ZHey7WKNdmlllRYeinpa.jpg", + "backdropPath": "/5ZQNychvm4GKLQZPYoKwuu5aLNB.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "1988-10-07", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 6.2, + "voteCount": 29, + "popularity": 3.841 + }, + { + "id": 42021, + "title": "Talking Dead", + "originalTitle": "Talking Dead", + "overview": "Host Chris Hardwick discusses episodes of the AMC television series The Walking Dead with guests, including celebrity fans, cast members, and crew from the series.", + "posterPath": "/wEsDfVvYNsAgmJeynSQGuLKyhcJ.jpg", + "backdropPath": "/jtwWiskjpvuAYIq6jhuSwb16k1Q.jpg", + "mediaType": "tv", + "genreIds": [ + 10767 + ], + "genres": [ + "Talk" + ], + "releaseDate": "2011-10-16", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.224, + "voteCount": 58, + "popularity": 3.8409 + }, + { + "id": 71000, + "title": "Tsugumomo", + "originalTitle": "つぐもも", + "overview": "Kazuya Kagami never goes anywhere without the precious \"Sakura Obi\" his mother gave him. One day a beautiful, kimono-clad girl named Kiriha appeared before him. Kiriha naturally began to live with Kazuya in his room. Then there's Chisato, Kazuya's childhood friend with glasses and a ponytail, who meddles in his affairs. Soon there's also an overprotective older sister who seems to want to take baths with him. Jumble in a huge-chested priestess, a good-looking sorceress named Kokuyoura, beautiful women, and hot girls, and Kazuya's happy, embarrassing, confusing life begins…", + "posterPath": "/aQLw9RZvzYTUukElg11bHIFNoQg.jpg", + "backdropPath": "/covxbfX4QxxXm0GtDbWSBUYN5jf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-02", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.243, + "voteCount": 37, + "popularity": 3.8403 + }, + { + "id": 35339, + "title": "Alcatraz", + "originalTitle": "Alcatraz", + "overview": "A unique team, consisting of a federal agent, a police officer and a conspiracy theory novelist, investigate the shocking reappearance of Alcatraz's most notorious prisoners, fifty years after they supposedly vanished.", + "posterPath": "/yES1yqjp6Jl2CEVKHdfwKrIsnqd.jpg", + "backdropPath": "/egSDCK4n50i4Rr6mpctXwbJsrf9.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10759, + 18 + ], + "genres": [ + "Mystery", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2012-01-16", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.3, + "voteCount": 286, + "popularity": 3.8388 + }, + { + "id": 237233, + "title": "Chillin' in Another World with Level 2 Super Cheat Powers", + "originalTitle": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "overview": "The Magical Kingdom of Klyrode summons hundreds of heroes from other worlds every year to fight in their war against the Dark One and his army of powerful demons. Banaza is one of those heroes, summoned from the Royal Capital Paluma, but something’s not right—Banaza is only an average merchant. He has no magic, no fighting ability, and his stats are abysmal. Worse, a mishap leaves him unable to return home! Rejected as a hero and stranded in another world, abandoned to the far reaches of the kingdom by a cruel king who just wants him gone, Banaza’s fate looks pretty bleak. But what will happen once the failed hero candidate finds himself with super cheat powers once he hits level two?", + "posterPath": "/29z2Qja0nXaCsfig7RCFCo1LP1d.jpg", + "backdropPath": "/petHMm8TmcYiBy1JOTCncBcNk83.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-04-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.315, + "voteCount": 84, + "popularity": 3.8386 + }, + { + "id": 118958, + "title": "One of Us Is Lying", + "originalTitle": "One of Us Is Lying", + "overview": "The story of what happens when five high schoolers walk into detention and only four make it out alive. Everyone is a suspect, and everyone has something to hide.", + "posterPath": "/hKMpbHY7xqFKaBR8W7jE61JlQB6.jpg", + "backdropPath": "/3pLsEQgnkuwJrNCTXPQSYZlEfnH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2021-10-07", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.155, + "voteCount": 207, + "popularity": 3.8386 + }, + { + "id": 84880, + "title": "Now Apocalypse", + "originalTitle": "Now Apocalypse", + "overview": "This surreal, coming-of-age comedy series follows Ulysses and his friends Carly, Ford, and Severine, who are on various quests pursuing love, sex and fame. Between sexual and romantic dating-app adventures, Ulysses grows increasingly troubled as foreboding premonitory dreams make him wonder if some kind of dark and monstrous conspiracy is going on, or if he is just smoking too much weed.", + "posterPath": "/hCjy2VzLM4tkUJ62DAFCkdq0LHM.jpg", + "backdropPath": "/AolLwYWbASLPPNj1MialtpidpBZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-03-10", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 6.993, + "voteCount": 69, + "popularity": 3.8374 + }, + { + "id": 129141, + "title": "Surviving Summer", + "originalTitle": "Surviving Summer", + "overview": "Rebellious Brooklyn teen Summer Torres is sent to live with family friends in the tiny town of Shorehaven on the Great Ocean Road, Victoria, AUS. Despite her best efforts, Summer falls in love with the town, the people and the surf.", + "posterPath": "/zJTi8sM9fvpYhZmxysVQnG4OFM9.jpg", + "backdropPath": "/Af4mmlfn0f5QbUXmmTa9EGstJc8.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-06-03", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 112, + "popularity": 3.8357 + }, + { + "id": 254514, + "title": "Harry Potter: Wizards of Baking", + "originalTitle": "Harry Potter: Wizards of Baking", + "overview": "Pairs of professional bakers compete to create spellbinding edible showpieces on the actual sets where the Harry Potter films were made.", + "posterPath": "/yHBttKi9pU9A1FdAKL1CMACBzIp.jpg", + "backdropPath": "/9mDlwBdCu501924dXnzz2Gtc8XI.jpg", + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2024-11-14", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 8.2, + "voteCount": 22, + "popularity": 3.8356 + }, + { + "id": 217088, + "title": "The Killing Vote", + "originalTitle": "국민사형투표", + "overview": "People are busy watching the screen. The person wearing a mysterious mask so called 'Gaetal' appears, and the Killing Vote begins.", + "posterPath": "/b31zFi0ZocmaxxuPCAGxEA6uxGn.jpg", + "backdropPath": "/5b7VwobdAhp7NFCxxcEXSQNmaNe.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2023-08-10", + "releaseYear": "2023", + "originalLanguage": "ko", + "voteAverage": 7.638, + "voteCount": 47, + "popularity": 3.8344 + }, + { + "id": 153482, + "title": "Raven of the Inner Palace", + "originalTitle": "後宮の烏", + "overview": "The Raven Consort is a special consort living deep in the inner palace who, despite her title, does not perform nighttime duties for the emperor. Some who have seen her say she has the appearance of an old woman, while others describe her as a young girl. The Raven Consort's name is Shouxue. She can use mysterious arts and will accept any favor asked of her, whether it is to find something lost or to curse someone to death. The current emperor, Gaojun, visits her one night to ask a favor. Their meeting exposes a secret that will turn history on its head...", + "posterPath": "/ifdhD2qXM6cDXJgCeIdXUPNIFM0.jpg", + "backdropPath": "/tSMA78z6CVKdn4dleQUElFsks08.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-01", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 34, + "popularity": 3.8338 + }, + { + "id": 280888, + "title": "Two Graves", + "originalTitle": "Dos tumbas", + "overview": "When the disappearance of two teen girls shocks a quiet coastal town, a bereft grandmother risks everything to uncover the truth and seek revenge.", + "posterPath": "/bnERtXWzPaTRZfa0iEtvygiOrPP.jpg", + "backdropPath": "/50ycQZGBRwVjVk0ZrERJRls2Wto.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 80, + 18 + ], + "genres": [ + "Mystery", + "Crime", + "Drama" + ], + "releaseDate": "2025-08-29", + "releaseYear": "2025", + "originalLanguage": "es", + "voteAverage": 6.5, + "voteCount": 67, + "popularity": 3.8334 + }, + { + "id": 102086, + "title": "By the Grace of the Gods", + "originalTitle": "神達に拾われた男", + "overview": "Only 39 years into a life full of bad luck, Ryoma Takebayashi passes away in his sleep! Taking pity on him, three divine beings show compassion by reincarnating him as a young boy to a magical, new world. Now he spends his time researching and caring for slimes in the forest. But after healing an injured traveler, Ryoma decides to set out with his new friends on a journey to use his power to help others. A whole new world awaits him, where his skills as a magic user and slime tamer continue to elicit surprise and admiration.", + "posterPath": "/bfYje9AgtWzYCeCQbMU3nHdE4k1.jpg", + "backdropPath": "/jbLMslpwVWaGYgBcE4Cu51L7HPB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 132, + "popularity": 3.8329 + }, + { + "id": 233314, + "title": "Another Love", + "originalTitle": "Bambaşka Biri", + "overview": "The brutal murder of Hamdi Atilbay in the forest crosses the paths of young prosecutor Leyla, who wants to leave her messy past behind and now establish her new order, and Kenan, an ambitious journalist who has a regular and famous life. However, this murder heralds the destruction of not only their love, but also the truth they know about their lives.", + "posterPath": "/wRK8sm4WJRnkzTfD4tjDfy48Vtx.jpg", + "backdropPath": "/a8cjSfm1YJQlovy9V8EE751MAYV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2023-09-11", + "releaseYear": "2023", + "originalLanguage": "tr", + "voteAverage": 7.563, + "voteCount": 16, + "popularity": 3.8328 + }, + { + "id": 259486, + "title": "The Haunted Palace", + "originalTitle": "귀궁", + "overview": "In a world of folklore and mysticism, a vengeful spirit and a devoted shaman cross paths, sparking a journey of love and redemption", + "posterPath": "/nR1cuxMOPqHHapEzORa8RESKrWG.jpg", + "backdropPath": "/dSNOb8E64mGUJJ51VJXlE0cnEtU.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-04-18", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.5, + "voteCount": 24, + "popularity": 3.8324 + }, + { + "id": 31841, + "title": "Episodes", + "originalTitle": "Episodes", + "overview": "A British husband-and-wife comedy writing team travel to Hollywood to remake their successful British TV series, with disastrous results.", + "posterPath": "/yyaU6cayJQCr555VgYYETbDHu1E.jpg", + "backdropPath": "/wpCRj1a2K6szwrPrE0J1guMUbYz.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2011-01-09", + "releaseYear": "2011", + "originalLanguage": "en", + "voteAverage": 7.2, + "voteCount": 196, + "popularity": 3.8323 + }, + { + "id": 3743, + "title": "Forever Knight", + "originalTitle": "Forever Knight", + "overview": "Forever Knight is a Canadian television series about Nick Knight, an 800-year-old vampire working as a police detective in modern day Toronto. Wracked with guilt for centuries of killing others, he seeks redemption by working as a homicide detective on the night shift while struggling to find a way to become human again. The series premiered on May 5, 1992 and concluded with the third season finale on May 17, 1996.", + "posterPath": "/aXlJjgxsorDOCl4cDoWpwN7x0JN.jpg", + "backdropPath": "/w5J2D78vKocVGQbmVxNWziY8TvT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 10765, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "1992-05-05", + "releaseYear": "1992", + "originalLanguage": "en", + "voteAverage": 6.828, + "voteCount": 29, + "popularity": 3.8314 + }, + { + "id": 60698, + "title": "Comedy Nights with Kapil", + "originalTitle": "Comedy Nights with Kapil", + "overview": "Comedy Nights with Kapil is a comedy show which provides a distinctive take on the everyday life of a common man as the show explores the story of every household and how our common man Kapil is affected by the simplest issues in life around him.", + "posterPath": "/9rScFaEadiT3r46LuT9wWOkh3fo.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2013-06-22", + "releaseYear": "2013", + "originalLanguage": "hi", + "voteAverage": 6.7, + "voteCount": 21, + "popularity": 3.8307 + }, + { + "id": 234763, + "title": "The Boy's Word: Blood on the Asphalt", + "originalTitle": "Слово пацана. Кровь на асфальте", + "overview": "In the late 1980s, when “perestroika” was taking place in the USSR and the era of the Soviet Union was about to collapse, life became unstable and very different. The 1980s brought not only freedom, but also waves of crime on the city streets. While some young people began to ‘grow up’ on the streets, others found it difficult to find their place in this unpredictable reality. Andrey, lives with his mother and five-year-old sister. He studies at a music school and often encounters street teenagers who harass him. To protect himself, Andrey makes friends with one of these teenagers, Marat, who introduces him to gang life. Youth groups fight for every piece of territory; they defend their right to live the life, even breaking laws and promises. The only thing that matters to them is the vows they make to their gang members-brothers, with whom they confront the violence and fears of the adult world.", + "posterPath": "/fmJ2vVzaSAPvCqB79H70uMHSNr4.jpg", + "backdropPath": "/pI0NFTu8iVGvmI0Dap2OFxVK8NZ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2023-11-09", + "releaseYear": "2023", + "originalLanguage": "ru", + "voteAverage": 8.788, + "voteCount": 196, + "popularity": 3.8285 + }, + { + "id": 135814, + "title": "Lady Voyeur", + "originalTitle": "Olhar Indiscreto", + "overview": "A talented, voyeuristic hacker finds herself thrust into a dangerous investigation after her sex worker neighbor leaves for a weekend trip.", + "posterPath": "/5BqzppbUELOLDUSuS8d9mWz97iH.jpg", + "backdropPath": "/9Er52vtNYd5Mhwk81IdPQoCZxgV.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2023-01-01", + "releaseYear": "2023", + "originalLanguage": "pt", + "voteAverage": 6.673, + "voteCount": 107, + "popularity": 3.8276 + }, + { + "id": 71347, + "title": "My Sassy Girl", + "originalTitle": "엽기적인 그녀", + "overview": "Set in the Joseon Dynasty period, a romance takes place between cold-hearted Gyun-Woo and Princess Hyemyung who causes troubles.", + "posterPath": "/llSHPKnZWaFvvTKqslvUVeyrK4O.jpg", + "backdropPath": "/9bp9cVuqmZUAVfTpCxiPIpC5ACS.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2017-05-29", + "releaseYear": "2017", + "originalLanguage": "ko", + "voteAverage": 6.3, + "voteCount": 35, + "popularity": 3.8275 + }, + { + "id": 235635, + "title": "Like Water for Chocolate", + "originalTitle": "Como agua para chocolate", + "overview": "Tita de la Garza and Pedro Muzquiz are two souls in love who cannot be together due to deep-rooted family customs, which will force Tita to navigate with magical tints and flavors between the destiny dictated by her family and the fight for her love, while we accompany her in her greatest refuge: the kitchen.", + "posterPath": "/18WIVssvDsnlXRpLSx0oY9Ga5Xi.jpg", + "backdropPath": "/sMv7P2kMaw0UD3ibtAGDC8cGyM8.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2024-11-03", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 8.2, + "voteCount": 193, + "popularity": 3.8273 + }, + { + "id": 126437, + "title": "Aoashi", + "originalTitle": "アオアシ", + "overview": "Ashito Aoi is a young, aspiring soccer player from a backwater town in Japan. His hopes of getting into a high school with a good soccer club are dashed when he causes an incident during a critical match for his team, which results in their loss and elimination from the tournament. Nevertheless, he catches the eye of someone important who happened to be visiting from Tokyo. How will things turn out for Ashito?", + "posterPath": "/erwRgEPtUtyv3Vkmxt0MhjKi5kA.jpg", + "backdropPath": "/4ixh7PNNWd1VaohzKD7pcP33SiN.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2022-04-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 54, + "popularity": 3.8272 + }, + { + "id": 11279, + "title": "GANTZ", + "originalTitle": "ガンツ", + "overview": "If you are chosen by the bizarre black sphere known as the Gantz, you are already dead—yet you might be able to reclaim your mortality. First, the Gantz demands that you undertake brutal missions of madness, killing aliens hidden among the population. It is your only chance and you have no choice. You must play this disturbing game. And if you die again—and you likely will—it’s permanent.", + "posterPath": "/spyDQ1Cv8m4L8EaXS6iXSpbLWA.jpg", + "backdropPath": "/wlaBpzJPkBe5vKxyb51IlESAcKP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-13", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 295, + "popularity": 3.827 + }, + { + "id": 3894, + "title": "WWE ECW", + "originalTitle": "WWE ECW", + "overview": "ECW was a professional wrestling television program for WWE, based on the independent Extreme Championship Wrestling promotion that lasted from 1992 to 2001. The show's name also referred to the ECW brand, in which WWE employees were assigned to work and perform, complementary to WWE's other brands, Raw and SmackDown. It debuted on June 13, 2006 on Sci Fi in the United States and ran for close to four years until it aired its final episode on February 16, 2010 on the rebranded Syfy. It was replaced the following week with WWE NXT.", + "posterPath": "/h3qIiG22Uy62ZgLLtXkh5PdfiSL.jpg", + "backdropPath": "/s2PGiHAgQynRZjFWhiL5ob9Bosu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2006-06-13", + "releaseYear": "2006", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 31, + "popularity": 3.827 + }, + { + "id": 30905, + "title": "Jungle Junction", + "originalTitle": "Jungle Junction", + "overview": "Set deep in the heart of an unexplored, road-filled Jungle, the show features a group of fun-loving animals on wheels and aims to help preschoolers develop their pre-literacy skills, as well as encouraging them to care about the environment.", + "posterPath": "/nbvsTq54Rno0HMjeWVQwS8C5C1.jpg", + "backdropPath": "/44qRQyiXwV4AzFg1VL449HDsolt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Family" + ], + "releaseDate": "2009-10-06", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 4.9, + "voteCount": 14, + "popularity": 3.8266 + }, + { + "id": 77567, + "title": "Mi marido tiene familia", + "originalTitle": "Mi marido tiene familia", + "overview": "Julieta is quite happy in her relationship with her live in boyfriend, Robert... and thrilled that she won't have to deal with in-laws since Robert doesn't know his family. Things start going downhill for the couple when they rent an apartment from a very eccentric family dealing with a traumatic incident from their past.", + "posterPath": "/jSuUar73WzYWgf0fwB2oKQTSr2r.jpg", + "backdropPath": "/5GrgHrIOPVrA3TqOwFEXUuh9wx1.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 35, + 18 + ], + "genres": [ + "Soap", + "Comedy", + "Drama" + ], + "releaseDate": "2017-06-05", + "releaseYear": "2017", + "originalLanguage": "es", + "voteAverage": 7.8, + "voteCount": 245, + "popularity": 3.8258 + }, + { + "id": 154887, + "title": "My Liberation Notes", + "originalTitle": "나의 해방일지", + "overview": "Three siblings, exhausted by the monotony of day-to-day adulthood, seek to find fulfillment and freedom from their unremarkable lives.", + "posterPath": "/olmfFeKZyQoTwj9Zo3Y5IUaioPB.jpg", + "backdropPath": "/syjXo6WZJEg5YrEshoQT5B8jL2o.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-04-09", + "releaseYear": "2022", + "originalLanguage": "ko", + "voteAverage": 7.8, + "voteCount": 85, + "popularity": 3.8255 + }, + { + "id": 3269, + "title": "Whose Line Is It Anyway?", + "originalTitle": "Whose Line Is It Anyway?", + "overview": "An un-scripted comedy show in which four guest performers improvise their way through a series of games, many of which rely on audience suggestions.", + "posterPath": "/bSUa3Jg437IJjjC2I785mQvMeQM.jpg", + "backdropPath": "/8g7PQGzG7d8DWiQooSFu8tma9D8.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1988-09-23", + "releaseYear": "1988", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 66, + "popularity": 3.8217 + }, + { + "id": 104913, + "title": "Aarya", + "originalTitle": "Aarya", + "overview": "When her world suddenly turns upside down, will Aarya become the very thing she hated? How far will she go to survive and protect her family?", + "posterPath": "/eHxzABVwpFtUg5kHu9PAEFWs67u.jpg", + "backdropPath": "/wPYnXZg8kXUA9vlpHSLXhXB87SY.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2020-06-19", + "releaseYear": "2020", + "originalLanguage": "hi", + "voteAverage": 7.3, + "voteCount": 22, + "popularity": 3.8216 + }, + { + "id": 35993, + "title": "Ronin Warriors", + "originalTitle": "鎧伝サムライトルーパー", + "overview": "Five young men with mystical armor fight to save the mortal from the evil Talpa.", + "posterPath": "/cS4MHCOgmFun8X9k2avAd6vvQ37.jpg", + "backdropPath": "/njzwGw2JwoMnwNbntW6CK3EqQql.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1988-04-30", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 25, + "popularity": 3.8192 + }, + { + "id": 224021, + "title": "The Åre Murders", + "originalTitle": "Åremorden", + "overview": "A Stockholm detective under internal investigation heads to a ski resort to unwind, until a young girl's disappearance compels her back to work.", + "posterPath": "/9hUh2yK71us4uO3cKeDq9ONu69.jpg", + "backdropPath": "/mQqJNXIBDCWXgTmwvJV7kEgnDpW.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-02-06", + "releaseYear": "2025", + "originalLanguage": "sv", + "voteAverage": 6.696, + "voteCount": 115, + "popularity": 3.8177 + }, + { + "id": 112693, + "title": "Kin", + "originalTitle": "Kin", + "overview": "The lives of a Dublin family embroiled in a gangland war and the consequences of their choices.", + "posterPath": "/2wTsgQQBruGQcjM0PjFr5l5MjEw.jpg", + "backdropPath": "/ggAS074NNNiYMc83Ms25pB87iy0.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2021-09-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.654, + "voteCount": 65, + "popularity": 3.8175 + }, + { + "id": 65136, + "title": "Barbapapa", + "originalTitle": "Les Barbapapa", + "overview": "The adventures of Barbapapa and Barbama and their seven children, where they search for their place in the world, while helping humans and animals.", + "posterPath": "/dZBXZvelBZRWxxcUqEwlSdq4cA6.jpg", + "backdropPath": "/yDiYzbR1AeflicG7r9C9u4IL76E.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Family" + ], + "releaseDate": "1974-01-01", + "releaseYear": "1974", + "originalLanguage": "fr", + "voteAverage": 7.019, + "voteCount": 26, + "popularity": 3.8175 + }, + { + "id": 88803, + "title": "Vinland Saga", + "originalTitle": "ヴィンランド・サガ", + "overview": "For a thousand years, the Vikings have made quite a name and reputation for themselves as the strongest families with a thirst for violence. Thorfinn, the son of one of the Vikings' greatest warriors, spends his boyhood in a battlefield enhancing his skills in his adventure to redeem his most-desired revenge after his father was murdered.", + "posterPath": "/vUHlpA5c1NXkds59reY3HMb4Abs.jpg", + "backdropPath": "/xamCBQePUy9xI42GvtphLuGqd09.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 18 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2019-07-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.497, + "voteCount": 859, + "popularity": 3.8166 + }, + { + "id": 156484, + "title": "The 8 Show", + "originalTitle": "The 8 Show", + "overview": "Eight individuals trapped in a mysterious 8-story building participate in a tempting but dangerous show where they earn money as time passes.", + "posterPath": "/umBNBnKThMmF1QQZixZ7rsYOowq.jpg", + "backdropPath": "/5BvjF6KH25BKSQcNYDdzVhtnPzJ.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2024-05-17", + "releaseYear": "2024", + "originalLanguage": "ko", + "voteAverage": 7.247, + "voteCount": 291, + "popularity": 3.8164 + }, + { + "id": 157571, + "title": "Helck", + "originalTitle": "Helck", + "overview": "Three months have passed since the Demon Lord was struck down, and the Demon Realm is holding a tournament to select his replacement. The leading contestant is Helck, a human hero who claims to hate his own kind. Some aren't happy with the idea of a human becoming the next Demon Lord—especially Vermilio the Red. She wants nothing more than to protect demonkind and prove Helck to be their enemy, even if she has to rig the competition to do it!", + "posterPath": "/u0vH3LAjFEp5q7HNo7EcoIbCyzp.jpg", + "backdropPath": "/uBVaWmEJB2ttSOuLbJ8LoFczv6m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-12", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.88, + "voteCount": 25, + "popularity": 3.816 + }, + { + "id": 120462, + "title": "Them", + "originalTitle": "Them", + "overview": "A limited anthology series that explores terror in America.", + "posterPath": "/bJw1VZ4ACt5TnAvJbHcprzgYc1E.jpg", + "backdropPath": "/nleG20xwqGsEbCEHnIRRwZmz3l6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2021-04-09", + "releaseYear": "2021", + "originalLanguage": "en", + "voteAverage": 7.6, + "voteCount": 444, + "popularity": 3.8159 + }, + { + "id": 232125, + "title": "I Am Groot", + "originalTitle": "I Am Groot", + "overview": "There's no guarding the galaxy from this mischievous toddler! Get ready as Baby Groot takes center stage in his very own collection of shorts, exploring his glory days growing up and getting into trouble among the stars.", + "posterPath": "/lYwFSsP4KsoRhOLhJvBFp3GEGEm.jpg", + "backdropPath": "/bAnHzJ6AMhOhnV3C0kTxkpCqpgM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2022-08-10", + "releaseYear": "2022", + "originalLanguage": "en", + "voteAverage": 7.1, + "voteCount": 434, + "popularity": 3.8156 + }, + { + "id": 94305, + "title": "The Walking Dead: World Beyond", + "originalTitle": "The Walking Dead: World Beyond", + "overview": "A heroic group of teens sheltered from the dangers of the post-apocalyptic world receive a message that inspires them to leave the safety of the only home they have ever known and embark on a cross-country journey to find the one man who can possibly save the world.", + "posterPath": "/6HanIV2hTLE2w7A5bI1KJb3bTL7.jpg", + "backdropPath": "/hS0IN656SbRe23TyH0PdaGytIuL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-04", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 1181, + "popularity": 3.8146 + }, + { + "id": 36629, + "title": "Tegami Bachi: Letter Bee", + "originalTitle": "テガミバチ", + "overview": "Gauche Suede is on his last delivery before a big promotion. In the outskirts of Yodaka, the darkest area of Amberground, Gauche is surprised to find that the package is a young boy named Lag Seeing. Lag had been traumatized by his mother's abduction and is due to be delivered to his aunt. In this remote area rife with Gaichuu, Lag and Gauche face a dangerous journey that inspires Lag to become a Letter Bee.", + "posterPath": "/lvt6QnxXExnQ0yC3kvqUVFHSTDe.jpg", + "backdropPath": "/7Rwehepd5z0tO0uFxBzA53PBXik.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2009-10-03", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 16, + "popularity": 3.814 + }, + { + "id": 275388, + "title": "The Glass Dome", + "originalTitle": "Glaskupan", + "overview": "When her friend's daughter goes missing, criminologist Lejla joins the search — and must confront the haunting trauma of her own childhood abduction.", + "posterPath": "/yn4PIMnXJ42lObinYtmIvQ9lVtm.jpg", + "backdropPath": "/w8NsengOrWLapYBVutr52gwWMio.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80, + 9648 + ], + "genres": [ + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2025-04-15", + "releaseYear": "2025", + "originalLanguage": "sv", + "voteAverage": 7.035, + "voteCount": 130, + "popularity": 3.8129 + }, + { + "id": 103962, + "title": "Mother of the Goddess' Dormitory", + "originalTitle": "女神寮の寮母くん。", + "overview": "Down-on-his-luck Koushi Nagumo wanders the streets unemployed, homeless and in search of his next meal. His fortunes improve after a chance meeting with a vivacious young woman whose proposition seemingly solves nearly all his problems. Thanks to her, Koushi enters the welcoming halls of a dormitory at a women’s college… only this particular assignment is no stuffy, sleepy affair. The Goddess’ Dormitory is known for housing the college’s most unruly students! If he wants to keep a roof over his head, Koushi must become the “Dormitory Mother” charged with maintaining order and good discipline. But doing his job and keeping his sanity are no small feat with characters as endearingly eccentric and untamable as these!", + "posterPath": "/xT7qlkEjWBAyScZRp6ElGXccPJG.jpg", + "backdropPath": "/q9ZWkpeMsKj3A7010KQX8NU5jQd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-07-14", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 52, + "popularity": 3.8124 + }, + { + "id": 429, + "title": "Corner Gas", + "originalTitle": "Corner Gas", + "overview": "Following the adventures of a bunch of nobodies who get up to a whole lot of nothing in the fictional prairie town of Dog River, Saskatchewan, Corner Gas focuses on the life (or lack thereof) of Brent LeRoy, proprietor of a gas station that is the only stop for miles around and a hub of action on the Prairies.", + "posterPath": "/304lFTgMC3F53qKpDCguf7s7ZU1.jpg", + "backdropPath": "/sCmhbNkt6YTaPsPEI1lG9jRUz6R.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2004-01-22", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.972, + "voteCount": 54, + "popularity": 3.8121 + }, + { + "id": 29310, + "title": "Emma: A Victorian Romance", + "originalTitle": "英國戀物語エマ", + "overview": "In 19th-century London, class lines are sharply drawn, and the social standing to which people are born dictates the path their lives will follow. Emma, an honest and hardworking young maid, never felt her place in life to be a burden. But then she met William, a member of the gentry and the eldest son of a wealthy family. His warm smile and earnest affection threaten to capture her heart... but can love truly conquer all?", + "posterPath": "/sbEsRPkypIVezOh6h5fZZN7LjUw.jpg", + "backdropPath": "/b2L2tMt01dD2jFM80kpbZpXjiD5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2005-04-03", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 18, + "popularity": 3.8115 + }, + { + "id": 618, + "title": "Brandy & Mr. Whiskers", + "originalTitle": "Brandy & Mr. Whiskers", + "overview": "Brandy & Mr. Whiskers is an American animated television series about a pampered yet spunky dog and a hyperactive rabbit who get stuck in the Amazon Rainforest together. The show originally aired from August 2004 to August 2006. It was televised in the United States by Disney Channel.", + "posterPath": "/58Ao40FU4uA35WUTyMcd6XdN1ns.jpg", + "backdropPath": "/1X7jac5eNqfjyka4zh6kaiJrsaX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2004-08-21", + "releaseYear": "2004", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 144, + "popularity": 3.8112 + }, + { + "id": 78102, + "title": "Steins;Gate 0", + "originalTitle": "シュタインズ・ゲート ゼロ", + "overview": "Eccentric Rintaro falls into a depression after failing to save Kurisu, but then a neuroscientist offers him the chance to interact with an AI copy.", + "posterPath": "/zAlvi9hc7WrIVn1Z687EoLH3Xbl.jpg", + "backdropPath": "/7B4PGxWt9NrcFCEAegLSEuSyAeS.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "2018-04-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.052, + "voteCount": 268, + "popularity": 3.8106 + }, + { + "id": 255779, + "title": "Bet", + "originalTitle": "Bet", + "overview": "At a private school where gambling determines social status, a skillful new student with a mysterious past is shaking things up — and betting on revenge.", + "posterPath": "/e3ENTAEDEO949khpVkJWgcWnwGG.jpg", + "backdropPath": "/vx4UhH0RKQOG5etc2qVikStLFqG.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2025-05-15", + "releaseYear": "2025", + "originalLanguage": "en", + "voteAverage": 6.756, + "voteCount": 82, + "popularity": 3.8105 + }, + { + "id": 210955, + "title": "First Love", + "originalTitle": "First Love 初恋", + "overview": "Young, free and madly in love. As teenagers, the world was their oyster—but, as adults, their lives seem dimmer, like a very important piece is missing.", + "posterPath": "/zlt5QDitpurbI6Nd2Kip5d5pKm1.jpg", + "backdropPath": "/GajmttBbNeYGgnECQwUNTOPAYS.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2022-11-24", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.114, + "voteCount": 132, + "popularity": 3.8103 + }, + { + "id": 39218, + "title": "Puella Magi Madoka Magica", + "originalTitle": "魔法少女まどか☆マギカ", + "overview": "She has a loving family and best friends, laughs and cries from time to time... Madoka Kaname, an eighth grader of Mitakihara middle school, is one of those who lives such a life. One day, she had a very magical encounter. She doesn't know if it happened by chance or by fate yet. This is a fateful encounter that can change her destiny. This is a beginning of the new story of the magical witch girls.", + "posterPath": "/9Leopb4OB9j9FkP5JNHRZZlPPdg.jpg", + "backdropPath": "/uyGH4YtKi7iSyAxKWLFdQWc7oXT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-01-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.046, + "voteCount": 349, + "popularity": 3.8097 + }, + { + "id": 2188, + "title": "Tru Calling", + "originalTitle": "Tru Calling", + "overview": "A university graduate working in the city morgue is able to repeat the same day over again to prevent murders or other disasters.", + "posterPath": "/jOqsAwPucH96rUQxZiRNwxd90Yu.jpg", + "backdropPath": "/tTyzyI6L0P97FaoEmYdbqxpkpXM.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2003-10-30", + "releaseYear": "2003", + "originalLanguage": "en", + "voteAverage": 7.311, + "voteCount": 257, + "popularity": 3.8097 + }, + { + "id": 7458, + "title": "The Cartel", + "originalTitle": "El Cartel de los Sapos", + "overview": "The Cartel follows ten friends, all of them members of a dangerous drug cartel, whose ambition for power and money will cause them to eventually kill each other. For it is an undeniable truth that, in this business, you always lose.", + "posterPath": "/cSvzG2B2uafu5BoP5nt0OvrVrQG.jpg", + "backdropPath": "/4jTSmEGdZ77A2dP6Y08gwo52LuF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18 + ], + "genres": [ + "Action & Adventure", + "Drama" + ], + "releaseDate": "2008-06-04", + "releaseYear": "2008", + "originalLanguage": "es", + "voteAverage": 7.5, + "voteCount": 588, + "popularity": 3.8086 + }, + { + "id": 69238, + "title": "Broken Pieces", + "originalTitle": "Paramparça", + "overview": "A story about difficult choices, tough decisions, entwined lives and parents torn between their children and their hearts. Gulseren comes from a poor background, while Cihans wife Dilara is wealthy. They both gave birth in the same hospital on the same day 15 years ago but a mistake was made that would change their destinies. Having similar surnames, an absent-minded nurse mixed the babies and nobody noticed. As the truth about the children is revealed, fundamental problems arise between the two families because of their totally different lifestyles and economic statuses. However these events bring Cihan and Gulseren closer together. They have inexplicable feelings towards each other that they cannot run away from or ignore.", + "posterPath": "/zqfZq8ZOFR7tDFo0KqZMlAdzgl2.jpg", + "backdropPath": "/3FOtvjAs1B9gGWIMzvoSVy62ySP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 18, + 10751, + 80 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Drama", + "Family", + "Crime" + ], + "releaseDate": "2014-12-01", + "releaseYear": "2014", + "originalLanguage": "tr", + "voteAverage": 7.3, + "voteCount": 14, + "popularity": 3.8077 + }, + { + "id": 39325, + "title": "Smash", + "originalTitle": "Smash", + "overview": "Celebrating the beauty and heartbreak of the Broadway theater, following a cross section of dreamers and schemers who all have one common desire - to be a \"Smash.\"", + "posterPath": "/eiE6e3KLE9ecoHBc6KTCtWdiB7X.jpg", + "backdropPath": "/vvMSTby2Ce66Ke6SSPGHMGKRslv.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2012-02-06", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.4, + "voteCount": 74, + "popularity": 3.8077 + }, + { + "id": 2957, + "title": "Fraggle Rock", + "originalTitle": "Fraggle Rock", + "overview": "The Fraggles are a fun-loving community of creatures who live in a subterranean fantasy land where they love to play, sing and dance their cares away, sharing their world with the tiny Doozers and the giant Gorgs. The series teaches empathy and tolerance and encourages children to understand people different from themselves.", + "posterPath": "/nyvNej9aHC2wydFflPMrASS6MF7.jpg", + "backdropPath": "/fyUt0I4tSnclpg7WZJVRKHMSjcz.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10751, + 10765, + 35 + ], + "genres": [ + "Kids", + "Family", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1983-01-10", + "releaseYear": "1983", + "originalLanguage": "en", + "voteAverage": 7.3, + "voteCount": 181, + "popularity": 3.8072 + }, + { + "id": 198152, + "title": "ONIMAI: I'm Now Your Sister!", + "originalTitle": "お兄ちゃんはおしまい!", + "overview": "When lazy, erotic-game loving Mahiro Oyama is transformed into a girl by his younger scientist sister's experiments, he becomes determined to change back, only to recognize that with his new opportunity, he may want to turn his life around.", + "posterPath": "/3uZUfYhNI3ZPh4cwLNDtDAQbuR.jpg", + "backdropPath": "/15nnrH4Vmy38Kh6A24h88AYuI3g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-01-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 52, + "popularity": 3.8066 + }, + { + "id": 2940, + "title": "Invasion", + "originalTitle": "Invasion", + "overview": "In the aftermath of a hurricane the Florida Park Ranger and his family deal with strange occurrences, including luminescent creatures in the water. People in the town start to act different, who can you trust?", + "posterPath": "/q5s7o05wcsUJv3Vilz2MGIhbgts.jpg", + "backdropPath": "/faj67L0NhpGd9vWf6c6KEseTNar.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 9648, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2005-09-21", + "releaseYear": "2005", + "originalLanguage": "en", + "voteAverage": 7.142, + "voteCount": 130, + "popularity": 3.8063 + }, + { + "id": 62776, + "title": "Dr. Ken", + "originalTitle": "Dr. Ken", + "overview": "Dr. Ken is a brilliant physician with no bedside manner. He is always trying to be a good doctor, as well as a good husband and dad to his two kids. However, these good intentions have a way of driving everyone crazy at both work and at home. Luckily, his therapist wife Allison is just the right partner to keep things sane.", + "posterPath": "/rLuRcr3E7mFGR4jGnNjEuAWWO8p.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2015-10-02", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 5.561, + "voteCount": 74, + "popularity": 3.8062 + }, + { + "id": 3040, + "title": "WWE Tough Enough", + "originalTitle": "WWE Tough Enough", + "overview": "WWE Tough Enough is a professional wrestling reality television program produced by WWE where in participants undergo professional wrestling training and compete for a contract with WWE.", + "posterPath": "/g8firCMzcUOY0aLkB9PAzxbGZ36.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 10764 + ], + "genres": [ + "Reality" + ], + "releaseDate": "2001-06-21", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 10, + "popularity": 3.8062 + }, + { + "id": 87525, + "title": "Russian Affairs", + "originalTitle": "Содержанки", + "overview": "Moscow, present day. The city of big money, passion, gorgeous women and wealthy men, receptions and dangerous intrigue. Dasha, an art historian from the province, who came to the capital, dreams of a new, better life, but a mysterious and cruel incident will change everything.", + "posterPath": "/6TOmAMpIq3LPU37Jwu4Rnt9CSy5.jpg", + "backdropPath": "/7qaLXybwpnTrbmZ3CjCCovjj7HN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648 + ], + "genres": [ + "Drama", + "Mystery" + ], + "releaseDate": "2019-03-07", + "releaseYear": "2019", + "originalLanguage": "ru", + "voteAverage": 6.192, + "voteCount": 26, + "popularity": 3.805 + }, + { + "id": 85727, + "title": "In the Dark", + "originalTitle": "In the Dark", + "overview": "Murphy is a flawed and irreverent woman who just happens to be blind and is the only “witness” to the murder of her drug-dealing friend, Tyson. When the police dismiss her story, she sets out with her dog, Pretzel, to find the killer while also managing her colorful dating life and the job she hates at Guiding Hope, the guide-dog school owned by her overprotective parents.", + "posterPath": "/dvfuQNUItkbQ8e2o80i6HgySLI8.jpg", + "backdropPath": "/l32UmARlJtdWFKpuM9KdduGzj5d.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2019-04-04", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.751, + "voteCount": 203, + "popularity": 3.8049 + }, + { + "id": 32118, + "title": "Generator Rex", + "originalTitle": "Generator Rex", + "overview": "Generator Rex, an average teenager with the ability to turn his body into amazing machines, helps the secret organization Providence save the world from the nanite threat and dangerous EVO monsters.", + "posterPath": "/fL7S22SWWOjJTgHEkk68VZ4Z8RO.jpg", + "backdropPath": "/jXiKtz7PPWOI4zKl5CdtrKyLUh8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Family" + ], + "releaseDate": "2010-04-23", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.539, + "voteCount": 398, + "popularity": 3.8036 + }, + { + "id": 39331, + "title": "Don't Trust the B---- in Apartment 23", + "originalTitle": "Don't Trust the B---- in Apartment 23", + "overview": "After a naive Midwestern girl's big city dreams are dashed her first week in New York, she finds herself living with her worst nightmare in this hilarious, contemporary comedy about a female odd couple who are surrounded by an outrageous cast of characters.", + "posterPath": "/ice3QRGMPs7JpwV8Fb8BpfWtYxP.jpg", + "backdropPath": "/l3xAsPkZiIMeA9mGMFwMtUYaMbT.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2012-04-11", + "releaseYear": "2012", + "originalLanguage": "en", + "voteAverage": 6.744, + "voteCount": 310, + "popularity": 3.8023 + }, + { + "id": 86850, + "title": "Dracula", + "originalTitle": "Dracula", + "overview": "Transylvania, 1897. The blood-drinking Count Dracula is drawing his plans against Victorian London. And be warned: the dead travel fast.", + "posterPath": "/5SqUNnExnN7Cr8rzyTXJTWmEMHn.jpg", + "backdropPath": "/v3cpyhytwXXbAr7Wycn5LEwonuL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2020-01-01", + "releaseYear": "2020", + "originalLanguage": "en", + "voteAverage": 6.966, + "voteCount": 784, + "popularity": 3.8019 + }, + { + "id": 62335, + "title": "UnREAL", + "originalTitle": "UnREAL", + "overview": "Set against the backdrop of a hit dating competition show, \"UnREAL\" is led by Rachel, a young staffer whose sole job is to manipulate her relationships with and among the contestants to get the vital dramatic and outrageous footage the program's dispassionate executive producer demands. What ensues is a humorous, yet vexing, look at what happens in the world of unscripted television, where being a contestant can be vicious and producing it is a whole other reality.", + "posterPath": "/ldLTSFnLR642BAjFca96VOY7L98.jpg", + "backdropPath": "/jRtg70zRPY5FqhP8OHziUJWFT0f.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2015-06-01", + "releaseYear": "2015", + "originalLanguage": "en", + "voteAverage": 6.612, + "voteCount": 161, + "popularity": 3.8016 + }, + { + "id": 36406, + "title": "Yu-Gi-Oh!", + "originalTitle": "遊☆戯☆王", + "overview": "Yugi Muto, a shy boy who loves all kinds of games, one day solves an ancient puzzle known as the Millennium Puzzle, causing his body to host the spirit of an ancient pharaoh.", + "posterPath": "/j2PBnjCSbWr9XtJttWYmCkhJ7zM.jpg", + "backdropPath": "/qp4FDDjTU9bX3OA9Bx9nMB7FtWG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10765, + 10759, + 10762, + 35 + ], + "genres": [ + "Animation", + "Family", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids", + "Comedy" + ], + "releaseDate": "1998-04-04", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.245, + "voteCount": 143, + "popularity": 3.7997 + }, + { + "id": 40314, + "title": "Lingerie", + "originalTitle": "Lingerie", + "overview": "Lingerie is an erotic drama about a struggling New York City lingerie company, its owner Lacey Summers, and her friends and associates.", + "posterPath": "/juXv0TqEva03i2YnmdeXSVpeX4p.jpg", + "backdropPath": "/oZOdM3owMH640nsqHVwOJVdP5EB.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2009-07-03", + "releaseYear": "2009", + "originalLanguage": "en", + "voteAverage": 5.706, + "voteCount": 17, + "popularity": 3.7995 + }, + { + "id": 88236, + "title": "How to Sell Drugs Online (Fast)", + "originalTitle": "How to Sell Drugs Online (Fast)", + "overview": "To win back his ex-girlfriend, a nerdy teen starts selling ecstasy online out of his bedroom -- and becomes one of Europe's biggest dealers.", + "posterPath": "/xg7U76h1DNtwa0eBOIbFdiM80DR.jpg", + "backdropPath": "/k5LOQVkVhwq8qybNjwSdWpGghM7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35, + 80 + ], + "genres": [ + "Drama", + "Comedy", + "Crime" + ], + "releaseDate": "2019-05-31", + "releaseYear": "2019", + "originalLanguage": "de", + "voteAverage": 7.934, + "voteCount": 896, + "popularity": 3.7958 + }, + { + "id": 54866, + "title": "Nowhere Boys", + "originalTitle": "Nowhere Boys", + "overview": "Four teenage boys get lost in the forest and discover, when they return home, that they are in an alternate world identical to theirs except for one startling difference - they were never born.", + "posterPath": "/c9E8xLyzhV9rUpdxbHp9wCWZCc8.jpg", + "backdropPath": "/xGNwizAT216Fe8h1D2zZv0OaicP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2013-11-07", + "releaseYear": "2013", + "originalLanguage": "en", + "voteAverage": 6.792, + "voteCount": 72, + "popularity": 3.7958 + }, + { + "id": 2622, + "title": "The Universe", + "originalTitle": "The Universe", + "overview": "From the planets to the stars and out to the edge of the unknown, history and science collide in a wondrous yet deadly adventure through space and time.", + "posterPath": "/wbtVDGQbzvNSbAqXIVE1X7BUtq2.jpg", + "backdropPath": "/9M8I4fmsBEJVKfDSHw3kqgusKsg.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2007-05-29", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 7.935, + "voteCount": 177, + "popularity": 3.7932 + }, + { + "id": 80805, + "title": "The Epic Tales of Captain Underpants", + "originalTitle": "The Epic Tales of Captain Underpants", + "overview": "Fourth-grade friends George and Harold have a shared love of pranks and comic books -- and turning their principal into an undies-wearing superhero.", + "posterPath": "/hLaK7YPB4VofyDyBcztee8CbnHH.jpg", + "backdropPath": "/tV5pAtzZHKZCltnywHp0WGgxLZF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10762, + 16 + ], + "genres": [ + "Comedy", + "Kids", + "Animation" + ], + "releaseDate": "2018-07-13", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.5, + "voteCount": 72, + "popularity": 3.7924 + }, + { + "id": 281555, + "title": "To Cook a Bear", + "originalTitle": "Koka björn", + "overview": "In Northern Sweden, 1852, a new pastor and his family arrive in Kengis, a village riddled with disorder.", + "posterPath": "/71dqddtGqtCWLJApvZuznxvIzvj.jpg", + "backdropPath": "/aQiLb3L29b7qnnHyZ8EqM6hQzp6.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18, + 9648 + ], + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2025-10-15", + "releaseYear": "2025", + "originalLanguage": "sv", + "voteAverage": 7.75, + "voteCount": 18, + "popularity": 3.792 + }, + { + "id": 229926, + "title": "Suicide Squad Isekai", + "originalTitle": "Suicide Squad Isekai", + "overview": "In the crime-ridden city of Gotham, Amanda Waller, the head of A.R.G.U.S., assembles a group of notorious criminals—Harley Quinn, Deadshot, Peacemaker, Clayface and King Shark—for a mission into an otherworldly realm that's connected to this world through a gate. It's a realm of swords and magic where orcs rampage and dragons rule the skies. Can Harley Quinn and her crew conquer this perilous realm?", + "posterPath": "/AbVwsBJnLoqJzPJn8dlGFSGfygy.jpg", + "backdropPath": "/gMk4uyWJnsgauRIjJyE63ECDTNa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-06-27", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.4, + "voteCount": 91, + "popularity": 3.7908 + }, + { + "id": 1588, + "title": "Postman Pat", + "originalTitle": "Postman Pat", + "overview": "Pat and his black-and-white cat Jess deliver the mail in Greendale.", + "posterPath": "/zMlG1lGI2hZjGYU7pFTgEiJgTAn.jpg", + "backdropPath": "/ini5OKs2Y5pwfyarKgkDBgB3sW9.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16 + ], + "genres": [ + "Kids", + "Animation" + ], + "releaseDate": "1981-09-16", + "releaseYear": "1981", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 48, + "popularity": 3.7905 + }, + { + "id": 3394, + "title": "Grace Under Fire", + "originalTitle": "Grace Under Fire", + "overview": "Grace Kelly is a tough woman with kids to raise. A recently divorced recovering alcoholic, Grace struggles with the pressures of being a single mother supporting three children. Grace doesn't always handle situations with, well, grace, but she does get results.", + "posterPath": "/2XuykHIjMPRylWn1TWMJZ2uRZJw.jpg", + "backdropPath": "/rovjbJHk7KwrfEf94m5CMQkVyAs.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1993-09-29", + "releaseYear": "1993", + "originalLanguage": "en", + "voteAverage": 5.6, + "voteCount": 35, + "popularity": 3.79 + }, + { + "id": 233100, + "title": "Love Scout", + "originalTitle": "나의 완벽한 비서", + "overview": "Yoo Eun-ho, a single dad armed with perfection, becomes the secretary of Kang Ji-yun, the CEO of a popular headhunter company, who doesn't do anything except work.", + "posterPath": "/1c4n4C8MV6DVJlhGDlQy37mClLd.jpg", + "backdropPath": "/jJzGPx2V3flBT41WS53o7YSov2I.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 35 + ], + "genres": [ + "Drama", + "Comedy" + ], + "releaseDate": "2025-01-03", + "releaseYear": "2025", + "originalLanguage": "ko", + "voteAverage": 7.959, + "voteCount": 49, + "popularity": 3.7897 + }, + { + "id": 250308, + "title": "Earth Abides", + "originalTitle": "Earth Abides", + "overview": "When a plague of unprecedented virulence sweeps the globe, the human race is all but wiped out. In the aftermath, as the great machine of civilization slowly and inexorably breaks down, only a few shattered survivors remain to struggle against the slide into extinction.", + "posterPath": "/c8huM0hQ5fCjGFDyUmpQW9x0xmR.jpg", + "backdropPath": "/g97e0jUEjvVBF5Ald9oD7eWNMN4.jpg", + "mediaType": "tv", + "genreIds": [ + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-12-01", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.348, + "voteCount": 125, + "popularity": 3.7883 + }, + { + "id": 77652, + "title": "The Crown of the Kings", + "originalTitle": "Korona Królów", + "overview": "Piasts' reign is coming to end on Casimir the Great, who have no sons. Polish throne comes to Anjous. Thanks to the marriage of Saint Jadwiga of Poland with Lithuanian Grand Duke Jogaila, an alliance is made and a new dynasty - Jagiellons, who rule Poland for next two hundred years", + "posterPath": "/tPx4pZVi2SwWbq0apgpJwfAZqW6.jpg", + "backdropPath": "/mxlmdZos8fNDinN1e1vHrp6gCiX.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-01-01", + "releaseYear": "2018", + "originalLanguage": "pl", + "voteAverage": 6.778, + "voteCount": 18, + "popularity": 3.788 + }, + { + "id": 61988, + "title": "The Empress of China", + "originalTitle": "武媚娘传奇", + "overview": "Based on events in 7th and 8th-century Tang dynasty and starring producer Fan Bingbing as the titular character Wu Zetian, The Empress of China is the story of the only woman in Chinese history to rule as an emperor.", + "posterPath": "/yzl7vFwEqhe5Ipvi6wP22ZvSBs4.jpg", + "backdropPath": "/i8pjofStpmSPPmQwmCj7jX5XO86.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2014-12-21", + "releaseYear": "2014", + "originalLanguage": "zh", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 3.7878 + }, + { + "id": 1834, + "title": "Friday Night with Jonathan Ross", + "originalTitle": "Friday Night with Jonathan Ross", + "overview": "Jonathan Ross's take on current topics of conversation, guest interviews and live music from both a guest music group and the house band.", + "posterPath": "/dweqcAMlpidmoJcLu4omwuwsnef.jpg", + "backdropPath": "/nABc2EP7CQWaODt8sJXmMfGs4v4.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10767 + ], + "genres": [ + "Comedy", + "Talk" + ], + "releaseDate": "2001-11-02", + "releaseYear": "2001", + "originalLanguage": "en", + "voteAverage": 6, + "voteCount": 26, + "popularity": 3.7877 + }, + { + "id": 13818, + "title": "Branded", + "originalTitle": "Branded", + "overview": "Branded is an American Western series which aired on NBC from 1965 through 1966, sponsored by Procter & Gamble in its Sunday night 8:30 p.m. Eastern Time period, and starred Chuck Connors as Jason McCord, a United States Army Cavalry captain who had been drummed out of the service following an unjust accusation of cowardice.", + "posterPath": "/8ACpRBnhTwZzmJ7K53nCspALyw3.jpg", + "backdropPath": "/163R83j1fpmQ2N7aVZfIpHjmP3K.jpg", + "mediaType": "tv", + "genreIds": [ + 37 + ], + "genres": [ + "Western" + ], + "releaseDate": "1965-01-24", + "releaseYear": "1965", + "originalLanguage": "en", + "voteAverage": 6.647, + "voteCount": 17, + "popularity": 3.7876 + }, + { + "id": 69236, + "title": "BanG Dream!", + "originalTitle": "BanG Dream!", + "overview": "Since she was very young, Kasumi Toyama has always been searching for the \"Star Beat\", a sparkling and exciting sound she heard while looking up at the night sky. Just after getting into high school, Kasumi comes across a \"star-shaped guitar\" in the storage area of an old pawn shop. Feeling a rush and excitement she has never felt before, Kasumi teams up with four other girls and embarks on a journey to seek out the shiny place. We promise to perform a live here!", + "posterPath": "/odOfS98nLcWcgz4NaGkTwI8jgq3.jpg", + "backdropPath": "/tuUr8vsN3eoSXj9Ed12Bsc8HVT7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-21", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 26, + "popularity": 3.7866 + }, + { + "id": 9895, + "title": "Rowan & Martin's Laugh-In", + "originalTitle": "Rowan & Martin's Laugh-In", + "overview": "An American sketch comedy television program hosted by comedians Dan Rowan and Dick Martin.", + "posterPath": "/abMymAYr5R1yVeNl9NZs3x27RoY.jpg", + "backdropPath": "/iFB8TiYON7yC3qO6f0jfLd3YKVp.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "1968-01-22", + "releaseYear": "1968", + "originalLanguage": "en", + "voteAverage": 6.6, + "voteCount": 32, + "popularity": 3.7866 + }, + { + "id": 40361, + "title": "Majisuka Academy", + "originalTitle": "マジすか学園", + "overview": "Two transfer students, Atsuko Maeda and Onizuka Daruma came at the all-girls school Majisuka Gakuen. In this school violence and fighting are common among the Yankee students. Noisy and trouble maker Daruma made a fuss as soon as she entered the school, win in her first fight but then was beaten easily by another gang shortly after. In contrary to Daruma's bold-but-powerless attitude, Maeda who is truthfully a strong girl despite of her silent nature found Daruma is beaten by Team Hormon before her. The word \"Majisuka?\" (means are you serious?) instantly awaken her true nature and made her won the battle against Daruma's attackers easily, thus made a big fuss at the school and the news even reached the strongest fighting group, Rappapa. Afterwards, Daruma acknowledged Maeda as her boss and as a result the friendship between the two girls began to grow along with their fights with fellow students at their school.", + "posterPath": "/mtesRu93qYwS0YtIqkSjCY3ErUY.jpg", + "backdropPath": "/uksx1U7UKACy5feOHs6lgg2CUj8.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2010-01-08", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 11, + "popularity": 3.7858 + }, + { + "id": 37867, + "title": "Ladies versus Butlers!", + "originalTitle": "れでぃ×ばと!", + "overview": "Raised by his uncle after his parents’ deaths, Akiharu enrolls at a mostly female academy that specializes in training maids and butlers for high society placements.", + "posterPath": "/bjBHuTjC7KAGSAfeYY5q0q8ZcWn.jpg", + "backdropPath": "/iAxGl74HyzF52JDpuWg90tAThgY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2010-01-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.486, + "voteCount": 37, + "popularity": 3.7842 + }, + { + "id": 209265, + "title": "Land of Desire", + "originalTitle": "Terra e Paixão", + "overview": "When her husband is killed in a land grabbing attempt, Aline takes charge of cultivating his land and protecting his family. Facing the powerful Antonio La Selva, responsible for the death of her husband and the largest landowner in the region, Aline is determined to keep possession of her land and invest in its production. However, she didn't expect that she would fall in love with Daniel, son of her rival, who is at odds with his rebellious half-brother, Caio, who, in turn, also falls in love with the girl. In the interior of Brazil, Aline will have to fight two battles: the dispute for her lands and for her heart.", + "posterPath": "/6SgKArqMYmqSl5XlHEucGXvotw.jpg", + "backdropPath": "/8x3FjMAxAiG0LHyp6UQOHzbVAOj.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18, + 80 + ], + "genres": [ + "Soap", + "Drama", + "Crime" + ], + "releaseDate": "2023-05-08", + "releaseYear": "2023", + "originalLanguage": "pt", + "voteAverage": 6.4, + "voteCount": 152, + "popularity": 3.783 + }, + { + "id": 71809, + "title": "The Dark Crystal: Age of Resistance", + "originalTitle": "The Dark Crystal: Age of Resistance", + "overview": "Return to the world of Thra, where three Gelfling discover the horrifying secret behind the Skeksis' power and set out to ignite the fires of rebellion and save their world.", + "posterPath": "/xnMJ7mBC8Jx4emaj7TE4TU0Qm92.jpg", + "backdropPath": "/fuWeyCiT3MDABqsTsnXJkS6zjwe.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Family" + ], + "releaseDate": "2019-08-30", + "releaseYear": "2019", + "originalLanguage": "en", + "voteAverage": 7.8, + "voteCount": 415, + "popularity": 3.7823 + }, + { + "id": 64852, + "title": "Trapped", + "originalTitle": "Ófærð", + "overview": "The body of a murder victim turns up in a small Icelandic village just as a major snowstorm cuts the region off from the rest of the world.", + "posterPath": "/bTpSWcEqeTXH7Ipr2XUfGW36n02.jpg", + "backdropPath": "/A6AuIxCNXdl8cbNhjAu5oLnAlgU.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 9648, + 80 + ], + "genres": [ + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2015-12-27", + "releaseYear": "2015", + "originalLanguage": "is", + "voteAverage": 7.3, + "voteCount": 260, + "popularity": 3.7823 + }, + { + "id": 70249, + "title": "Evil Lives Here", + "originalTitle": "Evil Lives Here", + "overview": "The true stories of people who lived with a killer. How well do you really know your family? Would you recognize the warning signs? Or would you become entangled in evil?", + "posterPath": "/2PVjtXwWhwKTQUdfbkpZRwFxNMq.jpg", + "backdropPath": "/tCvdyHIYon3f7hRXIeeVrlvD1ui.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 99 + ], + "genres": [ + "Crime", + "Documentary" + ], + "releaseDate": "2016-01-17", + "releaseYear": "2016", + "originalLanguage": "en", + "voteAverage": 7.9, + "voteCount": 37, + "popularity": 3.7819 + }, + { + "id": 272466, + "title": "Under a Dark Sun", + "originalTitle": "Soleil noir", + "overview": "On the run from her troubled past, a young mother is accused of killing her new boss at a flower farm just before discovering he's actually her father.", + "posterPath": "/qRpM05HzTidQFJLKnoXlvqAVcrr.jpg", + "backdropPath": "/f6wPBGmukimVnVNOyLRmHLCjMb0.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 9648, + 18 + ], + "genres": [ + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2025-07-09", + "releaseYear": "2025", + "originalLanguage": "fr", + "voteAverage": 6.3, + "voteCount": 28, + "popularity": 3.7815 + }, + { + "id": 110222, + "title": "No Man's Land", + "originalTitle": "No Man's Land", + "overview": "Dive into the depths of the Syrian civil war through the eyes of Antoine, a young French man, in search for his estranged, presumed to be dead sister. While unraveling the mystery, piece by piece, Antoine’s journey crosses paths with adventurers and anarchists, spies and innocent victims, and provides a unique look on the tragic events in Syria, and the way they affect the entire world.", + "posterPath": "/T2NNPq6IygOxbNSL9h5txyEIEk.jpg", + "backdropPath": "/2HXiNAW3CWsuDq30Mf7nHnsQ3ea.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 18, + 10759 + ], + "genres": [ + "War & Politics", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2020-11-26", + "releaseYear": "2020", + "originalLanguage": "fr", + "voteAverage": 6.9, + "voteCount": 90, + "popularity": 3.7806 + }, + { + "id": 12895, + "title": "Terra Nostra", + "originalTitle": "Terra Nostra", + "overview": "This top-seller recounts the saga of Italians who immigrated to Brazil during the XIX century, seeking their fortunes in America. The forbidden love between Giulliana and Matteo flowers in the midst of the sweeping changes ushered in by the arrival of these Europeans in Brazilian towns. This great epic has thrilled viewers in more than eighty countries.", + "posterPath": "/yEXACjIps0cehcZeIPObKjccpwD.jpg", + "backdropPath": "/mHMnnMhG3rJQMETfe5L0GpYvjA0.jpg", + "mediaType": "tv", + "genreIds": [ + 10766, + 18 + ], + "genres": [ + "Soap", + "Drama" + ], + "releaseDate": "1999-09-20", + "releaseYear": "1999", + "originalLanguage": "pt", + "voteAverage": 6.6, + "voteCount": 13, + "popularity": 3.7806 + }, + { + "id": 75777, + "title": "After the Rain", + "originalTitle": "恋は雨上がりのように", + "overview": "Akira Tachibana was once the ace of a track club, but an injury forced her to quell her passion for sports. Masami Kondou, a divorced father, had ambitions of being a writer and now manages a restaurant, where Akira works. It is the intersection of Akira and Masami’s seemingly disconnected lives that makes each of them reconsider and redefine everything about themselves.", + "posterPath": "/fJPKTbTMOlxMtCFswnVotfVmjiA.jpg", + "backdropPath": "/zhYb24XFubSlMsnXe6LqyJKgOI1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-01-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 79, + "popularity": 3.7798 + }, + { + "id": 901, + "title": "The Sarah Silverman Program.", + "originalTitle": "The Sarah Silverman Program.", + "overview": "Sarah Silverman plays a character named Sarah Silverman, whose absurd daily life unfolds in scripted scenes and songs. With her sister and her gay neighbors by her side, Sarah always manages to fall into unique, unsettling and downright weird predicaments.", + "posterPath": "/Av6rU82VY2q9JktXVie6tgGVGxV.jpg", + "backdropPath": "/h2aAfEBQ35vnffvXlg12klXtBRH.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2007-02-01", + "releaseYear": "2007", + "originalLanguage": "en", + "voteAverage": 6.295, + "voteCount": 73, + "popularity": 3.778 + }, + { + "id": 66862, + "title": "Showa Genroku Rakugo Shinju", + "originalTitle": "昭和元禄落語心中", + "overview": "When a certain man is released from prison, he knows exactly where he's heading first. After falling in love with a traditional comic storyteller's rendition of the story called \"Shinigami,\" he is determined to become his apprentice. The performer, Yakumo, has never taken an apprentice before, but to everyone's surprise, he accepts the eager ex-prisoner, nicknaming him \"Yotaro.\" As Yotaro happily begins his new life, he meets others in Yakumo's life, including Yakumo's ward Konatsu. Konatsu was the daughter of a famous storyteller, and Yakumo took her in after her father's tragic death. Konatsu loved her father's storytelling, and would love to become a performer in her own right—but that path is not available for women.", + "posterPath": "/93Lm7iMKwAXEpYzBlFcSvXBvaCf.jpg", + "backdropPath": "/imjFzB8g4bLxl6ulKwYlF6mUXcY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2016-01-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 59, + "popularity": 3.7769 + }, + { + "id": 917, + "title": "Kate & Allie", + "originalTitle": "Kate & Allie", + "overview": "Kate & Allie is an American television situation comedy which ran from March 19, 1984, to May 22, 1989. Kate & Allie first aired on CBS as a midseason replacement series and only six episodes were initially commissioned, but the favorable response from critics and viewers alike easily convinced CBS to commit to a full season in the fall of 1984. The series was created by Sherry Coben.", + "posterPath": "/dZX5pGw0BZ9woVQqtmC6DlaP5e5.jpg", + "backdropPath": "/qIV7ixpoW7d8kVkoG84hhwYcDZF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 10751 + ], + "genres": [ + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "1984-03-19", + "releaseYear": "1984", + "originalLanguage": "en", + "voteAverage": 5.9, + "voteCount": 23, + "popularity": 3.7764 + }, + { + "id": 33827, + "title": "How the Universe Works", + "originalTitle": "How the Universe Works", + "overview": "A users' guide to the cosmos, from the Big Bang to galaxies, stars, planets and moons: where did it all come from and how does it all fit together? A primer for anyone who has ever looked up at the night sky and wondered.", + "posterPath": "/t87KvAQEvt5FvEV2FA4rXvnrC2m.jpg", + "backdropPath": "/pBjYwUATX2E8SRKA1oMvMi1h6eq.jpg", + "mediaType": "tv", + "genreIds": [ + 99 + ], + "genres": [ + "Documentary" + ], + "releaseDate": "2010-04-25", + "releaseYear": "2010", + "originalLanguage": "en", + "voteAverage": 8.3, + "voteCount": 117, + "popularity": 3.7753 + }, + { + "id": 238843, + "title": "The Fable", + "originalTitle": "ザ・ファブル", + "overview": "A legendary hitman trained to become the world's best assassin is asked to lay low for a year by the head of his crime family.", + "posterPath": "/aQeVABaQ7gZedtmtDRwhrgOQwgq.jpg", + "backdropPath": "/hbPUaAY6YQOmqMdwd5qm6JavqGk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.794, + "voteCount": 34, + "popularity": 3.7749 + }, + { + "id": 38324, + "title": "Dragon Quest: The Adventure of Dai", + "originalTitle": "ドラゴンクエスト ダイの大冒険", + "overview": "After the defeat of the demon lord Hadlar all of the monsters were unleashed from his evil will and moved to the island of Delmurin to live in peace. Dai is the only human living on the island. Having been raised by the kindly monster Brass, Dai's dream is to grow up to be a hero. He gets to become one when Hadlar is resurrected and the previous hero, Avan, comes to train Dai to help in the battle. But Hadlar, announcing that he now works for an even more powerful demon lord, comes to kill Avan. To save his students Avan uses a Self-Sacrifice spell to attack, but is unable to defeat Hadlar. When it seems that Dai and Avan's other student Pop are doomed a mark appears on Dai's forehead and he suddenly gains super powers and is able to fend off Hadlar. The two students then go off on a journey to avenge Avan and bring peace back to the world.", + "posterPath": "/6ryUWLfFNm15vNOosOgcSYISRlf.jpg", + "backdropPath": "/taqD0yjyXEQ58HGHJVG1sxJBGQO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1991-10-17", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 127, + "popularity": 3.7737 + }, + { + "id": 78385, + "title": "Something in the Rain", + "originalTitle": "밥 잘 사주는 예쁜 누나", + "overview": "Explore the relationship of two people as they go from being “just acquaintances” to “a genuine couple” — Yoon Jin Ah, a coffee shop supervisor in her 30s, and Seo Joon Hee, a designer at a video game company who has just returned from working abroad.", + "posterPath": "/sTNXMCASbNn7cSzcQ7DVazixnAc.jpg", + "backdropPath": "/vS5A1aSR00eEjkBpLFJ6XpfT0Ak.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-03-30", + "releaseYear": "2018", + "originalLanguage": "ko", + "voteAverage": 7.8, + "voteCount": 119, + "popularity": 3.7725 + }, + { + "id": 71722, + "title": "Deception", + "originalTitle": "Deception", + "overview": "Cameron Black is the world's greatest illusionist. At least, that's what people used to call him—before his greatest secret was exposed and his career destroyed. Even worse, Cameron has good reason to believe this was no accident.", + "posterPath": "/fRQ3JV67ADyTrRNyXqefqJkJsD4.jpg", + "backdropPath": "/nBkF6LVt0y8ly4QhUcN0n5nVPBz.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 80 + ], + "genres": [ + "Drama", + "Crime" + ], + "releaseDate": "2018-03-11", + "releaseYear": "2018", + "originalLanguage": "en", + "voteAverage": 7.691, + "voteCount": 243, + "popularity": 3.7716 + }, + { + "id": 7, + "title": "Bugs", + "originalTitle": "Bugs", + "overview": "Bugs was a British television drama series which ran for four series from April 1995 to August 1999. The programme, a mixture of action/adventure and science-fiction, involved a team of specialist independent crime-fighting technology experts, who faced a variety of threats based around computers and other modern technology. It was originally broadcast on Saturday evenings on BBC One, and was produced for the BBC by the independent production company Carnival Films.", + "posterPath": "/Ae1vRALxdMwxvtCR9YgvpKSHkbS.jpg", + "backdropPath": "/41f6mmiCK1CQomZtwgDbaFNHisT.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "1995-04-01", + "releaseYear": "1995", + "originalLanguage": "en", + "voteAverage": 6.8, + "voteCount": 16, + "popularity": 3.7716 + }, + { + "id": 82516, + "title": "Unauthorized Living", + "originalTitle": "Vivir sin permiso", + "overview": "When a Galician shipper and drug lord hiding his Alzheimer's disease plans to retire, his second-in-command plots to steal the empire from the heir.", + "posterPath": "/86RpBvHY7kzZWoXOhmeaEGo7jGo.jpg", + "backdropPath": "/8ajHJm9g6CRGdGeaoKHr3hD4n75.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 18 + ], + "genres": [ + "Crime", + "Drama" + ], + "releaseDate": "2018-09-24", + "releaseYear": "2018", + "originalLanguage": "es", + "voteAverage": 7.319, + "voteCount": 94, + "popularity": 3.7703 + }, + { + "id": 5665, + "title": "Choujuu Sentai Liveman", + "originalTitle": "超獣戦隊ライブマン", + "overview": "Yusuke, Jo, Megumi, Kenji, Gou and Rui are students at Academia but the latter three decide to turn bad and join forces with the evil army Volt. When the defectors return, their three friends are forced to combat them as Choujuu Sentai Liveman. With the help of an android ally named Colon and a few others along the way, the Liveman must save the world and their friends.", + "posterPath": "/hbMV06yJ6nHWj0LweEQCDXWhXcq.jpg", + "backdropPath": "/lFSoJkiH2QTJDRYeodpg2kJXvNA.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1988-02-27", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 167, + "popularity": 3.7691 + }, + { + "id": 60811, + "title": "Ping Pong the Animation", + "originalTitle": "ピンポン THE ANIMATION", + "overview": "Makoto 'Smile' Tsukimoto and his friend Yutaka 'Peco' Hoshino have been playing table tennis together since they were kids, but as they enter high school, they find that the game, and how they see it, has changed. Peco, brimming with confidence and energy, wants to be the best in the world, but the reserved Smile has little fighting spirit and doesn't want to sacrifice others' happiness just to win, despite his innate talent. As the two grow, and experience the ups and downs of the sport – and life – they try to figure out exactly who they really are and what drives them to play.", + "posterPath": "/frgVn3ww547TVQH8vS2bWKZnEBu.jpg", + "backdropPath": "/1rEPk87q49PspQmBJ74bwsXBVkH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2014-04-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 122, + "popularity": 3.7689 + }, + { + "id": 158300, + "title": "Knuckles", + "originalTitle": "Knuckles", + "overview": "Knuckles embarks on a hilarious and action-packed journey of self-discovery as he agrees to train Wade as his protégé and teach him the ways of the Echidna warrior.", + "posterPath": "/sK6Nr6KNUA4WlAHyNBTioz9FK87.jpg", + "backdropPath": "/aMpNvgWjPimLldhKgwtCt5NjLen.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10751, + 35 + ], + "genres": [ + "Action & Adventure", + "Family", + "Comedy" + ], + "releaseDate": "2024-04-26", + "releaseYear": "2024", + "originalLanguage": "en", + "voteAverage": 7.326, + "voteCount": 442, + "popularity": 3.7678 + }, + { + "id": 62285, + "title": "Marvel's The Defenders", + "originalTitle": "Marvel's The Defenders", + "overview": "Daredevil, Jessica Jones, Luke Cage and Iron Fist join forces to take on common enemies as a sinister conspiracy threatens New York City.", + "posterPath": "/49XzINhH4LFsgz7cx6TOPcHUJUL.jpg", + "backdropPath": "/72jj9y2Ejeub0mycZvkrPfT59sW.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 80 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2017-08-18", + "releaseYear": "2017", + "originalLanguage": "en", + "voteAverage": 7.063, + "voteCount": 1568, + "popularity": 3.7672 + }, + { + "id": 276277, + "title": "Las Hijas de la Señora García", + "originalTitle": "Las Hijas de la Señora García", + "overview": "Determined mother Mrs. Garcia strives to give daughters Valeria and Mar a better future, shielding them from poverty. She'll fight to see her dreams reflected in them and provide the highest standard of living.", + "posterPath": "/c75tX49ZsDfyiYih6A0sc5M4zzP.jpg", + "backdropPath": "/bX3MGRFsd5Tc5CB75ooGuo9qiob.jpg", + "mediaType": "tv", + "genreIds": [ + 10751, + 18, + 10766 + ], + "genres": [ + "Family", + "Drama", + "Soap" + ], + "releaseDate": "2024-11-11", + "releaseYear": "2024", + "originalLanguage": "es", + "voteAverage": 7.4, + "voteCount": 76, + "popularity": 3.767 + }, + { + "id": 34121, + "title": "Baccano!", + "originalTitle": "バッカーノ!", + "overview": "Alchemists, swindlers, thieves, and gangsters cross paths on The Flying Pussyfoot, a 1930s American transcontinental train, as it embarks on a legendary voyage that leaves a trail of blood all over the country.", + "posterPath": "/nMGIGtHzcX8tmjEUpGM7g2vXtAz.jpg", + "backdropPath": "/1KQYzDvPhe6XDycqmL4jb7QO51d.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 16, + 80, + 9648 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Animation", + "Crime", + "Mystery" + ], + "releaseDate": "2007-07-27", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.716, + "voteCount": 194, + "popularity": 3.7667 + }, + { + "id": 61406, + "title": "Transparent", + "originalTitle": "Transparent", + "overview": "An LA family with serious boundary issues have their past and future unravel when a dramatic admission causes everyone's secrets to spill out.", + "posterPath": "/mrLzehvZpm5osA4MlMR41gYayWZ.jpg", + "backdropPath": "/bOSNG1mhGRTNJmOJka4d2zU9R67.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18 + ], + "genres": [ + "Comedy", + "Drama" + ], + "releaseDate": "2014-09-26", + "releaseYear": "2014", + "originalLanguage": "en", + "voteAverage": 6.345, + "voteCount": 165, + "popularity": 3.7654 + }, + { + "id": 69113, + "title": "Cyborg 009", + "originalTitle": "サイボーグ009 THE CYBORG SOLDIER", + "overview": "Nine super-powered cyborg soldiers join forces to combat Black Ghost, the terrorist organization which they were originally created to serve.", + "posterPath": "/iFr5M9gQsQOVCByh7fiHR17RZSd.jpg", + "backdropPath": "/x8T0dcllXzScXpO5jTi1m4letUY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-10-14", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 19, + "popularity": 3.765 + }, + { + "id": 77026, + "title": "Sen Anlat Karadeniz", + "originalTitle": "Sen Anlat Karadeniz", + "overview": "A victim of violence, Nefes fights with Vedat, a psychopath, for her son and herself. In this way, she will experience true love with Tahir, in the Black Sea Region, who will protect her from Vedat.", + "posterPath": "/1swrKrfaUbXvT9JqdI4XkXQUoK1.jpg", + "backdropPath": "/fUO8slvybhdvJC59hyxchh6M90V.jpg", + "mediaType": "tv", + "genreIds": [ + 18 + ], + "genres": [ + "Drama" + ], + "releaseDate": "2018-01-24", + "releaseYear": "2018", + "originalLanguage": "tr", + "voteAverage": 8.03, + "voteCount": 99, + "popularity": 3.7637 + }, + { + "id": 4816, + "title": "Mahou Sentai Magiranger", + "originalTitle": "魔法戦隊マジレンジャー", + "overview": "Out of the blue, monsters usually living beneath the Earth’s surface began to attack the terrestrial world. They were called the Underground Hades Empire Infershia. The Ozu Siblings of Makito, Houka, Urara, Tsubasa, and Kai hear from their mother, Miyuki, that they are the Magicians of Justice to stand against the Infershia. The siblings are perplexed by such an unexpected event. However, without hesitation, Miyuki charges at the Infershia, and the Ozu Siblings are forced to come together to fight as one.", + "posterPath": "/6G1jOP0iZeSNnwvQUVNqq3YfZGu.jpg", + "backdropPath": "/As3cfzkje7trRO4nXmf1KPDadZF.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2005-02-13", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 15, + "popularity": 3.7625 + }, + { + "id": 271649, + "title": "Ruri Rocks", + "originalTitle": "瑠璃の宝石", + "overview": "High schooler Ruri Tanigawa loves shiny things. She loves them so much that she heads into the mountains to search for crystals herself—where she unexpectedly meets Nagi Arato, a graduate student studying mineralogy. As the pair start collecting minerals together, Ruri begins developing a genuine appreciation for science and the beauty of the natural world.", + "posterPath": "/gHI3fkZMR05PeiB1SN0JADZKfdj.jpg", + "backdropPath": "/uuwWD26VZBezCrGb0FxJidwWaEw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 21, + "popularity": 3.7618 + }, + { + "id": 210191, + "title": "A Journey to Love", + "originalTitle": "一念关山", + "overview": "Two top assassins from rival agencies and their six-member team who with diverse backgrounds, and unique skills embark on a journey filled with challenges and crises.", + "posterPath": "/7DKpFBcZNZWsmApAtYhuQWo1LJD.jpg", + "backdropPath": "/i19T9qxGLeRFkFZQazLOuSjtCDE.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759 + ], + "genres": [ + "Drama", + "Action & Adventure" + ], + "releaseDate": "2023-11-28", + "releaseYear": "2023", + "originalLanguage": "zh", + "voteAverage": 7.909, + "voteCount": 22, + "popularity": 3.7618 + }, + { + "id": 2282, + "title": "No One Could Live Here", + "originalTitle": "Aquí no hay quien viva", + "overview": "A caustic satire of many of the 'types' found in Spanish society.", + "posterPath": "/hid0QYj3n66IeX95orS6L5OfKHK.jpg", + "backdropPath": "/lnSQ2NCXMSYe3slI7rVgUq7VXxJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35 + ], + "genres": [ + "Comedy" + ], + "releaseDate": "2003-09-07", + "releaseYear": "2003", + "originalLanguage": "es", + "voteAverage": 8.4, + "voteCount": 182, + "popularity": 3.7612 + } + ], + "anime": [ + { + "id": 63926, + "title": "One-Punch Man", + "originalTitle": "ワンパンマン", + "overview": "The most powerful superhero in the world can kill anyone with one blow. But nothing can challenge him, so he struggles with ennui and depression.", + "posterPath": "/dT10AxJIXVvRwFAew4tt2RhzJrD.jpg", + "backdropPath": "/s0w8JbuNNxL1YgaHeDWih12C3jG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.395, + "voteCount": 3920, + "popularity": 63.4458 + }, + { + "id": 278635, + "title": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "originalTitle": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "overview": "God created nine races in the ancient times. Humans were the weakest, most ridiculed race among them. Light, a human boy, was fortunate enough to be invited to join a party of all nine races called the \"Assembly of the Races.\" He was happy being a member for a while, but that was a short dream. His hopes were only to be betrayed by his fellow members at the largest, most heinous dungeon \"Abyss.\" After surviving by himself at the bottom of Abyss, Light learns the true meaning of his gift \"Unlimited Gacha.\" Light will rise from the worst despair to build his own empire of the strongest players.", + "posterPath": "/pGNBYEae87H8iLRF3AoztonnZkp.jpg", + "backdropPath": "/vnTrREtP0qBSmZHEEZR515FAXXB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.518, + "voteCount": 28, + "popularity": 56.7365 + }, + { + "id": 256721, + "title": "Gachiakuta", + "originalTitle": "ガチアクタ", + "overview": "Accused of murder and thrown into the Pit, a young orphan joins a group of monster fighters with special powers to uncover the truth and seek vengeance.", + "posterPath": "/jH78nLFrTU6aP7hY7KO6DZHFLoX.jpg", + "backdropPath": "/mrapJp0qb6Fvo3IW9IrjCK9IgSo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 149, + "popularity": 49.3325 + }, + { + "id": 95479, + "title": "JUJUTSU KAISEN", + "originalTitle": "呪術廻戦", + "overview": "Yuji Itadori is a boy with tremendous physical strength, though he lives a completely ordinary high school life. One day, to save a classmate who has been attacked by curses, he eats the finger of Ryomen Sukuna, taking the curse into his own soul. From then on, he shares one body with Ryomen Sukuna. Guided by the most powerful of sorcerers, Satoru Gojo, Itadori is admitted to Tokyo Jujutsu High School, an organization that fights the curses... and thus begins the heroic tale of a boy who became a curse to exorcise a curse, a life from which he could never turn back.", + "posterPath": "/fHpKWq9ayzSk8nSwqRuaAUemRKh.jpg", + "backdropPath": "/gmECX1DvFgdUPjtio2zaL8BPYPu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.574, + "voteCount": 4034, + "popularity": 44.2951 + }, + { + "id": 120089, + "title": "SPY x FAMILY", + "originalTitle": "SPY×FAMILY", + "overview": "A spy, an assassin and a telepath come together to pose as a family, each for their own reasons, while hiding their true identities from each other.", + "posterPath": "/7NAvPYPAu7MeHwP8E9sn81PqsRh.jpg", + "backdropPath": "/lysUnU6V0VfcthDbviuVlIqgHOR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2022-04-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.53, + "voteCount": 2125, + "popularity": 40.855 + }, + { + "id": 241002, + "title": "Adam's Sweet Agony", + "originalTitle": "悶えてよ、アダムくん", + "overview": "This is the story of a boy, who became the lone Adam among four billion Eves. In a world where a pandemic has rendered all men impotent, high school student Itsuki is the exception who escaped it. In order to protect this secret, he transfers to a very special high school, which turns out to be composed of 90% girls! There, he encounters an upbeat and friendly senior, a sexually frustrated female teacher, a tomboyish school 'prince,' and an heiress from a wealthy family. For Itsuki, who has his pick of any woman in the world, the question remains: which one will he choose?", + "posterPath": "/1n1ZP0KHXUSvVxZG63x7aOzmO4M.jpg", + "backdropPath": "/bM4nCynOSA5oCNqLsqb1Fo56sZQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2024-01-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.773, + "voteCount": 33, + "popularity": 38.6189 + }, + { + "id": 213402, + "title": "Campfire Cooking in Another World with My Absurd Skill", + "originalTitle": "とんでもスキルで異世界放浪メシ", + "overview": "Tsuyoshi Mukohda, an ordinary salaryman, is suddenly transported to another world one day. The unique skill he gains upon arrival in this world is the seemingly useless \"Online Grocery.\" Mukohda is discouraged at first, but the modern foods he's able to bring to his new world using this skill prove to have some unbelievable effects!", + "posterPath": "/cXc3yiQ5RrimzfucovjO83RTrnq.jpg", + "backdropPath": "/47cdJm6WGJqCsdE6QvPh6fLKwuo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-11", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 257, + "popularity": 32.9207 + }, + { + "id": 127532, + "title": "Solo Leveling", + "originalTitle": "俺だけレベルアップな件", + "overview": "They say whatever doesn’t kill you makes you stronger, but that’s not the case for the world’s weakest hunter Sung Jinwoo. After being brutally slaughtered by monsters in a high-ranking dungeon, Jinwoo came back with the System, a program only he could see, that’s leveling him up in every way. Now, he’s inspired to discover the secrets behind his powers and the dungeon that spawned them.", + "posterPath": "/geCRueV3ElhRTr0xtJuEWJt6dJ1.jpg", + "backdropPath": "/xMNH87maNLt9n2bMDYeI6db5VFm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1448, + "popularity": 32.4864 + }, + { + "id": 60572, + "title": "Pokémon", + "originalTitle": "ポケットモンスター", + "overview": "Join Ash accompanied by his partner Pikachu, as he travels through many regions, meets new friends and faces new challenges on his quest to become a Pokémon Master.", + "posterPath": "/rOuGm07PxBhEsK9TaGPRQVJQm1X.jpg", + "backdropPath": "/yYpQV25I7XB6S0POJOScPjxYWV5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-04-01", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.952, + "voteCount": 2080, + "popularity": 30.7431 + }, + { + "id": 95897, + "title": "Overflow", + "originalTitle": "おーばーふろぉ", + "overview": "Kazushi Sudou is a university student who is visited by his two childhood friends, the sisters Ayane and Kotone Shirakawa. When Ayane discovers that Kazushi not only forgot to buy her pudding but is also using her special lotion in the bath, she decides to take revenge and join Kazushi in his bath along with Kotone. Will the perverted Kazushi be able to remain indifferent to them both?", + "posterPath": "/8RtwL5gxUvh9YViqjhNlVRvJpum.jpg", + "backdropPath": "/nvWtqhYb6g75Lf6qv7d7PdJ1Ab.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2020-01-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.431, + "voteCount": 72, + "popularity": 30.2068 + }, + { + "id": 44314, + "title": "Dog Days", + "originalTitle": "DOG DAYS", + "overview": "Dog Days takes place in the world of Flonyard, an alternate world where its inhabitants look like humans but with animal ears. When Cinque Izumi suddenly gets summoned to this alternate world he is appointed as a Hero. How will he lead his life and interact with the various characters in this new world?", + "posterPath": "/htSW5V0UpFZpVjldYnr8BvTe2T0.jpg", + "backdropPath": "/dNbuZDcVlzIjfuQ7f9zaYzAaEJU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-04-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.038, + "voteCount": 39, + "popularity": 29.609 + }, + { + "id": 12971, + "title": "Dragon Ball Z", + "originalTitle": "ドラゴンボールゼット", + "overview": "Now happily married and with a son, martial arts champion Goku must defend Earth from a series of extraterrestrial invaders bent on destruction.", + "posterPath": "/i1lMlxir5E4jyeLlqS2bK1Cn3Tt.jpg", + "backdropPath": "/ydf1CeiBLfdxiyNTpskM0802TKl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1989-04-26", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 8.356, + "voteCount": 4697, + "popularity": 29.5683 + }, + { + "id": 46298, + "title": "Hunter x Hunter", + "originalTitle": "HUNTER×HUNTER", + "overview": "To fulfill his dreams of becoming a legendary Hunter like his dad, a young boy must pass a rigorous examination and find his missing father.", + "posterPath": "/i2EEr2uBvRlAwJ8d8zTG2Y19mIa.jpg", + "backdropPath": "/6U0e6OHklJAcMAuIoGXjTBS5zsI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-10-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.662, + "voteCount": 1979, + "popularity": 28.9826 + }, + { + "id": 46260, + "title": "Naruto", + "originalTitle": "ナルト", + "overview": "Naruto Uzumaki, a mischievous adolescent ninja, struggles as he searches for recognition and dreams of becoming the Hokage, the village's leader and strongest ninja.", + "posterPath": "/xppeysfvDKVx775MFuH8Z9BlpMk.jpg", + "backdropPath": "/xuJ0F9RfKvVSJNDg2usurQ9WvY5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-10-03", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.363, + "voteCount": 5824, + "popularity": 27.2979 + }, + { + "id": 37854, + "title": "One Piece", + "originalTitle": "ワンピース", + "overview": "Years ago, the fearsome Pirate King, Gol D. Roger was executed leaving a huge pile of treasure and the famous \"One Piece\" behind. Whoever claims the \"One Piece\" will be named the new King of the Pirates.\n\nMonkey D. Luffy, a boy who consumed a \"Devil Fruit,\" decides to follow in the footsteps of his idol, the pirate Shanks, and find the One Piece. It helps, of course, that his body has the properties of rubber and that he's surrounded by a bevy of skilled fighters and thieves to help him along the way.\n\nLuffy will do anything to get the One Piece and become King of the Pirates!", + "posterPath": "/cMD9Ygz11zjJzAovURpO75Qg7rT.jpg", + "backdropPath": "/oVfucXvhutTpYExG9k06NJqnpT9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 16 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Animation" + ], + "releaseDate": "1999-10-20", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.721, + "voteCount": 5054, + "popularity": 26.0354 + }, + { + "id": 30984, + "title": "Bleach", + "originalTitle": "BLEACH", + "overview": "For as long as he can remember, Ichigo Kurosaki has been able to see ghosts. But when he meets Rukia, a Soul Reaper who battles evil spirits known as Hollows, he finds his life is changed forever. Now, with a newfound wealth of spiritual energy, Ichigo discovers his true calling: to protect the living and the dead from evil.", + "posterPath": "/2EewmxXe72ogD0EaWM8gqa0ccIw.jpg", + "backdropPath": "/o0NsbcIvsllg6CJX0FBFY8wWbsn.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.357, + "voteCount": 2021, + "popularity": 25.2366 + }, + { + "id": 34860, + "title": "Ninja Boy Rantaro", + "originalTitle": "忍たま乱太郎", + "overview": "Rantarō, Shinbei and Kirimaru are ninja apprentices in the Ninja Gakuen, where first grade ones are called \"Nintamas\". They must learn everything a ninja must know, but as for our heroes, money, food or playing are more interesting. The series show the everyday adventures of our heroes.", + "posterPath": "/raKlXyICQBeTxYavErIRybR6g8d.jpg", + "backdropPath": "/4fVwc77cov2q9i0szzYhlkAaqza.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 10762, + 16, + 10751 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Kids", + "Animation", + "Family" + ], + "releaseDate": "1993-04-10", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 20, + "popularity": 24.9863 + }, + { + "id": 65733, + "title": "Doraemon", + "originalTitle": "ドラえもん", + "overview": "Robotic cat Doraemon is sent back in time from the 22nd century to protect 10-year-old Noby, a lazy and uncoordinated boy who is destined to have a tragic future. Doraemon can create secret gadgets from a pocket on his stomach, but they usually cause more bad than good because of Noby's propensity to misuse them.", + "posterPath": "/9ZN1P32SHviL3SV51qLivxycvcx.jpg", + "backdropPath": "/hqqdoXdrp4o8ZqADHVYIXwBkn3Y.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "2005-04-22", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.033, + "voteCount": 198, + "popularity": 23.9475 + }, + { + "id": 253811, + "title": "Tougen Anki", + "originalTitle": "桃源暗鬼", + "overview": "After a Momotaro assassin suddenly kills his adoptive father, Shiki vows to avenge him. But first, he must learn to control his newly awakened Oni blood.", + "posterPath": "/vnasRNhwT5M3OvTAMzYn4i5fQcT.jpg", + "backdropPath": "/k7h9p81H6X6TGV70TgOp4TmjXco.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.085, + "voteCount": 53, + "popularity": 23.6342 + }, + { + "id": 57911, + "title": "Doraemon", + "originalTitle": "ドラえもん", + "overview": "Doraemon is an anime TV series created by Fujiko F. Fujio and based on the manga series of the same name. This anime is the much more successful successor of the 1973 anime.", + "posterPath": "/bHMqPDsW7Lb71CVHXq4PuEvQ4NY.jpg", + "backdropPath": "/6oVBODwFvbDJczBFlf4J930jKZg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "1979-04-02", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 598, + "popularity": 22.6199 + }, + { + "id": 114410, + "title": "Chainsaw Man", + "originalTitle": "チェンソーマン", + "overview": "Denji has a simple dream—to live a happy and peaceful life, spending time with a girl he likes. This is a far cry from reality, however, as Denji is forced by the yakuza into killing devils in order to pay off his crushing debts. Using his pet devil Pochita as a weapon, he is ready to do anything for a bit of cash.", + "posterPath": "/npdB6eFzizki0WaZ1OvKcJrWe97.jpg", + "backdropPath": "/5DUMPBSnHOZsbBv81GFXZXvDpo6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2022-10-12", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1963, + "popularity": 21.5477 + }, + { + "id": 284644, + "title": "My Status as an Assassin Obviously Exceeds the Hero's", + "originalTitle": "暗殺者である俺のステータスが勇者よりも明らかに強いのだが", + "overview": "Akira Oda and his high school classmates are summoned to another world! While the other students are granted cheat abilities through the summoning, Akira merely gains the abilities of a mediocre \"assassin.\" However, his status soon surpasses \"hero,\" the strongest profession. After Akira becomes suspicious of the King behind the summoning, he is falsely framed for a crime and forced to flee.", + "posterPath": "/oQk3aXYEa4TMd9rAYgzDpAYTU8P.jpg", + "backdropPath": "/k0aoy0vcLxpI8d6USLMM2qzhwsb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.154, + "voteCount": 13, + "popularity": 21.3019 + }, + { + "id": 94664, + "title": "Mushoku Tensei: Jobless Reincarnation", + "originalTitle": "無職転生 ~異世界行ったら本気だす~", + "overview": "A 34-year-old hikikomori is kicked out of his home by his family after the death of his parents. After his eviction, he saves a group of teenagers from being killed by a speeding truck, but loses his life in the process. When he comes to, he realizes he has been reborn as Rudeus Greyrat, in a world of swords and sorcery.", + "posterPath": "/gLKOYIMyKlUHW0SVdskhgf9C0yy.jpg", + "backdropPath": "/j9fRIimor0AMFJR9kjZubXcABzZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.54, + "voteCount": 1371, + "popularity": 20.2686 + }, + { + "id": 31910, + "title": "Naruto Shippūden", + "originalTitle": "ナルト 疾風伝", + "overview": "After 2 and a half years Naruto finally returns to his village of Konoha, and sets about putting his ambitions to work. It will not be easy though as he has amassed a few more dangerous enemies, in the likes of the shinobi organization; Akatsuki.", + "posterPath": "/71mASgFgSiPl9QUexVH8BubU0lD.jpg", + "backdropPath": "/z0YhJvomqedHF85bplUJEotkN5l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-02-15", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.533, + "voteCount": 8487, + "popularity": 20.155 + }, + { + "id": 136342, + "title": "Disney Twisted-Wonderland: The Animation", + "originalTitle": "ディズニー ツイステッドワンダーランド ザ アニメーション", + "overview": "High school student Yu is suddenly transported to Twisted-Wonderland, a world of magic and wonder. Now, he must face monsters, whimsical magicians-in-training, and mysterious incidents, all without any magic of his own. Will Yu ever find a way back to his own world?", + "posterPath": "/4hT2pA7J7uvdlNZzYIHQzapXCY6.jpg", + "backdropPath": "/27ntwTTA3ygsktcwiJYcximegwb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-29", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 21, + "popularity": 20.1141 + }, + { + "id": 220542, + "title": "The Apothecary Diaries", + "originalTitle": "薬屋のひとりごと", + "overview": "Maomao lived a peaceful life with her apothecary father. Until one day, she's sold as a lowly servant to the emperor's palace. But she wasn't meant for a compliant life among royalty. So when imperial heirs fall ill, she decides to step in and find a cure! This catches the eye of Jinshi, a handsome palace official who promotes her. Now, she's making a name for herself solving medical mysteries!", + "posterPath": "/e3ojpANrFnmJCyeBNTinYwyBCIN.jpg", + "backdropPath": "/gffVOVZ2Y9cmVIZ26Gt9ByMGCYH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2023-10-22", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 473, + "popularity": 19.8984 + }, + { + "id": 57706, + "title": "Ranma ½", + "originalTitle": "らんま1/2", + "overview": "Ranma Saotome, a teenage martial artist, and his father Genma travel to the 'cursed training ground' of Jusenkyo in China. There, despite the warnings of the Chinese guard, they fall into the cursed springs. From now on, whenever Ranma is doused in cold water, he turns into a girl and a cute, well-built redhead at that. Hot water changes him back into a man again, but only until the next time. To make matters worse, his father engages him to Akane Tendo, a girl who hates boys.", + "posterPath": "/qb1R5iLZcjIgdDIfXFQXmJadQPI.jpg", + "backdropPath": "/dI2O0d5Dkk8tpuTvCkUKQw3LNMv.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1989-04-15", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 8.606, + "voteCount": 1479, + "popularity": 19.4572 + }, + { + "id": 42731, + "title": "Heat Guy J", + "originalTitle": "ヒートガイジェイ", + "overview": "Heat Guy J is a 26 episode science fiction anime series created by Escaflowne director Kazuki Akane and Satelight.\n\nHeat Guy J was licensed and distributed in the U.S. in 2003 by Pioneer. It was re-released by Funimation Entertainment in the fall of 2009. The first 13 episodes of the show also was broadcast on the cable channel MTV2. A one volume manga was created based on the series, and was licensed and distributed by TOKYOPOP. The show was picked up for a UK DVD release by Manga Entertainment starting in March 2006. It was packaged in double DVD sets to make up for the long delayed release of the series.", + "posterPath": "/uf5CGkKfu4dEsO22kIbWFETqZmW.jpg", + "backdropPath": "/8cCgnpiQYTesoXGiLhgqkjvBnQy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-12-02", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 5, + "popularity": 19.354 + }, + { + "id": 209867, + "title": "Frieren: Beyond Journey's End", + "originalTitle": "葬送のフリーレン", + "overview": "Decades after her party defeated the Demon King, an old friend's funeral launches the elf wizard Frieren on a journey of self-discovery.", + "posterPath": "/dqZENchTd7lp5zht7BdlqM7RBhD.jpg", + "backdropPath": "/emGCHnRPru5LLWcKbSFzUEUisac.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-09-29", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.746, + "voteCount": 575, + "popularity": 19.0678 + }, + { + "id": 131041, + "title": "BLUE LOCK", + "originalTitle": "ブルーロック", + "overview": "High school soccer players from across Japan gather for a controversial project designed to create the best — and most egoistic — striker in the world.", + "posterPath": "/sTDTy73OYmKY51EK94Mc6AxogzR.jpg", + "backdropPath": "/seMRyWVwIVBWbC9xaMzDMZJ8fUH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2022-10-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.215, + "voteCount": 535, + "popularity": 18.7589 + }, + { + "id": 207468, + "title": "Kaiju No. 8", + "originalTitle": "怪獣8号", + "overview": "In a world plagued by creatures known as Kaiju, Kafka Hibino aspired to enlist in The Defense Force. He makes a promise to enlist with his childhood friend, Mina Ashiro. Soon, life takes them in separate ways. While employed cleaning up after Kaiju battles, Kafka meets Reno Ichikawa. Reno's determination to join The Defense Force reawakens Kafka's promise to join Mina and protect humanity.", + "posterPath": "/bJxGs0w5RAhaX4fIUQu511rvm0S.jpg", + "backdropPath": "/htGeuCcNhlBe8GTx3izKOsd8frw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-13", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 681, + "popularity": 18.4944 + }, + { + "id": 46195, + "title": "Monogatari", + "originalTitle": "化物語", + "overview": "Koyomi Araragi, a high school student, finds himself constantly encountering girls afflicted by supernatural \"oddities.\" He dedicates himself to helping them, often with the aid of the eccentric specialist Meme Oshino. Each arc talks about a different girl's unique struggle and the mysterious cause of their affliction. The series explores themes of adolescence, personal growth, and the complexities of human relationships. It's known for its witty dialogue, stylistic animation, and unique narrative structure.", + "posterPath": "/zCEjjb1NH3LLsWeZx47wOeqkezf.jpg", + "backdropPath": "/2WBO3C7CjsOTT5wgi9Inn5iQhVv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "2009-07-03", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 495, + "popularity": 18.0738 + }, + { + "id": 13916, + "title": "Death Note", + "originalTitle": "DEATH NOTE", + "overview": "Light Yagami is an ace student with great prospects—and he’s bored out of his mind. But all that changes when he finds the Death Note, a notebook dropped by a rogue Shinigami death god. Any human whose name is written in the notebook dies, and Light has vowed to use the power of the Death Note to rid the world of evil. But will Light succeed in his noble goal, or will the Death Note turn him into the very thing he fights against?", + "posterPath": "/tCZFfYTIwrR7n94J6G14Y4hAFU6.jpg", + "backdropPath": "/mOlEbXcb6ufRJKogI35KqsSlCfB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-10-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.622, + "voteCount": 4608, + "popularity": 17.5876 + }, + { + "id": 271607, + "title": "The Fragrant Flower Blooms with Dignity", + "originalTitle": "薫る花は凛と咲く", + "overview": "When the intimidating Rintaro meets the open-minded Kaoruko, the unlikely duo grows closer. The issue? Their neighboring high schools hate each other.", + "posterPath": "/g1sYAQt0OeCxzyfagSEqxUlsLnt.jpg", + "backdropPath": "/dl3pdT1NZiqRM4aDBwsD2TtO8x9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.692, + "voteCount": 133, + "popularity": 17.5039 + }, + { + "id": 45950, + "title": "High School D×D", + "originalTitle": "ハイスクールD×D", + "overview": "Issei Hyodo is your average perverted high school student whose one wish in life is to have his own harem, but he's got to be one of the unluckiest guys around. He goes on his first date with a girl only to get brutally attacked and killed when it turns out the girl is really a vicious fallen angel. To top it all off, he's later reincarnated as a devil by his gorgeous senpai who tells him that she is also a devil and now his master! One thing's for sure, his peaceful days are over. In a battle between devils and angels, who will win?", + "posterPath": "/5a9vaaLDAZTYjgfWIw7ZYhL1m1A.jpg", + "backdropPath": "/u8QK47ttafn3iYox9o1dKyEEhcv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-01-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.533, + "voteCount": 1977, + "popularity": 17.4611 + }, + { + "id": 220150, + "title": "Pokémon Horizons", + "originalTitle": "ポケットモンスター", + "overview": "Follow Liko and Roy as they unravel the mysteries that surround them and encounter Friede, Captain Pikachu, Amethio, and others during their exciting adventures!", + "posterPath": "/amemXW39lMbNBJFRMJ5W7q9mLP2.jpg", + "backdropPath": "/d0axpGojOqDag5lDa0eNSEtw11l.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 10762, + 35, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids", + "Comedy", + "Animation" + ], + "releaseDate": "2023-04-14", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.787, + "voteCount": 94, + "popularity": 17.4247 + }, + { + "id": 42705, + "title": "Fighting Spirit", + "originalTitle": "はじめの一歩", + "overview": "Makunouchi Ippo is an ordinary high school student in Japan. Since he spends most of his time away from school helping his mother run the family business, he doesn't get to enjoy his younger years like most teenagers. Always a target for bullying at school (the family fishing business grants him a distinct odor), Ippo's life is one of hardship. One of these after-school bullying sessions turns Ippo's life around for the better, as he is saved by a boxer named Takamura. He decides to follow in Takamura's footsteps and train to become a boxer, giving his life direction and purpose. Ippo's path to perfecting his pugilistic prowess is just beginning...", + "posterPath": "/1LApB9C9kEkh2ZU2vzAhurNDipl.jpg", + "backdropPath": "/uHMjELRJMsrKbGBlT6ZQgUcOjtX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2000-10-03", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1148, + "popularity": 17.293 + }, + { + "id": 65930, + "title": "My Hero Academia", + "originalTitle": "僕のヒーローアカデミア", + "overview": "After he saves a bully from a Villain, a normal student is granted a superpower that allows him to attend a high school training academy for Heroes.", + "posterPath": "/phuYuzqWW9ru8EA3HVjE9W2Rr3M.jpg", + "backdropPath": "/cH39aJg9VlEaYo6yY37Iah8RAaz.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.62, + "voteCount": 5131, + "popularity": 16.8124 + }, + { + "id": 57775, + "title": "Chibi Maruko-chan", + "originalTitle": "ちびまる子ちゃん", + "overview": "Meet Maruko, a sweet schoolgirl with a hefty dose of curiosity (and occasional laziness!). She sails through life in a cozy town alongside her loving parents, grandparents, and sister. Maruko has a band of loyal friends, including her closest pal, Tama-chan, but her playful and doting grandpa is at the heart of it all. Life is never dull in this charming series.", + "posterPath": "/5Ta4wnZPzOf4oCEgpBfmvXWhYwJ.jpg", + "backdropPath": "/cqeeBvjpXu28JerXBItA73z5tqU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1990-01-07", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 21, + "popularity": 16.6568 + }, + { + "id": 65942, + "title": "Re:ZERO -Starting Life in Another World-", + "originalTitle": "Re:ゼロから始める異世界生活", + "overview": "Natsuki Subaru, an ordinary high school student, is on his way home from the convenience store when he finds himself transported to another world. As he's lost and confused in a new world where he doesn't even know left from right, the only person to reach out to him was a beautiful girl with silver hair. Determined to repay her somehow for saving him from his own despair, Subaru agrees to help the girl find something she's looking for.", + "posterPath": "/aRwmcX36r1ZpR5Xq5mmFcpUDQ8J.jpg", + "backdropPath": "/ai8bVS8Suvu4ErBhmgBvtESirBY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.829, + "voteCount": 556, + "popularity": 16.6301 + }, + { + "id": 119495, + "title": "The Eminence in Shadow", + "originalTitle": "陰の実力者になりたくて!", + "overview": "Shadowbrokers are those who go unnoticed, posing as unremarkable people, when in truth, they control everything from behind the scenes. Sid wants to be someone just like that more than anything, and something as insignificant as boring reality isn’t going to get in his way! He trains in secret every single night, preparing for his eventual rise to power—only to be denied his destiny by a run-of-the-mill (yet deadly) traffic accident. But when he wakes up in a another world and suddenly finds himself at the head of an actual secret organization doing battle with evil in the shadows, he’ll finally get a chance to act out all of his delusional fantasies!", + "posterPath": "/7JKYmtLydAwo9ZsEmAknZiO4U8g.jpg", + "backdropPath": "/htD5SJpPOvkmAowU80KrWnN59WO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2022-10-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 223, + "popularity": 16.5696 + }, + { + "id": 46392, + "title": "Duel Masters", + "originalTitle": "デュエル・マスターズ", + "overview": "A mysterious organization is interested in fledging duelist Shobu Kirifuda's ability to bring Duel Master creatures to life. With the support of his friends, Shobu duels with passion, discipline, and heart as he strives to be like his father and become the next Kaijudo master.", + "posterPath": "/t5ijeKzOukACRktUfbjuMIlqwfr.jpg", + "backdropPath": "/1xlpfYGGFXOlYqQSUlFKEv4hqbt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2002-10-21", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 19, + "popularity": 16.198 + }, + { + "id": 284442, + "title": "A Gatherer's Adventure in Isekai", + "originalTitle": "素材採取家の異世界旅行記", + "overview": "Kamishiro Takeru is a completely ordinary salaryman who reincarnates in another world—a world of swords and magic called Madeus—and starts his new isekai life with lots of new skills! Takeru must make the most of his enhanced physical strength, unbelievable magic power, and the \"Search\" ability that allows him to find items of worth as his great isekai journey begins!", + "posterPath": "/AtpIf9wnT6IaHoG31XsdqZEEf80.jpg", + "backdropPath": "/nir97l3eUIHeHUQjWhV3NffjIK3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.778, + "voteCount": 9, + "popularity": 15.8827 + }, + { + "id": 233643, + "title": "Secret Mission - Undercover Agents Never Back Down!", + "originalTitle": "しーくれっとみっしょん~潜入捜査官は絶対に負けない!~", + "overview": "Narcotics Enforcement Agent Riko Ikazuchi is undercover with her junior colleague Noma in an apartment that serves as the hideout for a criminal organization. Despite Riko and Noma posing as a newlywed couple, the criminals begin to suspect them after not hearing any marital intimacy during the night. To convince them that they are a loving couple, Noma starts touching Riko's body...", + "posterPath": "/xZV8e1iKi85PFZlbQBdznvtpAVJ.jpg", + "backdropPath": "/5IBSPGPAEFEkEJo4leqvpq0RcKf.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-10-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.08, + "voteCount": 25, + "popularity": 15.8137 + }, + { + "id": 30981, + "title": "Monster", + "originalTitle": "MONSTER", + "overview": "Kenzou Tenma, a Japanese brain surgeon in Germany, finds his life in utter turmoil after getting involved with a psychopath that was once a former patient.", + "posterPath": "/n5XNKXnoXpoXyfiCtXHOf8q8PFM.jpg", + "backdropPath": "/6T19aRp9zLMghZo1dTEwoNyreNZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 80, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Crime", + "Mystery" + ], + "releaseDate": "2004-04-07", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.498, + "voteCount": 698, + "popularity": 15.7636 + }, + { + "id": 30983, + "title": "Detective Conan", + "originalTitle": "名探偵コナン", + "overview": "The son of a world famous mystery writer, Jimmy Kudo, has achieved his own notoriety by assisting the local police as a student detective. He has always been able to solve the most difficult of criminal cases using his wits and power of reason.", + "posterPath": "/ibd5jpPu2oxup9ecU8xvwlRZF0O.jpg", + "backdropPath": "/5546GF3zT3yA25ydCz0KlujjRA3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 9648, + 35 + ], + "genres": [ + "Animation", + "Crime", + "Mystery", + "Comedy" + ], + "releaseDate": "1996-01-08", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 724, + "popularity": 15.7524 + }, + { + "id": 61374, + "title": "Tokyo Ghoul", + "originalTitle": "東京喰種トーキョーグール", + "overview": "Ken Kaneki, a bookworm college student, meets Rize, a girl his own age with whom he shares many interests.", + "posterPath": "/1m4RlC9BTCbyY549TOdVQ5NRPcR.jpg", + "backdropPath": "/yOarY3Yo0NMkuTuft87M5oAZa3C.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.276, + "voteCount": 2447, + "popularity": 15.5823 + }, + { + "id": 1429, + "title": "Attack on Titan", + "originalTitle": "進撃の巨人", + "overview": "100 years ago, the last remnants of humanity were forced to retreat behind the towering walls of a fortified city to escape the massive, man-eating Titans that roamed the land outside their fortress. Only the members of the Scouting Legion dared to stray beyond the safety of the walls – but even those brave warriors seldom returned alive. Those within the city clung to the illusion of a peaceful existence until the day that dream was shattered, and their slim chance at survival was reduced to one horrifying choice: kill – or be devoured!", + "posterPath": "/hTP1DtLGFamjfu8WqjnuQdP1n4i.jpg", + "backdropPath": "/3T5N0Fg6hE3lE6JHJJPKrjtdI4j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2013-04-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 7095, + "popularity": 15.4516 + }, + { + "id": 99071, + "title": "Redo of Healer", + "originalTitle": "回復術士のやり直し", + "overview": "In a world of monsters, adventurers and magic, some of the most gifted healers are subjugated to brute force. Keyaru gains the ability to rewind time and turns the tables on those who’ve exploited him in this dark fantasy tale of vengeance and fury.", + "posterPath": "/9T7TT0w92RbeRP5QSnNq81HHxde.jpg", + "backdropPath": "/injrIOMNCQv4kTNX6hWa1QlyKoK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Crime" + ], + "releaseDate": "2021-01-13", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.324, + "voteCount": 991, + "popularity": 15.4107 + }, + { + "id": 240411, + "title": "Dan Da Dan", + "originalTitle": "ダンダダン", + "overview": "In a bet to prove whether ghosts or aliens exist, two high schoolers face terrifying paranormal threats, gain superpowers and maybe even fall in love?!", + "posterPath": "/6qfZAOEUFIrbUH3JvePclx1nXzz.jpg", + "backdropPath": "/uNTrRKIOyKYISthoeizghtXPEOK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.595, + "voteCount": 721, + "popularity": 15.1362 + }, + { + "id": 42912, + "title": "Inazuma Eleven", + "originalTitle": "イナズマイレブン", + "overview": "Mamoru Endou is a cheerful goalkeeper in Raimon Jr High, with six other players in the team. But there was a day when the team was almost lead to disbandment by Natsumi unless they are able to win the match against the Teikoku Gakuen, currently the best team in Japan. He tried to save the club by gathering four more players to join the team.", + "posterPath": "/9kQWvBMPWz1gykKLXuX6JBjC9uQ.jpg", + "backdropPath": "/zhtEYosjlYtNavbvImxcs36We4i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 291, + "popularity": 15.1091 + }, + { + "id": 31911, + "title": "Fullmetal Alchemist: Brotherhood", + "originalTitle": "鋼の錬金術師 FULLMETAL ALCHEMIST", + "overview": "Disregard for alchemy’s laws ripped half of Edward Elric’s limbs from his body and left his brother Alphonse’s soul clinging to a suit of armor. To restore what was lost, the brothers seek the Philosopher’s Stone. Enemies and allies – the corrupt military, the Homunculi, and foreign alchemists – will alter the Elric brothers course, but their purpose will remain unchanged and their bond unbreakable.", + "posterPath": "/5ZFUEOULaVml7pQuXxhpR2SmVUw.jpg", + "backdropPath": "/A6tMQAo6t6eRFCPhsrShmxZLqFB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 2294, + "popularity": 15.07 + }, + { + "id": 45790, + "title": "JoJo's Bizarre Adventure", + "originalTitle": "ジョジョの奇妙な冒険", + "overview": "Follow the intergenerational feud between the Joestar Family and various forces of evil, the most prominent of which is Dio Brando and his followers.", + "posterPath": "/ogAWwbh3frWtiTyyXrZaVFtqCgp.jpg", + "backdropPath": "/mLKN1dsimKPiXCZ48KED0X8a02t.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1507, + "popularity": 15.0013 + }, + { + "id": 246029, + "title": "Viral Hit", + "originalTitle": "喧嘩独学", + "overview": "Scrawny high school student Hobin Yu is probably the last guy you'd expect to star in a NewTube channel that revolves around fighting. But after following some advice from a mysterious NewTube channel, Hobin is soon knocking out guys stronger than him and raking in more money than he could have ever dreamed of. Can Hobin keep this up, or will he eventually meet his match?", + "posterPath": "/1kZBsmNYgjRxFPBfrFxkQGwS7xX.jpg", + "backdropPath": "/wBnmxSBxaP5VrNFVsZuruERb1Cv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2024-04-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.895, + "voteCount": 19, + "popularity": 14.9101 + }, + { + "id": 78501, + "title": "Sweet Punishment: I'm the Guard's Personal Pet", + "originalTitle": "甘い懲罰~私は看守専用ペット", + "overview": "The story is set in a prison in the near future. It revolves around Hina Saotome, imprisoned despite her innocence, and the elegant yet sadistic guard Aki Myoujin. Hina's heart and body are at the mercy of Myoujin's \"heartless yet sweet domination\" from physical examinations to lovers' prison visits.", + "posterPath": "/rbETzzJLGIB2Bg6NwNekWTKfM6d.jpg", + "backdropPath": "/5Akyn19AM9flDDUN7pMUdzA9dWD.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-04-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 14.8213 + }, + { + "id": 3570, + "title": "Sailor Moon", + "originalTitle": "美少女戦士セーラームーン", + "overview": "One day, Usagi Tsukino, clumsy 2nd-year middle school student, stumbles upon a talking cat named Luna. Luna tells her that she is destined to be Sailor Moon, \"champion of love and justice\", and she must search for the fabled Moon Princess. Usagi finds friends that turn out to be destined senshi as well, and together they fight to save the world from the certain doom brought upon by the Dark Kingdom.", + "posterPath": "/wz45BNOMLRZdxXm94P8NGevKubm.jpg", + "backdropPath": "/sNCpbcCcRadDBMTh6An1dBMakqr.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1992-03-07", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 8.368, + "voteCount": 995, + "popularity": 14.7316 + }, + { + "id": 31572, + "title": "Lupin the 3rd", + "originalTitle": "ルパン三世", + "overview": "Follow the exciting adventures of Arsene Lupin III, the grandson of the world's greatest thief, Arsene Lupin. Together with Daisuke Jigen, Goemon Ishikawa and his love interest Fujiko Mine, he carries out the greatest robberies of all time, all the while evading the control of Inspector Koichi Zenigata.", + "posterPath": "/aywOqgw5opNykCW4R8os1liPVnq.jpg", + "backdropPath": "/961SQWKlq6EQKN5lvXLR04YxSkw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1971-10-24", + "releaseYear": "1971", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 119, + "popularity": 14.3305 + }, + { + "id": 85937, + "title": "Demon Slayer: Kimetsu no Yaiba", + "originalTitle": "鬼滅の刃", + "overview": "After a demon attack leaves his family slain and his sister cursed, Tanjiro embarks upon a perilous journey to find a cure and avenge those he's lost.", + "posterPath": "/xUfRZu2mi8jH6SzQEJGP6tjBuYj.jpg", + "backdropPath": "/3GQKYh6Trm8pxd2AypovoYQf4Ay.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.639, + "voteCount": 6985, + "popularity": 14.1938 + }, + { + "id": 207332, + "title": "SAKAMOTO DAYS", + "originalTitle": "SAKAMOTO DAYS", + "overview": "Once the greatest hitman of all, Taro Sakamoto retired in the name of love. But when his past catches up, he must fight to protect his beloved family.", + "posterPath": "/wRpCqsJFyKNuh5FMegNPrhzp2NF.jpg", + "backdropPath": "/blSthAPRbEOJBowdxppeQqNPRh9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2025-01-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.08, + "voteCount": 270, + "popularity": 14.0183 + }, + { + "id": 283880, + "title": "Hands off: Sawaranaide Kotesashi-kun", + "originalTitle": "さわらないで小手指くん", + "overview": "Kouyou Kotesashi, a sports doctor with massage skills, enrolls at Seiwa University Affiliated High School to secure a scholarship. He works as a live-in dorm manager, managing the school's talented female athletes and managing their well-being through intense training and massage therapy.", + "posterPath": "/qTlVmoB4lcPcZaxUKF63Hqu2gUg.jpg", + "backdropPath": "/42jDmQKtmMC2QS0AVvSyBCs7p5H.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-10-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 5, + "popularity": 13.9749 + }, + { + "id": 123249, + "title": "My Dress-Up Darling", + "originalTitle": "その着せ替え人形は恋をする", + "overview": "High schooler Wakana Gojo wants to become a kashirashi—a master craftsman who makes traditional Japanese Hina dolls. Though he's gung-ho about the craft, he knows nothing about the latest trends, and has a hard time fitting in with his class. The popular kids—especially one girl, Marin Kitagawa—seem like they live in a completely different world. That all changes one day, when she shares an unexpected secret with him, and their completely different worlds collide.", + "posterPath": "/A6mxBwvvv63JXZm3xXKv4SugE0L.jpg", + "backdropPath": "/gWPK2RIVJ6i3myf7Xdw8DqlznT8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2022-01-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.442, + "voteCount": 826, + "popularity": 13.8424 + }, + { + "id": 99466, + "title": "Yarichin Bitch Club", + "originalTitle": "ヤリチン☆ビッチ部", + "overview": "First-year Toono transfers from Tokyo to the all-boys boarding school deep in the mountains, \"Mori Moori Private School.\" The friendly Yaguchi who calls out to him becomes his only friend, but his dislike of sports makes him join the most laid-back looking photography club instead of Yaguchi's soccer club. However, the photography club is in name only and is actually nicknamed the \"Yarichin Bitch Club,\" filled with colorful seniors. In contrast to the troubled Toono, Kajima, who joined the club at the same time, is completely unphased and even slips a confession to Toono into the confusion. Toono himself thinks Yaguchi is cute, but Yaguchi finds himself blushing around Kajima and stuff happens. Furthermore, complications arise between the seniors…", + "posterPath": "/lz9FZVmb4zoy6L9of47atKz8uAE.jpg", + "backdropPath": "/lTGTQ02Bci6SIncqE1aljuy3NK7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-09-21", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 43, + "popularity": 13.8244 + }, + { + "id": 114868, + "title": "Record of Ragnarok", + "originalTitle": "終末のワルキューレ", + "overview": "Before eradicating humankind from the world, the gods give them one last chance to prove themselves worthy of survival. Let the Ragnarok battles begin.", + "posterPath": "/kTs2WNZOukpWdNhoRlH94pSJ3xf.jpg", + "backdropPath": "/6pSkqecoNsxSA467Z28uhVDrjXo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-06-17", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.433, + "voteCount": 1753, + "popularity": 13.7538 + }, + { + "id": 244808, + "title": "Nukitashi the Animation", + "originalTitle": "ぬきたし THE ANIMATION", + "overview": "On Seiran Island, secret society NLNS is united by Junnosuke Tachibana, who is determined to crush a law. They have found a benefactor, an unknown rich man, who offers them a secret base and cash. Their mission is to locate a mysterious girl and stop the law, keeping the SHO off their trail.", + "posterPath": "/y9kuMGKMMtNgpqcHlgZlL4geEtn.jpg", + "backdropPath": "/sKlF9YrVu84DYMDAUZEZDCvDxK2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-19", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 26, + "popularity": 13.5168 + }, + { + "id": 72517, + "title": "Classroom of the Elite", + "originalTitle": "ようこそ実力至上主義の教室へ", + "overview": "When Kiyotaka enters an elite government-sponsored high school, he finds out just how merit-based this education system is.", + "posterPath": "/yuHanbUUIv2UWRxxQFt9n8jtmOJ.jpg", + "backdropPath": "/d3yNn379emGP8xztqeOsB9oLNG2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2017-07-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 729, + "popularity": 13.1892 + }, + { + "id": 155440, + "title": "Insomniacs After School", + "originalTitle": "君は放課後インソムニア", + "overview": "Ganta Nakami is a high school student who suffers from insomnia. He meets Isaki Magari, a girl with the same condition. A relationship forms as they share a secret and catch up on their sleep in their school’s abandoned observatory.", + "posterPath": "/qChtK3uuCc5L5CpSeBpVV4MFRHD.jpg", + "backdropPath": "/leJEC6tORpACQXtW4HvSuRJBTsu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2023-04-11", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 43, + "popularity": 13.1852 + }, + { + "id": 30623, + "title": "Shin Chan", + "originalTitle": "クレヨンしんちゃん", + "overview": "Shin-chan, the boy next door, is a walking disaster, creating chaos wherever he goes. With the body of a child and the mind of an adult, Shinchan is wreaking more havoc than any child before. Shin-chan is carefree, optimistic and gets excited about everything. This 5 year-old likes to do things his way.", + "posterPath": "/zg19Paur3lVVSh8J4LJVO1wgBIg.jpg", + "backdropPath": "/2kZPbV9Yw5QiW0ye0WvveFc09YG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "1992-04-13", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 104, + "popularity": 13.1642 + }, + { + "id": 40424, + "title": "Initial D", + "originalTitle": "頭文字D", + "overview": "Takumi’s job as a tofu delivery boy has turned him into one of the most formidable drivers around. Behind the wheel of his Eight-Six, he’s one with the road—and his life shifts into high gear when the underground street racing world takes notice. Drivers from across the region are lining up for a shot at the new guy. Takumi’s not just focused on winning—he’s out to prove he’s the best.", + "posterPath": "/CMG53GMx0OFFmF4dzhlFuebarq.jpg", + "backdropPath": "/zBIIyH8yfdlfvvpEiG9PLwoVXc6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1998-04-18", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 117, + "popularity": 12.928 + }, + { + "id": 259140, + "title": "Ranma1/2", + "originalTitle": "らんま1/2", + "overview": "Akane Tendo meets her new fiancé, Ranma Saotome, a martial arts prodigy with a twist: he magically transforms into a girl upon touching cold water.", + "posterPath": "/zQhwc27CWHM4zx9lJU9bI5FRQOm.jpg", + "backdropPath": "/xMgzRUA1RjxLQn05oJ8IFbf06AO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.246, + "voteCount": 128, + "popularity": 12.9146 + }, + { + "id": 36024, + "title": "Ghost Hound", + "originalTitle": "神霊狩/GHOST HOUND", + "overview": "In an isolated region of Kyushu lies the town of Suiten. Though seeming small and modest, Suiten is not a picturesque place for a vacation, unless it is from the “Unseen World”. Taro, Makoto and Masayuki, three boys with traumatic pasts, learn to let their souls cross between the two parallel worlds. However, the Unseen World is no mere copy of the real Apparent World. The Unseen World is the home of ghosts, but changes are now allowing the souls of the dead to pass over into the Apparent World, with unpredictable effects. Follow the journey of Taro, Makoto and Masayuki, as they cross between the two worlds, trying to unravel a great mystery.", + "posterPath": "/mebvYDOMnnadzDDbJOdjQRnap63.jpg", + "backdropPath": "/aqIOOXlKuhlIbnp3cSNBVd33bNx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-18", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.643, + "voteCount": 21, + "popularity": 12.651 + }, + { + "id": 97525, + "title": "To Your Eternity", + "originalTitle": "不滅のあなたへ", + "overview": "An immortal being takes on the form of a human boy, wandering the earth and experiencing the pains and joys of life throughout his story without end.", + "posterPath": "/lA2jRBubr2OLOlbkJXuBXYqv4A9.jpg", + "backdropPath": "/qmeC99iX9YPbxi3Dwsw5VvxIbCC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-12", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 295, + "popularity": 12.6006 + }, + { + "id": 67075, + "title": "Mob Psycho 100", + "originalTitle": "モブサイコ100", + "overview": "Shigeo Kageyama, a.k.a. \"Mob,\" is a boy who has trouble expressing himself, but who happens to be a powerful esper. Mob is determined to live a normal life and keeps his ESP suppressed, but when his emotions surge to a level of 100%, something terrible happens to him! As he's surrounded by false espers, evil spirits, and mysterious organizations, what will Mob think? What choices will he make?", + "posterPath": "/vR7hwaGQ0ySRoq1WobiNRaPs4WO.jpg", + "backdropPath": "/kP5duNJEbTfXpBs6CITsaZ88pQi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-12", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.486, + "voteCount": 1222, + "popularity": 12.2299 + }, + { + "id": 60863, + "title": "Haikyu!!", + "originalTitle": "ハイキュー!!", + "overview": "Inspired by a small-statured pro volleyball player, Shouyou Hinata creates a volleyball team in his last year of middle school. Unfortunately the team is matched up against the \"King of the Court\" Tobio Kageyama's team in their first tournament and inevitably lose. After the crushing defeat, Hinata vows to surpass Kageyama. After entering high school, Hinata joins the volleyball team only to find that Tobio has also joined.", + "posterPath": "/8WEr48swcqe89Zsy5sdrGCASlIg.jpg", + "backdropPath": "/3mBtXzyOIzh5zJNEgHqIIYTPb6n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1445, + "popularity": 12.2041 + }, + { + "id": 46437, + "title": "Kingdom", + "originalTitle": "キングダム", + "overview": "In the Warring States period, young orphan Xin vows to aid King Zheng of Qin in his quest to unify China by becoming a general himself.", + "posterPath": "/dehuJJkKo50nYvCYppigrWejqLe.jpg", + "backdropPath": "/5CGM0vQpq0QBcslUXqoo0unlGPZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2012-06-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 46, + "popularity": 12.1019 + }, + { + "id": 282662, + "title": "With You, Our Love Will Make It Through", + "originalTitle": "キミと越えて恋になる", + "overview": "When high schooler Mari runs late for school, she never expects to fall for Tsunagu—a gentle, sensitive, beastfolk! In a world where beastfolk are segregated behind walls, Mari and Tsunagu show their differences are truly bridges. Can their love overcome the divide between beastfolk and humanity?", + "posterPath": "/uQb3NkDWEXQ9m1w49PzEy04uFn1.jpg", + "backdropPath": "/e8GfDn0MlqaxddpU6s928wOcAdI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-14", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.889, + "voteCount": 9, + "popularity": 12.0996 + }, + { + "id": 31724, + "title": "Code Geass: Lelouch of the Rebellion", + "originalTitle": "コードギアス 反逆のルルーシュ", + "overview": "Japan has been invaded and conquered by the Britannian Empire. Japan is now known as Area 11 and its citizens known as Elevens. The Britannian Empire takes away Japan's autonomous power and imposes its rule through the use of Knightmares. The Empire's rule has never faltered, but cracks have begun to show...", + "posterPath": "/x316WCogkeIwNY4JR8zTCHbI2nQ.jpg", + "backdropPath": "/5hS2OIuZSKGkR8R5l3bY5zh04Ce.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2006-10-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.339, + "voteCount": 828, + "popularity": 12.0493 + }, + { + "id": 35610, + "title": "InuYasha", + "originalTitle": "犬夜叉", + "overview": "Kagome Higurashi is a modern day young girl who lives with her family by the old Higure shrine. Unbeknownst to Kagome, she is the reincarnation of priestess Kikyo and posseses the \"Jewel of Four Souls\" (the Shikon jewel). One ill-fated day, Kagome locates an ancient well near her home and is abruptly transported through the well and into a feudal Japan, inhabited by demons. There, she encounters Inuyasha, son of a powerful demon father and a human mother, who is pinned to a tree by an enchanted arrow.", + "posterPath": "/jgvW9n0EwKtq9nbztWhyTvvoqjS.jpg", + "backdropPath": "/r5xkqlEBhzfffQjxHRMuXBrwKiv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Mystery" + ], + "releaseDate": "2000-10-16", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.576, + "voteCount": 2046, + "popularity": 11.8053 + }, + { + "id": 45782, + "title": "Sword Art Online", + "originalTitle": "ソードアート・オンライン", + "overview": "In the near future, a Virtual Reality Massive Multiplayer Online Role-Playing Game (VRMMORPG) called Sword Art Online has been released where players control their avatars with their bodies using a piece of technology called Nerve Gear. One day, players discover they cannot log out, as the game creator is holding them captive unless they reach the 100th floor of the game's tower and defeat the final boss. However, if they die in the game, they die in real life. Their struggle for survival starts now...", + "posterPath": "/9m8bFIXPg26taNrFSXGwEORVACD.jpg", + "backdropPath": "/t61TOLBPE2hgtVF7FtRu4M1Tuq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2012-07-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.175, + "voteCount": 2007, + "popularity": 11.5982 + }, + { + "id": 90660, + "title": "KENGAN ASHURA", + "originalTitle": "ケンガンアシュラ", + "overview": "Ohma Tokita enters a hidden world where corporate disputes are settled in brutal gladiator bouts. Forget the money, he just wants to fight — and win.", + "posterPath": "/tqR96OMBKzHNCNwJB3f3NsCkXbL.jpg", + "backdropPath": "/wJtrctuWTKgIi45zLw9tTjWQFY3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-31", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.348, + "voteCount": 1004, + "popularity": 11.5869 + }, + { + "id": 42444, + "title": "Saint Seiya", + "originalTitle": "聖闘士星矢", + "overview": "Ages ago, the goddess Athena was served by fighters called Saints who channeled the power of the Cosmos within them. Now a youth named Seiya has trained to become a Saint himself by earning the mystical Cloth of Pegasus. He is joined by other Saints with Cloths of their own to fight for Athena.", + "posterPath": "/dhtiYYbob8saEUFWle3aWgVY28M.jpg", + "backdropPath": "/sMJD1x7JH3I7tRgaPe4hoUjzZ6K.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1986-10-11", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 8.47, + "voteCount": 1361, + "popularity": 11.5757 + }, + { + "id": 45857, + "title": "REBORN!", + "originalTitle": "家庭教師ヒットマン REBORN!", + "overview": "\"No Good\" Tsunayoshi Sawada is next in line to become boss of the powerful Vongola mafia family. The Vongolas' most powerful hitman, a cursed gun-toting infant named Reborn, is sent to teach Tsuna how to be a boss.", + "posterPath": "/6x7mx9f3ufHCC3pNgMoMnzVo3jw.jpg", + "backdropPath": "/3wztM15Bq7TX3Kc8IzApqsOQQjK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2006-10-07", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 178, + "popularity": 11.544 + }, + { + "id": 280042, + "title": "A Wild Last Boss Appeared!", + "originalTitle": "野生のラスボスが現れた!", + "overview": "An MMO gamer awakens as the Black-Winged Tyrant, Lufas Maphaahl, rising from her sealed fate—only to find this is very real. Her defeat 200 years ago unleashed monsters of death, and the legend is one of terror. Now, trapped in the body of history's most feared conqueror, he must survive a world that wants her dead…and uncover why he's here.", + "posterPath": "/sDb5USp0nknvs3mHmyurgH8y3z6.jpg", + "backdropPath": "/gNYmU3RUlCb6dVqkiPCT7vglMfg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-10-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.667, + "voteCount": 6, + "popularity": 11.5413 + }, + { + "id": 78483, + "title": "Kakuriyo -Bed & Breakfast for Spirits-", + "originalTitle": "かくりよの宿飯", + "overview": "After losing her grandfather, Aoi—a girl who can see spirits known as ayakashi—is suddenly approached by an ogre. Demanding she pay her grandfather’s debt, he makes a huge request: her hand in marriage! Refusing this absurd offer, Aoi decides to work at the Tenjin-ya bed and breakfast for the ayakashi to pay back what her family owes.", + "posterPath": "/r1SZWuuPcAKcX4EzuEhZsO7LtTk.jpg", + "backdropPath": "/nnivHHZijJw7lyQaQtEhOKKAqs5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 160, + "popularity": 11.5332 + }, + { + "id": 285788, + "title": "Tojima Wants to Be a Kamen Rider", + "originalTitle": "東島丹三郎は仮面ライダーになりたい", + "overview": "Even after turning 40 years old, Tojima Tanzaburo still seriously wants to be a Kamen Rider. Just when it seems like his dream may never come true, he gets caught up in a series of infamous Shocker-inspired robberies... Shibata Yokusaru, the author of Air Master and 81 Diver, presents a story about adults who love Kamen Rider a little too much, and start playing pretend... for real!", + "posterPath": "/bD80ugDX7krshLcWxnqRYCOQPoo.jpg", + "backdropPath": "/qFODG6ZkEnpyDGCMuELo9Jgv086.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-10-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 6, + "popularity": 11.4694 + }, + { + "id": 258579, + "title": "Let This Grieving Soul Retire", + "originalTitle": "嘆きの亡霊は引退したい", + "overview": "Six childhood friends make a vow one day to become treasure hunters, and eventually grow to be the strongest heroes in the world. During his first quest, Krai Andrey realizes he isn’t cut out for the job. Even so, his friends make him their leader. Underpowered in the face of great expectations, Krai embarks on a reluctant hero’s tale of glory, headaches, and wanting to retire early.", + "posterPath": "/egViTAdBqUyUFI2sIBsGbnH5Sun.jpg", + "backdropPath": "/nOcLDLq0JaHmBGZFqHBthrUqMD7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-01", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 29, + "popularity": 11.4578 + }, + { + "id": 120142, + "title": "SABIKUI BISCO", + "originalTitle": "錆喰いビスコ", + "overview": "Japan’s post-apocalyptic wasteland replete with dust can only be saved by one thing—fungus. Bisco Akaboshi, a wanted criminal and skilled archer, searches for a legendary mushroom, known as Sabikui, said to devour any and all rust. Joining him on this epic saga to save the country is a giant crab and a young doctor. Can this unlikely trio find the fabled fungi and save the land?", + "posterPath": "/j0svbwWz6I0qOoR8pFIDoAiSFCW.jpg", + "backdropPath": "/1PjeMinKDUgHaWyFdlkCXKlDZnb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-11", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 47, + "popularity": 11.4358 + }, + { + "id": 97617, + "title": "The Misfit of Demon King Academy", + "originalTitle": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "overview": "Anos Voldigord was a tyrannical Demon King that eradicated humans, spirits, and even the gods, but became bored of eternal warfare and reincarnated with dreams of a peaceful world. However, what awaited him in reincarnation after 2000 years were descendants who became too weak after being accustomed to peace, and all sorts of magic that deteriorated to the extreme. Anos enters Demon King Academy that gathers and educates those who are viewed as the reincarnation of the Demon King, but the academy could not see through his true powers and ends up branding him as a misfit.", + "posterPath": "/xBNR7V4s5b0qQfRCiyEvIC5PS6v.jpg", + "backdropPath": "/fxISKAY8c2xYXt2CFLjUU2bEx8n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.452, + "voteCount": 840, + "popularity": 11.398 + }, + { + "id": 30669, + "title": "Yu Yu Hakusho", + "originalTitle": "幽☆遊☆白書", + "overview": "After dying to save a boy, delinquent tough guy Yusuke Urameshi is granted another chance at life by redeeming himself as a \"Spirit Detective.\"", + "posterPath": "/5OnjguJwkujo3R23w95EEX8eAEN.jpg", + "backdropPath": "/uNM5dbnPJXJJs1eggepRWjSvdIR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-10-10", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 463, + "popularity": 11.3025 + }, + { + "id": 9537, + "title": "My Family", + "originalTitle": "あたしンち", + "overview": "A light hearted comedy based on the about the daily life of a \"normal\" Japanese family. The Tachibana family consists of a housewife mom, a salary-man dad, and teenager Mikan and Yuzuhiko.", + "posterPath": "/yzXniZFkPjpfroSSQoG4aCCKT7B.jpg", + "backdropPath": "/6T1WTyy9tGlPxC78KUHNCOakY1N.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2002-04-19", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 14, + "popularity": 11.3 + }, + { + "id": 62715, + "title": "Dragon Ball Super", + "originalTitle": "ドラゴンボール超(スーパー)", + "overview": "With Majin Buu defeated half-a-year prior, peace returns to Earth, where Son Goku (now a radish farmer) and his friends now live peaceful lives. However, a new threat appears in the form of Beerus, the God of Destruction. Considered the most terrifying being in the entire universe, Beerus is eager to fight the legendary warrior seen in a prophecy foretold decades ago known as the Super Saiyan God. The series retells the events from the two Dragon Ball Z films, Battle of Gods and Resurrection 'F' before proceeding to an original story about the exploration of alternate universes.", + "posterPath": "/qEUrbXJ2qt4Rg84Btlx4STOhgte.jpg", + "backdropPath": "/qA2UwUQbj05aeBMCuC0mHSQ4loE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.185, + "voteCount": 5141, + "popularity": 11.1866 + }, + { + "id": 69500, + "title": "Natsume's Book of Friends", + "originalTitle": "夏目友人帳", + "overview": "Natsume Takashi has the ability to see spirits, which he has long kept secret. However, once he inherits a strange book that belonged to his deceased grandmother, Reiko, he discovers the reason why spirits surround him.", + "posterPath": "/c4B2NFHFH0N8W7ovMsxiGIj7Fgp.jpg", + "backdropPath": "/xHjRfQIRlxug491JrKiEYl9vHM1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Drama" + ], + "releaseDate": "2008-07-08", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 92, + "popularity": 11.1178 + }, + { + "id": 890, + "title": "Neon Genesis Evangelion", + "originalTitle": "新世紀エヴァンゲリオン", + "overview": "At the turn of the century, the Angels returned to Earth, seeking to wipe out humanity in an apocalyptic fury. Devastated, mankind's last remnants moved underground to wait for the day when the Angels would come back to finish the job. Fifteen years later, that day has come... but this time, humanity is ready to fight back with terrifying bio-mechanical weapons known as the Evangelions. Watch as Shinji, Rei, Asuka and the rest of the mysterious shadow agency Nerv battle to save earth from total annihilation.", + "posterPath": "/y2ah9t0navXyIvoHg1uIbIHO3tt.jpg", + "backdropPath": "/xQ8oveiU7D8prmpcL93RozjIuzf.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "1995-10-04", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1943, + "popularity": 11.0451 + }, + { + "id": 82739, + "title": "Rascal Does Not Dream of Bunny Girl Senpai", + "originalTitle": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "overview": "Puberty Syndrome—a rumored, mysterious syndrome that only affects those in their puberty. For example, a bunny girl suddenly appeared in front of Sakuta Azusagawa. The bunny girl's real identity is Mai Sakurajima, a teenage celebrity who is currently an inactive high school senior. For some reason, her charming figure does not reflect in the eyes of others. In the course of revealing the mystery behind this phenomenon, Sakuta begins to explore his feelings towards Mai. Set in a city where the skies and seas shine, Sakuta unfolds the meaning behind his bizarre encounters on women with the said syndrome.", + "posterPath": "/fbqDG7GjodvaNecgv1q8kfSNPl5.jpg", + "backdropPath": "/8165gnzhyRbkKfm3WFBINdkDQBR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Drama" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1275, + "popularity": 10.9415 + }, + { + "id": 218843, + "title": "The Seven Deadly Sins: Four Knights of the Apocalypse", + "originalTitle": "七つの大罪 黙示録の四騎士", + "overview": "As a prophecy of doom unfolds on the peaceful land of Britannia, a purehearted boy sets out on a journey of discovery — and revenge.", + "posterPath": "/6SWVJvCIC9B16u6wASZ8FEaNssz.jpg", + "backdropPath": "/dd1tEbUU9NLLo3drq39NknpHQ6v.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.199, + "voteCount": 198, + "popularity": 10.8683 + }, + { + "id": 50712, + "title": "Black Butler", + "originalTitle": "黒執事", + "overview": "In Victorian London, 12-year-old business magnate Ciel Phantomhive thwarts dangers to the queen as he's watched over by his demon butler, Sebastian.", + "posterPath": "/iXGs130TRoUplHf0o86zp9MqAYc.jpg", + "backdropPath": "/5U0dYTkHXPhoExNnEm5iKrpDqtr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 242, + "popularity": 10.7356 + }, + { + "id": 236994, + "title": "Dragon Ball DAIMA", + "originalTitle": "ドラゴンボールDAIMA", + "overview": "Mysteriously transformed into mini versions of themselves, Goku and his friends travel to the Demon Realm to uncover the truth and find a cure.", + "posterPath": "/8tpLyWAmYhe1D0d62gV3CWFDu2f.jpg", + "backdropPath": "/oUmWLyeko3kYdUr8DBLIsxwcugl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.171, + "voteCount": 545, + "popularity": 10.6809 + }, + { + "id": 210879, + "title": "Rurouni Kenshin", + "originalTitle": "るろうに剣心 -明治剣客浪漫譚-", + "overview": "Ten years have passed since the end of Bakumatsu, an era of war that saw the uprising of citizens against the Tokugawa shogunate. The revolutionaries wanted to create a time of peace, and a thriving country free from oppression. The new age of Meiji has come, but peace has not yet been achieved. Swords are banned but people are still murdered in the streets. Orphans of war veterans are left with nowhere to go, while the government seems content to just line their pockets with money.", + "posterPath": "/zT77Y6iQGmYGBqbhQi0ySD60o9i.jpg", + "backdropPath": "/xV0Xro8G20SgxYfGrXun26k7eVp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2023-07-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.35, + "voteCount": 130, + "popularity": 10.6609 + }, + { + "id": 64196, + "title": "Overlord", + "originalTitle": "オーバーロード", + "overview": "In the year 2138, virtual reality gaming is booming. Yggdrasil, a popular online game is quietly shut down one day. However, one player named Momonga decides to not log out. Momonga is then transformed into the image of a skeleton as \"the most powerful wizard.\" The world continues to change, with non-player characters (NPCs) beginning to feel emotion. Having no parents, friends, or place in society, this ordinary young man Momonga then strives to take over the new world the game has become.", + "posterPath": "/K8ZUjxaj9F0t3AwJDz8ypzBynM.jpg", + "backdropPath": "/q5WJxYTXNNJdEHxFCqd3S8pO4VA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2015-07-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.473, + "voteCount": 1050, + "popularity": 10.6016 + }, + { + "id": 271605, + "title": "May I Ask for One Final Thing?", + "originalTitle": "最後にひとつだけお願いしてもよろしいでしょうか", + "overview": "In the middle of a ball, Scarlet's fiancé, Kyle, suddenly calls off their engagement. She's falsely accused of being a bully and people unfairly call her a \"Villainess.\" The aristocrats and noble families all denounce her. For years, she had to put up with his abuse and idiocy, but she can't take anymore of it! At her wit's end, she asks for one last favor; to give him a good fist in the face. So begins Scarlet's story of revenge against Kyle and his cronies! A fantasy about an elegant yet rebellious fighter, who doesn't let anyone take advantage of her!!", + "posterPath": "/6WUSl1NP5I66IGiI6n9BwOzZTbY.jpg", + "backdropPath": "/iKYPleY1z2YpO2OBkuUEWICwo5D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 10, + "popularity": 10.5845 + }, + { + "id": 65844, + "title": "KONOSUBA - God's blessing on this wonderful world!", + "originalTitle": "この素晴らしい世界に祝福を!", + "overview": "After a traffic accident, Kazuma Sato’s disappointingly brief life was supposed to be over, but he wakes up to see a beautiful girl before him. She claims to be a goddess, Aqua, and asks if he would like to go to another world and bring only one thing with him. Kazuma decides to bring the goddess herself, and they are transported to a fantasy world filled with adventure, ruled by a demon king. Now Kazuma only wants to live in peace, but Aqua wants to solve many of this world’s problems, and the demon king will only turn a blind eye for so long…", + "posterPath": "/oRaOeQlwktbGSd2T31FYAcgHZlh.jpg", + "backdropPath": "/rvZJxD36tKoglL8fXoMMWKGQfM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-14", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 1377, + "popularity": 10.3146 + }, + { + "id": 223500, + "title": "WIND BREAKER", + "originalTitle": "WIND BREAKER", + "overview": "Furin High School's delinquents get bad grades, but they excel at protecting their town. Then a victory-obsessed newcomer threatens the balance of power.", + "posterPath": "/3kTFL3PAeTyS8gGZAh0iYG6NNjt.jpg", + "backdropPath": "/czrAvoN103RYYX8lhkZPs2zgnkl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-04-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.054, + "voteCount": 156, + "popularity": 10.3067 + }, + { + "id": 96316, + "title": "Rent-a-Girlfriend", + "originalTitle": "彼女、お借りします", + "overview": "Kinoshita Kazuya is a 20-year-old failure of a college student. He managed to kiss his girlfriend once, but was dumped after a month. Completely spiteful, Kazuya uses a certain method to date a girl. He goes to their meeting place and a beautiful girl brushing her long, black hair behind her ear was there, smiling at him. Her name was Mizuhara Chizuru. Something real is born after just a single rental! A reckless rom-com filled with love and excitement is about to begin!", + "posterPath": "/6ZpDPUNtVw6UdJoStvVlRZ62yAi.jpg", + "backdropPath": "/ullfy98STkno11rDGi44SK6llwx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-07-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 932, + "popularity": 10.2982 + }, + { + "id": 299778, + "title": "Tatsuki Fujimoto 17-26", + "originalTitle": "藤本タツキ 17-26", + "overview": "Six studios and seven directors adapt the early works of Tatsuki Fujimoto, the mastermind behind \"Chainsaw Man,\" into an anime anthology. Each episode is an anime adaptation of a short story he drew from ages seventeen to twenty-six, including the first manga he ever submitted for competition. Watch as vivid tales of young love, chaos, madness, and the bonds between people unfold in each episode.", + "posterPath": "/rVBxMx1IrBdxbxbBuOWK8kiurMB.jpg", + "backdropPath": "/4YrYmBx26WZgITKlcceaIz74vj3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-11-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.615, + "voteCount": 26, + "popularity": 10.282 + }, + { + "id": 105009, + "title": "Tokyo Revengers", + "originalTitle": "東京リベンジャーズ", + "overview": "Takemichi Hanagaki is a freelancer that’s reached the absolute pits of despair in his life. He finds out that the only girlfriend he ever had, in middle school, Hinata Tachibana, had been killed by the ruthless Tokyo Manji Gang. The day after hearing about her death, he’s standing on the station platform and ends up being pushed over onto the tracks by a herd of people. He closes his eyes thinking he’s about to die, but when he opens his eyes back up, he somehow had gone back in time 12 years. Now that he’s back living the best days of his life, Takemichi decides to get revenge on his life.", + "posterPath": "/arB3L9pZZBSzUPSC8BEv8c3X0bF.jpg", + "backdropPath": "/ypYVX2NEm0F3HVXlqwvkwMVsW2R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.421, + "voteCount": 1270, + "popularity": 10.1844 + }, + { + "id": 34742, + "title": "To LOVE-Ru", + "originalTitle": "To LOVEる -とらぶる-", + "overview": "The story is about Rito Yuuki , a high-school boy who cannot confess to the girl of his dreams, Haruna Sairenji. One day when coming home and sulking in the bathtub a mysterious, nude girl, appears out of nowhere. Her name is Lala and she comes from the planet Deviluke, where she is the heir to the throne. Her father wants her to return to her home planet so she can marry one of the husband candidates, but she decides that she wants to marry Rito in order to stay on Earth.", + "posterPath": "/vsWNCisRhrBbUaTR56qCk6pLsEn.jpg", + "backdropPath": "/61vXR9xfgNqidYkBruRXhRTlVzI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-04-04", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.213, + "voteCount": 399, + "popularity": 10.1268 + }, + { + "id": 204832, + "title": "MASHLE: MAGIC AND MUSCLES", + "originalTitle": "マッシュル-MASHLE-", + "overview": "This is a world of magic where magic is used for everything. But deep in the forest exists a young man who spends his time training and bulking up. He can't use magic, but he enjoys a peaceful life with his father. But one day, his life is put in danger! Will his muscular body protect him from the magic users who are out to get him? Powerfully trained muscles crush magic as this abnormal magical fantasy begins!", + "posterPath": "/yORTvQOQTZzZ9JRIpRH4QaIaQBm.jpg", + "backdropPath": "/p1swd15DRtCnNj20U904dbXeVsi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.317, + "voteCount": 585, + "popularity": 10.1249 + }, + { + "id": 38464, + "title": "Blue Exorcist", + "originalTitle": "青の祓魔師", + "overview": "Humans live in the world of Assiah, demons in Gehenna. The two dimensions are not meant to interfere with each other, but demons still possess creatures in Assiah in spite of this. The humans who can fight these demons are known as exorcists. Rin Okumura is a boy who bears the curse of being Satan's illegitimate son. His foster father sacrificed himself to save him from demons. To avenge his foster father's death as well as to prove himself, Rin decides to follow the path of an exorcist and defeat his own father, Satan. To hone his raw skills, Rin enters True Cross Academy to train with other exorcist candidates.", + "posterPath": "/kpNoqNmElzGUEcEoZyfFwvYXMsR.jpg", + "backdropPath": "/wJzHFl5mq6JFbD6equTleJuzlnk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2011-04-17", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.887, + "voteCount": 494, + "popularity": 10.0824 + }, + { + "id": 218493, + "title": "Tales of Wedding Rings", + "originalTitle": "結婚指輪物語", + "overview": "Sato is a high school boy in love with his best friend Hime, an unearthly beauty from another realm. So when she moves back to her home world to get married, Sato doesn’t think twice—he follows her and crashes the wedding. Then, after a kiss from Hime, he suddenly becomes the new groom! But here, Hime is a Ring Princess and her husband is destined to be the Ring King: a hero of immense power.", + "posterPath": "/mNuV7Jti0jYQh34OP2WdmhflTDQ.jpg", + "backdropPath": "/uDYwinazoCtQFthSzc083biJPn4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2024-01-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.327, + "voteCount": 49, + "popularity": 10.0395 + }, + { + "id": 65931, + "title": "Bungo Stray Dogs", + "originalTitle": "文豪ストレイドッグス", + "overview": "Stalked by a beastly white tiger, Atsushi Nakajima has no idea that the menace lives inside him—a power that catches the attention of the Armed Detective Agency. Using inhuman abilities to combat crime, this team takes Atsushi under the wing of their most eccentric member, Dazai. Together, they tear through mafia-muddled mysteries while enemies keep an eye on the tiger’s lofty bounty.", + "posterPath": "/6AQmGhkYwAqW2OevjXbsh7tZnNO.jpg", + "backdropPath": "/79lc4Rocfnn9RIv1YlHC0jeBsqf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 80, + 9648, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Crime", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 402, + "popularity": 10.0238 + }, + { + "id": 85991, + "title": "Fruits Basket", + "originalTitle": "フルーツバスケット", + "overview": "After a family tragedy turns her life upside down, 16-year-old high school student Tohru Honda takes matters into her own hands and moves out… into a tent! Unfortunately for her, she pitches her new home on private land belonging to the mysterious Soma clan, and it isn't long before the owners discover her secret. But, as Tohru quickly finds out when the family offers to take her in, the Somas have a secret of their own—when hugged by the opposite sex, they turn into the animals of the Chinese Zodiac!", + "posterPath": "/9TGNcvMm91QXmnnCCYYqnYK0bK7.jpg", + "backdropPath": "/2vIjTPITEoHeetz1jU4UxyHL9tg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 153, + "popularity": 9.9997 + }, + { + "id": 226688, + "title": "Beyblade X", + "originalTitle": "BEYBLADE X", + "overview": "Beginner blader Robin Kazami joins up with influencer Multi Nana-iro and former champion Jaxon Cross to form this unlikely trio - ready to climb to the top of The X and win the title of champion blader!", + "posterPath": "/66wkm14IWdrY5LaKZDAbkD2T9Jt.jpg", + "backdropPath": "/6OAvlyDxLhfxxPB9Mn9w43EaR3N.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2023-10-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.667, + "voteCount": 9, + "popularity": 9.9841 + }, + { + "id": 20111, + "title": "Mobile Suit Gundam SEED", + "originalTitle": "機動戦士ガンダムSEED", + "overview": "Cosmic Era 71. Mankind has developed into two subspecies: Naturals, who reside on Earth, and Coordinators, genetically enhanced humans capable of withstanding the rigors of space who inhabit orbital colonies known as PLANTs. The story revolves around a young Coordinator named Kira Yamato, who becomes involved in the war between the two races after a neutral space colony secretly developing mobile suits for the Earth Alliance is attacked by the PLANTs' military force, ZAFT.", + "posterPath": "/rWgdDIq4JeaI36KdmLPkYcQjBQ3.jpg", + "backdropPath": "/otE9DjFrKMOv0Mkz1o7HfJGCvNF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2002-10-05", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.593, + "voteCount": 54, + "popularity": 9.9708 + }, + { + "id": 235758, + "title": "Alya Sometimes Hides Her Feelings in Russian", + "originalTitle": "時々ボソッとロシア語でデレる隣のアーリャさん", + "overview": "Alya is a transfer student enjoying popularity at her new high school, often sporting a cold shoulder while earning high marks in class. She ignores her nerdy classmate, Kuze Masachika, except for when she blurts out a flirtatious line to him in Russian. Little does she know, Kuze understands Russian, though he pretends not to. Let’s see where this wacky love story takes them!", + "posterPath": "/hfnzByZIRj6rx8xaxzS2zDilei1.jpg", + "backdropPath": "/3197ZU1CWDjdFsmqvWPZGXAYaoi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-07-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 189, + "popularity": 9.9332 + }, + { + "id": 205050, + "title": "Shangri-La Frontier", + "originalTitle": "シャングリラ・フロンティア", + "overview": "Rakuro Hizutome only cares about one thing: beating crappy VR games. He devotes his entire life to these buggy games and could clear them all in his sleep. One day, he decides to challenge himself and play a popular god-tier game called Shangri-La Frontier. But he quickly learns just how difficult it is. Will his expert skills be enough to uncover its hidden secrets?", + "posterPath": "/aCGdpgNkgz66R1winFkTFsMAhlC.jpg", + "backdropPath": "/yErVUZkLVak2ICxFC7mMfl3vcNP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 184, + "popularity": 9.8966 + }, + { + "id": 286984, + "title": "The Banished Court Magician Aims to Become the Strongest", + "originalTitle": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "overview": "Once a loyal court magician supporting the crown prince from behind the scenes, Alec Ygret is cast aside and exiled for only knowing support magic. But just as he hits rock bottom, he reunites with Yorha Eisentz, a former comrade from the legendary party Lasting Period. Invited to rejoin the team that once made history, Alec returns to dungeon exploration—and begins a new chapter in his life!", + "posterPath": "/tmGjjRN9dRFzybRLSecgxNo46IE.jpg", + "backdropPath": "/xmw3Ozf1wFslq9F9H2SWaDIYlKT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 6, + "popularity": 9.8209 + }, + { + "id": 117879, + "title": "My Friend's Little Sister Has It In for Me!", + "originalTitle": "友達の妹が俺にだけウザい", + "overview": "For high schooler Akiteru Oboshi, the whole youthful experience thing—like fun, friendships, and even having a girlfriend—is a complete waste of time. So when his best friend’s sister, Iroha Kohinata, keeps teasing him, Akiteru naturally finds it annoying. She practically lives in his room, she’s always on his bed, she’s just a raging storm of clinginess! Why is she only annoying around him?!", + "posterPath": "/kp6CHTu9a5SqDvfa6FsEAqMQRIv.jpg", + "backdropPath": "/rdIZOzYMcG0GZhgzQ1oBmWlsjNd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-10-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 5, + "popularity": 9.7754 + }, + { + "id": 60761, + "title": "Ace of the Diamond", + "originalTitle": "ダイヤのA", + "overview": "Eijun Sawamura is a pitcher who joins an elite school with a brilliant catcher named Kazuya Miyuki. Together with the rest of the team, they strive for Japan's storied Koushien championships through hard work and determination.", + "posterPath": "/pp5tCc1wlhR9XmtO1YcHrPB8CDb.jpg", + "backdropPath": "/dfEmmE3RJh3OYxyqOFDBt0qMS0E.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2013-10-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.925, + "voteCount": 67, + "popularity": 9.6977 + }, + { + "id": 85844, + "title": "Wise Man's Grandchild", + "originalTitle": "賢者の孫", + "overview": "A young man is reborn in another world where he is adopted as a baby by the hero Merlin Wolford and named Shin. By his 15th birthday, Shin has accumulated all kinds of power by studying under Merlin, but one thing his adoptive grandfather didn't give him was a lick of common sense.", + "posterPath": "/zlPIFzhr5uvjTmzEU2rjtwazrLX.jpg", + "backdropPath": "/dflKTqHxzT0QWrTxjYOghsfQ0R1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.062, + "voteCount": 338, + "popularity": 9.6574 + }, + { + "id": 67575, + "title": "Moomin", + "originalTitle": "楽しいムーミン一家", + "overview": "In the remote and mysterious Moominvalley live the Moomins, gentle and peaceful creatures. Young Moomintroll and his family experience many strange adventures, both magical and mundane. Based on the children's stories by Tove Jansson.", + "posterPath": "/oNwa7eEqZpnPaNGkFrvvd3mSKeJ.jpg", + "backdropPath": "/231meoDrNjyUqF0sD0xItVw1h7g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762, + 10765, + 35 + ], + "genres": [ + "Animation", + "Family", + "Kids", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1990-04-12", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 84, + "popularity": 9.6341 + }, + { + "id": 83121, + "title": "Kaguya-sama: Love Is War", + "originalTitle": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "overview": "Considered a genius due to having the highest grades in the country, Miyuki Shirogane leads the prestigious Shuchiin Academy's student council as its president, working alongside the beautiful and wealthy vice president Kaguya Shinomiya. The two are often regarded as the perfect couple by students despite them not being in any sort of romantic relationship.", + "posterPath": "/5khbC6AuNgnvnoDbjIMKCOhEtIc.jpg", + "backdropPath": "/dJ8yrSokdTMnhKJw06MllSfCegb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-01-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 789, + "popularity": 9.458 + }, + { + "id": 114477, + "title": "Harem in the Labyrinth of Another World", + "originalTitle": "異世界迷宮でハーレムを", + "overview": "High school student Michio Kaga was wandering aimlessly through life and the Internet, when he finds himself transported from a shady website to a fantasy world — reborn as a strong man who can use \"cheat\" powers. He uses his powers to become an adventurer, earn money, and get the right to claim girls that have idol-level beauty to form his very own harem.", + "posterPath": "/drAnsk5w2PX5x3ooPv7I2xr3ksq.jpg", + "backdropPath": "/k4jj6KGcxQzo26PSjfAdQguUTfN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 137, + "popularity": 9.3892 + }, + { + "id": 153485, + "title": "Sazae-san", + "originalTitle": "サザエさん", + "overview": "The adventures of Sazae Fuguta and her family and friends in their Tokyo suburb.", + "posterPath": "/sR3tqK13hhpohIfnpd2z3HkpnUb.jpg", + "backdropPath": "/1AwRQTVV1M8eEce3aUa6f3BEwap.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1969-10-14", + "releaseYear": "1969", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 9.3385 + }, + { + "id": 80020, + "title": "Super Dragon Ball Heroes", + "originalTitle": "スーパードラゴンボールヒーローズ", + "overview": "Trunks returns from the future to train with Goku and Vegeta. However, it disappears without warning. Then the mysterious Fu bursts in, telling them that Trunks has been imprisoned in the Prison Planet, a mysterious complex in an unknown place in the universes. The group seeks the dragon balls to free Trunks, but an endless battle awaits them! Will Goku and the others rescue Trunks and escape the Prison Planet?", + "posterPath": "/8jq6xv5c1WK7KAPOXCsodm8eUxp.jpg", + "backdropPath": "/xlKKD1TXJvh0YYlVPqqQ3g3ZUjM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-07-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 3101, + "popularity": 9.2184 + }, + { + "id": 278196, + "title": "The Summer Hikaru Died", + "originalTitle": "光が死んだ夏", + "overview": "Six months ago, Hikaru vanished for a week. Now, as his best friend Yoshiki senses something amiss and confronts him, the harrowing truth emerges.", + "posterPath": "/nabVYnDTkwNcnEAFfzSFKQfRlpB.jpg", + "backdropPath": "/vqPBAHjrxhyUnZZrnR5CTPDCM7V.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.548, + "voteCount": 63, + "popularity": 9.2163 + }, + { + "id": 212568, + "title": "Fufu Kokan: Modorenai Yoru", + "originalTitle": "夫婦交歓~戻れない夜~", + "overview": "Reiji and his wife joined their friends on a getaway to a traditional Japanese inn, hoping to conceive a child. However, their plans took an unexpected turn when Reiji was seduced by his friend's wife, while his own wife engaged in a passionate affair with their mutual friend. Amidst forbidden desires and the thrill of pushing boundaries, the four of them delved deeper into temptation. As they surrendered to their carnal passions, could they ever reclaim the innocence of their marriages?", + "posterPath": "/XjujJZNZfGG9OSo3ORrDEM4lWe.jpg", + "backdropPath": "/zHn49bVYPevKP9gHukKFqidLDVs.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-07-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 9, + "popularity": 9.2068 + }, + { + "id": 90937, + "title": "BEASTARS", + "originalTitle": "BEASTARS", + "overview": "In a world where beasts of all kinds coexist, a gentle wolf awakens to his own predatory urges as his school deals with a murder within its midst.", + "posterPath": "/sh9iNWkleOjEHRHj8WPHhmMi8HL.jpg", + "backdropPath": "/11Pfh4yqjKbOgn5vY3AQD9VU4Vc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2019-10-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.427, + "voteCount": 1239, + "popularity": 9.1628 + }, + { + "id": 223564, + "title": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You", + "originalTitle": "君のことが大大大大大好きな100人の彼女", + "overview": "Rentaro Aijo was rejected 100 times in middle school. He visits a shrine and prays for better luck in high school. The God of Love appears and promises that he'll soon meet 100 people he's destined to date. But there's a catch—once destiny introduces someone to him, the two must happily love each other. If they don't, they'll die. What will befall Rentaro and his 100 girlfriends in high school?", + "posterPath": "/ms7uowQ6gBjfaB2zzwugfr30IKZ.jpg", + "backdropPath": "/jibcH0Gnc7mCXD5vooVqU3e6Wuy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.071, + "voteCount": 168, + "popularity": 9.1429 + }, + { + "id": 56998, + "title": "High School of the Dead", + "originalTitle": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "overview": "The lockers are splattered with blood, the student bodies are piling up and that's not mystery meat they're eating in the cafeteria… it's the faculty! And that's just the start of the worst day of school ever when a nightmarish virus is unleashed, turning humans into flesh eating zombies and converting Fujimi High School into a literal hell on Earth. Now it's a crash course in survival, and the only test or skill that matters is the ability to keep moving, breathing and fighting. Because if nerds, jocks and the surviving staff can't find a way to work together to escape this carnal house of education, they're all going to end up on the menu. And that's assuming there's anyplace safe left to escape to.", + "posterPath": "/oPiNGGZyBzst3hKGFU1mteT0zhe.jpg", + "backdropPath": "/ivWNDYPxDMjc82ajeSPuyq70hu9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-07-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.141, + "voteCount": 911, + "popularity": 9.0919 + }, + { + "id": 35868, + "title": "Black Jack", + "originalTitle": "ブラック・ジャック", + "overview": "Black Jack is an \"unregistered\" doctor with a clouded, mysterious past. He works with his little assistant Pinoko (who has a massive crush on the doctor), dealing with medical cases not very well known, which can be strange, dangerous, or not known at all. But he is a genius, and can save almost any of his patients' life (as long as they have the money for it, that is), and is known to many around the world, especially to those of medicine and science. He's a man of science himself, and does not believe much until he has seen it, yet it is many times he is surprised by love and nature often overpowering the science he bases his life in.", + "posterPath": "/k2wN0WnOdlpPejL16nr74W2F9X2.jpg", + "backdropPath": "/q6WDVeZ7b8BfOS2NK0HUyYBkwtO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2004-10-11", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 7, + "popularity": 9.0425 + }, + { + "id": 30991, + "title": "Cowboy Bebop", + "originalTitle": "カウボーイビバップ", + "overview": "In 2071, roughly fifty years after an accident with a hyperspace gateway made the Earth almost uninhabitable, humanity has colonized most of the rocky planets and moons of the Solar System. Amid a rising crime rate, the Inter Solar System Police (ISSP) set up a legalized contract system, in which registered bounty hunters, also referred to as \"Cowboys\", chase criminals and bring them in alive in return for a reward.", + "posterPath": "/xDiXDfZwC6XYC6fxHI1jl3A3Ill.jpg", + "backdropPath": "/A4PHx94G7mvM3b8vsDJ5HEaQ6uv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 37 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Western" + ], + "releaseDate": "1998-04-03", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1806, + "popularity": 9.0245 + }, + { + "id": 67667, + "title": "Beyblade Burst", + "originalTitle": "ベイブレードバースト", + "overview": "Middle schooler Valt Aoi, with his Beyblade Valkyrie (Valtryek), faces off against friends, classmates, and rivals to become the world's number one Blader.", + "posterPath": "/fG7BHxDlntPyB57UuNo9sXmAmLV.jpg", + "backdropPath": "/j0meXFRhxwk13yUaLBSUtqOwx7I.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762, + 10765, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2016-04-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 333, + "popularity": 9.0101 + }, + { + "id": 45952, + "title": "Hunter x Hunter", + "originalTitle": "HUNTER×HUNTER", + "overview": "Gon Freecss discovers that the father he had always been told was dead was actually alive the whole time. Ging is a famous Hunter: an individual who has proven themself an elite member of humanity. Gon becomes determined to follow in his father's footsteps, pass the rigorous Hunter Examination.", + "posterPath": "/eobAuhCJA8oRp814V67WhezVXtQ.jpg", + "backdropPath": "/575sxZXNNulSlIz7DvtWH5r4lkC.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1999-10-16", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 197, + "popularity": 9.01 + }, + { + "id": 28136, + "title": "Rurouni Kenshin", + "originalTitle": "るろうに剣心 明治剣客浪漫譚", + "overview": "The Meiji Era was one of great renewal for Japan, where swords and killing were outlawed. However, many survivors from the time of Revolution still live, lurking in the shadows and waiting for a chance to use their killing blades again. Only Kenshin Himura, formerly one of the most brutal of killers, hopes to keep his swordsman's honor and still live in the new era.", + "posterPath": "/iP6i2AJGkxSugByBRrxNd2Goey8.jpg", + "backdropPath": "/AwhfYDJHEsgUzEkd7Dp3fKaeHHU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "1996-01-10", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 781, + "popularity": 9.0077 + }, + { + "id": 194916, + "title": "Chiikawa", + "originalTitle": "ちいかわ", + "overview": "The story follows the sometimes happy, sometimes sad, and a tad stressful daily life of \"some sort of small, cute creature\" (Nanka Chiisakute Kawaii Yatsu) known as Chiikawa. Chiikawa enjoys delicious food with bees and rabbits, toils hard every day for the rewards of work, and still maintains a smile.", + "posterPath": "/cXm3mxmlOWJZAyn5fqFI9JpARa3.jpg", + "backdropPath": "/qZXhYuCZR6lkspbu400oWwh6uCs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-04", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.182, + "voteCount": 11, + "popularity": 8.9894 + }, + { + "id": 35790, + "title": "Cardcaptor Sakura", + "originalTitle": "カードキャプターさくら", + "overview": "Sakura Kinomoto, an elementary school student who discovers that she possesses magical powers after accidentally freeing a set of magical cards from the book they had been sealed in for years. She is then tasked with retrieving those cards in order to avoid an unknown catastrophe from befalling the world.", + "posterPath": "/dj0uI34MOkZMTE233tfRebs0YYx.jpg", + "backdropPath": "/5IpJOGP0HAuwm9zwjt4NyqKe9oc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1998-04-07", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.592, + "voteCount": 772, + "popularity": 8.9238 + }, + { + "id": 902, + "title": "Yu-Gi-Oh! Duel Monsters", + "originalTitle": "遊☆戯☆王デュエルモンスターズ", + "overview": "Bullies often target someone frail and weak—someone exactly like Yûgi Muto. He treasures his Millennium Puzzle, an ancient Egyptian artifact that was brought into his grandfather's game shop. Believing that solving the puzzle will grant him his wish, he completes the puzzle, unleashing a new personality within him, the soul of the \"King of Games.\" The new personality named Yami Yûgi is the exact opposite of Yûgi. Upon any injustice toward him, Yami Yûgi takes over Yûgi's body and forces the opponent into a \"Shadow Game\".", + "posterPath": "/mM6c5ISlyKWtie2hGiZWo6hmlhU.jpg", + "backdropPath": "/gJYZBM200Flldo6im3EEdXslR1j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2000-04-18", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 997, + "popularity": 8.8841 + }, + { + "id": 277513, + "title": "There's No Freaking Way I'll Be Your Lover! Unless...", + "originalTitle": "わたしが恋人になれるわけないじゃん、ムリムリ!(※ムリじゃなかった!?)", + "overview": "Renako Amaori is leaving her awkward and lonely junior high school life behind, determined to become a normal girl with normal friends in high school. Glamorous, confident Mai Ouzuka is Renako’s total opposite: wealthy, outgoing, and a literal fashion model. Against the odds, the two girls form an immediate connection. Renako thinks she may have found the best friend of her dreams…until Mai’s romantic confession sends her into a tailspin. Renako wants to prove to Mai that being BFFs is better than being girlfriends, but Mai is dead set on convincing Renako that they’re destined to be lovers.", + "posterPath": "/zb3FK85DijFCOlT7ghGtfcZCGOC.jpg", + "backdropPath": "/xMn1Fc4Go36WxZTgx4txH1Lkn3B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.06, + "voteCount": 25, + "popularity": 8.8792 + }, + { + "id": 35935, + "title": "Berserk", + "originalTitle": "剣風伝奇ベルセルク", + "overview": "A wandering, sword-wielding mercenary joins a charismatic leader in his ruthless pursuit of glory and recognition in this epic medieval tale.", + "posterPath": "/xctRBSZzvoHDHz38ZZUGxRYetvG.jpg", + "backdropPath": "/99Y64VK0KwyRWfaW6VdpDfPKNMo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1997-10-08", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 722, + "popularity": 8.8546 + }, + { + "id": 110309, + "title": "SK8 the Infinity", + "originalTitle": "SK∞ エスケーエイト", + "overview": "\"S\" is a dangerous, top secret, no-holds-barred downhill skateboarding race down an abandoned mine. When avid skateboarder Reki takes Langa to the mountain where \"S\" is held, Langa, who's never been on a skateboard in his life, finds himself sucked into the world of \"S\", and…?!", + "posterPath": "/kZHnqxP16mb2pVYthJfT4buYk4P.jpg", + "backdropPath": "/rfEhgiJn80Z0YOyU6cU1v9hi0IS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 305, + "popularity": 8.8387 + }, + { + "id": 31654, + "title": "Digimon: Digital Monsters", + "originalTitle": "デジモンアドベンチャー", + "overview": "While at summer camp, seven kids come across seven Digivices and are transported to a strange digital world. In this new world they make friends with creatures that call themselves Digimon who were born to defend their world from various evil forces.", + "posterPath": "/vFJAiBNUlzEVa54mXgHGumr1z1s.jpg", + "backdropPath": "/8pGbYI34B9ruE9Hk42C8SZLT4zn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-03-07", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.059, + "voteCount": 884, + "popularity": 8.7903 + }, + { + "id": 236338, + "title": "Gushing Over Magical Girls", + "originalTitle": "魔法少女にあこがれて", + "overview": "Hiragi Utena is a major fangirl of the magical girls protecting her city and leaps at the chance to join their ranks. But once she transforms, she learns she's a villain who enjoys being a magical-girl-tormenting sadist instead!", + "posterPath": "/p7vWZL5HhbscGf7OjnprT2977Lt.jpg", + "backdropPath": "/dvIguIZqqQKCt7YiKq7evfk5NW3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2024-01-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 84, + "popularity": 8.7486 + }, + { + "id": 60833, + "title": "The Irregular at Magic High School", + "originalTitle": "魔法科高校の劣等生", + "overview": "In a world where magic is not a fairy tale but has existed for one hundred years siblings Tatsuya and Miyuki Shiba prepare to begin their studies at the elite Private Magic University Affiliated High School (Magic High School for short). Entering on different levels of the academic spectrum the two turn the once peaceful campus into a chaotic one.", + "posterPath": "/4mJpMjdghHo4LfvmP1q1mubkEvl.jpg", + "backdropPath": "/lpLZuBJuGDGSzLDVvIDKkdOpLuD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 297, + "popularity": 8.7392 + }, + { + "id": 82684, + "title": "That Time I Got Reincarnated as a Slime", + "originalTitle": "転生したらスライムだった件", + "overview": "Mikami's boring life ends abruptly when he's reincarnated in another world as a slime monster. He then forms a party of monsters, changing everything.", + "posterPath": "/pzujcdPAoH361NObVrtbA7zACE7.jpg", + "backdropPath": "/eJOy7YWAHgOS3V477sdTsq4v9jp.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2018-10-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.419, + "voteCount": 821, + "popularity": 8.6678 + }, + { + "id": 27845, + "title": "The Prince of Tennis", + "originalTitle": "テニスの王子様", + "overview": "Tennis prodigiy Ryoma Echizen enters the tennis powerhouse Seishun Academy. Once he fights his way onto the team, the game will never be the same.", + "posterPath": "/6Q1yvR5q5c5EItFe2QKfN4Y4vGF.jpg", + "backdropPath": "/7apk7MDXON2zZ2ntXgaIusHrUNa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2001-10-10", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.336, + "voteCount": 137, + "popularity": 8.6671 + }, + { + "id": 207840, + "title": "Harem Camp!", + "originalTitle": "ハーレムきゃんぷっ!", + "overview": "The story follows teacher and veteran solo camper Kensuke, who forms a camping group with four girls.", + "posterPath": "/dsaYRfBviInhrulwtHOyg1KB4ct.jpg", + "backdropPath": "/xIioKjaioyNLW38OMugFmn15DI6.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2022-10-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 24, + "popularity": 8.6338 + }, + { + "id": 72505, + "title": "In Another World with My Smartphone", + "originalTitle": "異世界はスマートフォンとともに。", + "overview": "Touya Mochizuki was accidentally killed, and as an apology, God allows him to be reborn in a fantasy world and will grant him any one wish he desires. And so, Touya chooses to keep his smartphone in the next world. In his second chance at life, he befriends many important figures and comes across the world's secret. He inherits the legacy of an ancient civilization and travels around nonchalantly while possessing powers that rival this world's kings.", + "posterPath": "/k3DboKiicC4ZbJe50sjG1fGdMGX.jpg", + "backdropPath": "/4TI2ZiYBfPi6c7oi4y49R19SbEj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-11", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 142, + "popularity": 8.6295 + }, + { + "id": 56426, + "title": "KochiKame", + "originalTitle": "こちら葛飾区亀有公園前派出所", + "overview": "Ryotsu Kankichi, or Ryo-san for short, is an unconventional cop working at the local police station who loves money. Together with famous celebrities like Nakagawa and Reiko, his strict boss Police Chief Ohara, and other wildly unique characters, he gets everyone caught up in all sorts of hijinks!", + "posterPath": "/ujltFuzCZ9FLe07kTRLZ2gpIJVY.jpg", + "backdropPath": "/exAYKMbS19gtoyJbeSUnlR2cXFO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 80, + 10751, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Crime", + "Family", + "Action & Adventure" + ], + "releaseDate": "1996-06-16", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 5, + "popularity": 8.6261 + }, + { + "id": 274814, + "title": "Pass the Monster Meat, Milady!", + "originalTitle": "悪食令嬢と狂血公爵 ~その魔物、私が美味しくいただきます!~", + "overview": "Any proper noble lady must cultivate refined tastes, and Lady Melphiera's delicacy of choice is…monsters! Unfortunately, society frowns upon such unladylike cravings and brands her the \"Voracious Villainess.\" At a banquet, she's attacked by a monster, only to be saved by the feared \"Blood-Mad Duke.\" He's brutal, mysterious, and charming. Could he be the one to appreciate her monstrous appetite?", + "posterPath": "/yab0QzxTOGgBK1WTkHfU4s7BhF9.jpg", + "backdropPath": "/9B5LzLJ26cq80rwnItaW4sf6EOS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9.2, + "voteCount": 5, + "popularity": 8.6211 + }, + { + "id": 45247, + "title": "Chihayafuru", + "originalTitle": "ちはやふる", + "overview": "Chihaya Ayase has spent most of her life supporting her sister’s model career. When she meets a boy named Arata Wataya, he thinks Chihaya has potential to become a great karuta player. As Chihaya dreams of becoming Japan's best karuta player, she is soon separated from her karuta playing friends. Now in high school, Chihaya still plays karuta in the hope that she will one day meet her friends again.", + "posterPath": "/x1yYnCaK8gLnLgQSnd9IGoapHbx.jpg", + "backdropPath": "/e1R4kNrWvSfb8AVViMp0okVJfuk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2011-10-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 58, + "popularity": 8.6113 + }, + { + "id": 294867, + "title": "Dusk Beyond the End of the World", + "originalTitle": "永久のユウグレ", + "overview": "When tensions around AI spark civil unrest, Akira is caught in the crossfire when he protects his girlfriend from an assassin. Hundreds of years later, he awakens from cryogenic sleep to an unfamiliar world and bonds with the android Yuugure.", + "posterPath": "/xfCA7LKaIE6JbswEVUITSrl6FiH.jpg", + "backdropPath": "/nV2vZlXsbU8cUdLAmTsPVGmySb9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.083, + "voteCount": 12, + "popularity": 8.4898 + }, + { + "id": 105248, + "title": "Cyberpunk: Edgerunners", + "originalTitle": "サイバーパンク: エッジランナーズ", + "overview": "In a dystopia riddled with corruption and cybernetic implants, a talented but reckless street kid strives to become a mercenary outlaw — an edgerunner.", + "posterPath": "/7jSWOc6jWSw5hZ78HB8Hw3pJxuk.jpg", + "backdropPath": "/aQJW88GolybGrVqzIC2hI6coUr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-09-13", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1630, + "popularity": 8.444 + }, + { + "id": 207250, + "title": "The Dangers in My Heart", + "originalTitle": "僕の心のヤバイやつ", + "overview": "Kyotaro Ichikawa, a boy barely clinging to the bottom rung of his school's social ladder, secretly believes he’s the tortured lead in some psychological thriller. He spends his days dreaming up ways to disrupt his classmates' peaceful lives and pining after Anna Yamada, the class idol. But Kyotaro's not nearly the troubled teen he pretends to be…and it turns out Anna's a bit odd herself!", + "posterPath": "/mKhMmREBOKXtp3tlv9rnLRxZec5.jpg", + "backdropPath": "/31VJnwcy3VOhoqETJEFIO58ZVfF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 207, + "popularity": 8.4316 + }, + { + "id": 93149, + "title": "Plunderer", + "originalTitle": "プランダラ", + "overview": "In a post-apocalyptic world dominated by the so-called \"Numbers,\" each human will have their identity branded with their own \"Count,\" which could define any number related to their life. May it be one's walked distance or amount of compliments given to them by others, this Count could lead them to the abyss when it has dropped to zero. In the year 305 of the Alcian calendar, Hina has inherited a mission from her Mother, whose Count has depreciated to zero, to search for the Legendary Red Baron. In her adventure, she meets a half-masked swordsman named Licht who tries to hide his identity, as he is known as a degenerate for having an incredibly low Count.", + "posterPath": "/A0XboGeodpGlj33QUtjPMMwrMkN.jpg", + "backdropPath": "/7BP3aJUCk8Iv20YFAqHcbXpTMwR.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.287, + "voteCount": 770, + "popularity": 8.4211 + }, + { + "id": 62110, + "title": "Assassination Classroom", + "originalTitle": "暗殺教室", + "overview": "The students of Class 3-E have a mission: kill their teacher before graduation. He has already destroyed the moon, and has promised to destroy the Earth if he can not be killed within a year. But how can this class of misfits kill a tentacled monster, capable of reaching Mach 20 speed, who may be the best teacher any of them have ever had?", + "posterPath": "/qf0l0nQ2t06Es3cSXflqx6l6vsJ.jpg", + "backdropPath": "/zkc2FkVymJDNXisS1mgpr8Ip2J.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 1155, + "popularity": 8.4061 + }, + { + "id": 100565, + "title": "86 EIGHTY-SIX", + "originalTitle": "86―エイティシックス―", + "overview": "Called “Juggernaut,” these are the unmanned combat drones developed by the Republic of San Magnolia in answer to the attacks by the autonomous unmanned drones of the neighboring Empire of Giad, the “Legion”. But they’re only unmanned in name. In reality, they are piloted by the Eighty-sixers—those considered to be less than human and treated as mere tools. Determined to achieve his own mysterious ends, Shin, the captain of Spearhead Squadron, which is comprised of Eighty-sixers, continues to fight a hopeless war on a battlefield where only death awaits him.", + "posterPath": "/pp2gzafNPiug63UskS2niHK9Y04.jpg", + "backdropPath": "/lSlL2CAPSDJ9gf2MZX0x2u2inKX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10768, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "War & Politics", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 202, + "popularity": 8.3465 + }, + { + "id": 154524, + "title": "Urusei Yatsura", + "originalTitle": "うる星やつら", + "overview": "Tokyo, Tomobiki Town. Lum, the gorgeous princess of the invading alien race of Oni is smitten with high school student Ataru Moroboshi. A dedicated womanizer, Ataru is unfazed by Lum’s fierce electric shock attacks and continues his daily hunt for pretty girls. With a host of other unique characters, including girl-next-door Shinobu, elegant shrine maiden Sakura, Lum’s best friends Oyuki, Benten, and Ran, Buddhist Monk Cherry, Ten, the little brat, heir to a wealthy family Shutaro Mendo and the masculine beauty Ryunosuke…it's a classic slapstick love comedy where anything goes!", + "posterPath": "/yeF9seq2EWgzhEaEbX3gQPmH6Ay.jpg", + "backdropPath": "/9C8klg2GszX2tXKw5xEzJwrL4Do.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-14", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 40, + "popularity": 8.3432 + }, + { + "id": 196944, + "title": "My Happy Marriage", + "originalTitle": "わたしの幸せな結婚", + "overview": "Miyo's abusive family deems her worthless – but together with her powerful husband-to-be, her true self and hidden powers slowly begin to shine.", + "posterPath": "/5RZIBqSYHhpQF6s8Dgw2aXlA4ZS.jpg", + "backdropPath": "/7uyRCBMQIWwJSWIR2aCrvPjbPzi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 198, + "popularity": 8.3298 + }, + { + "id": 38251, + "title": "Toriko", + "originalTitle": "トリコ", + "overview": "Toriko is a Japanese manga series written and illustrated by Mitsutoshi Shimabukuro. It has been serialized in Weekly Shōnen Jump since May 19, 2008, and has been collected into 25 tankōbon volumes by Shueisha as of July 4, 2013. It follows the adventure of Toriko, a Gourmet Hunter, as he searches for rare, diverse foods to complete a full-course meal. On his journey, he is accompanied by a timid chef who wants to improve his skills.", + "posterPath": "/8NyEmf5xB1HSYM0MzADv8mjUnc4.jpg", + "backdropPath": "/j6u5ekbEjavBLUYBPfoXZh4G4Jg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 31, + "popularity": 8.3074 + }, + { + "id": 82591, + "title": "Goblin Slayer", + "originalTitle": "ゴブリンスレイヤー", + "overview": "\"I'm not saving the world. I just kill goblins.\"\n\nRumor has it that, in a certain guild in the middle of nowhere, there is an extraordinary man who has climbed all the way to the Silver rank just by killing goblins. At the same guild, a priestess who's just become a new adventurer has formed her first party... and the man who ends up rescuing that party when they get into trouble is none other than the Goblin Slayer.", + "posterPath": "/x8ZQyxAFjz9jtCGivbOMYUC4Tp3.jpg", + "backdropPath": "/65XyAN0PrUkkfqvGbFRLjk5x3wZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.044, + "voteCount": 569, + "popularity": 8.262 + }, + { + "id": 280048, + "title": "Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator", + "originalTitle": "父は英雄、母は精霊、娘の私は転生者", + "overview": "Ellen, an 8-year-old girl and half-spirit, once lived as a scientist in modern-day Japan. Now she's been reincarnated into a new family: Rovel, her father and the kingdom's legendary hero, and Origin, her mother and the queen of spirits. On top of that, Ellen herself has the power to manipulate chemical elements! But are Ellen's powers enough to protect their family's happiness?", + "posterPath": "/6JMQ3DJMudsCgErn21Bv0NchmE6.jpg", + "backdropPath": "/mehM4JgH1Cm2HqLZ1ctFhm7XYUv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 5, + "popularity": 8.2283 + }, + { + "id": 73833, + "title": "The Ancient Magus' Bride", + "originalTitle": "魔法使いの嫁", + "overview": "Hatori Chise has lived a life full of neglect and abuse, devoid of anything resembling love. Far from the warmth of family, she has had her share of troubles and pitfalls. Just when all hope seems lost, a fateful encounter awaits her. When a man with the head of a beast, wielding strange powers, obtains her through a slave auction, Chise's life will never be the same again.\n\nThe man is a \"magus,\"a sorcerer of great power, who decides to free Chise from the bonds of captivity. The magus then makes a bold statement: Chise will become his apprentice--and his bride!", + "posterPath": "/8jnA4eaJLj3GByaYIw2JroVln40.jpg", + "backdropPath": "/KI2sFvqJHzc95WM7dcX9kM8tY1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2017-10-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 410, + "popularity": 8.1962 + }, + { + "id": 67199, + "title": "Saint Seiya: The Hades Chapter", + "originalTitle": "聖闘士星矢 冥王ハーデス", + "overview": "Hades is planning to take over the world, to achieve that goal, he sends out deceased Gold Saints to take Athena's head. Seiya and the other Bronze Saints come to help but their help isn't appreciated by the remaining Gold Saints that are still alive.", + "posterPath": "/tJ3DwxuZXttTFLWuAIjI5ugsbtU.jpg", + "backdropPath": "/v7v89HBEx80JWFRdsWhj9Iukp4T.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2002-11-09", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 84, + "popularity": 8.1516 + }, + { + "id": 42573, + "title": "Slam Dunk", + "originalTitle": "スラムダンク", + "overview": "Sakuragi Hanamichi is a junior high punk used to getting into fights and being rejected by girls but upon entering high school he meets the girl of his dreams, Haruko Akagi. He will do anything in order to win her heart including joining the school basketball team that is aiming to conquer the nation lead by Haruko's brother. The problem is that Sakuragi has never played basketball before and a freshman sensation is stealing the spotlight and Haruko's affection from him.", + "posterPath": "/gpkM8VeiYyQuEg9qkAoNplktwe4.jpg", + "backdropPath": "/dEANXnVRmFkSD8jcJlZ0oy8EnB1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1993-10-16", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 8.644, + "voteCount": 939, + "popularity": 8.1423 + }, + { + "id": 46004, + "title": "Date A Live", + "originalTitle": "デート・ア・ライブ", + "overview": "Thirty years ago a strange phenomenon called a \"spacequake\" devastated the center of Eurasia, claiming the lives of at least 150 million people. Since then, smaller spacequakes plague the world on an irregular basis. Shido Itsuka, a seemingly ordinary high schooler comes across a mysterious girl at the ground zero of a spacequake and learns she is one of the \"Spirits\" who are the real cause of the spacequakes that occur when they manifest themselves in the world. He is recruited to make use of his mysterious ability to seal the Spirits' powers thus stopping them from being a threat to mankind. However, there is a catch: to seal a Spirit's power, he must make her fall in love with him and kiss him.", + "posterPath": "/ylCuI1UK38lXkGGykHsDnC974EP.jpg", + "backdropPath": "/lyam6zw2aNwSM6h6sn0wTLgygj6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2013-04-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.318, + "voteCount": 471, + "popularity": 8.139 + }, + { + "id": 68854, + "title": "From Me to You: Kimi ni Todoke", + "originalTitle": "君に届け", + "overview": "Nicknamed \"Sadako\" for her spooky appearance, high schooler Sawako begins to break out of her shell when she befriends popular boy Kazehaya.", + "posterPath": "/lLUAZzJc6vfyE2TeY56AGGb3E5K.jpg", + "backdropPath": "/nh0BS0sLXozmkTpOe1Ve33MyxlK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2009-10-07", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.369, + "voteCount": 332, + "popularity": 8.136 + }, + { + "id": 281058, + "title": "Secrets of the Silent Witch", + "originalTitle": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "overview": "Humans couldn’t handle magic without chanting until Monica Everett, the Silent Witch and one of the Seven Sages, made unspoken magecraft possible. Painfully shy, she enjoys seclusion. One day, Louis Miller, the Barrier Mage, delivers the king’s order: Go undercover at a prestigious school for nobles to guard the second prince. Get ready for her silent mission to begin!", + "posterPath": "/2qqAiyfpVdY8qEtxBeNYKreS4t.jpg", + "backdropPath": "/6yC53NuAwy8KhbzsrZ7NDFsSg2p.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 46, + "popularity": 8.1295 + }, + { + "id": 209845, + "title": "Our Dating Story: The Experienced You and the Inexperienced Me", + "originalTitle": "経験済みなキミと、 経験ゼロなオレが、 お付き合いする話。", + "overview": "Ryuto Kashima is the school's gloomy introvert, and he's got a crush on Runa Shirakawa, the popular girl. After losing a bet to classmates, he confesses his feelings to Runa one day. Shocked and secretly just as inexperienced as Ryuto, Runa agrees to date him. The relationship grows between two people who are as similar as they are different. Will their young love blossom? Time will tell!", + "posterPath": "/ylz5RxpOCWkxIBiCCmNAlJcxYLn.jpg", + "backdropPath": "/rnNVcd81FoRyub0IDeg6wsH04bX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-10-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 45, + "popularity": 8.1206 + }, + { + "id": 93821, + "title": "XL Boss", + "originalTitle": "XL上司。", + "overview": "Running short of money, office lady Saki Watase is introduced to a part-time job where she's tasked with reviewing XL-size condoms. While receiving an escort home after a night of drinking, Saki's \"demon\" boss Keisuke Sudou notices that she's carrying a large quantity of condom. Once Saki explains her circumstances, Keisuke reveals that he is XL-size. A romance between the two thus begins.", + "posterPath": "/g69Q5Wc4DDpjpmWMKg2ElY1QPQt.jpg", + "backdropPath": "/kNfWTUji2C7L0bNuNZ6qHx9vzun.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-10-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 18, + "popularity": 8.1054 + }, + { + "id": 56387, + "title": "Fist of the North Star", + "originalTitle": "北斗の拳", + "overview": "In the year 199X, human civilization has been all but destroyed by a nuclear holocaust.", + "posterPath": "/yypGXmBPvyJiD7pOeD2R3q84FlA.jpg", + "backdropPath": "/9VdIABPH266DSurwrYHOvbZ9dtk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1984-10-11", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 116, + "popularity": 8.0865 + }, + { + "id": 26444, + "title": "Da Capo", + "originalTitle": "D.C.~ダ・カーポ~", + "overview": "Junichi Asakura lives with his adoptive sister Nemu in the crescent-shaped island of Hatsune Jima, a place where cherry blossoms bloom throughout the year. In this island, people have mysterious powers and attributes. For example, Junichi has the power to see other people's dreams, and he was also taught by his grandmother to magically create sweets. One day, Junichi's cousin and childhood friend, Sakura Yoshino came back from America all of a sudden. To Junichi's surprise, she looks exactly the same as the girl that moved away six years ago, and hasn't aged one bit. And she came back to remind Junichi of their childhood promise... It is a bittersweet tale of magic, love, hidden desires, and unattainable dreams.", + "posterPath": "/rfKB8JaUcUgy2cA0ubODfP2FUTC.jpg", + "backdropPath": "/meb3jsOPstWv0yNKKCTikhaT1za.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2003-07-05", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 12, + "popularity": 8.0663 + }, + { + "id": 213830, + "title": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "originalTitle": "転生したら第七王子だったので、気ままに魔術を極めます", + "overview": "Prince Lloyd wasn't always a prince...in fact, his previous life is one he remembers perfectly: he was a sorcerer, of sorts. So when he was forced to reincarnate, he decided to continue his studies, prince of the realm or no! But his new life has its own sets of challenges...including being a 10-year-old! What's the 7th prince/sorcerer to do?!", + "posterPath": "/ruLkQB8i1yazHgO0QCWpyJRRTs9.jpg", + "backdropPath": "/ed9Mgo1gBO9Za0zAyNIpTvtjTDU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.631, + "voteCount": 88, + "popularity": 8.0001 + }, + { + "id": 61440, + "title": "Strike the Blood", + "originalTitle": "ストライク・ザ・ブラッド", + "overview": "Kojou Akatsuki's days as an ordinary high school student in the Demon District of Itogami Island come to an abrupt end after a fateful encounter leaves him with the remarkable abilities of a vampire. It isn't long before he is thrust into the center of attention when it is discovered that he is the fourth primogenitor, an immensely powerful vampire whom most consider to be merely a legend. Fearing Kojou's destructive potential, the Lion King Organization sends in an apprentice sword-shaman, Yukina Himeragi, to monitor, and should he become a threat, kill the boy deemed the world's most powerful vampire. Forced together by circumstance, the two form an unlikely alliance as Kojou comes to terms with his abilities and they both struggle to protect the city from various emerging chaotic forces.", + "posterPath": "/rbGaCkEVS7PE5fKKMAmvO4XZXyA.jpg", + "backdropPath": "/cw8B3TTL8LSmAu31Db9MzFNJ273.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 73, + "popularity": 7.9559 + }, + { + "id": 60732, + "title": "Maken-Ki! Battling Venus", + "originalTitle": "マケン姫っ!", + "overview": "This romantic comedy is about Takeru Ohyama, a typical perverted teenage boy. His new school doesn't require entrance exams, and it just turned co-ed! Unfortunately, his dreams of a happy high school life are dashed when he finds out the school is much more than it seems. All of the students wield a special item—a Maken—to unleash their magical abilities in duels! Can Takeru find a Maken that works for him? Even while trying to fit in at a new school and dealing with all kinds of girl problems?", + "posterPath": "/wQub2j7xzXxjtjELPqDYgDmru4r.jpg", + "backdropPath": "/eH2E2Lq6vy0oVMDOR2IdpnRP9kK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2011-10-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 43, + "popularity": 7.9461 + }, + { + "id": 94523, + "title": "Magia Record: Puella Magi Madoka Magica Side Story", + "originalTitle": "マギアレコード 魔法少女まどか☆マギカ外伝", + "overview": "Few people know the truth: the world is safe thanks to the Magical Girls who are forced to slay Witches. Even though these girls are putting their lives on the line for a wish, rumors say they can be saved in Kamihama City. That’s where Iroha Tamaki is headed in search of answers; she can’t remember the wish she made to Kyubey.", + "posterPath": "/5o32Jnu6MWJr7lfiGapVq0BSYiK.jpg", + "backdropPath": "/bYxnvBgl1mY2Qu26Zmg4zINrhgo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-01-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 77, + "popularity": 7.9188 + }, + { + "id": 61223, + "title": "Akame ga Kill!", + "originalTitle": "アカメが斬る!", + "overview": "Young Tatsumi travels to the capital of the Empire in order to earn money for his starving people and encounters a world of unimaginable depravity, dominated by the ruthless Prime Minister who controls the child Emperor. Tatsumi is recruited by Night Raid, a group of assassins dedicated to eliminating corruption by mercilessly killing officials and privileged nobles.", + "posterPath": "/rMpvMbSlPbm5QYfFem9fx2Jnttq.jpg", + "backdropPath": "/3XAGgklKkJhv5M9m5NkfhBYb7l8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2014-07-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.267, + "voteCount": 1157, + "popularity": 7.9006 + }, + { + "id": 13549, + "title": "Science Ninja Team Gatchaman", + "originalTitle": "科学忍者隊ガッチャマン", + "overview": "Science Ninja Team Gatchaman is a five-member superhero team that is composed of the main characters in several anime created by Tatsuo Yoshida and originally produced in Japan by Tatsunoko Productions and later adapted into several English-language versions. It is also known by the abbreviated name Gatchaman.\n\nThe original series, produced in 1972, was eponymously named Kagaku Ninja Tai Gatchaman and is most well known to the English-speaking world as the adaptation titled Battle of the Planets. The series received additional English adaptations with G-Force: Guardians of Space and ADV Films' uncut 2005 release. Tatsunoko also uses the official translation Science Commando Gatchaman, as shown in numerous related products and media. Because the English-language versions are notoriously inconsistent not only with one another but also with the original Japanese series, viewers most familiar with the English versions often experience some confusion upon re-examining the series after a long hiatus.\n\nThe original 1972 Kagaku Ninja Tai Gatchaman series was followed by an animated film, two sequel series, Gatchaman II, and Gatchaman Fighter. In the 90's, episodes from both series were dubbed into English by Saban as Eagle Riders. In 1994, the original series was remade as a condensed OVA series.", + "posterPath": "/9qPFWl6LUbA18kBkV6Hi19Pi0Tf.jpg", + "backdropPath": "/cBUFwjc7tpbLZKh4uG1IhkZUuiX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1972-10-01", + "releaseYear": "1972", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 85, + "popularity": 7.8892 + }, + { + "id": 77240, + "title": "Captain Tsubasa", + "originalTitle": "キャプテン翼", + "overview": "The passionate story of an elementary school student whose thoughts and dreams revolve almost entirely around the love of soccer. 11-year-old Tsubasa Oozora started playing football at a very young age, and while it was mostly just a recreational sport for his friends, for him, it developed into something of an obsession. In order to pursue his dream to the best of his elementary school abilities, Tsubasa moves with his mother to Nankatsu city, which is well-known for its excellent elementary school soccer teams. But although he was easily the best in his old town, Nankatsu has a lot more competition, and he will need all of his skill and talent in order to stand out from this new crowd.", + "posterPath": "/zHgc9nTXiP77qoy14BO7WUFTwkp.jpg", + "backdropPath": "/dSvRkislUYBu8jWpqRpUsfNFNcr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-04-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 712, + "popularity": 7.8801 + }, + { + "id": 42253, + "title": "K-ON!", + "originalTitle": "けいおん!", + "overview": "Yui Hirasawa has no clue which club to join, but she’s determined to do something this year. As luck would have it, she discovers a flyer for the Light Music Club and decides this is the club for her. But there's one problem: She first must learn guitar!", + "posterPath": "/70hf2538UAf7mzzNgvqTlWq6PDf.jpg", + "backdropPath": "/pYa81GUfKspR81chpcyVuTDqPCC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-04-03", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.921, + "voteCount": 165, + "popularity": 7.8695 + }, + { + "id": 30977, + "title": "A Certain Scientific Railgun", + "originalTitle": "とある科学の超電磁砲", + "overview": "Misaka's electro-manipulation skills - and her delightfully destructive railgun projectile movement - make her a rock star in Academy City. The techno-metropolis is filled with supernaturally powerful students known as Espers, including Misaka's flirtatious friend and roommate, Shirai Kuroko. She uses her teleportation skills as a member of the Judgment law enforcement team, fighting crime alongside fellow agent Uiharu. Joined by their friend Saten, a spunky Level 0 Esper, Misaka, Kuroko, and Uiharu have a blast taking on danger whenever and wherever it arises.", + "posterPath": "/dZt1dqw0K4JGhwcqTh8yExHYK9w.jpg", + "backdropPath": "/cGgqLzBGUY0dxsE5i3W7SXBGRbe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 113, + "popularity": 7.8476 + }, + { + "id": 95269, + "title": "Toilet-Bound Hanako-kun", + "originalTitle": "地縛少年花子くん", + "overview": "To be united with her crush, a hopeless romantic summons the ghost in the girls' bathroom at her school. But she's shocked when the ghost is a boy!", + "posterPath": "/dkCOZgUiJONrRelavbk5f5pYnyK.jpg", + "backdropPath": "/ccV1IW9PedwxoPRgTIsMyitft3A.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 10759, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2020-01-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 754, + "popularity": 7.8198 + }, + { + "id": 80885, + "title": "Ninja Hattori-kun", + "originalTitle": "忍者ハットリくん", + "overview": "11-year-old Kenichi Mitsuba is an average kid who goes to secondary school and struggles with his studies, he is very stubborn and is very lazy and therefore always ends up frustrating his parents and teacher. He loves to find an easy way of things. He befriends Hattori Kanzo, a ninja from the Iga Clan, and he becomes part of the Mitsuba family along with his brother, Shinzo and his ninja dog, Shishimaru. Hattori helps Kenichi with his problems, and constantly keeps an eye on him, as a good friend. The main antagonist Kemumaki, a Koga ninja and his ninja cat, Kagechiyo always troubles Kenichi, mainly because of their feud over one girl, Yumeko. Kenichi asks Hattori to take revenge as a recurring storyline in many episodes. Although Hattori is a good friend, Kenichi sometimes fights with Hattori due to misunderstandings created by Kemumaki. Sometimes Jippou, Togejirou and Tsubame help him.", + "posterPath": "/9PUkpvq0wJnJ2M00dtgxKn6LptB.jpg", + "backdropPath": "/tJF9M5niAnb4fm881PGc2GwS0e1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1981-09-28", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 33, + "popularity": 7.796 + }, + { + "id": 30980, + "title": "A Certain Magical Index", + "originalTitle": "とある魔術の禁書目録", + "overview": "Touma Kamijou is a student living in Academy City, a highly advanced place in terms of technology. Despite being gauged as a level zero esper (no powers), he possesses on his right hand the Imagine Breaker, an ability that negates any power whatsoever. Touma finds a young girl named Index who is trying to run away from Necessarius, a powerful magic organization that she is member of. Blessed with the skill of memorizing any sort of information, she holds 103,000 forbidden magical books within her head. As science and magic cross paths, Touma must face several dangers amid espers and magicians who appear in the exciting scientific town.", + "posterPath": "/v3Ka0J3iMte50oiH4cmXPISM3rm.jpg", + "backdropPath": "/73uQJImy9J9w93zFEh8JtdQVOQR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Mystery" + ], + "releaseDate": "2008-10-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.54, + "voteCount": 173, + "popularity": 7.7924 + }, + { + "id": 91801, + "title": "Welcome to Demon School! Iruma-kun", + "originalTitle": "魔入りました!入間くん", + "overview": "Fourteen-year-old Iruma Suzuki has just been abandoned and sold to a demon by his irresponsible parents! Surprisingly, the next thing he knows he's living with the demon who has adopted him as his new grandson and has been transferred into a school in the Netherworld where his new demon grandfather works as the principal. Thus begins the cowardly Iruma-kun's extraordinary school life among the otherworldly as he faces his true self, takes on challenges, and rises to become someone great.", + "posterPath": "/aed6I1EMR4Lbk8bdikWrndbn5Og.jpg", + "backdropPath": "/d8bAI2EDM7L2q94wDZfjb82KRoh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.275, + "voteCount": 278, + "popularity": 7.7536 + }, + { + "id": 25707, + "title": "Captain Tsubasa", + "originalTitle": "キャプテン翼", + "overview": "Tsubasa Ozora loves playing football since he was a little child. After moving to the japanese town of Nankatsu together with his mother, the 11-year-old boy quickly finds friends and joins the local football team of his elementary school. Together with his newly made friends and Brazilian mentor Roberto, Tsubasa starts his exciting journey to chase after his most desired dream - one day winning the FIFA World Cup.", + "posterPath": "/wXoaJS4N1aG6dY4vipxyvJ5g4pZ.jpg", + "backdropPath": "/bwQHVs25LNYpPzfvDIYdVJjk2fW.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 16 + ], + "genres": [ + "Comedy", + "Drama", + "Animation" + ], + "releaseDate": "1983-10-13", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 807, + "popularity": 7.74 + }, + { + "id": 106301, + "title": "CARDFIGHT!! VANGUARD", + "originalTitle": "カードファイト!! ヴァンガード", + "overview": "Third-year middle school student Yu-yu Kondo lives in Kanazawa city of the country of Kaga. Being unable to reject requests, Yu-yu often gets caught up in his sister's hobbies. When Yu-yu could no longer bear it and ran away from home, he was saved by Megumi Okura. Megumi invites Yu-yu to the Night Amusement Park \"Wonder Hill\" where her friends gather. The amusement park is where many youths of the Vanguard-centric group \"Team Blackout\" gather. And this is how Yu-yu encounters Vanguard and was drawn in by the appeal of Vanguard and the world and friends he had never seen before.", + "posterPath": "/arGGGiyE2CK4CJ0hPfoyR0Knkvh.jpg", + "backdropPath": "/1uuWlEEAZHnPX1VnwqJc7pfo2YM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-04-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 10, + "popularity": 7.6827 + }, + { + "id": 158373, + "title": "NieR:Automata Ver1.1a", + "originalTitle": "NieR:Automata Ver1.1a", + "overview": "The distant future, 5012.\n\nThe sudden aerial invasion of Earth by <Aliens> and their creations <Machine Lifeforms> led mankind to the brink of extinction. The surviving number of humans who took refuge on the moon to organize a counterattack using <android> soldiers to recapture Earth.\n\nHowever, the war reaches a stalemate as the <Machine Lifeforms> continue to multiply infinitely. In turn, humanity deploys anew unit of android soldiers as an ultimate weapon: <YoRHa>\n\nNewly dispatched to Earth <2B> joins <9S>, the analyst currently stationed there, where amid their mission, they encounter a myriad of mysterious phenomena...\n\nThis is the story of these lifeless <androids> and their endless fight for the sake of mankind.", + "posterPath": "/qHSCYOXHV3EKXKkMxUvC9rGx4Av.jpg", + "backdropPath": "/bGRKHQsmLUz2hQB8W3nYnCIc9Y0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.068, + "voteCount": 168, + "popularity": 7.6646 + }, + { + "id": 46440, + "title": "Samurai Girls", + "originalTitle": "百花繚乱", + "overview": "The story takes place in Japan in the early 21st century, in an alternate reality where the Tokugawa Shogunate has remained in power. In this reality, student councils are tasked with oppressing schools. Yagyuu Muneakira is a high school student who rebels against his student council with the help of girls who've had the names of famous samurai heroes passed on to them. ", + "posterPath": "/HTVddlolhBpsE2JDPRpUrfv74G.jpg", + "backdropPath": "/3KmLNxQu4NNnqw0gYX8ZAI9V2s3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2010-10-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 34, + "popularity": 7.6527 + }, + { + "id": 207784, + "title": "Delicious in Dungeon", + "originalTitle": "ダンジョン飯", + "overview": "Dungeons, dragons... and delicious monster stew!? Adventurers foray into a cursed buried kingdom to save their friend, cooking up a storm along the way.", + "posterPath": "/9t3DYdGxK3i4WRzKvIZwJd4kBnr.jpg", + "backdropPath": "/xC5GyeIzLsSRizJE5LedGShNgBa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 271, + "popularity": 7.6389 + }, + { + "id": 258901, + "title": "SANDA", + "originalTitle": "SANDA", + "overview": "In near-future Japan with ultra-low birthrates, children are treasured but monitored. Santa is banned as dangerous. One snowy December 25th, middle-schooler Kazushige Sanda, descendant of Santa, is attacked by classmate Fuyumura who wants him to find her missing friend, Ono. \"Santa, please find my friend.\" To protect children from adults, Sanda decides to become Santa and fight the adults.", + "posterPath": "/uPMJU0u3kOk9ITrsJnHpBFvEK0H.jpg", + "backdropPath": "/7gphZmKk3BVAeIK4AdN8GLmtoZ2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery", + "Drama" + ], + "releaseDate": "2025-10-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 11, + "popularity": 7.6334 + }, + { + "id": 25117, + "title": "Tomorrow's Joe", + "originalTitle": "あしたのジョー", + "overview": "A young drifter named Joe Yabuki wanders through the slums of Tokyo, but when the local ruffians try to give him a hard time he teaches them a rough lesson with his fists. The spectacle sparks a gleam in the eye of an old drunk who happens to be watching—Danpei Tange, a failed boxer and former coach who sees something special in the boy. He pleads with Joe to train with him off, but the cocky young fighter brushes him. Later, though, when Joe is arrested and put in a juvenile detention facility, he realizes that he’s going to need to hone his raw fighting skills if he wants to survive. Thus is born a partnership that might just take Joe all the way to the top…", + "posterPath": "/b7xpXIT5imM3G92Asshnobt8VNi.jpg", + "backdropPath": "/tFwx94xIVKI5heRXdcmYLoI0GhU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1970-04-01", + "releaseYear": "1970", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 27, + "popularity": 7.6239 + }, + { + "id": 80867, + "title": "I Want You To Make a Disgusted Face and Show Me Your Underwear", + "originalTitle": "嫌な顔されながらおパンツ見せてもらいたい", + "overview": "A project where a number of women in different costumes show their panties while they make a disgusted face.", + "posterPath": "/gZFxEYP1ALHapZg4Wk1hJ4L1w4L.jpg", + "backdropPath": "/rniGk0uIxTtZkoQGTnp3nJeYSXX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-07-14", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 24, + "popularity": 7.62 + }, + { + "id": 117465, + "title": "Hell's Paradise", + "originalTitle": "地獄楽", + "overview": "For a chance at a pardon, a ninja assassin joins other condemned criminals on a journey to a mysterious island to retrieve an elixir of immortality.", + "posterPath": "/1V9I7SvZbYoMbSvdtnlkkq9SB1k.jpg", + "backdropPath": "/vjiIuR3XGpoGSumQ7DziPAmxIYR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 349, + "popularity": 7.6145 + }, + { + "id": 68005, + "title": "Yosuga no Sora", + "originalTitle": "ヨスガノソラ", + "overview": "Kasugano Haruka and his sister Sora have lost both their parents in an accident, and with them all their support. They decide to move out of the city to the rural town where they once spent summers with their late grandfather. At first everything seems familiar and peaceful, but changes come as Haruka starts to remember things from his youth.", + "posterPath": "/9F80WGUD6WYfoEDMImf988NlXhC.jpg", + "backdropPath": "/5nPRHOeP8D3O4bfgCICu218H1OI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2010-10-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 92, + "popularity": 7.6003 + }, + { + "id": 35442, + "title": "Cardfight!! Vanguard", + "originalTitle": "カードファイト!! ヴァンガード", + "overview": "Aichi Sendou is a timid third-year middle school student who has always lived his life looking backwards rather than forward. However, he has a card called \"Blaster Blade\" that was given to him when he was little, which is the sole thing that sustains him. Then Toshiki Kai, a cool-hearted high schooler, introduces Aichi to a card game called \"Vanguard\". When participants battle they picture they are on a planet called \"Clay\", and since Vanguard features a never before seen game system it has become popular around the world. Aichi immediately likes Vanguard, so he begins to play it with his friends Misaki Togura and Kamui Katsuragi, and others like his new rival Kai (who is one of the best Vanguard players). Aichi plays every day and he strives with all his soul and heart to play better, so when he battles Kai, Kai will recognize Aichi's worth.", + "posterPath": "/mm0ULBbs9XrHq4OAE8VUa84wvgi.jpg", + "backdropPath": "/3oJOO1vYBsXqkTbWtt8RFXLTfx3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2011-01-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 7.5775 + }, + { + "id": 111819, + "title": "TSUKIMICHI -Moonlit Fantasy-", + "originalTitle": "月が導く異世界道中", + "overview": "Makoto Misumi is just an ordinary high school student living a regular life, but all of a sudden gets summoned to the other world to become a \"hero.\" The goddess of the other world, however, insults him for being different and strips his \"hero\" title, before casting him off to the wilderness at the edge of the world. As he wanders the wilderness, Makoto encounters dragons, spiders, orcs, dwarves, and all sorts of non-human tribes. Because Makoto comes from a different world, he is able to unleash unimaginable magical powers and combat skills. But just how will he handle his encounters with various species and survive in his new environment. In this fantasy, Makoto tries to transform the other world into a better place despite the humans and gods having turned their backs on him.", + "posterPath": "/7XQ2dMEARAdUZQscnIJFPI54q3r.jpg", + "backdropPath": "/ciPDoPMqd3icCBHsIlhIb3UyOd2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2021-07-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 396, + "popularity": 7.5481 + }, + { + "id": 76075, + "title": "Laid-Back Camp", + "originalTitle": "ゆるキャン△", + "overview": "Nadeshiko, a high school student who had moved from Shizuoka to Yamanashi, decides to see the famous, 1000 yen-bill-featured Mount Fuji. Even though she manages to bike all the way to Motosu, she's forced to turn back because of worsening weather. Unable to set her eyes on her goal, she faints partway to her destination. When she wakes up, it's night, in a place she's never been before, with no way of knowing how to get home. Nadeshiko is saved when she encounters Rin, a girl who is out camping by herself. This outdoorsy girls story begins with this first encounter between Nadeshiko and Rin.", + "posterPath": "/fsTqmos9zikrNJfP0uwFsmuZOh.jpg", + "backdropPath": "/cm3lmKnEAYLs2eJmn4AcFIu18X4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 110, + "popularity": 7.5449 + }, + { + "id": 36046, + "title": "City Hunter", + "originalTitle": "シティーハンター", + "overview": "Ryo Saeba works the streets of Tokyo as the City Hunter. He's a \"sweeper\" and with his sidekick Kaori Makimura, he keeps the city clean. People hire the City Hunter to solve their dangerous problems, which he does with a Colt Python. When Ryo's not working on a case, he's working on getting the ladies, and Kaori must keep him in check with her trusty 10 kg hammer.", + "posterPath": "/4BA0FDKiJD0N4ljYhlwOVjQKszR.jpg", + "backdropPath": "/saZTZ8t7rgC5OysidZoUCqMVS4o.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "1987-04-06", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 58, + "popularity": 7.5253 + }, + { + "id": 30093, + "title": "Mobile Fighter G Gundam", + "originalTitle": "機動武闘伝Gガンダム", + "overview": "In the Year F.C. (Future Century) 60, much of mankind inhabits space colonies which orbit the Earth. Dominance over the colonies is decided once every four years by a large tournament in which each nation sends a single representative to fight the others with a giant robot called a Gundam. Domon Kashuu is selected to represent Neo-Japan in one of these tournaments, but he fights less to ensure his nation's victory than to find his brother, who has been blamed for the deaths of Domon's parents and the disappearance of a very dangerous weapon, the Devil Gundam (Dark Gundam).", + "posterPath": "/iuA29rs5TCFED8qVcEjJdn9YJKr.jpg", + "backdropPath": "/17TPRG3Ys6GoLJnYaRCVGWDEAFM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16, + 10768 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation", + "War & Politics" + ], + "releaseDate": "1994-04-22", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.407, + "voteCount": 27, + "popularity": 7.4945 + }, + { + "id": 56568, + "title": "NANA", + "originalTitle": "NANA", + "overview": "Nana Osaki is a guarded and ambitious young woman with a strong will and a rough past. She is the vocalist for a punk band called Black Stones and she desires fame and recognition more than anything else. Nana Komatsu is an outgoing and flighty young woman with a weak will and a stable past. Her life revolves around her desire to find love and marriage. The two meet for the first time while traveling to Tokyo - in pursuit of their respective dreams - and they later decide to be roommates. Although drastically different people, the two become very close and together they find out if their biggest dreams have room for their best friend.", + "posterPath": "/mUZ5FMw2Xcj6VAakhIQ2KMgmp3w.jpg", + "backdropPath": "/xqbimh1vOdiGAYnu0bz3y3TcIBj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Family" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.448, + "voteCount": 230, + "popularity": 7.4887 + }, + { + "id": 129600, + "title": "Baki Hanma", + "originalTitle": "範馬刃牙", + "overview": "To gain the skills he needs to surpass his powerful father, Baki enters Arizona State Prison to take on the notorious inmate known as Mr. Unchained.", + "posterPath": "/x145FSI9xJ6UbkxfabUsY2SFbu3.jpg", + "backdropPath": "/7Scw0BdXGWzbDY3tDjKu8WervN2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-09-30", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 531, + "popularity": 7.4643 + }, + { + "id": 276880, + "title": "Please Put Them On, Takamine-san", + "originalTitle": "履いてください、鷹峰さん", + "overview": "Student council president Takane Takamine is a popular star student. On the other hand, Koushi Shirota doesn't have many friends. That all changes when Koushi accidentally discovers Takane's ability to go back in time and alter past actions just by changing her lingerie. After some pestering, Koushi agrees to help Takane and be her closet, by having spare lingerie on hand.", + "posterPath": "/mN5yLKKW89XomkKE9hFEjsaww3s.jpg", + "backdropPath": "/5AYXcPhbtPe6i1MPnutPhCV6qNd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 123, + "popularity": 7.4574 + }, + { + "id": 71785, + "title": "Mr. Osomatsu", + "originalTitle": "おそ松さん", + "overview": "Sequel/spin-off of the gag manga classic Osomatsu-kun, entailing the lives of the now 20-something NEET virgin Matsuno sextuplets and the bizarre adventures they find themselves into in the modern day.", + "posterPath": "/vEsmh6m9fUhJzGfLxUpliT3vqdh.jpg", + "backdropPath": "/kdTRIa25We8UDRNuBC9fhXRlHGY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-10-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 25, + "popularity": 7.4492 + }, + { + "id": 64706, + "title": "Prison School", + "originalTitle": "監獄学園", + "overview": "There was a time when the Hachimitsu Private Academy was a revered and elite all-girls' boarding school on the outskirts of Tokyo but a recent policy revision is allowing boys into the student body. On his first day, Kiyoshi Fujino discovers that he's one of only five boys enrolled at the school. Completely overwhelmed by the thousands of girls on campus, the few boys find that their situation is less than ideal.", + "posterPath": "/tqtd72674k19IfGYJ2wdGJGvXX.jpg", + "backdropPath": "/7FqF8p7XsjgHOqVI9uwYy45jDDS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-11", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.059, + "voteCount": 707, + "popularity": 7.4363 + }, + { + "id": 8872, + "title": "Aquarion", + "originalTitle": "アクエリオン", + "overview": "Set in the future, a giant fighting machine called the Aquarion is humanity's only effective weapon in the fight against the technologically advanced species called the Shadow Angels.", + "posterPath": "/b7nYCiRLElXOcSICrZ8jdBqQP1m.jpg", + "backdropPath": "/ooZ594lyG7jtLyj2aXkzgPb4wim.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.542, + "voteCount": 24, + "popularity": 7.434 + }, + { + "id": 63164, + "title": "Sgt. Frog", + "originalTitle": "ケロロ軍曹", + "overview": "Alien frogs come to take over the planet & get into all kinds of trouble while living under the roof of a small family.", + "posterPath": "/9cgmkJnUVawW1o6jmmy8kqIl5IJ.jpg", + "backdropPath": "/hiYSi32T8y67KicU6JpMAx4IHu9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-03", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 25, + "popularity": 7.4175 + }, + { + "id": 262700, + "title": "Umamusume: Cinderella Gray", + "originalTitle": "ウマ娘 シンデレラグレイ", + "overview": "Unbeknownst to those around her, the staggering potential of this ashen-haired “Beast” will soon catapult her to the national stage—and down the path of a legend. Follow her journey as the gates open on this hot-blooded Cinderella story!", + "posterPath": "/ncq5uKIcifVITPIYT2G1KpUPMoW.jpg", + "backdropPath": "/kCqOvdTazSJYorYTZMJUrbzcdxW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 7.4027 + }, + { + "id": 100049, + "title": "TONIKAWA: Over the Moon for You", + "originalTitle": "トニカクカワイイ", + "overview": "Nasa Yuzaki falls in love at first sight after an encounter with the mysterious Tsukasa. When Nasa earnestly confesses his feelings, she replies, \"I'll date you, but only if we're married.\" Nasa and Tsukasa's cute and precious newlywed life of love is about to begin!", + "posterPath": "/jJKTrIfZKoFV66HGMzSa4tkObK0.jpg", + "backdropPath": "/rnf2BDKeF1sxPEPhAcdvL0auuxr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.476, + "voteCount": 1538, + "popularity": 7.3943 + }, + { + "id": 285070, + "title": "Ninja vs. Gokudo", + "originalTitle": "忍者と極道", + "overview": "The ninja banish evil from the shadows. The gokudo gather lonely outcasts and commit crimes. The grudge they forged centuries ago is rekindled in the present day. The ninja Shinoha meets Kiwami, a gokudo with the face of a businessman. Unknowing of the other's identity, they bond over anime, but the war between ninja and gokudo intensifies. Who will survive and who will perish, ninja or gokudo?", + "posterPath": "/zOokyOcW8KtCTkF6Km6KZKABz83.jpg", + "backdropPath": "/KQDy2RJMN2gsPV5RZO1pQdFZAQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2025-10-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5.929, + "voteCount": 7, + "popularity": 7.3874 + }, + { + "id": 196257, + "title": "Yu-Gi-Oh! GO RUSH!!", + "originalTitle": "遊☆戯☆王ゴーラッシュ!!", + "overview": "The anime is set in the birthplace of the popular card game Rush Duel, Mutsuba-cho. Twins Yūhi and Yuamu run UTS (Uchūjin Trouble Sōdansho or Alien Trouble Consulting), a group that (supposedly) gets rid of troublesome aliens from distant sectors of the galaxy via Rush Duel battles. However, one day, they find an actual spaceship, and inside they find Yudias, an alien from the Belgar Cluster. Yudias has come to Earth to search for Rush Duel to hopefully lead him and his friends (who have been chased out of their star system) into a new future. However, Yudias himself knows nothing about Rush Duel. Yūhi then challenges Yudias to a duel.", + "posterPath": "/kNIcSCbWTP3dYPclZw4iiMf2064.jpg", + "backdropPath": "/nbqLNw7zXUsAUlgpUbOclsVkAS8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 9, + "popularity": 7.3766 + }, + { + "id": 203737, + "title": "Oshi No Ko", + "originalTitle": "【推しの子】", + "overview": "A small-town doctor gets sucked into the ruthless world of show business when he crosses paths with a popular teen idol who holds a secret.", + "posterPath": "/okbW9NdKRNKgIUTVA8YZAUGwIUx.jpg", + "backdropPath": "/gArCVC4ML529WMCEqOXbALdQbUq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-04-12", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 282, + "popularity": 7.3525 + }, + { + "id": 5622, + "title": "Hamtaro", + "originalTitle": "とっとこハム太郎", + "overview": "The cute and cuddly pet of 10-year-old Laura, Hamtaro is a small hamster with a big sense of adventure! Join Hamtaro and the adorable rodent rascals who captured the hearts of millions of children the world over.", + "posterPath": "/heeMIthcPavUaNJJl0YPARva2ua.jpg", + "backdropPath": "/wHCjJBVS6ZmrOwW4l2fun6q6cIQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2000-07-07", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 7.874, + "voteCount": 206, + "popularity": 7.3372 + }, + { + "id": 36210, + "title": "Blue Dragon", + "originalTitle": "BLUE DRAGON", + "overview": "A terrible and mysterious enemy attacks the small village of Shu and his friend Kluke. The great warrior Zola, followed by Jiro, will help them discover the ability to evoke shadows.", + "posterPath": "/kz1WUNjTUnjQCYvvpn4Jx0ZV22A.jpg", + "backdropPath": "/465oZoaiJRuFAgEja2OkObV1iL2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 38, + "popularity": 7.2897 + }, + { + "id": 34163, + "title": "Urusei Yatsura", + "originalTitle": "うる星やつら", + "overview": "The invasion of an alien race known as the Oni begins a new life for Ataru Moroboshi, a lecherous trouble-making tenth grader in the small town of Tomobiki. After unwittingly proposing to the Oni princess Lum Invader instead of his sweetheart Shinobu, Ataru becomes a conduit for aliens arriving on Earth, causing all sorts of havoc for him and his companions, not to mention his own reputation!", + "posterPath": "/bs0Q5TMYVUTNXCPbuPBNylzqrxk.jpg", + "backdropPath": "/v9ODt8XqxhdlGsImgVi7NBKeMDX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1981-10-14", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 40, + "popularity": 7.2831 + }, + { + "id": 43865, + "title": "Psycho-Pass", + "originalTitle": "PSYCHO-PASS サイコパス", + "overview": "In the year 2113, people are given brain scans to determine how likely they are to commit a crime. Those who fail are apprehended, or even killed.", + "posterPath": "/uWnP6qTcc4imPJ9ZHaXlPQlcYnB.jpg", + "backdropPath": "/2HtnTJLs3CDUTu6ug8rib5vNnU2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Crime", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2012-10-12", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.715, + "voteCount": 441, + "popularity": 7.2626 + }, + { + "id": 72636, + "title": "Made in Abyss", + "originalTitle": "メイドインアビス", + "overview": "Located in the center of a remote island, the Abyss is the last unexplored region, a huge and treacherous fathomless hole inhabited by strange creatures where only the bravest adventurers descend in search of ancient relics. In the upper levels of the Abyss, Riko, a girl who dreams of becoming an explorer, stumbles upon a mysterious little boy.", + "posterPath": "/f6U3odfIb3pCXMGKRTQGGF9o1Qg.jpg", + "backdropPath": "/uzp513qTcHsAavlCJ58x5d73bzy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.36, + "voteCount": 587, + "popularity": 7.2348 + }, + { + "id": 138357, + "title": "Call of the Night", + "originalTitle": "よふかしのうた", + "overview": "Ko's new companion, Nazuna, could offer him dark gifts and a vampire's immortality. But there are conditions that Ko must meet before he can sink his teeth into vampirism, and he'll discover just how far he's willing to go to satisfy his desires.", + "posterPath": "/rDhwDG2ii8c3nCcfUNp6mogGQ93.jpg", + "backdropPath": "/ohgC4YPhYO4mjTW64JRK0abx6lQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.585, + "voteCount": 124, + "popularity": 7.2274 + }, + { + "id": 45998, + "title": "KissXSis", + "originalTitle": "kiss×sis", + "overview": "The story begins with Keita Suminoe, a male third-year junior-high school student studying for his high school entrance exams. He is living in a home with his older twin stepsisters, Ako and Riko, who share no blood relation to him, and they help him prepare for his exams. Even though he initially dislikes himself for it, he begins to become attracted to his two step-sisters, and his two parents encourage him to eventually get married to one of them.", + "posterPath": "/sQi05fGIosyEu51AHg9nSgipmhN.jpg", + "backdropPath": "/porr8fbCNEth5B2t6f5L2YfZc2C.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-04-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 116, + "popularity": 7.2228 + }, + { + "id": 34660, + "title": "Saiyuki", + "originalTitle": "最遊記", + "overview": "Many years ago, humans and demons lived in harmony. But that unity ended when demons started attacking humans and plotted a mission to unleash Gyumao - an evil demon imprisoned for thousands of years. Now, Genjo Sanzo, a rogue priest, must team up with three demons - Sha Gojyo, Son Goku, and Cho Hakkai - and embark on a perilous journey to the west to stop these demons from resurrecting Gyumao and restore the balance between humans and demons on Earth.", + "posterPath": "/b5tfbzJ8RIIoM6zzjpp9o9zjmrG.jpg", + "backdropPath": "/ypxQFuwYXa0yDBvl3zjwh8dY7Ie.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2000-04-04", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 16, + "popularity": 7.2218 + }, + { + "id": 83095, + "title": "The Rising of the Shield Hero", + "originalTitle": "盾の勇者の成り上がり", + "overview": "Iwatani Naofumi, a run-of-the-mill otaku, finds a book in the library that summons him to another world. He is tasked with joining the sword, spear, and bow as one of the Four Cardinal Heroes and fighting the Waves of Catastrophe as the Shield Hero. Excited by the prospect of a grand adventure, Naofumi sets off with his party. However, merely a few days later, he is betrayed and loses all his money, dignity, and respect. Unable to trust anyone anymore, he employs a slave named Raphtalia and takes on the Waves and the world. But will he really find a way to overturn this desperate situation?", + "posterPath": "/yjq2n0agGJfmZQ9NpbYIhuBofcq.jpg", + "backdropPath": "/de6iC707SwuMsE3y2fo5OHCOsvj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-01-09", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 1500, + "popularity": 7.2139 + }, + { + "id": 61459, + "title": "Parasyte -the maxim-", + "originalTitle": "寄生獣 セイの格率", + "overview": "A species of parasitic aliens descends on Earth and quickly infiltrates humanity by entering the brains of vulnerable targets; insatiable beings that gain total control of their host and are capable of transforming themselves to feed on unsuspecting prey. High school student Shinichi Izumi falls victim to one of these parasites, but the creature fails to take over his brain and ends up in his right hand.", + "posterPath": "/cXBfjZSdJelu2r0wKD7qCxS71kb.jpg", + "backdropPath": "/zfk6siC4KRXurG4jJzSXHy9szGQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2014-10-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 1335, + "popularity": 7.1859 + }, + { + "id": 11285, + "title": "The Mysterious Cities of Gold", + "originalTitle": "太陽の子エステバン", + "overview": "The adventures of a young Spanish boy named Esteban who joins a voyage to the New World in search of the lost Cities of Gold and his father.", + "posterPath": "/fodyzO7msj5M7f8JdkGGdnL9OxU.jpg", + "backdropPath": "/ocRWQvMe0LwzbtseQ1B1xExkPm1.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10759, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1982-06-29", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 79, + "popularity": 7.1758 + }, + { + "id": 216074, + "title": "2.5 Dimensional Seduction", + "originalTitle": "2.5次元の誘惑", + "overview": "When cosplayer Ririsa joins Okumura's manga club, the line between 2D and 3D blurs when she asks him to be her photographer.", + "posterPath": "/clrEz6ad3cFEae5q08iWsbnhhCW.jpg", + "backdropPath": "/bG48yR8UzifLLeYdmNj8kdF9T5B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.313, + "voteCount": 57, + "popularity": 7.1608 + }, + { + "id": 84980, + "title": "MÄR: Märchen Awakens Romance", + "originalTitle": "MÄR-メルヘヴン-", + "overview": "Dreaming of a magical world every night, the young Toramizu Ginta yearns to be able to go there. With only his friend Koyuki believing in his dreams, Ginta remains positive despite the slander he receives from others over his dreams. But his wishes are answered, as one day a large door appears in front of Ginta, summoning him to the land of MAR Heaven. In this land, the weapons known as ARMS exist. While initially Ginta greatly enjoyed the discovery of this magical world, he soon learns of the terrible wars that have once plagued MAR Heaven and the upcoming war that may soon appear", + "posterPath": "/8GCxSybC4X4nKPT2qZPTow30D2H.jpg", + "backdropPath": "/bKFyxWvs7zJz0PX0EBFGuLngqJc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2005-04-03", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.182, + "voteCount": 11, + "popularity": 7.1565 + }, + { + "id": 67676, + "title": "The Disastrous Life of Saiki K.", + "originalTitle": "斉木楠雄のΨ難", + "overview": "High school sophomore Kusuo Saiki swore as a child that he would keep his psychic talents hidden, but his abilities still make his life difficult.", + "posterPath": "/tpym31HVeQgenaubvCxkMF3kFHy.jpg", + "backdropPath": "/880MssZkJrpkyAK4UaMXdRkkcG3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-11", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 348, + "popularity": 7.1406 + }, + { + "id": 197368, + "title": "Blue Orchestra", + "originalTitle": "青のオーケストラ", + "overview": "In the fall of his third and final year of middle school, Hajime Aono, a violin prodigy, stopped playing violin for his own personal reasons. But it was also that year when he got to know a girl who told him about a high school with a prestigious school orchestra. Suddenly, the gears in the clock of Aono's life began to turn again. This is the story of a youth drama that brings forth the harmony between music and the heart!", + "posterPath": "/5FVHmNW0ARlYSa7R0BZCuEfo7ei.jpg", + "backdropPath": "/yJAIWO6zGyXE72qVJ7sFGTqpTa1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-04-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.533, + "voteCount": 16, + "popularity": 7.1335 + }, + { + "id": 12598, + "title": "Black Lagoon", + "originalTitle": "BLACK LAGOON", + "overview": "The story follows a team of pirate mercenaries known as the Lagoon Company, that smuggles goods in and around the seas of Southeast Asia in the early to mid 1990s. Their base of operations is located in the fictional harbor city of Roanapur in southeast Thailand near the border of Cambodia.", + "posterPath": "/sQlHhWScg6qmakL1ywtcjjVKKqV.jpg", + "backdropPath": "/9Sz85jzgFAt2NUWV6e9AfJUSRkM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Crime" + ], + "releaseDate": "2006-04-09", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 491, + "popularity": 7.1321 + }, + { + "id": 37863, + "title": "Fullmetal Alchemist", + "originalTitle": "鋼の錬金術師", + "overview": "Two young brothers are raised as alchemists, but when they are severely injured trying to perform a forbidden act, they begin searching for the one thing that can save them; the fabled philosopher's stone.", + "posterPath": "/7qVSNBKsrER8P77DfsSQfrPK04L.jpg", + "backdropPath": "/p1z1B4bMf6tgUA4VLpI4smLxbCf.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-04", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8.225, + "voteCount": 981, + "popularity": 7.1162 + }, + { + "id": 283818, + "title": "A Star Brighter than the Sun", + "originalTitle": "太陽よりも眩しい星", + "overview": "Sae Iwata, a slightly tougher-than-average girl, falls for the gentle smile of Koki Kamishiro, a delicate boy, back in elementary school. By the time they enter junior high school, Koki has grown into a charming and popular teen who now feels out of reach. When they are assigned to the sports festival committee together, Sae’s long-hidden first love begins to stir once more.", + "posterPath": "/tMCyjS1Qif5VhmRakSJpF0TzdQj.jpg", + "backdropPath": "/rf2YcAngctuCGt6W7CMgUfTXpWO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2025-10-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.167, + "voteCount": 6, + "popularity": 7.1158 + }, + { + "id": 37807, + "title": "Beyblade: Metal Saga", + "originalTitle": "メタルファイト ベイブレード", + "overview": "A new cast of characters take on the continued battle between good and evil. Gingka, our hero, and his group of loyal friends take on a dangerous group called the Dark Nebula. Dark Nebula’s mission is to take over the world and unleash their evil upon it; but before they can do so, they must destroy Gingka as he is the only person that’s strong enough to stand in their way. The plot thickens as friends become enemies and enemies become allies. Everything starts and ends with Gingka as he struggles to find the strength to defend his world and the honor of Beyblade.", + "posterPath": "/AvzR1LroQFPs8mtvW761BZX92qx.jpg", + "backdropPath": "/dHQ6u5nRMCHGHLCl220iCah6jX0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 38, + "popularity": 7.0845 + }, + { + "id": 54728, + "title": "Beyblade", + "originalTitle": "爆転シュートベイブレード", + "overview": "Thirteen-year-old Takao Kinomiya (Tyson Granger), along with his fellow teammates, Kai Hiwatari, Max Mizuhura (Max Tate), and Rei Kon (Ray Kon), strive to become the greatest Beybladers in the world. With the technical help of the team's resident genius, Kyoujyu (Kenny), and with the powerful strength of their BitBeasts, the Bladebreakers armed with their Beys attempt to reach their goal.", + "posterPath": "/l6ZQhEHjtOd9t6lOvVGzs5YEHcG.jpg", + "backdropPath": "/9feA6Kd1G456nq2XrDqpDQpFlcG.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Kids", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2001-01-08", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.728, + "voteCount": 228, + "popularity": 7.0692 + }, + { + "id": 52083, + "title": "Amagami SS", + "originalTitle": "アマガミSS", + "overview": "A second-year high school boy finds himself uneasy during Christmas time due to an experience in the past. However, this year at Christmas, he gets his last chance to ask out a graduating female senior named Haruka Morishima — or one of several other classmates. The story of the anime will be arranged in an omnibus format, with each heroine getting her own version of the story animated. Each heroine will sing her own version of the ending theme song.", + "posterPath": "/fpMyFbUqu3eFl5Xm4sgGNEamrdE.jpg", + "backdropPath": "/nHHqSwdnV60GaqzqZlj9rByAX5f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2010-07-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.213, + "voteCount": 47, + "popularity": 7.0466 + }, + { + "id": 35894, + "title": "Zatch Bell!", + "originalTitle": "金色のガッシュベル!!", + "overview": "Takamine Kiyomaro, a depressed don't-care-about-the-world guy, was suddenly given a little demon named Zatch Bell to take care of. Little does he know that Zatch is embroiled in an intense fight to see who is the ruler of the demon world.", + "posterPath": "/cBcHLTG8UgtKi1i1iN0XVcRAB78.jpg", + "backdropPath": "/n4MfPSRk5PzHeVrm43NHam8oH5d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2003-04-06", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8.443, + "voteCount": 253, + "popularity": 7.0056 + }, + { + "id": 87478, + "title": "Isekai Quartet", + "originalTitle": "異世界かるてっと", + "overview": "A mysterious switch appeared one day. Upon pressing it, they were sent to a different alternative world!! There are also characters from other alternative worlds gathered together...!?", + "posterPath": "/1qkHR7hYbYKEUQORG2WuWmXlT0S.jpg", + "backdropPath": "/nLDxVvCnQaRRqWjvER9j5bsrre9.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-04-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 58, + "popularity": 6.9787 + }, + { + "id": 24835, + "title": "Clannad", + "originalTitle": "CLANNAD", + "overview": "Tomoya Okazaki is a third year high school student resentful of his life. His mother passed away from a car accident when he was younger, causing his father to resort to alcohol and cigarettes. This results in fights between the two until Tomoya's shoulder is injured in a fight. Since then, Tomoya has had distant relationships with his father, causing him to become a delinquent over time. While on a walk to school, he meets a strange girl named Nagisa Furukawa who is a year older, but is repeating due to illness. Due to this, she is often alone as most of her friends have moved on. The two begin hanging out and slowly, as time goes by, Tomoya finds his life shifting in a new direction.", + "posterPath": "/jPBMYp4ddXkGJDSxxmaKBjzv2r3.jpg", + "backdropPath": "/vB7HwJNhlRA9tPViK32bK0hVCmb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-05", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 460, + "popularity": 6.9649 + }, + { + "id": 91997, + "title": "PLUTO", + "originalTitle": "PLUTO", + "overview": "When the world's seven most advanced robots and their human allies are murdered one by one, Inspector Gesicht soon discovers that he's also in danger.", + "posterPath": "/agf5sETjlO35s3EDA7wwGliZ5UW.jpg", + "backdropPath": "/mKs3dnks8MAXzIdIZMN2machwer.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648, + 80 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery", + "Crime" + ], + "releaseDate": "2023-10-26", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 211, + "popularity": 6.9629 + }, + { + "id": 97860, + "title": "Tower of God", + "originalTitle": "神之塔 -Tower of God-", + "overview": "Reach the top, and everything will be yours. At the top of the tower exists everything in this world, and all of it can be yours. You can become a god. This is the story of the beginning and the end of Rachel, the girl who climbed the tower so she could see the stars, and Bam, the boy who needed nothing but her.", + "posterPath": "/8v8ANBJNUzvA8F6sM20DBt3zZ44.jpg", + "backdropPath": "/gcvJgJScIt0a5sRt8uLIkGM9IhI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2020-04-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 486, + "popularity": 6.9451 + }, + { + "id": 196400, + "title": "Mobile Suit Gundam: The Witch from Mercury", + "originalTitle": "機動戦士ガンダム 水星の魔女", + "overview": "A. S. (Ad Stella) 122 ― An era when a multitude of corporations have entered space and built a huge economic system. Suletta Mercury, a lone girl from the remote planet Mercury, transfers to the Asticassia School of Technology, run by the Beneritt Group which dominates the mobile suit industry.", + "posterPath": "/gBkDlMaAVOVMRWWlRUHhkLAhNE3.jpg", + "backdropPath": "/8A5sNxppHn68k1FtEiEIBTu73yv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2022-10-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.549, + "voteCount": 92, + "popularity": 6.9446 + }, + { + "id": 154494, + "title": "Lycoris Recoil", + "originalTitle": "リコリス・リコイル", + "overview": "A spirited secret agent and her aloof colleague work in an unassuming, charming cafe while happily helping their customers' out in any way they can.", + "posterPath": "/hcPLwLGEU4alv9sOWvzSY4IorxV.jpg", + "backdropPath": "/xIBS2ZIvQZbf6xBMzCi3ml2FSyp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2022-07-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.138, + "voteCount": 195, + "popularity": 6.9222 + }, + { + "id": 262259, + "title": "Wandance", + "originalTitle": "ワンダンス", + "overview": "Kabo is a high school student with a stutter who struggles to express his feelings. He finds himself drawn to his classmate Wanda, who pursues dance without worrying about how others see her. Seeking a form of freestyle expression, Kabo takes on the unfamiliar world of dance.", + "posterPath": "/tb09vxLJ5yf7pMbmWqRvWE6bL5y.jpg", + "backdropPath": "/b6ZtSMxji30liJBCDViqqcK3gPD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-10-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 6, + "popularity": 6.918 + }, + { + "id": 90388, + "title": "Fire in His Fingertips", + "originalTitle": "指先から本気の熱情", + "overview": "Office worker Ryou Fujihashi is trapped inside her apartment which has set ablaze. The firefighters arrive in time to save her, and one of them happens to be Souma Mizuno, Fujihashi's childhood friend who she had a crush on. As the apartment fire gets put out, an old love gets rekindled.", + "posterPath": "/yHUDRf2e9FGeWXPsT5lVF3iCUwc.jpg", + "backdropPath": "/lLOLKqe6r7uESLDcoO4TaZPHNdW.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-07-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 20, + "popularity": 6.8827 + }, + { + "id": 96884, + "title": "Dragon Quest: The Adventure of Dai", + "originalTitle": "ドラゴンクエスト ダイの大冒険", + "overview": "Young Dai embarks on an epic journey to become a legendary hero, training with his loyal companions to save the world from the resurrected Demon King.", + "posterPath": "/i28TVlLozR09hqkGsSlu5wa1X2J.jpg", + "backdropPath": "/vp9FfcIS8j2oNkgYlCx3US5te67.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 124, + "popularity": 6.8576 + }, + { + "id": 103254, + "title": "Yashahime: Princess Half-Demon", + "originalTitle": "半妖の夜叉姫", + "overview": "In feudal Japan, half-demon twins Towa and Setsuna are separated from each other during a forest fire. While desperately searching for her younger sister, Towa wanders into a mysterious tunnel that sends her into present-day Japan, where she is found and raised by Kagome Higurashi’s brother, Sota, and his family. Ten years later, the tunnel that connects the two eras has reopened, allowing Towa to be reunited with Setsuna, who is now a demon slayer working for Kohaku. But to Towa’s shock, Setsuna appears to have lost all memories of her older sister", + "posterPath": "/78l5gFTXyLp9KE4uSWJgSRb9RGj.jpg", + "backdropPath": "/1kRDKwsjADXThhVZhgD3BYURPqa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.334, + "voteCount": 164, + "popularity": 6.8384 + }, + { + "id": 216467, + "title": "Mission: Yozakura Family", + "originalTitle": "夜桜さんちの大作戦", + "overview": "Taiyo Asano has been on his own ever since his parents died and the only one who seems to care for him is his childhood friend and classmate, Mutsumi Yozakura. But Mutsumi has a secret—she is the head of a family of spies! And on top of that, her brother Kyoichiro is dangerously protective of her! To stop Kyoichiro from killing him, Taiyo and Mutsumi must take the ultimate leap—marriage! Because in the Yozakura family, family cannot kill family.", + "posterPath": "/dTtXbR0DenriganfBidZxFLk4Xx.jpg", + "backdropPath": "/xUC6mdVESvJN2umz8mNxKn89Htf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 54, + "popularity": 6.7905 + }, + { + "id": 73223, + "title": "Black Clover", + "originalTitle": "ブラッククローバー", + "overview": "Asta and Yuno are two orphans who want the same thing: to become the Wizard King. Locked in a friendly rivalry, they work hard towards their goal. While Yuno excels at magic, Asta has a problem uncommon in this world: he has no powers! But, on the day they receive their grimoires, they surprise everyone. To reach their goal, they’ll each find their own path to greatness—with or without magic.", + "posterPath": "/kaMisKeOoTBPxPkbC3OW7Wgt6ON.jpg", + "backdropPath": "/oUsm3pq6rUga7lVGQFS3g84etVE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2017-10-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.492, + "voteCount": 2007, + "popularity": 6.7751 + }, + { + "id": 76757, + "title": "Golden Kamuy", + "originalTitle": "ゴールデンカムイ", + "overview": "A Russo-Japanese War veteran partners with an Ainu girl to find a treasure stolen from her people, but they’re not the only ones pursuing the gold.", + "posterPath": "/KjatL82mrWDogOlswIxwdrpe2n.jpg", + "backdropPath": "/6qwbib8digp121qA9xj3STeq2KC.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2018-04-09", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.544, + "voteCount": 79, + "popularity": 6.7633 + }, + { + "id": 53787, + "title": "Aria", + "originalTitle": "ARIA", + "overview": "Set in the early 24th century against the backdrop of the city of Neo Venezia on the planet Mars. No longer the barren red planet, Mars has been flooded, inhabited and is something of a tourist hub for those looking for rest, relaxation and a gondola ride – the primary mode of travel in Neo Venezia. The Undines are professional gondoliers, tour guides for the people passing through. Akari Mizunashi is an Undine in training and this is a piece of her story.", + "posterPath": "/1XgXgWmsX1Un8eBHPjcBYpoae6M.jpg", + "backdropPath": "/9ZfSM7eZVLbjYdZB31tlUi2egR8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2005-10-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.533, + "voteCount": 30, + "popularity": 6.75 + }, + { + "id": 80671, + "title": "Cells at Work!", + "originalTitle": "はたらく細胞", + "overview": "This is a story about you. A tale about the inside of your body... According to a new study, the human body consists of approximately 37 trillion cells. These cells are hard at work every day within a world that is your body. From the oxygen-carrying red blood cells to the bacteria-fighting white blood cells, get to know the unsung heroes and the drama that unfolds inside of you! It's the oddly relatable and interesting story that is the life of cells!", + "posterPath": "/sgwwEGvNy7vCJN8IVnl44tuVlMZ.jpg", + "backdropPath": "/aOQL8UYduNxDePbynZROLZ1nfsf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2018-07-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.088, + "voteCount": 296, + "popularity": 6.7207 + }, + { + "id": 285356, + "title": "Watari-kun's ****** Is About to Collapse", + "originalTitle": "渡くんの××が崩壊寸前", + "overview": "Naoto Watari lives solely for his little sister, Suzushiro, until his chaotic childhood friend, Satsuki, storms back into his life. Without uttering a single word, her very presence ignites buried memories and unravels his rigid routine. As tensions rise and secrets surface, Naoto’s devotion to Suzushiro clashes with unresolved pain, threatening to collapse his fragile world.", + "posterPath": "/mKcZjgm4nT6wb1neM20P8pfAZaT.jpg", + "backdropPath": "/wlDhjgzU1NnlZT3jd40OgnC2wL9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2025-07-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 10, + "popularity": 6.7134 + }, + { + "id": 37584, + "title": "Ikki Tousen", + "originalTitle": "一騎当千", + "overview": "In the Kanto region of Japan, seven high schools take place in a turf war for territorial supremacy: Nanyo Academy, Kyosho Academy, Seito Academy, Yoshu Academy, Rakuyo High School, Gogun High School, and Yoshu Private School. The fighters of each school bear the sacred jewels called magatama, which contains the essence of warriors from the Three Kingdoms era of Ancient China 1800 years ago, as well as their fates.", + "posterPath": "/eV0cphNP9cyYL28Rxcs1C3lbEGj.jpg", + "backdropPath": "/xIXMFc3Kp1Y9C7AbjWzuHYG1OE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2003-07-30", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.507, + "voteCount": 70, + "popularity": 6.6981 + }, + { + "id": 69291, + "title": "Miss Kobayashi's Dragon Maid", + "originalTitle": "小林さんちのメイドラゴン", + "overview": "Kobayashi lives alone in an apartment, until one day, Tohru appeared and they ended up living together. Tooru looks down on humans as inferior and foolish, but having been saved by Kobayashi-san, she does everything she can to repay the debt and help her with various things, although not everything goes according to plan.\n\nA mythical everyday life comedy about a hard working office lady living with a dragon girl.", + "posterPath": "/tNznuhcf7WKzEmPQEsIgGMrB3Az.jpg", + "backdropPath": "/pNortuSqxj9DuwPARTZrsy2F3Bs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.318, + "voteCount": 849, + "popularity": 6.6919 + }, + { + "id": 34141, + "title": "D.Gray-man", + "originalTitle": "D.Gray-man", + "overview": "Darkness is moving in, and young exorcist Allen Walker is humanity's greatest hope against the wicked forces conspiring to bring civilization to its knees. Akuma – cruel spirits born of tragedy and lost souls – lurk in every shadow, willing and eager to do the bidding of their leader, the dread Millennium Earl. With an eye cursed to see evil in its truest form and blessed with an arm to slay soul-devouring demons, Allen stands ready to confront the gathering evil. Should he fail, Innocence will be lost forever. The war to decide the fate of mankind has begun – and the carnage will be endless.", + "posterPath": "/txCtE7ToSLuG8sy8tAIh9q5JAYS.jpg", + "backdropPath": "/p0dpg6vwRbGIoWB7hS7AqcqAkYi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-10-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 159, + "popularity": 6.6808 + }, + { + "id": 65503, + "title": "Aikatsu!", + "originalTitle": "アイカツ!", + "overview": "Ichigo Hoshimiya is a regular, ordinary middle school girl. But when her best friend Aoi invites her to join the idol training academy, Starlight Academy, her whole world is turned upside down. As she encounters all kinds of rivals and learns what it takes to be an idol, she uses her Aikatsu Cards to challenge countless auditions.", + "posterPath": "/tRALkRAPfXlDsJ8XPx9Shz4mvsC.jpg", + "backdropPath": "/7uFbgLPpWRSBlbC96EjNaaRHg2Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 25, + "popularity": 6.6707 + }, + { + "id": 42509, + "title": "Steins;Gate", + "originalTitle": "Steins;Gate", + "overview": "A group of friends have customized their microwave so that it can send text messages to the past. As they perform different experiments, an organization named SERN who has been doing their own research on time travel tracks them down and now the characters have to find a way to avoid being captured by them.", + "posterPath": "/5zxePQEsUKLYDh2kpXGQAeInjUU.jpg", + "backdropPath": "/gDvxT2z6TNxervG97WfpePRZ3aR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery", + "Comedy" + ], + "releaseDate": "2011-04-06", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.434, + "voteCount": 882, + "popularity": 6.6648 + }, + { + "id": 122587, + "title": "A Couple of Cuckoos", + "originalTitle": "カッコウの許嫁", + "overview": "16-year-old super-studier Nagi Umino, second-year student at the Megurogawa Academy high school, was switched at birth. On his way to a dinner to meet his birth parents, he accidentally meets the brash, outspoken, Erika Amano, who is determined to make Nagi her fake boyfriend as she never wants to actually marry. But once Nagi makes it to dinner, he finds his parents have decided to resolve the hospital switch by conveniently having him marry the daughter his birth parents raised...who turns out to be none other than Erika herself!", + "posterPath": "/tWDX9uDAzOJhsvunl6PabHdhFx0.jpg", + "backdropPath": "/tC51lHaYqyMKUE1W4rcr2vhi9QG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-24", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 67, + "popularity": 6.6612 + }, + { + "id": 35753, + "title": "The Familiar of Zero", + "originalTitle": "ゼロの使い魔", + "overview": "Louise Françoise Le Blanc de La Vallière’s name is so long and her spell-casting skills are so poor that everyone at the Tristain Academy of Magic just calls her “Louise the Zero.” Louise’s humiliation only increases during an important second-year test, she inexplicably summons Saito Hiraga, a totally normal teenager from Tokyo. Now she’s stuck with him and Saito’s stuck with the lousy life of being a familiar.", + "posterPath": "/edpG7IAoHtEfQ2XMMjcpBarlOF4.jpg", + "backdropPath": "/to2gpUoxeNQlbjfswI8mXldaql0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-07-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.435, + "voteCount": 588, + "popularity": 6.6545 + }, + { + "id": 32377, + "title": "Armored Trooper VOTOMS", + "originalTitle": "装甲騎兵ボトムズ", + "overview": "The story of stoic Armored Trooper pilot Chirico Cuvie and his quest for answers after a sudden betrayal leaves him on the run from his own military.", + "posterPath": "/hYv6w515vwe3IowcvbPrk4R6ckl.jpg", + "backdropPath": "/1YTo2OpO7GP6k5cq9A0pR6hAWZP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-04-01", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.067, + "voteCount": 15, + "popularity": 6.6481 + }, + { + "id": 19612, + "title": "Mashin Hero Wataru", + "originalTitle": "魔神英雄伝ワタル", + "overview": "Mashin Hero Wataru is a comedy/adventure Super Robot multimedia franchise originally consisting of 45 episode anime series created by Sunrise first aired on April 15, 1988. Sunrise credited \"Hajime Yatate\" for the storyline and Shuji Iuchi directed the series. The series employs a kinetic visual gag style, often employing characters running with their feet over their shoulders derived from Sunrise's previous Super Robot anime series Choriki Robo Galatt.", + "posterPath": "/mpoPs9ToEm5OXhiwEpfkdgJDHgz.jpg", + "backdropPath": "/hb96dbC0aRwVpboLTilg6cAqrIE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1988-04-16", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 6.846, + "voteCount": 13, + "popularity": 6.6378 + }, + { + "id": 118588, + "title": "Seduced by My Best Friend", + "originalTitle": "黒ギャルになったから親友としてみた。", + "overview": "Shion and Rui are the dream team when it comes to hitting on women. Tonight was going to be another night of hooking up with girls for Shion, but he ended up taking a strange drug. When he woke up... he'd turned into a girl?! Rui came looking for Shion, but didn't recognize him, and started hitting on him...", + "posterPath": "/kRytTcYHz6pq3cPEwNTAOkSQhQ4.jpg", + "backdropPath": "/kWmMpYtfrflLoElevbtpQxsz5M6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 23, + "popularity": 6.6323 + }, + { + "id": 44317, + "title": "Saint Seiya Omega", + "originalTitle": "聖闘士星矢Ω", + "overview": "An anime-original spin-off/sequel based on the Saint Seiya series: The god of war and guardian of his namesake planet, Mars, was once sealed away by Seiya, but time has passed and his revival is at hand. Meanwhile, Saori Kido is raising the boy Kouga, whose life Seiya saved, and he's been training every day to become a Saint in order to prepare for the coming crisis. Unaware of his destiny, when Kouga awakens to the power of his Cosmo hidden inside him, the curtain will rise upon the legend of a new Saint.", + "posterPath": "/qjgGUtZsosDehY49oshGU72TwTa.jpg", + "backdropPath": "/anrVGmcs2fn8cn8WNZ7Low6NkSQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2012-04-01", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 232, + "popularity": 6.6271 + }, + { + "id": 65676, + "title": "My Teen Romantic Comedy SNAFU", + "originalTitle": "やはり俺の青春ラブコメはまちがっている。", + "overview": "So exactly what’s going to happen when Hachiman Hikigaya, an isolated high school student with no friends, no interest in making any and a belief that everyone else’s supposedly great high school experiences are either delusions or outright lies, is coerced by a well meaning faculty member into joining the one member “Volunteer Services Club” run by Yukino Yukinoshita, who’s smart, attractive and generally considers everyone in her school to be her complete inferior?", + "posterPath": "/sb5MNoeZGHX21qvtwhmizUsJJqq.jpg", + "backdropPath": "/5VL7HC4aeLhepAaGxaQBUBWgIGo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2013-04-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 547, + "popularity": 6.6116 + }, + { + "id": 37567, + "title": "Dr. Slump", + "originalTitle": "Dr.スランプ アラレちゃん", + "overview": "Senbei Norimaki, known by his nickname Dr. Slump, a genius yet under-respected inventor and roboticist, creates an android by the name of Arale, and poses her as his little sister. What starts as an experiment in robotics turns into an adventure every day for the residents of Penguin Village, a wacky rural community with several colorful characters interacting with Arale and her creator.", + "posterPath": "/q19uWJMNLcyQ0I14DaH4XVwW8TQ.jpg", + "backdropPath": "/4K9mqtNbipQI7qfmLN4xCNitLL4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1981-04-08", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 130, + "popularity": 6.6089 + }, + { + "id": 26318, + "title": "Slayers", + "originalTitle": "スレイヤーズ", + "overview": "Follows the exploits of the young sorceress Lina Inverse, whose life revolves around food, treasure, and fighting. After stealing treasure from a group of bandits, Lina is accosted by stragglers during her journey to the next town. She's not in any real danger, but a dim-witted but good-natured swordsman named Gourry Gabriev springs to her rescue anyways. The two team up, and head to Atlas City, fighting foes they encounter on the way. Unbeknownst to them, two mysterious figures are hot on their tail, and they are especially interested in the “treasure” Lina and Gourry have stolen.", + "posterPath": "/qoKUaJVQBYtEXYJebksIA8dwGdD.jpg", + "backdropPath": "/9M97xCfMuYAxRt4Yy3UTF3e7JGP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1995-04-07", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 46, + "popularity": 6.5996 + }, + { + "id": 61415, + "title": "Fate/stay night [Unlimited Blade Works]", + "originalTitle": "Fate/stay night [Unlimited Blade Works]", + "overview": "This story focuses primarily on the heroine Rin Tohsaka. After her father’s death, Rin enters the Holy Grail War as the sole heir to the prestigious Tohsaka Household, with her servant Archer. But, she soon finds out that Shirou Emiya, a boy from her high school has gotten himself involved in the battles and unexpectedly saves him when he is fatally injured. Before long, Rin sets out to strike down the conspiracies surrounding the Holy Grail War along with Shirou and his summoned servant Saber. And so, the story begins to explore the truth behind Shirou’s powers and the nature behind his unyielding will to become a “hero.”", + "posterPath": "/jyqi5BkDoKKIA2WAoz3HBtRHld3.jpg", + "backdropPath": "/uqOcBHNHsmYPePmrvYhjraRxLdJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-12", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.006, + "voteCount": 340, + "popularity": 6.5642 + }, + { + "id": 14451, + "title": "Shugo Chara!", + "originalTitle": "しゅごキャラ!", + "overview": "Shugo Chara! centers on elementary school girl Amu Hinamori, whose popular exterior, referred to as \"cool and spicy\" by her classmates, contrasts with her introverted personality. When Amu wishes for the courage to be reborn as her would-be self, she is surprised to find three colorful eggs the next morning, which hatch into three Guardian Characters: Ran, Miki, and Su.", + "posterPath": "/aHzXsG3NMgen50YoBHvl4f8V5Fa.jpg", + "backdropPath": "/6htIjVL46IZoTvX2KfXRbTVGrBb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.794, + "voteCount": 17, + "popularity": 6.5606 + }, + { + "id": 69346, + "title": "Saga of Tanya the Evil", + "originalTitle": "幼女戦記", + "overview": "On the front lines of the war, Tanya Degurechaff, blond hair, blue eyes, and porcelain white skin, commands her squad with lisping voice. Actually, she is one of Japan's most elite salary men, reborn as a little girl into a world of magical warfare after angering a mysterious being who calls himself God.", + "posterPath": "/5nwiHomKZBBF9DLrolfZapi3fDm.jpg", + "backdropPath": "/gI3rLwLZ9fHuqcEXYiCBvVpUHb0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2017-01-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.219, + "voteCount": 405, + "popularity": 6.5347 + }, + { + "id": 75214, + "title": "Violet Evergarden", + "originalTitle": "ヴァイオレット・エヴァーガーデン", + "overview": "The war is over, and Violet Evergarden needs a job. Scarred and emotionless, she takes a job as a letter writer to understand herself and her past.", + "posterPath": "/61EwFPqc0r1uJo6la49J55F8bQ8.jpg", + "backdropPath": "/2e2AEk7Jmn8CztM62hoUyEEWw0B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.468, + "voteCount": 894, + "popularity": 6.5173 + }, + { + "id": 9160, + "title": "Candy Candy", + "originalTitle": "キャンディ・キャンディ", + "overview": "This story is about a girl, Candy, who is a orphan. She is a nice and optimistic girl and she has a warm heart. When she was a child, she lived in an orphanage called Pony's Home. She had a good friend called Ann. And she met the \"handsome boy on the hill\" who is a important person in her life, on the hill behind the orphanage.\n\nShe was adopted by the Loka's family. What's awaiting her are the bad-hearted Leo and his sister, Eliza. One day, in the rose garden, she met a boy, who is identical to the \"handsome boy on the hill\" who she had met in her childhood. The boy is called Antony. Thereafter, a fantastic story that she has never expected begins.", + "posterPath": "/fBidRE6eaO41CqApwkpXyj9v9hi.jpg", + "backdropPath": "/6d6qoDzMDKMub3xJ6MO0dpjAQUs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10762 + ], + "genres": [ + "Animation", + "Drama", + "Kids" + ], + "releaseDate": "1976-10-15", + "releaseYear": "1976", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 673, + "popularity": 6.4989 + }, + { + "id": 64163, + "title": "The Testament of Sister New Devil", + "originalTitle": "新妹魔王の契約者", + "overview": "Toujou Basara is a high school student whose father has suddenly just remarried. His father then departs overseas leaving Basara with two new beautiful step-sisters. Little does he know, his new sisters, Mio and Maria are actually the new Demon Lord and a succubus!? Almost trapped into a life of servitude, Basara forms a reverse contract by accident and ends up becoming Mio's master! Hijinks ensue as Basara finds himself in one ecchi situation after another. However, Mio's life is in danger as she is pursued by demons and heroes!", + "posterPath": "/4yrW5uBgcx7GSehJotlxWjAD0NQ.jpg", + "backdropPath": "/dXGaX995fsbiqJgFRj0CEJKxZVV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 338, + "popularity": 6.4907 + }, + { + "id": 46412, + "title": "Utawarerumono", + "originalTitle": "うたわれるもの", + "overview": "Hakuoro has lost his memory after succumbing to serious injuries. But thanks to an elderly woman and her granddaughter Eruruu, he is nursed back to health. His face is covered by a strange irremovable mask and he occasionally sees beastly visions. Eruruu now cares for him as he becomes accustomed to the village and its inhabitants, who all bear strange ears (the women also have tails). Though these people venerate the forces of nature, desecration of an altar forces them to take drastic measures to preserve their lives from the wrath of Mutikapa-sama, guardian of the forest.", + "posterPath": "/9skPAAxMLG25aYROr3UT1JJi9UQ.jpg", + "backdropPath": "/61wohujGWIWPRFxereT1o7uCArN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.077, + "voteCount": 26, + "popularity": 6.4893 + }, + { + "id": 139060, + "title": "Chained Soldier", + "originalTitle": "魔都精兵のスレイブ", + "overview": "Destructive monsters from the Mato dimension threaten the earth, while women gifted with powers from Peaches try to stop them. But to save the world, Yuuki must be willing to become Chief Kyoka's servant both on the battlefield and at home.", + "posterPath": "/9SFBctEZE0X4t1A2q16MC7EJrsC.jpg", + "backdropPath": "/t02dITrzFNNFEaogaxSOgibpZfp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.578, + "voteCount": 64, + "popularity": 6.4806 + }, + { + "id": 1042, + "title": "Revolutionary Girl Utena", + "originalTitle": "少女革命ウテナ", + "overview": "Utena is a tomboyish school girl who attends the prestigious Ohtori Academy. Her strong sense of chivalry pulls her into a series of duels with other members of the Student Council for the possession of the Rose Bride.", + "posterPath": "/riqymWBPqKmWpIvS3lVDYjZhwQ5.jpg", + "backdropPath": "/802aSsZzIyOhbaL1bt19gp0RVYq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-04-02", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8.151, + "voteCount": 63, + "popularity": 6.4776 + }, + { + "id": 66870, + "title": "Magi: Adventure of Sinbad", + "originalTitle": "マギ シンドバッドの冒険", + "overview": "Thirty years before the events of Magi, a brave and handsome young man named Sinbad set sail and started his adventure. The future High King of Seven Seas gradually matured through various encounters and farewells, taking him towards kingship step by step.", + "posterPath": "/7yE2vCroqyu6uudSUdwWKGN1tO4.jpg", + "backdropPath": "/kLx1IuDOeAK6MhNAD7lUPdkhw2G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2016-04-17", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.061, + "voteCount": 164, + "popularity": 6.4671 + }, + { + "id": 130237, + "title": "Aharen-san wa Hakarenai", + "originalTitle": "阿波連さんははかれない", + "overview": "Socially awkward Aharen-san has personal boundary issues, either getting too close or too far from her classmates. When fellow student Raido picks up an eraser she drops, Aharen-san decides they’re now best friends. Whether studying, playing the arcade, or just eating lunch—she’s along for the ride. What follows is an impromptu bonding that shows affection can blossom in the unlikeliest of places!", + "posterPath": "/nt758dS28jXoUNJ49fB1uPjXO2L.jpg", + "backdropPath": "/umSMlEN5RIYzlLvSFI2nfme1W02.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 74, + "popularity": 6.4549 + }, + { + "id": 258348, + "title": "Clevatess", + "originalTitle": "クレバテス-魔獣の王と赤子と屍の勇者", + "overview": "One of the Lords of Dark Beasts, Clevatess’s reign shatters when he revives a hero he personally slayed and adopts an orphaned humanoid baby—the last hope to save a dying world. Now bound together, what fate awaits this unlikely trio?", + "posterPath": "/7sWrMBhOS1x4RUCr3o2I4ld13fq.jpg", + "backdropPath": "/5nmg2cEZxA09VyDvioAuqd5jOW0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-07-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.065, + "voteCount": 55, + "popularity": 6.4538 + }, + { + "id": 25760, + "title": "Higurashi: When They Cry", + "originalTitle": "ひぐらしのなく頃に", + "overview": "After moving into the quiet town of Hinamizawa, Maebara Keiichi spends his days blissfully in school often playing games with his local friends. However, appearances can be deceiving. One fateful day, Keiichi stumbles upon news of a murder that had occurred in Hinamizawa. From this point on, horrific events unfold in front of Keiichi, as he soon learns his close friends may not be all that they seem.", + "posterPath": "/z6GrUoKte5lzPxR7HWyiSLVieUC.jpg", + "backdropPath": "/uVKUGxUSfdsGk9mvLt9mDkbATw5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.674, + "voteCount": 221, + "popularity": 6.4486 + }, + { + "id": 45783, + "title": "Kuroko's Basketball", + "originalTitle": "黒子のバスケ", + "overview": "In the story, Kagami Taiga has just enrolled into Seirin High School when he meets Kuroko Tetsuya of the school's basketball team. Kuroko happens to be the shadowy sixth member of the legendary Generation of Miracles basketball team. Together, Kagami and Kuroko aim to take their team to the inter-high school championship - against Kuroko's former teammates.", + "posterPath": "/qi8dlAgQEeahpEn1AOb5BJEOcVB.jpg", + "backdropPath": "/fOyOP702oDeGyM2H4I8mQ5pdKne.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2012-04-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 582, + "popularity": 6.4256 + }, + { + "id": 45845, + "title": "Fate/Zero", + "originalTitle": "Fate/Zero", + "overview": "The Fourth Holy Grail War has begun, and seven mages must summon heroes from history to battle each other to the death. Only one mage-and-hero pair will remain to claim the Grail and have their wishes granted! Kiritsugu Emiya was once an assassin but now fights in this war to save the world from those who would destroy it with the Grail’s power.", + "posterPath": "/chUbHBiMX7buj8TzOEIjHHPCJfF.jpg", + "backdropPath": "/l6UO4qEHwUdjPyavbP6yGA06cS3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-10-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.004, + "voteCount": 352, + "popularity": 6.4184 + }, + { + "id": 284433, + "title": "My Awkward Senpai", + "originalTitle": "不器用な先輩。", + "overview": "Kannawa-senpai is considered many things, but smooth is definitely not one of them. Then she meets Kamegawa, her new Kouhai. He's cute, a little nerdy, and easy to talk to. How will this awkward Senpai be able to handle these new feelings?!", + "posterPath": "/ljVwWeIkFMWuAz39VAh6Qu1CtI4.jpg", + "backdropPath": "/6nBbHbA1XFB79C5sYHRNHuW0PrX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-10-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9.2, + "voteCount": 5, + "popularity": 6.4003 + }, + { + "id": 62255, + "title": "Seraph of the End", + "originalTitle": "終わりのセラフ", + "overview": "After a mysterious virus wipes out ninety percent of humanity, vampires emerge from the recesses of the earth to enslave mankind, treating them like livestock. After growing tired of donating blood in exchange for protection, 12-year-old Yuichiro Hyakuya and his best friend Mikaela Hyakuya plot an escape along with the other orphans. After being the only successful runaway, Yuichiro joins the Moon Demon Company, an extermination unit of the Japanese Imperial Demon Army dedicated to killing off vampires.", + "posterPath": "/5IlxL2PfQ8CyY4TLRru9TcU56b3.jpg", + "backdropPath": "/yz9fEOBPG5Ks3uPzPyFetQpR6QX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.862, + "voteCount": 426, + "popularity": 6.3991 + }, + { + "id": 37305, + "title": "Soul Eater", + "originalTitle": "ソウルイーター", + "overview": "Set in the Shinigami technical school for weapon meisters, the series revolves around 3 groups of each a weapon meister and a human weapon. Trying to make the latter a \"Death Scythe\" which is the highest title for a weapon and thus fit for use by the Shinigami, they must collect the souls of 99 evil humans and 1 witch. Maka & Soul Eater, Black Star & Tsubaki, and Death the Kid with Patty and Liz Thompson are the characters Soul Eater revolves around. Besides taking the time to gather souls, these students of Shibusen defend Death City from some of the most powerful of creatures while still attending school and trying to become stronger.", + "posterPath": "/hI5AhxFTSFabTG7Fvhczyb5ZIh8.jpg", + "backdropPath": "/yOkNYWCOWLh3HFtUlo3QT1g5pHG.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-04-07", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.775, + "voteCount": 314, + "popularity": 6.3903 + }, + { + "id": 42421, + "title": "Panty & Stocking with Garterbelt", + "originalTitle": "パンティ&ストッキングwithガーターベルト", + "overview": "Panty and Stocking are nasty angels who were banished from the pearly gates for being foul-mouthed bad girls! Now they spend their days hunting ghosts in the lecherous abyss between Heaven and Earth. Panty likes sex, Stocking likes sweets, and their afro-sporting main man Garterbelt has a fetish we can't mention.", + "posterPath": "/RPiVM7JIoAsOZEX0rW8tKQFvCR.jpg", + "backdropPath": "/zX12leCOrQLCIyNKYXKcVPvAJiY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.726, + "voteCount": 84, + "popularity": 6.3879 + }, + { + "id": 21729, + "title": "Gurren Lagann", + "originalTitle": "天元突破グレンラガン", + "overview": "When a young laborer escapes to the world aboveground, he discovers a violent land in which humans battle robots controlled by a power-hungry noble.", + "posterPath": "/xL6HsYsk5N9PKwk6jFwMNQq3K3M.jpg", + "backdropPath": "/rfgtmeFvT0bU3AjX6b7C4Vj8iBY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-01", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 556, + "popularity": 6.3783 + }, + { + "id": 39379, + "title": "Full Metal Panic!", + "originalTitle": "フルメタル・パニック!", + "overview": "Kaname Chidori’s one of the most popular girls at her high school – unfortunately, it’s her growing popularity off campus she should be worrying about. Unbeknownst to Kaname, terrorists are plotting her abduction, believing she possesses the rare and coveted abilities of “the Whispered.” That’s where Sousuke Sagara enters the picture. He’s a hotshot soldier from the clandestine counter-terrorist organization known as Mithril – and he’s going undercover at Kaname’s school to try and keep her safe. He may be an ace in the cockpit of an Arm Slave mech, but there’s no training in the world that could prepare him for the warzone of high school.", + "posterPath": "/aXvI0S1kLpFYhXuHIMjinXe4uiM.jpg", + "backdropPath": "/r5jl8KCfUtAqB1tvCJ7wxCew1ZK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-01-08", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.973, + "voteCount": 129, + "popularity": 6.3312 + }, + { + "id": 62564, + "title": "Sound! Euphonium", + "originalTitle": "響け!ユーフォニアム", + "overview": "After swearing off music due to an incident at the middle school regional brass band competition, euphonist Kumiko Oumae enters high school hoping for a fresh start. As fate would have it, she ends up being surrounded by people with an interest in the high school brass band. Kumiko finds the motivation she needs to make music once more with the help of her bandmates, some of whom are new like novice tubist Hazuki Katou; veteran contrabassist Sapphire Kawashima; and band vice president and fellow euphonist Asuka Tanaka. Others are old friends, like Kumiko's childhood friend and hornist-turned-trombonist Shuuichi Tsukamoto, and trumpeter and bandmate from middle school, Reina Kousaka.\n\nHowever, in the band itself, chaos reigns supreme. Despite their intention to qualify for the national band competition, as they currently are, just competing in the local festival will be a challenge—unless the new band advisor Noboru Taki does something about it.", + "posterPath": "/l0hKrx6PjQRrHiMzK2Fanen2xbL.jpg", + "backdropPath": "/jErTDsVzUFwQm7Ox5Un9AsGxukV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2015-04-08", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 93, + "popularity": 6.3272 + }, + { + "id": 29452, + "title": "Heidi, Girl of the Alps", + "originalTitle": "アルプスの少女ハイジ", + "overview": "After becoming an orphan, Heidi is forced to live with her grandfather Öhi who lives in the mountain Alps. However he is a very bitter man who only accepts to take her in by force. Heidi's kindness may be able to open Öhi's heart. Along with Peter the goat carer and the crippled Klara, Heidi has a lot of adventures.", + "posterPath": "/jVI5WYnITj1KfF2wFZWR0EezyH3.jpg", + "backdropPath": "/cafsMt9cQlaRCNVqf5KXtTUQP6V.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10751 + ], + "genres": [ + "Animation", + "Drama", + "Family" + ], + "releaseDate": "1974-01-06", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 7.316, + "voteCount": 198, + "popularity": 6.3129 + }, + { + "id": 60728, + "title": "Kill la Kill", + "originalTitle": "キルラキル", + "overview": "Honnouji Academy is forcefully ruled by the iron-fisted control of its student council and its president, Satsuki Kiryuin. Transfer student, Ryuko Matoi, arrives on campus carrying a giant sword, that is actually half of a scissor. She is looking for the woman who holds the other half of her sword who killed her father. It is said that Satsuki Kiryuin knows the identity of the killer but when Ryuko confronts her she is beaten by the student council and their powerful \"Goku Uniforms\" whom she cannot match in strength. However, once Ryuko receives her own \"Kamui\" by the name of Senketsu, the odds are lifted in her favor.", + "posterPath": "/4F1WtP3dFIwLPOfa3u29VEVnNkf.jpg", + "backdropPath": "/hsmYzDPyfiv3IlkxZsbeO92C7mP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.155, + "voteCount": 512, + "popularity": 6.3121 + }, + { + "id": 293010, + "title": "Let's Play", + "originalTitle": "Let's Play クエストだらけのマイライフ", + "overview": "Samara “Sam” Young is a developer in Los Angeles who’s about to achieve her dreams with her first video game, Ruminate. That is, until a popular streamer gives the game a scathing review. Even worse, Sam finds out the troublesome critic is now her new neighbor! Get lost in a comedic, romantic, and all-too-real story about gaming, memes, and social anxiety. Come for the plot, stay for the doggo.", + "posterPath": "/aLzTaEle2w6W4rKKbIrF6WYWw9w.jpg", + "backdropPath": "/cG0aOH5hyqA81VfXMgMrkHB8BCe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-10-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 5, + "popularity": 6.2852 + }, + { + "id": 5653, + "title": "MegaMan NT Warrior", + "originalTitle": "ロックマン エグゼ", + "overview": "In the year 20XX, a young boy named Netto Hikari receives a very special gift as he enters the 5th grade: his very own customized Net Navi, Rockman.", + "posterPath": "/roZllkX4mOoDAKljFtpYJzD41Kn.jpg", + "backdropPath": "/whXYrUSNqkzGnxDkPv6wXr7gki8.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-03-04", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 22, + "popularity": 6.2845 + }, + { + "id": 132791, + "title": "SUPERKID", + "originalTitle": "パーマン", + "overview": "Mitsuo encountered Superman, an alien who is a part of a federation that tries to maintain peace in the galaxy. He then received a helmet (that also serves as a mask) that gives superhuman strength, a cape that enables the wearer to fly, and a badge that allows him to breathe underwater and communicate with his fellow comrades whom he met soon after he utilized these gifts. Superman made it clear to all Permans that their identity must be kept a secret or their brain will be destroyed should it ever be revealed and they are given a special doppelganger robot that can replace them while they are away to achieve this feat, although it is not entirely foolproof nor is it free from potential problems. These equipments then allowed them to be young Permans who try to maintain peace and help the people who are in need.", + "posterPath": "/lCGbsqKiOvRICllC4AgZ67zjrSL.jpg", + "backdropPath": "/vaNcnuLNiNRPt9bbeTmdBXFw31W.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1983-04-04", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 5, + "popularity": 6.2803 + }, + { + "id": 86836, + "title": "Why the Hell Are You Here, Teacher!?", + "originalTitle": "なんでここに先生が!?", + "overview": "Ichiro Sato is about as average as a student can get... except for his above-average ability to land himself in totally awkward, intensely risqué situations with his no-nonsense teacher, Kana Kojima! Ichiro has his hands full dealing with these steamy shenanigans and unexpected encounters in the most unlikely places. At least it can’t get any worse, right?", + "posterPath": "/1yss3gl6mMNT9Txvdtvnu2KTWt9.jpg", + "backdropPath": "/9UolwLE0kfN4orxKwXdevJPWjNI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.423, + "voteCount": 686, + "popularity": 6.2782 + }, + { + "id": 274810, + "title": "This Monster Wants to Eat Me", + "originalTitle": "私を喰べたい、ひとでなし", + "overview": "Hinako lives alone by the sea, quietly drifting through life after losing her family years ago. One day, a mermaid named Shiori saves her from a monster and says she’s come to eat her—just not yet. Until then, Shiori will stay by her side and keep her safe. In that moment, a deep hope swells in Hinako: Maybe this girl can finally grant her the ending she’s been waiting for.", + "posterPath": "/oW9xa5HkmouhC7a8jb6JZK8sxSm.jpg", + "backdropPath": "/vDpjG0xmgZ4fJhFW0ZHx0Hzclk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-10-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9.333, + "voteCount": 6, + "popularity": 6.2377 + }, + { + "id": 12536, + "title": "Yu-Gi-Oh! GX", + "originalTitle": "遊戯王デュエルモンスターズGX", + "overview": "Ten years after the Ceremonial Battle, a teenage boy named Judai Yuuki (Jaden Yuki) heads off in order to join the Duel Academia (Duel Academy) located on a remote island off the coast of Japan. There he meets his fellow students and gains a few friends, along with a few enemies. Judai is put into the lowest rank of Osiris Red (Slifer Red), but he continues to test his skills against the students and faculty to prove his worth as a Duelist and earn the respect of everyone around him.", + "posterPath": "/vhY30rXaM5axSpAdr1M1HRQrQGa.jpg", + "backdropPath": "/thC21OmJxXR0FoUrkEk644rRO2M.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2004-10-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 292, + "popularity": 6.2206 + }, + { + "id": 24710, + "title": "Nadia: The Secret of Blue Water", + "originalTitle": "ふしぎの海のナディア", + "overview": "In mankind's grasp for the future, a sinister foe known only as Gargoyle begins his plans to take over the world. Nadia, with the help of a young inventor, Jean Ratlique, and Captain Nemo of the submarine Nautilus, must fight to save the world from Gargoyle and Neo-Atlantis.", + "posterPath": "/gRucHR87gd3ZwvIP0V1IlEiLMzM.jpg", + "backdropPath": "/VQe5q9BD3itFA30VNHOmcKWrSr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Family" + ], + "releaseDate": "1990-04-13", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 87, + "popularity": 6.199 + }, + { + "id": 56559, + "title": "Theatre of Darkness: Yamishibai", + "originalTitle": "闇芝居", + "overview": "Yamishibai is a picture-story style of animation whose motif is surrounded and based off the rumors, and urban legends throughout the history of Japan.", + "posterPath": "/coYJ1i9QLlHZTanckLZ4iceptlj.jpg", + "backdropPath": "/upkcoee5VhPeTTbLdPERtCVhy4N.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2013-07-15", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 57, + "popularity": 6.1988 + }, + { + "id": 76121, + "title": "DARLING in the FRANXX", + "originalTitle": "ダーリン・イン・ザ・フランキス", + "overview": "The story is set in the distant future. The land is ruined, and humanity establishes the mobile fort city Plantation. Pilots produced inside Plantation live in Mistilteinn, also know as the \"birdcage.\" Children live there knowing nothing of the outside world or the freedom of the sky. Their lives consist of battling to carry out missions. Their enemies are mysterious giant lifeforms known as Kyouryuu, and the children pilot robots called Franxx to face off against them. For the children, riding the Franxx proves their existence.\n\nA boy named Hiro is called Code:016, and he was once known as a prodigy. However, he has fallen behind, and his existence seems unnecessary. Not piloting a Franxx is the same as ceasing to exist. One day, a mysterious girl known as \"Zero Two\" appears before him. Two horns grow out of her head.", + "posterPath": "/m6R8gI3brohD6izeVCXFmuGeV2m.jpg", + "backdropPath": "/tKh3pc5MEjCIGV7hSJX76qi8aGA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2018-01-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.538, + "voteCount": 1852, + "popularity": 6.1958 + }, + { + "id": 61441, + "title": "Yowamushi Pedal", + "originalTitle": "弱虫ペダル", + "overview": "A timid, anime-loving teen gets drawn into a school cycling club, where his new friends help him face tough challenges to develop his racing talent.", + "posterPath": "/688PJsb1sVWgosrQCbwT32vJKfI.jpg", + "backdropPath": "/3t5i6QjBmi8VPqTtYfvkzWPnqzO.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 18 + ], + "genres": [ + "Comedy", + "Animation", + "Drama" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 45, + "popularity": 6.1867 + }, + { + "id": 61663, + "title": "Your Lie in April", + "originalTitle": "四月は君の嘘", + "overview": "Kousei Arima was a genius pianist until his mother's sudden death took away his ability to play. Each day was dull for Kousei. But, then he meets a violinist named Kaori Miyazono who has an eccentric playing style. Can the heartfelt sounds of the girl's violin lead the boy to play the piano again?", + "posterPath": "/rRjfH3ckTYz8z8aSkJshFL4VyK9.jpg", + "backdropPath": "/x6jWDL4H9TaBLGEvyej0qKiirBU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-10-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.574, + "voteCount": 1083, + "popularity": 6.1731 + }, + { + "id": 281044, + "title": "Solo Camping for Two", + "originalTitle": "ふたりソロキャンプ", + "overview": "Gen Kinokura just wanted to enjoy his peaceful solo camping trips—no distractions, no problems. Enter Shizuku Kusano, a clueless but enthusiastic newbie who crashes his campsite (literally). Now, this bothered outdoorsman is stuck teaching her the ropes. Laughs, mishaps, and heartwarming moments await this duo-camp adventure under the stars!", + "posterPath": "/r1UVwYCQ4q02T40bdnRgTFLkOXc.jpg", + "backdropPath": "/lPpKeKWD0dfHB8ZakfEavurVZ1T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 11, + "popularity": 6.1506 + }, + { + "id": 61709, + "title": "Dragon Ball Z Kai", + "originalTitle": "ドラゴンボール改「カイ」", + "overview": "Rejoin Goku and his friends in a series of cosmic battles! Toei has redubbed, recut, and cleaned up the animation of the original 1989 animated series. The show's story arc has been refined to better follow the comic book series on which it is based. The show also features a new opening and ending. In the series, martial artist Goku, and his various friends, battle increasingly powerful enemies to defend the world against evil. Can Earth's defender defeat demons, aliens, and other villains?", + "posterPath": "/je57jXdeWeJO9tGoWSJi4MCuXbN.jpg", + "backdropPath": "/oz5zbMBKCUsb7hsbjdxvK8yagPD.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 792, + "popularity": 6.1428 + }, + { + "id": 46036, + "title": "The Book of Bantorra", + "originalTitle": "戦う司書 The Book of Bantorra", + "overview": "In a world where dead people turn into books and are stored in the Bantorra Library where anyone who reads a book can learn their past. Bantorra Library is maintained by Armed Librarians who wield psychic powers and their enemy is a religious society known as Sindeki Kyōdan.", + "posterPath": "/uXPYJTREQSYr59vKu1LjFWxW2Ef.jpg", + "backdropPath": "/9bHHy7rC40zrA32AdWWP9umsXL8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2009-10-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 9, + "popularity": 6.1409 + }, + { + "id": 34109, + "title": "Bakugan Battle Brawlers", + "originalTitle": "爆丸バトルブローラーズ", + "overview": "Centers on the lives of creatures called Bakugan and the battle brawlers who possess them.", + "posterPath": "/vptVwP1uej035bHzirMtEMSndn.jpg", + "backdropPath": "/fI3m5UjTMyigglkFeQWkPJgFLSC.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-05", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.31, + "voteCount": 381, + "popularity": 6.1311 + }, + { + "id": 261343, + "title": "Chitose Is in the Ramune Bottle", + "originalTitle": "千歳くんはラムネ瓶のなか", + "overview": "Saku Chitose is a student at Fujishi High School, the most prestigious school in Fukui Prefecture. Outstanding in class, on the field, and in his social life, Saku attracts attention, good and bad. Naturally, he is surrounded by a circle of friends anyone would be happy to have. Now in the spring of his second year, with a new class, Saku is asked to help a shut-in classmate return to school life.", + "posterPath": "/7tpcFkOpLcWkJU6mV5ooJyHA3DR.jpg", + "backdropPath": "/4BE1aoCu5mCG3ZJ7alNDQkB3oK4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-10-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 5, + "popularity": 6.131 + }, + { + "id": 77694, + "title": "Umamusume: Pretty Derby", + "originalTitle": "ウマ娘 プリティーダービー", + "overview": "In a world very much like our own, great race horses of the past have a chance to be reborn as \"horse girls\"—girls with the ears and tails of horses as well as their speed and endurance. The best of these horse girls go to train at Tokyo's Tracen Academy, hopefully moving on to fame and fortune as both racers and idols.\n\nSpecial Week, a high school horse girl from the countryside, has just transferred to Tracen, and she's determined to fulfill her promise to her mother to become the best horse girl in Japan. On her way to school, she takes a pit stop at the race track and instantly falls in love with Silence Suzuka's style, becoming determined to race on the same team as her.", + "posterPath": "/9TVHxWbWAHiIQjzGTx1vXi95r2X.jpg", + "backdropPath": "/fp9odSdJDtOSuerFgHLKao3ajxS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-04-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 77, + "popularity": 6.1264 + }, + { + "id": 154743, + "title": "The Angel Next Door Spoils Me Rotten", + "originalTitle": "お隣の天使様にいつの間にか駄目人間にされていた件", + "overview": "Amane lives alone in an apartment, and the most beautiful girl in school, Mahiru, lives just next door. They've almost never spoken—until the day he sees her in distress on a rainy day and lends her his umbrella. To return the favour, she offers him help around the house, and a relationship slowly begins to blossom as the distance between them closes…", + "posterPath": "/twCEEzmZZkgQIPXzw0JF350GO0P.jpg", + "backdropPath": "/7SQAFFP8dQCX60uvLDzizUoUC2L.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 83, + "popularity": 6.1179 + }, + { + "id": 83100, + "title": "Dororo", + "originalTitle": "どろろ", + "overview": "A samurai lord has bartered away his newborn son's organs to forty-eight demons in exchange for dominance on the battlefield. Yet, the abandoned infant survives thanks to a medicine man who equips him with primitive prosthetics—lethal ones with which the wronged son will use to hunt down the multitude of demons to reclaim his body one piece at a time, before confronting his father. On his journeys the young hero encounters an orphan who claims to be the greatest thief in Japan.", + "posterPath": "/2qSzgSE80OFrfgg5UFYbATdCQ6t.jpg", + "backdropPath": "/2Wb3LB2LIRmGrFbGTgpQsTOCPhS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2019-01-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.544, + "voteCount": 1263, + "popularity": 6.1171 + }, + { + "id": 8864, + "title": ".hack", + "originalTitle": ".hack", + "overview": ".hack follows several young players as they navigate the vast, mysterious MMORPG known as “The World” – a place, it turns out, that is sometimes impossible to leave.", + "posterPath": "/wNplB2ViLejqtyU76Qz2iv3oZPM.jpg", + "backdropPath": "/nQC4IrpJOUvlWTkmU1UaRaere8B.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery" + ], + "releaseDate": "2002-04-04", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.857, + "voteCount": 35, + "popularity": 6.1156 + }, + { + "id": 8974, + "title": "Hell Girl", + "originalTitle": "地獄少女", + "overview": "A supernatural system allows people to take revenge by having other people sent to Hell via the services of a mysterious entity and her assistants who implement this system. Revenge, injustice, hatred, and the nature of human emotions are common themes throughout the series.", + "posterPath": "/l50Wjrt2m362DjsKZVTpU2sp5L5.jpg", + "backdropPath": "/z0ExPmQF4cQpiYthtLOhPkq8vof.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-04", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.211, + "voteCount": 235, + "popularity": 6.0993 + }, + { + "id": 112613, + "title": "Ranking of Kings", + "originalTitle": "王様ランキング", + "overview": "Unable to hear, speak, or wield a sword, Prince Bojji doesn’t seem like a typical heir to the throne—and his kingdom agrees. But his fateful encounter with Kage, a shadow on the ground, gives him his first true friend. The two set off on a grand adventure and, together, form a bond that can overcome any obstacle...even being king.", + "posterPath": "/ujMjMUi6z02uOfQEerEDC4rH6aG.jpg", + "backdropPath": "/xMNhuwiBF7lTsC5SL5aNM8qqtF0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2021-10-15", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.037, + "voteCount": 285, + "popularity": 6.0944 + }, + { + "id": 45854, + "title": "Yu-Gi-Oh! Zexal", + "originalTitle": "遊☆戯☆王ZEXAL", + "overview": "When aspiring duelist Yuma meets Astral, a mysterious visitor from another universe, it seems like destiny. Yuma needs Astral to teach him how to duel, and Astral needs Yuma to help him regain his memories!", + "posterPath": "/lHOkQJs8oPvU5idZIcjzor7T4m3.jpg", + "backdropPath": "/8jgvqyz76ydAwLrntGn3jTaYr7S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2011-04-11", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 54, + "popularity": 6.0842 + }, + { + "id": 20353, + "title": "Magical DoReMi", + "originalTitle": "おジャ魔女どれみ", + "overview": "Ojamajo Doremi, known as Magical DoReMi internationally, is a magical girl anime television series created by Toei Animation in 1999. It focuses on elementary school students who become witch apprentices. Led by Doremi Harukaze, the girls must maintain their double lives in secret.\n\nOjamajo Doremi has been followed up by three direct sequels, lasting until its end in 2003. During the television series' runtime, two companion films were released in theaters. The English dub, produced by 4Kids Entertainment, released a preview episode in the US airing on August 13, 2005, and the first episode on September 10, 2005.", + "posterPath": "/iCINo8JNXswWelsEycO1frahHS1.jpg", + "backdropPath": "/zJi8eaweBRbCjQU5C1HxucUCW6i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "1999-02-07", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 101, + "popularity": 6.0795 + }, + { + "id": 67460, + "title": "Yu-Gi-Oh! Arc-V", + "originalTitle": "遊☆戯☆王ARC-V", + "overview": "Yuya Sakaki's dream is to follow in his father's footsteps and become the greatest \"duel-tainer\" in history - and he just might pull it off when he suddenly discovers Pendulum Summoning, a never-before-seen technique that lets him summon many monsters at once!", + "posterPath": "/nVST01k1PpOZGbGEmCZhevRWhEL.jpg", + "backdropPath": "/pRejrAALzDQsrCm2nh7xa5cK4HA.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 40, + "popularity": 6.0544 + }, + { + "id": 93816, + "title": "Great Pretender", + "originalTitle": "GREAT PRETENDER", + "overview": "Supposedly Japan's greatest swindler, Makoto Edamura gets more than he bargained for when he tries to con Laurent Thierry, a real world-class crook.", + "posterPath": "/Ang6RR0n5a49lEsKRqQrmGyDekF.jpg", + "backdropPath": "/am5RPNJ2msb91Uza8wIIxWbjTKp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2020-07-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 127, + "popularity": 6.0238 + }, + { + "id": 80623, + "title": "BAKI", + "originalTitle": "バキ", + "overview": "While martial arts champion Baki Hanma trains hard to surpass his legendary father, five violent death row inmates descend upon Tokyo to take him on.", + "posterPath": "/j4bL0G8h8k49MuXKYfZqhXqk2rI.jpg", + "backdropPath": "/qbxoEhlxNcyr7GjG2SXTShWn32m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2018-06-26", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.101, + "voteCount": 1344, + "popularity": 6.0105 + }, + { + "id": 38603, + "title": "Beelzebub", + "originalTitle": "べるぜバブ", + "overview": "Violent delinquent Oga encounters a baby one day, which crawls onto his back and immediately forms an attachment to him. Though he doesn't know it yet, this baby is named Kaiser de Emperana Beelzebub IV, or \"Baby Beel\" for short—the son of the Demon Lord!", + "posterPath": "/41QZ3NTTBY3nZcGrkIL1fXbDFBK.jpg", + "backdropPath": "/3Z57uXxFEANAXQTukXmzJYnHc7F.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2011-01-09", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 263, + "popularity": 6.0004 + }, + { + "id": 83962, + "title": "CAROLE & TUESDAY", + "originalTitle": "キャロル&チューズデイ", + "overview": "Part-timer Carole meets rich girl Tuesday, and each realizes they've found the musical partner they need. Together, they just might make it.", + "posterPath": "/1NtxJItCNV9B36FpttUumGvdzSG.jpg", + "backdropPath": "/kCQXUzThgvRtoyFNdjwXBH21a9r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-04-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 78, + "popularity": 5.9914 + }, + { + "id": 9410, + "title": "Basilisk", + "originalTitle": "バジリスク甲賀忍法帖", + "overview": "The story takes place in the year 1614. Two ninja clans, Tsubagakure of the Iga and Manjidani of Kouga, battle each other to determine which grandson of Tokugawa Ieyasu will become the next shogun. The deadly competition between 10 elite ninja from each clan unleashes a centuries-old hatred that threatens to destroy all hope for peace between them.", + "posterPath": "/oqLJUgkLjL7FK3NdSpnG7NZHPva.jpg", + "backdropPath": "/4rqrdFjoNcR1xaR7AoqibHFrRQF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 10765 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-12", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 98, + "popularity": 5.9717 + }, + { + "id": 45502, + "title": "Queen's Blade", + "originalTitle": "クイーンズブレイド", + "overview": "Every few years, beautiful female warriors from across the land compete in the Queen's Blade Tournament to become the ruler of the land. It's a series that loves violence as much as it hates clothes and complicated plots.", + "posterPath": "/jtJYpBrN2mOCjSZSTJm1GVogUh8.jpg", + "backdropPath": "/gIM0WQ0mxyxJJzu4BfgRx2DbJ09.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 36, + "popularity": 5.951 + }, + { + "id": 36250, + "title": "xxxHOLiC", + "originalTitle": "XXX ホリック", + "overview": "Kimihiro Watanuki is a high school student plagued by ayakashi spirits, both of which are invisible to everyone else but him. The series begins when Watanuki stumbles, seemingly by chance, into a shop that grants wishes. The shop is owned by Yūko Ichihara, a mysterious witch of many names and esoteric renown. For a price, she offers to grant Watanuki's wish to be rid of the spirits. The price, according to Yūko, must be of equal value; so, as payment, he must become Yūko's temporary, part-time cook and housekeeper.", + "posterPath": "/5yY74hwLcG5rQSe6cEUW3HjO3J9.jpg", + "backdropPath": "/93Zwr1UckwikK8ZAcL9KmxKhszu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-06", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 791, + "popularity": 5.9441 + }, + { + "id": 280110, + "title": "My Hero Academia: Vigilantes", + "originalTitle": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "overview": "After a life-changing incident, timid college student Koichi Haimawari accepts an offer from revered vigilante Knuckleduster to train as his protégé.", + "posterPath": "/iv0cXt6uJGlTryWZNQMGyum4Pme.jpg", + "backdropPath": "/baZ0pGbBGjCBhIqsFyOSTpJyUnQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 61, + "popularity": 5.9375 + }, + { + "id": 100937, + "title": "Crazy Over His Fingers: Just the Two of Us in a Salon After Closing", + "originalTitle": "俺の指で乱れろ。~閉店後二人きりのサロンで...~", + "overview": "Fumi works as an assistant at a popular salon in the city and is aiming to become a hairdresser. She receives strict guidance from Sousuke, the salon's charismatic hairdresser and manager. Every time he touches Fumi, she becomes agitated. One day after the salon closed, Fumi stands in as Sousuke's practice partner at the shampoo station. As he touches her and sprinkles her with water, she becomes angry again! Or so the thought...could she actually be attracted to him? Sousuke flashes an evil smile as he senses Fumi's heart, and his fingertips start to stroke every corner of her body...Fumi cannot refuse his fingers anymore.", + "posterPath": "/hlk5xhZw5uSBJvpJD3xbX2k6BhA.jpg", + "backdropPath": "/uV1nCntdsTVhw7bDrd85qtiqdY9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10766 + ], + "genres": [ + "Animation", + "Soap" + ], + "releaseDate": "2020-04-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 18, + "popularity": 5.9299 + }, + { + "id": 63576, + "title": "Fate/kaleid liner Prisma Illya", + "originalTitle": "Fate/kaleid liner プリズマ☆イリヤ", + "overview": "Illyasviel von Einzbern is an ordinary elementary school student who becomes a magical girl when the magical Kaleidostick Ruby deems her a more suitable master than the sorceress, Rin Tohsaka. Rin, who had been tasked by the wizard Zelretch to collect the seven Class Cards containing the spirits of Heroic Spirits from legend, finds that she is unable to change Ruby's mind and must supervise Illya in completing the task of collecting the Class Cards. During Illya's adventures, she receives a friend and rival in a girl named Miyu, the contracted master of the Kaleidostick Sapphire, which similarly abandoned its original master and Rin's rival, Luvia Edelfelt.", + "posterPath": "/fivwHxH3xddSkSyqonXtuydBpIY.jpg", + "backdropPath": "/vlJvlElz9QxiVQ4inLrcSVIralF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2013-07-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.605, + "voteCount": 43, + "popularity": 5.9275 + }, + { + "id": 113808, + "title": "Seirei Gensouki: Spirit Chronicles", + "originalTitle": "精霊幻想記", + "overview": "His past life and current life are intersecting--a boy with memories of two lives faces his destiny! After his mother was killed at an early age, the orphaned Rio fought his hardest to survive in the slums. One day, he awakens to the memories of Haruto Amakwa, who died in an accident while dreaming of being reunited with his childhood friend, and Rio realizing he has reincarnated in a world of swords and sorcery.", + "posterPath": "/hGPvfuGJfWrH0i5bKJcR1xJI1cD.jpg", + "backdropPath": "/fmt7HMsp0g2BTjrU4VHK9GrZ4kX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 240, + "popularity": 5.9222 + }, + { + "id": 61456, + "title": "Free!", + "originalTitle": "Free!", + "overview": "The story revolves around Haruka Nanase, a boy who has always loved to be immersed in water, and to swim in it. Before graduating from elementary school, he participated in a swimming tournament along with his fellow swimming club members, Makoto Tachibana, Nagisa Hazuki, and Rin Matsuoka. After achieving victory, each of the boys went their separate ways. Time passed, and in the middle of their uneventful high school lives Rin appears and challenges Haruka to a match, showing Haruka his overwhelming power. Not wanting it to end like this, Haruka, gathers together Makoto and Nagisa once again and brings a new member named Rei Ryugazaki to create the Iwatobi High School Swimming Club in order to defeat Rin.", + "posterPath": "/aV195WULVVW6EFUGTwpYHO1lp3t.jpg", + "backdropPath": "/ghOUf1gzmBhbdKJrAjylLE983R9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2013-07-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 237, + "popularity": 5.9104 + }, + { + "id": 42410, + "title": "Durarara!!", + "originalTitle": "デュラララ!!", + "overview": "In Tokyo's downtown district of Ikebukuro, amidst many strange rumors and warnings of anonymous gangs and dangerous occupants, one urban legend stands out above the rest—the existence of a headless \"Black Rider\" who is said to be seen driving a jet-black motorcycle through the city streets.\n\nMikado Ryuugamine has always longed for the excitement of the city life, and an invitation from a childhood friend convinces him to move to Tokyo. Witnessing the Black Rider on his first day in the city, his wishes already seem to have been granted. But as supernatural events begin to occur, ordinary citizens like himself, along with Ikebukuro's most colorful inhabitants, are mixed up in the commotion breaking out in their city.", + "posterPath": "/i2YqpHaPEMW2JHhFFnyOxgGBMNP.jpg", + "backdropPath": "/kH9iK6krt0VBwAv5xbsYyhn8AW5.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648, + 80 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2010-01-08", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.674, + "voteCount": 213, + "popularity": 5.8838 + }, + { + "id": 121964, + "title": "The Case Study of Vanitas", + "originalTitle": "ヴァニタスの手記", + "overview": "In 19th-century Paris, young vampire Noé finds the Book of Vanitas in human hands. Calling himself Vanitas, this doctor wields its power and tempts Noé with a plan to “cure” all vampires. Allying with him may be dangerous, but does he have a choice?", + "posterPath": "/hk9joSlfsrVTmcoYzQ7rFg028Fq.jpg", + "backdropPath": "/u8QlDE78tI6ValBADKa4NEOWihQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2021-07-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.264, + "voteCount": 229, + "popularity": 5.883 + }, + { + "id": 31709, + "title": "Galaxy Express 999", + "originalTitle": "銀河鉄道999", + "overview": "In a distant future, Tetsuro is a human boy who wants his body replaced with a robotic one. This is possible, but to do so he has to reach the Immortal Planet onboard the space train Galaxy Express 999. Maetel, a beautiful and mysterious blonde woman dressed in Russian style, joins him in the long journey through space. Every episode sees our heroes arriving in a new planet's space train station.", + "posterPath": "/hSL8OUYK1TRKENMgrgStaY5lqzK.jpg", + "backdropPath": "/jU7aA911z7SrXtjgQOvjDVXcR0q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1978-09-14", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 26, + "popularity": 5.8827 + }, + { + "id": 65336, + "title": "March Comes In Like a Lion", + "originalTitle": "3月のライオン", + "overview": "This is a gentle tale about people trying to regain something. And it is a tale of battle. Rei Kiriyama had lost his family in an accident when he was young. Now he is a 17-year-old pro shogi player who is burdened with deep loneliness. Rei lives alone in an old town in Tokyo, but after becoming acquainted with three sisters, Akari, Hinata and Momo, he begins to change little by little...", + "posterPath": "/sokReNdjEwG2TkdUzJcVnD6sChT.jpg", + "backdropPath": "/mLzJpP9YRexGbvgiqunirAM5HAA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2016-10-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 129, + "popularity": 5.8763 + }, + { + "id": 63322, + "title": "Superb Song of the Valkyries: Symphogear", + "originalTitle": "戦姫絶唱シンフォギア", + "overview": "During a concert by idol group Zwei Wing, an alien force known as the Noise attack the stage. Group members Tsubasa Kazanari and Kanade Amou suppress the attack using their Symphogear armor, but despite their best efforts, innocent bystander Hibiki Tachibana is fatally injured. Distraught and much to Tsubasa's dismay, Kanade sacrifices herself in the process to save Hibiki.\n\nTwo years later, Hibiki lives on. Tsubasa now fights alone. With the threat of the Noise increasing, Hibiki finds herself encountering the Noise once again but this time she is granted a chance to become attuned with the same Symphogear that Kanade wielded.", + "posterPath": "/g0jsgViN4aBybkgTmr4XgZHluxX.jpg", + "backdropPath": "/2wXkDB02tJnd2YZDLstCiZIuzFb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2012-01-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 22, + "popularity": 5.8659 + }, + { + "id": 76100, + "title": "Shinkansen Henkei Robo Shinkalion: THE ANIMATION", + "originalTitle": "新幹線変形ロボ シンカリオン THE ANIMATION", + "overview": "Hayato Hayasugi (his last name is a pun on the words for \"too fast\") and other children will serve as conductors to pilot the Shinkalion. The Shinkalion robots are various models of real-life Japanese bullet trains (shinkansen) that transform into robots to fight an unknown evil to protect the safety and peace of Japan.\n\nThe children must work together with the adults of the Shinkansen Ultra Evolution Institute (SUEI) to defeat a monster that looks like a jet black bullet train.", + "posterPath": "/kRAEswoPMyvmfOT3bdfP5Cfd3q9.jpg", + "backdropPath": "/orAInGPeSqvKYu8NewNMrj7Qw6g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2018-01-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 6, + "popularity": 5.8639 + }, + { + "id": 75865, + "title": "Teasing Master Takagi-san", + "originalTitle": "からかい上手の高木さん", + "overview": "\"If you blush, you lose.\" Living by this principle, the middle schooler Nishikata gets constantly made fun of by his seat neighbor Takagi-san. With his pride shattered to pieces, he vows to turn the tables and get back at her some day. And so, he attempts to tease her day after day, only to find himself victim to Takagi-san's ridicule again sooner than later. Will he be able to make Takagi-san blush from embarrassment even once in the end?", + "posterPath": "/hKwpd9K5AXsDhcBhJ7hyP7iBJhN.jpg", + "backdropPath": "/g9ZXjxESzLTmuXdi1Es8NXLSZzm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.161, + "voteCount": 384, + "popularity": 5.8625 + }, + { + "id": 37585, + "title": "Kenichi: The Mightiest Disciple", + "originalTitle": "史上最強の弟子ケンイチ", + "overview": "Yeah, Kenichi’s a total wimp. He’s always getting picked on and doesn’t have a lot of friends to stick up for him. The guy needs motivation if he hopes to graduate in one piece. Well, Miu’s the perfect motivation. She’s hot, she accepts him, and she just so happens to live at a dojo with six martial arts masters. You could say fate has led Kenichi to their door, or you could say he was just following the hottie. Either way, he’s about to get whipped into serious shape. If he can survive some hard-core training, he might survive another day at school. He might even score with Miu. Yeah, you could call Kenichi a wimp. But let’s go with underdog instead.", + "posterPath": "/pLzfW5xWN9sOId6C6vgcv8otnN7.jpg", + "backdropPath": "/1q8GjiMyWpSlBKc7aa5dFvD53CS.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2006-10-07", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 459, + "popularity": 5.8199 + }, + { + "id": 119100, + "title": "BOCCHI THE ROCK!", + "originalTitle": "ぼっち・ざ・ろっく!", + "overview": "Hitori Gotoh, a shy, awkward, and lonely high school student dreams of being in a band despite her doubts and worries, but when she is recruited to be the guitarist of a group looking to make it big, she realises her dream may be able to be fulfilled and come true.", + "posterPath": "/Af4tZ3eKjKWXG4vfiQ8R1NJomAP.jpg", + "backdropPath": "/riRJGnbb18zVBEXpov8GJKnBczj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-10-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 195, + "popularity": 5.8093 + }, + { + "id": 204635, + "title": "Orb: On the Movements of the Earth", + "originalTitle": "チ。―地球の運動について―", + "overview": "After learning heretical teachings about the Earth and the Sun, a child prodigy searches for his master's hidden research while evading the Inquisition.", + "posterPath": "/crV1eBtpI5F4nlMwzrBrh4zZuFV.jpg", + "backdropPath": "/o5GDX8zmKLpOxRkBoAonoQL8gbg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-10-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.058, + "voteCount": 60, + "popularity": 5.8017 + }, + { + "id": 196285, + "title": "Farming Life in Another World", + "originalTitle": "異世界のんびり農家", + "overview": "After Hiraku dies of a serious illness, God brings him back to life, gives his health and youth back, and sends him to a fantasy world of his choice. In order to enjoy his second shot, God bestows upon him the almighty farming tool! Watch as Hiraku digs, chops, and ploughs in another world in this laidback farming fantasy!", + "posterPath": "/pT4OoVQE8zGJ0Z0GZpJotK5Vzsj.jpg", + "backdropPath": "/6XJ0XJbL14YkThOe1iU5TJKU5l3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.538, + "voteCount": 104, + "popularity": 5.7971 + }, + { + "id": 78204, + "title": "Sword Art Online Alternative: Gun Gale Online", + "originalTitle": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "overview": "A shy university student in Tokyo, Karen Kohiruimaki stands in stark contrast to her in-game avatar—in fact, she happens to stand above everyone else too, much to her dismay. Towering above all the people around her, Karen's insecurities over her height reach the point where she turns to the virtual world for an escape. Starting game after game in hopes of manifesting as a cute, short character, she finally obtains her ideal self in the world of Gun Gale Online. Overjoyed by her new persona, she pours her time into the game as LLENN, garnering her reputation as the legendary player killer. However, when one of LLENN's targets gets the best of her, she ends up meeting Pitohui, a skilled yet eccentric woman. Pitohui insists that LLENN participates in Squad Jam, a battle royale. Thrust into the heated competition, LLENN must fight with all her wit and will if she hopes to shoot her way to the top.", + "posterPath": "/1EBk96E3cVVOEVlx2z744oEuFQk.jpg", + "backdropPath": "/rJ3WMubG6K6I3j8xjatGgefBWsc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 283, + "popularity": 5.7873 + }, + { + "id": 80609, + "title": "Kiteretsu Daihyakka", + "originalTitle": "キテレツ大百科", + "overview": "The main character is a scientific genius boy named Kiteretsu, who has built a companion robot named Korosuke. He frequently travels in time with his friends and Korosuke in the time machine he built. Miyoko is a girl in his neighborhood who is basically his girlfriend. Tongari is his rival, who happen to share some similar traits of Honekawa Suneo. Buta Gorilla is a typical neighborhood bully, who also share similar traits of Gian except that he often antagonizes Korosuke (though they are in grade school).", + "posterPath": "/3UoNmOT7E7o7FcGmzTMmcw1WGGU.jpg", + "backdropPath": "/39bnzUkZTfekyz1HVXN4eHxiCaX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1988-03-27", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 12, + "popularity": 5.7855 + }, + { + "id": 20695, + "title": "Yu-Gi-Oh! 5D's", + "originalTitle": "遊☆戯☆王5D's", + "overview": "The future of dueling is revving up! And with it begins a new legend! Yu-Gi-Oh! 5D's!\n\nWelcome to New Domino City! Once the playground to legendary duelist Yugi Muto, this sprawling metropolis has since been transformed into a futuristic society where dueling has kicked into overdrive. With recent technological advancements made by KaibaCorp, dueling has undergone a metamorphosis that has revolutionized the makeup and pace of the game! It’s now a heart-pounding, adrenaline-filled and fuel injected competition where duelists ride supercharged hyper cycles called Duel Runners and battle it out in hi-octane contests called “Turbo Duels.” The winners and losers aren’t just separated by skill and strength… but by SPEED!\n\nHowever, for five special duelists, it's not just about winning or losing anymore - it's about survival, for they are the chosen \"Signers\" who have been marked by destiny to uncover the secrets of the five dragons!", + "posterPath": "/1fareX2gQVmpcxoPFHLAHu3ljld.jpg", + "backdropPath": "/skDqFjFqGtPIqcwLkqzqV4aSlCb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2008-04-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 185, + "popularity": 5.7764 + }, + { + "id": 38112, + "title": "The Qwaser of Stigmata", + "originalTitle": "聖痕のクェイサー", + "overview": "When Mafuyu Oribe and her adopted sister Tomo rescue a strange wounded man, they have no idea what they’re getting involved with or what the consequences will be. Alexander Nikolaevith Hell is an Iron Qwaser, one of many opposing factions of super-warriors.", + "posterPath": "/fKGI9CMHvSyqjrbzypoEX4mXgSy.jpg", + "backdropPath": "/mJFWew7KYwA9q3xQAj5gf7gnukA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2010-01-10", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.606, + "voteCount": 66, + "popularity": 5.7677 + }, + { + "id": 248947, + "title": "FAIRY TAIL 100 YEARS QUEST", + "originalTitle": "FAIRY TAIL 100年クエスト", + "overview": "The rowdiest guild in Fiore Kingdom is back! Natsu, Lucy, Gray, Erza, and the whole Fairy Tail guild tackle the legendary \"100 Years Quest,\" tougher than any S-Class quest. Their goal: find the first wizard guild ever, located in the far north of Guiltina. Facing new gods, mysterious towns, and ominous foes, they’ll have their work cut out for them. Will they succeed where no wizard has before?", + "posterPath": "/wj5i6YgZj7LltRE3yE6VTgfdbK0.jpg", + "backdropPath": "/fEo1HO7iuVi8BT9lFhm2XjDvAXr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.867, + "voteCount": 30, + "popularity": 5.7448 + }, + { + "id": 200777, + "title": "The Iceblade Sorcerer Shall Rule the World", + "originalTitle": "冰剣の魔術師が世界を統べる", + "overview": "The Arnold Academy of Magic is a school for the elite...and Ray White is just your ordinary guy. In fact, he doesn't seem particularly skilled with magic at all, and is a bit of a klutz. Which is why he has nothing to do with the rumor that one of the great magicians, the Iceblade Sorcerer, is a member of the incoming class...right?", + "posterPath": "/xBlJYF8ROyYppm6RbZ1Ga8nERWs.jpg", + "backdropPath": "/oL459mgvcnc3jL90K7zkfvXQu0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 55, + "popularity": 5.7392 + }, + { + "id": 284771, + "title": "Scooped Up by an S-Rank Adventurer!", + "originalTitle": "勇者パーティーを追放された白魔導師、Sランク冒険者に拾われる ~この白魔導師が規格外すぎる~", + "overview": "Lloyd is a white mage who was unexpectedly banished from the hero's party. As he was lost and uncertain, he happened to cross paths with an S-rank adventurer party in need of a white mage, so he joined them on their quest. Little did anyone know at the time that the hero's party would fall apart and Lloyd would rise to fame.", + "posterPath": "/6eHbGa0m8kSVWF8ImDJ7U53CNzY.jpg", + "backdropPath": "/oPiZmkOlew1IGJWJ5HBKmqekuvR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 17, + "popularity": 5.7346 + }, + { + "id": 46153, + "title": "Wagnaria!!", + "originalTitle": "WORKING!!", + "overview": "Set in a family restaurant in Hokkaido, the northern prefecture of Japan, 16-year-old high school student Sōta Takanashi works part-time along with his strange co-workers: Popura Taneshima, a high school girl who—despite being a year older than Sōta—is easily mistaken for a elementary/middle schooler, and Kyoko Shirafuji, the 28-year-old store manager who does not bother to do any work at all.", + "posterPath": "/zF48i9TIZoZCc2YUj9Jg6Widi0j.jpg", + "backdropPath": "/1IVzP2uOv1txYbHempW2VsTF5KW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-04-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 53, + "popularity": 5.7273 + }, + { + "id": 19253, + "title": "Mazinger Z", + "originalTitle": "マジンガーZ", + "overview": "Mazinger Z, known briefly as Tranzor Z in the United States, is a Japanese super robot manga series written and illustrated by Go Nagai. The first manga version was serialized in Shueisha's Weekly Shōnen Jump from October 1972 to August 1973, and it later continued in Kodansha TV Magazine from October 1973 to September 1974. It was adapted into an anime television series which aired on Fuji TV from December 1972 to September 1974. A second manga series was released alongside the TV show, this one drawn by Gosaku Ota, which started and ended almost at the same time of the TV show. Mazinger Z has spawned several sequels and spinoff series, among them UFO Robot Grendizer and Mazinkaiser. It was a very popular cartoon in Mexico during the 1980s, where it was dubbed into Spanish directly from the Japanese version, keeping the Japanese character names and broadcasting all 92 episodes, unlike the version aired in the U.S.", + "posterPath": "/woGUtAdRwjzWgobGvF3ebW1WsKY.jpg", + "backdropPath": "/fQArjxrRZaZHBffjs3FU4AQ8cxN.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1972-12-03", + "releaseYear": "1972", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 398, + "popularity": 5.7261 + }, + { + "id": 46261, + "title": "Fairy Tail", + "originalTitle": "FAIRY TAIL", + "overview": "Lucy is a 17-year-old girl, who wants to be a full-fledged mage. One day when visiting Harujion Town, she meets Natsu, a young man who gets sick easily by any type of transportation. But Natsu isn't just any ordinary kid, he's a member of one of the world's most infamous mage guilds: Fairy Tail.", + "posterPath": "/h50lj7xO65qafNYZCrfQ7ztkMBD.jpg", + "backdropPath": "/hVZMddU7kgbL1NSgzNVMmf8VvPz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-12", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.92, + "voteCount": 998, + "popularity": 5.7223 + }, + { + "id": 110070, + "title": "Horimiya", + "originalTitle": "ホリミヤ", + "overview": "A secret life is the one thing they have in common. At school, Hori is a prim and perfect social butterfly, but the truth is she's a brash homebody. Meanwhile, under a gloomy facade, Miyamura hides a gentle heart, along with piercings and tattoos. In a chance meeting, they both reveal a side they've never shown. Could this blossom into something new?", + "posterPath": "/yxk74s3QHx4K3rKpiPisLLqPJ5J.jpg", + "backdropPath": "/ldUbhEbyI28M6PiAkL0hZ2o8bOT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.527, + "voteCount": 1066, + "popularity": 5.7126 + }, + { + "id": 66875, + "title": "Non Non Biyori", + "originalTitle": "のんのんびより", + "overview": "Elementary school student Hotaru Ichijou has moved with her parents from Tokyo to the middle of the country. Now she must adapt to her new school, where there are a total of 5 students in the same class who range through elementary and middle school ages. Join their everyday adventures in the countryside.", + "posterPath": "/uEFfrd2xBV2XEGkbNtMrHgLXFM1.jpg", + "backdropPath": "/bP8MlXJwtDQC7sovNmt0AaLAZTb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 98, + "popularity": 5.707 + }, + { + "id": 30982, + "title": "Hikaru no Go", + "originalTitle": "ヒカルの碁", + "overview": "Hikaru Shindō is just a normal 12-year-old boy, but one day he's rummaging through his grandfather's things to see if he can find something to sell and pulls out an old go board. A ghostly apparition appears out of the board and tells Hikaru his sad story. His name is Fujiwara no Sai, a man who was a go instructor to the emperor of Japan a thousand years ago. However, because of the bad sportsmanship of his opponent during a game, Sai was accused of cheating and banished from the city. With no livelihood or any other reason to live, Sai committed suicide by drowning himself. Now, he haunts a go board, and wants to accomplish the perfect go game, called the \"Hand of God\" which he hopes to do through Hikaru. If Hikaru will be able to do it or not (or even wants to) will have to be seen.", + "posterPath": "/qrk2w3qchJmmNIxPNs9I6PYfcWn.jpg", + "backdropPath": "/ctcPX91Eu2IP0VdEnK9gxFIvvGc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-10-10", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 45, + "popularity": 5.6912 + }, + { + "id": 10926, + "title": "Sonic X", + "originalTitle": "ソニックX", + "overview": "After getting stranded on Earth, Sonic and his friends team up with 12-year-old Chris Thorndyke to collect all the Chaos Emeralds and defeat the evil Dr. Eggman.", + "posterPath": "/1EFqCQv0td8LMogXCpNEAW3uxgL.jpg", + "backdropPath": "/8Ep5ppQvqFvaMQrX3ENmM4jpNPI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2003-04-06", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 296, + "popularity": 5.6872 + }, + { + "id": 34791, + "title": "Claymore", + "originalTitle": "クレイモア", + "overview": "When a shapeshifting demon with a thirst for human flesh, known as \"youma,\" arrives in Raki's village, a lone woman with silver eyes walks into town with only a sword upon her back. She is a \"Claymore,\" a being manufactured as half-human and half-youma, for the express purpose of exterminating these monsters. After Raki's family is killed, the Claymore saves his life, but he is subsequently banished from his home. With nowhere else to go, Raki finds the Claymore, known as Clare, and decides to follow her on her journeys.\n\nAs the pair travel from town to town, defeating youma along the way, more about Clare's organization and her fellow warriors comes to light. With every town cleansed and every demon destroyed, they come closer to the youma on which Clare has sought vengeance ever since she chose to become a Claymore.", + "posterPath": "/rQt8X4kjBxah0laGwUVJISf1086.jpg", + "backdropPath": "/7SuLI2zxU38scCrjVBHNKJNqeqb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.143, + "voteCount": 346, + "popularity": 5.6762 + }, + { + "id": 98823, + "title": "Shadowverse", + "originalTitle": "シャドウバース", + "overview": "The hottest battle is about to begin! While attending Tensei Academy, Hiro Ryugasaki ends up acquiring a mysterious smartphone. It comes installed with the popular card game, Shadowverse! Meeting new rivals, facing major tournaments, forging bonds with friends... Shadowverse leads Hiro to all sorts of new experiences, all that serve to \"evolve\" him...", + "posterPath": "/5OaguSPlSrfE1JCSsymwDXsdbz6.jpg", + "backdropPath": "/qsL4S4Wfq3bhECdwRe5bhVYrTys.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 7, + "popularity": 5.6628 + }, + { + "id": 272118, + "title": "CITY THE ANIMATION", + "originalTitle": "CITY THE ANIMATION", + "overview": "This town, is not just a normal town. There's laughter, love and emotional moments. An unpredictable ordinary life presented by the residents! Exciting stuffs come one after another. Welcome to CITY.", + "posterPath": "/1B95cSzrFPCXQpCEXM4ajRVZKQW.jpg", + "backdropPath": "/1rxLKPOIHdJ9aFUwmzQ9gagZkUc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 15, + "popularity": 5.6278 + }, + { + "id": 205308, + "title": "Tomo-chan Is a Girl!", + "originalTitle": "トモちゃんは女の子!", + "overview": "Tomboy Tomo couldn't have picked a more awkward high school crush 'cause it’s on her childhood friend, Junichiro, but he only sees her as one of the guys. Despite her pretty looks and signals, nothing gets through to this meathead! Will Junichiro ever realize Tomo's into him and see her for the cutesy girl she actually is?!", + "posterPath": "/h9TN2BltJ9Q7FZ5BYGQcHfYfEGp.jpg", + "backdropPath": "/9pzMn0ZpzpZVgaTEwMnklp6MnOP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-01-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.795, + "voteCount": 105, + "popularity": 5.6263 + }, + { + "id": 63663, + "title": "Gate", + "originalTitle": "ゲート 自衛隊 彼の地にて、斯く戦えり", + "overview": "Off-duty Japan Self-Defense Forces (JSDF) officer and otaku, Youji Itami, is on his way to attend a doujin convention in Ginza, Tokyo when a mysterious portal in the shape of a large gate suddenly appears. From this gate, supernatural creatures and warriors clad in medieval armor emerge, charging through the city, killing and destroying everything in their path. With swift actions, Youji saves as many lives as he can while the rest of the JSDF direct their efforts towards stopping the invasion.\n\nThree months after the attack, Youji has been tasked with leading a special recon team, as part of a JSDF task force, that will be sent to the world beyond the gate—now being referred to as the \"Special Region.\" They must travel into this unknown world in order to learn more about what they are dealing with and attempt to befriend the locals in hopes of creating peaceful ties with the ruling empire.", + "posterPath": "/cwN3H0mQKfwYtLFgjL7LfWpcInI.jpg", + "backdropPath": "/xWnqhREQ3aVbGatgg9fwbY4BYh7.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-07-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 164, + "popularity": 5.6134 + }, + { + "id": 61422, + "title": "The Fruit of Grisaia", + "originalTitle": "グリザイアの果実", + "overview": "Mihama Academy—on the surface, a closed learning environment established to nurture students who find themselves at odds with the world around them; in actuality, an orchard-cum-prison built to preserve fruit that has fallen too far from its tree. Yet with the arrival of the institute's first male student, the nearly preposterously opaque Kazami Yuuji, the students at Mihama begin to fall out of step with their predetermined rhythms. Will Yuuji prove to be the element the girls around him needed to take hold of their lives once more, or will the weight of their pasts prove too steep a wall to overcome?", + "posterPath": "/bbyEffAlFj2X53yG37VQSgg3uL2.jpg", + "backdropPath": "/zP5T8fCor69u3PvBtO7HOqow6AZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.637, + "voteCount": 51, + "popularity": 5.611 + }, + { + "id": 281615, + "title": "The Water Magician", + "originalTitle": "水属性の魔法使い", + "overview": "Reincarnation had Ryo dreaming of peace, but instead he lands into a monster-infested wilderness. With water magic and eternal youth, he survives countless wicked concoctions for 20 years, becoming one of the most powerful magicians ever. Ryo’s fate shifts when he meets Abel, a genius knight, thrusting him into magical society’s spotlight. Thus, the Water Magician’s wild adventure begins!", + "posterPath": "/9GWz3D9aBgtn6pMiu3DTZL3h5ua.jpg", + "backdropPath": "/s7LgF8NmL0Qi9fWAeZvOBx9s2jy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 34, + "popularity": 5.6003 + }, + { + "id": 213331, + "title": "Berserk of Gluttony", + "originalTitle": "暴食のベルセルク", + "overview": "Fate Graphite was born into a world where magical skills shape your destiny. His skill is Gluttony, a seemingly useless curse of unending hunger that has left him shunned and looked down upon. Until one day, after he takes the life of a thief, his true power awakens: he can devour the skill of anyone he kills to feed his appetite. Will he learn to control this gruesome ability for the better?", + "posterPath": "/wQMcq5YUjMfoIEqLRzrNQVt4ROl.jpg", + "backdropPath": "/w6UrhLiXEMLwI4PFv2I2JEPhLRj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 72, + "popularity": 5.5976 + }, + { + "id": 271576, + "title": "Summer Pockets", + "originalTitle": "Summer Pockets", + "overview": "Hairi Takahara never expected summer to feel like a dream. Sent to Torishirojima to sort through his late grandmother's belongings, he's met with endless sea, quiet nostalgia, and mysterious girls, each chasing something just out of reach. As he settles into island life, lost memories begin to surface and he finds what he never knew he'd lost.", + "posterPath": "/9k1bD9S3djSemQsQO7csBxEwMar.jpg", + "backdropPath": "/yj0AlgpXjqFeORzpXCHF8g3aN1N.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 14, + "popularity": 5.5745 + }, + { + "id": 278378, + "title": "You and Idol Precure", + "originalTitle": "キミとアイドルプリキュア♪", + "overview": "Middle school student Uta Sakura loves to sing any chance she gets. But music becomes more than a hobby when she meets Purirun, a fairy whose hometown has plunged into darkness. The Chokkiri Gang took over her land and began stealing her people's sparkle. Determined to help, Uta is transformed into the legendary protector Cure Idol and vows to return their sparkle through song.", + "posterPath": "/rzFTIeMAhQK3mHHSnkrgo4DdjoP.jpg", + "backdropPath": "/gI8mSIkYLHDphDBBulkaSCMFvPN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-02-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 5, + "popularity": 5.544 + }, + { + "id": 29602, + "title": "Major", + "originalTitle": "メジャー", + "overview": "Honda Goro the son of a famous baseball player loves nothing more than baseball itself. His biggest dream is to show his father that he can become the best pitcher in the world despite all the hardships he had to endure he keeps on running towards his goal at full speed.", + "posterPath": "/nvVfxP9GiWMXct2ZJOXFF4l7dn.jpg", + "backdropPath": "/ks0KMwgv05PLZW95H8u1zji9BC5.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2004-11-13", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 19, + "popularity": 5.5053 + }, + { + "id": 84669, + "title": "The Quintessential Quintuplets", + "originalTitle": "五等分の花嫁", + "overview": "Fuutarou Uesugi is a poor, antisocial ace student who one day meets the rich transfer student Itsuki Nakano. They argue but when Uesugi realizes he is to be her tutor, he tries to get on better terms. While trying to do so he meets four other girls.", + "posterPath": "/mrahUSmFjae8UHtlOcZ58ytmAGu.jpg", + "backdropPath": "/uuqVT15I6P4ow7NS0stu7aM2X5w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2019-01-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 730, + "popularity": 5.4791 + }, + { + "id": 154526, + "title": "MF GHOST", + "originalTitle": "MFゴースト", + "overview": "Japan adopts self-driving electric automobiles and renders most gas engines obsolete by 202X. The fastest cars find new life in the MFG, a racing circuit held on Japanese motorways. Drivers from around the world race for a shot at the title. Kanata Rivington returns from Britain to Japan for the MFG—and to find his father. Can he win the title and find answers? Buckle up and push it to the limit!", + "posterPath": "/jqkDWnBDltFCjAdhxCqUWg9GXFB.jpg", + "backdropPath": "/qEqLerjgjX9BL1fsqRc4MoWzqIU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2023-10-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 31, + "popularity": 5.462 + }, + { + "id": 62741, + "title": "Kamisama Kiss", + "originalTitle": "神様はじめました", + "overview": "Nanami was just a normal high school girl down on her luck until a stranger’s lips marked her as the new Land God and turned her world upside down. Now, she’s figuring out the duties of a deity with the help of Tomoe, a reformed fox demon who reluctantly becomes her familiar in a contract sealed with a kiss. The new responsibilities—and boys—are a lot to handle, like the crow demon masquerading as a gorgeous pop idol and the adorable snake spirit who’s chosen the newly minted god to be his bride. As the headstrong Tomoe tries to whip her into shape, Nanami finds that love just might have cute, pointed fox ears. With romance in the air, will the human deity be able to prove herself worthy of her new title?", + "posterPath": "/5E7GL8KxpFemEFl3Lv8Fu4RuSwa.jpg", + "backdropPath": "/cttisz5q4LHwyRYlIj9S7oQa27v.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-02", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.643, + "voteCount": 984, + "popularity": 5.457 + }, + { + "id": 31718, + "title": "Darker than Black", + "originalTitle": "-黒の契約者-", + "overview": "Ten years ago, a mysterious spatial anomaly now known as \"Heaven's Gate\" appeared in South America, shortly followed by the opening of \"Hell's Gate\" in Tokyo altering the sky and wreaking havoc on the landscape. The real stars disappeared, replaced by false stars. During this time, people possessing various special abilities — called \"Contractors\" — emerged, each capable of different supernatural feats. Following the disastrous Heaven's War, the United States lost its dominant position as a superpower to a mysterious organization named the Syndicate. The story revolves around a Chinese contractor codenamed \"Hei\" as he undertakes various espionage and assassination missions in Tokyo.", + "posterPath": "/jt38E29eSAAlabamcs5pwgyY8ee.jpg", + "backdropPath": "/aigj0UYSAdi5HxE1SA4YuTtQeIl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2007-04-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 237, + "popularity": 5.4476 + }, + { + "id": 46252, + "title": "UFO Robot Grendizer", + "originalTitle": "UFOロボグレンダイザー", + "overview": "The story revolves around Duke Fleed who is a survivor of the Vega Star, raised by Dr. Umon as his adoptive son, and known as Daisuke Umon on Earth. Years after his arrival, he's faced with the threat of King Vega and his army, who want to conquer the Earth. With his friends Koji and Hikaru (and later his kid sister Maria Grace), Duke decides to fight back using his best weapon, the almighty Grendizer.", + "posterPath": "/u4ymZQgSjhJppwm38D8OFjY2mGb.jpg", + "backdropPath": "/snNdRdif3XRD91SAEZH0ppIi6t3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1975-10-05", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 74, + "popularity": 5.4453 + }, + { + "id": 284445, + "title": "Takopi's Original Sin", + "originalTitle": "タコピーの原罪", + "overview": "A Happy alien, Takopi, lands on Earth with one mission: to spread happiness! When he meets Shizuka, a lonely fourth grader, he vows to bring back her smile using his magical Happy Gadgets. But as he uncovers the pain in her life, Takopi learns that true happiness may require more than gadgets.", + "posterPath": "/xPXDVhVKt0XM34ihoUVMHtLYTw8.jpg", + "backdropPath": "/6omimfVty4JD3LXzI5LHEGhXjwn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-06-28", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.929, + "voteCount": 113, + "popularity": 5.4388 + }, + { + "id": 45501, + "title": "Love, Chunibyo & Other Delusions!", + "originalTitle": "中二病でも恋がしたい!", + "overview": "As one of the thousands of Japanese students afflicted with \"chunibyo,\" a state where they're so desperate to stand out that they've convinced themselves that they have secret knowledge and hidden powers, Yuta spent most of his middle school years living in a complete fantasy world. He's finally managing to overcome his delusions but his chunibyo have attracted the attentions of another sufferer, and she's decided that this makes him her soul mate.", + "posterPath": "/1IapEqydEiGO0gCgBPVexTFbUCS.jpg", + "backdropPath": "/3Fn1AaIKV78nX6lsaW7f7DyI1aO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-10-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.094, + "voteCount": 406, + "popularity": 5.4289 + }, + { + "id": 123876, + "title": "Komi Can't Communicate", + "originalTitle": "古見さんは、コミュ症です。", + "overview": "At a high school full of unique characters, Tadano helps his shy and unsociable classmate Komi reach her goal of making friends with 100 people.", + "posterPath": "/xGciZiSIEmkqgcv4ouWmkhmXmPH.jpg", + "backdropPath": "/2bHGk7j4OD21qeXRRDYrKVhxzRc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-10-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.324, + "voteCount": 543, + "popularity": 5.4251 + }, + { + "id": 238892, + "title": "I Parry Everything", + "originalTitle": "俺は全てを【パリイ】する〜逆勘違いの世界最強は冒険者になりたい〜", + "overview": "Noor's dead set on becoming an adventurer, even if the only skills he possesses are useless ones. Sure, he can [Parry] thousands of swords in the span of a single breath, but you need more than that if you want to be an adventurer! Right?", + "posterPath": "/nVmc8K5J7SGMlE6tA5lVzVzAzQ9.jpg", + "backdropPath": "/t324alfKvsj3OnLULib7jud9k8m.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 59, + "popularity": 5.4224 + }, + { + "id": 19836, + "title": "Magical Girl Lyrical Nanoha", + "originalTitle": "魔法少女リリカルなのは", + "overview": "Yuuno Scraia is a mage from a distant planet working to fix the problem he started when Jewel Seeds were accidentally spread around the world. In a failed attempt to seal a seed properly, he winds up on Earth in the form of a ferret. However, his battle with the seeds did not end upon reaching the Earth and he needs somebody else's help to seal the seeds for him. Takamachi Nanoha hears his telepathic cries for help and comes to his rescue. When she is given a pearl known as the Raging Heart she is able to transform into Magical Girl Lyrical Nanoha and wield a staff to fend off the evil that lies within the Seeds. In order to help Yuuno complete his mission, she needs to seal all 21 Jewel Seeds away, but Fate may be playing a hand in the matter to prevent Nanoha's goals.", + "posterPath": "/yRAqx0q58cvU9saJhvwavYF6XgV.jpg", + "backdropPath": "/4ndnfseHaE9kPC9xPp9wN7ghHHq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-02", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 19, + "popularity": 5.4197 + }, + { + "id": 274737, + "title": "I'm the Evil Lord of an Intergalactic Empire!", + "originalTitle": "俺は星間国家の悪徳領主!", + "overview": "After a life of honesty left him betrayed, Liam is reborn into a vast interstellar empire with one goal: be the galaxy’s worst evil lord. But no matter how hard he tries to be a tyrant, his “wicked” plans keep backfiring into peace, prosperity, and adoring fans. Galactic chaos, magic, and mecha await in this hilariously misconstructed tale of a villain who can’t help but to impress.", + "posterPath": "/lSXLjmpTKRqKfjzCz0YXdvm7o4z.jpg", + "backdropPath": "/ztUSVExmR0NlyIwTVdh9qKK0HEY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.063, + "voteCount": 16, + "popularity": 5.4103 + }, + { + "id": 42511, + "title": "The Melancholy of Haruhi Suzumiya", + "originalTitle": "涼宮ハルヒの憂鬱", + "overview": "I thought that when I entered high school, my days of believing in aliens, time travelers and ESPers were going to be over. That is, until she introduced herself. Claiming to be interested in only aliens, time travelers, and ESPers, Haruhi Suzumiya was the strangest girl I've met in a long time... Before I knew what's going on, I've been dragged into her weird club, and it looks like I'm not the only one who has been drafted into this \"SOS Brigade\" of hers, because there are three other students who don't seem to be so ordinary themselves.", + "posterPath": "/bimn3hOUjibgQD6RZn8rv1jiEL6.jpg", + "backdropPath": "/gDlx60iOCQjTLH53ybjAPOUyVIp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 285, + "popularity": 5.4065 + }, + { + "id": 195459, + "title": "Ragna Crimson", + "originalTitle": "ラグナクリムゾン", + "overview": "Ragna teams up with the enigmatic Crimson to stand against the dragons menacing the world. Although Crimson’s motivations are mysterious, his goal and Ragna’s perfectly align, and together they’ll vanquish the dragons once and for all.", + "posterPath": "/oGmNWwV3wgp1DZXTOLSAYZZgh3X.jpg", + "backdropPath": "/8Tv140K71PVsiU5z0vRNrgZpKAM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-10-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 44, + "popularity": 5.3916 + }, + { + "id": 1063, + "title": "Samurai Champloo", + "originalTitle": "サムライチャンプルー", + "overview": "Break-dancing but fierce warrior Mugen has to deal with the cold-blooded and conceited Jin, a samurai who believes he is above all. These sworn enemies are brought together by Fuu for a special task.", + "posterPath": "/lYpHeSm7BcUxAbBx1ucuEH7oGAe.jpg", + "backdropPath": "/zsRvBsAVcJYz8wjpZnitMJz7HYr.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2004-05-20", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.302, + "voteCount": 721, + "popularity": 5.3845 + }, + { + "id": 113137, + "title": "Girlfriend, Girlfriend", + "originalTitle": "カノジョも彼女", + "overview": "Naoya Mukai has loved Saki Saki since grade school, and when she finally accepts his feelings, he's at his happiest. But one day, a cute girl named Nagisa Minase confesses to him! Not wishing to choose only one over another, Naoya chooses to go out with both of them!! What will be of this love triangle that challenges morality itself?", + "posterPath": "/xuN0zBzHKyakCQFApBxRvpbKTh5.jpg", + "backdropPath": "/fq0DXgxDLgoilru3M7XVzKjGbOm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-07-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 72, + "popularity": 5.3348 + }, + { + "id": 56389, + "title": "Go! Anpanman", + "originalTitle": "それいけ!アンパンマン", + "overview": "Anpanman is a superhero who dedicates himself to the cause of justice, aiding the plight of unfortunate souls. Anpanman will go anywhere to help anyone in trouble, to drive away villains, and to save people from starvation by allowing them to eat his face. What? Let his face be eaten? No need to worry. His face is made with sweet anpan (bread filled with bean jam), hence the name Anpanman. Anpanman's very life depends on allowing others to eat, and once eaten, Anpanman can restore himself endlessly. He does not look handsome or strong, but he never fears any adventure and is continuously flying to aid the hungry people and the children with difficulties. Anpanman is the hero of the new age, glowing with friendship, endeavour and justice.", + "posterPath": "/dz2Hzfbgdh6lGV0gMbzYZRpKPX.jpg", + "backdropPath": "/c8db6dTAt0uLjYyQ4kyJrgZpmjQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1988-10-03", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 5, + "popularity": 5.3302 + }, + { + "id": 257790, + "title": "I'm Getting Married to a Girl I Hate in My Class", + "originalTitle": "クラスの大嫌いな女子と結婚することになった。", + "overview": "High school student Saito Hojo is set to inherit his grandfather’s major corporation. First, he must marry Akane Sakuramori, the girl he despises the most, and who hates him just as much. The two are determined to keep their unexpected marriage a secret from their classmates. But as they begin their newlywed life, the distance between them starts to close.", + "posterPath": "/k0Yb8KjspVjNlmvHNgqRRbhZ6LA.jpg", + "backdropPath": "/rn9aAeJQSXRK0FG14bFmQrktQtY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-01-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 18, + "popularity": 5.3259 + }, + { + "id": 912, + "title": "Ah! My Goddess", + "originalTitle": "ああっ女神さまっ", + "overview": "Keiichi Morisato is looking forward to university life. But in reality, he has no luck in anything, and he has trouble with clubs, love, etc. The truth is that he has an unlucky star above his head. One day, Keiichi is stuck watching the dorm while his sempai are away, and has a mountain of chores to do to boot. But Keiichi is a good-natured person, and is set about doing his duties. As he is about to finish his final chore, he makes a phone call to his sempai. But the words that came through the receiver are, 'Goddess Help Line.' Shortly afterwards, a beautiful goddess named Belldandy appears in front of him from the mirror of his room.", + "posterPath": "/2qX7itzAbTFVU4cpQuCkLO1VkeL.jpg", + "backdropPath": "/a75F7prY7RnACDonpUVjGTjoIKe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2005-01-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.243, + "voteCount": 37, + "popularity": 5.3229 + }, + { + "id": 26867, + "title": "Mushi-Shi", + "originalTitle": "蟲師", + "overview": "Ginko, a Mushi master, travels from place to place researching the Mushi and helping people who are suffering because of it.", + "posterPath": "/1EdA21TRBXJU5aBP4EHkOMF2tNx.jpg", + "backdropPath": "/8ysRHGV3URjOJT7u7NkZiFjvObk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-23", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 220, + "popularity": 5.3202 + }, + { + "id": 276253, + "title": "The Brilliant Healer's New Life in the Shadows", + "originalTitle": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "overview": "Banished as \"useless,\" Zenos, a self-taught healer from the slums, turns despair into defiance and opens a secret clinic in the city's shadows. With unlicensed, unmatched magic, he cures, comforts, and rights wrongs, quietly becoming a legend. But as his power grows, even the royal palace takes notice. Can he buck the odds and heal a world that cast him aside?", + "posterPath": "/gSgYTi6DxmmZTIHklS8h8alDluo.jpg", + "backdropPath": "/sIiQObaCB7CrS1uum8R1HTPSlKR.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.448, + "voteCount": 58, + "popularity": 5.3038 + }, + { + "id": 93653, + "title": "In/Spectre", + "originalTitle": "虚構推理", + "overview": "Kotoko Iwanaga became the god of wisdom to the supernatural beings and spends her days solving problems for them. However, the boy who she fell head over heels for, Kuro Sakuragawa, is someone that is feared by all supernatural creatures. The two of them face various mysterious incidents involving the supernatural in this love x romance x mystery series. Where will these fantastical incidents lead them and what will happen with Kotoko’s crush?", + "posterPath": "/g97dzLKEtx9yFsOZcpAlXgYQCMY.jpg", + "backdropPath": "/ujypWFhRcrb4KXjsp1edGomN2RI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-12", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 190, + "popularity": 5.2973 + }, + { + "id": 230059, + "title": "A Sign of Affection", + "originalTitle": "ゆびさきと恋々", + "overview": "Yuki Itose is just a typical student dealing with the pressures of college. She is struggling one day on the train when an upperclassman named Itsuomi Nagi helps her out. As he gradually opens a new world to her, Yuki develops feelings for Itsuomi. A pure love story begins to grow.", + "posterPath": "/ntgph4kCtxzDsVQIK2gJfrG3PyM.jpg", + "backdropPath": "/pQaqQ2cvG22JuFmQOYihMezx0EK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-01-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.932, + "voteCount": 88, + "popularity": 5.2951 + }, + { + "id": 217766, + "title": "Zom 100: Bucket List of the Dead", + "originalTitle": "ゾン100~ゾンビになるまでにしたい100のこと~", + "overview": "An overworked 24-year-old finally decides to live a little and create a bucket list, when a zombie outbreak hits the country.", + "posterPath": "/bTYMgERNC9rVdmxTSzKuex4GWbF.jpg", + "backdropPath": "/90b5d67rcpYfh5aVOwfd9jrbnfL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.538, + "voteCount": 172, + "popularity": 5.2916 + }, + { + "id": 34805, + "title": "Sekirei", + "originalTitle": "セキレイ", + "overview": "Struggling yet brilliant, 19-year-old Minato Sahashi has failed his college entrance exams for the second time, resulting in him being regarded as worthless by those around him. However, the course of his seemingly bleak future is altered dramatically when a beautiful, supernatural woman falls from the sky and into his life. That woman, Musubi, is a \"Sekirei,\" an extraterrestrial with extraordinary abilities. Recognizing the potential of the Ashikabi gene within Minato, Musubi kisses him, initiating a bond between the two of them. This drags him into the high-stakes world of the Sekirei, where he and his new partner must compete against others in a battle for survival called the \"Sekirei Plan.\" However, unbeknownst to the contestants, there is far more at risk that what the competition initially entailed. Manga series by Sakurako Gokurakuin.", + "posterPath": "/g5lGhwt2M3RHXPgfqgEHRvGM8F.jpg", + "backdropPath": "/uwgvSLHNaLgpAhRhJ4uYU0NXKWX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2008-07-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 88, + "popularity": 5.2796 + }, + { + "id": 21730, + "title": "Mobile Suit Gundam Wing", + "originalTitle": "新機動戦記ガンダムW", + "overview": "After Colony (A.C.) 195. Mankind has moved into space. Thousands of people live on giant orbiting space colonies called \"Sides.\" However, the Earth Government, which rules the colonies, is unjust and cruel. A group of revolutionaries builds five robotic weapons called Gundams and plans to send them to Earth to begin their fight for independence. Piloted by five young men, these Gundams carry the hopes and dreams of freedom of the colonists with them as they descend to Earth to begin Operation Meteor!", + "posterPath": "/ggHmrZpipHfdEqaGQbv4JrWv0f6.jpg", + "backdropPath": "/6q1eredSOpFhzjoStR8V29BxAZC.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "1995-04-07", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.871, + "voteCount": 97, + "popularity": 5.2782 + }, + { + "id": 67126, + "title": "Himouto! Umaru-chan", + "originalTitle": "干物妹! うまるちゃん", + "overview": "People are not always who they appear to be, as is the case with Umaru Doma, the perfect high school girl—that is, until she gets home! Once the front door closes, the real fun begins. When she dons her hamster hoodie, she transforms from a refined, over-achieving student into a lazy, junk food-eating otaku, leaving all the housework to her responsible older brother Taihei. Whether she's hanging out with her friends Nana Ebina and Kirie Motoba, or competing with her self-proclaimed \"rival\" Sylphinford Tachibana, Umaru knows how to kick back and have some fun!\n\nHimouto! Umaru-chan is a cute story that follows the daily adventures of Umaru and Taihei, as they take care of—and put up with—each other the best they can, as well as the unbreakable bonds between friends and siblings.", + "posterPath": "/5FQJOWJ0EyfICDKLWoKHAaDFnrU.jpg", + "backdropPath": "/ro0eBgs4IEbITrUqJEgINDrf3Xn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 677, + "popularity": 5.2753 + }, + { + "id": 137065, + "title": "Arknights", + "originalTitle": "明日方舟", + "overview": "In the wake of unknown Catastrophes in the heart of Terra, a mineral of unimaginable power has been discovered. With it, society's technology has made huge leaps and bounds, but the substance causes a deadly incurable disease, leading to a worldwide enslavement of the infected. As a rebellion is now on the rise, a pharmaceutical company races for a cure to save humanity.", + "posterPath": "/bOHwf20OzBVBrhX31MyUdxQR0d2.jpg", + "backdropPath": "/kJHEPw3itVz3RmVh4B2PwIVjn3b.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-29", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.548, + "voteCount": 31, + "popularity": 5.2616 + }, + { + "id": 254017, + "title": "YAIBA: Samurai Legend", + "originalTitle": "真・侍伝 YAIBA", + "overview": "Yaiba's journey to becoming a true samurai takes him from his home in the forest to a bustling city full of rivals, friends and ancient powers.", + "posterPath": "/cxD3FQP4hDU5hSABwdQCvGrrnz6.jpg", + "backdropPath": "/8anbNuU3e5PAvpfa8r26aZG7ubP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 16, + "popularity": 5.2601 + }, + { + "id": 43168, + "title": "NARUTO Spin-Off: Rock Lee & His Ninja Pals", + "originalTitle": "NARUTO SD ロック・リーの青春フルパワー忍伝", + "overview": "Welcome to the Hidden Leaf Village. The village where Uzumaki Naruto, star of the TV show \"Naruto\" makes his home. Every day, countless powerful ninjas carry out missions and train to hone their skills. Our main character is one of these powerful ninjas... but it's not Naruto! It's the ninja who can't use ninjutsu, Rock Lee!", + "posterPath": "/2OTMpFejspg3fYnRbiuVuLsZtaq.jpg", + "backdropPath": "/1836hXRxGLS53lImrl3IN002AbD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-03", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 49, + "popularity": 5.2531 + }, + { + "id": 98034, + "title": "Digimon Adventure:", + "originalTitle": "デジモンアドベンチャー:", + "overview": "It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there. Fifth grader Taichi Yagami's mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World!", + "posterPath": "/7Qspx2eFX0uBSQLLlAKnYrjZgse.jpg", + "backdropPath": "/xsEMAdrDprq3Ldre56Rm0zqbfCA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.53, + "voteCount": 617, + "popularity": 5.2408 + }, + { + "id": 80564, + "title": "Banana Fish", + "originalTitle": "BANANA FISH", + "overview": "A teenaged gang leader in New York City faces his abuser and rival gangs alongside a photojournalist from Japan as they investigate a deadly new drug.", + "posterPath": "/d2TW5Rtd0uCasHlQygsDfWCROl2.jpg", + "backdropPath": "/9I297AAuMFuKY0GgFmxKTo5tzrz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 9648, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Mystery", + "Crime" + ], + "releaseDate": "2018-07-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.572, + "voteCount": 894, + "popularity": 5.2397 + }, + { + "id": 250598, + "title": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "originalTitle": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "overview": "Normally, people choose to become adventurers in their teens. At 30 years old, Rick Gladiator bucks the trend by leaving his job as a guild clerk to become an adventurer. He begins as a novice F-rank with the fighting strength of an S-rank. After two years of brutal training with the continent’s strongest party, Orichalcum Fist, Rick will defeat anyone who underestimates him!", + "posterPath": "/dHxGWlygSNRb97wujSwtEts5snP.jpg", + "backdropPath": "/1Jz9C5BOIjKPEWhm3zWcpDHJ0TT.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.797, + "voteCount": 79, + "popularity": 5.231 + }, + { + "id": 23587, + "title": "Kindaichi Case Files", + "originalTitle": "金田一少年の事件簿", + "overview": "Kindaichi Hajime may look dumb, but he is one of the smartest you will ever see. He encounters mysteries after mysteries with his good friend, Miyuki, and he swears to solve them in the name of his grandfather, which was a great detective.", + "posterPath": "/eMCA5F3szGY3ckx2EDWWgwHZdh9.jpg", + "backdropPath": "/kBPEtwrFaoBiCzAVWAUGPDwp2Ld.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "1997-04-07", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 21, + "popularity": 5.2209 + }, + { + "id": 31679, + "title": "Last Exile", + "originalTitle": "LAST EXILE", + "overview": "A richly romantic action-adventure fantasy, set in a world where retro-futuristic vehicles permeate the skies. Against this lavish background are the lives of young and heroic van ship sky porters - Claus and Lavie - who are forced to take on the mission to deliver a mysterious girl, Alvis, to the battle ship Silvana. Before they know it, they become entangled in an aerial adventure between two countries gripped in an eternal war of magnificent air battleships.", + "posterPath": "/yHA9G9NCk5HHmQhgzy2EEbRaXvQ.jpg", + "backdropPath": "/okFn0UU3zsebsek5w4B4du7XHHq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-04-07", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 60, + "popularity": 5.2157 + }, + { + "id": 5660, + "title": "Mobile Suit Gundam ZZ", + "originalTitle": "機動戦士ガンダムZZ", + "overview": "The year is Universal Century 0088. Directly after the end of the Gryps War, Haman Karn and her army of Zeon remnants on the asteroid Axis begin their quest of reviving the lost empire of the Zabi's, and proclaim themselves as the Neo-Zeon. With the Earth Federation as hapless as ever, only the Anti-Earth Union Group (AEUG) is able oppose the plans of Neo-Zeon. In need of all the help it can get after being decimated in the previous war and losing many of its key members, the AEUG ship Argama enlists the aid of a young junk collector from the Side 1 colony of Shangri-La named Judau Ashta to pilot its newest mobile suit, the ZZ Gundam.", + "posterPath": "/u7GMUFdfljplCbySERldRUReP6P.jpg", + "backdropPath": "/7CxsP8ThaLpLeyF9rma73dJAzjC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 18, + 35, + 10765 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1986-03-01", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 30, + "popularity": 5.2079 + }, + { + "id": 207347, + "title": "Blue Box", + "originalTitle": "アオのハコ", + "overview": "Taiki Inomata loves badminton, but he has a long way to go before he can reach nationals. When Taiki sees upperclassman Chinatsu Kano practicing her heart out on the girls’ basketball team, he falls for her hard. After an unexpected turn of events brings the two closer together, sports might not be the first thing on their minds anymore!", + "posterPath": "/mVAWCCNBxPX3EUf9XhcFff4wW5V.jpg", + "backdropPath": "/8p39Ud6ZKMixBQ7R4frg2o3idzc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-10-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 64, + "popularity": 5.2059 + }, + { + "id": 105556, + "title": "DON'T TOY WITH ME, MISS NAGATORO", + "originalTitle": "イジらないで、長瀞さん", + "overview": "\"A girl in a lower grade just made me cry!\" One day, Senpai visits the library after school and becomes the target of a super sadistic junior! The name of the girl who teases, torments, and tantalizes Senpai is \"Nagatoro!\" She's annoying yet adorable. It's painful, but you still want to be by her side. This is a story about an extremely sadistic and temperamental girl and you'll feel something awaken inside of you.", + "posterPath": "/ogXmggjfiDHBOBwA3JyuEzCr814.jpg", + "backdropPath": "/8dNNxQMx4hOLwihNoAyDkreboiP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 790, + "popularity": 5.202 + }, + { + "id": 63087, + "title": "Snow White with the Red Hair", + "originalTitle": "赤髪の白雪姫", + "overview": "Shirayuki was a young girl born with unique apple-red hair. She meets a famous but foolish Prince Raji, who falls in love with her at first sight and orders her to become his concubine. With nowhere else to go, Shirayuki cuts her hair and escapes to a neighboring country. While traversing through the forests, she meets a young boy, Zen, who helps her after she boldly cures his wounds but then gets poisoned by an apple given to Shirayuki. Meanwhile, Prince Raji sends out henchmen to search for her. What will happen to Shirayuki? What is Zen's true character? A refreshing fantasy story between an optimistic heroine and a prince who constantly stays on her watch.", + "posterPath": "/jZtP1Zd7DNfVkPolpVhe7BCdDhL.jpg", + "backdropPath": "/m7pLRHLnuM37mLzycgcCz01TvAS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.65, + "voteCount": 100, + "popularity": 5.2002 + }, + { + "id": 81157, + "title": "Bakusou Kyoudai Let's & Go!!", + "originalTitle": "爆走兄弟レッツ&ゴー!!", + "overview": "Mini 4WD racing is an interesting hobby in where kids and adults compete using customized motorized miniature cars. Every year, competitions revolving around the hobby circulated around the world, with both kids and adults test out their spirit and passion in racing and companies developing new technologies and innovations for Mini 4WD. The story revolves around the competitive Seiba Brothers: Go and Retsu, who were once constantly arguing on each other to see who's the best racer. However one day after a community-sponsored race, they both met Dr. Tsuchiya, the head of the Tsuchiya Racing Factory who gave them two Mini 4WD Cars of the prototype Saber Series: Sonic Saber and Magnum Saber. With his advice on telling the twins to customize them for the upcoming race, they are now determined to win and race to victory and set off to their wildest race of their lives. While meeting both friends and enemies in the Mini 4WD Racing world.", + "posterPath": "/ptP84CfR8oigi3jnnIHEFke7fae.jpg", + "backdropPath": "/3LrekJhgodoOXEHKkhJazCnlsPW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1996-01-08", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 40, + "popularity": 5.1995 + }, + { + "id": 284780, + "title": "Unexpectedly Naughty Fukami", + "originalTitle": "やたらやらしい深見くん", + "overview": "\"Why is a perfect specimen of a man like me getting this turned on by a guy like that?!\" Thus begins the obstinate relationship of a playboy narcissist and a deceivingly frumpily-dressed, hot bodied otaku!", + "posterPath": "/ktoY0ykNWt5eqjKNyZA1PPGkpsx.jpg", + "backdropPath": "/qm8CB5uoQc0R4wRrZUSgUZIbfz0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 5, + "popularity": 5.1987 + }, + { + "id": 276349, + "title": "Yano-kun's Ordinary Days", + "originalTitle": "矢野くんの普通の日々", + "overview": "Kiyoko Yoshida is an overanxious class representative who can’t help but worry about Tsuyoshi Yano, who sits beside her. Tsuyoshi comes to school covered in bruises, and as Kiyoko tends to him day after day, the two draw closer. Where will Kiyoko’s feelings take her? Will Tsuyoshi’s life ever be normal?", + "posterPath": "/nnoIS0tUBDFOGdwWbxhEgJMgItR.jpg", + "backdropPath": "/clrYSyEcC4Qz1EXOHCIdnJCuBEY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-10-01", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 5, + "popularity": 5.1939 + }, + { + "id": 43017, + "title": "Great Teacher Onizuka", + "originalTitle": "グレート・ティーチャー・オニヅカ", + "overview": "A former gang member wants to be Japan's best teacher. When he's hired to supervise a class of hopeless cases, it's his chance to prove himself.", + "posterPath": "/cgcvNzLUQUjkur8zfhHwcadwzVz.jpg", + "backdropPath": "/sXdKhp54z4qgMsOMoIyTglWsTPn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1999-06-30", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 238, + "popularity": 5.175 + }, + { + "id": 228663, + "title": "Horimiya: The Missing Pieces", + "originalTitle": "ホリミヤ -piece-", + "overview": "A new anime project that adapts popular side stories that were left out of the main anime series\n\nAs the graduation ceremony at Katagiri High School comes to an end, Kyouko Hori, her boyfriend Izumi Miyamura, and their friends begin to look back on their time as students. The moments they shared together may be fleeting, but each one is a colorful piece of their precious memories.", + "posterPath": "/aEJVHbXaC94y6thJ3nA6lBBnHjs.jpg", + "backdropPath": "/fwWw4JeD8QiXdJ11oQLhfSr9yZl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2023-07-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 51, + "popularity": 5.1734 + }, + { + "id": 43125, + "title": "Guilty Crown", + "originalTitle": "ギルティクラウン", + "overview": "The story revolves around Shu Ouma, a high school boy who inadvertently obtains an ability called \"The Power of the Kings\" that enables him to draw out items called \"Voids\" from other people. He is then thrown into the conflict between a resistance group called Funeral Parlor which aims to restore Japan's independence from a quasi-governmental organization known as the GHQ. In the process, Shu has to deal with the burden his ability puts on his shoulders and the horrific mystery of his past.", + "posterPath": "/sMUzeL5G8NkNpNhgPZPpauS7CYD.jpg", + "backdropPath": "/pe6kJStppV5CuEPD1dUhAOyG6LZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-10-13", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.314, + "voteCount": 220, + "popularity": 5.173 + }, + { + "id": 75208, + "title": "Devilman Crybaby", + "originalTitle": "DEVILMAN crybaby", + "overview": "Akira Fudo learns from his best friend Ryo Asuka that demons will revive and reclaim the world from humans. With humans hopeless against this threat, Ryo suggests combining with a demon. With this, Akira becomes Devilman, a being with the power of demon but with a human heart.", + "posterPath": "/2pQ9xfgDa3L3QpoXfkNhISby2R4.jpg", + "backdropPath": "/9pgGVXJYXGtECErbNbgxQkj7994.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.776, + "voteCount": 680, + "popularity": 5.1527 + }, + { + "id": 889, + "title": "Eureka Seven", + "originalTitle": "交響詩篇エウレカセブン", + "overview": "Renton Thurston desires to leave his home behind and join the mercenary group known as Gekkostate, hoping to find some adventure. When a robot crashes through Renton's garage the meeting sparks the beginning of Renton's involvement with Gekkostate as he takes off alongside the young girl Eureka as the co-pilot of the Nirvash.", + "posterPath": "/5Hq9bEoRasVUmIOmtY8HJHqB6FH.jpg", + "backdropPath": "/nSsfjnb6DePlWuNiygxfkGUMWIL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "2005-04-17", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 65, + "popularity": 5.1492 + }, + { + "id": 79166, + "title": "Grand Blue Dreaming", + "originalTitle": "ぐらんぶる", + "overview": "A college student joins the local diving club after meeting some rowdy upperclassmen. New adventures in booze and the ocean await.", + "posterPath": "/pzX1uUpyjpX7tHcol1IAVvDRwIw.jpg", + "backdropPath": "/pJqAgDico7ZTMAfAXyzldYqj5ME.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-07-14", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 150, + "popularity": 5.1388 + }, + { + "id": 254174, + "title": "Kakushite! Makina-san!!", + "originalTitle": "かくして! マキナさん!!", + "overview": "Eita, a mechanical otaku, discovers that Makina, the school idol he's secretly liked, is actually a robot built for sexual purposes. Now, he must navigate her bold advances while helping her keep her identity hidden in this chaotic romantic comedy.", + "posterPath": "/viiiAmBVRtTYdOtP4nXlQ3b0xPf.jpg", + "backdropPath": "/1KsdGhjvY85ua79av0Pj0JPiNPp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 4.727, + "voteCount": 11, + "popularity": 5.1281 + }, + { + "id": 96402, + "title": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "originalTitle": "痛いのは嫌なので防御力に極振りしたいと思います。", + "overview": "Kaede Honjou is invited by her friend Risa Shiramine to play a virtual reality MMO game with her. While Kaede doesn't dislike games, what she really, truly dislikes is being in pain. She creates a character named Maple, and decides to put all her points in VIT to minimize pain. As a result, she moves slowly, can't use magic, and even a rabbit can get the best of her. But as it turns out, she acquires a skill known as \"Absolute Defense\" as a result of her pumping points into VIT, as well as a \"Counter Skill\" that works against special moves. Now, with her ability to nullify all damage, she goes on adventures.", + "posterPath": "/fdcMiknnRcmVgWb9wGS9TxE06cG.jpg", + "backdropPath": "/lkuMXv7M2NMmcErLmBgvLIslJ23.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2020-01-08", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.428, + "voteCount": 139, + "popularity": 5.1197 + }, + { + "id": 61461, + "title": "Yona of the Dawn", + "originalTitle": "暁のヨナ", + "overview": "The legend of the Four Dragons and the origin of the land has been passed down for generations in the land of Kouka. Currently, Hiryuu Palace has no one else next in line for the throne other than the fifteen year old princess, Yona, who had been raised with care.\n\nFinally, the night of her sixteenth birthday arrives. She expects it to be a wonderful day spent with her peace-loving father, Il, her servant and friend Hak, and her cousin Soo-won, who she had feelings for... However... That night, Yona goes to visit her father to tell him how she really feels, because he opposes to her getting married to Soo-won. However, when she gets to her room, she encounters a shocking truth. The destinies of Yona and the Four Dragons entwine in this period drama fantasy romance!", + "posterPath": "/aKLARBbIVlluToqSNYNQ0XOLhP.jpg", + "backdropPath": "/k3KlMWPt8lJ5Pe48xuykeldCnI3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.367, + "voteCount": 278, + "popularity": 5.1148 + }, + { + "id": 9320, + "title": "Future GPX Cyber Formula", + "originalTitle": "新世紀GPXサイバーフォーミュラ", + "overview": "Future GPX Cyber Formula is a 37-episode anime television series by Sunrise. It originally aired in Japan between March 15, 1991 and December 20, 1991.\n\nDirected by Mitsuo Fukuda, Cyber Formula is a show about Formula racing in the future, when race cars are equipped with computer support systems called 'Cyber Systems'.", + "posterPath": "/nZ0kspBYaV5BmamRmn3uQnjbM6n.jpg", + "backdropPath": "/j1yH0IANhq0GvVhRyQHn3IMqtx4.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1991-03-15", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 10, + "popularity": 5.1085 + }, + { + "id": 112616, + "title": "Night Head 2041", + "originalTitle": "NIGHT HEAD 2041", + "overview": "The story follows the Kirihara brothers who from a young age were incarcerated in a secure scientific facility due to their supernatural powers, having escaped after the barrier that was preventing them malfunctions. The story also follows the Kuroki brothers who are trying to chase the Kirihara brothers.", + "posterPath": "/mJ7t9wyD43H32E9Sv22mMrVmkLo.jpg", + "backdropPath": "/lLqIzrNq8Yi0RsB42SQWOeXBy50.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-15", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 61, + "popularity": 5.1067 + }, + { + "id": 212963, + "title": "Buddy Daddies", + "originalTitle": "Buddy Daddies", + "overview": "Two assassins who never miss their mark must juggle fatherhood with their demanding job when they suddenly find themselves raising a four-year-old girl.", + "posterPath": "/200lUtWr0k0iaDfhuX0fFz8tETR.jpg", + "backdropPath": "/ztR4oaMzDh4hzeMdgBn6iD3Uswi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.968, + "voteCount": 78, + "popularity": 5.1058 + }, + { + "id": 90677, + "title": "Fate/Grand Order Absolute Demonic Front: Babylonia", + "originalTitle": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "overview": "Following the success in the Camelot Singularity, Ritsuka Fujimaru and Mash Kyrielight are assigned to the last Singularity in the Grand Order initiative. In Ancient Babylonia, 2500 BCE, they embark on a mission to secure humanity's survival. Upon arrival, they learn that three gods have threatened Uruk, the Babylonian city ruled by King Gilgamesh. Ritsuka and Mash must work together to fend off the invasion of mysterious beasts in Uruk under Gilgamesh's orders while investigating the true nature of the three gods' actions against humanity; but unknown to Ritsuka, an ancient entity is slowly rising from its slumber.", + "posterPath": "/pVVANmkpHBwDPRwn4ymprF56Yjr.jpg", + "backdropPath": "/s6ukZz0Mk7RkQDfC4PM7uOnhLlC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.922, + "voteCount": 212, + "popularity": 5.1039 + }, + { + "id": 103409, + "title": "World's End Harem", + "originalTitle": "終末のハーレム", + "overview": "The Man-Killer Virus: a lethal disease that has eradicated 99.9% of the world's male population. Mizuhara Reito has been in cryogenic sleep for the past five years, leaving behind Tachibana Erisa, the girl of his dreams. When Reito awakens from the deep freeze, he emerges into a sex-crazed new world where he himself is the planet's most precious resource. Reito and four other male studs are given lives of luxury and one simple mission: repopulate the world by impregnating as many women as possible! All Reito wants, however, is to find his beloved Erisa who went missing three years ago. Can Reito resist temptation and find his one true love?", + "posterPath": "/h3OE30FudEPEhNMpbmcHt0ELD6s.jpg", + "backdropPath": "/k3IS8oN9WzN1JQqB5dyZMmtb90n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2022-01-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 249, + "popularity": 5.1031 + }, + { + "id": 49471, + "title": "Danganronpa: The Animation", + "originalTitle": "ダンガンロンパ 希望の学園と絶望の高校生 The Animation", + "overview": "Being just a normal student without a special talent, Makoto Naegi wins a lottery to attend the prestigious Hope's Peak Academy where only the top prodigies attend. However, instead of this being the beginning of a wonderful high school life, it's a ticket to despair, because the only way to graduate from Hope's Peak Academy is to kill one of your fellow students or be one of their victims.", + "posterPath": "/2XKziwAUwPiOonJfSJxnEzFPNSU.jpg", + "backdropPath": "/eAj5C3Sb4LCQReg3LMCnJ2wh45T.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2013-07-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.703, + "voteCount": 276, + "popularity": 5.1001 + }, + { + "id": 31736, + "title": "Eyeshield 21", + "originalTitle": "アイシールド21", + "overview": "In Tokyo, a weak, unassertive boy named Sena Kobayakawa enters the high school of his choice, Deimon Private Senior High School. Sena's only remarkable physical abilities are his running speed and agility, which are noted by the school's American football team captain Yoichi Hiruma. Hiruma forces Sena to join the Deimon Devil Bats football team as its running back. To protect his identity from other teams who want to recruit him, Sena is forced to publicly assume the role of the team secretary and enter the field under the pseudonym of \"Eyeshield 21\" wearing a helmet with an eyeshield to hide his features.", + "posterPath": "/yp29cySITMuZF3Exw8gnRomupz8.jpg", + "backdropPath": "/fCpjDFze4ueeFEZkedQbePNFBTC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2005-04-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 177, + "popularity": 5.0931 + }, + { + "id": 96444, + "title": "Interspecies Reviewers", + "originalTitle": "異種族レビュアーズ", + "overview": "In a world bursting at the seams with moe monsters and humanoids of the horned sort, which brave heroes will take it upon themselves to review the beastly babes of the red-light district? Can only one be crowned the ultimate title of best girl? Behold the most tantalizing of trials.", + "posterPath": "/xJZwaZAXoon6wxkgXiWQNEeyW4C.jpg", + "backdropPath": "/1hypiFc1uWGhx2TsU2D5fZ4Ev7Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.923, + "voteCount": 609, + "popularity": 5.093 + }, + { + "id": 123525, + "title": "The Faraway Paladin", + "originalTitle": "最果てのパラディン", + "overview": "In a city of the dead, long since ruined and far from human civilization, lives a single human child. His name is Will, and he's being raised by three undead: the hearty skeletal warrior, Blood; the graceful mummified priestess, Mary; and the crotchety spectral sorcerer, Gus. The three pour love into the boy, and teach him all they know. But one day, Will starts to wonder: \"Who am I?\" Will must unravel the mysteries of this faraway dead man's land, and unearth the secret pasts of the undead. He must learn the love and mercy of the good gods, and the bigotry and madness of the bad. And when he knows it all, the boy will take his first step on the path to becoming a Paladin.", + "posterPath": "/rzrtmcYoz1A3LtcvZXSI0mTtXzJ.jpg", + "backdropPath": "/hABdMmk7ujczjxrRkCPCgWDt4ES.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 70, + "popularity": 5.0902 + }, + { + "id": 208891, + "title": "Tengoku Daimakyo", + "originalTitle": "天国大魔境", + "overview": "In the year 2024, the world has collapsed. Grotesque monsters lurk amongst the ruins of Japan, while remaining people scrape together what they can to survive. Kiruko, an odd-job girl in Nakano, accepts a mysterious woman's dying wish to take a boy named Maru to a place called Heaven. Maru is convinced that there will be a boy there who looks exactly like him.", + "posterPath": "/74EYbgajUt8X2kxpu62dMR7q8jH.jpg", + "backdropPath": "/ixhUiD7KEjGGczSGX3kGOiYkNV4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.874, + "voteCount": 238, + "popularity": 5.0818 + }, + { + "id": 61339, + "title": "Sailor Moon Crystal", + "originalTitle": "美少女戦士セーラームーンクリスタル", + "overview": "Usagi Tsukino is chosen to be a guardian of justice and is sent on a quest to locate a Silver Crystal before the Dark Kingdom invades the Earth.", + "posterPath": "/mVXlsNJw4fxD2UWNzaUh2TFfI5c.jpg", + "backdropPath": "/hHv5UV9zB8bTjhGQgbZBF8IzslW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 653, + "popularity": 5.0784 + }, + { + "id": 43018, + "title": "Maison Ikkoku", + "originalTitle": "めぞん一刻", + "overview": "Godai is a ronin (someone who has failed university entrance exams) living in a run down apartment house called Maison Ikkoku. Among the other residents are the nosy Ichinose, the sexy Akemi Roppongi, and the mysterious Yotsuya. The others are given to having wild parties which makes it difficult for Godai to study. Into this mayhem comes the recently widowed Kyoko as the new live-in manager. Godai falls for her, but doesn't have the nerve to tell her. As time passes, their relationship slowly develops amid life at Maison Ikkoku, despite all sorts of romantic hurdles.", + "posterPath": "/6jN5iROb8bwm8RSjeKw4OXh93Xo.jpg", + "backdropPath": "/jZWjMz1ltf32tV42T41s1LtyHvC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10749 + ], + "genres": [ + "Animation", + "Comedy", + "Romance" + ], + "releaseDate": "1986-03-26", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 31, + "popularity": 5.0773 + }, + { + "id": 209707, + "title": "The Café Terrace and Its Goddesses", + "originalTitle": "女神のカフェテラス", + "overview": "After inheriting his late grandmother’s failing café, Hayato sees it as a bother and plans to sell it for a quick buck. Until he discovers five beautiful girls staying there! When they beg him to keep the café open, Hayato reluctantly gives in. Can he manage the seaside shop while learning to live with these unruly women?", + "posterPath": "/oWN39kWHYfclI2ljtkpg905fV4s.jpg", + "backdropPath": "/2EHQwcx2tfoherw54h0lhx2K7b.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.051, + "voteCount": 49, + "popularity": 5.0702 + }, + { + "id": 60846, + "title": "Log Horizon", + "originalTitle": "ログ・ホライズン", + "overview": "One day, while playing the online game Elder Tales, 30,000 players suddenly find themselves trapped in another world. There, eight-year veteran gamer Shiroe also gets left behind. The trapped players are still alive, but they remain in combat with the monsters. The players don't understand what has happened to them, and they flee to Akiba, the largest city in Tokyo, where they are thrown into chaos. Once proud of his loner lifestyle, Shiroe forms a guild called Log Horizon with his old friend Naotsugu, female assassin Akatsuki and others.", + "posterPath": "/62vfauCjvUmcaev0yfCnASa6yhm.jpg", + "backdropPath": "/f6WzZQVoCSn7W1kmr1UhSToRi2y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2013-10-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 183, + "popularity": 5.0627 + }, + { + "id": 60667, + "title": "Gundam Build Fighters", + "originalTitle": "ガンダムビルドファイターズ", + "overview": "Sei Iori is a Gunpla builder whose family runs a hobby shop in a small town. He aspires to be a Gunpla Battle champion like his father, but despite his exceptional building skills, he lacks the combat abilities to compete with other contestants. Then one day, he meets a mysterious boy named Reiji, who helps him improve his confidence in participating in Gunpla Battles. Together, Sei and Reiji battle their way to the 7th Gunpla Battle World Tournament.", + "posterPath": "/k8EBZ63k2fOfQNRJWpyqFxcQTZI.jpg", + "backdropPath": "/9TCkLTsVeMLVy9vSpe6qHKLwIBK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.326, + "voteCount": 23, + "popularity": 5.0585 + }, + { + "id": 104711, + "title": "EDENS ZERO", + "originalTitle": "EDENS ZERO", + "overview": "Aboard the Edens Zero, a lonely boy with the ability to control gravity embarks on an adventure to meet the fabled space goddess known as Mother.", + "posterPath": "/nfkn7IVG5aY2fyjHBIF3A98rMcl.jpg", + "backdropPath": "/lMLofCXt4skmlHHvngEKDd6hqIx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 213, + "popularity": 5.0584 + }, + { + "id": 21732, + "title": "Mobile Suit Gundam 00", + "originalTitle": "機動戦士ガンダム00", + "overview": "The year is 2307 A.D. Although fossil fuels have been depleted, humanity has obtained a new source of energy to replace them, in the form of a large-scale solar power generation system based on three huge orbital elevators. However, the benefits of this system are available only to a handful of major powers and their allies. In this world of never-ending conflict, a private armed organization appears, dedicated to the elimination of war through armed force. Its name is Celestial Being, and it is in possession of \"Gundam\" mobile suits.", + "posterPath": "/1uEgsZ47dtBCoKLlL9edQ0QMrRF.jpg", + "backdropPath": "/vxSDDV6VxTHkrABsNa3dqhExAIk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2007-10-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 51, + "popularity": 5.0349 + }, + { + "id": 65929, + "title": "Aikatsu Stars!", + "originalTitle": "アイカツスターズ!", + "overview": "Yume Nijino aims to become a top idol, and she enrolls in the Yotsuboshi Gakuen (Four Stars Academy). This academy has a special group called the S4, who are the top four active idols in the school. Yume and the other first-year students aim to become a part of the S4.", + "posterPath": "/fiWqW5wYF702dpQWwSeRwKOyXqZ.jpg", + "backdropPath": "/f7nWK7iPKLJzQXt8D7C1w9fgUs6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10751, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Family", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.321, + "voteCount": 14, + "popularity": 5.0316 + }, + { + "id": 117024, + "title": "Sacrificial Princess and the King of Beasts", + "originalTitle": "贄姫と獣の王", + "overview": "One hundred years ago, a grave tradition was born in a land where demons live among people: a human must be sacrificed to the King of Beasts. But when Sariphi, the 99th sacrifice, is offered to the King, she isn’t afraid at all! Intrigued by her calm and cute nature, the King decides to spare her life with plans to make her his bride.", + "posterPath": "/moG9KSZ52RF5wW2o6fp7aivSMAB.jpg", + "backdropPath": "/ztqUSvknWkESKsRbjeunp3MPQUz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-04-20", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 28, + "popularity": 5.0314 + }, + { + "id": 117992, + "title": "The Duke of Death and His Maid", + "originalTitle": "死神坊ちゃんと黒メイド", + "overview": "Due to a childhood curse, anything that the Duke touches will die - which makes his flirty maid’s behavior all the more shocking! Can the Duke and his companions break the curse, or is he doomed to a life where love is forever out of his reach?", + "posterPath": "/cHRE2RI6KsyrBTRSAJwddfBJWao.jpg", + "backdropPath": "/jehOoaZuAfbdEo7QmvkMKo1LjkG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-07-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.82, + "voteCount": 111, + "popularity": 5.0283 + }, + { + "id": 80007, + "title": "Gag Manga Biyori", + "originalTitle": "増田こうすけ劇場 ギャグマンガ日和", + "overview": "Known for its hyperactive, random, and nonsensical style that revolves around various plots and characters throughout the series. It makes absolutely no sense.", + "posterPath": "/4810OCUSjFWJAxA38yK9LKYumI9.jpg", + "backdropPath": "/uXjWCpLp17umPyTdZgeTpYViyCr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-02-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 7, + "popularity": 5.0225 + }, + { + "id": 117933, + "title": "Summer Time Rendering", + "originalTitle": "サマータイムレンダ", + "overview": "Shinpei Ajiro travels home to attend the funeral of a childhood friend, and finds the remote island plagued by a sinister, supernatural force.", + "posterPath": "/m9e7chRW8Q8Go1Dv00RCUHbMoNe.jpg", + "backdropPath": "/p2eZlGwd8OjkWpwD2hSoBiIlHBZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2022-04-15", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.106, + "voteCount": 160, + "popularity": 5.0176 + }, + { + "id": 19239, + "title": "Future Boy Conan", + "originalTitle": "未来少年コナン", + "overview": "After the great disaster of 2008, a war that destroyed the planet, the world is now largely ocean with the continents having sunk. Conan lives on a remote island with his grandpa and nature, never having seen another human being. But one day a mysterious girl, Lana, washes up on his beach. The two become quick friends, but she’s soon kidnapped and taken to Industria, a technological remainder from the world before. Conan leaves his island in pursuit, braving new lands and many hardships with new friends and enemies just beyond the horizon.", + "posterPath": "/tmlhwdTBA264iQF2Us5vWdKz1fE.jpg", + "backdropPath": "/rcFkixO3vY2oyBM7NQsL3SPcXas.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "1978-04-04", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 8.371, + "voteCount": 202, + "popularity": 5.015 + }, + { + "id": 99778, + "title": "The God of High School", + "originalTitle": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "overview": "When an island half-disappears from the face of the earth, a mysterious organization sends out invitations for a tournament to every skilled fighter in the world. \"If you win you can have ANYTHING you want,\" they claim. They're recruiting only the best to fight the best and claim the title of The God of High School. Jin Mori, a Taekwondo specialist and a high school student, soon learns that there is something much greater beneath the stage of the tournament.", + "posterPath": "/lfa79lR34s6eyNkKjqC76uQEihh.jpg", + "backdropPath": "/gexkIOkGW4PaYTOctUTlG59MZ0B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 726, + "popularity": 5.0148 + }, + { + "id": 22634, + "title": "Shakugan no Shana", + "originalTitle": "灼眼のシャナ", + "overview": "Murdered by a demonic being, 15-year-old Yuji Sakai has his life force replaced by a flame that dims with each day. When the flame dies, no one will remember he was ever alive. This is how he meets Shana: a warrior with a burning sword, and the will of a god as her guide. The two form a bond as Yuji becomes Shana’s accomplice in her battles to keep the balance between the ordinary world and hers.", + "posterPath": "/sesXxmmb2TZ9uq6ETIkOQkxK1wV.jpg", + "backdropPath": "/5bOYtdiBKBnrbfPTwZaAEJOfDmW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2005-10-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 102, + "popularity": 5.0141 + }, + { + "id": 56355, + "title": "Hayate the Combat Butler", + "originalTitle": "ハヤテのごとく!", + "overview": "16-year-old Hayate is really down on his luck. Because his unemployed parents are good-for-nothings who waste what money they have on gambling, Hayate had to start working at a young age to help out his family. Although such experience has made him inhumanly fast and tough and skilled at things boys aren't normally skilled at, it has also left him in an awkward position, as his parents have racked up such a huge gambling debt that they have sold Hayate to the yakuza for the value of his organs. In a desperate attempt to avoid that fate, Hayate decides to become a \"bad guy\" and kidnap someone to be held for ransom, but his efforts to do so are mistaken as a confession of love by the girl he targets. When he helps save the (as it turns out) ultra-wealthy 13-year-old Nagi from real kidnappers, she takes him in and gives him a job as her new personal butler (and love interest) until he can pay off his debt. But Hayate is more attracted to Nagi's beautiful teenage maid Maria, and head butler Klaus is initially disapproving of a boy with such a poor look. And then there's Nagi's pet Tama, who is also a force to be reckoned with.", + "posterPath": "/kXNV13f4MiJZJ1oQqwsjetqbn2x.jpg", + "backdropPath": "/iJ5G4z3729y05kwt2Js0d98AxFL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-04-01", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.44, + "voteCount": 25, + "popularity": 5.0026 + }, + { + "id": 241535, + "title": "Makeine: Too Many Losing Heroines!", + "originalTitle": "負けヒロインが多すぎる!", + "overview": "Meet the girls on the losing side of romance! First is Anna Yanami, the girl-next-door type who can’t say no to delicious food. Then there’s Lemon Yakishio, a beautiful and spirited athlete. Last but not least is Chika Komari, the cute yet shy heroine with gentle charm. Together, they navigate awkward setbacks hoping to finally find love!", + "posterPath": "/nLBBhmzN6tPhxMy9aFzDqMbAc4V.jpg", + "backdropPath": "/7mjnk0QfutRJgHKpz9yyyqI62wo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-07-14", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 57, + "popularity": 4.9965 + }, + { + "id": 205366, + "title": "Why Raeliana Ended Up at the Duke's Mansion", + "originalTitle": "彼女が公爵邸に行った理由", + "overview": "Living inside a fairy tale may sound like a dream, but for this heroine, it’s more of a nightmare. After her mysterious death, Rinko is reborn as Raeliana—a loved and wealthy character in a novel. But she knows the ending: her murder at the hands of her fiancé. So, she hatches a plan to stay alive, one that involves a devilish duke and a phony engagement. Can she rewrite her story?", + "posterPath": "/4yY40FOXCpY0I2AQLkwPSSkzE5z.jpg", + "backdropPath": "/hWk3qCboi8nJE9X34WCXDxb2b8R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.415, + "voteCount": 53, + "popularity": 4.9961 + }, + { + "id": 92892, + "title": "Ahiru no Sora", + "originalTitle": "あひるの空", + "overview": "Sora joins the high school basketball club, but his unmotivated teammates don't care about the game. To get anywhere, he has to change their minds.", + "posterPath": "/buUgxLguqSOuc4phBsrrlc4HrlG.jpg", + "backdropPath": "/qx2d9ePiF6tXn7YBjFA4NpOXBxf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2019-10-01", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.434, + "voteCount": 183, + "popularity": 4.9921 + }, + { + "id": 45997, + "title": "The Devil Is a Part-Timer!", + "originalTitle": "はたらく魔王さま!", + "overview": "Foiled by a hero when he’s inches away from conquering the world, the devil finds himself in modern-day Tokyo. With no real-world skills to speak of, the devil is forced to make ends meet flipping burgers at a fast food joint! To stall any further plans of world domination, the hero tracks the devil’s trail and takes on the lowly tasks of a telemarketer.", + "posterPath": "/55jYHFT8iJuASF8Mzg0V8Dh3N3M.jpg", + "backdropPath": "/lQoR4D4TJRx4Rm87Jr0e8eQD8RB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-04-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 276, + "popularity": 4.9833 + }, + { + "id": 66053, + "title": "Berserk", + "originalTitle": "ベルセルク", + "overview": "Spurred by the flame raging in his heart, the Black Swordsman Guts continues his seemingly endless quest for revenge. Standing in his path are heinous outlaws, delusional evil spirits, and a devout child of god. Even as it chips away at his life, Guts continues to fight his enemies, who wield repulsive and inhumane power, with nary but his body and sword—his strength as a human.", + "posterPath": "/kN0Nca1Deq0iK1AK5RtAiohWhZ9.jpg", + "backdropPath": "/fjCymH4xdWonDJEXBqLRLKsmKCs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-01", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 272, + "popularity": 4.9798 + }, + { + "id": 71834, + "title": "Manyu Scroll", + "originalTitle": "魔乳秘剣帖", + "overview": "It is currently the Taiheimeji era, during the rule of the Tokugawa shogunate. In this era, breasts mean everything. If you have breasts, you are guaranteed wealth and popularity, but if you lack them, you are rarely considered human. Inside the shogunate, there is a group of warriors that support the government—the Manyuu Clan, which helps raise the future big breasts. Written on a secret scroll possessed by the clan, there are said to be various techniques on how to grow big and beautiful breasts. Chifusa is the heir of the clan. However, she takes the secret scroll and runs away with it, hoping to fight against the cruel world that the Manyuu Clan has created…", + "posterPath": "/4L6CqXL1NZwX9ZZ1drYzl0qyShG.jpg", + "backdropPath": "/pVHbKeG3n0fruq3qoTJbvRFnUUF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-07-11", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.005, + "voteCount": 184, + "popularity": 4.9592 + }, + { + "id": 44815, + "title": "Ikkyū-san", + "originalTitle": "一休さん", + "overview": "The mischievous adventures of a young Ikkyū during his stay at Ankoku Temple. He relies on his intelligence and wit to solve all types of problems, from distraught farmers to greedy merchants.", + "posterPath": "/9XkTpvSoZDZvKMf59rr940pujQD.jpg", + "backdropPath": "/7Sn9xgoyjqsWOgSDAzdpzqiqTAt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1975-10-15", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 21, + "popularity": 4.954 + }, + { + "id": 91768, + "title": "Ascendance of a Bookworm", + "originalTitle": "本好きの下剋上 司書になるためには手段を選んでいられません", + "overview": "Avid bookworm and college student Motosu Urano ends up dying in an unforeseen accident. This came right after the news that she would finally be able to work as a librarian as she had always dreamed of. When she regained consciousness, she was reborn as Main, the daughter of a poor soldier. She was in the town of Ehrenfest, which had a harsh class system. But as long as she had books, she didn't really need anything else. However, books were scarce and belonged only to the nobles. But that doesn't stop her, so she makes a decision... \"If there aren't any books, I'll just create some.\"", + "posterPath": "/aVGueAM88cc4sX6PeMvuAPObDc4.jpg", + "backdropPath": "/Aj4MQnt6QtWlojE9FcAX9jZAvLL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2019-10-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 123, + "popularity": 4.9473 + }, + { + "id": 62327, + "title": "Blood Blockade Battlefront", + "originalTitle": "血界戦線", + "overview": "One day, New York City as we know it vanished overnight into a mysterious fog. Now known as Hellsalem's Lot, it has become a place where another world beyond imagining is connected to our reality. The balance within this new world is protected by a secret society known as Libra. Leo, a journalist and photographer who arrives in the city, is unexpectedly recruited to join their ranks.", + "posterPath": "/53yzJpVLeCQ8n93bvZ95fvBlA3L.jpg", + "backdropPath": "/m8b52XWf1jO11Aeaz5vPpAgeqZp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 133, + "popularity": 4.9461 + }, + { + "id": 208493, + "title": "I Got a Cheat Skill in Another World and Became Unrivaled in the Real World, Too", + "originalTitle": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "overview": "A door to another world stretches out before a boy who's been brutally bullied all his life. This alternate reality grants him access to all sorts of things, like cheat skills and a portal that lets him travel between his old and new worlds! Can this class loser turn his life around back home...?", + "posterPath": "/dXrUejdxJFgk6FGoB8V3VQhYsjJ.jpg", + "backdropPath": "/nxJSLabJHzAeRzweeWRl1EE40NJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.212, + "voteCount": 273, + "popularity": 4.9454 + }, + { + "id": 156563, + "title": "The Reincarnation of the Strongest Exorcist in Another World", + "originalTitle": "最強陰陽師の異世界転生記", + "overview": "Betrayed and on the brink of death, genius exorcist Haruyoshi Kuga still has an ace up his sleeve—a reincarnation spell. With a successful incantation taking him to a new world reborn as Seika Lamprogue into a distinguished wizard family, his only wish is to find happiness. But as Seika’s onmyō art exceeds this world’s magic, will he be able to live an easy, happy-go-lucky life?", + "posterPath": "/ppnnpGWK9mUD8EHjKTRzQOD7uey.jpg", + "backdropPath": "/4UPmVUWFraqBsmKC2bpunGo76Z2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.117, + "voteCount": 64, + "popularity": 4.944 + }, + { + "id": 37858, + "title": "Fate/stay night", + "originalTitle": "Fate/stay night", + "overview": "Shirou Emiya lost his parents in a fire when he was young and was later adopted by the sorcerer Kiritsugu Emiya. Shirou is drawn into the Holy Grail War summons a female \"Servant\" known as Saber to protect him and obtain the Holy Grail.", + "posterPath": "/x7nYPOveHhINREhTtwBHot9ersB.jpg", + "backdropPath": "/b2mskN6F9kUolFc8mTBiEJwfXLC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2006-01-07", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.324, + "voteCount": 225, + "popularity": 4.9404 + }, + { + "id": 71018, + "title": "Seven Mortal Sins", + "originalTitle": "sin 七つの大罪", + "overview": "The prideful archangel Lucifer disobeys God and is cast into the lowest level of hell as a fallen angel. On her way to hell, Lucifer happens to meet a high school girl on Earth named Maria, who helps her. In hell, Lucifer meets Leviathan, and Leviathan explains to Lucifer about The Seven Deadly Sins, the seven demon king rulers of hell. After The Seven Deadly Sins seal Lucifer's powers, Lucifer goes on a journey with Maria and Leviathan to defeat them.", + "posterPath": "/tvJvByy99ul4hytAfNEboAFaFEY.jpg", + "backdropPath": "/J0N4IsYgtnKCVbzYQlnhnmV8F5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-15", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 47, + "popularity": 4.9299 + }, + { + "id": 62273, + "title": "Food Wars! Shokugeki no Soma", + "originalTitle": "食戟のソーマ", + "overview": "Young chef Soma enters the prestigious Totsuki Culinary Academy, where he must emerge victorious in over-the-top cooking battles or face expulsion.", + "posterPath": "/eAQHqcJXP0FBzXvQkIV5g5ZueZb.jpg", + "backdropPath": "/q40F3AWf1FLeXzgG2rV4E83Fc0D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.448, + "voteCount": 784, + "popularity": 4.9262 + }, + { + "id": 65648, + "title": "Maid Sama!", + "originalTitle": "会長はメイド様!", + "overview": "Misaki Ayuzawa is the first female student council president at a once all-boys school turned co-ed. She rules the school with strict discipline demeanor. But she has a secret, she works at a maid cafe due to her families circumstances. One day the popular A-student and notorious heart breaker Takumi Usui finds out her secret and makes a deal with her to keep it hush from the school in exchange for spending some time with him.", + "posterPath": "/igkn0M1bgMeATz59LShvVxZNdVd.jpg", + "backdropPath": "/w50RYqdXGNB0rM7mMrOLGzdS0p3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-04-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 603, + "popularity": 4.9257 + }, + { + "id": 42951, + "title": "Kaiji", + "originalTitle": "逆境無頼カイジ", + "overview": "Kaiji Itou is a good-for-nothing loiterer who spends his days drinking beer and stealing hubcaps—that is, until he ends up being tricked by his former co-worker. Unable to suddenly repay his friend's huge debt all by himself, Kaiji is offered a shady deal to participate in an illegal underground gamble on a cruise ship. This turns out to be nothing more than the beginning of his new life of hell—thrown headlong into a life-threatening roller coaster of mind games, cheating, and deceit.", + "posterPath": "/hKTG76a11adML9ecbJt07D3jH8i.jpg", + "backdropPath": "/xLgRBj0iO3DFTzcBmZqgR01NyTa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-10-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.109, + "voteCount": 96, + "popularity": 4.9072 + }, + { + "id": 209077, + "title": "Undead Unluck", + "originalTitle": "アンデッドアンラック", + "overview": "Andy, a Negator with the ability \"Undead,\" has been long in search for someone with the ability to give him a 'real death.' Fuko Izumo brings misfortune to those around her due to her ability \"Unluck.\" The two decide to join the Union, an organization which aims to control and protect the world from unidentified phenomena. The two uncover the mystery of the world as they search for the \"greatest death ever.\"", + "posterPath": "/pJYOYFlu4Vayz5xXJJuP7ViwHnT.jpg", + "backdropPath": "/8uoNGqXeJCBoG2gLOsKW3qUDuaI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-10-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 120, + "popularity": 4.9036 + }, + { + "id": 43967, + "title": "Girls und Panzer", + "originalTitle": "ガールズ&パンツァー", + "overview": "In this world, Sensha-do (戦車道), the art of tank-combat, is a traditional Japanese martial art for girls. Miho, a girl who just transferred into the Ōrai Girls' Academy in Ibaraki Prefecture, has been ordered by the academy's student council chairperson to join the school team and compete in the national Sensha-do championships.", + "posterPath": "/hKEgErh0c9ljzHyODohZWzapI9U.jpg", + "backdropPath": "/MCRB9i9bECRS7b7h4QM40uL5kz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2012-10-09", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.737, + "voteCount": 78, + "popularity": 4.891 + }, + { + "id": 39659, + "title": "TIGER & BUNNY", + "originalTitle": "TIGER & BUNNY", + "overview": "In an alternate New York City protected by a band of superheroes called NEXT, veteran Wild Tiger is forced to team up with rookie Barnaby Brooks Jr.", + "posterPath": "/7wMu4oweCllUTdFFjAhIRTh1L6p.jpg", + "backdropPath": "/buSADMJdGIngbPFk9ddoP6RQYnI.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 50, + "popularity": 4.8809 + }, + { + "id": 83097, + "title": "The Promised Neverland", + "originalTitle": "約束のネバーランド", + "overview": "Emma, Norman and Ray are the brightest kids at the Grace Field House orphanage. And under the care of the woman they refer to as “Mom,” all the kids have enjoyed a comfortable life. Good food, clean clothes and the perfect environment to learn—what more could an orphan ask for? One day, though, Emma and Norman uncover the dark truth of the outside world they are forbidden from seeing.", + "posterPath": "/oBgRCpAbtMpk1v8wfdsIph7lPQE.jpg", + "backdropPath": "/6t8N28C5NbwqjCHRXhyY1S06Lib.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 10759, + 18, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Crime" + ], + "releaseDate": "2019-01-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.328, + "voteCount": 1209, + "popularity": 4.8726 + }, + { + "id": 43032, + "title": "You're Under Arrest!", + "originalTitle": "逮捕しちゃうぞ", + "overview": "Tokyo Highway Patrolwomen Natsumi and Miyuki get off to a bad start when Miyuki busts Natsumi for reckless moped driving on her way to work. Things get worse when they find out they're going to be partners!", + "posterPath": "/kwakYzynPqNFiW4RBjW3hZrMkRM.jpg", + "backdropPath": "/3fudCvQUkDUZqH3rJ0X9iw7sHbe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1996-10-05", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 11, + "popularity": 4.8601 + }, + { + "id": 42916, + "title": "Toradora!", + "originalTitle": "とらドラ!", + "overview": "Ryūji Takasu is a gentle high school student with a love for housework; but in contrast to his kind nature, he has an intimidating face that often gets him labeled as a delinquent. On the other hand is Taiga Aisaka, a small, doll-like student who is anything but a cute and fragile girl. Equipped with a wooden katana and feisty personality, Taiga is known throughout the school as the \"Palmtop Tiger.\" One day, an embarrassing mistake causes the two students to cross paths. Ryūji discovers that Taiga actually has a sweet side: she has a crush on the popular vice president, Yūsaku Kitamura, who happens to be his best friend. But things only get crazier when Ryūji reveals that he has a crush on Minori Kushieda—Taiga's best friend! Toradora! is a romantic comedy that follows this odd duo as they embark on a quest to help each other with their respective crushes, forming an unlikely alliance in the process.", + "posterPath": "/jgLSYTAgjQgwBqLEw1bgr8vNxeK.jpg", + "backdropPath": "/3IxznCOIYjajctSJ6BtlkDfJ22Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2008-10-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.199, + "voteCount": 624, + "popularity": 4.8563 + }, + { + "id": 34114, + "title": "Cat's Eye", + "originalTitle": "キャッツ♥アイ", + "overview": "Cat's Eye is the most notorious group of art thieves in Japan. No one knows their identities, but for most of Tokyo, the mystery only heightens their allure.", + "posterPath": "/5nXl9MZu7PfqkwZYYbC28nQ03pT.jpg", + "backdropPath": "/8npPz9oiCoff01DrphmFoIRI46y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 18, + 9648, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "1983-07-11", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 6.911, + "voteCount": 56, + "popularity": 4.8561 + }, + { + "id": 131660, + "title": "Show Time!", + "originalTitle": "しょうたいむ!〜歌のお姉さんだってしたい〜", + "overview": "Fujimoto Shouji is a widowed single father who aspires to be a picture book author. Kana, his only daughter, is a big fan of Takasaki Minami, the singing idol on the children’s educational show “Let’s Sing With Big Sis!” One day, Shouji encounters Minami while she is outside of work. As a television icon for children, Minami is prohibited from romantic relationships, so she is lonely in her private life. Thus begins an adult love story with a songstress.\n\n(Inspired by the character Uta no Oneesan from the children’s show Okaasan to Issho.)", + "posterPath": "/7S86pkMfatspJmXENcPZfgaKB33.jpg", + "backdropPath": "/qsiYayWAoPEhbCld0m2PpVeiM2Z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2021-10-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 9, + "popularity": 4.817 + }, + { + "id": 35138, + "title": "Hetalia", + "originalTitle": "ヘタリア", + "overview": "Forget what you learned in history class, and imagine all the nations of the world as guys on an inappropriate reality show. Pledge allegiance to your favorite superpower in Hetalia Axis Powers!", + "posterPath": "/hiMKkopeJU4UB4OW3o4hpYS7CB8.jpg", + "backdropPath": "/4Weg8hccl09H3rv9KCZz7fXSgob.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-01-24", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.781, + "voteCount": 32, + "popularity": 4.8092 + }, + { + "id": 261868, + "title": "Witch Watch", + "originalTitle": "ウィッチウォッチ", + "overview": "A diligent teen winds up living with his spunky childhood friend, a trainee witch, to protect her from a dire prophecy. But can they survive high school?", + "posterPath": "/48KKO5QHkowaCVsEpKLdvrzir3a.jpg", + "backdropPath": "/yTfaG7igCJa324DU0QaxCTzYBXF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 36, + "popularity": 4.8075 + }, + { + "id": 94904, + "title": "My Next Life as a Villainess: All Routes Lead to Doom!", + "originalTitle": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "overview": "Wealthy heiress Catarina Claes is hit in the head with a rock and recovers the memories of her past life. It turns out the world she lives in is the world of the game Fortune Lover, an otome game she was obsessed with in her past life... but she's been cast as the villain character who tries to foil the protagonist's romances!", + "posterPath": "/wGlRnnqmUmbmLc4gRiWlIsv9L3L.jpg", + "backdropPath": "/cErFnClnNFtxjljACfo3knIvOeG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 92, + "popularity": 4.8066 + }, + { + "id": 60874, + "title": "Space Dandy", + "originalTitle": "スペース☆ダンディ", + "overview": "Space Dandy is a dandy in space! This dreamy adventurer with a to-die-for pompadour travels across the galaxy in search of aliens no one has ever laid eyes on. Each new species he discovers earns him a hefty reward, but this dandy has to be quick on his feet because it’s first come – first served! Accompanied by his sidekicks, a rundown robot named QT and Meow the cat-looking space alien, Dandy bravely explores unknown worlds inhabited by a variety aliens. Join the best dressed alien hunter in all of space and time as he embarks on an adventure that ends at the edge of the universe!", + "posterPath": "/yNjRKE4W2ZJIoCDA2o6brNqpjg7.jpg", + "backdropPath": "/o5P2aI2MKuMYZIP5YO3ahVMBaOh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2014-01-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 121, + "popularity": 4.8063 + }, + { + "id": 280038, + "title": "Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin", + "originalTitle": "異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~", + "overview": "In Eternal Nations, a fantasy strategy game where players manage an empire, Takuto Ira is a legendary player who sits atop the leaderboard. Takuto goes unconscious during a hospitalization and awakens on the continent of Idoragya, which looks just like the game. Takuto meets Sludge Atou, his favorite unit in the game, and decides to build Mynoghra, an evil empire.", + "posterPath": "/cPVLebbkrh3H0yXba4NW5fdrPUp.jpg", + "backdropPath": "/drINdRuh71M8MpoPWcxwpP9yDEU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 21, + "popularity": 4.7989 + }, + { + "id": 260823, + "title": "From Old Country Bumpkin to Master Swordsman", + "originalTitle": "片田舎のおっさん、剣聖になる", + "overview": "Beryl Gardenant, a middle-aged swordsman running a dojo in the backwaters, lives a quiet life, until Allucia, former student and Commander of the Royal Order of Knights, appears! Beryl’s life is about to change dramatically! City life. Old students. New friends and formidable foes. It’s all too much. But after years of training, he has mad skills, and he’s been dubbed “the backwater swordmaster.”", + "posterPath": "/ujQp5egkJOkDHx4TehlgHePFcRv.jpg", + "backdropPath": "/sEagMcuLL3beaHc3ToiZicMuYSb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.645, + "voteCount": 62, + "popularity": 4.7955 + }, + { + "id": 10826, + "title": "Astro Boy", + "originalTitle": "鉄腕アトム", + "overview": "In the year 2000, Dr. Boyton creates a super-robot in his deceased son's image. He calls the robot Astro Boy. Astro Boy can swim oceans, leap over mountains, even fly into space on his own power. However, Astro Boy can't replace his son. Dr. Boyton becomes dissatisfied with the boy robot and disowns him.\n\nAstro Boy is befriended by Dr. Packadermus J. Elefun of the Institute of Science, who guides him through his adventures. Endowed with super strength, rocket-powered flight, a selfless heart and a kind demeanor, Astro Boy fights a never-ending crusade against the forces of evil!", + "posterPath": "/nmzhfHyuOfhmTH9A20LhFP6u5Fx.jpg", + "backdropPath": "/pAEOrnk8VLf4aDv2fFowdUPN4Ii.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1963-01-01", + "releaseYear": "1963", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 15, + "popularity": 4.781 + }, + { + "id": 100281, + "title": "Moriarty the Patriot", + "originalTitle": "憂国のモリアーティ", + "overview": "In the late 19th century, the British Empire nobility reigns while its working class suffers at their hands. Sympathetic to their plight, William James Moriarty wants to topple it all. Frustrated by the systemic inequity, Moriarty strategizes to fix the entire nation. Not even consulting detective Sherlock Holmes can stand in his way. It’s time for crime to revolutionize the world!", + "posterPath": "/lLcmshfrLg7JUMwMCnp5fuNqtoQ.jpg", + "backdropPath": "/en2X3XWGiUwZFe9pH9r06Si3Nbh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2020-10-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 225, + "popularity": 4.7802 + }, + { + "id": 115694, + "title": "Shikimori's Not Just a Cutie", + "originalTitle": "可愛いだけじゃない式守さん", + "overview": "Shikimori seems like the perfect girlfriend: cute, fun to be around, sweet when she wants to be… but she has a cool dark side that comes out under the right circumstances. And her boyfriend Izumi loves to be around when that happens!", + "posterPath": "/oHRSx63ilsx0dGg3K8yVPfs4BoA.jpg", + "backdropPath": "/9q69OEoEtpb7NcSZwNFZzF29o0E.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 178, + "popularity": 4.7741 + }, + { + "id": 218833, + "title": "Blue Archive the Animation", + "originalTitle": "ブルーアーカイブ The Animation", + "overview": "The city's academies are divided into their own districts and are considered mostly independent.\n\nThe General Student Council acts as a governing board to manage the academies as a whole. However, the group's ability to govern has come to a halt since the mysterious disappearance of the General Student Council president. Countless issues have begun to surface throughout Kivotos in the absence of the president's leadership.\n\nTo avoid disaster, the General Student Council requests assistance from the Federal Investigation Club, otherwise known as Schale. In fact, Schale is the city's newest club and the last to be approved before the president's disappearance.\n\nTo accomplish its task, Schale relies on the guidance of a Sensei who can help them resolve the incidents around Kivotos.", + "posterPath": "/5RkURIXHgWtCemtDS1Cnp3FIl2R.jpg", + "backdropPath": "/m4A7OiIK4VvBUiTfkBH6dFM2vH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 13, + "popularity": 4.761 + }, + { + "id": 118821, + "title": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "originalTitle": "世界最高の暗殺者、異世界貴族に転生する", + "overview": "The world's number one assassin has been reincarnated as the eldest son of a family of aristocrat assassins. In exchange for being reincarnated in another world, a goddess has imposed upon him one condition. \"Kill the Hero who is prophesied to destroy the world.\" This was to be the mission in his new life. The synergistic effect of the vast knowledge and experience he gained that made all manner of assassinations possible in the modern world, and the secret techniques and magic of the fantasy world's most powerful family of assassins turn him into the greatest assassin of all time.", + "posterPath": "/iusQCT2pje1Mc8A8LKnW1uZ5BOO.jpg", + "backdropPath": "/aTIE2FOGSl0jFP46kSFc47vUKIp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 276, + "popularity": 4.7586 + }, + { + "id": 63145, + "title": "Charlotte", + "originalTitle": "シャーロット", + "overview": "All thanks to the special ability that he developed, Yuu was able to cheat his way into a very prestigious high school. With his power, he thought nothing was going to stand in his way, until he met a mysterious girl named Nao Tomori and other students with special abilities just like him. It was the beginning to a new life.", + "posterPath": "/k4HvQUklsGE9ii9eBZIN1Y02Iyj.jpg", + "backdropPath": "/4qXkWqX1g9OgsNw2RSDayDcIpeG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.28, + "voteCount": 623, + "popularity": 4.7585 + }, + { + "id": 246862, + "title": "New PANTY & STOCKING with GARTERBELT", + "originalTitle": "New PANTY & STOCKING with GARTERBELT", + "overview": "On the brink between Heaven and Hell lies the town of Daten City, where sinister spirits known as \"Ghosts\" feast upon humanity.", + "posterPath": "/4BreeBRj2yJpqwlMtIlFhd8NI50.jpg", + "backdropPath": "/gy5b64sYb2xsyEESVInfeBE1jcC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9.1, + "voteCount": 21, + "popularity": 4.749 + }, + { + "id": 80729, + "title": "BanG Dream! Girls Band Party!☆PICO", + "originalTitle": "BanG Dream!ガルパ☆ピコ", + "overview": "BanG Dream! Girls Band Party!☆PICO, or simply GARUPA☆PICO, is a mini-anime series featuring the characters from the smartphone game Girls Band Party!", + "posterPath": "/d3NY5DJ4N5vJU1X8yiZ6Uc3jKDO.jpg", + "backdropPath": "/nG8p1q0zh1HgV8OSr9QUWDTvXgi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-07-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 14, + "popularity": 4.7351 + }, + { + "id": 120155, + "title": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "originalTitle": "史上最強の大魔王、村人Aに転生する", + "overview": "In his past life, he was known as Demon Lord Varvatos, an all-powerful magic user and ruler. But he was lonely after the loss of his friends and loved ones during his rise to power, so in his dying moments, Varvatos cast a reincarnation spell so that he'd get a second chance at just being a normal guy. At first it looks like that's going to work – he's reborn thousands of years later as villager Ard. Unfortunately for him, his memories are still intact and he's not aware just how much has been lost over the time he spent not existing, and it looks like that's going to cost him his normal life.", + "posterPath": "/dtULGP3qRi932NzYGsp7u6q6zAS.jpg", + "backdropPath": "/7PqkW8dr5WV6VcU3UeWOlx0cQP8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 88, + "popularity": 4.7273 + }, + { + "id": 61628, + "title": "World Trigger", + "originalTitle": "ワールドトリガー", + "overview": "A gate to another world opens in Mikado City, and monsters called Neighbors emerge. It's up to Border Defense agent Osamu Mikumo to fight them.", + "posterPath": "/lchqxvVvOeSfkpuvVAIxaDm8Mth.jpg", + "backdropPath": "/q4zS5BRgypeMcF6ui3pxWgn0ABn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 46, + "popularity": 4.7253 + }, + { + "id": 62428, + "title": "Saint Seiya: Soul of Gold", + "originalTitle": "聖闘士星矢 黄金魂 -soul of gold-", + "overview": "Transcending eternity, the 12 Gold Saints return to protect love and peace on Earth! They gave their lives to destroy the Wailing Wall to break the way for Seiya and the Saints in their battle against Hades in the Underworld! Though presumed to have perished, Aiolia and the other Gold Saints return to the beautiful earthly world of radiating luminescence! Why have these lost souls been brought back to life? Shrouded in this deep mystery, Aiolia becomes embroiled in a duel. When he burns his Cosmo to its limit…the Cloth of Leo transforms! In 2015, the Golden Cosmo is finally revived!", + "posterPath": "/3IhGGHp8ek5ZQZ53kuIJsaXzlJC.jpg", + "backdropPath": "/javXvHa9sBIZhv1gVMjCPT0mVbo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2015-04-11", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.999, + "voteCount": 749, + "popularity": 4.7245 + }, + { + "id": 9103, + "title": "Kimagure Orange Road", + "originalTitle": "きまぐれオレンジ☆ロード", + "overview": "Kyosuke Kasuga, fifteen, moves to a new city and falls for Madoka Ayukawa. She's friendly when they're alone, but acts like a delinquent when in front of others. Kyosuke meanwhile struggles not to break the heart of Hikaru Hiyama, who fell in love after seeing him make an impossible basketball shot. To add the cherry to this particular sundae, Kyosuke and his family (sisters, grandfather, and cousins) all have various powers. And while Kyosuke's desperate to keep those powers a secret, his younger sisters (among others) aren't quite as concerned about it.", + "posterPath": "/spa4vqIguULjaWpXmjmVGcAfWDt.jpg", + "backdropPath": "/e1LFeXUc7cFZ844OIt7x6Gr4cna.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1987-04-06", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 28, + "popularity": 4.7245 + }, + { + "id": 194774, + "title": "Vermeil in Gold", + "originalTitle": "金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "overview": "Rather than take a more sensible approach to salvaging his grades in time for graduation, Alto summons a bit of otherworldly help. Only after does he learn he’s bound the legendary she-devil Vermeil into service as his familiar!", + "posterPath": "/bwAVzmeSKCCQbwixsuhADX5u6j7.jpg", + "backdropPath": "/a9Y9xwkrqE4vOK12qfZejZXgDjb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 92, + "popularity": 4.715 + }, + { + "id": 46671, + "title": "The Future Diary", + "originalTitle": "未来日記", + "overview": "Reality quickly unravels when antisocial Yukiteru is called into a death match against 11 other mentally scarred individuals. Each player has a prophetic device tuned to their personality, giving them control over their future—and the fate of their foes.", + "posterPath": "/5MxOVu9eItgGZh4AQrtAnbZIsJr.jpg", + "backdropPath": "/eziTZNETERfYgflR9RENyy5QhSo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2011-10-09", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.581, + "voteCount": 449, + "popularity": 4.7026 + }, + { + "id": 64710, + "title": "Noragami", + "originalTitle": "ノラガミ", + "overview": "Hiyori Iki is a normal middle school student until she was involved in a bus accident while trying to protect a stranger. This incident causes her soul to frequently slip out of her body, and she becomes aware of the existence of two parallel worlds. Through her soul, she meets the strange, nameless god without a shrine, Yato. Yato is determined to make a name for himself out there by accepting any wishes for 5 yen, including Hiyori's to fix her body.", + "posterPath": "/5hb8qfoPKQMlLfuhZcbcXwCRVEd.jpg", + "backdropPath": "/n5J23cWQW4FUWhifL530qEkstFY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-01-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.229, + "voteCount": 659, + "popularity": 4.7025 + }, + { + "id": 113360, + "title": "Jimihen!! Jimiko o Kae Chau Jun Isei Kouyuu", + "originalTitle": "じみへんっ!!~地味子を変えちゃう純異性交遊~", + "overview": "The story follows Rena Yukuhasahi, a reserved office lady and Ryouhei Hachiya, a businessman and fellow colleague. Yukuhasahi appears to be the most reserved girl in the company, but becomes a super beautiful woman when she dresses up. Flustered in the presence of her transformed self, Hachiya insists on taking her out, only to find themselves in front of a love hotel.", + "posterPath": "/to5FshluwPdO9d3Ucs7fagJL7OU.jpg", + "backdropPath": "/kPO4rsDkSwmGMRDejvLAel8FafA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-01-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.292, + "voteCount": 24, + "popularity": 4.6939 + }, + { + "id": 1087, + "title": "Serial Experiments Lain", + "originalTitle": "serial experiments lain", + "overview": "Lain—driven by the abrupt suicide of a classmate—logs on to the Wired and promptly loses herself in a twisted mass of hallucinations, memories, and interconnected-psyches.", + "posterPath": "/2eAPjPjkkiF10vOiHjECRIDXqtd.jpg", + "backdropPath": "/nFSFdAn8freV16fmSC9rKggXzDl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "1998-07-06", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.222, + "voteCount": 588, + "popularity": 4.6826 + }, + { + "id": 208067, + "title": "My Love Story with Yamada-kun at Lv999", + "originalTitle": "山田くんとLv999の恋をする", + "overview": "Recently dumped, Akane is just about to quit the game she used to play with her boyfriend, when she meets Yamada in the same RPG. Yamada in real life turns out to be somewhat of a legend. The only problem is - he is ONLY interested in the game. As Akane's feelings grow, will Yamada's focus stay on the game?", + "posterPath": "/6RTMDyXZpzACsSg5AcRSUHMO8m2.jpg", + "backdropPath": "/4U5cJTbXBzW1WxDUZErqU3VNNWl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 160, + "popularity": 4.6731 + }, + { + "id": 216272, + "title": "Unnamed Memory", + "originalTitle": "Unnamed Memory", + "overview": "Climbing a deadly tower, Oscar seeks the power of its master, the Witch of the Azure Moon. He hopes her incredible magic can break a curse that will kill any woman he takes for a wife. However, when the prince sees how beautiful Tinasha is, he has a better idea—since she's surely strong enough to survive his curse, she should just marry him instead! Tinasha isn't keen on the idea but agrees to live with Oscar in the royal castle for a year while researching the spell placed on the prince. The witch's pretty face hides several lifetimes of dark secrets, however—secrets that begin resurfacing.", + "posterPath": "/tvrc6PfamASdvp334FYUrViR3Hp.jpg", + "backdropPath": "/coZ81U0aSjT0jOrE5CI7HsyBdeY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.074, + "voteCount": 47, + "popularity": 4.6726 + }, + { + "id": 37471, + "title": "Nura: Rise of the Yokai Clan", + "originalTitle": "ぬらりひょんの孫", + "overview": "Rikuo Nura, is 3 parts human and a quarter Demon, lives in a house of spirits with his grandfather, The current clan head of the Nura youkai. Rikuo is set to be the next clan head, despite the fact he dislikes his demon side. He soon come to terms with his demon blood and decides to take his position as young master of the Nura house. However there are those who will certainly not allow it to be easy.", + "posterPath": "/qHY5y8pQiIIJfXeko7t9JTqA32p.jpg", + "backdropPath": "/dIc8YQrs3fRbB7b9pGzgTqDMnpJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2010-07-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 89, + "popularity": 4.6581 + }, + { + "id": 74018, + "title": "The Legend of the Galactic Heroes: Die Neue These", + "originalTitle": "銀河英雄伝説 Die Neue These", + "overview": "Caught in a 150-year-long war, interstellar nations reach the pinnacle of strategic combat at the hands of two genius leaders. Reinhard of the Galactic Empire, and Yang of the Free Planets Alliance lead the charge from opposing fronts. Fighting is their destiny, but in this vast universe torn by political intrigue, their greatest enemy may not be each other.", + "posterPath": "/aOXYjnJqGYIELPEMg1shcPXBbhj.jpg", + "backdropPath": "/8SqEzhSAo53mn4gITdlrCUAKcCg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10768, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "War & Politics", + "Drama" + ], + "releaseDate": "2018-03-31", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 75, + "popularity": 4.6564 + }, + { + "id": 34158, + "title": "Magic Knight Rayearth", + "originalTitle": "魔法騎士レイアース", + "overview": "Three young girls, Hikaru, Umi, and Fuu, are transported to a magical world called Cephiro during a field trip to Tokyo Tower. They are soon greeted by Master Mage Clef, who explains to them that they have been summoned to become the Legendary Magic Knights and save Cephiro. The girls are less than enthusiastic about this idea, and only want to return home. Clef further explains that they must seek out the three Rune Gods to help them fight. He bestows armor and magical powers to each of them. They learn from Clef that High Priest Zagato has kidnapped the Pillar of Cephiro, Princess Emeraude. The Pillar of Cephiro has the sole responsibility of keeping Cephiro alive and in balance with her prayers. Without Princess Emeraude, Cephiro would fall into ruin. Hikaru, Umi, and Fuu must fight off Zagato's henchman and find the Rune Gods if they ever want to get back home. They soon learn that friendship and loyalty are the only things they can rely on in the crumbling Cephiro.", + "posterPath": "/pm3hODqtNDLqucDVvakky8FrhMx.jpg", + "backdropPath": "/mVya8Yf5BV8wBLXXAremnzHumAK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "1994-10-17", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 8.413, + "voteCount": 206, + "popularity": 4.643 + }, + { + "id": 212766, + "title": "New Saga", + "originalTitle": "強くてニューサーガ", + "overview": "After a brutal war, magic swordsman Kyle defeats the Demon King but is left dying. A crimson crystal sends him four years into the past to his once-destroyed hometown where he finds his lost loved ones alive. Armed with future knowledge, Kyle vows to prevent the coming tragedy and rewrite fate.", + "posterPath": "/dmZ74VyWi3I8ZqJ1m3Fmcc1etgp.jpg", + "backdropPath": "/u9p6IIYllP8gwZB2URx08jIYdvZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 4.6418 + }, + { + "id": 99080, + "title": "Peter Grill and the Philosopher's Time", + "originalTitle": "ピーター・グリルと賢者の時間", + "overview": "Upon winning a fighting tournament and being crowned the world’s strongest warrior, Peter Grill discovers a downside to his newfound fame. Women of all species, from ogres to elves, are scrambling over each other for his seed to ensure they have the strongest babies possible. Poor Peter just wants to settle down with his lovey dovey fiancée, but he’ll have to outmatch, outwit, and outrun a harem of very determined monster girls to do so!", + "posterPath": "/4Gf6ugUPhcw0x0GadVByoFtATL6.jpg", + "backdropPath": "/otxnF5SsC3aicquF1jTeYI377g1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.945, + "voteCount": 235, + "popularity": 4.6404 + }, + { + "id": 67627, + "title": "PriPara", + "originalTitle": "プリパラ", + "overview": "Laala Manaka is a 5th-grader at Paprika Academy. Like most girls, she admires the world of PriPara, a sport that tests idol girls on song, dance, and fashion. Unfortunately for her, her school does not allow elementary school students to participate in PriPara. However, through miraculous circumstances, Laala passes the audition to become a PriPara idol.", + "posterPath": "/kLIVCmuCw1nMpULikGOmQml1lPQ.jpg", + "backdropPath": "/Iyn11whMjSzH0kqqNyYPWXczcH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 9, + "popularity": 4.6377 + }, + { + "id": 98986, + "title": "Uzaki-chan Wants to Hang Out!", + "originalTitle": "宇崎ちゃんは遊びたい!", + "overview": "Shinichi Sakurai’s one wish is for a little peace and quiet. But Hana Uzaki — his boisterous, well-endowed underclassman — has other plans. All she wants is to hang out and poke fun at him. With the help of her chipper charm and peppy persistence, this might just be the start of a beautiful relationship!", + "posterPath": "/kg7PD9mqKUlJulKTeHzVwHAKqqR.jpg", + "backdropPath": "/c8Z2eI5PK3agXAhlNpyIFuYJXfx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-07-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.302, + "voteCount": 975, + "popularity": 4.6284 + }, + { + "id": 13674, + "title": "Mobile Suit Zeta Gundam", + "originalTitle": "機動戦士Zガンダム", + "overview": "Universal Century 0087, 7 years have passed since the end of the One Year War between the Earth Federation and the Principality of Zeon. The Earth Federation has created an elite task force, known as the Titans, who are responsible for hunting the remaining Zeon forces. However, the power-hungry Titans have spurred the creation of a rebellious faction called the Anti-Earth Union Group (AEUG).", + "posterPath": "/2KXINVDQqBgKIZAed7Ncz15TAq8.jpg", + "backdropPath": "/zK1OaOHgl7dNAE1sKEMXatu2I1s.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10768, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "War & Politics", + "Drama" + ], + "releaseDate": "1985-03-02", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 38, + "popularity": 4.6186 + }, + { + "id": 66078, + "title": "Twin Star Exorcists", + "originalTitle": "双星の陰陽師", + "overview": "Rokuro is from a family of exorcists, but he'd rather be a singer, a soccer player or anything but an exorcist! He's forced to own up to his own incredible potential when new arrival Benio stirs his competitive spirit. But their rivalry gets a twist when they earn the prestigious title of \"Twin Star Exorcists\"—two supreme fighters fated to marry and birth the ultimate spiritual warrior!", + "posterPath": "/dbGtsHEuV8zREyMEXmf5YFtUZyL.jpg", + "backdropPath": "/3maf3FaLAq31NaoKy1lje4LvuK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.43, + "voteCount": 359, + "popularity": 4.5888 + }, + { + "id": 241138, + "title": "Rising Impact", + "originalTitle": "ライジングインパクト", + "overview": "When a third-grader's natural gift for golf is accidentally discovered by a pro player, the boy embarks on a journey to be the world's best golfer.", + "posterPath": "/i0jKVRkxf12hOUR1RZF62r9WdCk.jpg", + "backdropPath": "/lTOL2HtDkBJ4R5dHEKT8JlVxFhd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-06-22", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 36, + "popularity": 4.577 + }, + { + "id": 37527, + "title": "Chobits", + "originalTitle": "ちょびっツ", + "overview": "Tokyo is abuzz with persocoms – humanoid computers that are virtually perfect. The socially and technologically inept Hideki is dying to get his hands on one. When he finds Chii abandoned in the trash, she’s cuter than any current model he’s ever seen before. But when he gets her home and turns her on, she has no data and only a single learning program installed. While Hideki puts his whole heart into teaching Chii the ins and outs of humanity, a mystery unfolds as a dark secret within her awakens.", + "posterPath": "/9gjM4FgXyjzzvP6W6MckC48hK1R.jpg", + "backdropPath": "/4dTV1Ygbl5hypkrnxpH9Q8qSZbq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-04-02", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.08, + "voteCount": 225, + "popularity": 4.5748 + }, + { + "id": 62430, + "title": "The Heroic Legend of Arslan", + "originalTitle": "アルスラーン戦記", + "overview": "Arslan is the heir apparent of Pars, a strong nation that sits at the hear of the trade route connecting the East and the West. When the pagan nation of Lusitania begins an invasion of Pars, the timid Arslan is confronted with battle for the first time. His worst anxieties are realized the Parsian army falls for a Lusitanian stratagem and are routed. He barely escapes with his life, thanks to the loyal and indomitable warrior Daryun. Together they will stand against the invasion and the cruelties of fate that are about to blow down on Pars.", + "posterPath": "/p6F6pGoNNtIViDxHkU4wDeseiyJ.jpg", + "backdropPath": "/ty3fCZumomMkHPHRxACDQJkTEyD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.975, + "voteCount": 80, + "popularity": 4.5719 + }, + { + "id": 99073, + "title": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "originalTitle": "スライム倒して300年、知らないうちにレベルMAXになってました", + "overview": "After dying of overwork in the real world, I’m reincarnated as an immortal witch, and I spend 300 years enjoying a relaxing life. At some point, though, I end up at level 99! All those years spent killing slimes to make the money to pay the bills gave me a ton of experience points. Rumors of the level 99 witch spread, and soon I’m up to my ears in curious adventurers, duelist dragons, and even a monster girl calling me her mom! I’ve never been on an adventure, but I’m the strongest in the world… What’s going to happen to my relaxing life?!", + "posterPath": "/iyTiJqrAs2YItyTYGI18PdqX65c.jpg", + "backdropPath": "/45feYn6zwVrwLcBtiaLOXzavtOT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 226, + "popularity": 4.5713 + }, + { + "id": 16047, + "title": "Anne of Green Gables", + "originalTitle": "赤毛のアン", + "overview": "Anne Shirley is a freckle-faced, red-haired girl, who grows up in an orphanage having lost her parents at a very early age. Anne is always cheerful and fun-loving despite being brought up without love or affection. When she turns 11, she is adopted by the old farmer Matthew Cuthbert and his sister Marilla. Anne starts her new life with Matthew and Marilla at a farm called \"Green Gables\", but actually the Cuthberts wanted a boy who could help with their work on the farm... Overcoming many hardships and meeting many friends and people, Anne grows up to be a strong-minded woman.", + "posterPath": "/hW5TyvMdJbyAOOzFCTQCwDHa3g5.jpg", + "backdropPath": "/9QKNNX8LikJOO2N52UfThr1yuIF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10762 + ], + "genres": [ + "Animation", + "Drama", + "Kids" + ], + "releaseDate": "1979-01-07", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 45, + "popularity": 4.5671 + }, + { + "id": 85322, + "title": "Star☆Twinkle PreCure", + "originalTitle": "スター☆トゥインクルプリキュア", + "overview": "When Hikaru Hoshina transforms into Cure Star, she embarks on an outer space adventure to find the rest of the Star Twinkle Cures and save the universe!", + "posterPath": "/7y1FvOFTXcYSLRSabHlfDHixNYl.jpg", + "backdropPath": "/vcTnsyruvtsgjf2kv38tu4nDCa9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35, + 10751, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2019-02-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 11, + "popularity": 4.5611 + }, + { + "id": 99084, + "title": "Princess Connect! Re:Dive", + "originalTitle": "プリンセスコネクト!Re:Dive", + "overview": "In the beautiful land of Astraea where a gentle breeze blows, a young man named Yuuki awakens with no memory of his past. There he encounters a guide who has sworn to care for him—Kokkoro, a lovely swordswoman who's always feeling peckish—Pecorine, and a cat-eared sorceress with a prickly attitude—Karyl. Led by fate, these four come together to form the \"Gourmet Guild.\" And so their adventure begins...", + "posterPath": "/5NVgbJpJguHsBPR7X7amzioQ9ot.jpg", + "backdropPath": "/scJQ1hweNICQwuToHlLEmO7qRqs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 47, + "popularity": 4.5569 + }, + { + "id": 21731, + "title": "Mobile Suit Gundam", + "originalTitle": "機動戦士ガンダム", + "overview": "What would you do if you suddenly found yourself in the middle of a war? Teenager Amuro Ray sees his life shattered when war comes to his home. During the chaos, Amuro finds himself inside the mobile suit Gundam, the Earth Federation's new secret weapon, and he somehow gets it to work. Amuro and the other refugees flee their homeland on the warship White Base. This group of children and inexperienced soldiers will change the outcome of the war.", + "posterPath": "/BMqben5yxK5bBdHALi9jfyp517.jpg", + "backdropPath": "/484TQnWzNSm2iGj6XMY66VBDr6g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1979-04-07", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.813, + "voteCount": 64, + "popularity": 4.5499 + }, + { + "id": 53020, + "title": "Teekyu", + "originalTitle": "てーきゅう", + "overview": "The series follows the hilarious everyday routines of four girls in the Kameido High tennis club who, on occasion, actually play some tennis.", + "posterPath": "/vqv9MS8LfboiUDoc00D0Qw0awCB.jpg", + "backdropPath": "/awFuZcxrAGnReHrYWOkBqFBBeJy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-10-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.35, + "voteCount": 20, + "popularity": 4.5468 + }, + { + "id": 34663, + "title": "Zenki", + "originalTitle": "鬼神童子ZENKI", + "overview": "In ancient times, a great battle was waged between a master mage, Enno, and an evil demon goddess, Karuma. Enno didn't have the strength to defeat her alone and was forced to call upon Zenki, a powerful protector demon. After Karuma was defeated, Enno sealed Zenki away in a pillar located inside his temple.\n\n1,200 years after this epic battle, Enno's descendant, Chiaki, unleashes her family's powers to summon Zenki.", + "posterPath": "/sFhXlSqk4FnAvDBaG9YKYnJiE1V.jpg", + "backdropPath": "/2bo6q6SbX0JSjZ4cqQuLijuNVg0.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1995-01-09", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 99, + "popularity": 4.5465 + }, + { + "id": 42942, + "title": "Angel Beats!", + "originalTitle": "Angel Beats!", + "overview": "Angel Beats takes place in the afterlife and focuses on Otonashi, a boy who lost his memories of his life after dying. He is enrolled into the afterlife school and meets a girl named Yuri who invites him to join the Afterlife Battlefront — an organization she leads which fights against God. The Battlefront fight against the student council president Angel, a girl with supernatural powers.", + "posterPath": "/wz1PuXrg5ERQvyXKex3cGDie2hj.jpg", + "backdropPath": "/1YyxdXFA9AJ0WHRQ7SfHxvKJp1n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2010-04-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.904, + "voteCount": 449, + "popularity": 4.5339 + }, + { + "id": 83103, + "title": "Domestic Girlfriend", + "originalTitle": "ドメスティックな彼女", + "overview": "Natsuo is a high school boy who is experiencing the crushing despair of unrequited love. To make matters worse, the person he is in love with is his teacher, Hina. In an attempt to lift his spirits, he attends a mixer where he meets a girl named Rui. The two sleep together, expecting never to see one another again, but fate has other plans. His life suddenly becomes more complicated when his father comes home and announces he has remarried a woman with two daughters whom Natsuo has met before: Hina and Rui!", + "posterPath": "/yT5HNeqQaoF4TmmQi3RMj8P7uwZ.jpg", + "backdropPath": "/9uv4pVYNyf7bpm7MIjQOAaBwhbK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2019-01-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.157, + "voteCount": 452, + "popularity": 4.5314 + }, + { + "id": 206799, + "title": "Dark Gathering", + "originalTitle": "ダークギャザリング", + "overview": "The story centers on Keitarou Gentouga, who has the ability to be a spirit medium. In junior high school, he got someone else wrapped up in a spirit possession incident, and he has been a shut-in for more than two years. As he reintroduces himself to society as a private tutor, he meets a genius girl named Yayoi Houzuki. Yayoi is instantly able to tell that Keitarou has skill as a spirit medium, and she invites him to go with her to a haunted location. The two then start their journey capturing evil spirits.", + "posterPath": "/4fSzalgBWLC52TGPGn91tNBoO0m.jpg", + "backdropPath": "/fctgQPXyx6quhA7TY0xTb9STIuS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2023-07-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 27, + "popularity": 4.5246 + }, + { + "id": 115236, + "title": "The Saint's Magic Power Is Omnipotent", + "originalTitle": "聖女の魔力は万能です", + "overview": "Sei, a 20-year-old office worker, is whisked away to a whole new world. Unfortunately for Sei, the ritual that summoned her—meant to produce a \"Saint\" who would banish the dark magic—brought two people over instead of one. And everyone prefers the second girl over Sei?! But this is just fine by Sei, who leaves the royal palace to set up shop making potions and cosmetics with her newfound magic. Business is booming, and this might not be such a bad life, after all...as long as her supposed Sainthood doesn't come back to haunt her.", + "posterPath": "/mPbvla7nfhpfILvJhmbeKGpVYwu.jpg", + "backdropPath": "/u1KvPCwqUH0Qr8btglG0cDnxUEj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 112, + "popularity": 4.514 + }, + { + "id": 8991, + "title": "Digimon Frontier", + "originalTitle": "デジモンフロンティア", + "overview": "Five children receive strange messages on their cell phones that lead them to a train that takes them to the Digital World, a strange world filled with bizarre creatures called Digimon. These children have been sent there to stop an evil Digimon named Cherubimon from completely annihilating the planet of all its inhabitants. In order to accomplish this, the five children must locate their \"spirits\", which will evolve them into the Legendary Warrior Digimon. Unfortunately for them Cherubimon has ordered his servants to stop the kids from finishing the mission; eventually the children will have to fight Cherubimon's forces in order to save the planet.", + "posterPath": "/oPdbgUOdvgw3HUKCUv4cVWantdI.jpg", + "backdropPath": "/bm1pRYmji3aYVQ46oG9Orl3HhIM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-04-07", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 158, + "popularity": 4.504 + }, + { + "id": 40143, + "title": "Shaman King", + "originalTitle": "シャーマンキング", + "overview": "Asakura Yoh is a shaman, a person who communicates with ghosts. He enters the Shaman Fight, for whoever wins the tournament gets to commune with the Great Spirit, God... that and his fiance Anna wants to be the wife of the Shaman King. Helping him are his friends Manta, Horo Horo, Ryu, and his samurai ghost partner, Amidamaru.", + "posterPath": "/bDJLF92frEmKSr1OlCZN5P1kx6W.jpg", + "backdropPath": "/f7DC5Qu0MJBtbAK9zCOU2rzz6NG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-07-04", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.513, + "voteCount": 429, + "popularity": 4.4942 + }, + { + "id": 56353, + "title": "Oreimo", + "originalTitle": "俺の妹がこんなに可愛いわけがない", + "overview": "Oreimo follows the daily life of an ordinary high school boy named Kyousuke Kousaka. Kyousuke’s younger sister Kirino is a pretty fashion model, but also hides a dark secret of being an otaku of adult games. Kyousuke is the only person to whom Kirino reveals her hidden obsession and other issues.", + "posterPath": "/efZcn6XAMhz4n5vHVKRPVvvBfJ2.jpg", + "backdropPath": "/jfMxNkSh6CP6jWpOS60IzciMHa0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-10-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 143, + "popularity": 4.4926 + }, + { + "id": 25492, + "title": "Sengoku BASARA: Samurai Kings", + "originalTitle": "戦国BASARA", + "overview": "During the Sengoku period, there are many factions constantly at war. One of these is led by a one-eyed man named Date Masamune and another by the imposing Takeda Shingen. The latter has a fiercely loyal subordinate named Sanada Yukimura who goes head to head against Date Masamune multiple times, but the battles between them tend to get interrupted. One such battle occurs when both men try to go after another leader named Imagawa, and they’re forced to break off their heated duel when Imagawa attempts to flee the scene with his body doubles. Yukimura and Masamune go after separate Imagawas, but all of the doubles are killed by a third party, and when their paths cross again, they are in front of the menacing Oda Nobunaga and his army. It was Nobunaga’s subordinates that killed those body doubles, and Nobunaga himself proceeds to kill the real Imagawa with a shotgun blast to the head.", + "posterPath": "/bFdT4pUHnUuACXiLTnzhTK75kpv.jpg", + "backdropPath": "/kw6M3YXYcdmiUMSdFcfNMM8BJNM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2009-04-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 20, + "popularity": 4.4871 + }, + { + "id": 12406, + "title": "Powerpuff Girls Z", + "originalTitle": "出ましたっ!パワパフガールズZ", + "overview": "Professor Utonium and his son Ken are studying the strange Chemical X. When a mochi cake falls into the formula, it changes into Chemical Z. Ken fires a ray of Chemical Z at a glacier in Tokyo Bay, however that causes strange lights to scatter, some of them aim at three normal girls, Momoko, Miyako, and Kaoru. This gives them the power to transform into superheroes, the Powerpuff Girls Z!", + "posterPath": "/lJpPdByOlbmU1Gu40VOL6fEg9U3.jpg", + "backdropPath": "/1PaEWlOjm0Qxo4w6NAvJRnZbKDN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2006-07-01", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 231, + "popularity": 4.4789 + }, + { + "id": 215799, + "title": "Go! Go! Loser Ranger!", + "originalTitle": "戦隊大失格", + "overview": "With their old hideout and bosses wiped out, the surviving Dusters make a secret agreement with the Ranger Force to engage in the weekly Sunday Showdown - one where they will always be defeated. Tired of this charade, Fighter D finally steps up to make a change once and for all!", + "posterPath": "/1xLqRhNM41Xv0UZRZsHBhsnB1lx.jpg", + "backdropPath": "/M0CIWl08Bj2U271ahU61JkWztc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 45, + "popularity": 4.4788 + }, + { + "id": 9152, + "title": "Steel Jeeg", + "originalTitle": "鋼鉄ジーグ", + "overview": "Hiroshi Shiba is a car racer who is mortally wounded in a laboratory accident, but restored to life by his father, Professor Shiba.", + "posterPath": "/gYkW3uz2kOOyPsFxb87HMK7ArrL.jpg", + "backdropPath": "/ali6jWoZo1rGY3fgbNbUuZAR7LY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1975-10-05", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 7.986, + "voteCount": 72, + "popularity": 4.4779 + }, + { + "id": 220118, + "title": "Sazanami Soushi ni Junketsu wo Sasagu", + "originalTitle": "漣蒼士に純潔を捧ぐ", + "overview": "\"If it's a request from my precious wife, then I will give you the moon and the stars.\" He flashes his gorgeous tattoos at me as he makes passionate love to me. This is bad! Something's coming...!!", + "posterPath": "/6SHb6A2iAX05kNZug794VFEUt7J.jpg", + "backdropPath": "/3dqyRG3kaHQgC1n15cGh7YyaSAK.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-04-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 5, + "popularity": 4.4674 + }, + { + "id": 121078, + "title": "Mieruko-chan", + "originalTitle": "見える子ちゃん", + "overview": "She can see dead people…she just chooses to ignore them. That’s Miko’s plan, anyway, with horrifying (and sometimes hilarious) results.", + "posterPath": "/pNLGu2qOg0Blz8wGhGEDErjEn0Y.jpg", + "backdropPath": "/7hQELklt1Au1RAEB0sEy5iXAIw9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.121, + "voteCount": 346, + "popularity": 4.4635 + }, + { + "id": 78473, + "title": "DRAGON PILOT: Hisone and Masotan", + "originalTitle": "ひそねとまそたん", + "overview": "Recently stationed Air Self-Defense Force rookie Hisone Amakasu is chosen by a dragon concealed within Gifu Air Base to be his pilot.", + "posterPath": "/6oaEH8CNlMDiiQHUSeirza96q0g.jpg", + "backdropPath": "/lBKYxelnuK2wAERVtvRiG06OOm6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2018-04-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 23, + "popularity": 4.4584 + }, + { + "id": 60654, + "title": "Magi", + "originalTitle": "マギ", + "overview": "This story is about the flow of fate and the battle to keep the world on the right path. Aladdin is a boy who has set out to explore the world after being trapped in a room for most of his life. His best friend is a flute with a djinn in it named Ugo. Soon enough, Aladdin discovers he is a Magi, a magician who chooses kings, and he was born to choose kings who will follow the righteous path, battling against those who want to destroy fate. Follow his adventures as he meets others from 1001 Arabian Nights, like Ali Baba and Sinbad, and fights to keep the balance of world in check!", + "posterPath": "/cDIDw98GGkVvyDa2ko0KGmE5g2A.jpg", + "backdropPath": "/AcKnrZgsf8ea8NJWdGWlqSYTQBG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.311, + "voteCount": 201, + "popularity": 4.4544 + }, + { + "id": 27660, + "title": "Legend of the Galactic Heroes", + "originalTitle": "銀河英雄伝説", + "overview": "War rages between the Galactic Empire and the Free Planets Alliance. With two new brilliant young leaders at the helm, anything can happen in this military space opera.", + "posterPath": "/j6amUPH88lc7cJf54MKZCf4a9NA.jpg", + "backdropPath": "/kaO9Z6jgQJ6h7SdjpHwZmz0GcfZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18, + 10768 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama", + "War & Politics" + ], + "releaseDate": "1988-12-01", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 8.679, + "voteCount": 84, + "popularity": 4.4525 + }, + { + "id": 80563, + "title": "How Not to Summon a Demon Lord", + "originalTitle": "異世界魔王と召喚少女の奴隷魔術", + "overview": "When it comes to the fantasy MMORPG Cross Reverie, none can match the power of the Demon King Diablo. Possessing the game’s rarest artifacts and an unrivaled player level, he overpowers all foolish enough to confront him. But despite his fearsome reputation, Diablo’s true identity is Takuma Sakamoto, a shut-in gamer devoid of any social skills. Defeating hopeless challengers day by day, Takuma cares about nothing else but his virtual life—that is, until a summoning spell suddenly transports him to another world where he has Diablo’s appearance!\n\nIn this new world resembling his favorite game, Takuma is greeted by the two girls who summoned him. They perform an Enslavement Ritual in an attempt to subjugate him, but the spell backfires and causes them to become his slaves instead. With the situation now becoming more awkward than ever, Takuma decides to accompany the girls in finding a way to unbind their contract while learning to adapt to his new existence as the menacing Demon King.", + "posterPath": "/oVozVLWMTej4CRBpfu0ehxofBHS.jpg", + "backdropPath": "/vGY4bcMUhkqUyCaR6SC8s1zPC7O.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2018-07-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 334, + "popularity": 4.4521 + }, + { + "id": 65329, + "title": "Hyouka", + "originalTitle": "氷菓", + "overview": "Oreki Houtarou is a minimalistic high school boy. One day, he joins the Classic Literature Club at his elder sister's request. There he meets Chitanda Eru, Fukube Satoshi, and Ibara Mayaka. Chitanda is a calm beautiful girl but she turns into an embodiment of curiosity once she says, \"I'm curious.\" Fukube is a smiling boy with a fantastic memory who calls himself a database. Ibara is a short girl and is strict with others and herself. They begin to investigate a case that occurred 45 years ago. Hints of the mystery are buried in an old collection of works of the former members of Classics Club. The collection is titled \"Hyouka.\"", + "posterPath": "/qoAig2n9LkukqnizytaBtOSwif7.jpg", + "backdropPath": "/kmUuJ4BHkX1cQKnFBJ2vv22bmmS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy" + ], + "releaseDate": "2012-04-23", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.109, + "voteCount": 345, + "popularity": 4.449 + }, + { + "id": 36983, + "title": "Rosario + Vampire", + "originalTitle": "ロザリオとバンパイア", + "overview": "An ordinary high school boy fails to get into any private academy except one — which happens to be populated by supernatural creatures disguised as humans. To survive, he has to pretend that he is one of them and blend in.", + "posterPath": "/wbJmT1SjraMZY7BPLLvVMaCm9fl.jpg", + "backdropPath": "/t7CqJNLEsBs8OlV4RyweaLg6B1Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-01-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 284, + "popularity": 4.4472 + }, + { + "id": 270487, + "title": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "originalTitle": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "overview": "Not every party treats you like a hero—especially when you’re a lowly red mage like Yuke. So, after years of constant ridicule by his A-rank party members, he ditches them. Searching for a new party, he reunites with former students Marina, Silk, and Rain, and joins their group. But on a quest to conquer the world’s greatest dungeon, they become entangled in chaos that threatens the world.", + "posterPath": "/I0AU52dvJzQptvbmWfVnVBgm75.jpg", + "backdropPath": "/mjCLM0KHXErVCvz4UMuUV1l2Th.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-12", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 26, + "popularity": 4.4435 + }, + { + "id": 36697, + "title": "Seitokai Yakuindomo", + "originalTitle": "生徒会役員共", + "overview": "Ousai Academy is a former all-girls private high school which has recently been integrated for both genders. Takatoshi Tsuda is pushed into becoming the vice-president of the student council, where he is the lone male member surrounded by three beautiful girls.", + "posterPath": "/htcCw1HrElxHV9GQ5KLapm4CjlA.jpg", + "backdropPath": "/b4SHDDUluls6huC0hq9lC3wP4vx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-07-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 43, + "popularity": 4.4209 + }, + { + "id": 64492, + "title": "SHIROBAKO", + "originalTitle": "SHIROBAKO", + "overview": "In a school in northeastern Japan, five friends in the animation club, Aoi, Ema, Shizuka, Misa, and Midori swear to complete a new anime called \"Shinbutsu Konkou SHICHIFUKUJIN\" with some donuts. Since then, day after day, the five spend all of their time on anime production. The awe of going from rough sketches to animation, and the awkward acting in the after-recording session... The final product was finished at the cultural fair six months later. After they graduated they still pursued animation and swore on some donuts that they would make another anime together.", + "posterPath": "/boxBWiZ1NxVLLkoCPbP2NKdv1WT.jpg", + "backdropPath": "/3K37gBsWIPWhKKT5DMW37bOnp4k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2014-10-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 70, + "popularity": 4.4199 + }, + { + "id": 261091, + "title": "The Shiunji Family Children", + "originalTitle": "紫雲寺家の子供たち", + "overview": "The Shiunji family with their seven children reside in a mansion within Tokyo’s Setagaya ward. The eldest son, Arata, is tired of being pushed around by his five sisters and daydreams of a life without them. That is, until Arata’s father reveals a shocking truth—Arata isn’t biologically related to his sisters! The siblings’ relationships will be tested as they navigate life in this new light.", + "posterPath": "/tvhXMejlXyOUo24we09pXSgKw5j.jpg", + "backdropPath": "/kVZcEY6PCeweU4GFWBOnlKAM28L.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.553, + "voteCount": 39, + "popularity": 4.4135 + }, + { + "id": 45844, + "title": "Star Blazers: Space Battleship Yamato 2199", + "originalTitle": "宇宙戦艦ヤマト2199", + "overview": "The year is 2199. The human race has been crushed in their war with the Gamilos, driven into underground cities by the invader's assault. Scientists estimate they have only a year left. The young officers Susumu Kodai and Daisuke Shima receive a mysterious capsule from a ship that made an emergency landing on Mars and return with it to Earth. It contains humanity's last hope: the planet Iscandar on the other side of the Magellan Galaxy has the technology to defeat the Gamilos and restore the planet. The space battleship Yamato is entrusted with this task, but they have only one year before humanity ends.", + "posterPath": "/kP0qdJDIV2kHF2CTw8l5RrGyZYE.jpg", + "backdropPath": "/A8tHJQef2u4rMKgG1GAZJmpcqfJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2013-04-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.274, + "voteCount": 53, + "popularity": 4.4132 + }, + { + "id": 53721, + "title": "Love Live! School Idol Project", + "originalTitle": "ラブライブ! School idol project", + "overview": "Otonokizaka High School is planning to close within three years. However, nine female students come together with one thing in mind—form a pop idol group to revive the school’s popularity and keep it from shutting down. 'In order to protect our beloved school, there’s only one thing we can do...become pop stars!'", + "posterPath": "/xEAZIGmMuBVR3japyKHz9QgxEmr.jpg", + "backdropPath": "/5ZheCj2EtBkgF5uzfRBTFE3yKFl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2013-01-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 82, + "popularity": 4.4129 + }, + { + "id": 62640, + "title": "Nisekoi", + "originalTitle": "ニセコイ", + "overview": "Raku Ichijo is an average high school student. He also happens to be the sole heir to the head of a Yakuza Family called the Shuei-gumi. 10 years ago, Raku made a promise… a secret promise with a girl he met. They promised one another that they will “get married when they reunite.” Since then, Raku never let go of the pendant the girl gave him.", + "posterPath": "/vYfnw5eRLrne4ZLDaRdHgvGyys7.jpg", + "backdropPath": "/cY7FuCOp9RdbOrZ6rmTvnOpknSJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.226, + "voteCount": 338, + "popularity": 4.4039 + }, + { + "id": 19849, + "title": "Blood+", + "originalTitle": "Blood+", + "overview": "Unable to remember the past, high school senior Saya Otonashi must rediscover her destiny in order to defeat the chiropteran vampires that threaten her loved ones' existence.", + "posterPath": "/hc7xnAqzhfocgsWzY6K8W6nu6WP.jpg", + "backdropPath": "/goD9FEuGxbSwzn8a6C0ZXIV95Dk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2005-10-08", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 273, + "popularity": 4.4007 + }, + { + "id": 245285, + "title": "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells", + "originalTitle": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "overview": "Touka always faded into the background at school. And when he’s summoned to another world with his classmates, that still doesn’t change! They all acquire top-rank skills, except Touka, who’s deemed a failure and cast to ancient ruins by the goddess Vicius. Turns out, his low-rank skills may not be so useless after all. Now, he seeks revenge against the goddess, and his true nature is revealed.", + "posterPath": "/jY95c66M8CODXtBtpfM2AQh3UuK.jpg", + "backdropPath": "/wnOyzCLRiTAdmoY8V1Dmk3AWyHg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 94, + "popularity": 4.3998 + }, + { + "id": 71919, + "title": "Future Card Buddyfight", + "originalTitle": "フューチャーカード バディファイト", + "overview": "It is the year 2030, and the stage is the capital of Japan, Chou-Tokyo. Through \"Buddyfight\", humans have started cultural interactions with residents from other worlds called \"Affinity Dimensions\". Buddyfight is a game with selected humans as the \"Buddyfighter\", and residents from the other world as the partner (known as \"Buddy Monster\"). These battles have high significance and sometimes it is even used to decide the fate of a nation, and naturally there are those who seek to use the Buddy Monsters for evil purposes.", + "posterPath": "/7YQqFws3fsAbEaawDY9jHUkcesg.jpg", + "backdropPath": "/4544SWVVeFlxdPdLE128SbR4Tsf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-01-03", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 4.3936 + }, + { + "id": 203704, + "title": "Junji Ito Maniac: Japanese Tales of the Macabre", + "originalTitle": "伊藤潤二『マニアック』", + "overview": "From the mind of horror manga maestro Junji Ito comes a spine-tingling selection of some of his most bizarre, disturbing and terrifying tales.", + "posterPath": "/eE3vyu2F8upsQujhS8IP7QiG8Hm.jpg", + "backdropPath": "/tI4A1Md9J5QHARl60TsMpekSsvg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2023-01-19", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.981, + "voteCount": 131, + "popularity": 4.3899 + }, + { + "id": 69367, + "title": "Saekano: How to Raise a Boring Girlfriend", + "originalTitle": "冴えない彼女の育てかた", + "overview": "Tomoya Aki is an otaku who has a dream. His dream is to create the best visual novel game ever. The main heroine for this game and the inspiration for this dream is a background character named Megumi Kato who somehow stumbles into main character-esque traits in his eyes. To complete the game in time he has to call upon the aid of his anime loving professional friends who aren't so keen on the choice of his main heroine.", + "posterPath": "/GP7I1yKTp6giJz2fdy0LBWo4zV.jpg", + "backdropPath": "/3HvXeJzSztADlAua3l4gjawVhPC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-01-16", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 81, + "popularity": 4.3873 + }, + { + "id": 28061, + "title": "School Days", + "originalTitle": "School Days", + "overview": "A rumor states that if you take a photo of someone you like with your cellphone and keep it hidden, they'll fall for you. Will Makoto win his love by taking a picture of Kotonoha without anyone knowing?", + "posterPath": "/5JhEzJIsBLXOshoTnBaX9499I8l.jpg", + "backdropPath": "/hUiStKQC4dDSgvENR1YUMY2HUtg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-07-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 157, + "popularity": 4.3839 + }, + { + "id": 104699, + "title": "SHAMAN KING", + "originalTitle": "SHAMAN KING", + "overview": "Medium Yoh Asakura enters a battle tournament held every 500 years, competing with other shamans in a bid to become the all-powerful Shaman King.", + "posterPath": "/teXqFftBqZJq5xPATc3WO1BwrgG.jpg", + "backdropPath": "/k6iGYjgTKmPoMTLv7e0XjZ0VG3h.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-04-01", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 299, + "popularity": 4.3693 + }, + { + "id": 236385, + "title": "T・P BON", + "originalTitle": "T・Pぼん", + "overview": "After Bon accidentally intervenes in a Time Patrol case, he must join Agent Ream in saving innocent lives from the past — while watching history unfold.", + "posterPath": "/13HE9ZZorQ3KLQrFW2KOH0dZLlW.jpg", + "backdropPath": "/8JT2teOpP9Q8BD9R1sQKnZWG8Kb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-05-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 19, + "popularity": 4.3599 + }, + { + "id": 63406, + "title": "THE iDOLM@STER Cinderella Girls", + "originalTitle": "アイドルマスター シンデレラガールズ", + "overview": "There are many idols with long-established talent agency 346 Production. And now the company is starting a new program, the Cinderella Project! Girls leading normal lives are chosen to be aspiring idols and see another world for the first time in this Cinderella story. Can they all climb the stairs that lead to the palace?\n\nThe magic begins now...", + "posterPath": "/o1Z73WXPziv3JjVpwfPbtoOMFfi.jpg", + "backdropPath": "/hFo8WcMktlZasmnM0tScJVhAjHn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-01-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 17, + "popularity": 4.3531 + }, + { + "id": 83073, + "title": "A Hot Night With My Boss in a Capsule Hotel", + "originalTitle": "終電後、カプセルホテルで、上司に微熱伝わる夜。", + "overview": "The anime centers on Minori, an office worker, and her boss Hadano, who are constantly arguing with each other. One night, after a company drinking party, Minori and Hadano are having their usual argument, when Minori realizes that she has missed the last train. They decide to spend the night at a nearby capsule hotel, but an incident forces them to share the same unit. (Source: ANN)", + "posterPath": "/ogANREOg2iRnI9J1hHX6rE19v0P.jpg", + "backdropPath": "/6m3klrwIfBZlDZtbf1DR6jK9uGX.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-10-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 4.692, + "voteCount": 13, + "popularity": 4.3432 + }, + { + "id": 96120, + "title": "SUPER HxEROS", + "originalTitle": "ド級編隊エグゼロス", + "overview": "Earth faces an unprecedented threat from an invasion by the mysterious Kiseichuu. The Kiseichuu feed on human sexual energy, also known as “H-energy,” and weaken the human population.\n\nHigh school student Retto Enjo is a member of the hero group HxEROS, who fight together to save the earth from the Kiseichuu.", + "posterPath": "/myqtIeEhLxtU5eOfv0tjRhoLod8.jpg", + "backdropPath": "/kDssH6sbp3cL3qogtTBLp7s9g63.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2020-07-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 42, + "popularity": 4.3387 + }, + { + "id": 207493, + "title": "The Aristocrat's Otherworldly Adventure: Serving Gods Who Go Too Far", + "originalTitle": "転生貴族の異世界冒険録~自重を知らない神々の使徒~", + "overview": "After dying in the act of stopping a crime in modern Japan, our hero is reincarnated as Cain von Silford, third son of a noble family in a world of swords and sorcery. In his new life, all children receive a blessing from the gods...but Cain is unexpectedly blessed with an absolutely enormous, over-the-top cornucopia of magical powers. If his dream of traveling the world as a free spirit is to come true, he can't reveal too much of his potential to the wrong people. A light-hearted, escapist adventure in another world begins!", + "posterPath": "/aH3EKIPW9XRaIJQeF7EYlOe7SEK.jpg", + "backdropPath": "/k3V9eGCWmiOTKSQTBjG48pJhDHd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.102, + "voteCount": 54, + "popularity": 4.3378 + }, + { + "id": 69295, + "title": "Masamune-kun's Revenge", + "originalTitle": "政宗くんのリベンジ", + "overview": "As a child, Masamune Makabe once suffered greatly at the hands of a wealthy and beautiful girl named Aki Adagaki, who nicknamed him \"Piggy\" due to his chubby appearance. Seeking revenge against his tormentor, Masamune works hard to improve himself and returns as an incredibly handsome, albeit narcissistic, high school student. When he encounters Aki once again, he is prepared to exact vengeance.\n\nWith the aid of the rich girl's maid, Yoshino Koiwai, Masamune slowly begins to build his relationship with Aki, intending to break her heart when the time is right. However, as his friendship with Aki begins to grow, Masamune starts to question the objectives of his devious plans, and if bringing them to fruition is what his heart truly desires.", + "posterPath": "/lOkjPZ2EO0K1H0CgRAd8SLBTOav.jpg", + "backdropPath": "/iEVC4TM0CyH0AVq4BE3AnfB7tbO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-01-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.701, + "voteCount": 353, + "popularity": 4.3356 + }, + { + "id": 37851, + "title": "Digimon Fusion", + "originalTitle": "デジモンクロスウォーズ", + "overview": "Digimon Fusion, known in Japan as Digimon Xros Wars and in Malaysia as Digimon Fusion Battles, is the sixth anime children television series in the Digimon franchise by Akiyoshi Hongō, produced by Toei Animation. It follows a boy named Taiki Kudō who utilizes the power of joining together Digimon in order to save the Digital World. The series was broadcast on TV Asahi and Asahi Broadcasting Corporation between July 6, 2010 and March 25, 2012, divided into three seasons, titled Xros Wars, The Evil Death Generals and the Seven Kingdoms, and The Young Hunters Who Leapt Through Time respectively.", + "posterPath": "/4jX2k06hM9p489ML1byyBQHEKl5.jpg", + "backdropPath": "/U413c8Oojq02PNrvDPEj2juLNt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-07-06", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 47, + "popularity": 4.3354 + }, + { + "id": 245842, + "title": "Wistoria: Wand and Sword", + "originalTitle": "杖と剣のウィストリア", + "overview": "In a world where magic reigns, Will Serfort can’t cast a spell. Though hardworking, Will’s classmates think less of him for it. However, he has a secret strength: his sword. Can Will defy expectations with muscle over magic and blade over wand? Find out in this epic sword-and-sorcery adventure!", + "posterPath": "/gxYKhO0GuPAeCb3llknWu53bYYS.jpg", + "backdropPath": "/7sGeLiMVrD0QyKWjhEbLWmZIj2w.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 84, + "popularity": 4.3343 + }, + { + "id": 53918, + "title": "Encouragement of Climb", + "originalTitle": "ヤマノススメ", + "overview": "Aoi prefers indoor hobbies and is afraid of heights, but her childhood friend Hinata loves to show off her passion for mountain climbing. As young children they once watched the sunrise from the top of a mountain, and now they've decided to take up mountain climbing in hopes of seeing that sunrise again. They have cooking battles with mountaineering gear, climb small hills in their neighborhood, and meet new mountaineering friends as they learn the ropes of the hobby. When will they finally see that sunrise again?", + "posterPath": "/rWTWz0GOw6WEzbAa5OUIpP3Ec9q.jpg", + "backdropPath": "/s8z3AiRHlwE1xgqrE9S542ohqOE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2013-01-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 25, + "popularity": 4.3334 + }, + { + "id": 56354, + "title": "Minami-ke", + "originalTitle": "みなみけ", + "overview": "There are three of the Minami sisters: Haruka, Kana and Chiaki, who have an average life. The girls only have each other to depend on and help each other get through everything from love confessions to cooking.", + "posterPath": "/zgdsmw06yv8JeLzw4Vp1ODgSrjj.jpg", + "backdropPath": "/aE01glYvPayPVK1loGmttVUWQeP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-10-08", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.222, + "voteCount": 27, + "popularity": 4.3238 + }, + { + "id": 99995, + "title": "I'm Standing on a Million Lives", + "originalTitle": "100万の命の上に俺は立っている", + "overview": "Ninth grader Yotsuya Yuusuke is practical, friendless, and not active in any clubs. Then one day, he and two female classmates are suddenly sent to another world where they must work together to battle for their lives. Yotsuya is a lone wolf and has always lived his life according to his wants, but how will that work out now that he’s supposed to be a hero?!", + "posterPath": "/vdUva7C2B1wZI2D4vjBSWJIc8IG.jpg", + "backdropPath": "/esBYtd4HLuEd5E1vlbTdBdgcdfe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 61, + "popularity": 4.3197 + }, + { + "id": 44684, + "title": "Nichijou: My Ordinary Life", + "originalTitle": "日常", + "overview": "Follow the adventures of three ordinary girls as they make life’s awkward moments a thousand times worse. Along with a colorful bunch of classmates, they learn their most important lessons the hard way. Meanwhile down the street, a pocket-sized professor makes life difficult for a robot who just wants to be normal. But normal is the last thing you can expect in a town where salmon falls from the sky. In fact, the only thing you can count on is your friends, but even they are totally weird.", + "posterPath": "/qmi1VpOvPFRHg02fbLuc3pVrMbt.jpg", + "backdropPath": "/4JVsZUZjZJgz7KZ70YRVzhdjgpK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.419, + "voteCount": 135, + "popularity": 4.3183 + }, + { + "id": 5895, + "title": "FLCL", + "originalTitle": "フリクリ", + "overview": "Naota is a normal boy who kills some time with a normal girl by a stream that flows underneath a bridge. Nothing unusual happens in this town. The fact that Haruhara Haruko crashes into the main character with her Vespa a short while later and subsequently hits him over the head with her Rickenbacker 4003 bass guitar doesn’t really make any difference to any other day here. The at first glance unconnected, bizarre events that don’t seem to follow any pattern whatsoever don’t change anything about Naota’s boring life, either – because nothing incredible ever happens in this town.", + "posterPath": "/FkgA8CcmiLJGVCRYRQ2g2UfVtF.jpg", + "backdropPath": "/uiBb01nmHwyVTSILSMKJ4WIvijc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-04-26", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 7.946, + "voteCount": 398, + "popularity": 4.3173 + }, + { + "id": 44371, + "title": "Spaceship Sagittarius", + "originalTitle": "宇宙船サジタリウス", + "overview": "Uchūsen Sagittarius is a 77-episode Japanese science fiction anime series directed by Kazuyoshi Yokota and created by Nippon Animation and TV Asahi. It aired from January 10, 1986 to October 3, 1987.\n\nThe series is based on Altri Mondi, an Italian comic book drawn by physicist Andrea Romol.", + "posterPath": "/pGlKqwpaqdig9208sgJQCi65YnB.jpg", + "backdropPath": "/bOiT83l2txv8oErjW3oae04Oq1G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1986-01-10", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 6, + "popularity": 4.3135 + }, + { + "id": 100436, + "title": "Akudama Drive", + "originalTitle": "アクダマドライブ", + "overview": "Many years ago, a Great Civil War ravaged Japan, leaving the country fragmented between two regions: Kansai and Kanto. In Kansai, a group of six Akudama carry out missions given to them by a mysterious black cat, while evading the police. But a dangerous journey is about to unfold when a civilian girl becomes twisted into the Akudama's way of life and witnesses their criminal drives.", + "posterPath": "/1s3fwsH3AjuyzObYHiptiYRgFa.jpg", + "backdropPath": "/9guUQdqCWB1P6yK35p6UJ7lhQVw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2020-10-08", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 157, + "popularity": 4.3094 + }, + { + "id": 56425, + "title": "Baki the Grappler", + "originalTitle": "グラップラー刃牙", + "overview": "Baki Hanma is a young fighter who yearns to follow in the footsteps of his father, Yujiro, and become the strongest fighter in the world. Through that he trains tirelessly and fights constantly to hone his skills and develop his body to achieve these goals. Many intense battles lay ahead of Baki as he goes about his quest to be the best and ultimately take the title of \"King\" from his father.", + "posterPath": "/2iafrubNKwB7iA7z8Y1TkHyOrsh.jpg", + "backdropPath": "/n25EHQeXdmtfTxUDpPFy8ZCnKie.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2001-01-08", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.878, + "voteCount": 333, + "popularity": 4.3081 + }, + { + "id": 72305, + "title": "Kakegurui", + "originalTitle": "賭ケグルイ", + "overview": "Hyakkaou Private Academy. An institution for the privileged with a very peculiar curriculum. You see, when you're the sons and daughters of the wealthiest of the wealthy, it's not athletic prowess or book smarts that keep you ahead. It's reading your opponent, the art of the deal. What better way to hone those skills than with a rigorous curriculum of gambling? At Hyakkaou Private Academy, the winners live like kings, and the losers are put through the wringer. But when Yumeko Jabami enrolls, she's gonna teach these kids what a high roller really looks like!", + "posterPath": "/xsZOMx3ojsER12lRHNe7TcT7YqM.jpg", + "backdropPath": "/n35AGT8JMMcbdPMxXLg4KMUuLx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Crime" + ], + "releaseDate": "2017-07-01", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.148, + "voteCount": 1532, + "popularity": 4.3058 + }, + { + "id": 278704, + "title": "Mobile Suit Gundam GQuuuuuuX", + "originalTitle": "機動戦士Gundam GQuuuuuuX(ジークアクス)", + "overview": "High-school student Amate Yuzuriha lives peacefully in a space colony floating in outer space. But when she meets a war refugee named Nyaan, Amate is drawn into the illegal mobile suit dueling sport known as Clan Battle.", + "posterPath": "/jb5d4vqHmKSQh9rB2T394e3z5To.jpg", + "backdropPath": "/rJMsUShjVc4vYwiAEZyKuQ94BX9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-04-09", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 32, + "popularity": 4.3046 + }, + { + "id": 34708, + "title": "Genshiken", + "originalTitle": "げんしけん", + "overview": "Sasahara Kanji is a college freshman who decides to join a student society to share his hidden thoughts on manga, anime and gaming. As he participates in club activities such as visiting dojin shops and anime festivals he opens his mind and resolves that he will make his way into the otaku world.", + "posterPath": "/erC2U9IB0eIJpecKE6QxuK9Rkab.jpg", + "backdropPath": "/h9IQsx7dMMJPDPRIKS44utEQOfP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-10-11", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 35, + "popularity": 4.298 + }, + { + "id": 42887, + "title": "Sayonara Zetsubou Sensei", + "originalTitle": "さよなら絶望先生", + "overview": "A teacher takes all aspects of life, word and culture in the most negative light possible.", + "posterPath": "/276AsHWttACemazdqLx9E9Iio2m.jpg", + "backdropPath": "/nslpQg01ZcjzDBUjlgB39fGnJOK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-07-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.179, + "voteCount": 39, + "popularity": 4.2868 + }, + { + "id": 31687, + "title": "Dragonaut: The Resonance", + "originalTitle": "ドラゴノーツ -ザ・レゾナンス-", + "overview": "An asteroid is headed for Earth and in order to avoid Earth's impending destruction, the ISDA create the \"Dragonaut\" after finding a dragon egg under the ocean. This weapon's primary purpose is to destroy the asteroid when the time comes. However, they soon find out that the asteroid is not their only threat, as powerful dragon-like creatures, which are bent on destruction, appear.\n\nAfter witnessing a murder by one of the creatures, Jin Kamishina, a lonely 18-year-old boy who lost his family in a shuttle accident, gets involved in the mysteries of the dragons and becomes the chosen pilot of the Dragonaut. Helping him on his journey is Toa, a mysterious girl who saves him from falling to his death after the creature attacks him.", + "posterPath": "/ecc22QKASVfzpsF3W6GkKtIAbnz.jpg", + "backdropPath": "/mbmzfrwFpcWvvRgnI3teMpAMplP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.687, + "voteCount": 259, + "popularity": 4.2766 + }, + { + "id": 61529, + "title": "Hozuki's Coolheadedness", + "originalTitle": "鬼灯の冷徹", + "overview": "Hōzuki is the aide to the great king of Hell, King Enma. Calm and super-sadistic, Hōzuki tries to resolve the various problems in Hell, including a rampaging Momotarō and his companions. However, he also likes spending his free time on his hobbies, such as fawning over cute animals and raising \"Goldfish Flowers.\"", + "posterPath": "/f1lI5HInStAwD43elO3LubKoHdc.jpg", + "backdropPath": "/mU9oVlqvyQtKIQIcdZ9CjGwuQLJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 31, + "popularity": 4.2765 + }, + { + "id": 88806, + "title": "The Demon Girl Next Door", + "originalTitle": "まちカドまぞく", + "overview": "Awakening her dormant abilities as a devil one day, Yuuko Yoshida aka Shadow Mistress Yuuko, is entrusted with the mission to defeat the Light clan's shrine maiden, a magical girl, by her ancestor Lilith. Yuuko meets magical girl Momo Chiyoda through her classmate Anri Sada, and challenges her to a duel, but loses quickly due to her lack of strength.\n\nSince then, Yuuko has struggled with her role as a devil and her duel with Momo, and borrowed help from her regularly. However, by a strange coincidence, Yuuko also weakens Momo by taking away her power to cooperate in protecting the peace of Tama city.", + "posterPath": "/jTzpBCrmWfqOdF3XoanFfpwKYZU.jpg", + "backdropPath": "/73A148n9q7TKX9gBZj8WW0s4HVU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 31, + "popularity": 4.2746 + }, + { + "id": 1097, + "title": "Ergo Proxy", + "originalTitle": "Ergo Proxy", + "overview": "In a futuristic world almost barren of life, mankind is confined to mechanized domed cities where A.I.’s control all aspects of life. In this world, humans are no longer born, they are manufactured in a production line; and alongside them live androids known as autoreivs. Within one of these domed sanctuaries named Romdeau lives Re-l Mayer, one of a few citizens who aren’t entirely prevented from thinking. Her grandfather's prominent position and the affection of the scientist Daedalus have left her more free will than is normally allowed, but Re-l has started to question the sanctity of the city and the citizens' perfect way of life. With mysterious beings known as proxies causing havoc and a man named Vincent causing great influence on her life, Re-l must travel outside of the city to find the answers she seeks and discover the mystery behind \"the awakening\".", + "posterPath": "/tHcce6PKnhNBneSMbadI4jynHpY.jpg", + "backdropPath": "/jGAgj9QztYjSsYCnZhDMgBUzQKU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2006-02-25", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.618, + "voteCount": 370, + "popularity": 4.2743 + }, + { + "id": 74094, + "title": "Our Love Has Always Been 10 Centimeters Apart.", + "originalTitle": "いつだって僕らの恋は10センチだった。", + "overview": "The moment Miou Aida first met Haruki Serizawa at the Sakuragaoka High School Entrance Ceremony they both felt an unexplainable connection. Despite their completely different personalities, they found themselves walking home together after school every day. As they spend more time together, their feelings for each other grow stronger.", + "posterPath": "/qJ4DavCdbDx29tQQNlGkC56jeKV.jpg", + "backdropPath": "/bChKb5SGjzGYqjxWutAuZF1sRWn.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 16 + ], + "genres": [ + "Comedy", + "Drama", + "Animation" + ], + "releaseDate": "2017-11-25", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 254, + "popularity": 4.2718 + }, + { + "id": 86031, + "title": "Dr. STONE", + "originalTitle": "Dr.STONE", + "overview": "One fateful day, all of humanity was petrified by a blinding flash of light. After several millennia, high schooler Taiju awakens and finds himself lost in a world of statues. However, he’s not alone! His science-loving friend Senku’s been up and running for a few months and he's got a grand plan in mind—to kickstart civilization with the power of science!", + "posterPath": "/rocRrglJfYkglKilmFaStvo5EvS.jpg", + "backdropPath": "/lN13BPAEnc5iXmoxxBQHOZ1ScfZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.543, + "voteCount": 1582, + "popularity": 4.271 + }, + { + "id": 42671, + "title": "Elfen Lied", + "originalTitle": "エルフェンリート", + "overview": "The Diclonius, a mutated homo sapien that is said to be selected by God and will eventually become the destruction of mankind, possesses two horns in their heads, and has a \"sixth sense\" which gives it telekinetic abilities. Due to this dangerous power, they have been captured and isolated in laboratories by the government. Lucy, a young and psychotic Diclonius, manages to break free of her confines and brutally murder most of the guards in the laboratory, only to get shot in the head as she makes her escape. She survives and manages to drift along to a beach, where two teenagers named Kouta and Yuka discovers her. Having lost her memories, she was named after the only thing that she can now say, \"Nyuu,\" and the two allow her to stay at Kouta's home. However, it appears that the evil \"Lucy\" is not dead just yet...", + "posterPath": "/mYakikF9MYpiRRQKnXQD6ubRHwr.jpg", + "backdropPath": "/1g7fMpp0c5tOlHoLMABx6LI7gMu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-07-25", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 8.32, + "voteCount": 1381, + "popularity": 4.2692 + }, + { + "id": 67011, + "title": "Hybrid x Heart Magias Academy Ataraxia", + "originalTitle": "魔装学園 H×H", + "overview": "Hida Kizuna possesses the HHG (Heart Hybrid Gear) ability, but it is not strong enough to make him particularly important. His older sister calls him to transfer to a strategic defense school, where many of the students (many of which are large-breasted girls) use their HHG abilities to fight invaders from another world while wearing extremely skimpy pilot outfits. Kizuna's fighting ability doesn't measure up, but his sister has another plan—apparently having erotic experiences with Kizuna will allow the girls to replenish their energy or power-up. It looks like his new school life is going to be full of embarrassment.", + "posterPath": "/s53DVqH9F2cw22O8enndCBQgTsF.jpg", + "backdropPath": "/4zGeLoH6dpVtzQAHIGTKM1SS92w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 191, + "popularity": 4.2684 + }, + { + "id": 136840, + "title": "The Demon Sword Master of Excalibur Academy", + "originalTitle": "聖剣学院の魔剣使い", + "overview": "Awakening from magical stasis after a thousand years, the Dark Lord Leonis suddenly finds himself in the body of a ten-year-old boy! He quickly meets Riselia, a girl confronting the Voids, creatures that have nearly exterminated humanity. Determined to uncover the mysteries of this strange new era, Leonis enrolls in Excalibur Academy, a school that trains students to fight back against these enigmatic monsters. Could the Voids hold some connection to Leonis's past?", + "posterPath": "/rvUIWcUg23JwWDVF7oTqLFmUe9g.jpg", + "backdropPath": "/6GQR7tE6R8RZfiLt3AMZOdco3ad.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 26, + "popularity": 4.262 + }, + { + "id": 63330, + "title": "My Wife is the Student Council President", + "originalTitle": "おくさまが生徒会長!", + "overview": "The story begins with Izumi Hayato running to be student body president. But when a beautiful girl swings in promising the liberalization of love while flinging condoms into the audience, he ends up losing to her and becoming the vice president. At the student council meeting, the newly-elected president invites herself over to Izumi's house, where she promptly announces she is to become Izumi's wife thanks to an agreement that their parents had made, a drunken promise decades ago that their children would one day become husband and wife. Naturally Hayato is against this, but Ui has the complete opposite reaction, and even wants to live with him!\n\nWill the upset Hayato and the overenthusiastic Ui be able to manage their school and marital life while keeping it a secret from the other students? Or will the two never come to understand each other's feelings?", + "posterPath": "/tcd7hgNMeK8Fv8TWvtb9uHks4lh.jpg", + "backdropPath": "/znGv00S7OKADZic4QlohGNBciV1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-02", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 44, + "popularity": 4.2574 + }, + { + "id": 52891, + "title": "YuruYuri: Happy Go Lily", + "originalTitle": "ゆるゆり", + "overview": "On her first day attending the all-girls Nanamori Middle School in Takaoka, Toyama Akaza Akari oversleeps, to be awakened by her one-year-senior childhood friends: the level-headed Funami Yui and the often self-centered Toshinou Kyouko. Planning on exciting club activities at school, Akari joins the club her older friends have set up. But as it turns out Kyouko and Yui simply took over the former room of the now defunct tea ceremony club for their own Amusement Club. In regard to what the club does, Kyouko explains: \"We just hang out and do whatever we want!\" This is not exactly what the helpful and energetic Akari had hoped for. Surprisingly a few days later Yoshikawa Chinatsu joins the club even though she mistook it for the former tea ceremony club.\n\nAnd so the four fun-loving girls could enjoy spending their spare time at the club were it not for the student council, in person of vice president Sugiura Ayano, who does her very best to shut down this unauthorized club.", + "posterPath": "/syLTfsI9B1JzvKz27btK0xK97Y8.jpg", + "backdropPath": "/dw577aCpZs62KpZ5osWcZuRVplv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-07-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.688, + "voteCount": 128, + "popularity": 4.2506 + }, + { + "id": 129516, + "title": "My Stepmom's Daughter Is My Ex", + "originalTitle": "継母の連れ子が元カノだった", + "overview": "Ah, high school. Is there any better place to start fresh after a horrible middle school relationship? Nope! Not unless your ex ends up at the same school as you and is now your stepsibling. What was supposed to be a sanctuary of peace where I could avoid ever seeing her again has become a living nightmare! Everywhere I look, I see her—in my house, in my school, in my class. There's no escape! She even claims that she's the older sibling. Like hell she is!\n\nBut I won't lose to her. After all, I'm the older brother in this new family situation. That's right, we're family now. No matter how much we may have thought we loved each other before, we saw one another's true colors and realized we weren't meant for each other. That's why even though we may keep up a buddy-buddy sibling act for the sake of our parents, things will never go back to the way they used to be.", + "posterPath": "/eQMIfN5L2eIwOeFep6Dt6H7X4kg.jpg", + "backdropPath": "/zHcOjSiEOtV553eK2ldZJevUHvO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 63, + "popularity": 4.2487 + }, + { + "id": 117706, + "title": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "originalTitle": "進化の実~知らないうちに勝ち組人生~", + "overview": "High school student Hiiragi Seiichi is bullied by his classmates for being a \"loser.\" One day, his entire school is suddenly transported to a video game-like world of swords and sorcery. When he accidentally eats \"the Fruit of Evolution,\" his life as a successful \"winner\" begins.", + "posterPath": "/5HcGeXvGybHdnKeMqKAJyCBknqI.jpg", + "backdropPath": "/szgcMnJSa7HgM0UufecKsPC1Fbg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 122, + "popularity": 4.2471 + }, + { + "id": 34075, + "title": "Yes! PreCure 5", + "originalTitle": "Yes!プリキュア5", + "overview": "Nozomi Yumehara, a regular student, finds a magical book called the Dream Collet in the library and meets Coco and Nuts, two creatures from the Palmier Kingdom. They plead with Nozomi to restore their world, which has been destroyed by an organization called the Nightmares, by completing the Dream Collet and finding the 55 Pinkies to make any wish come true. Meanwhile, the Nightmares are moving into the real world. Once Nozomi agrees to help, Coco and Nuts transform her into the legendary warrior Cure Dream and turn four fellow students into her Pretty Cure team.", + "posterPath": "/wQy3HqxoTWF3hByfIiMlVJMPolR.jpg", + "backdropPath": "/9y4CDHwiq1WMbE8OH3JKT7ElBe5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-02-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 14, + "popularity": 4.2438 + }, + { + "id": 46025, + "title": "Infinite Stratos", + "originalTitle": "IS<インフィニット・ストラトス>", + "overview": "Girls from all over the world gather at IS Academy to learn how to become IS pilots. However, since Ichika can somehow pilot the IS even though he is male, he was forced to attend IS Academy as the only male in this school.", + "posterPath": "/yNlNasqGkEwJENNT5ad3T2xU3pJ.jpg", + "backdropPath": "/xQNNHHLJj7WNUplWTKrB36pK55c.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-01-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.642, + "voteCount": 144, + "popularity": 4.2421 + }, + { + "id": 37798, + "title": "Mrs. Pepper Pot", + "originalTitle": "スプーンおばさん", + "overview": "Mrs. Pepper Pot lives in a small village with her husband, and enjoys a unique life because she has a small magic spoon that helps her reduce her size, and during that, Mrs. Pepper Pot embarks on a series of adventures during which she communicates with animals easily.", + "posterPath": "/iNriQC7e0MPUjwlBRjkQ1nOubNk.jpg", + "backdropPath": "/5RFXsrhq3d23SR7lJGouLFNHMkT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-04-04", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 10, + "popularity": 4.24 + }, + { + "id": 45116, + "title": "The King of Braves GaoGaiGar", + "originalTitle": "勇者王ガオガイガー", + "overview": "In the year 2005, a race of alien monsters emerge from underground and launch a series of attacks on the city of Tokyo. The only defense against these creatures is the awesome giant robot GaoGaiGar and its pilot, Guy Shishio.", + "posterPath": "/21KKpYBKf0mz4U1BX9S180uVhoE.jpg", + "backdropPath": "/bmv8e9LQiNhl2KccYoa42RZm3WY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-02-01", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.727, + "voteCount": 11, + "popularity": 4.2355 + }, + { + "id": 65292, + "title": "Ajin", + "originalTitle": "亜人", + "overview": "17 years ago, immortals first appeared on the battlefields of Africa. Later, rare, unknown new immortal lifeforms began appearing among humans, and they became known as \"Ajin\" (demi-humans). Just before summer vacation, a Japanese high school student is instantly killed in a traffic accident on his way home from school. However, he is revived, and a price is placed on his head. Thus begins a boy's life on the run from all of humankind.", + "posterPath": "/fnHBwIKxwrFleSzvHzTqcAzDRM.jpg", + "backdropPath": "/kOQkt6e18Fe5h9qnkd3PmffX7og.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2016-01-16", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 330, + "popularity": 4.2267 + }, + { + "id": 43232, + "title": "Kyo Kara Maoh!", + "originalTitle": "今日から㋮王!", + "overview": "After being flushed down a toilet, 15-year-old Yuuri Shibuya is transported to an alternate world called the New Demon Kingdom, and is told that he is to be the new king of the demons.", + "posterPath": "/2ez4tj98hlSN7QUcneW7NCsOpNo.jpg", + "backdropPath": "/4x1Nou6H85cG72OmEnasjRTVeJ4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2004-04-03", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 15, + "popularity": 4.2237 + }, + { + "id": 1095, + "title": "Ghost in the Shell: Stand Alone Complex", + "originalTitle": "攻殻機動隊 STAND ALONE COMPLEX", + "overview": "In the future when technological enhancements and robotics are a way of life, Major Motoko Kusanagi and Section 9 take care of the jobs that are too difficult for the police. Section 9 employs hackers, sharpshooters, detectives and cyborgs all in an effort to thwart cyber criminals and their plans to attack the innocent.", + "posterPath": "/6UH2vJryPpQp38noqvchu3uEeqX.jpg", + "backdropPath": "/2rvFW70UeOMCTXGmYHij1bwHCiu.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 80, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-10-01", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 404, + "popularity": 4.2218 + }, + { + "id": 13339, + "title": "Space Battleship Yamato", + "originalTitle": "宇宙戦艦ヤマト", + "overview": "Space Battleship Yamato is a Japanese science fiction anime series featuring an eponymous spacecraft. It is also known to English-speaking audiences as Space Cruiser Yamato; an English-dubbed and heavily edited version of the series was broadcast on North American and Australian television as Star Blazers. The first two seasons of this version were broadcast in Greece in 1981-82 as Διαστημόπλοιο Αργώ. An Italian-language version was also broadcast under the name Star Blazers in Italy, and a Portuguese-language version was successfully shown in Brazil under the title Patrulha Estelar and Viaje a la Ultima Galaxia or Astronave Intrepido in Spain and Latin America.\n\nIt is a seminal series in the history of anime, marking a turn towards more complex serious works and influencing works such as Mobile Suit Gundam and Neon Genesis Evangelion; Hideaki Anno has ranked Yamato his favorite anime and credited it with sparking his interest in anime.\n\nYamato was the first anime series or movie to win the Seiun Award, a feat not repeated until the 1985 Nausicaä of the Valley of the Wind.", + "posterPath": "/3Zzgx624eyFOmZxvmETLGlZTg20.jpg", + "backdropPath": "/irLMjcXWJEcHAdAQBn6KFYTAmuo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1974-10-06", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 14, + "popularity": 4.2171 + }, + { + "id": 34105, + "title": "Golden Boy", + "originalTitle": "GOLDEN BOY さすらいのお勉強野郎", + "overview": "Kintaro Oe is a 25-year-old boy who left Tokyo University and now lives a simple life, traveling by bicycle to learn everything he can about the world.", + "posterPath": "/ahkQ6qnqouwZw7nro2YDEYLzrNn.jpg", + "backdropPath": "/v3w1ttzuqoBWaJ17w8lv4AATMdo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1995-10-27", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 8.176, + "voteCount": 491, + "popularity": 4.2155 + }, + { + "id": 61389, + "title": "Saint Seiya: The Lost Canvas", + "originalTitle": "聖闘士星矢 THE LOST CANVAS 冥王神話", + "overview": "The Sacred war tale that took place during the 18th century is now unveiled. Tenma, Alone and Sasha, three orphans living their childhood protecting each other and then separated at diferent ages made a pact to meet again. Find themselves again connected but now in roles they never saw as posible. Pegasus, Hades and Athena. Its now time to fight but destiny can be bitter since war between Athena and Hades forces can put old friends and families face to face.", + "posterPath": "/eJNAxUHVXXUSbuc6D1ojSYH6S1r.jpg", + "backdropPath": "/gtHBhTeN7IBq0bba2QpWa7Hln8m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2009-06-24", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.278, + "voteCount": 635, + "popularity": 4.2006 + }, + { + "id": 131365, + "title": "The Wrong Way to Use Healing Magic", + "originalTitle": "治癒魔法の間違った使い方", + "overview": "An ordinary walk home from school turns into an epic journey for Usato. After suddenly being dropped into another world with two fellow students, Usato learns he was summoned there by accident. But things turn around when he discovers a unique aptitude for healing magic! Now, he trains beyond human limitations, using his self-healing abilities to gain absurd strength and unrivaled stamina.", + "posterPath": "/uQEbcmuUwDfPiVUIRCF6d57eErM.jpg", + "backdropPath": "/1WbGhlLj1z6PC6Vrz5baouodURB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 92, + "popularity": 4.1993 + }, + { + "id": 34186, + "title": "Chi's Sweet Home", + "originalTitle": "チーズスイートホーム", + "overview": "An American Shorthair kitten wanders away from her mother and siblings one day while enjoying a walk outside. Lost in her surroundings, she struggles to find her way back home. She is soon found by the Yamada family. Finding a home for her proves to be difficult, so the family eventually decides to keep the kitten, naming her \"Chi\".", + "posterPath": "/xEJmKzbOq87E7eMp0eatgmJ2DSa.jpg", + "backdropPath": "/sQ6udM8ZUNPxrOtut8T4sP27tOR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2008-03-31", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 17, + "popularity": 4.1968 + }, + { + "id": 194718, + "title": "Reborn to Master the Blade: From Hero-King to Extraordinary Squire ♀", + "originalTitle": "英雄王、武を極めるため転生す ~そして、世界最強の見習い騎士♀~", + "overview": "After living a life devoted to serving his country and people, Inglis’ one wish to be free of a king’s burden and to train was actually heard, but as a beautiful girl! Reborn in the far future as a daughter to renowned knights, Inglis can now focus on mastering the martial arts. A wish has been granted, and Inglis will be on the front lines fulfilling the dream of becoming the strongest knight.", + "posterPath": "/zrnUnV0PFWnJ1G6wDvzkQL2HL9d.jpg", + "backdropPath": "/uxOlf8zRKQ6TnEN1QxiORcJKcDf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 50, + "popularity": 4.1853 + }, + { + "id": 229609, + "title": "My Daughter Left the Nest and Returned an S-Rank Adventurer", + "originalTitle": "冒険者になりたいと都に出て行った娘がSランクになってた", + "overview": "The young adventurer Belgrieve retires to a quieter life after losing his leg to a beast. While gathering herbs in the woods one day, he rescues an abandoned child. Angeline trains with her father and later achieves S-Rank in the capital’s adventurer guild. Five years later, she decides to return home. Will Belgrieve get another chance at being an adventurer? Will Angeline return home unscathed?", + "posterPath": "/21RbBglma8tFhKBLX2UxfZ4DT8X.jpg", + "backdropPath": "/r65DFW2YePjqKjsjVRVkTNokqs1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.542, + "voteCount": 24, + "popularity": 4.1814 + }, + { + "id": 34852, + "title": "The Law of Ueki", + "originalTitle": "うえきの法則", + "overview": "The fate of the world rests on Ueki, an average junior high student. Average until he gains the power to change trash into trees. Granted to him by the enigmatic Mr K., Ueki’s strange power forces him to participate in the 100-fighter \"Battle of Supernatural Powers.\" If Ueki wins the tournament, Mr. K will become the new King of the Celestial World while Ueki will receive the \"Talent of Blank\", allowing him to choose any power he desires. However, if Ueki gets too many penalties during the game, he will disappear!", + "posterPath": "/nry8XaWoKiqVz5hLkBfeFkxUQEe.jpg", + "backdropPath": "/38KLQDWmnr2J2Lysc12JVoVEhwG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-04", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 39, + "popularity": 4.1714 + }, + { + "id": 214540, + "title": "Dead Mount Death Play", + "originalTitle": "デッドマウント・デスプレイ", + "overview": "As a legendary hero nears victory against a necromancer known as The Corpse God, things take an unexpected turn with the dark sorcerer’s final gambit—reincarnation magic. This last-ditch effort catches the brave fighter off guard, and now he’s a boy named Polka Shinoyama in a whole new world! The showdown between good and evil just got epic.", + "posterPath": "/oOlg3bPWOKBgy5kgOTVe8pJz4HI.jpg", + "backdropPath": "/tNiN29L1IaLK5uQIGMgtQvUKQVt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-11", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.83, + "voteCount": 56, + "popularity": 4.1708 + }, + { + "id": 61434, + "title": "Mysterious Joker", + "originalTitle": "怪盗ジョーカー", + "overview": "The thief Mysterious Joker doesn't just steal things. An audacious and elusive miracle-maker, he travels the world searching for treasure with his partner and cook Hachi. As they circle the globe, they must avoid traps set by the police and compete in various competitions to reach their final goal, the Timeslip Treasure.", + "posterPath": "/iECjlUSF8crdx5hST0O1VDiHmxe.jpg", + "backdropPath": "/fl15rhqmiLqIGZLAIMXQ9R0z8TM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2014-10-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.25, + "voteCount": 8, + "popularity": 4.1675 + }, + { + "id": 10620, + "title": "Maya the Bee", + "originalTitle": "みつばちマーヤの冒険", + "overview": "The adventures of a young and happy bee who is sent by her queen to search for pollen, and in doing so she finds a new world that surrounds her, making friends with various forest creatures.", + "posterPath": "/aViIrap16cmxz6dbBwI9JCremrD.jpg", + "backdropPath": "/ffqFjz0fp0Vt6y8GMhR9a1UOD9j.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1975-04-01", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 87, + "popularity": 4.1632 + }, + { + "id": 37419, + "title": "Zoids: Chaotic Century", + "originalTitle": "ゾイド", + "overview": "Set on the distant planet Zi, the story unfolds in a world where biomechanical creatures called Zoids serve as powerful weapons in the long-standing conflict between the Helic Republic and the Guylos Empire. A fragile ceasefire holds, but rising tensions and the return of ancient Zoidian technology threaten to plunge both nations back into war. The story follows Van Flyheight, a young boy who discovers Fiona, a mysterious girl with no memory, and Zeke, an Organoid capable of enhancing a Zoid’s combat abilities. Traveling with the resourceful Moonbay and the reserved mercenary Irvine, the group searches for clues to Fiona’s past. Their journey leads them across the Republic and eventually into the heart of a renewed conflict that will shape the future of Zi.", + "posterPath": "/aVGuBvoBr9ujme4uUkAIRYk5vlt.jpg", + "backdropPath": "/zCJkiqMFoxcpYPKqhIhStEeVF2c.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-09-04", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.587, + "voteCount": 358, + "popularity": 4.1531 + }, + { + "id": 82822, + "title": "Zombie Land SAGA", + "originalTitle": "ゾンビランドサガ", + "overview": "A typical morning. The usual music. Their normal lives. The peace these seven girls experience will suddenly be destroyed. By the living dead... zombies. A reality that they never wanted a part of, an amazing and terrifying zombie world. They all share one wish: \"We want to live.\" These girls will struggle through this saga, in order to achieve a miracle.", + "posterPath": "/lrY6TlF4xPVvK1K59BilkWrcPS9.jpg", + "backdropPath": "/zd3BxI5qC8U2Feg83H4tLkwLcfg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.005, + "voteCount": 184, + "popularity": 4.1518 + }, + { + "id": 70878, + "title": "Eromanga Sensei", + "originalTitle": "エロマンガ先生", + "overview": "Masamune Izumi is a high school student who writes light novels. Sagiri Izumi is an antisocial girl who never leaves her room. A year ago, she became Masamune's stepsister. But one day, Masamune discovers a terrifying revelation: the artist “Eromanga-sensei,” who illustrates his novels, is none other than his sister Sagiri! His antisocial little sister, who lives under the same roof as him, uses a spicy pseudonym and draws obscenities?!", + "posterPath": "/ot5F1TLvaoQQ0awE1zluC7skUoz.jpg", + "backdropPath": "/6hbd2zP73s9pm8ndy1xwEv7Ehem.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-04-09", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 99, + "popularity": 4.1492 + }, + { + "id": 101972, + "title": "Our Last Crusade or the Rise of a New World", + "originalTitle": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "overview": "For years, a great war has raged on between the scientifically advanced Empire and a paradise of witches known as the Nebulis Sovereignty. This age-old battle sets the scene for a fateful encounter between two young combatants: an imperial swordsman, Iska, and the witch princess, Aliceliese. As sworn enemies, they vow to cut each other down in order to unite their worlds, and yet Iska finds himself entranced by her beauty and righteousness, while Aliceliese is moved by his strength and resolve. In the midst of a never-ending war that forbids them from being together, they have no choice but to destroy each other-or find another way.", + "posterPath": "/1VtaTXsHTRfh8m49OVJfMb4JVuh.jpg", + "backdropPath": "/gjUkdl62eBtxAl4L4Xurm5UBZ0x.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2020-10-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 240, + "popularity": 4.1474 + }, + { + "id": 35507, + "title": "Marmalade Boy", + "originalTitle": "ママレード・ボーイ", + "overview": "Miki's parents come home from their vacation to announce that they are getting a divorce. But what is more shocking is that they have switched partners with another couple! And to top things off, this other couple has a handsome son, Yuu, who Miki begins to develop feelings for. To make things more disturbing, everyone moves into one house. What will everyone think about Miki's family lifestyle?", + "posterPath": "/u4WOnZT6UYdjKzAuwiJtjTbBtvD.jpg", + "backdropPath": "/php69V5IfHB6MnM2vQKsYywms3k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1994-03-13", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.643, + "voteCount": 21, + "popularity": 4.1474 + }, + { + "id": 83314, + "title": "Tsurune", + "originalTitle": "ツルネ", + "overview": "After target panic drives him from archery in middle school, Minato decides to return to the sport when his friends join the high school kyudo club.", + "posterPath": "/o9hGhB8UpGOUVXlcn2oyE7kCYS8.jpg", + "backdropPath": "/Aq8mDnF6tSVXCRXmkva5SIOENW1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-10-22", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 32, + "popularity": 4.1426 + }, + { + "id": 67324, + "title": "Crayon Shin-chan Spin-off", + "originalTitle": "クレヨンしんちゃん外伝", + "overview": "Unlike the main television anime series which is mostly set in modern-day Japan, the new series will be a \"sealed room\" suspense comedy set 100 years in the future. The story begins when Shinnosuke and the entire Nohara family wake up from cold sleep to find themselves aboard a space ship drifting in space. The anime will depict the various events that take place inside the ship.", + "posterPath": "/zL7zV68jIpq2IBOtlK38mlwfgI9.jpg", + "backdropPath": "/db8beCPfDT67NvUFKtY3k5NVhnu.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Comedy" + ], + "releaseDate": "2016-08-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 4.1338 + }, + { + "id": 232926, + "title": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "originalTitle": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "overview": "Rishe, the duke’s daughter, is no stranger to reincarnation—it’s her seventh life, after all. Each life restarts at her broken engagement. Having been a merchant, a maid, and a knight, she now desires leisure. But her world changes when a prince, who killed her in a past life, proposes! To prevent war and live to a ripe old age, she begins her seventh life as the bride of an enemy nation’s prince.", + "posterPath": "/5k7bkqolsaJVCj321gLkuikk2Ax.jpg", + "backdropPath": "/h7XtT43z3UffjdwbWkOeR3vGkaV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.833, + "voteCount": 78, + "popularity": 4.1242 + }, + { + "id": 156898, + "title": "BASTARD‼ -Heavy Metal, Dark Fantasy-", + "originalTitle": "BASTARD!! -暗黒の破壊神-", + "overview": "When evil forces threaten to resurrect Anthrasax, the God of Destruction, the Kingdom of Meta-llicana calls on a volatile dark wizard for help.", + "posterPath": "/l9JU3dlMumuRXxHilT6RSWQ5OT9.jpg", + "backdropPath": "/3KoMq6ll73zwb3ZiY04DmgAozDl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-06-30", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 134, + "popularity": 4.1133 + }, + { + "id": 113256, + "title": "Banished from the Hero's Party, I Decided to Live a Quiet Life in the Countryside", + "originalTitle": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "overview": "After being betrayed by the Hero’s party, Red hopes to start anew by opening an apothecary in a small town. He wants to keep his past life secret, but it won’t be easy...especially when a beautiful adventurer from his past asks to move in.", + "posterPath": "/hk5qqvJLRBDaPYBc8lKkSYQrR1c.jpg", + "backdropPath": "/vSgHoghjoAdVSi1GnGmfeEO6JRx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 86, + "popularity": 4.1112 + }, + { + "id": 61752, + "title": "Hellsing Ultimate", + "originalTitle": "ヘルシング アルティメット", + "overview": "For over a century, the mysterious Hellsing Organization has been secretly protecting the British Empire from the undead. When Sir Integra Hellsing succeeded as the head of the organization, she also inherited the ultimate weapon against these supernatural enemies: Alucard, a rogue vampire possessing mysterious and frightening powers. Now, Hellsing must deal with a more dangerous threat than vampires.", + "posterPath": "/cz8vNiws00m8tzIpdBCPFgUuBYw.jpg", + "backdropPath": "/mz5L2zlZuMlQwVE8Yxvb2YK1wsl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-02-10", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.411, + "voteCount": 670, + "popularity": 4.1067 + }, + { + "id": 45799, + "title": "K", + "originalTitle": "K", + "overview": "Shiro is an easygoing teenager content with just being a student—until his seemingly perfect life is halted when a bloodthirsty clan, glowing red with fire, attempts to kill him in the streets. Unbeknownst to Shiro, he is suspected of murdering a member of their clan and will need a miracle to escape their vengeance. Miraculously, a young man named Kurou Yatogami swings in and aids Shiro in his getaway, only to reveal he's also after Shiro's life. Now a hunted man, Shiro will have to evade the clans of seven powerful kings and desperately try to prove his innocence—before it’s too late!", + "posterPath": "/52eQfCm8yGEQHNZefyHr6uIysqt.jpg", + "backdropPath": "/bYo6FuWOWJuZTu7dqo5H3M1b7z4.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2012-10-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 88, + "popularity": 4.1065 + }, + { + "id": 116725, + "title": "Vivy: Fluorite Eye's Song", + "originalTitle": "Vivy -Fluorite Eye's Song-", + "overview": "In the near future, Vivy, a diva-type A.I., went up on stage each day with hopes of putting her heart into her song. One day, the A.I. Matsumoto, who claims to have arrived from 100 years in the future, appears before Vivy with an important request...", + "posterPath": "/xRakd62ihUP19NBgWyJzjO26NxE.jpg", + "backdropPath": "/fOlKY2rpDnoxcWU6a0Z4dpRA61d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-04-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.009, + "voteCount": 159, + "popularity": 4.1061 + }, + { + "id": 20757, + "title": "Stitch!", + "originalTitle": "スティッチ!", + "overview": "Stitch! is the anime adaptation of the animated feature film Lilo & Stitch and the successor for the Lilo & Stitch series by Walt Disney Animation Studios. In the new story, the alien creature Stitch is running off on the mad scientist Jumba's space scooter when he gets caught in a space storm and has to make an emergency landing at Izayoi Island, the southermost tip of Japan. There, he meets Yuuna, a spirited fourth-grade girl who happens to know karate. Yuuna tells Stitch about the Stone of Chitama, a mysterious object that can make any wish come true. However, he has to perform 43 good deeds to receive his wish.", + "posterPath": "/ZS5phbVCUztNug8rUGZgyT5S0P.jpg", + "backdropPath": "/vXPYcENWzFGZG4cu35s8O7d6mmQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-08", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 9, + "popularity": 4.1031 + }, + { + "id": 274671, + "title": "The Beginning After the End", + "originalTitle": "最強の王様、二度目の人生は何をする?", + "overview": "After a mysterious death, King Grey is reborn as Arthur Leywin on the magical continent of Dicathen. Although he enters his second life as a baby, his previous wisdom remains. He begins to master magic and forge his own path as the years go by, seeking to correct the mistakes of his past life.", + "posterPath": "/u0QWnKUhxcxecQSclMBNnO5MXh.jpg", + "backdropPath": "/epPoqwhas9lhZasJ9yVYJod2GQa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2025-04-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 43, + "popularity": 4.0981 + }, + { + "id": 98903, + "title": "Mewkledreamy", + "originalTitle": "ミュークルドリーミー", + "overview": "A middle school girl named Yume sees something fall from the sky, and meets a pale violet-colored kitten named Mew. It turns out that Mew has the power of \"Yume Synchro\" (Dream Synchro), the power to enter dreams. In the dream world, the girl and Mew collect Dream Stones.", + "posterPath": "/fp8MhdmqSVg9w3FpWBT5CAdYvLH.jpg", + "backdropPath": "/9wd3qVabwEjTQilmyDdcD4NCIey.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 7, + "popularity": 4.0962 + }, + { + "id": 42729, + "title": "The Twelve Kingdoms", + "originalTitle": "十二国記", + "overview": "Nakajima Youko is your average somewhat timid high school student. One day, a strange man named Keiki appears before her, swearing allegiance. Before she could properly register what was happening, demon-like creatures attack Youko and her friends, after which they are pulled into a different world. A world unlike what she has ever known. Separated from Keiki, Youko and her friends must do whatever they can if they wish to survive in this new world.", + "posterPath": "/miv7pBSxdbFUs4Un5SfHHMoSx5y.jpg", + "backdropPath": "/fB2k11exO93IeWnpwrY1mzE89ul.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2002-04-09", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 46, + "popularity": 4.0844 + }, + { + "id": 234995, + "title": "Sengoku Youko", + "originalTitle": "戦国妖狐", + "overview": "Humans and katawara are at war, but there are those on each side who join forces. Tama is a fox spirit who loves humans, while her sendou brother, Jinka, despises them. Together, they use the power of spirit transformation to defeat the monstrous katawara and put an end to the evils of this chaotic age. What destiny awaits the duo at the end of their journey?", + "posterPath": "/rLeQZRlvJmXnIIV65lNOO3RGrqP.jpg", + "backdropPath": "/b7gnYXCCKSOpsKhuotDx0892yhl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-01-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.875, + "voteCount": 24, + "popularity": 4.0839 + }, + { + "id": 36041, + "title": "Bakuman", + "originalTitle": "バクマン。", + "overview": "Moritaka Mashiro and Akito Takagi are pretty much foils of each other. Mashiro, an average 9th grade student but talented artist, and Takagi, an overall advanced 9th grader and aspiring writer. After great convincing, Takagi convinces Mashiro to join him in becoming the greatest mangakas Japan has ever seen. Takagi, with his gift of writing, hopes to become a successful mangaka, and Mashiro, with his gift of art, hopes to marry the girl of his dreams, Azuki Miho.", + "posterPath": "/fwch4T5aUDPuJ6zUzkub8prfhtI.jpg", + "backdropPath": "/2tbcQK7H3t1ia3pArvNt4ZXyL7T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2010-10-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.136, + "voteCount": 143, + "popularity": 4.0713 + }, + { + "id": 194831, + "title": "Immoral Guild", + "originalTitle": "不徳のギルド", + "overview": "The skilled hunter Kikuru Madan has decided to retire out of fear of wasting his youth. One day, a guild staff member suggests that he go on a quest with a new female martial artist named Hitamu Kyan. However, she keeps getting hit by monsters one after another.", + "posterPath": "/lDqRJgunhvkHLJaH7BZjVtA1GzA.jpg", + "backdropPath": "/cBCb40cX8539PVKFXZ7N6aJlHsu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.904, + "voteCount": 26, + "popularity": 4.0611 + }, + { + "id": 248866, + "title": "My Deer Friend Nokotan", + "originalTitle": "しかのこのこのここしたんたん", + "overview": "Koshi Torako has everyone fooled. Her classmates see her as the perfect honor student, unaware of her secret delinquent past. But her new picturesque school life is thrown into chaos when she bumps into Shikanoko Noko, a girl with antlers! Mayhem seems to follow this strange doe-eyed girl. Who, or what, is she?", + "posterPath": "/1kj6PyMoL5J4GrBlFrGieXGkJUr.jpg", + "backdropPath": "/wd9FCguhc8MQDUZG7Pz2klzGBOL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.753, + "voteCount": 73, + "popularity": 4.0591 + }, + { + "id": 234910, + "title": "Tying the Knot with an Amagami Sister", + "originalTitle": "甘神さんちの縁結び", + "overview": "Uryu Kamihate is a high school student hoping to enroll in Kyoto University’s medical school. After being taken in by the chief priest at Amagami Shrine, he is told he must marry one of three maiden sisters—Yae, Yuna, or Asahi—to live at, and one day inherit, the Amagami Shrine. Kamihate will need to sweep one of the maidens off her feet in this story of romance, friendship, and fun.", + "posterPath": "/15xFmoqTEryUWL7kUjY1QSby8XY.jpg", + "backdropPath": "/9NIyeGexonYn4ETKp9PkziPnkry.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-10-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 15, + "popularity": 4.0563 + }, + { + "id": 100988, + "title": "Higurashi: When They Cry - NEW", + "originalTitle": "ひぐらしのなく頃に 業", + "overview": "New kid Keiichi Maebara is settling into his new home of peaceful Hinamizawa village. Making quick friends with the girls from his school, he's arrived in time for the big festival of the year. But something about this isolated town seems \"off,\" and his feelings of dread continue to grow. With a gnawing fear that he's right, what dark secrets could this small community be hiding?", + "posterPath": "/rZocpkrc1qrntJXR2gbVPLWPAlk.jpg", + "backdropPath": "/8fsV0aqSHQlbyvZlWyynruat0MP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-10-01", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 48, + "popularity": 4.053 + }, + { + "id": 45209, + "title": "Space Brothers", + "originalTitle": "宇宙兄弟", + "overview": "When they were young, the brothers Mutta and Hibito promised each other they would become astronauts. Now, in 2025, Hibito has followed his dream to become the first Japanese on the moon, but Mutta has just been fired from his job. His brother reminds him of their childhood promise, and Mutta decides once again to aim for space.", + "posterPath": "/3o6W53edDLWtYOE2fCLK3154mIV.jpg", + "backdropPath": "/qAFZFYzKOtGPV3u4AuuYl2fYVFh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-03-31", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 22, + "popularity": 4.0488 + }, + { + "id": 8838, + "title": "Texhnolyze", + "originalTitle": "TEXHNOLYZE", + "overview": "Denizens of Lux have come to call it \"The City\" and treat it as a sentient force. Three factions vie for control of the city: the Organo, a strictly professional conglomerate with ties to the criminal underworld in the prosthetics business; the Union, a fanatical populist group interfering with Organo's affairs; and Racan, a marauding group of Texhnolyzed youths.", + "posterPath": "/4ZVfHLBx6UMIa6jxWNQ5GcIvqOX.jpg", + "backdropPath": "/2WF4740oFcY5O89K2ktexCfyx9G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-04-17", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 67, + "popularity": 4.0464 + }, + { + "id": 62569, + "title": "Go! Princess PreCure", + "originalTitle": "Go! プリンセスプリキュア", + "overview": "Go! Princess PreCure is set in a boarding junior high school, named Noble Academy. The protagonist Haruka Haruno is a 13-year-old first-year student. Her big dream is to be a princess someday because she admired a princess in the picture book she has kept since her childhood. One day, she transforms into Cure Flora with the \"Dress Up Key\" which Prince Kanata of Hope Kingdom gave her as a good luck charm when she was little. Then she also finds other Pretty Cure girls in her school, 14-year-old Minami Kaidou as Cure Mermaid and 13-year-old Kirara Amanogawa as Cure Twinkle. As the Princess Pretty Cure team, with two fairies Pafu and Aroma, they fight against the dark witch Dyspear, who hates all the dreams in the world and wants to turn them to despair.", + "posterPath": "/uVwqlyJ6oqk4eRXYR7QIccFJ8pd.jpg", + "backdropPath": "/ihXmTqQQaFNLP3W53z8ZxeCPuAy.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 35, + 10759, + 10751, + 18, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Comedy", + "Action & Adventure", + "Family", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-02-01", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 12, + "popularity": 4.045 + }, + { + "id": 35579, + "title": "Princess Sarah", + "originalTitle": "小公女セーラ", + "overview": "Sarah Crewe, the young daughter of a wealthy Englishman in India, starts attending a prestigious boarding school in London. However after a series of unexpected tragic events, she is forced to become a maid at the school.", + "posterPath": "/gCYJnaNl2Ekym2l2IEx2dFsrjnp.jpg", + "backdropPath": "/tO5S51guxvWG2tgUQ5AZPmRULQQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1985-01-06", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 45, + "popularity": 4.0448 + }, + { + "id": 1043, + "title": "Ouran High School Host Club", + "originalTitle": "桜蘭高校ホスト部", + "overview": "New student Haruhi stumbles on the Ouran High School Host Club, an all-male group that makes money by entertaining the girls of the school.", + "posterPath": "/2bO4wYNTYSC2mV0YvomZtaHRLMp.jpg", + "backdropPath": "/77TdSJAkYelWhEeBEZ8pR3Ns6To.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.187, + "voteCount": 233, + "popularity": 4.0447 + }, + { + "id": 91426, + "title": "Jewelpet", + "originalTitle": "ジュエルペット", + "overview": "A junior high school student named Rinko becomes partners with a rabbit Jewelpet named Ruby. Together they try to find the Jewel Charms that dropped from Jewel Land into the world of the humans. Along with their friends, Rinko and Ruby help others solve their problems while using the magic of Jewelpets.", + "posterPath": "/750II7VWRTSedLfpv7n6L1iVNLC.jpg", + "backdropPath": "/lE501tGuJt5rgPsbdYxmbh3vGWx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 6, + "popularity": 4.0274 + }, + { + "id": 22104, + "title": "Touch", + "originalTitle": "タッチ", + "overview": "Twins Kazuya and Tatsuya, and their neighbor Minami have played together since they were children and built an unbreakable bond. But with puberty, the twins realized something: Minami is a girl, and three is a crowd.\n\nAs the trio tries to preserve their relationship, Kazuya's pledge to make Minami's dream come true by taking her to Koshien with his baseball pitching skills makes the slackerish Tatsuya wonder about himself, and his own goals. But Minami has another dream she wants fulfilled, and as the twins continue to push themselves, with Minami in the middle, a life-changing tragedy leads one twin down a path he once never would've considered...", + "posterPath": "/zPwmMiIOZvUQXeSAf8vnKdfguYd.jpg", + "backdropPath": "/j5K8sZEb0vVGlgBVauGKypgEine.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1985-03-24", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 9.238, + "voteCount": 21, + "popularity": 4.0134 + }, + { + "id": 37508, + "title": "Pretty Cure", + "originalTitle": "ふたりはプリキュア", + "overview": "Nagisa Misumi and Honoka Yukishiro couldn't be more different. Nagisa is sporty and Honoka bookish, and while they attend the same school, they have very little in common - until one day, a shower of shooting stars brings two very unlikely visitors into their lives: Mepple and Mipple, refugees from the Garden of Light, which has been conquered by Darkness. Endowed with new and startling powers, Nagisa and Honoka become Cure Black and Cure White, the legendary warriors of light - together, they are Pretty Cure.", + "posterPath": "/6mpebL9rM6Dobd0xy6Bwlhj9WYt.jpg", + "backdropPath": "/49KwlG377i8sBNBAZ8k3PZfkBOj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-02-01", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 25, + "popularity": 4.0024 + }, + { + "id": 70637, + "title": "Akashic Records of Bastard Magic Instructor", + "originalTitle": "ロクでなし魔術講師と禁忌教典", + "overview": "The Alzano Imperial Magic Academy is located in the southern part of the Alzano Empire and is among most prominent magic schools in the world, where students can learn the highest forms of magic. All those who strive to learn magic dream of studying at this academy, and its students as well as its teachers are proud to be a part of its 400-year history. Glenn Radars is a new instructor who has suddenly been appointed to teach part-time at this highly respected academy. The previously unheard-of lessons of this man known as a good-for-nothing bastard are about to begin.", + "posterPath": "/8tfinAIY4SJu6hqdT1AyQBVkTLj.jpg", + "backdropPath": "/raZ0xTSdRhZIMQYChKdhUMyWMAa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.385, + "voteCount": 588, + "popularity": 3.9915 + }, + { + "id": 65945, + "title": "Kabaneri of the Iron Fortress", + "originalTitle": "甲鉄城のカバネリ", + "overview": "In the midst of an industrial revolution, the people of Hinomoto fight hordes of undead creatures, known as Kabane, using powerful armored trains.", + "posterPath": "/a9lY3DCLU3DWvUshho6hAX2hKKh.jpg", + "backdropPath": "/rGpgCQbdWvAThLKASFlFWWPdj3r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.858, + "voteCount": 179, + "popularity": 3.9874 + }, + { + "id": 86823, + "title": "Miru Tights", + "originalTitle": "みるタイツ", + "overview": "Inspired by mangaka Yomu’s fascination with women’s legwear presented in his art book “Yomu Tights”, “Miru Tights” takes us into a world of sheer tights and beautiful women’s legs. The bright Homi Moemi, the serious and ambitious Ren Aikawa, and the cheerful, albeit somewhat naïve Yua Nakabeni have been friends for a long time and of course, their tights are part of their everyday attire! While Homi likes to jump into the biggest puddles she can find on rainy days, and Yua devotes herself completely to cosplay – much to the delight of her numerous followers on Twitter – Ren is more serious and works at a small café in her free time.", + "posterPath": "/hvFKwK0g4FGXXMllfjZ28LWBcHA.jpg", + "backdropPath": "/fF9CNg5qeBb900qTM7Z9k0x6Pev.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-05-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 36, + "popularity": 3.9848 + }, + { + "id": 42981, + "title": "HeartCatch PreCure!", + "originalTitle": "ハートキャッチプリキュア!", + "overview": "Tsubomi Hanasaki is a girl in the second grade of middle school who likes flowers and plants. One day she experiences a weird dream. In that dream, a large blooming tree appears. Suddenly, it loses all of its flowers and 2 fairies appear. A few days later after Tsubomi has transferred to Myoudou Academy, suddenly the fairies from the dream appear before her and plead to Tsubomi to become the legendary warrior Pretty Cure, and protect the Heart Tree. However, Tsubomi declines as she doesn't think that she would be able to do that. However, a mysterious enemy suddenly strikes and steals the Heart Flower of her classmate, Erika Kurumi. Now she doesn't have a choice. To retrieve Erika's Heart Flower, she has to transform into a Pretty Cure and fight. Working up the courage, Tsubomi turns into Cure Blossom and a new chapter of Pretty Cure begins!", + "posterPath": "/7WtUvsp45AJXRsitHbZdGmDqeJv.jpg", + "backdropPath": "/4RqKpKKGuBXDp28LGYeUbST92yM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Family", + "Kids" + ], + "releaseDate": "2010-02-07", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 10, + "popularity": 3.9837 + }, + { + "id": 62601, + "title": "Rin-ne", + "originalTitle": "境界のRINNE", + "overview": "As a child Sakura Mamiya mysteriously disappeared in the woods behind her grandma's home. She returned whole and healthy, but since then she has had the power to see ghosts. Now a teenager, she just wishes the ghosts would leave her alone! At school, the desk next to Sakura's has been empty since the start of the school year, then one day her always-absent classmate shows up, and he's far more than what he seems!", + "posterPath": "/aWTAIftIb2pEnOPyXRDgpscJOKK.jpg", + "backdropPath": "/3fBRFTy6qKksHhJt9DzKJMmlh4w.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10749 + ], + "genres": [ + "Comedy", + "Animation", + "Romance" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 12, + "popularity": 3.98 + }, + { + "id": 12143, + "title": "Azumanga Daioh", + "originalTitle": "あずまんが大王 THE ANIMATION", + "overview": "Ten year old child prodigy, Chiyo Mihama, is finding it tough fitting in at high school with the girls five years her elder: Osaka (dimwitted with a weird take on the world), Tomo (a powder keg that goes off at a moment’s notice), Kagura (the competitive athlete of the bunch), Yomi (the hothead), and Sakaki (timid and obsessed with a love of animals that isn’t reciprocated). Together with their teacher, they navigate the rough waters and fun times of high school.", + "posterPath": "/rvKqdJUmTjx99sOapCrTjIvwYP2.jpg", + "backdropPath": "/pJjSRchPAIpk1f9JsVlkLKx1oXj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2002-04-08", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 102, + "popularity": 3.9758 + }, + { + "id": 239287, + "title": "Terminator Zero", + "originalTitle": "ターミネーター 0", + "overview": "A warrior from a post-apocalyptic future travels to 1997 to protect an AI scientist being hunted by an unfeeling — and indestructible — cyborg.", + "posterPath": "/v4sbn6IsJGAIZNHjdB4CprvS7zo.jpg", + "backdropPath": "/woH18JkZMYhMSWqtHkPA4F6Gd1z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-08-29", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.08, + "voteCount": 187, + "popularity": 3.9738 + }, + { + "id": 220286, + "title": "Ishura", + "originalTitle": "異修羅", + "overview": "A host of demigods have inherited the world after the Demon King has died, and a battle to determine the mightiest ensues.", + "posterPath": "/twNBSlJ6mbKGjbmhkKF09BeeCkD.jpg", + "backdropPath": "/4QJjj63L1pfhiF9rSRAVbwB4lLp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.758, + "voteCount": 31, + "popularity": 3.97 + }, + { + "id": 247045, + "title": "Nyaight of the Living Cat", + "originalTitle": "ニャイト・オブ・ザ・リビングキャット", + "overview": "A virus turns humanity into feral cats, leaving a few survivors to fight back. Kunagi, a man with no past but vast cat knowledge, struggles to survive. However, the virus spreads through cuddles—can he resist the adorable menace?", + "posterPath": "/8RK3ejKdkw5KrUNzcURiwGpi9xO.jpg", + "backdropPath": "/gdBQEXiG6X9SOgFLhGOnPJJ23BN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-07-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 15, + "popularity": 3.9691 + }, + { + "id": 82879, + "title": "RADIANT", + "originalTitle": "ラディアン", + "overview": "Seth is a boy who seeks to become a great magician, and a group of witches who seek to travel to the Radiant. Radiant is a mythical land that spawns monsters called \"Néméses\" which fall to the world from the sky. While traveling, they are also hunted by The Inquisition.", + "posterPath": "/yPeqnwD63wf23ZHlzEFeQLnZD3K.jpg", + "backdropPath": "/qjv2SeySNKodyX3CgpTWbhM31M4.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 121, + "popularity": 3.9664 + }, + { + "id": 53715, + "title": "Little Busters!", + "originalTitle": "リトルバスターズ!", + "overview": "Riki was a child when his parents died, leaving him hopeless and depressed. What saved him was a group of four kids calling themselves the Little Busters. They took Riki out and played with him during his time of need. He really enjoyed being together with them, and his grief gradually faded away. Now in his second year of high school they still hang out, fight and live together, and enjoy their school life.", + "posterPath": "/iyt2vTDIfpfBXKt7uTQn67YZK8z.jpg", + "backdropPath": "/y0h1OGpj79xvbqlTiQB4dSUh9qN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2012-10-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 17, + "popularity": 3.966 + }, + { + "id": 56351, + "title": "The World God Only Knows", + "originalTitle": "神のみぞ知るセカイ", + "overview": "Keima is a dating sim champion. Cute girls are rendered powerless by his irresistible game playing techniques. Too bad things aren't that way in the real world. That is, until his tempting game playing causes a real live—and very bubbly-cute—demon hunter named Elsie to materialize! Now Elsie wants Keima to help her free hot girls from sneaky demons who secretly possess them.", + "posterPath": "/7OmvlaTEivrL1WsHAnLu4D3RnUt.jpg", + "backdropPath": "/ZxQglWQ4w98DXm70ydAwyzi7lZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-08", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 46, + "popularity": 3.9637 + }, + { + "id": 103830, + "title": "The Titan's Bride", + "originalTitle": "巨人族の花嫁", + "overview": "Koichi, a student about to graduate, is summoned to a world of Titans. It's the land of Tildant, where the prince, Caius, appears in front of Koichi and says, \"I want you to be my bride and give birth to my baby!\"", + "posterPath": "/bYaYGcY4lNLkvuxYupTRwRrnaqQ.jpg", + "backdropPath": "/kLVtqq3yiDU8sXvGizqy1bbBHl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.483, + "voteCount": 29, + "popularity": 3.9598 + }, + { + "id": 152271, + "title": "Ninjala the Animation", + "originalTitle": "ニンジャラ", + "overview": "After years of experiments, three researchers finally create Ninja-Gum. This substance awakens dormant power within people descended from ninjas, but its creation isn’t without consequences and will lead them to the mysterious Ninjala Tournament.", + "posterPath": "/2EkTiYPBvW3R1221Sk4436PkoHt.jpg", + "backdropPath": "/hF1LFAol3GaubZ6YkDR6AQeJz7q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 6, + "popularity": 3.9556 + }, + { + "id": 64375, + "title": "Mobile Suit Gundam: Iron-Blooded Orphans", + "originalTitle": "機動戦士ガンダム 鉄血のオルフェンズ", + "overview": "On a terraformed post-disaster Mars, a group of child security agents rebel against the adults who betrayed them and the oppressive Earth government.", + "posterPath": "/x5M9yxvBhrUP4rsKSl3d9VzK7O.jpg", + "backdropPath": "/52mp7oFltDUkw3kx1ArlRZkLyr3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 10765 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.482, + "voteCount": 57, + "popularity": 3.954 + }, + { + "id": 237529, + "title": "Medalist", + "originalTitle": "メダリスト", + "overview": "Tsukasa Akeuraji, a frustrated skater, meets Inori Yuitsuka, a girl who yearns to be a figure skater. Motivated by Inori's obsession on the rink, Tsukasa begins coaching Inori. Inori's talent blossoms, and Tsukasa becomes a brilliant mentor. Together they aim to make her a glorious medalist!", + "posterPath": "/hK5eKFaj99mZwpmILnvKehWe9t1.jpg", + "backdropPath": "/lUZ6ThctsCMee63Cu02F1F6rgC1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-01-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 38, + "popularity": 3.9507 + }, + { + "id": 62068, + "title": "Cackling Kitarou", + "originalTitle": "ゲゲゲの鬼太郎", + "overview": "The classic tale of Gegege no Kitaro told yet again. The story is the usual in the Gegege no Kitaro series. Kitaro is a boy living in the Gegege Forest/Cemetery (lands where many Yokai roam) with his mostly dead father (who survives only in his eye), Sunakake Babaa, NekoMusume, and Konaki Jiji. One difference between this Kitaro and all of the others that came before him, is that this one has brown hair instead of the standard grayish silver.", + "posterPath": "/1oQI6xLEQbqJRrNcyFB0MxWKLuY.jpg", + "backdropPath": "/vExXJEVz2g9AELIGGA51OMAZgtv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2007-04-01", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 5, + "popularity": 3.9485 + }, + { + "id": 235389, + "title": "Re:Monster", + "originalTitle": "Re:Monster", + "overview": "After meeting an untimely death, Tomokui Kanata is reincarnated as a lowly goblin, but he's worked up a monstrous appetite. Thanks to his new ability that allows him to grow stronger the more he feeds, his feeble status quickly changes, and he rises to become the goblin leader. With a mix of his past memories, new body, and strong stomach, he's taking a bite out of this new fantastical world!", + "posterPath": "/AmFrA0jX0p9twH1IKfxcGWVz2X3.jpg", + "backdropPath": "/2VjHbqr00cPvT2U4Vy0JnWT8Fcz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.109, + "voteCount": 128, + "popularity": 3.9459 + }, + { + "id": 24912, + "title": "Detective School Q", + "originalTitle": "探偵学園Q", + "overview": "The story began in a classroom of a middle school. Our main character, Kyu, when called by the guidance counselor, declared that he wanted to be a detective. He took the entrance exam to Dan Detective School where talented people from the whole country gather. He passed the difficult entrance exam for the so-called \"Q class\" (Q = qualified), which is personally instructed by the founder and head master of the school, the legendary famous detective, Dan Morihiko. There he got to know Minami Megumi (Meg) with her photographic memory ability, Touyama Kintarou (Kinta) - the descendant of \"Kin-san\" from Touyama, Narusawa Kazuma (Kazuma) - a genius programmer, and Amakusa Ryu (Ryu) - the weird Todai (Tokyo University) student. The five of them work together, as well as competing each other, heading towards graduation.", + "posterPath": "/8Q2ZxmzSLACTNOEx20qG989Z1S9.jpg", + "backdropPath": "/8mxmAnUcPGhmcAeJXwsEzJX8PKN.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2003-04-15", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 3.9437 + }, + { + "id": 277665, + "title": "Anne Shirley", + "originalTitle": "アン・シャーリー", + "overview": "On the beautiful Prince Edward Island in Canada, an orphan named Anne Shirley is mistakenly sent to Green Gables, the home of Matthew and Marilla Cuthbert. They choose to adopt her anyway, as Anne finds friendship, love, and happiness in her new home. Come along for the story of a purehearted and imaginative girl growing up, leaving for college, and returning home a changed woman.", + "posterPath": "/ttSQg44aZMwcwotm4cBAzsh5KcB.jpg", + "backdropPath": "/wu36nyFmJVZOHjV2MNhFMmmA8ja.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10751 + ], + "genres": [ + "Animation", + "Drama", + "Family" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 24, + "popularity": 3.9415 + }, + { + "id": 124396, + "title": "Sonny Boy", + "originalTitle": "Sonny Boy", + "overview": "On August 16, midway through a seemingly endless summer vacation, middle school third-year student Nagara, transfer student Nozomi, classmates Mizuho, Asakaze and their entire class are suddenly transported from their tranquil lives to a school adrift in an alternate dimension. They must survive with the super powers that have awakened within them.", + "posterPath": "/et4MvCxAQqw0jd8xEQ7U1DSr0Gv.jpg", + "backdropPath": "/rgmBS8zkk6RrGUOdWqzZs8hjZer.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-16", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 75, + "popularity": 3.9316 + }, + { + "id": 26453, + "title": "TRIGUN", + "originalTitle": "TRIGUN", + "overview": "Trigun takes place in the distant future on a desert planet. Vash the Stampede is a gunfighter with a legend so ruthless he has a $$60,000,000,000 bounty on his head. Entire towns evacuate at the rumor of his arrival. But the real Vash the Stampede, the enigmatic and conflicted lead character, is more heroic, even though he usually acts like a complete idiot.", + "posterPath": "/hethsQZwgtLG0Vux9H7UtMVfQ2n.jpg", + "backdropPath": "/unrJI17xAoGNgD2Yzspg51vkWeq.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "1998-04-02", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 475, + "popularity": 3.9299 + }, + { + "id": 216523, + "title": "Ron Kamonohashi's Forbidden Deductions", + "originalTitle": "鴨乃橋ロンの禁断推理", + "overview": "Ron Kamonohashi was once regarded as a genius at the top detective training academy. But after a fatal mistake, he was expelled and forbidden to become a detective. Years later, police officer Totomaru Isshiki knocks on Ron’s door seeking help on a serial murder case. He finds Ron, now a messy-haired recluse, who agrees. Together, this mismatched detective team begins solving their first mystery!", + "posterPath": "/28soQPRQYUgi1cthtSqGkQFVwep.jpg", + "backdropPath": "/9EVQLSslxwSPiOqBufrzr7guJQ5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 80, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Crime", + "Action & Adventure" + ], + "releaseDate": "2023-10-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.345, + "voteCount": 42, + "popularity": 3.9284 + }, + { + "id": 53052, + "title": "From the New World", + "originalTitle": "新世界より", + "overview": "Born into a world 1000 years in our future, Saki and her friends live in utopia. Not only is their idyllic community overflowing with resources, but technology is obsolete, thanks to a magical power that grants the ability to materialize anything. However, when Saki discovers a lost artifact, the facade is shattered! Faced with a startling truth about their town, Saki and her companions face dangers they never knew existed, and their choices may change the fate of everyone.", + "posterPath": "/ywghUXAMWJ2uY43bPUgRCPnusJF.jpg", + "backdropPath": "/xuBJ149u5JBaguceowuEf0so1y8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-09-29", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 109, + "popularity": 3.9262 + }, + { + "id": 34188, + "title": "Princess Lover!", + "originalTitle": "プリンセスラバー", + "overview": "Teppei Arima, who lost both of his parents in a car accident is attending the second year of high school. After being adopted by his grandfather Isshin Arima, the mightiest man in japanese economy, he is forced into the position as his grandfather’s successor, the head of the Arima Group. To be prepared for life in high society he has to attend an elite accademy for children of the higher social classes.", + "posterPath": "/rCpJWhIezs1HEp7R07eFwiEBNm8.jpg", + "backdropPath": "/52lDY5tyBQkVn9ERUOI53O0pM8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2009-07-06", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.292, + "voteCount": 24, + "popularity": 3.9253 + }, + { + "id": 112160, + "title": "The Way of the Househusband", + "originalTitle": "極主夫道", + "overview": "After disappearing from the underworld, the legendary yakuza known as the \"Immortal Dragon\" resurfaces — as a fiercely devoted stay-at-home husband.", + "posterPath": "/p63rAZt0s8kedJtdxGwD5VYZafc.jpg", + "backdropPath": "/iJS2mYxRwdQVcBt8VQa5zo2T6EN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 473, + "popularity": 3.9252 + }, + { + "id": 205493, + "title": "The Prince of Tennis II: U-17 World Cup", + "originalTitle": "新テニスの王子様 U-17 WORLD CUP", + "overview": "The story follows the unfolding of the U-17 World Cup, which takes place at the KCC Arena, in Melbourne, Australia. A total of 32 countries are participating in this long-awaited competition, and only 16 of them will manage to qualify for the final stages…", + "posterPath": "/jtlnqKX1Cl3N3TrJjNthdvVluSg.jpg", + "backdropPath": "/x3kTIGpx66VUTlUsPASyfjAlp98.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 5, + "popularity": 3.9207 + }, + { + "id": 60843, + "title": "Is the Order a Rabbit?", + "originalTitle": "ご注文はうさぎですか?", + "overview": "Cocoa Hoto is a positive and energetic girl who becomes friends with anyone in just three seconds. After moving in with the Kafuu family in order to attend high school away from home, she immediately befriends the shy and precocious granddaughter of Rabbit House cafe's founder, Chino Kafuu, who is often seen with the talking rabbit, Tippy, on her head. After beginning to work as a waitress in return for room and board, Cocoa also befriends another part-timer, Rize Tedeza, who has unusual behavior and significant physical capabilities due to her military upbringing; Chiya Ujimatsu, a waitress from a rival cafe who does everything at her own pace; and Sharo Kirima, another waitress at a different cafe who has the air of a noblewoman despite being impoverished. With fluffy silliness and caffeinated fun.", + "posterPath": "/gUlQ6mNGMzQi7fJ1Uo7FCMdlxF7.jpg", + "backdropPath": "/l7uE6gXpHeujRRi8szOK1ChFS4T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 34, + "popularity": 3.9165 + }, + { + "id": 286723, + "title": "Welcome to the Outcast's Restaurant!", + "originalTitle": "追放者食堂へようこそ!", + "overview": "When superstar adventurer Dennis gets booted from the world’s strongest party, he teams up with runaway Atelier to serve up his true passion—delicious cuisine. But this not-so-average eatery has not-so-average patrons. Dennis will battle his quirky customers’ troubles with his trusty butcher knife and wok. Visit Adventurer’s Restaurant and fill up your heart and stomach!", + "posterPath": "/caWU2F1DSrrJgoJCSclpSoCWnge.jpg", + "backdropPath": "/exFWxrrWoI2QfzFId4SqZz0jkHP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.674, + "voteCount": 24, + "popularity": 3.914 + }, + { + "id": 63463, + "title": "THE iDOLM@STER", + "originalTitle": "アイドルマスター", + "overview": "THE IDOLM@STER follows 13 girls from the 765 Production Studio, whose sole goals is to become the top idols in the Japanese entertainment industry. Along with the laughs, struggles and tears that are inherently part of this journey, you will cheer for the girls of iDOLM@STER as they climb their way to the top!", + "posterPath": "/6Apjxs1eRlp2H4WZHQoDXktXd76.jpg", + "backdropPath": "/1Z1KnqoHxJeqeVrB8yPu0i5VuF2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2011-07-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.75, + "voteCount": 26, + "popularity": 3.9134 + }, + { + "id": 63085, + "title": "Ushio and Tora", + "originalTitle": "うしおととら", + "overview": "When he stumbles upon Tora, a demon who's been impaled by a spear, young Ushio frees the beast and demands his help in fighting other agents of evil.", + "posterPath": "/zF0OxtfZlSIGK7SLq77qiAqe7T1.jpg", + "backdropPath": "/lkfCmTRHLTIW6hL8sS1zW4wCWjO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-07-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 148, + "popularity": 3.9035 + }, + { + "id": 70998, + "title": "Souryo to Majiwaru Shikiyoku no Yoru ni...", + "originalTitle": "僧侶と交わる色欲の夜に…", + "overview": "At a high school reunion, Mio Fukatani reunites with a classmate she has not seen in years—Takahide Kujou. She had always wanted to know more about the kind-hearted boy in high school, but once she realizes that Kujou has become a monk, she believes that any chance of getting to know him romantically is slim. Deciding to drink away her sorrows, she ends up walking home drunk, and surprisingly, running into Kujou who helps her get home.\n\nHowever, once inside, Kujou's lust for Mio becomes apparent and the two share an erotic night of passion. As this steamy romance blossoms between these two unlikely lovers, Mio and Kujou will undoubtedly spend many nights together in utter ecstasy.", + "posterPath": "/ueI9EeoRdMVa7hWEm21nQEU8Zv3.jpg", + "backdropPath": "/3JN7T3qNfHOJVa7NWaRgkdSYBgr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-04-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 13, + "popularity": 3.9023 + }, + { + "id": 8863, + "title": "VanDread", + "originalTitle": "ヴァンドレッド", + "overview": "Hibiki Tokai, a male third-class laborer from Taraak, ends up stuck on a battleship after a botched attempt at stealing a robot. When female pirates capture the Taraakian Vanguard, things don't look like they could get any worse.", + "posterPath": "/2eyd5lS6tPqHj1da9TNb0AmYRbe.jpg", + "backdropPath": "/iwnopbQ7ryRignptbjGFWVvzBYk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2000-10-03", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 21, + "popularity": 3.9002 + }, + { + "id": 67389, + "title": "Golden Time", + "originalTitle": "ゴールデンタイム", + "overview": "Banri Tada is a freshman at a Tokyo law school. After an accident, he suffers severe memory loss. Despite the incident, he befriends fellow freshman, Mitsuo Yanagisawa, which leads him to the beautiful, yet obsessive, Kouko Kaga.", + "posterPath": "/heCpefPuxekDMofvR6juY2cCew6.jpg", + "backdropPath": "/pLXzjzd5fKNHBHUldvkKgptHpmJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2013-10-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.515, + "voteCount": 564, + "popularity": 3.8986 + }, + { + "id": 82766, + "title": "Run with the Wind", + "originalTitle": "風が強く吹いている", + "overview": "Kakeru, a former elite runner at high school, is chased for stealing food. He is saved by Kansei University student Haiji, who is also a runner. Haiji persuades Kakeru to live in the old apartment \"Chikuseisou\" where he plans to team up with fellow residents to enter Hakone Ekiden Marathon, one of the most prominent university races in Japan. Kakeru soon finds out that all of the residents except for Haiji and himself are complete novices.", + "posterPath": "/zBZLWzncbPeeLhi6DJAx7MspHlS.jpg", + "backdropPath": "/p79OjKQC2eYnFpK01gTiios5XqN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2018-10-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 57, + "popularity": 3.8982 + }, + { + "id": 74180, + "title": "My Marriage Partner Is My Student, a Cocky Troublemaker", + "originalTitle": "お見合い相手は教え子、強気な、問題児。", + "overview": "Teacher Nano Saikawa hasn't given much thought to marriage, but her father's friend wants her to have a marriage interview with his son, Souichirou Takamiya. After the interview, they spend the day together. As they gradually become more comfortable with one another, Souichirou asks for her hand in marriage. Things quickly heat up between them, and the two wind up in bed together. However, when she removes his glasses, she discovers he is not Souichirou; he is actually one of her problem students, Souji Kuga!\n\nSouji's explanation is watertight: when he realized his brother was to be Nano's intended, Souji posed as him in order to be with her. And what's more, he is even confident that his family will approve of their marriage. However, an illicit relationship with a student is the last thing Nano wants. But will she be able to resist his charms, especially when her body begins to ache for his?.", + "posterPath": "/hK2xyIPdTD3cGgjxnebjRiueqCQ.jpg", + "backdropPath": "/m4Ub1bgSLNlVeKKX1sXjxQRIv2g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-10-01", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 13, + "popularity": 3.8931 + }, + { + "id": 91764, + "title": "Sorcerous Stabber Orphen", + "originalTitle": "魔術士オーフェンはぐれ旅", + "overview": "Orphen is a powerful sorcerer who is notoriously lazy. Everything changes when he finds a way to save his sis, who was turned into a dragon during their days at magic academy. Betrayed by friends who refused to help, Orphen will stop at nothing to track her down, even if he has to go it alone.", + "posterPath": "/nWXrfd7HjbhRFTV3L2BPSNF0SK5.jpg", + "backdropPath": "/cFrLAsCYifsl2XuJcyvBXAybrOR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2020-01-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 52, + "popularity": 3.893 + }, + { + "id": 93256, + "title": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "originalTitle": "慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~", + "overview": "Goddess Ristarte summons Seiya Ryuuguuin, an OVERLY cautious hero to save the world of Gaeabrande. Seiya is obsessed with muscle training and buying extra armor to deal with low level creatures. It’s simply one cautious mission at-a-time for this hero!", + "posterPath": "/bbg1FMU7c3W06KUKrgIhIECFliZ.jpg", + "backdropPath": "/hikJz6TqmnS2czz18QZKVgWmKs2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2019-10-02", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 278, + "popularity": 3.8852 + }, + { + "id": 96203, + "title": "Gleipnir", + "originalTitle": "グレイプニル", + "overview": "Shuichi Kagaya is an ordinary high school kid in a boring little town. But when a beautiful classmate is caught in a warehouse fire, he discovers a mysterious power: he can transform into a furry dog with an oversized revolver and a zipper down his back. He saves the girl’s life, sharing his secret with her. But she’s searching for the sister who killed her family, and she doesn’t care how degrading it gets: she will use Shuichi to accomplish her mission…", + "posterPath": "/eF1kUIoyL2dxPGGsxNXYrkrAPs2.jpg", + "backdropPath": "/hfMLaKqYeOrWRZNuiAYggUW5bPG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.128, + "voteCount": 694, + "popularity": 3.8786 + }, + { + "id": 139130, + "title": "Skip and Loafer", + "originalTitle": "スキップとローファー", + "overview": "Iwakura Mitsumi, a tenacious country girl, prepares for high school in the big city. She meets the handsome Shima Sousuke, whose easygoing ways help her adapt in the real world.", + "posterPath": "/xHVy0gnLNpkNAdtd3DHsUVYYEDN.jpg", + "backdropPath": "/qelfKA1w2bNQIFthb606lIpbJHX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.778, + "voteCount": 72, + "popularity": 3.8745 + }, + { + "id": 100022, + "title": "Kemono Jihen", + "originalTitle": "怪物事変", + "overview": "When a series of animal bodies that rot away after a single night begin appearing in a remote mountain village, Inugami, a detective from Tokyo who specializes in the occult, is called to investigate.\n\nWhile working the case, he befriends a strange boy who works in the field every day instead of going to school. Shunned by his peers and nicknamed “Dorotabo” after a yokai that lives in the mud, he helps Inugami uncover the truth behind the killings — but supernatural forces are at work, and while Dorotabo is just a nickname, it might not be the only thing about the boy that isn’t human.", + "posterPath": "/vlEYvTnexLVEYGnX508DMwWGHYv.jpg", + "backdropPath": "/jQfH20FEhvZpnbTGpZbWPOzfAZd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 115, + "popularity": 3.8737 + }, + { + "id": 35871, + "title": "Magical Princess Minky Momo", + "originalTitle": "魔法のプリンセス ミンキーモモ", + "overview": "The land of dreams, Fenarinarsa, was once a kingdom on Earth, but the kingdom gradually drifted away as humanity's belief in dreams waned. To save the kingdom, the king sends his only daughter, Minky Momo, on a mission to restore humanity's dreams. After establishing herself as the daughter of a childless couple, Momo strives to transform Earth into a planet rich with dreams once more. Armed with the power to transform into an adult with the proper skills to handle any situation, and accompanied by her animal companions, Momo vows to succeed in her quest by any means necessary.", + "posterPath": "/hmd5k7CIvAwoDaKdx82Y4qe3YGx.jpg", + "backdropPath": "/vxhdFxWKU74igmgVg4XjbW6yHa0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1982-03-18", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 11, + "popularity": 3.8647 + }, + { + "id": 61445, + "title": "Rage of Bahamut", + "originalTitle": "神撃のバハムート", + "overview": "Two thousand years ago, the black-and-silver-winged dragon, Bahamut, terrorized the magical land of Mistarcia. The humans, god, and demons that inhabited the land united forces against the fiend and sealed its power into a key which was split in two, one half protected by gods and the other protected by demons. Now, Mistarcia is a peaceful realm – until a human woman steals the god’s half of the key. Based on the immensely popular digital card game, Rage of Bahamut: Genesis is an exciting blend of action and fantasy.", + "posterPath": "/osUNCb2v2kIlyLg9DgM5zBlnyRB.jpg", + "backdropPath": "/asUFPHTGvdLvyyf3YxWZNvPWkoa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 135, + "popularity": 3.8634 + }, + { + "id": 94404, + "title": "Dorohedoro", + "originalTitle": "ドロヘドロ", + "overview": "Amnesiac Caiman seeks to undo his lizard head curse by killing the sorcerer responsible, with his friend Nikaido's help. In the Hole, that's a threat.", + "posterPath": "/u4RhmbMlKzeshDE2Wf3uxZuGck2.jpg", + "backdropPath": "/smKFUnGZf1lXaZgjUGYENFH53hx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-13", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 375, + "popularity": 3.8551 + }, + { + "id": 38441, + "title": "Freezing", + "originalTitle": "フリージング", + "overview": "Eager to follow in the footsteps of his fallen sister, Kazuya enrolls at West Genetics Academy, a training facility for buxom heroes known as Pandoras. These courageous schoolgirls are genetically-enhanced with enough sex appeal to cripple a man – and the superhuman strength to slaughter aliens by the dozen. Kazuya’s role is that of Limiter, a Pandora’s battle partner, and he quickly sets his sights on the most feared beauty in school, Satellizer el Bridget. This full-figured annihilator of aliens is as desirable as she is deadly, but rubbing her the wrong way could lead to gross bodily harm. Can Kazuya forge a bond with his new partner and rise to the top of the ranks at West Genetics? Or will he fall victim to the mysterious bloodlust lurking within Satellizer?", + "posterPath": "/r1jVlUUpjdSB9TjcjiFcDGL6QmA.jpg", + "backdropPath": "/nPcgyYd2pJA5nuGJJ7EvNwzsJJ4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2011-01-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 73, + "popularity": 3.8451 + }, + { + "id": 299555, + "title": "Chainsaw Man - The Compilation", + "originalTitle": "チェンソーマン 総集篇", + "overview": "The two-part compilation, Part I and Part II, re-edits and condenses the key moments from the first season of the Chainsaw Man anime. This compilation revisits Denji's journey, from his humble beginnings as a debt-ridden devil hunter to his transformation into the Chainsaw Man.\n\nIn addition to the re-edited material, the compilation includes newly animated segments titled Chainsaw Days. These segments adapt bonus chapters from the original manga.", + "posterPath": "/23oDHewikLJRgwOrt7FlTzR0jnk.jpg", + "backdropPath": "/q5DjMk4rmZuTWRBkXRpjYKQX9ZQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-09-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 24, + "popularity": 3.8445 + }, + { + "id": 70716, + "title": "Bikini Warriors", + "originalTitle": "ビキニ・ウォリアーズ", + "overview": "Prepare yourself for an adventure of epic proportions. With warriors so skilled at battling questionable slimes and taming tumescent tentacles, there's no need for all that bulky armor.", + "posterPath": "/x3Cqimi0eXWGVH5PEkZbZLuMYgI.jpg", + "backdropPath": "/xc5WV3yOhFgVQ9zbVyxqgsWAxZ8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-08", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 57, + "popularity": 3.8436 + }, + { + "id": 71000, + "title": "Tsugumomo", + "originalTitle": "つぐもも", + "overview": "Kazuya Kagami never goes anywhere without the precious \"Sakura Obi\" his mother gave him. One day a beautiful, kimono-clad girl named Kiriha appeared before him. Kiriha naturally began to live with Kazuya in his room. Then there's Chisato, Kazuya's childhood friend with glasses and a ponytail, who meddles in his affairs. Soon there's also an overprotective older sister who seems to want to take baths with him. Jumble in a huge-chested priestess, a good-looking sorceress named Kokuyoura, beautiful women, and hot girls, and Kazuya's happy, embarrassing, confusing life begins…", + "posterPath": "/aQLw9RZvzYTUukElg11bHIFNoQg.jpg", + "backdropPath": "/covxbfX4QxxXm0GtDbWSBUYN5jf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-02", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.243, + "voteCount": 37, + "popularity": 3.8403 + }, + { + "id": 237233, + "title": "Chillin' in Another World with Level 2 Super Cheat Powers", + "originalTitle": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "overview": "The Magical Kingdom of Klyrode summons hundreds of heroes from other worlds every year to fight in their war against the Dark One and his army of powerful demons. Banaza is one of those heroes, summoned from the Royal Capital Paluma, but something’s not right—Banaza is only an average merchant. He has no magic, no fighting ability, and his stats are abysmal. Worse, a mishap leaves him unable to return home! Rejected as a hero and stranded in another world, abandoned to the far reaches of the kingdom by a cruel king who just wants him gone, Banaza’s fate looks pretty bleak. But what will happen once the failed hero candidate finds himself with super cheat powers once he hits level two?", + "posterPath": "/29z2Qja0nXaCsfig7RCFCo1LP1d.jpg", + "backdropPath": "/petHMm8TmcYiBy1JOTCncBcNk83.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-04-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.315, + "voteCount": 84, + "popularity": 3.8386 + }, + { + "id": 30395, + "title": "Yawara!", + "originalTitle": "YAWARA!", + "overview": "Inokuma Yawara is just another young high school girl. Well, not quite - for Yawara is being raised by her grandfather, 7th dan Judo master Inokuma Jigorou, to be Japan's great hope for the women's Judo competition at the 1992 Olympics in Barcelona. All the same, Yawara just wants to live a normal life...", + "posterPath": "/hlCYyeH90ZfQZvJZ24g92BDMuCd.jpg", + "backdropPath": "/rnq24vzdwTJUOC9sjQ0tUzCW4uz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1989-10-16", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 6, + "popularity": 3.8339 + }, + { + "id": 153482, + "title": "Raven of the Inner Palace", + "originalTitle": "後宮の烏", + "overview": "The Raven Consort is a special consort living deep in the inner palace who, despite her title, does not perform nighttime duties for the emperor. Some who have seen her say she has the appearance of an old woman, while others describe her as a young girl. The Raven Consort's name is Shouxue. She can use mysterious arts and will accept any favor asked of her, whether it is to find something lost or to curse someone to death. The current emperor, Gaojun, visits her one night to ask a favor. Their meeting exposes a secret that will turn history on its head...", + "posterPath": "/ifdhD2qXM6cDXJgCeIdXUPNIFM0.jpg", + "backdropPath": "/tSMA78z6CVKdn4dleQUElFsks08.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-01", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 34, + "popularity": 3.8338 + }, + { + "id": 102086, + "title": "By the Grace of the Gods", + "originalTitle": "神達に拾われた男", + "overview": "Only 39 years into a life full of bad luck, Ryoma Takebayashi passes away in his sleep! Taking pity on him, three divine beings show compassion by reincarnating him as a young boy to a magical, new world. Now he spends his time researching and caring for slimes in the forest. But after healing an injured traveler, Ryoma decides to set out with his new friends on a journey to use his power to help others. A whole new world awaits him, where his skills as a magic user and slime tamer continue to elicit surprise and admiration.", + "posterPath": "/bfYje9AgtWzYCeCQbMU3nHdE4k1.jpg", + "backdropPath": "/jbLMslpwVWaGYgBcE4Cu51L7HPB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 132, + "popularity": 3.8329 + }, + { + "id": 78479, + "title": "Layton Mystery Detective Agency: Kat's Mystery‑Solving Files", + "originalTitle": "レイトン ミステリー探偵社 ~カトリーのナゾトキファイル~", + "overview": "The story is set in London and follows Katrielle as she solves mysteries with her talking dog Sherl.", + "posterPath": "/ce3KtE6u6n643mFM1RlIxn0xEUe.jpg", + "backdropPath": "/5zmM7MZGxr7c01G0B6bvbPM7cOT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Kids" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 8, + "popularity": 3.8279 + }, + { + "id": 126437, + "title": "Aoashi", + "originalTitle": "アオアシ", + "overview": "Ashito Aoi is a young, aspiring soccer player from a backwater town in Japan. His hopes of getting into a high school with a good soccer club are dashed when he causes an incident during a critical match for his team, which results in their loss and elimination from the tournament. Nevertheless, he catches the eye of someone important who happened to be visiting from Tokyo. How will things turn out for Ashito?", + "posterPath": "/erwRgEPtUtyv3Vkmxt0MhjKi5kA.jpg", + "backdropPath": "/4ixh7PNNWd1VaohzKD7pcP33SiN.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2022-04-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 54, + "popularity": 3.8272 + }, + { + "id": 11279, + "title": "GANTZ", + "originalTitle": "ガンツ", + "overview": "If you are chosen by the bizarre black sphere known as the Gantz, you are already dead—yet you might be able to reclaim your mortality. First, the Gantz demands that you undertake brutal missions of madness, killing aliens hidden among the population. It is your only chance and you have no choice. You must play this disturbing game. And if you die again—and you likely will—it’s permanent.", + "posterPath": "/spyDQ1Cv8m4L8EaXS6iXSpbLWA.jpg", + "backdropPath": "/wlaBpzJPkBe5vKxyb51IlESAcKP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-13", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 295, + "popularity": 3.827 + }, + { + "id": 35993, + "title": "Ronin Warriors", + "originalTitle": "鎧伝サムライトルーパー", + "overview": "Five young men with mystical armor fight to save the mortal from the evil Talpa.", + "posterPath": "/cS4MHCOgmFun8X9k2avAd6vvQ37.jpg", + "backdropPath": "/njzwGw2JwoMnwNbntW6CK3EqQql.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1988-04-30", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 25, + "popularity": 3.8192 + }, + { + "id": 88803, + "title": "Vinland Saga", + "originalTitle": "ヴィンランド・サガ", + "overview": "For a thousand years, the Vikings have made quite a name and reputation for themselves as the strongest families with a thirst for violence. Thorfinn, the son of one of the Vikings' greatest warriors, spends his boyhood in a battlefield enhancing his skills in his adventure to redeem his most-desired revenge after his father was murdered.", + "posterPath": "/vUHlpA5c1NXkds59reY3HMb4Abs.jpg", + "backdropPath": "/xamCBQePUy9xI42GvtphLuGqd09.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 18 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2019-07-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.497, + "voteCount": 859, + "popularity": 3.8166 + }, + { + "id": 157571, + "title": "Helck", + "originalTitle": "Helck", + "overview": "Three months have passed since the Demon Lord was struck down, and the Demon Realm is holding a tournament to select his replacement. The leading contestant is Helck, a human hero who claims to hate his own kind. Some aren't happy with the idea of a human becoming the next Demon Lord—especially Vermilio the Red. She wants nothing more than to protect demonkind and prove Helck to be their enemy, even if she has to rig the competition to do it!", + "posterPath": "/u0vH3LAjFEp5q7HNo7EcoIbCyzp.jpg", + "backdropPath": "/uBVaWmEJB2ttSOuLbJ8LoFczv6m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-12", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.88, + "voteCount": 25, + "popularity": 3.816 + }, + { + "id": 36629, + "title": "Tegami Bachi: Letter Bee", + "originalTitle": "テガミバチ", + "overview": "Gauche Suede is on his last delivery before a big promotion. In the outskirts of Yodaka, the darkest area of Amberground, Gauche is surprised to find that the package is a young boy named Lag Seeing. Lag had been traumatized by his mother's abduction and is due to be delivered to his aunt. In this remote area rife with Gaichuu, Lag and Gauche face a dangerous journey that inspires Lag to become a Letter Bee.", + "posterPath": "/lvt6QnxXExnQ0yC3kvqUVFHSTDe.jpg", + "backdropPath": "/7Rwehepd5z0tO0uFxBzA53PBXik.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2009-10-03", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 16, + "popularity": 3.814 + }, + { + "id": 103962, + "title": "Mother of the Goddess' Dormitory", + "originalTitle": "女神寮の寮母くん。", + "overview": "Down-on-his-luck Koushi Nagumo wanders the streets unemployed, homeless and in search of his next meal. His fortunes improve after a chance meeting with a vivacious young woman whose proposition seemingly solves nearly all his problems. Thanks to her, Koushi enters the welcoming halls of a dormitory at a women’s college… only this particular assignment is no stuffy, sleepy affair. The Goddess’ Dormitory is known for housing the college’s most unruly students! If he wants to keep a roof over his head, Koushi must become the “Dormitory Mother” charged with maintaining order and good discipline. But doing his job and keeping his sanity are no small feat with characters as endearingly eccentric and untamable as these!", + "posterPath": "/xT7qlkEjWBAyScZRp6ElGXccPJG.jpg", + "backdropPath": "/q9ZWkpeMsKj3A7010KQX8NU5jQd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-07-14", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 52, + "popularity": 3.8124 + }, + { + "id": 29310, + "title": "Emma: A Victorian Romance", + "originalTitle": "英國戀物語エマ", + "overview": "In 19th-century London, class lines are sharply drawn, and the social standing to which people are born dictates the path their lives will follow. Emma, an honest and hardworking young maid, never felt her place in life to be a burden. But then she met William, a member of the gentry and the eldest son of a wealthy family. His warm smile and earnest affection threaten to capture her heart... but can love truly conquer all?", + "posterPath": "/sbEsRPkypIVezOh6h5fZZN7LjUw.jpg", + "backdropPath": "/b2L2tMt01dD2jFM80kpbZpXjiD5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2005-04-03", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 18, + "popularity": 3.8115 + }, + { + "id": 78102, + "title": "Steins;Gate 0", + "originalTitle": "シュタインズ・ゲート ゼロ", + "overview": "Eccentric Rintaro falls into a depression after failing to save Kurisu, but then a neuroscientist offers him the chance to interact with an AI copy.", + "posterPath": "/zAlvi9hc7WrIVn1Z687EoLH3Xbl.jpg", + "backdropPath": "/7B4PGxWt9NrcFCEAegLSEuSyAeS.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "2018-04-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.052, + "voteCount": 268, + "popularity": 3.8106 + }, + { + "id": 39218, + "title": "Puella Magi Madoka Magica", + "originalTitle": "魔法少女まどか☆マギカ", + "overview": "She has a loving family and best friends, laughs and cries from time to time... Madoka Kaname, an eighth grader of Mitakihara middle school, is one of those who lives such a life. One day, she had a very magical encounter. She doesn't know if it happened by chance or by fate yet. This is a fateful encounter that can change her destiny. This is a beginning of the new story of the magical witch girls.", + "posterPath": "/9Leopb4OB9j9FkP5JNHRZZlPPdg.jpg", + "backdropPath": "/uyGH4YtKi7iSyAxKWLFdQWc7oXT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-01-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.046, + "voteCount": 349, + "popularity": 3.8097 + }, + { + "id": 198152, + "title": "ONIMAI: I'm Now Your Sister!", + "originalTitle": "お兄ちゃんはおしまい!", + "overview": "When lazy, erotic-game loving Mahiro Oyama is transformed into a girl by his younger scientist sister's experiments, he becomes determined to change back, only to recognize that with his new opportunity, he may want to turn his life around.", + "posterPath": "/3uZUfYhNI3ZPh4cwLNDtDAQbuR.jpg", + "backdropPath": "/15nnrH4Vmy38Kh6A24h88AYuI3g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-01-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 52, + "popularity": 3.8066 + }, + { + "id": 36406, + "title": "Yu-Gi-Oh!", + "originalTitle": "遊☆戯☆王", + "overview": "Yugi Muto, a shy boy who loves all kinds of games, one day solves an ancient puzzle known as the Millennium Puzzle, causing his body to host the spirit of an ancient pharaoh.", + "posterPath": "/j2PBnjCSbWr9XtJttWYmCkhJ7zM.jpg", + "backdropPath": "/qp4FDDjTU9bX3OA9Bx9nMB7FtWG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10765, + 10759, + 10762, + 35 + ], + "genres": [ + "Animation", + "Family", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids", + "Comedy" + ], + "releaseDate": "1998-04-04", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.245, + "voteCount": 143, + "popularity": 3.7997 + }, + { + "id": 69236, + "title": "BanG Dream!", + "originalTitle": "BanG Dream!", + "overview": "Since she was very young, Kasumi Toyama has always been searching for the \"Star Beat\", a sparkling and exciting sound she heard while looking up at the night sky. Just after getting into high school, Kasumi comes across a \"star-shaped guitar\" in the storage area of an old pawn shop. Feeling a rush and excitement she has never felt before, Kasumi teams up with four other girls and embarks on a journey to seek out the shiny place. We promise to perform a live here!", + "posterPath": "/odOfS98nLcWcgz4NaGkTwI8jgq3.jpg", + "backdropPath": "/tuUr8vsN3eoSXj9Ed12Bsc8HVT7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-21", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 26, + "popularity": 3.7866 + }, + { + "id": 37867, + "title": "Ladies versus Butlers!", + "originalTitle": "れでぃ×ばと!", + "overview": "Raised by his uncle after his parents’ deaths, Akiharu enrolls at a mostly female academy that specializes in training maids and butlers for high society placements.", + "posterPath": "/bjBHuTjC7KAGSAfeYY5q0q8ZcWn.jpg", + "backdropPath": "/iAxGl74HyzF52JDpuWg90tAThgY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2010-01-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.486, + "voteCount": 37, + "popularity": 3.7842 + }, + { + "id": 75777, + "title": "After the Rain", + "originalTitle": "恋は雨上がりのように", + "overview": "Akira Tachibana was once the ace of a track club, but an injury forced her to quell her passion for sports. Masami Kondou, a divorced father, had ambitions of being a writer and now manages a restaurant, where Akira works. It is the intersection of Akira and Masami’s seemingly disconnected lives that makes each of them reconsider and redefine everything about themselves.", + "posterPath": "/fJPKTbTMOlxMtCFswnVotfVmjiA.jpg", + "backdropPath": "/zhYb24XFubSlMsnXe6LqyJKgOI1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-01-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 79, + "popularity": 3.7798 + }, + { + "id": 66862, + "title": "Showa Genroku Rakugo Shinju", + "originalTitle": "昭和元禄落語心中", + "overview": "When a certain man is released from prison, he knows exactly where he's heading first. After falling in love with a traditional comic storyteller's rendition of the story called \"Shinigami,\" he is determined to become his apprentice. The performer, Yakumo, has never taken an apprentice before, but to everyone's surprise, he accepts the eager ex-prisoner, nicknaming him \"Yotaro.\" As Yotaro happily begins his new life, he meets others in Yakumo's life, including Yakumo's ward Konatsu. Konatsu was the daughter of a famous storyteller, and Yakumo took her in after her father's tragic death. Konatsu loved her father's storytelling, and would love to become a performer in her own right—but that path is not available for women.", + "posterPath": "/93Lm7iMKwAXEpYzBlFcSvXBvaCf.jpg", + "backdropPath": "/imjFzB8g4bLxl6ulKwYlF6mUXcY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2016-01-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 59, + "popularity": 3.7769 + }, + { + "id": 42569, + "title": "Animal Detectives Kiruminzoo", + "originalTitle": "あにゃまる探偵 キルミンずぅ", + "overview": "While searching for a run-away cat the twins Riko and Rimu Mikogami find a strange device that transforms them into \"Kirumin.\" It also enables them to turn into real animals. Their older sister Nagisa soon joins them. Now the three have cute, funny and sometimes dangerous adventures.", + "posterPath": "/syQb8Cu5TgOu2p4137exDRAgTTQ.jpg", + "backdropPath": "/ydO5Op9VaGxcLuY9mIA4a44bKBc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10762 + ], + "genres": [ + "Comedy", + "Animation", + "Kids" + ], + "releaseDate": "2009-10-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 6, + "popularity": 3.7753 + }, + { + "id": 238843, + "title": "The Fable", + "originalTitle": "ザ・ファブル", + "overview": "A legendary hitman trained to become the world's best assassin is asked to lay low for a year by the head of his crime family.", + "posterPath": "/aQeVABaQ7gZedtmtDRwhrgOQwgq.jpg", + "backdropPath": "/hbPUaAY6YQOmqMdwd5qm6JavqGk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.794, + "voteCount": 34, + "popularity": 3.7749 + }, + { + "id": 38324, + "title": "Dragon Quest: The Adventure of Dai", + "originalTitle": "ドラゴンクエスト ダイの大冒険", + "overview": "After the defeat of the demon lord Hadlar all of the monsters were unleashed from his evil will and moved to the island of Delmurin to live in peace. Dai is the only human living on the island. Having been raised by the kindly monster Brass, Dai's dream is to grow up to be a hero. He gets to become one when Hadlar is resurrected and the previous hero, Avan, comes to train Dai to help in the battle. But Hadlar, announcing that he now works for an even more powerful demon lord, comes to kill Avan. To save his students Avan uses a Self-Sacrifice spell to attack, but is unable to defeat Hadlar. When it seems that Dai and Avan's other student Pop are doomed a mark appears on Dai's forehead and he suddenly gains super powers and is able to fend off Hadlar. The two students then go off on a journey to avenge Avan and bring peace back to the world.", + "posterPath": "/6ryUWLfFNm15vNOosOgcSYISRlf.jpg", + "backdropPath": "/taqD0yjyXEQ58HGHJVG1sxJBGQO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1991-10-17", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 127, + "popularity": 3.7737 + }, + { + "id": 60811, + "title": "Ping Pong the Animation", + "originalTitle": "ピンポン THE ANIMATION", + "overview": "Makoto 'Smile' Tsukimoto and his friend Yutaka 'Peco' Hoshino have been playing table tennis together since they were kids, but as they enter high school, they find that the game, and how they see it, has changed. Peco, brimming with confidence and energy, wants to be the best in the world, but the reserved Smile has little fighting spirit and doesn't want to sacrifice others' happiness just to win, despite his innate talent. As the two grow, and experience the ups and downs of the sport – and life – they try to figure out exactly who they really are and what drives them to play.", + "posterPath": "/frgVn3ww547TVQH8vS2bWKZnEBu.jpg", + "backdropPath": "/1rEPk87q49PspQmBJ74bwsXBVkH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2014-04-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 122, + "popularity": 3.7689 + }, + { + "id": 34121, + "title": "Baccano!", + "originalTitle": "バッカーノ!", + "overview": "Alchemists, swindlers, thieves, and gangsters cross paths on The Flying Pussyfoot, a 1930s American transcontinental train, as it embarks on a legendary voyage that leaves a trail of blood all over the country.", + "posterPath": "/nMGIGtHzcX8tmjEUpGM7g2vXtAz.jpg", + "backdropPath": "/1KQYzDvPhe6XDycqmL4jb7QO51d.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 16, + 80, + 9648 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Animation", + "Crime", + "Mystery" + ], + "releaseDate": "2007-07-27", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.716, + "voteCount": 194, + "popularity": 3.7667 + }, + { + "id": 69113, + "title": "Cyborg 009", + "originalTitle": "サイボーグ009 THE CYBORG SOLDIER", + "overview": "Nine super-powered cyborg soldiers join forces to combat Black Ghost, the terrorist organization which they were originally created to serve.", + "posterPath": "/iFr5M9gQsQOVCByh7fiHR17RZSd.jpg", + "backdropPath": "/x8T0dcllXzScXpO5jTi1m4letUY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-10-14", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 19, + "popularity": 3.765 + }, + { + "id": 271649, + "title": "Ruri Rocks", + "originalTitle": "瑠璃の宝石", + "overview": "High schooler Ruri Tanigawa loves shiny things. She loves them so much that she heads into the mountains to search for crystals herself—where she unexpectedly meets Nagi Arato, a graduate student studying mineralogy. As the pair start collecting minerals together, Ruri begins developing a genuine appreciation for science and the beauty of the natural world.", + "posterPath": "/gHI3fkZMR05PeiB1SN0JADZKfdj.jpg", + "backdropPath": "/uuwWD26VZBezCrGb0FxJidwWaEw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 21, + "popularity": 3.7618 + }, + { + "id": 80713, + "title": "Drop Kick on My Devil!!", + "originalTitle": "邪神ちゃんドロップキック", + "overview": "Jashin-chan, a devil from Hell was abruptly summoned to the human world by Yurine Hanazono, a stoic college student who lives in a run-down apartment in Jinbocho. They're forced to become roommates since Yurine doesn't know how to send Jashin-chan back. But according to Jashin-chan, she could return by killing Yurine, so she takes action...?! A viperous roomie comedy that keeps you on your toes!", + "posterPath": "/a3cpB2Nd8XEsuZdY2cwUXx77H7p.jpg", + "backdropPath": "/sDsqY4NbzreMACikux3m7jP3YN8.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-07-10", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 35, + "popularity": 3.7608 + }, + { + "id": 66926, + "title": "Valkyrie Drive: Mermaid", + "originalTitle": "VALKYRIE DRIVE -MERMAID-", + "overview": "Tokonome Mamori is transferred to Mermaid - an artificial quarantine island for people with superpowers. When Mamori is attacked, a newly transferred girl named Mirei saves her. The enemy doesn't stop, however, and the two are soon cornered. Just when they think all hope is lost, Mirei kisses Mamori, and Mamori turns into a sword. Mirei then wields the sword and launches a counterattack against their enemies.", + "posterPath": "/6hEpqMPUxDcV3ljeCHgJoVY5U2d.jpg", + "backdropPath": "/grratqdn77FtFAlX6WgYbVtCBNE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2015-10-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 41, + "popularity": 3.7606 + }, + { + "id": 42589, + "title": "Another", + "originalTitle": "Another", + "overview": "When Kouichi arrives at his new school, he immediately senses something frightening in the atmosphere of his new class, something that no student wants to talk about and that seems to be related to a mysterious and silent girl.", + "posterPath": "/9uATDswMjJgrj1qIPW9YjPvUbRM.jpg", + "backdropPath": "/lL0rMeVqiOyVwmft6oPKQKbDYr6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2012-01-10", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.336, + "voteCount": 1026, + "popularity": 3.7604 + }, + { + "id": 71360, + "title": "Yu-Gi-Oh! VRAINS", + "originalTitle": "遊☆戯☆王VRAINS", + "overview": "Den City is a city with advanced network systems in which a VR space called LINK VRAINS was created by SOL Technologies. The Knights of Hanoi, a group that hacks through dueling, as well as SOL Technologies are seeking a mysterious AI program. Yusaku Fujiki, also known as Playmaker, is a first year high school student who manages to capture this AI program while trying to find out the truth about an incident in the past.", + "posterPath": "/zfJ8qyy8FODCvLhFXPxhbHVpPz4.jpg", + "backdropPath": "/fpTzXuP25gO02sAIrSGnjSA9tuX.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2017-05-10", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 25, + "popularity": 3.7527 + }, + { + "id": 12501, + "title": "Kaleido Star", + "originalTitle": "カレイドスター", + "overview": "Sora, a young girl from Japan, comes to America in search of her dream. She wants, with all her heart, to be a member of the famous Kaleido Stage, a combination of musicals, acrobatics and magical effects. With the help of her friends, she struggles to make this dream come true.", + "posterPath": "/aINfkoTIhVHHBPFzJcVLGgPJbf5.jpg", + "backdropPath": "/48ZeXbREtKYjnUGZoX0c83bKd5i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-04-03", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 22, + "popularity": 3.7522 + }, + { + "id": 127714, + "title": "Uncle from Another World", + "originalTitle": "異世界おじさん", + "overview": "After being in a coma for 17 years, Takafumi's middle-aged uncle suddenly wakes up speaking an unrecognizable language and wielding magical powers.", + "posterPath": "/ixYH9Ngm3IcPtK4964jbvB0Czi9.jpg", + "backdropPath": "/piMRImsn3ZQerFmPdAoXgmOpc7R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 127, + "popularity": 3.7507 + }, + { + "id": 109805, + "title": "Azur Lane: Slow Ahead!", + "originalTitle": "アズールレーン びそくぜんしんっ!", + "overview": "This is a slightly peculiar world where the shipgirls live in. A lively and enjoyable school life for girls from different factions will begin at the naval port of Azur Lane. Living out their lives to the fullest, these girls get into various shenanigans—slowly but surely!", + "posterPath": "/evNjloRQilbYco1HIP1c6IpZH4c.jpg", + "backdropPath": "/kuNbZYiODIgeSwf41ReSWtlcRIz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-12", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 14, + "popularity": 3.7494 + }, + { + "id": 9302, + "title": "Digimon Tamers", + "originalTitle": "デジモンテイマーズ", + "overview": "Takato, Ruki, and Lee are children who have, by fate, received real Digimon, unlike the imaginary ones in the card game they play. Each of the children, or Digimon Tamers, have their different views on how Digimon should be treated. But when other Digimon begin to appear around Japan, they must put aside their differences to fend off the digital intruders.", + "posterPath": "/uEs5GRuibXsSnAH2Hr0DiWupyzb.jpg", + "backdropPath": "/71dyVj15t9POfVQQdmO5Rx1MiGP.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2001-04-01", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.556, + "voteCount": 360, + "popularity": 3.7446 + }, + { + "id": 37565, + "title": "Tsubasa RESERVoir CHRoNiCLE", + "originalTitle": "ツバサ・クロニクル", + "overview": "Syaoran fights to gather the scattered soul of his beloved princess Sakura, whose memories were sent adrift across space and time.", + "posterPath": "/lU2oU80UhGREf1dJBRb756KWEWJ.jpg", + "backdropPath": "/6yEPWAfQQmkZTht21z9OYZP9f8E.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-09", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 42, + "popularity": 3.7445 + }, + { + "id": 57406, + "title": "Arpeggio of Blue Steel: Ars Nova", + "originalTitle": "蒼き鋼のアルペジオ -アルス・ノヴァ-", + "overview": "By 2039, global warming had caused sea levels to rise and large amount of territory to be lost. As though in response, a mysterious group of warships clad in mist, “the Fleet of Mist,” appeared in every corner of the ocean, and began attacking human ships. In spite of humanity mustering all their strength, they were utterly defeated by the Mist's overwhelming force. All of humanity's trade routes were blockaded by the Fleet of Mist, their political economy was destroyed, and the human race was steadily beaten down. Seven years later, the Fleet of Mist's submarine I-401 appears before cadet Gunzo Chihaya. The humanoid life form that pilots the sub, who should be their enemy, is instead offering her services to mankind.", + "posterPath": "/erZZ8bqu9eg41CFGZ28BSyQrM8X.jpg", + "backdropPath": "/oz9ZX8mGELrOoOFrYwDcSUCqXpF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2013-10-08", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 47, + "popularity": 3.7416 + }, + { + "id": 74091, + "title": "Land of the Lustrous", + "originalTitle": "宝石の国", + "overview": "In the mysterious future, crystalline organisms called Gems inhabit a world that has been destroyed by six meteors. Each Gem is assigned a role in order to fight against the Lunarians, a species who attacks them in order to shatter their bodies and use them as decorations.\n\nPhosphophyllite, also known as Phos, is a young and fragile Gem who dreams of helping their friends in the war effort. Instead, they are told to compile an encyclopedia because of their delicate condition. After begrudgingly embarking on this task, Phos meets Cinnabar, an intelligent gem who has been relegated to patrolling the isolated island at night because of the corrosive poison their body creates. After seeing how unhappy Cinnabar is, Phos decides to find a role that both of the rejected Gems can enjoy. Can Phos's seemingly mundane assignment lead both Phos and Cinnabar to the fulfillment they desire?", + "posterPath": "/4xCCKt34QfU0krs1XKsQI4152sE.jpg", + "backdropPath": "/bkNvw8aaWYiOoUpx6mwTx6bDvEF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-10-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 93, + "popularity": 3.739 + }, + { + "id": 39434, + "title": "AnoHana: The Flower We Saw That Day", + "originalTitle": "あの日見た花の名前を僕達はまだ知らない。", + "overview": "When Yadomi Jinta was a child, he was a central piece in a group of close friends. In time, however, these childhood friends drifted apart, and when they became high school students, they had long ceased to think of each other as friends.\n\nOne of the friends from that group, Honma Meiko, now has a wish she asks Jinta to fulfil. The problem is, she can't remember what her wish is anymore.", + "posterPath": "/2tgOAvOttp7rak3r2U5vIAaeyDt.jpg", + "backdropPath": "/kyoFwkQH1l4QHfULW0CEdD2VPkE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2011-04-15", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.207, + "voteCount": 422, + "popularity": 3.7316 + }, + { + "id": 43270, + "title": "BLOOD-C", + "originalTitle": "BLOOD-C", + "overview": "Saya Kisaragi is an outwardly normal girl who serves as the shrine maiden to a country town; in reality, she is a skilled swordswoman charged by her father to defeat Elder Bairns, monsters who feed on human blood. As her battles grow more desperate and more people she cares for fall victim to the Elder Bairns, Saya begins finding faults in her reality, and eventually uncovers a disturbing truth about herself, the town and her surviving friends.", + "posterPath": "/q2zwaN5vbBtWBS6eUvEIl8CinrA.jpg", + "backdropPath": "/t4UB3HjvN6gI7Y1mx251m3mPdlF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-07-01", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.902, + "voteCount": 254, + "popularity": 3.7257 + }, + { + "id": 92090, + "title": "Blade of the Immortal", + "originalTitle": "無限の住人-IMMORTAL-", + "overview": "Manji is a crass, violent samurai with a special ability: he cannot die. Cursed with immortality by the nun Yobikuni as punishment for his ruthless deeds, he has grown weary of his ageless life. The only way to lift the curse is to slay 1,000 evil men. So Manji wanders Japan, shedding the blood of the wicked on his quest to finally die.", + "posterPath": "/dx8PMM2cQSe4dmzLtj1sBkAIYHw.jpg", + "backdropPath": "/pub9SbIQlKcdrcasZarZR405gOb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 108, + "popularity": 3.7223 + }, + { + "id": 9892, + "title": "Grimm's Fairy Tale Classics", + "originalTitle": "グリム名作劇場", + "overview": "Grimm's Fairy Tale Classics is a Japanese animated anthology series by Nippon Animation. The episodes are adaptations of a variety of folk and fairy tales, and not limited to Grimm's Fairy Tales.", + "posterPath": "/vpHfw8wNSFEFEZIrG7YGfudzlW7.jpg", + "backdropPath": "/vUG1FYgtFLCitIBw21168Kg4OYP.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10765 + ], + "genres": [ + "Kids", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1987-10-21", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 149, + "popularity": 3.7218 + }, + { + "id": 283704, + "title": "Fermat Kitchen", + "originalTitle": "フェルマーの料理", + "overview": "The story centers on Gaku Kitada, a talented mathematics scholar, and Kai Asakura, a young but similarly talented chef. After Gaku suffers setbacks on his dream of becoming a mathematician, he meets Kai as he is running his own food business, and joins Kai in an attempt at something new.", + "posterPath": "/2CrSIqyoZIVk0UsbBPaJlMkCxcM.jpg", + "backdropPath": "/uN5YlWUUfHbkulh3PCTU5Jrw8QO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-07-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 10, + "popularity": 3.7183 + }, + { + "id": 72304, + "title": "Fate/Apocrypha", + "originalTitle": "Fate/Apocrypha", + "overview": "There was once a Holy Grail War waged by Mages and Heroic Spirits in a town of Fuyuki. However, one Mage took advantage of the chaos of World War II to steal a Holy Grail. Several decades have passed, and the Yggdmillennia family, who took upon the Holy Grail as its symbol, defected from the Mages' Association. Furious, the Association sent forces to deal with the Yggdmillennia, but were defeated. With the Holy Grail system changed, war at an unprecedented scale breaks out.", + "posterPath": "/aQvABf8fwwHSdYbMk1Ir3NnvcSp.jpg", + "backdropPath": "/nfZLQSZZNS2tRz0yp1xN5RJGpCu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-02", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.362, + "voteCount": 163, + "popularity": 3.7183 + }, + { + "id": 139287, + "title": "More than a Married Couple, but Not Lovers", + "originalTitle": "夫婦以上、恋人未満。", + "overview": "The story centers on third-year high school student Jiro Yakuin, who gets saddled with his gyaru classmate Akari Watanabe for the class's \"marriage training\" project about practicing to be a married couple. Jiro is the complete opposite of Akari, but the two know that if they do well they will be able to switch partners to end up with their respective crushes, and so they force themselves to act like the perfect married couple.", + "posterPath": "/tEdCclmak7CHR5OzbusD94zdhUW.jpg", + "backdropPath": "/4MvUUdfM93CZP1ucanAZ2KQAecU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2022-10-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 81, + "popularity": 3.7181 + }, + { + "id": 66103, + "title": "Ace Attorney", + "originalTitle": "逆転裁判〜その「真実」、異議あり!〜", + "overview": "A rookie lawyer Ryuuichi Naruhodou stands up to save his defendants by proving their innocence from unusual cases! Is the defendant guilty or innocent...? Believing his client's innocence Naruhodou stands in court and battles his rival judges. With the word of \"OBJECTION!\" and limited evidence, Naruhodou makes a comeback when all odds are against him and seems like there is nothing more he can do. Don't miss out on the comical episodes between him and his mentor Chihiro Ayasato, assistant Mayoi Ayasato, rival prosecutor Reiji Mitsurugi, and numerous unique characters! The anime also depicts the childhood relationship between Naruhodou and his friends. With the skills inherited from his mentor Naruho reveals the truth!", + "posterPath": "/6Rfcx9QxZqvsEl1Kh7yFhPpzb9R.jpg", + "backdropPath": "/h4ubSg0Ipr8Nggo2SH83c3wuJI0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 18, + 9648 + ], + "genres": [ + "Animation", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2016-04-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 35, + "popularity": 3.7176 + }, + { + "id": 63187, + "title": "Monster Musume: Everyday Life with Monster Girls", + "originalTitle": "モンスター娘のいる日常", + "overview": "Three years ago, the world learned that harpies, centaurs, catgirls, and all manners of fabulous creatures are not merely fiction; they are flesh and blood - not to mention scale, feather, horn, and fang. Thanks to the \"Cultural Exchange Between Species Act,\" these once-mythical creatures have assimilated into society, or at least, they're trying. When a hapless human teenager named Kurusu Kimihito is inducted as a \"volunteer\" into the government exchange program, his world is turned upside down. A snake-like lamia named Miia comes to live with him, and it is Kurusu's job to take care of her and make sure she integrates into his everyday life.", + "posterPath": "/8leXiwIwPRPQqHXKDhqgf4OIwBU.jpg", + "backdropPath": "/xDsBN1jJt2s4yswvcV82vV3Ib5d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.614, + "voteCount": 132, + "popularity": 3.7103 + }, + { + "id": 237150, + "title": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "originalTitle": "転生貴族、鑑定スキルで成り上がる", + "overview": "Ars Louvent is reincarnated in another world as the young son of a minor noble who owns a small domain. Ars is not particularly strong or intelligent, but he was born with the Appraisal Skill that's able to see others' abilities and statuses. He uses his skill to find the best hidden talents in the world to make their small, weak domain into the best.", + "posterPath": "/kYjQNi15IWz76nbqFBFPlVsO9lL.jpg", + "backdropPath": "/eR6AtgdINOCXccSgvPZWLFpleFw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 48, + "popularity": 3.7093 + }, + { + "id": 102088, + "title": "How a Realist Hero Rebuilt the Kingdom", + "originalTitle": "現実主義勇者の王国再建記", + "overview": "Suddenly summoned to a fantasy world and betrothed to the princess, Kazuya Souma is crowned the new king. Unlike the royalty before him, he won’t be using swords and magic to rule; will administrative reform really get this kingdom back on track?", + "posterPath": "/ymbGZbNjHK4uAy3l29jUBvqeXIX.jpg", + "backdropPath": "/8WfElKNkyLu8NrvtVkMkWzhkOd5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2021-07-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 169, + "popularity": 3.7089 + }, + { + "id": 272556, + "title": "Dealing with Mikadono Sisters Is a Breeze", + "originalTitle": "帝乃三姉妹は案外、チョロい。", + "overview": "Yu Ayase, son of a late legendary actress, is overwhelmingly mediocre. When he’s invited to stay with his mother’s friend, Yu is shocked to find out that he’ll be living with three prodigy sisters who possess both beauty and talent…and who rule his new school as the Three Emperors. Can Yu manage to melt the sisters’ cold hearts and fulfill his mother’s last wish for him to build a happy family?", + "posterPath": "/7JMW8B6JqARUxc01h6mctKp1TFv.jpg", + "backdropPath": "/wXtS2qD4wXN1xK6IAc4jMPIsnSl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.574, + "voteCount": 27, + "popularity": 3.7066 + }, + { + "id": 66931, + "title": "Gunbuster", + "originalTitle": "トップをねらえ!", + "overview": "In the near future, humanity has taken its first steps towards journeying into the far reaches of the galaxy. Upon doing so they discover a huge race of insectoid aliens known as \"Space Monsters.\" These aliens seem dedicated to the eradication of mankind as they near closer and closer to discovering Earth. In response, humanity develops giant fighting robots piloted by hand-picked youth from around the world. Shortly after the discovery of the aliens, Noriko Takaya, the daughter of a famous deceased space captain, enters a training school despite her questionable talents as a pilot. There, she meets her polar opposite, the beautiful and talented Kazumi Amano, and is unexpectedly made to work together with her as they attempt to overcome the trauma of war as well as their own emotions.", + "posterPath": "/4WzCDZT7G2QMvF8JxxlYTG85hSp.jpg", + "backdropPath": "/1c0WjwkfHvzb1XPEQDKA7Mmp9i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 10768 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "1988-10-07", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 89, + "popularity": 3.7055 + }, + { + "id": 42862, + "title": "Mermaid Melody: Pichi Pichi Pitch", + "originalTitle": "マーメイドメロディーぴちぴちピッチ", + "overview": "As one of the seven mermaid princesses, Lucia must travel to the human world to protect the mermaid kingdoms.", + "posterPath": "/jwDEHBO48GK8bL6pkHoQfgNyzHk.jpg", + "backdropPath": "/mMdQssCoupVTmOWz7thJeSURimh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 18, + 10765, + 35, + 10751, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Drama", + "Sci-Fi & Fantasy", + "Comedy", + "Family", + "Action & Adventure" + ], + "releaseDate": "2003-04-05", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 30, + "popularity": 3.7012 + }, + { + "id": 194829, + "title": "My One-Hit Kill Sister", + "originalTitle": "異世界ワンターンキル姉さん ~姉同伴の異世界生活はじめました~", + "overview": "Asahi, a boy who loves video games is killed in a traffic accident and ends up in another world. He tries to enjoy the otherworldly adventuring life he's always dreamed of, but his stats are on the level of an NPC's. He is in big trouble and is being chased by a monster when he hears, \"Fear not, little brother!\" and the monster is killed in one hit by Asahi's older sister, Maya, who followed Asahi to this world. So Maya has acquired some seriously OP skills, but she takes her adoration of her younger brother to extremes. Thus begins their story about an overpowered older sister with a brother complex and a younger brother with the weakest of stats in another world.", + "posterPath": "/hQEgYVrTUxV0yXqLxdwdXIaofGt.jpg", + "backdropPath": "/xny1jVdXW839f05UFb0it9tOZdf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.85, + "voteCount": 40, + "popularity": 3.6983 + }, + { + "id": 92592, + "title": "BNA", + "originalTitle": "BNA ビー・エヌ・エー", + "overview": "Morphed into a raccoon beastman, Michiru seeks refuge, and answers, with the aid of wolf beastman Shirou inside the special zone of Anima-City.", + "posterPath": "/fwFYXaQz0mrY8v1HDky2wJsYa7t.jpg", + "backdropPath": "/45bPhpF6dsONWpzCchS674w87PH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.22, + "voteCount": 414, + "popularity": 3.6979 + }, + { + "id": 118824, + "title": "Everything for Demon King Evelogia", + "originalTitle": "魔王イブロギアに身を捧げよ", + "overview": "Gozu dies, wakes up in his favorite game, and falls for the Demon King. Together, they set out to conquer the world—and each other.", + "posterPath": "/4KSCo3y6zYFJzrCpqx8atl8qMVy.jpg", + "backdropPath": "/gPc3usdr5DvwQZyOnYueaUHCE1q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-02", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 19, + "popularity": 3.6922 + }, + { + "id": 60808, + "title": "No Game No Life", + "originalTitle": "ノーゲーム・ノーライフ", + "overview": "Bored with life and considering the real world to be just a “crappy game,” savvy sibling shut-ins Sora and Shiro have withdrawn into their own fantasy world filled with video games. However, one day they find themselves summoned to another world by a boy who calls himself “God,” their abilities are about to be put to the ultimate test! Now not only their fates — but the fate of all of humanity — will be decided by a series of games that may just be the hardest these super-geniuses have ever faced!", + "posterPath": "/7l8nKzWZrhlGAWUubbw4UJaRlLH.jpg", + "backdropPath": "/n2fBMyqSzv3UjmKM6VKfxkLUI6o.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2014-04-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.093, + "voteCount": 709, + "popularity": 3.6889 + }, + { + "id": 136763, + "title": "I'm Quitting Heroing", + "originalTitle": "勇者、辞めます", + "overview": "After saving humanity from the despicable Demon King, Leo Demonhart does not earn a hero’s standing. Instead, he is regarded with suspicion and hostility by those he fought to protect. Treated as a pariah with nowhere else to turn, exiled Leo seeks a position in the army of his former nemesis! But the army is not what it once was before its defeat at Leo’s hands, so to maintain his new position, Leo must whip the forces back into fighting shape.", + "posterPath": "/oflTB7Ddzw2lCBEADGQCkjp17OW.jpg", + "backdropPath": "/jkW2dLC3KVmLQAk4UzBtwvRh0HD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.275, + "voteCount": 69, + "popularity": 3.6831 + }, + { + "id": 214310, + "title": "The Weakest Tamer Began a Journey to Pick Up Trash", + "originalTitle": "最弱テイマーはゴミ拾いの旅を始めました。", + "overview": "Stars are everything, granting abilities to Tamers. So when Ivy was born without one, her village took it as an ill omen! Now banished, she leads a lonely life of salvaging rubbish to survive. That is until she befriends Sora, a weak little slime, in the forest. Together, the delicate duo embarks on a heartwarming journey of survival and discovers there’s more to Ivy than being starless.", + "posterPath": "/za2EAhBtO08JJw9Q25zKyrY5Jkd.jpg", + "backdropPath": "/gSzBVbqxa6RQ95wHUKlpN7anmgL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-12", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 52, + "popularity": 3.683 + }, + { + "id": 62450, + "title": "Plastic Memories", + "originalTitle": "プラスティック・メモリーズ", + "overview": "After failing his college entrance exams, 18 year-old Tsukasa Mizugaki is offered a position at the renowned SAI Corporation, known for its production and management of Giftia, androids that possess human emotions. Tsukasa’s position is in the terminal service department where the main job is to recover Giftias that are close to their expiration, a graveyard department in every sense. To make matters worse, Tsukasa is ordered to work with Isla, a female Giftia who is never given any responsibility other than serving tea to co-workers.", + "posterPath": "/xiSnCk0NxtygVTD4uukMKwZtN1r.jpg", + "backdropPath": "/9KyUobknLPy1qu6rMqWkQeSLe2X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 231, + "popularity": 3.6819 + }, + { + "id": 61408, + "title": "Nagi-Asu: A Lull in the Sea", + "originalTitle": "凪のあすから", + "overview": "Long ago, all humans lived beneath the sea. However, some people preferred the surface and abandoned living underwater permanently. As a consequence, they were stripped of their god-given protection called \"Ena\" which allowed them to breathe underwater. Over time, the rift between the denizens of the sea and of the surface widened, although contact between the two peoples still existed.\n\nThis show follows the story of Hikari Sakishima and Manaka Mukaido, along with their childhood friends Chisaki Hiradaira and Kaname Isaki, who are forced to leave the sea and attend a school on the surface. There, the group also meets Tsumugu Kihara, a fellow student and fisherman who loves the sea.\n\nHikari and his friends' lives are bound to change as they have to deal with the deep-seated hatred and discrimination between the people of sea and of the surface, the storms in their personal lives, as well as an impending tempest which may spell doom for all who dwell on the surface.", + "posterPath": "/hOm9TB9JQJhAT1tBXGsngP35cCX.jpg", + "backdropPath": "/ju55gFKkm6jp6vxiqdVlLGhJpot.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 59, + "popularity": 3.674 + }, + { + "id": 205111, + "title": "The Tale of Outcasts", + "originalTitle": "ノケモノたちの夜", + "overview": "Wisteria is an orphan girl living in a corner of the British Empire at the end of the 19th century. Her life is desolate and bleak–until she encounters Malbus, a powerful but equally lonely immortal being with a furry appearance, hounded by hunters. Together, Wisteria and Malbus roam the Empire–populated by humans and human-like beasts–in search of a place where they can live together in peace.", + "posterPath": "/2cJWe8C83tlwYSkpBDuqQjBTBBu.jpg", + "backdropPath": "/drvc6qe6bTeVDbeB7ndBzbcOMfv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 12, + "popularity": 3.6739 + }, + { + "id": 21735, + "title": "Macross 7", + "originalTitle": "マクロス7", + "overview": "35 years have passed since Lynn Minmay had brought peace between the Zentradi and the humans. Nekki Basara is a guitarist and a singer of the band Fire Bomber. Living in the flying colony City 7 , he composes and sings songs in the belief that music holds a greater power. However, an unknown alien race appeared and started laying siege upon City 7.", + "posterPath": "/zBWL8ws3iRxrFTTR7TAQw2B5aiV.jpg", + "backdropPath": "/ng85a3ctO5jvS7zn7oLWKfLSTDB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1994-10-16", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.912, + "voteCount": 17, + "popularity": 3.6664 + }, + { + "id": 13452, + "title": "Saint Tail", + "originalTitle": "怪盗セイント・テール", + "overview": "Saint Tail is a phantom thief magical girl manga and anime series. Originally a twenty-four part manga by Megumi Tachikawa, the story was adapted into an anime television series by producer Tokyo Movie Shinsha, with forty-three episodes and one short, broadcast by ABC. Tokyopop translated the manga series, and subtitled and partially dubbed the anime series.\n\nVideo Games were released for the Sega Saturn and Sega Game Gear in Japan, and are considered collectors items by Saint Tail fans.\n\nThe Tokyopop book summary states that it is \"Robin Hood meets Sailor Moon!\"", + "posterPath": "/urF7woedo1sgDy7bD5Y1yo0c4Gd.jpg", + "backdropPath": "/2rzV87fCcVS7En9fFpoEbgfqDhU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10762, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Kids", + "Drama" + ], + "releaseDate": "1995-10-12", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 9, + "popularity": 3.6662 + }, + { + "id": 9155, + "title": "Tekkaman Blade", + "originalTitle": "宇宙の騎士テッカマンブレード", + "overview": "Tekkaman Blade takes place in the year 2300 AD. On a certain moment, the Radam attack Earth. A few months after the beginning of the invasion, a Tekkaman appears, he calls himself Blade and with the help of the Space Knights, Blade starts to fight the Radam. But there are a few things that Blade isn't telling about his past.", + "posterPath": "/9rgjq9um07rzEQDS1oTvyya6i1.jpg", + "backdropPath": "/5Ak0J09cZ3RXel0SeASEgusNfTy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-02-25", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 159, + "popularity": 3.6641 + }, + { + "id": 45485, + "title": "Getter Robo", + "originalTitle": "ゲッターロボ", + "overview": "From deep within the Earth's surface, the Dinosaur Kingdom make their move to wipe out mankind and conquer the planet with their mechanical dinosaurs. After a prototype Getter Robo is shot down by a mechanical dinosaur, the Saotome Research Institute decides to use the real Getter Robo, which is combat-capable. Due to a lack of pilots in the institute, Ryo Nagare goes to his college to persuade martial artist Musashi Tomoe and outcast Hayato Jin to join him and pilot the Getter Machines to combat the new threat and protect mankind.", + "posterPath": "/fAEFm8jc69KJVktku96OzhdJpyU.jpg", + "backdropPath": "/kMma8CaSmQ3anSM8eS5sTECSO4U.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1974-04-04", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 5, + "popularity": 3.6622 + }, + { + "id": 63323, + "title": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn't Exist", + "originalTitle": "下ネタという概念が存在しない退屈な世界", + "overview": "Sixteen years after the \"Law for Public Order and Morals in Healthy Child-Raising\" banned coarse language in the country, Tanukichi Okuma enrolls in the country's leading elite public morals school and is soon invited into the Anti-Societal Organization (SOX) by its founder, Ayame Kajou. As a member blackmailed into joining by Ayame, Tanukichi ends up taking part in obscene acts of terrorism against the talented student council president Anna (for whom Tanukichi has a crush on).", + "posterPath": "/ftrR07cAuHyWR3YZFne9EzME0Km.jpg", + "backdropPath": "/zwU5YOrOIGJrDF5ZEUtbAOxY15q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.019, + "voteCount": 135, + "popularity": 3.6601 + }, + { + "id": 118541, + "title": "The Slime Diaries", + "originalTitle": "転生したらスライムだった件 転スラ日記", + "overview": "Even in another world, lives aren’t always on the line. There’s plenty of work to be done, from feeding the community and forging the items the community needs; as well as plenty of play …and hijinks throughout! Join Rimuru and friends as they kick back and enjoy their daily lives.", + "posterPath": "/xONBusecKNd5BAaYue0pFKXANU6.jpg", + "backdropPath": "/boeZP8zaXTDBkKPpdAojS6uYKdt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 183, + "popularity": 3.6584 + }, + { + "id": 243216, + "title": "Wonderful Precure!", + "originalTitle": "わんだふるぷりきゅあ!", + "overview": "In Animal Town where humans and animals live together, Iroha who loves animals is very close to her dog Komugi! One day, a mysterious creature called a GaruGaru goes berserk in her city. In order to protect Iroha, Komugi transforms into a human and even a Pretty Cure…!? We have to protect such berserk animals! Let's join forces and return the animals to the Niko Garden!", + "posterPath": "/2PhiNPB0UyqBu9pHm0cluD0Sh3W.jpg", + "backdropPath": "/u28izLFeMVNQhe5cxdubcS7ztjB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759, + 10765, + 35, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Family" + ], + "releaseDate": "2024-02-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 7, + "popularity": 3.6547 + }, + { + "id": 56343, + "title": "Baka and Test: Summon the Beasts", + "originalTitle": "バカとテストと召喚獣", + "overview": "Advanced placement into a school of higher grade proof-reading is determined by the results of the Promotion Test strictly for class type. Ranging from A class with the best facilities anyone can offer all the way down to F Class which is composed of low dining tables, rotten tatami mats and other worn out facilities. Students can change classes by competing using the Examination Summons Battle system or ESB. Students summon characters with their equivalent test mark scores and use them to compete with other classes.", + "posterPath": "/wjIMA64gtl0QF9MgicpqzgnnJRO.jpg", + "backdropPath": "/3Ls0MsJEgDM12heFPsTVcEgkm0y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-01-07", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 97, + "popularity": 3.6522 + }, + { + "id": 31706, + "title": "Gun x Sword", + "originalTitle": "ガン×ソード", + "overview": "There’s a claw-fisted, genocidal maniac terrorizing the planet of endless illusion, and only Van, a tight-lipped loner in a jet black tuxedo, can bring the scoundrel to justice. Armed with his shape-shifting sword and a mechanized suit of armor, Van hunts the villain who murdered his one true love. With any luck, he’ll find the man he seeks before the sun sets on civilization.", + "posterPath": "/rHTw06fSEBXFOXSILep4KIKEY9a.jpg", + "backdropPath": "/n6khXOHRnrVrPmIi5mP45qXf9ez.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 37, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Western", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-07-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.152, + "voteCount": 23, + "popularity": 3.6519 + }, + { + "id": 77939, + "title": "MEGALOBOX", + "originalTitle": "メガロボクス", + "overview": "A desolate land stretches out from the city of poverty. A motorcycle speeds recklessly, blowing clouds of sand and dust. The rider is the protagonist of this story – he has neither a name nor a past. All he has is his ring name, “Junk Dog” and a technique for rigging MEGALOBOX matches with his pal Gansaku Nanbu, which they use to support their hand-to-mouth lives. JD is bored, resigned, and unfulfilled. Yuri has been the reigning champion of MEGALOBOX for the past few years. He has the skills and presence of a true champion. This is a story of JD and his rival, Yuri.", + "posterPath": "/mfXCEFdiMMWEUCGcCbdEo7bfhKK.jpg", + "backdropPath": "/l3uSouoBpxN3aanoD5PiiBz1DBm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 244, + "popularity": 3.6507 + }, + { + "id": 42858, + "title": "Galaxy Angel", + "originalTitle": "ギャラクシーエンジェル", + "overview": "The Angel Brigade, an elite branch of the Transbaal Empire military, are assigned to search for The Lost Technology, mysterious items from the past that hold unknown powers. Led by the soon-to-retire Colonel Volcott O' Huey, the Angel Brigade travel to different planets using their specially designed Emblem Frame ships to search for Lost Technology. Unfortunately, they often mess up somehow and end up getting into all kinds of awkward and troublesome situations.", + "posterPath": "/sYFBemT73ZxBRQcjWWCUmD2FY4Y.jpg", + "backdropPath": "/rIw7de0fxJ0sUklCnqkXLoP6SDV.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2001-04-07", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 8, + "popularity": 3.6455 + }, + { + "id": 21409, + "title": "Dinosaur King", + "originalTitle": "古代王者恐竜キング Dキッズ・アドベンチャー", + "overview": "Upon discovering ancient stones with dinosaur images imprinted on them, a 12-year-old boy named Max Taylor (Ryuta Kodai) and his friends Rex Owen and Zoe Drake (Malm Tatsuno), discover they are able to call forth dinosaur companions. These companions will aid the owners in stopping the nasty Alpha Gang from coming into possession of the mysterious stones and crush their chances at world domination.", + "posterPath": "/qvN2aGY9Yqrr0thhEi9LFx1pkhr.jpg", + "backdropPath": "/klYsm5j7vqtuZzsNQfv2raI7cYX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2007-02-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 405, + "popularity": 3.6441 + }, + { + "id": 34674, + "title": "Master Keaton", + "originalTitle": "MASTERキートン", + "overview": "The amazing Taichi Keaton works on cases around the globe that always lead to adventure! He combines his arsenal of multidisciplinary expertise in investigation, archeology, and survival with his experience as a professor, a Falklands Conflict veteran and a SAS agent to unravel the often dangerous challenges in each riveting episode.", + "posterPath": "/5oMdGZa54VbeLVMed4CioWTVjQJ.jpg", + "backdropPath": "/coaDC10hvXSvj3eZ8RKp27nemUU.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 16, + 18, + 80 + ], + "genres": [ + "Mystery", + "Animation", + "Drama", + "Crime" + ], + "releaseDate": "1998-10-06", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 19, + "popularity": 3.6428 + }, + { + "id": 63510, + "title": "Attack on Titan: Junior High", + "originalTitle": "進撃!巨人中学校", + "overview": "Your favorite characters from Attack on Titan are back in…junior high school? Adapted from the hit spinoff manga series—Attack on Titan: Junior High (written by Saki Nakagawa), this parody reimagines Eren, Mikasa, Armin, and other characters from the original manga as students and teachers at Titan Junior High School.", + "posterPath": "/el6yFiXQxiPLZLCJsukAI9UTI6J.jpg", + "backdropPath": "/2Eq2CYTV8cAJeddla6vFgIlxIH6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.823, + "voteCount": 203, + "popularity": 3.6414 + }, + { + "id": 279989, + "title": "Betrothed to My Sister's Ex", + "originalTitle": "ずたぼろ令嬢は姉の元婚約者に溺愛される", + "overview": "Marie, the second daughter of a poor baron’s household, is treated like a servant by her parents. Even at Marie’s birthday party, her beautiful elder sister, Anastasia, is the star. Outside, Marie bumps into Count Kyuros Granado, who falls for her at first sight. Yet, due to a misunderstanding, the Count proposes to Anastasia. After a tragic accident, Marie must marry the count instead!", + "posterPath": "/o7oX9Ap3Rvgt3225mvuIBvk7vlW.jpg", + "backdropPath": "/hyODXbjqZeGS2WMCw0nkcMiGTdO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2025-07-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.381, + "voteCount": 21, + "popularity": 3.6394 + }, + { + "id": 229676, + "title": "Spice and Wolf: MERCHANT MEETS THE WISE WOLF", + "originalTitle": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "overview": "Lawrence is a traveling merchant selling various goods from a horse-drawn cart. One day, he arrives at a village and meets a beautiful girl with the ears and tail of an animal! Her name is Holo the Wisewolf and she brings bountiful harvests. She wishes to return to her homeland, and Lawrence offers to take her. Now, the once-lonely merchant and the once-lonely wisewolf begin their journey north.", + "posterPath": "/fxzL2EWdiv19eZAoC8s7zuGCJG1.jpg", + "backdropPath": "/Ao8SbtYJbxBuzFTQFSdHF7lLmDE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2024-04-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 48, + "popularity": 3.6374 + }, + { + "id": 45500, + "title": "Mobile Suit Gundam Unicorn", + "originalTitle": "機動戦士ガンダムUC", + "overview": "When Banagher Links meets the mysterious Audrey Burne, he inherits the Unicorn Gundam and is swept up into the battle for space colony independence.", + "posterPath": "/221Lo3L1iTg76hWhyzg62C5OYOK.jpg", + "backdropPath": "/qpAwEOyajTvZpHO3c6GZQcBzhrJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2010-02-20", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 35, + "popularity": 3.6365 + }, + { + "id": 37546, + "title": "Turn A Gundam", + "originalTitle": "∀ガンダム", + "overview": "It is the Correct Century, two millenniums after a devastating conflict which left the world broken. Earth is now mostly uninhabitable, and thus a remnant of humanity has resided on the Moon while the Earth and its few survivors recover.", + "posterPath": "/1y38Pdipll0LCW5o3bT0c30fVxN.jpg", + "backdropPath": "/hmK8ovIqCOP5NKjWalv64p65KuX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10768, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "War & Politics", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-04-09", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 14, + "popularity": 3.6295 + }, + { + "id": 217409, + "title": "April Showers Bring May Flowers", + "originalTitle": "ブスに花束を。", + "overview": "Pessimistic high school student Hana Tabata doesn't believe her life could ever be like that of a heroine from the shoujo manga she reads—she's convinced she's ugly, and she's always alone. Still, she can't help but imagine herself as a leading lady when she's changing out flowers early one morning...until she's caught in the act by her handsome classmate Yousuke Ueno! Hana can't wrap her head around his kind words at first, but as they grow closer, she finds her life slowly beginning to change…", + "posterPath": "/tpDGvJoMz6UFF08PTN2nlTUgZIf.jpg", + "backdropPath": "/ftnpMjqv4i8jiOLYIYrpeAcrxBT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 3.6253 + }, + { + "id": 45893, + "title": "Hidamari Sketch", + "originalTitle": "ひだまりスケッチ", + "overview": "For years, Yuno has dreamed of attending Yamabuki Arts High School, but now that she's been accepted, it means the scary prospect of moving away from her home and family for the first time! Fortunately, Yuno quickly learns that if her new neighbors at the eclectic Hidamari (Sunshine) Apartments aren't technically family, at least the majority share the bond of being fellow art students. From second year students like Hiro and Sae, who try to behave like helpful older sisters (mostly successfully) to her hyperactive new neighbor, classmate and best friend Miyako (who has the scariest apartment ever) Yuno begins to build the support network she'll need for dealing with strange characters like her oddly masculine landlady, her cosplay obsessed home room teacher, her tooth-chattering principal and all of the other odd denizens who inhabit her chosen world of art.", + "posterPath": "/5WcsCnVyJ9TFemUxNTJaD6SxW4D.jpg", + "backdropPath": "/POCKoyMDc7YH50vlTyjicqJgqW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-01-12", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 14, + "popularity": 3.6163 + }, + { + "id": 37264, + "title": "Birdy the Mighty: Decode", + "originalTitle": "鉄腕バーディー DECODE", + "overview": "While pursuing fugitives the Space Federation police officer Birdy Cephon Altera finds herself on Earth.", + "posterPath": "/2MhyFK76viQc94A8Qbld4Ld2lSj.jpg", + "backdropPath": "/aZ8szzWDKQPmiJvowBBXS7qRxlR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2008-07-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 23, + "popularity": 3.6143 + }, + { + "id": 204716, + "title": "Akiba Maid War", + "originalTitle": "アキバ冥途戦争", + "overview": "Akihabara is the center of the universe for the coolest hobbies and quirkiest amusements. In the spring of 1999, bright-eyed Nagomi Wahira moves there with dreams of joining a maid café. She quickly dons an apron at café Ton Tokoton, AKA the Pig Hut. But adjusting to life in bustling Akihabara isn't as easy as serving tea and delighting customers. Paired with the dour Ranko who never seems to smile, Nagomi must do her best to elevate the Pig Hut over all other maid cafés vying for top ranking. Along the way she'll slice out a place for herself amid the frills and thrills of life at the Pig Hut. Just when Nagomi's dreams are within her grasp, she discovers not everything is as it seems amid the maid cafés of Akihabara.", + "posterPath": "/uSbDmK5y8dWVxngbWSWpmO47EI9.jpg", + "backdropPath": "/nj9QiFpCdR8nxWFTBRaMMtVpvm2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Crime" + ], + "releaseDate": "2022-10-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.765, + "voteCount": 34, + "popularity": 3.6137 + }, + { + "id": 121787, + "title": "takt op.Destiny", + "originalTitle": "takt op.Destiny", + "overview": "Music is the light that illuminates people's hearts-- and that \"light\" was suddenly taken from the world. The world changed the night the black \"Kuroya Meteorite\" fell. Grotesque monsters known as D2 emerged from the meteorite and began to overrun the land and people. As the D2 were drawn to melodies people played, eventually \"music\" itself became taboo. However, those who opposed the monsters appeared. They the \"Musicart,\" girls who draw power from music. They possess the great operas and musical scores of humanity history and use them to defeat the D2.", + "posterPath": "/k6oN7SJPj62Q04tRy9LLI3DrYTc.jpg", + "backdropPath": "/pHDPUYuPctFSChDAJ4M7AV82Toa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 95, + "popularity": 3.6112 + }, + { + "id": 68129, + "title": "Yuri!!! on Ice", + "originalTitle": "ユーリ!!! on ICE", + "overview": "While on the verge of retirement, skater Yuri Katsuki meets Yuri Plisetsky and Victor Nikiforov, two skaters who rekindle his competitive fire.", + "posterPath": "/oxenakJNCj06JrWHENjvwaWGcSz.jpg", + "backdropPath": "/mWwWhDiQWONiSS4Go12TTjNw0E5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2016-10-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 636, + "popularity": 3.6056 + }, + { + "id": 258580, + "title": "The Most Notorious \"Talker\" Runs the World's Greatest Clan", + "originalTitle": "最凶の支援職【話術士】である俺は世界最強クランを従える", + "overview": "Noel is the grandson of legendary Seeker Overdeath and dreams of surpassing his strength. But it turns out that Noel is nothing but a Talker, the weakest class of them all. Undeterred, he uses his silver tongue to gather allies, develop cunning strategies, and form the greatest clan around. Now, as the most notorious Talker, Noel will do whatever it takes to claim supremacy.", + "posterPath": "/vntXNezLAhIlh7CbXhrjirkSG3z.jpg", + "backdropPath": "/fy229btO53qlYFo1gzrH2cM6jwX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-09-30", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.639, + "voteCount": 36, + "popularity": 3.603 + }, + { + "id": 34159, + "title": "Corrector Yui", + "originalTitle": "コレクター・ユイ", + "overview": "Yui is an average schoolgirl who lives in a future where all computers are supported by a single global network known as COMNET. Yui is a computer-illiterate girl who after a computer-lab accident is approached by IR, a raccoon looking corrector computer program, which tells her she must save COMNET. She must stop the rogue A.I. (Artificial Intelligence) computer program known as Grosser and his hench-programs from taking over the world. Grosser was originally designed to be that manager of all of COMNET. At first she's very reluctant to play the heroine because of her complete lack of knowledge and ability with computers. To save COMNET she must find and gain the trust of the other seven wayward corrector programs. They must also find the creator or COMNET Professor Inukai, to help stop Grosser for good.", + "posterPath": "/bTqu08E0Ahw5UvX3JfEKukso16N.jpg", + "backdropPath": "/a7DVfKaR33tjIG7pasAlgEcIEZR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1999-04-09", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.55, + "voteCount": 11, + "popularity": 3.6021 + }, + { + "id": 24106, + "title": "Captain Tsubasa: Road to 2002", + "originalTitle": "キャプテン翼", + "overview": "Tsubasa becomes a superstar amongst soccer players in Brazil. He is now planning to play in Europe. At an important must-win game, as the fans cheer him on, Tsubasa looks back at the days when he started his soccer life. His passion to make goals and win the game is as strong as it was during his childhood. He recalls the games and moments that had decisive impact on his life. He remembers Goalkeeper Wakabayashi, Genius striker Hyuga, tender-hearted Misaki and Coach Roberto. He was happy to meet them, enjoyed playing with them, and learned many things from them. The whistle sounds and the game begins. Tsubasa dashes for the ball!", + "posterPath": "/mFQYzHQr6IpzjR3bxFYE2pHBBny.jpg", + "backdropPath": "/wj29buGmdKH1crhCnq6GEM6PczN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2001-10-07", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 278, + "popularity": 3.6002 + }, + { + "id": 25080, + "title": "Cooking Master Boy", + "originalTitle": "中華一番!", + "overview": "After the death of his mother, a young boy travels to China and become a master chef, in his attempt to become head chef of his late mother's restaurant", + "posterPath": "/WUngFmcOcGKMeyTSuhxr00sUbs.jpg", + "backdropPath": "/eJCp4VKGP4bMpUqV9z2wsGUbusf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "1997-04-27", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 24, + "popularity": 3.5981 + }, + { + "id": 34179, + "title": "Lil' Red Riding Hood Cha-Cha", + "originalTitle": "赤ずきんチャチャ", + "overview": "Cha Cha is a cute little girl who is training to be a good magician. She was raised by her teacher Seravi, who is considered the world's greatest magician. Cha Cha almost always gets strange or disastrous results whenever she uses her magic, so she practices a lot. Cha Cha then embarks on a quest with her friends to find out about her real identity and her real family.", + "posterPath": "/bWN4dJlPwuCghQUns13Mw0wGCsR.jpg", + "backdropPath": "/poZ4Ebbv9lU8yAhfbehsQkwI7QM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1994-01-07", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 6, + "popularity": 3.5892 + }, + { + "id": 43513, + "title": "The Adventures of Tom Sawyer", + "originalTitle": "トム・ソーヤーの冒険", + "overview": "Tom Sawyer is a young boy growing up along the Mississippi River in the mid 1800s. Along with his best friend Huckleberry Finn, he spends his days ditching school, fishing, climbing trees and having adventures.", + "posterPath": "/b08ZN0isUCr6WG5GvUbNaW8GpeL.jpg", + "backdropPath": "/hrrfBmMgIwq8bj1OKXrC7ekPedJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1980-01-06", + "releaseYear": "1980", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 140, + "popularity": 3.5836 + }, + { + "id": 43887, + "title": "Mobile Suit Gundam: The 08th MS Team", + "originalTitle": "機動戦士ガンダム 第08MS小隊", + "overview": "Ensign Shiro Amada is transferred to Southeast Asia to take command of the 08th MS Team. In their first guerilla operation, Shiro's team is tasked with distracting the Zeon forces while Federation ground troops locate a mysterious new Zeon weapon.", + "posterPath": "/tzr1YdnPSIWMMgyb6Uzi3f9I8p3.jpg", + "backdropPath": "/nhpOoh7cHkxgsd58v7f55xamW3j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "1996-01-25", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.029, + "voteCount": 35, + "popularity": 3.5821 + }, + { + "id": 210899, + "title": "UniteUp!", + "originalTitle": "UniteUp!", + "overview": "Akira Kiyose, a high schooler who loves to sing, gets recruited by a talent agency called sMiLea Production. Akira learns that the legendary idols “Anela”, who shocked the world with their sudden retirement, are behind the agency developing talent. Together with Banri Naoe and Chihiro Isuzugawa, also recruited by the agency, they form an idol group as they chase their dream towards super stardom alongside other idol groups “LEGIT” and “JAXX/JAXX”.", + "posterPath": "/7jWi4SppOmtQMfxmviNlEUAY3Tz.jpg", + "backdropPath": "/axAMkNIcbyHVJj3B04LElzNmsFd.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 9, + "popularity": 3.5752 + }, + { + "id": 63453, + "title": "Garo: The Animation", + "originalTitle": "牙狼〈GARO〉-炎の刻印-", + "overview": "Mendosa, the chief adviser of the king of Valiante, begins a campaign to hunt down \"witches,\" resulting in the deaths of many magical knights and their sorcerer assistants. Anna, a sorceress married to the knight Herman Lewis, gives birth to a son before her execution. Herman takes their child, Leon, and flees, raising him to be the heir of the legendary Golden Armor. By the time Leon grows up, Valiante is completely in the control of Mendosa, who drives out Prince Alfonso and his mother. Alphonso decides to seek out the man who inherited the Golden Armor to reclaim the throne and save his people.", + "posterPath": "/cl9x83myIZtDSqHPu4WMekKt7E0.jpg", + "backdropPath": "/2exXThXfl4wr2h5qJ1sve93gQj5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2014-10-03", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 17, + "popularity": 3.5738 + }, + { + "id": 46065, + "title": "Senran Kagura: Ninja Flash", + "originalTitle": "閃乱カグラ", + "overview": "The Hanzo Academy is a prestigious prep school with a secret known only to a select few. Behind its walls is a training course for shinobi; trained spies and assassins that centuries ago had served the shoguns for their political and military needs. Today the tradition continues with five young female trainees with diverse personalities: the care-free Asuka, fierce yet perverted Katsuragi, the sweet and innocent Hibari, stoic and protective Yagyuu, and their mature, class representative, Ikaruga.", + "posterPath": "/v04svAk6eI1ptjmfjYeC4KIJYp9.jpg", + "backdropPath": "/77zxBqvTck4QiWIrhcGrhncz8vW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2013-01-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 25, + "popularity": 3.5737 + }, + { + "id": 283705, + "title": "The Shy Hero and the Assassin Princesses", + "originalTitle": "気絶勇者と暗殺姫", + "overview": "The hero Toto has talent, but his shyness has prevented him from forming a party. As he languishes in the town of origins, three beautiful women—Ciel, Anemone, and Goa—invite Toto to join their party out of the blue. Toto gears up to begin the journey, but unbeknownst to him, all three women are plotting to kill him for their own reasons!", + "posterPath": "/xgfSkXh8UOCPhVBN7nGtaoe89YJ.jpg", + "backdropPath": "/jTF9GUoGHW1mpNSCz1kgLJUYsoo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-12", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 9, + "popularity": 3.5719 + }, + { + "id": 249854, + "title": "mono", + "originalTitle": "mono", + "overview": "Satsuki Amamiya was feeling down due to the graduation of the high school Photography Club’s president. However, her best friend and fellow member An Kiriyama encourages Satsuki to dedicate herself to the newly merged Cinephoto Club. Join Satsuki and An as they set out to track down a missing camera, meet new faces, and capture stunning photos and videos along the way.", + "posterPath": "/lXsY3KHZptNv7MhMrUYXWjamh7m.jpg", + "backdropPath": "/xDd7eha6XFOO6IQnJ2N4pwt5sYK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-13", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 13, + "popularity": 3.5682 + }, + { + "id": 87456, + "title": "Mix: Meisei Story", + "originalTitle": "MIX", + "overview": "Because of the legend left by Tatsuya Uesugi, Meisei Academy High School was well-known for their strong baseball team. But 26 years after their glory, the team has not been able to keep their record and has since lost their fame.\n\nTwo stepbrothers, Souichirou and Touma Tachibana, aim to revive of the once-strong Meisei Academy baseball team and enter the National High School Baseball Championship.\n\nSouichirou and Touma are second years in Meisei Academy Middle School. Both boys are talented baseball players. Souichirou has shown excellent skill as a catcher and batter. Though having an extraordinary skill as a pitcher, Touma no longer pitches due to a certain reason.\n\nOnce the two enter high school, they pair as a battery and aim to enter the National High School Baseball Championship!", + "posterPath": "/dVWRCJEh4718sjSg9NSnBtjMyWc.jpg", + "backdropPath": "/nq8WEsxGnze3vIlEDcFd3xGXdK1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 12, + "popularity": 3.5528 + }, + { + "id": 259544, + "title": "Hell Teacher: Jigoku Sensei Nube", + "originalTitle": "地獄先生ぬ~べ~", + "overview": "A number of inexplicable phenomena have been plaguing the town of Domori. In order to protect the town's children, a new homeroom teacher known as “Nube” arrives. Normally gentle and a bit outgoing, Nube has a secret side: he is, in fact, the only psychic teacher in Japan. Rumor also has it his left hand is possessed by a demon! Hell's messenger of justice is here to take on the school's seven mysteries, ghosts, and evil spirits attacking his students.", + "posterPath": "/rsytua5oKGyqzX2sdCZcq5Cck2l.jpg", + "backdropPath": "/vdMoQCiHQNtrbjp7SmFGG2i76g0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 7, + "popularity": 3.5517 + }, + { + "id": 135335, + "title": "Sugar Apple Fairy Tale", + "originalTitle": "シュガーアップル・フェアリーテイル", + "overview": "Anne Halford is on her way to fulfill her dream of becoming a confectionary artisan, a Silver Sugar Master—however, the road to her destination is filled with a world of danger. To protect herself, she reluctantly buys Challe, a fairy forced into a life of servitude, but she seeks friendship more than a lackey. Torn between his freedom and her needs, she must confront what the sweet life is worth.", + "posterPath": "/pBbnZHqeyBWTPhRASXwphb3MuQZ.jpg", + "backdropPath": "/gtUqkXVxfS4sz4lMvoTes7Djx1r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.241, + "voteCount": 29, + "popularity": 3.55 + }, + { + "id": 57528, + "title": "Horizon in the Middle of Nowhere", + "originalTitle": "境界線上のホライゾン", + "overview": "History is coming to an end. When humans came down from the sky they brought with them the Testament, the guide to the path they must follow if they wish to return to the skies again.", + "posterPath": "/alHwzhOHP9xyQOonGljEPUeIPF8.jpg", + "backdropPath": "/cw7UKVTl019BfOQ18GlHiqsz53T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2011-10-01", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.125, + "voteCount": 16, + "popularity": 3.5485 + }, + { + "id": 9550, + "title": "Ultimate Muscle: The Kinnikuman Legacy", + "originalTitle": "キン肉マンII世", + "overview": "Ultimate Muscle: The Kinnikuman Legacy, known in Japan as Kinnikuman II sei, is a manga and anime series made by Yoshinori Nakai and Takashi Shimada under the pen name Yudetamago. It is the sequel to the hit manga Kinnikuman that they started in 1979. The toy line of Kinnikuman was released in North America as M.U.S.C.L.E.. The name of Ultimate Muscle was chosen to connect the Americanized storyline of the M.U.S.C.L.E. toyline of the 1980s into the anime. Bandai also produced intermittently distributed toy tie-ins during the initial run of Ultimate Muscle.", + "posterPath": "/oONgggpDToiOQgCDY4NCyHFK6yv.jpg", + "backdropPath": "/thpSGcTjLkZ28nrGpnElfOaeUT5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-01-09", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.58, + "voteCount": 81, + "popularity": 3.5461 + }, + { + "id": 8922, + "title": "Neo Ranga", + "originalTitle": "南海奇皇", + "overview": "Across the ocean on the tiny island kingdom of Barou the ancient god Neo Ranga awakens from his slumber. He is mysteriously drawn to Tokyo, and the three beautiful sisters - Minami, Ushio, and Yuuhi - who are unwittingly linked to the monster.\n\nBut instead of rolling out the red carpet, the military rolls out the weaponry, and things start to get nasty. The plot thickens: Why is Neo Ranga driven to Tokyo? Is he a messenger with a warning for humankind, or just a big boy out for a good time? And what's behind Ranga's mysterious eyes?", + "posterPath": "/vT461x6KRv0X7fLrC266QLF7mna.jpg", + "backdropPath": "/fpK1UPdtqeZCMCNpS7eZQ1PE5mi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-04-06", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 6, + "popularity": 3.5415 + }, + { + "id": 68455, + "title": "Tawawa on Monday", + "originalTitle": "月曜日のたわわ", + "overview": "The anime follows a salaryman who has a chance meeting with a girl named Ai on the train. They begin to meet every Monday on the train, with the man serving as her bodyguard on the crowded commute while they chat.", + "posterPath": "/8El663tdtQUxULLx3iBQMlb3FsO.jpg", + "backdropPath": "/8hUizXcfp99efhcazTdEspZwSH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-10", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 38, + "popularity": 3.5398 + }, + { + "id": 46390, + "title": "Ghost Sweeper GS Mikami", + "originalTitle": "GS美神", + "overview": "Overdevelopment and crowding in Japan has forced many of its indigenous spirits and ghosts to lose their homes. Due to problems caused by the homeless spirits, a new profession was created, the Ghost Sweepers (GS). Private exorcists for hire, they serve only the highest bidder to survive in the cutthroat corporate world. Among this, the Mikami GS Company, led by 20-year-old Reiko Mikami and her two assistants, the 17-year-old boy Tadao Yokoshima and the ghost girl Okinu, is said to be the best.", + "posterPath": "/4ajmgm9d0CewrUeyUSRsoRc68Eb.jpg", + "backdropPath": "/gNBBFRCPXeAiEVpAhUbGPQBSaVa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1993-04-11", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.814, + "voteCount": 35, + "popularity": 3.5385 + }, + { + "id": 117880, + "title": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "originalTitle": "天才王子の赤字国家再生術", + "overview": "Prince Wein is ready to commit treason. And who can blame him? Faced with the impossible task of ruling his pathetic little kingdom, this poor guy just can't catch a break! But with his brilliant idea of auctioning off his country, this lazy prince should be able to retire once and for all. Or that was the plan...until his treasonous schemes lead to disastrous consequences-namely, accidental victories and the favor of his people!", + "posterPath": "/jZoU11wB8H02vKIsXtFXd9rjQ4W.jpg", + "backdropPath": "/qulMEkeKTNo0ICTEW1rlODT3uOA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-11", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.804, + "voteCount": 93, + "popularity": 3.5332 + }, + { + "id": 35415, + "title": "Honey and Clover", + "originalTitle": "ハチミツとクローバー", + "overview": "Takemoto Yuuta, Mayama Takumi, and Morita Shinobu are college students who share the small apartment. Even though they live in poverty, the three of them are able to obtain pleasure through small things in life. The story follows these characters' life stories as poor college students, as well as their love lives when a short but talented 18 year old girl called Hanamoto Hagumi appears.", + "posterPath": "/kswS6bL0EbxW2ryWL7sXMyMT2EV.jpg", + "backdropPath": "/9JE0yBCvffLUvIawvjP7Z3nmiNO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2005-04-15", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 38, + "popularity": 3.5294 + }, + { + "id": 80795, + "title": "ULTRAMAN", + "originalTitle": "ULTRAMAN", + "overview": "Decades ago, a hero from the stars left this world in peace. Now, the son of Ultraman must rise to protect the Earth from a new alien threat.", + "posterPath": "/oD1E8eKTzrav7Xdil7ZkRcgBKdQ.jpg", + "backdropPath": "/vgoeMt2R5DdwK7DCbJJUS2Vkah7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2019-04-01", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 150, + "popularity": 3.5265 + }, + { + "id": 76759, + "title": "GeGeGe no Kitaro", + "originalTitle": "ゲゲゲの鬼太郎", + "overview": "Nearly twenty years into the 21st century, people have forgotten the existence of Yokai. When a number of unexplainable phenomena plague adults of the human world with confusion and chaos, thirteen-year-old Mana writes a letter to the Yokai Post in search of answers, only to be greeted by GeGeGe no Kitaro...", + "posterPath": "/14ZF1DjU9Ty03sm9kr4PClJiQX9.jpg", + "backdropPath": "/nMy6fntEIcmJk9BNz67Upf4SMRm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 16, + 10759 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2018-04-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 20, + "popularity": 3.5263 + }, + { + "id": 62565, + "title": "My Love Story!!", + "originalTitle": "俺物語!!", + "overview": "Takeo Goda is a giant guy with a giant heart. Too bad the girls don't want him! (They always go for his good-looking best friend, Makoto Sunakawa.) Used to being on the sidelines, Takeo simply stands tall and accepts his fate. But one day when he saves a girl named Rinko Yamato from a harasser on the train, his (love!) life suddenly takes an incredible turn! Takeo can hardly believe it when he crosses paths with Rinko again, and he finds himself falling in love with her... But with handsome Suna around, does Takeo even stand a chance?", + "posterPath": "/vDTSx6BuelrdAO1CjVGs9MuUnMP.jpg", + "backdropPath": "/baO2jzutSsHyDW7eJlSTAGUzSDx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-04-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.427, + "voteCount": 361, + "popularity": 3.5248 + }, + { + "id": 111576, + "title": "Shadows House", + "originalTitle": "シャドーハウス", + "overview": "A faceless clan lives in a large mansion, masquerading as nobles. Their caretakers are living dolls who spend their days cleaning up the dirt the tenants leave behind. But there’s a deeper mystery at play… and the secret of the house will be unveiled.", + "posterPath": "/lyB5T6lWA4yCPZxolZ2KuVm8YV3.jpg", + "backdropPath": "/reKIbMr7sgC4pHRcApJS7PAO1c0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 91, + "popularity": 3.524 + }, + { + "id": 65712, + "title": "Dimension W", + "originalTitle": "Dimension W", + "overview": "Humanity has found a way to achieve infinite energy by using coils to draw it from the fourth plane: dimension \"W\". With the production of coils having been monopolized by the New Tesla energy company, freelance collectors are hired to find and remove any illegal, unofficial coils.\n\nThis is the story of collector Kyōma, who also happens to have a huge hatred towards coils. During one of his missions he stumbles upon a female android that perceives herself as being human, leading the two to enter an unlikely partnership.", + "posterPath": "/oS5tiW8fpwnBW9pwVvFSQ7pQtAg.jpg", + "backdropPath": "/snZwrfBtwOFSZWCNMPjr9d7OaoG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2016-01-10", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 62, + "popularity": 3.5223 + }, + { + "id": 121792, + "title": "Akebi's Sailor Uniform", + "originalTitle": "明日ちゃんのセーラー服", + "overview": "Robai Private Academy is a well-known girls’ junior high school in the countryside. Komichi Akebi is a girl who, for a certain reason, has dreamed of wearing a Robai Academy sailor uniform. Her dream comes true, and her heart races as the day of the school entrance ceremony arrives. With her heart set on her new sailor uniform, Komichi embarks on the junior high school life of her dreams. Komichi dashes headlong through days full of “firsts”—classmates, school lunches, club activities, and more—in this sparkling diary of girlhood. “I hope I can make a lot of friends.”", + "posterPath": "/kGMOxl3o9QNeRzAvmeDJaaxLrtV.jpg", + "backdropPath": "/A7jnN3Qf7garU996UKf8wQm7I52.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-01-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 48, + "popularity": 3.5213 + }, + { + "id": 982, + "title": "Transformers: Armada", + "originalTitle": "超ロボット生命体トランスフォーマー マイクロン伝説", + "overview": "Earth kids enter a conflict between two factions of Transformers.", + "posterPath": "/tjbBjYfXyISFZMbpNQBNoiKwJp2.jpg", + "backdropPath": "/xWBt3YbcOHAi5GqhJCdw7K9CFfv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2003-01-10", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 24, + "popularity": 3.5177 + }, + { + "id": 65332, + "title": "Amagi Brilliant Park", + "originalTitle": "甘城ブリリアントパーク", + "overview": "Seiya Kanie, believes that the beautiful but reserved Isuzu Sento has invited him on a date at an amusement park called Amagi Brilliant Park. Much to his chagrin, not only is the location a run-down facility, the supposed date is merely a recruitment tour where Sento and Princess Latifa Fleuranza, the owner of the theme park, ask him to become the park's new manager. Their cause for desperation? As stipulated in a land-use contract, Amagi has less than three months to meet a quota of 500,000 guests, or the park will be closed for good and the land redeveloped by a greedy real-estate company.\n\nSeiya is won over by the revelation that Amagi is no ordinary amusement park; many of its employees are mysterious magical beings who live in the human world and are nourished by the energy created by people having fun. Entrusted with the hopes and dreams of this far-off enchanted land, Seiya must now use his many skills to bring Amagi back on its feet, or watch it crumble before his eyes.", + "posterPath": "/kjKEWuaHERnAVmhuvrChSePYbYb.jpg", + "backdropPath": "/asHF0Mu2jPNg0c5QAI3PUcx8Qq0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 113, + "popularity": 3.5162 + }, + { + "id": 11520, + "title": "Pinocchio: The Series", + "originalTitle": "樫の木モック", + "overview": "Mokku of the Oak Tree, also known as Mokku Woody the Oak Tree, or Saban's Adventures of Pinocchio in the United States, is a 52 episode anime series by Tatsunoko Productions first aired on Fuji Television in 1972. The story is based on the novel The Adventures of Pinocchio by Italian author Carlo Collodi.\n\nUnlike the more cheerful lighter tones of the Disney Version and Nippon Animation's version Piccolino no Bōken, this series has a distinctly sadistic darker theme and portrays the main character, Pinocchio, as suffering from constant physical and psychological abuse and freak accidents.", + "posterPath": "/lMFhoKUmC4hdrSjNpgBwXfsS8fz.jpg", + "backdropPath": "/xSXeA1RyhtjCxxitwkeolauqzCh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10762 + ], + "genres": [ + "Animation", + "Drama", + "Kids" + ], + "releaseDate": "1972-01-04", + "releaseYear": "1972", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 10, + "popularity": 3.515 + }, + { + "id": 88804, + "title": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "originalTitle": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "overview": "Dale is a cool, composed, and highly skilled adventurer who's made quite a name for himself despite his youth. One day on a job deep in the forest, he comes across a little devil girl who's almost wasted away. Unable to just leave her there to die, Dale takes her home and becomes her adoptive father.\n\nDevil or not, Latina is beyond adorable, and the adventurer soon finds himself head over heels with being a parent. But why was she out in the forest to begin with, and why does she carry the mark of a criminal?", + "posterPath": "/jv37TjutT1zXSWLmDgTF9BbBOcp.jpg", + "backdropPath": "/c65KeNojrNYSM1xOS0xmMg0rpJh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-04", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.275, + "voteCount": 51, + "popularity": 3.5064 + }, + { + "id": 17149, + "title": "Vampire Knight", + "originalTitle": "ヴァンパイア騎士", + "overview": "At Cross Academy, two student disciplinary committee members are tasked with keeping the peace between a human class and a night class of vampires.", + "posterPath": "/eqloipTo5S791bD6zHegJbs2BBV.jpg", + "backdropPath": "/ty7HU48KEZzvoLuUVraUQSTsnbF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2008-04-08", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 323, + "popularity": 3.4941 + }, + { + "id": 14891, + "title": "Kirby: Right Back at Ya!", + "originalTitle": "星のカービィ", + "overview": "A diminutive pink creature orbiting in space named “Kirby” crash lands into Dream Land. Once getting acquainted with the citizens who live there in Cappy Town, he begins to defend the town from the monsters that King Dedede, the self-proclaimed ruler of Cappy Town, orders from the evil Nightmare Enterprises.", + "posterPath": "/6Hjv3JQjEnMgEWIZ6QQOS2KtMZJ.jpg", + "backdropPath": "/zEZkBumL75CeVpMupSZLjYG4xVK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2001-10-06", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 20, + "popularity": 3.4917 + }, + { + "id": 116724, + "title": "The aquatope on white sand", + "originalTitle": "白い砂のアクアトープ", + "overview": "Kukuru Misakino, an 18-year-old high school girl working in an aquarium, meets Fuuka Miyazawa, a former idol who lost her place in Tokyo and escaped. Fuuka will spend her days in the aquarium with her own thoughts in mind. However, the crisis of closing is approaching for the aquarium, as the girls explore their dreams and reality, loneliness and friends, bonds and conflicts.", + "posterPath": "/3Yux6t3BrfGA4UPoM1WrexzmlVo.jpg", + "backdropPath": "/yxVT9pCWYbk25Wv1tuRRuz03AoP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2021-07-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 25, + "popularity": 3.4909 + }, + { + "id": 194986, + "title": "Spy Classroom", + "originalTitle": "スパイ教室", + "overview": "Spy-in-training Lily is desperate to score a passing grade. Eager to prove herself, she leaps at the chance to join the mysterious team Lamplight and beat the Impossible Mission. Too bad the task ahead is even more harrowing than she imagined…", + "posterPath": "/uTEurqa3IpiF53TugOsGL8k01eq.jpg", + "backdropPath": "/7hdvBiy99fcgMr48eTKonL3ISWS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2023-01-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 34, + "popularity": 3.4898 + }, + { + "id": 203040, + "title": "KONOSUBA – An Explosion on This Wonderful World!", + "originalTitle": "この素晴らしい世界に爆焔を!", + "overview": "This feisty young wizard will stop at nothing to master the spell that saved her life: Explosion! Megumin, the “Greatest Genius of the Crimson Magic Clan,” has chosen to devote her studies to the powerful offensive magic used by her mysterious savior. Then one day, her little sister finds a black kitten in the woods. But this cat isn’t just a new furry friend—she’s the key to awakening a Dark God!", + "posterPath": "/68rh8l8RaGujTDF6k87yykxixIy.jpg", + "backdropPath": "/3g8fsosj03C2rl0Jfeermtu0rCR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2023-04-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 92, + "popularity": 3.4854 + }, + { + "id": 69293, + "title": "Little Witch Academia", + "originalTitle": "リトルウィッチアカデミア", + "overview": "When she was a little girl, Atsuko \"Akko\" Kagari saw a magic show performed by a witch named Shiny Chariot. From that day on she wanted to be just like her. Enrolling at Luna Nova Magical Academy and having no magical background, can she become a witch like her idol Shiny Chariot?", + "posterPath": "/93Lz0LwbScZ5bmuqoIngLv1LKNb.jpg", + "backdropPath": "/ra6aGM9kmP0XRnWFg1ML2VzpM3W.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2017-01-09", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.905, + "voteCount": 147, + "popularity": 3.4845 + }, + { + "id": 42503, + "title": "Deadman Wonderland", + "originalTitle": "デッドマン・ワンダーランド", + "overview": "Ganta is the only survivor after a mysterious man in red slaughters a classroom full of teenagers. He's framed for the carnage, sentenced to die, and locked away in the most twisted prison ever built: Deadman Wonderland. And then it gets worse.", + "posterPath": "/xHgs3UJx5nKi7deizomDrumPxrw.jpg", + "backdropPath": "/iHA3JmrA8k4TSeGlcDhfBKvRdBZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-17", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.543, + "voteCount": 463, + "popularity": 3.4842 + }, + { + "id": 271003, + "title": "Yandere Dark Elf: She Chased Me All the Way from Another World!", + "originalTitle": "ちょっとだけ愛が重いダークエルフが異世界から追いかけてきた", + "overview": "Hinata did it. He got reincarnated into another world, took up the mantle of Hero, and slew the dreaded Demon Lord alongside his party of fellow adventurers. As his reward, he’s returned to Earth to resume a normal life. Or it would be if it wasn’t for the fact that his dark elf companion Mariabelle decided to travel to Earth to come and live with him! Now she uses her arcane talents to ward off any potential romantic rivals and capture Hinata’s affection.", + "posterPath": "/eCWtp80MCEBPMuRmAjm2zNMgOSW.jpg", + "backdropPath": "/goz9KqwTKy8pCW2iOycBLMBtJ0y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 13, + "popularity": 3.4832 + }, + { + "id": 50325, + "title": "The Pet Girl of Sakurasou", + "originalTitle": "さくら荘のペットな彼女", + "overview": "Sorata Kanda, a high school sophomore living in Sakurasou, the den of their academy's problem children, spends his days being dragged around by the strange residents, swearing he's going to escape Sakurasou one day.", + "posterPath": "/euzCsaY9Jb49gSqUWXSDonBF3su.jpg", + "backdropPath": "/8nP3PqJ4Fu8jfsXCjejmgPuKLUO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2012-10-09", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 129, + "popularity": 3.4819 + }, + { + "id": 259787, + "title": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "originalTitle": "来世は他人がいい", + "overview": "Yoshino’s engagement is far from a dream come true. Her grandfather, head of the largest yakuza group in Kansai, has arranged her marriage to Kirishima, grandson of the Miyama Clan leader, as part of a truce. To Yoshino’s surprise, Kirishima seems kind and charming for a yakuza member. But his warm facade only serves to mask a dark and dangerous truth.", + "posterPath": "/nAlMjm8CIPCiKGP2iCiKbXqEokI.jpg", + "backdropPath": "/goq0xVbQ1h95r3oVDqQOA9WCuWM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 35, + 18 + ], + "genres": [ + "Animation", + "Crime", + "Comedy", + "Drama" + ], + "releaseDate": "2024-10-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.583, + "voteCount": 36, + "popularity": 3.481 + }, + { + "id": 8962, + "title": "3000 Leagues in Search of Mother", + "originalTitle": "母をたずねて三千里", + "overview": "Italy is in a deep depression, so to support her family, Marco's mother goes to Argentina to work as a domestic. But after she writes to her family that she is sick, her letters stop coming. So Marco decides to go to Argentina to look for her. He travels across Argentina to find her, meeting many wonderful people, and having many adventures during his journey.", + "posterPath": "/cNyYHaHxOytT7DFbVhRrHpkqlst.jpg", + "backdropPath": "/w1lf6mHUa9gdLREnUDjwYqJMOaf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Family" + ], + "releaseDate": "1976-01-04", + "releaseYear": "1976", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 143, + "popularity": 3.4758 + }, + { + "id": 67674, + "title": "Danganronpa 3: The End of Hope's Peak High School", + "originalTitle": "ダンガンロンパ3 The End of 希望ヶ峰学園-絶望編", + "overview": "Hope's Peak Academy is a special school, recognized by the government, that was established in order to gather and nurture top-class students who excel in various fields. This school has two courses: The main course, and the preparatory course. Anyone with the money can enter the preparatory course, even if they don't have any special skills. The 77th class of the main course is filled with students who not only have unique abilities, but unique personalities as well. However, the students learned that \"Talent isn't the most important thing in life; it's to involve yourself with people and make yourself a better person while making memories.\" However, little did they know that a mysterious project and discrimination of the courses were happening right under their noses. Hajime Hinata, a boy from the preparatory class who craves for an ability. The fateful meeting he has drives the future of the school into an unimaginable direction.", + "posterPath": "/aMWI35yAa3VD5VqtKbOs2S9siuS.jpg", + "backdropPath": "/8zJzPNSvfGUMhLioatY4I4dTDwh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2016-07-14", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 43, + "popularity": 3.4733 + }, + { + "id": 35832, + "title": "Romeo and the Black Brothers", + "originalTitle": "ロミオの青い空", + "overview": "To get the money to pay for a doctor for his father, Romeo bravely sells himself as a chimney sweep. On the way to Milan he meets Alfredo, a mysterious boy on the run heading to the same fate. Upon being separated and sold to their new bosses, the two boys swear eternal friendship. Romeo has to learn the hardships of a chimney sweep's job.", + "posterPath": "/r4HYMeXhK2Rx8tYVaF2xCfbVdhB.jpg", + "backdropPath": "/gUBiMZoSxrBCSmmoY8KZkIAOxVY.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10759 + ], + "genres": [ + "Drama", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1995-01-15", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 8.684, + "voteCount": 19, + "popularity": 3.4694 + }, + { + "id": 119404, + "title": "I, Tsushima", + "originalTitle": "俺、つしま", + "overview": "The story centers on a woman who is getting on in years, but all her cats think she's a man so they call her Ojiichan. One day a brazen cat named Tsushima appears in Ojiichan's yard.", + "posterPath": "/6sncQqNTUOhAFHen70SByBDEJ82.jpg", + "backdropPath": "/z6jYFQ7xrnmE4CxeNf6U2KvHE0p.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-07-02", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 7, + "popularity": 3.4686 + }, + { + "id": 95697, + "title": "Arte", + "originalTitle": "アルテ", + "overview": "In the 16th century, Arte, a delightful young lady from an aristocratic family, dreams of being an artist and contributing to the renewal of civilization. However, with her father's death, she ends up losing the only person who believed in her passion for art. Now she is expected to marry a nobleman and live as a refined housewife without disgracing her family name. Reluctant to accept her fate, the headstrong Arte steps into the streets in search of a master artisan to take her on as an apprentice.\n\nBut no one believes that women are capable of fine craftsmanship, so none are willing to accept her. Luckily, a renowned artisan by the name of Leo is persuaded to take her as his disciple since he has none anyway. And thus, Arte's new life begins, far from the comfort of her noble upbringing. As an apprentice, she must earn her keep while tackling various challenges along the difficult path to becoming a full-fledged, master artisan.", + "posterPath": "/vtlujR0LEjyBTT5s0CEtYdqeCaw.jpg", + "backdropPath": "/3t77iT4neKIZktuwwNhaIdT8NB8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2020-04-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.073, + "voteCount": 75, + "popularity": 3.4673 + }, + { + "id": 133154, + "title": "Sword of the Demon Hunter", + "originalTitle": "鬼人幻燈抄", + "overview": "Jinta journeys through a century-spanning epic, all while questioning why he wields a sword.", + "posterPath": "/8BNGnDKMaDvpmkTd6z9pQL97Upe.jpg", + "backdropPath": "/7ylrebWFQZAHOW1TMGdhp9AfRp1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-03-31", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 17, + "popularity": 3.4665 + }, + { + "id": 92588, + "title": "Deca-Dence", + "originalTitle": "デカダンス", + "overview": "Many years have passed since humanity was driven to the brink of extinction by the sudden emergence of the unknown life forms Gadoll. Those humans that survived now dwell in a 3000m-high mobile fortress Deca-dence built to protect themselves from the Gadoll threat. Denizens of Deca-dence fall into two categories: Gears, warriors who fight the Gadoll daily, and Tankers, those without the skills to fight. One day, Natsume, a Tanker girl who dreams of becoming a Gear meets surly Kaburagi, an armor repairman of Deca-dence. This chance meeting between the seemingly two opposites, the girl with a positive attitude who never gives up on her dreams and the realist who has given up on his, will eventually shake the future course of this world.", + "posterPath": "/y3bM1PBQRH7r8vIMBEXSGx41OAi.jpg", + "backdropPath": "/3VPPB2VGmp0l3XkUE3Pde2tZ4gi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-08", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.745, + "voteCount": 145, + "popularity": 3.4659 + }, + { + "id": 31721, + "title": "Corpse Princess", + "originalTitle": "屍姬", + "overview": "Armed with dual machine guns, an undead school girl, Makina Hoshimura, must hunt down 108 other undeads with the help of specially trained Buddhist monks in order to gain entry into Heaven. Based on manga written by Yoshiichi Akahito.", + "posterPath": "/zbYRzhmQm4LyJiPF4hlH3B4iy2E.jpg", + "backdropPath": "/wU3HN3MvF1n4h3qle0DiwpSPs8U.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 24, + "popularity": 3.4617 + }, + { + "id": 100368, + "title": "Yu-Gi-Oh! SEVENS", + "originalTitle": "遊☆戯☆王SEVENS", + "overview": "Yuga can't wait to share Rush Dueling with every Duelist out there, but Goha Enterprises - the megacorp that controls the whole city - is having none of it! They're the ones who dictate how Duels are supposed to be played, so they're going to use everything in their arsenal to crush this kid! But if they think that's going to stop Yuga from building his road to freedom - they don't know Yuga!", + "posterPath": "/zfEcbgVnUsnLbpbiEsyAP7vkVWV.jpg", + "backdropPath": "/nRIRh0TWFdjyeyY0ae6Uc6yuX9M.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10765, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2020-04-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 4.9, + "voteCount": 19, + "popularity": 3.4593 + }, + { + "id": 135334, + "title": "I'm the Villainess, So I'm Taming the Final Boss", + "originalTitle": "悪役令嬢なのでラスボスを飼ってみました", + "overview": "When her engagement to the prince ends unceremoniously, details of the young noblewoman Aileen's past life come rushing back and help her realize she's living inside the world of one of her favorite otome games—as the heroine's greatest rival! However, her memory has more plot holes than bad fan fiction…and the only certainty is that if she doesn't do something quick, her death is all but assured. The hero/main-love-interest can't be relied on, so why not see what the last boss has to say?", + "posterPath": "/dI52sNRWyrskfnM67ssqCHgLvoD.jpg", + "backdropPath": "/9kwmwW7TnG7yjrlqbZgp8hGK9M7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-09-24", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 40, + "popularity": 3.4545 + }, + { + "id": 35464, + "title": "Strike Witches", + "originalTitle": "ストライクウィッチーズ", + "overview": "The year is 1939 - it was then that the Neuroi appeared. Nobody knows where they came from or what their ultimate agenda is, but the fact remains that their attacks drove people out of their towns and cities. In order to take arms against them, humanity develops a new anti-Neuroi weapon called the \"Striker Unit.\" Using the power of magic to fight against the monsters, this new device enhances and amplifies the power of female magic-wielders. To use this device, young witches from all over the world have been brought together to form an elite task force unit called the 501st Joint Fighter Wing, commonly known as the \"Strike Witches.\"", + "posterPath": "/8313VGYl6CWVButaAWIP4G9ViuR.jpg", + "backdropPath": "/p2roEe217G5Km5Jn8Qave731Ssd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-07-04", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 36, + "popularity": 3.4513 + }, + { + "id": 60831, + "title": "Knights of Sidonia", + "originalTitle": "シドニアの騎士", + "overview": "An alien race called Gauna has destroyed Earth. leaving humanity struggling to survive aboard the spaceship Sidonia. Even though it’s been a century since the last encounter with the Gauna, military service is mandatory. For Nagate Tanikaze, whose grandfather secretly hid him in the forgotten bowels of Sidonia, it’s a strange new world as he’s forced to come to the surface. Yet his recruitment comes just in time, for the Gauna have suddenly reappeared.", + "posterPath": "/tGTx2Ec25bWjtanJe7D5vUmQUkA.jpg", + "backdropPath": "/dDDGlVK9cABrVskRUjFrqpVzJgm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 134, + "popularity": 3.4457 + }, + { + "id": 43231, + "title": "Kinnikuman", + "originalTitle": "キン肉マン", + "overview": "Kinnikuman (real name Suguru Kinniku), is a clumsy, foolish, comical superhero who discovers that he is the missing prince of the planet Kinniku (known for producing the greatest superheroes in the universe).\n\nSince he is a clumsy fool, however, he must prove himself worthy of the throne. To do so he enters wrestling competitions and battles evil Chojin.", + "posterPath": "/910k2Q2RlPNYbIj50gOUuAJlCjX.jpg", + "backdropPath": "/stdskqJC0ofgrMXww0euePSxanf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-04-03", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 35, + "popularity": 3.4453 + }, + { + "id": 76128, + "title": "IDOLiSH7", + "originalTitle": "アイドリッシュセブン", + "overview": "Working at an agency owned by your father, seven new idols await. They are all part of an idol unit IDOLiSH7, and each of them have unique personalities. It is your task to manage them. In order to achieve the same goals, as manager and idols together, you gather the seven ununified hearts and aim for the top.", + "posterPath": "/8Eo6qtyyzy27dW7duyZwV8xjl2L.jpg", + "backdropPath": "/l6OthKaa4YBUb9w0ikfTIASbhOX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 15, + "popularity": 3.4423 + }, + { + "id": 37548, + "title": "Junjo Romantica", + "originalTitle": "純情ロマンチカ", + "overview": "Three couples, three intense romances: a student’s tutor crosses the line, a loner meets a force of nature, and a carefree man faces love he can’t ignore.", + "posterPath": "/xkz26fcR3WTe503wkD52etcrGrc.jpg", + "backdropPath": "/jF0xYXXpb2ceinHzTZU54FoBOeP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2008-04-10", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.861, + "voteCount": 36, + "popularity": 3.4374 + }, + { + "id": 110975, + "title": "Osamake: Romcom Where the Childhood Friend Won't Lose", + "originalTitle": "幼なじみが絶対に負けないラブコメ", + "overview": "My childhood friend Shida Kuroha seems to have feelings for me. She lives next door, and is small and cute. With an outgoing character, she's the caring Onee-san type, this being one of her greatest strengths.\n\n...But, I already have my first love, the beautiful idol of our school, and the award-winning author, Kachi Shirokusa! Thinking about it rationally, I should have no chances with her, but, while walking home from school, she only talks to me, with a smile even! I might actually have a chance, don't you think?!\n\nOr so I thought, but then I heard that Shirokusa already has a boyfriend, and my life took a turn for the worse. I want to die. Why is it not me?! Even though she was my first love... As I was drowning in despair and depression, Kuroha whispered.\n\n—If it's that tough for you, then how about we get revenge? The best revenge ever, that is~", + "posterPath": "/xmVZuD4vr3fMwaPNvSuPZmQ76ai.jpg", + "backdropPath": "/clPZ1X2xBFe5oau6N8KEGPacflQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-14", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 35, + "popularity": 3.437 + }, + { + "id": 88046, + "title": "Fire Force", + "originalTitle": "炎炎ノ消防隊", + "overview": "Year 198 of the Solar Era in Tokyo, special fire brigades are fighting against a phenomenon called spontaneous human combustion where humans beings are turned into living infernos called \"Infernals\". While the Infernals are first generation cases of spontaneous human combustion, later generations possess the ability to manipulate flames while retaining human form. Shinra Kusakabe, a youth who gained the nickname Devil's Footprints for his ability to ignite his feet at will, joins the Special Fire Force Company 8 which composes of other flames users as they work to extinguish any Infernals they encounter. As a faction that is creating Infernals appears, Shira begins to uncover the truth behind a mysterious fire that caused the death of his family twelve years ago.", + "posterPath": "/Alx1QJZeiweoM0ZVSnJ7PnuqPQx.jpg", + "backdropPath": "/zDXuwmqkTi2lGM4AyloAAX4v51P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2019-07-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.366, + "voteCount": 581, + "popularity": 3.436 + }, + { + "id": 203780, + "title": "Beast Tamer", + "originalTitle": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "overview": "Rein is a Beast Tamer who fights alongside heroes to bring down the Demon King. But one day his comrades declare him useless and kick him out of the party, after which he decides to start a carefree life as an adventurer. During the test he must pass to become an adventurer, he runs into a girl named Kanade who is being attacked by a monster. Rein risks his life to make sure she can escape, but then she brings down the monster in one hit. It turns out that Kanade is from the inordinately powerful tribe of cat people, one of the strongest species! She becomes attracted to his combination of talent and gentle nature and asks: \"Would you try to tame me?\" Rein forms a contract with the strongest cat-eared girl and starts his new life as an adventurer. The heroes who kicked him out of the party, as well as other stronger species, take notice of his power.", + "posterPath": "/7L6yRZ0sXOHs588A68uWERSNMMg.jpg", + "backdropPath": "/nxAgYhmytuUdAnAkpXsOea8dkse.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-01", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.592, + "voteCount": 76, + "popularity": 3.4352 + }, + { + "id": 78484, + "title": "Inazuma Eleven: Ares", + "originalTitle": "イナズマイレブン アレスの天秤", + "overview": "Ares depicts an alternative canon following the events of the first season of the original Inazuma Eleven anime after their victory in the Football Frontier, with the alien attack from the second season never occurring. When Japanese soccer has been deemed weak compared to international competition, the Raimon Eleven disbanded with its members transferring into different soccer teams across the country to strengthen Japan's soccer at a national level. Furthermore, sponsorship has become a vital aspect in a Japanese youth soccer team's survival as it prevents a team's disbandment while being essential to partake in matches.\n\nThe series focuses on the forward Asuto Inamori and his team, Inakuni Raimon, which is made up of players from the remote Inakunijima Island. Needing to maintain their club, they have replaced the original Raimon Eleven as Raimon Junior High's soccer team and compete as underdogs in the annual Football Frontier youth tournament.", + "posterPath": "/3g5Ne3rtp35HmrHaZ1Xu4v3mIYq.jpg", + "backdropPath": "/cLAnJMn3j45ct04qCkfMoe82m3y.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-04-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 17, + "popularity": 3.4342 + }, + { + "id": 61398, + "title": "Terra Formars", + "originalTitle": "テラフォーマーズ", + "overview": "Twenty years ago, Shokichi Komachi was part of the Bugs 2 mission to Mars that discovered Terra Formars, human-cockroach hybrids that resulted from a terraforming accident. Shokichi was one of only two survivors. Now, the AE virus that came from Mars is raging wildly on earth. Shokichi boards the spacecraft Annex 1 to go back to Mars to find a sample in order to create a vaccine. They will face an unanticipated accident, a multinational conspiracy, and even more advanced Terra Formars.", + "posterPath": "/nZTpfSicZCwa1R6GXFFy8d2Ir8k.jpg", + "backdropPath": "/b6WtMcvcmFExFijP82X7b7mWh2O.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-09-26", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.214, + "voteCount": 206, + "popularity": 3.4289 + }, + { + "id": 36581, + "title": "Shiki", + "originalTitle": "屍鬼", + "overview": "Sotobamura is a small village with around 1300 residents; so small the village isn't even connected to a single highway. An isolated village in which old customs, such as the burial of the dead, are still practiced. One day, the bodies of three people are found dead. Although Ozaki Toshio, the village's lone doctor, feels uncertain, he treats the deaths as a normal occurrence. However, in the days following, the villagers start to die one after the other.", + "posterPath": "/zsWbTnNwNjqWvgZ9gqTcK9WLoWy.jpg", + "backdropPath": "/cxqRRYXiDPi6YRbCFbiJDAbbuxt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2010-07-09", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 209, + "popularity": 3.424 + }, + { + "id": 31665, + "title": "School Rumble", + "originalTitle": "スクールランブル", + "overview": "While there is a decided lack of rumble in School Rumble, there’s more hilarious humdingers than any single dinger can hum… Look that one up! And while there is a truck full of pigs, a giraffe, flying saucers and crazy dream sequences, none of that’s even close to what this show’s about. (Though I would probably watch that show, too!)\n\nHere’s what you need to know: Sophomore cutie Tenma is completely crushed on classmate Karasuma past the point of freakin’ out. Tough guy Harima, with his own delinquent style of freak, has a long-standing crush on Tenma… And Karasuma? Can you say clueless? He’s pretty much all about the curry. Mmm… Curry!\n\nWith enough tangled triangles for an entire semester of geometry, just keep in mind… School Rumble – The absolutely funniest show you’ll ever see that’s not about anything that rumbles… Ever!", + "posterPath": "/uuldZxy7SRvSvOfRBZObKTMfmtP.jpg", + "backdropPath": "/3VGz44Ce7i8E001DUzkvHpRHDV2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-10-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.438, + "voteCount": 48, + "popularity": 3.4183 + }, + { + "id": 85843, + "title": "Kono Oto Tomare!: Sounds of Life", + "originalTitle": "この音とまれ!", + "overview": "Since the graduation of the senior members of the club, Takezou ends up being the sole member of the \"Koto\" (traditional Japanese string instrument) club. Now that the new school year has begun, Takezou will have to seek out new members into the club, or the club will become terminated. Out of nowhere, a new member barges into the near-abandoned club room, demanding to join the club. How will Takezou be able to keep his club alive and deal with this rascal of a new member?", + "posterPath": "/8Iro3QEDkPsqPNrA9UWhFUAgNOM.jpg", + "backdropPath": "/7MgZ2PZljaBN4Wje51UGzatgqFC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2019-04-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.25, + "voteCount": 60, + "popularity": 3.4165 + }, + { + "id": 45254, + "title": "Nyaruko: Crawling with Love!", + "originalTitle": "這いよれ!ニャル子さん", + "overview": "Mahiro Yasaka is just an ordinary high school student, until one day he is suddenly attacked by a dangerous monster. Just when everything seems to be lost, he is saved by a strange girl named Nyaruko, who claims to be the shape-shifting deity Nyarlathotep from horror author H. P. Lovecraft's Cthulhu Mythos.", + "posterPath": "/fgdtcrkso9PZZ4VlIQOoDJMMMzR.jpg", + "backdropPath": "/SpRjuBI0tkIIkONXwy2BIXaPZL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-09", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 41, + "popularity": 3.4138 + }, + { + "id": 219673, + "title": "The Kingdoms of Ruin", + "originalTitle": "はめつのおうこく", + "overview": "Witches were once respected for the wisdom and magic they gifted to humans. But with the rise of the Gear Expansion era, the new science community deemed them as enemies who hindered the progress of society. Thus began the slaughter of all witches, including one who had mentored a human boy named Adonis. After witnessing her death, Adonis vows to bring bloodshed and terror to the human race.", + "posterPath": "/uHSFGSZFR1VH3nG5x48gImWePeL.jpg", + "backdropPath": "/n78eIAuUetBU3UHvsmadQ4o3ucl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.565, + "voteCount": 85, + "popularity": 3.4105 + }, + { + "id": 224753, + "title": "Pseudo Harem", + "originalTitle": "疑似ハーレム", + "overview": "Eiji Kitahama joins the drama club with dreams of having a harem like the ones from his favorite manga. Rin Nanakura, an underclassman, finds herself crushing hard on Eiji, and tries on different personas in his presence to win him over. No matter how she acts, one thing is certain—her feelings for Eiji continue to grow stronger. Will she ever be able to tell him the truth and be herself?", + "posterPath": "/3B6MvhEdbEU4Y4UHETYkUDRhu9x.jpg", + "backdropPath": "/eNKJ8oMulpvNkQ8tJ8WYvWr1glL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 39, + "popularity": 3.4051 + }, + { + "id": 65249, + "title": "ERASED", + "originalTitle": "僕だけがいない街", + "overview": "Satoru Fujinuma is a struggling manga artist who has the ability to turn back time and prevent deaths. When his mother is killed he turns back time to solve the mystery, but ends up back in elementary school, just before the disappearance of his classmate Kayo.", + "posterPath": "/EljUwZJhpuYfVuSfqY8Pt1xxpH.jpg", + "backdropPath": "/dFQOWyByjBqfQoKDcPamLQ04ADH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.483, + "voteCount": 1183, + "popularity": 3.4047 + }, + { + "id": 44033, + "title": "Fisherman Sanpei", + "originalTitle": "釣りキチ三平", + "overview": "Mihira Sanpei talks with a Tohou accent and is a down-to-earth boy with a cheerful and optimistic personality. However, when it comes to fishing, he becomes very serious and is a youth who enjoys fishing more than anything else. The village where he lives in is a natural environment which provides different kinds of fishing challenges. Despite his lack of experience, Sanpei has a first-rate sense with regards to fishing and decides to maxmise his potential by entering into different fishing contests. As he faces various challenges, he learns to solve difficult problems and learn from his mistakes to the extent that he is able to fish anything out of the waters. Along the way, he encounters all kinds of rivals and companions who increase his experience points and help him in his growth.", + "posterPath": "/eUyLQczJ1MwAPB1dRbtdguYaFV0.jpg", + "backdropPath": "/s573JHUWXmSq4oC0qcOpP77sMxp.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1980-04-07", + "releaseYear": "1980", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 6, + "popularity": 3.3989 + }, + { + "id": 82861, + "title": "Bloom Into You", + "originalTitle": "やがて君になる", + "overview": "Yuu has always dreamt of receiving a love confession but feels nothing when a boy gives her one. Confused, she starts her first year of high school and meets Touko. Will Yuu's heart finally skip a beat?", + "posterPath": "/1zJKW7OX968nhUg6NnkmkAmESlo.jpg", + "backdropPath": "/q0xvGJNCKTCSxTISx70JsJ0vxfy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.639, + "voteCount": 83, + "popularity": 3.3963 + }, + { + "id": 71493, + "title": "Yuuki Yuuna Is a Hero", + "originalTitle": "結城友奈は勇者である", + "overview": "Yuuki Yuuna is an ordinary second-year middle school student. She gets up in the morning, gets ready for school, goes to classes, participates in club activities, and has fun with her friends. But there is one extraordinary thing about Yuuna -- she belongs to the “Brave Hero Club.” What does the Brave Hero Club do? Who is the mysterious being called “Vertex?” Yuuki Yuuna and her friends’ story takes place in Year 300, Divine Era", + "posterPath": "/lRoC9nB6lJApAkua1d7IfV3pmoM.jpg", + "backdropPath": "/wxlz2NJXQYXwYpakvbdbHUBYaoE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-17", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 23, + "popularity": 3.3942 + }, + { + "id": 10797, + "title": "Samurai Pizza Cats", + "originalTitle": "キャッ党 忍伝 てやんでえ", + "overview": "The setting is a Japanese looking village named \"Little Tokyo\" where the Pizza Cats run a pizza fast food business. Little Tokyo is populated by all kinds of animals. The official governor of the town is the Emperor, but since he has gone bananas a council takes care of the well-being of the village. One of the members of this council is called Seymour \"Big\" Cheese, who secretly wishes to take over control of the village. The pizza take away restaurant is merely a cover for their true job... Whenever evil is afoot, the Pizza Cats are launched towards the danger from the gun-lookalike clock tower that emerges from the top of their restaurant.", + "posterPath": "/zQ4lohCOwaxb9T8VofAw2SkudxO.jpg", + "backdropPath": "/wZrUquHF7N20jzORTIpWwOm6B9z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "1990-02-01", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 8.141, + "voteCount": 92, + "popularity": 3.3932 + }, + { + "id": 45859, + "title": "Daily Lives of High School Boys", + "originalTitle": "男子高校生の日常", + "overview": "Join Tadakuni, Hidenori and Yoshitake as they undergo the trials and tribulations of life in high school. Each episode presents the boys and their classmates in unique situations that you may or may not have faced in high school yourself.", + "posterPath": "/AhNuEIObse9eQWW2vFGgB5sI6MZ.jpg", + "backdropPath": "/pVPQrgmOeZwYnQeXYdTnnVsZfF6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-01-10", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 181, + "popularity": 3.3869 + }, + { + "id": 270474, + "title": "Even Given the Worthless \"Appraiser\" Class, I'm Actually the Strongest", + "originalTitle": "不遇職【鑑定士】が実は最強だった~奈落で鍛えた最強の【神眼】で無双する~", + "overview": "In a world where heroes are born, not made, Ein’s god-given gift is the weakest: the power to appraise things. Treated cruelly by his peers, Ein spends his days in self-abasement—until he meets Yuri, the spirit of the World Tree. Yuri and her protector, Ursula, bless Ein with the Spirit Eye, unlocking new strength. As his abilities grow, Ein embarks on a journey to uncover his true purpose.", + "posterPath": "/lUAGrruGGj2PB6CYkw6tGLQD41G.jpg", + "backdropPath": "/aTk5XhDb4vdqVXBiatmpbdDJIVK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-01-09", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 40, + "popularity": 3.3847 + }, + { + "id": 38420, + "title": "Is This a Zombie?", + "originalTitle": "これはゾンビですか?", + "overview": "Some guys have no luck; he’s got no pulse. That’s life for poor unfortunate, undead Ayumu. First, he was murdered by a serial killer. Total bummer. Then he was resurrected as a zombie by a cute little Necromancer. That seemed pretty cool until she moved into his house, refused to speak, and forced his rotting carcass to do all the cooking. After that, a magical girl in a pretty pink dress used her matching chainsaw to chop his corpse in half. Luckily, the Necromancer’s powers of resurrection trumped those of the chainsaw chick, so instead of dying (again), Ayumu became the world’s first magical girl zombie. There’s also a voluptuous vampire ninja who thinks zombie boy’s a pervert – and a hideous crayfish demon who wants to devour him. Confused? All you gotta know is this: zombies, frilly dresses, demons, and moe chainsaws. Pink. It’s the new dead.", + "posterPath": "/fTPl96T34XI7NaOANx9oRP8p7qt.jpg", + "backdropPath": "/fCHnv0fGkAPzLPjKBvqkaDwNdsl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-01-11", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 81, + "popularity": 3.3843 + }, + { + "id": 213326, + "title": "The Most Heretical Last Boss Queen: From Villainess to Savior", + "originalTitle": "悲劇の元凶となる最強外道ラスボス女王は民の為に尽くします。", + "overview": "Pride Royal Ivy is only eight years old when she realizes that she's been reincarnated, destined to become the future wicked queen and final boss of an otome game. She's got it all in this new life: razor-sharp wit, boss-tier powers, and influence over the kingdom as crown princess. Determined to sow despair and destruction across the land, she... Wait, what kind of a rotten future is that?! Princess Pride decides to drop the maniacal villainess plan and protect the male love interests instead, cheating her way to saving everyone she can! Will this final boss end up earning the adoration of her kingdom?", + "posterPath": "/u6bMg0g9KDw9nTuMqORCYWHsMSe.jpg", + "backdropPath": "/mhlT8wIYlsjKK5tRASsALxePkLG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 53, + "popularity": 3.3809 + }, + { + "id": 44650, + "title": "Miss Machiko", + "originalTitle": "まいっちんぐマチコ先生", + "overview": "The mischievous students of Arama Academy meet their match in a beautiful and clever new teacher, Miss Machiko! But they're determined to find a prank that will really humiliate her.", + "posterPath": "/2ZL8vWEDAlNy2v6ngxu2bhppxSy.jpg", + "backdropPath": "/2c90XWZxLeHDKtezzZsjbYR4HAO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1981-10-08", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 3.3809 + }, + { + "id": 34189, + "title": "The Irresponsible Captain Tylor", + "originalTitle": "無責任艦長タイラー", + "overview": "Justy Ueki Tylor had his life all planned out: join the military, get a cushy desk job, and then retire with a big fat pension check. The perfect plan... until he wandered into a hostage situation and somehow managed to save an admiral! Now Tylor - a man who wouldn't know what discipline was if it bit him on the backside - has been made Captain of the space cruiser Soyokaze.\n\nThe crew of this run-down ship is the craziest rag-tag team of misfits you're ever likely to see, and they're not too fond of their complacent new leader. But they'd better learn to work together, because they're about to go head to head with the mighty Raalgon Empire. For better or for worse, the Earth's fate has been placed in the hands of a man who's either a total idiot - or an absolute genius!", + "posterPath": "/tmPKSHWBVIG2uBFDfMV1qdql8hV.jpg", + "backdropPath": "/bTTxdfY8nlVNIpfeIy798iZKXk8.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "1993-01-25", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 13, + "popularity": 3.3782 + }, + { + "id": 43004, + "title": "Tenchi Muyo!", + "originalTitle": "天地無用! 魎皇鬼", + "overview": "Tenchi is an average guy who just accidentally freed the space pirate Ryoko after 700 years of captivity! Attractive alien girls from all across the galaxy are about to descend on Tenchi and make his life more outrageous than ever imaginable!", + "posterPath": "/jQMDb6sS3IpWOZNkbPQZLLfNM3w.jpg", + "backdropPath": "/shsnFecnGacDFmMkLrbbJcrnBxW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-09-25", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 17, + "popularity": 3.3743 + }, + { + "id": 26707, + "title": "Spice and Wolf", + "originalTitle": "狼と香辛料", + "overview": "Lawrence, a traveling merchant searching for profit, finds a naked girl with the ears and tail of a wolf asleep in his cart. Her name is Holo – a harvest goddess with an untamed beast lurking inside who longs to return to her beloved northern home. Armed with his street smarts and her animal instincts, a simple peddler and a forgotten deity begin a journey through the wild countryside. Along their path, the riches of happiness shall be reaped, even as the bankruptcy which dwells in the human heart is exposed.", + "posterPath": "/qy5enaLa2Iy8zJAnXC1UNA1Ssjc.jpg", + "backdropPath": "/ce2s97LwKSsB7MYBHK53OCUbDWo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2008-01-08", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.493, + "voteCount": 141, + "popularity": 3.3729 + }, + { + "id": 78471, + "title": "The Piano Forest", + "originalTitle": "ピアノの森", + "overview": "A tranquil tale about two boys from very different upbringings. On one hand you have Kai, born as the son of a prostitute, who's been playing the abandoned piano in the forest near his home ever since he was young. And on the other you have Syuhei, practically breast-fed by the piano as the son of a family of prestigious pianists. Yet it is their common bond with the piano that eventually intertwines their paths in life.", + "posterPath": "/3sN8KTZFC8ypxnIhjoiE8M6L2Pj.jpg", + "backdropPath": "/bb8oz9BP30n3kANxQVLyllTClxD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-04-09", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.355, + "voteCount": 38, + "popularity": 3.3719 + }, + { + "id": 72509, + "title": "Tsuredure Children", + "originalTitle": "徒然チルドレン", + "overview": "A series depicting various scenarios of young love. These stories range from a boy, crippled by his absolute lack of confidence in himself, cannot even accept the fact that the girl of his dreams actually asked him out on a date, to the near-psychotic girl that pours her own blood into her homemade chocolate in order to win his heart.", + "posterPath": "/aTxUzYlMAzmtmO1S8R99irHL2hi.jpg", + "backdropPath": "/8bvcMjlU0ahkyQTXcwQLbjJ3ZMq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-07-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 221, + "popularity": 3.3622 + }, + { + "id": 39980, + "title": "Digimon Data Squad", + "originalTitle": "デジモンセイバーズ", + "overview": "Masaru, is a second year Junior High student, and is undefeated in battle, He meets the Digital Monster Agumon, who has escaped from DATS, a secret government organization. Despite terrible first impressions, the two become best friends by talking with their \"fists\". With others, Masaru and Agumon work to investigate various incidents involving the Digital World and Digital Monsters, to try and get to the bottom of things.", + "posterPath": "/4QTKbEorKBdnrjf4K7UapqarMa2.jpg", + "backdropPath": "/szVERsTFAv2GzmonVNIuJTVA0DO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-02", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 121, + "popularity": 3.3622 + }, + { + "id": 71013, + "title": "Sakura Quest", + "originalTitle": "サクラクエスト", + "overview": "Five girls work in the tourism bureau of their small provincial town. The town revives its \"micro-nation\" tourism program, which originated from a nationwide movement during Japan's bubble economy period, and hires the five girls as \"monarchs\" (tourism ambassadors).", + "posterPath": "/1LvHgIRDNILt5dOPFsYio3CnDoT.jpg", + "backdropPath": "/eeqilhIy15PMyUDhKC78xr2uLdV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2017-04-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 18, + "popularity": 3.3608 + }, + { + "id": 25114, + "title": "Tiger Mask", + "originalTitle": "タイガーマスク", + "overview": "A villainous masked wrestler becomes a hero for the sake of protecting the orphanage in which he was raised.", + "posterPath": "/doHX1Hg4AEw54TvOIPcY5L6BMy8.jpg", + "backdropPath": "/nu57vs7m0o9IPKKxBoVz51qv833.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1969-10-02", + "releaseYear": "1969", + "originalLanguage": "ja", + "voteAverage": 6.795, + "voteCount": 22, + "popularity": 3.3605 + }, + { + "id": 196040, + "title": "Engage Kiss", + "originalTitle": "Engage Kiss", + "overview": "Bayron City -- a Mega-Float type city in the Pacific Ocean, which doesn't belong to any particular nation. As the mine for Orgonium, a new energy resource, this city is the most noticed in the world right now, and here special cases caused by demons called \"D Hazards\" has been occurring frequently. Only a handful of people know about the existence of D Hazards. They are handled by PMCs (Private Military Companies). Shu is a young man living in Bayron City who runs such a company, but his company is tiny. On top of that, he cherry-picks his jobs, so he is always in a bind for money. His life, both publicly and privately, is being supported by the beautiful high school girl Kisara who attends a school in Bayron City.", + "posterPath": "/irBMUE8A5M78qAzCmr0bEVdmEm7.jpg", + "backdropPath": "/3tcC0twOnd6fs7jLG3kiaseR6Fw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 45, + "popularity": 3.3599 + }, + { + "id": 157879, + "title": "3 Seconds Later, He Turned into a Beast", + "originalTitle": "3秒後、野獣。〜合コンで隅にいた彼は肉食でした", + "overview": "Tsumugi is a female college student who carries trauma from an aggressive man in her past. She meets Kaname at a mixer she requested specifically for unaggressive \"herbivore\"-type men. She and Kaname hit it off, and Kaname resembles Tsumugi's older brother a little bit, so she relaxes her guard around him. Kaname, however, feigns to be a \"herbivore\"-type man, but is in reality an aggressive \"carnivore\"-type man, and he can change his demeanor in an instant.", + "posterPath": "/9LnfZfpFEYsOP3THUz1uszExGyf.jpg", + "backdropPath": "/pXPR5qBQbCa5WDASnirTO8PpEXk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-04", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.75, + "voteCount": 14, + "popularity": 3.3528 + }, + { + "id": 61695, + "title": "Beyond the Boundary", + "originalTitle": "境界の彼方", + "overview": "The dark fantasy follows a high school sophomore named Akihito Kanbara. Although the boy appears human, he is half Youmu and invulnerable to wounds because he can heal quickly. One day, Akihito meets freshman Mirai Kuriyama when it seems she is about to jump from the school rooftop. Mirai is isolated because of her ability to manipulate blood, which is considered heresy among members of the spirit world. Disturbing events begin to unfold after Akihito saves Mirai.", + "posterPath": "/6cmtMbEZAYm3aWzthFRk6048LFi.jpg", + "backdropPath": "/93I7zPn0Afvp126PqNR3FdugNXH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-02", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 322, + "popularity": 3.347 + }, + { + "id": 34766, + "title": "Madö King Granzört", + "originalTitle": "魔動王グランゾート", + "overview": "Madö King Granzört is a Japanese young children's animated television series that aired from 1989-1990. It was produced by Bandai Visual and animated by animation studio Sunrise. It also spawned 3 special direct-to-video episodes and two movies.\n\nA boy named Daichi Haruka takes on a journey to the moon, where he gets involved in a fight between the Takamimi, Miminaga and evil tribes. Daichi gets in Granzort, one of the machines of the Malevolent Deity Ruling Light, to fight in the world of magic.", + "posterPath": "/lFg0AGd1OS5bjHG3N4b8Neg2ftl.jpg", + "backdropPath": "/dJ1yXMxNnYUEBEPoJBK7bmtewmL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1989-04-07", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 12, + "popularity": 3.3469 + }, + { + "id": 43288, + "title": "Beck: Mongolian Chop Squad", + "originalTitle": "BECK", + "overview": "Koyuki Tanaka's boring life is changed after meeting Ryusuke Minami, a local musician with a bad attitude, who introduces him to foreign music.", + "posterPath": "/oUWKvp5WaSo25UPzoEcGJuAdzYf.jpg", + "backdropPath": "/foYiY4SJYRR3smIHyGQWabVO1l9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2004-10-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 56, + "popularity": 3.3425 + }, + { + "id": 67145, + "title": "D.Gray-man Hallow", + "originalTitle": "D.Gray-man HALLOW", + "overview": "Allen Walker is an exorcist working for the Black Order whose mission is to protect mankind from the evil Millennium Earl and his deadly Akuma. Allen and his comrades must recover lost Innocence while defending against the Earl’s terrifying army. But if they fail, Innocence will be lost forever.", + "posterPath": "/dyawBuJU0FkEgYcHi7S0gbgOPXc.jpg", + "backdropPath": "/g0wVUXNtF99mVhb635gnevNShLm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 31, + "popularity": 3.3357 + }, + { + "id": 134843, + "title": "Digimon Ghost Game", + "originalTitle": "デジモンゴーストゲーム", + "overview": "High school freshman Hiro Amanokawa activates a mysterious device left behind by his father called \"Digivice\" that makes unknown creatures that cannot be seen by ordinary people, the Digimon, visible to his eyes. This is the story of this other side of the world that nobody is aware of. With their friends, Hiro and Gammamon dive into the mysterious world where these creatures live.", + "posterPath": "/tFI1gE0idyh4E1bvRbHhL3M96tz.jpg", + "backdropPath": "/mPRQKtowB22hWT4k53yRQZkPHTk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2021-10-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 22, + "popularity": 3.3296 + }, + { + "id": 70882, + "title": "Armed Girl's Machiavellism", + "originalTitle": "武装少女マキャヴェリズム", + "overview": "The Private Aichi Symbiosis Academy was originally a high school for high-class girls. When it became co-ed, the girls, out of fear, asked to be permitted to bring weapons to school. When that was enforced, a five-member vigilante corps-like organization called the \"Supreme Five Swords\" was also formed.\n\nAfter many generations, the five swords eventually became a group which corrected problematic students, and the academy started proactively accepting such students in order to correct them.\n\nNomura Fudou was sent to this school after being part of a huge brawl. What will he do when the only options he has after enrolling are being expelled from that school or being corrected the way the rest of the male students there were...by being forced to dress and act like a girl!", + "posterPath": "/6UoTzmBwC73sbVKjIwb0Q0kJl2E.jpg", + "backdropPath": "/rvPakm4StQQWU9imnegSKVUfTCE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2017-04-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 56, + "popularity": 3.3238 + }, + { + "id": 45211, + "title": "Tari Tari", + "originalTitle": "TARI TARI", + "overview": "Wakana Sakai was involved in music, but gave it up one day. Konatsu Miyamoto loves singing and can't be torn from it. Sawa Okita would do anything for her closest friends. They laugh, they fight, they worry, they love... Through their very ordinary lives, little by little the girls learn to move forward. Sometimes they feel as if they can't go on alone, but as long as they have their friends, they believe they'll make it someday. Wakana, Konatsu, Sawa, and the music they make in their ensemble weave a tiny but dazzling story of the power of music.", + "posterPath": "/uBnGs7fMeDcbeb3AWYmpQEn9VqY.jpg", + "backdropPath": "/rqYB3DCIwcYYT2U14jKaIryOY4u.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2012-07-01", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 13, + "popularity": 3.3214 + }, + { + "id": 34750, + "title": "Xam'd: Lost Memories", + "originalTitle": "亡念のザムド", + "overview": "Set on a peaceful island during a violent terrorist attack, a young boy is suddenly transformed into a metal-cased mercenary. But with this great power comes even greater danger. Aiyuki must discover how to master this remarkable new power-or risk having this mysterious fusion of rock, metal and magic destroy him!", + "posterPath": "/iK2Nxgs2m7Kj2gvgr1OJ537Qjmw.jpg", + "backdropPath": "/uO3n4bat4Q7NL8gsKvRLyHdm9SJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2008-09-24", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 14, + "popularity": 3.3135 + }, + { + "id": 42500, + "title": "Lucky Star", + "originalTitle": "らき☆すた", + "overview": "Having fun in school, doing homework together, cooking and eating, playing video games, watching anime. All those little things make up the daily life of the anime-and chocolate-loving-Izumi Konata and her friends.", + "posterPath": "/s51vTFtS1kB227bj9PF9FYalMCv.jpg", + "backdropPath": "/dZ5kvYcMgSb7M5lFehnNtKrwwwk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-04-09", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 83, + "popularity": 3.3071 + }, + { + "id": 138909, + "title": "The Prince's Favorite Is the Villainess", + "originalTitle": "王子の本命は悪役令嬢", + "overview": "One day, an office worker reincarnates into the world of her favorite otome game. Unfortunately, however, she has become the game's villainess, Diana. On top of that, Prince Sirius, supposedly the protagonist's primary target, is targeting her instead. To avoid a Bad End, she needs the prince to hate her. So she tries to seduce him, who supposedly admires purity. However, instead of being disgusted, the prince looks at her lustfully.", + "posterPath": "/q76lLNhLGn0nW6cng2ryH42U35n.jpg", + "backdropPath": "/yFu3ZXTZSuMVqRMk8BtPB2XuJH6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 6, + "popularity": 3.3023 + }, + { + "id": 5857, + "title": "Macross Frontier", + "originalTitle": "マクロスF", + "overview": "A human space colony fleet is trying to find a habitable planet near the center of the Milky Way Galaxy. The story focuses on three young adults and the events that occur around them as the fleet faces a crisis of alien origin.", + "posterPath": "/tV4FhGyWbkGQO0zV8arsrgnYXyT.jpg", + "backdropPath": "/f5l4L9QPCleLRWBXkjhT9fedyD0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2008-04-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 31, + "popularity": 3.3008 + }, + { + "id": 202160, + "title": "The Maid I Hired Recently Is Mysterious", + "originalTitle": "最近雇ったメイドが怪しい", + "overview": "There’s something really strange about the maid I just hired! No normal person could be so beautiful, or cook such amazingly delicious food, or know exactly what I want before I even ask. She must be using magic—right, a spell is the only thing that can explain why my chest feels so tight whenever I look at her. I swear, I’m going to get to the bottom of what makes this maid so...mysterious!", + "posterPath": "/fqQYmqiBqWPcpnmChkrywCE9Kf4.jpg", + "backdropPath": "/wOFDBVfmrSsDDdBnDxm1SAv1kVo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "2022-07-24", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.182, + "voteCount": 118, + "popularity": 3.2986 + }, + { + "id": 76059, + "title": "A Place Further Than the Universe", + "originalTitle": "宇宙よりも遠い場所", + "overview": "Scenery that we have never seen. Sounds that we have never heard. Scent that we have never smelled. Food that we have never tasted. And the surge of emotion that we have never experienced. This is the expedition of recollecting the pieces torn apart and sensation left alone. When we reach that place, what will we think? Howling, 40 degree angle. Raging, 50 degree angle. Shouting, 60 degree angle. A wilderness beyond the heavy sea. The furthest south, far from civilization. At the top of the Earth. We will find lights through the girls' eyes to live tomorrow.", + "posterPath": "/7FxjyLe7co1U8xLYYkpLbXfkTh1.jpg", + "backdropPath": "/jaQLlH74a7dhpm85Jx2zJgdMxMF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2018-01-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.81, + "voteCount": 126, + "popularity": 3.2948 + }, + { + "id": 37437, + "title": "Heaven's Lost Property", + "originalTitle": "そらのおとしもの", + "overview": "Girl-crazy Tomoki’s quiet life gets turned upside down when beautiful, winged Ikaros falls from the sky – and starts calling him master! She seems a little bit lost on Earth, and her origins are shrouded in mystery. One thing’s for sure, though – she just might have the power to make Tomoki’s every dream come true!\n\nThe heavenly hijinks continue in Heaven’s Lost Property: Forte! Tomoki may long for peace and quiet, but with Ikaros and Nymph still adjusting to life on Earth, things aren’t likely to calm down anytime soon. Plus, there’s a new Angeloid on the scene – and she’s been sent to eliminate Tomoki!", + "posterPath": "/8H4aVnkpueXv9EEZUI6G3thU9Lh.jpg", + "backdropPath": "/3dVdhMPbbH5TkQYjjzTM12hzccp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2009-10-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 144, + "popularity": 3.2936 + }, + { + "id": 30083, + "title": "Black Jack", + "originalTitle": "ブラック・ジャック", + "overview": "Kuroo Hazama, also known as \"Black Jack,\" is a legend in the medical world. Famous for being one of the best, as well as not having a license, Hazama and his assistant Pinoko save countless lives that other doctors cannot... for a price; an exorbitant price, in fact, which causes many to view the genius as greedy and heartless. Despite these claims, however, none can deny his skill and the lengths that he will go to treat his patients. This dark medical drama tells the story of the ominous and mysterious world of underground medicine as Black Jack risks his life to cure some of the most bizarre diseases imaginable, even if it means breaking every law in the process.", + "posterPath": "/aveuKnsIiDhWVaC1X6qmafiSLUu.jpg", + "backdropPath": "/7IsJDr77F46fhy1aZT3S5HD2stv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1993-12-12", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 3.2934 + }, + { + "id": 249545, + "title": "Beheneko: The Elf-Girl's Cat Is Secretly an S-Ranked Monster!", + "originalTitle": "Sランクモンスターの《ベヒーモス》だけど、猫と間違われてエルフ娘の騎士(ペット)として暮らしてます", + "overview": "After dying in a fight against the forces of evil, a knight found himself reincarnated as one of the most powerful monsters in the world: a behemoth! Problem is, he has to grow up before he can really strut his stuff, and a baby behemoth looks an awful lot like…a housecat?! And when an elf adventurer decides to take him in, she may need his help as much as he needs hers!", + "posterPath": "/6EUZcmKU8JsRfsLQEDVBbiCuQ9G.jpg", + "backdropPath": "/kwczoZpGHJm9Gzk52FWsGWHRhFQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 27, + "popularity": 3.2921 + }, + { + "id": 243501, + "title": "SHOSHIMIN: How to Become Ordinary", + "originalTitle": "小市民シリーズ", + "overview": "Kobato decides to become an honest, humble citizen after enduring a bitter experience known as “wisdom work.” He forms a pact with Osanai, his classmate with the same goal, and they plan to enter high school leading quiet lives. But for some reason, inexplicable events and disasters keep happening around them. Will Kobato and Osanai ever manage to live ordinary, peaceful lives?", + "posterPath": "/qYSvfn7OyVNB78ylL0m0Jw3oOrl.jpg", + "backdropPath": "/jJQVoO3IhFEzHpjuU8KCkR0i280.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 26, + "popularity": 3.2916 + }, + { + "id": 9343, + "title": "Paranoia Agent", + "originalTitle": "妄想代理人", + "overview": "Musashino, Tokyo. An elementary schooler repeatedly attacks people in the streets. Known only to the public as \"Lil Slugger\", none of the victims can recall the young boy's face and only three distinct details are left in their memories: golden inline skates, a baseball cap, and the weapon: a bent golden baseball bat. Detectives Ikari and Maniwa set out to track down the perpetrator and put an end to his crimes.", + "posterPath": "/cQ6YiBTUlsKGm2mWa7mE9eZnlS2.jpg", + "backdropPath": "/6ugaYfLhkEyVXzw4EYawMIV30qx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-02-03", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.934, + "voteCount": 317, + "popularity": 3.2875 + }, + { + "id": 241928, + "title": "Girls Band Cry", + "originalTitle": "ガールズバンドクライ", + "overview": "Nina Iseri drops out of high school and moves to Tokyo by herself. In front of the station in the suburbs of Tokyo, Nina sees Momo Kawaragi singing alone and is touched by the power of music. Nina decides to form a band with Momo, Subaru Awasu, a girl who hides her true feelings, Tomo Ebutsuka, who was abandoned by her parents, and Rupa, a lonely girl without any family...", + "posterPath": "/al3Q1yrhBN4A1GBLCwpgnq3RSka.jpg", + "backdropPath": "/tkDAHXPO4mqlcq8GgqJAJ9w1Ecf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2024-04-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.189, + "voteCount": 37, + "popularity": 3.2844 + }, + { + "id": 16830, + "title": "Hellsing", + "originalTitle": "ヘルシング", + "overview": "Vampires exist. It is the duty of Hellsing, an organization sponsored by the British government, to hide that frightening fact and protect the blissfully unaware populace. Along with its own personal army, Hellsing also has a few secret weapons. Alucard, an incredibly powerful vampire, has been controlled by Hellsing for years. Although he dislikes being a servant to the Hellsing family, he certainly enjoys his job as Hellsing’s vampire exterminator. Seras is a fledgling vampire and a former police woman. Although reluctant to embrace her new self, she is still a valuable member of the organization. Integra Hellsing, the current leader, is usually fully capable of fulfilling her duty, but lately, vampire activity has been on the rise. Unfortunately, the cause is more alarming than anything she could have imagined...", + "posterPath": "/xA3wsLJzj6XnvuryerPBPwoQodH.jpg", + "backdropPath": "/6HerLaK4Mjjtssma4fF3qQUixX5.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-10-11", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 555, + "popularity": 3.2822 + }, + { + "id": 82823, + "title": "Boarding School Juliet", + "originalTitle": "寄宿学校のジュリエット", + "overview": "Grigio Academy Boarding School. Students who attend this school in two countries and reside in their own dormitories. Inazuka and Persia are rival dormitory leaders, but in secret they love each other. Now, they have to keep their relationship a secret from their dorm mates, or ruined things will happen to them.", + "posterPath": "/qj6M3VZUJ9q1lcYMDU9g07IHkse.jpg", + "backdropPath": "/97jrBpGBPdCkkzhq1I9XqM459W6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2018-10-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.137, + "voteCount": 175, + "popularity": 3.2785 + }, + { + "id": 102774, + "title": "Witchy Precure!", + "originalTitle": "魔法つかいプリキュア!", + "overview": "Mirai Asahina, a thirteen-year-old girl who is excited by various things, goes with her stuffed bear, Mofurun, to investigate a mysterious object that fell from the sky. There, she meets a young magician named Liko who is searching for something known as the Linkle Stone Emerald. When dark servants of Dokuroxy come seeking the Linkle Stone Emerald, Mirai and Liko join hands with Mofurun and transform into the legendary magicians known as the Pretty Cures to fight against them. Thus, Mirai joins Liko in attending Magic School, where they must learn how to use magic while also fighting off Dokuroxy's minions.", + "posterPath": "/cySJlj59YKsEo29h0GB5sQrqFIA.jpg", + "backdropPath": "/w60HPDvkrhDyqI7QQbczwVUIxmf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-02-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 10, + "popularity": 3.2776 + }, + { + "id": 42556, + "title": "Mysterious Girlfriend X", + "originalTitle": "謎の彼女X", + "overview": "Akira is a normal high school boy, but he nevertheless impulsively licks some drool left by the mysterious transfer student Mikoto. The next day he falls asleep with an inexplicable fever. After five days Mikoto suddenly comes to visit, and makes him consume her drool. The fever instantly vanishes, and Mikoto explains that he's suffering from \"love sickness.\" She can transmit emotions through her drool, and the two of them are now bound together.", + "posterPath": "/xyYqsl7iG1bC8NEaeEVbkB34mhJ.jpg", + "backdropPath": "/egcyuPn5SK0nUfAZbhGtL4yoFol.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 84, + "popularity": 3.2773 + }, + { + "id": 242143, + "title": "You are Ms. Servant", + "originalTitle": "君は冥土様。", + "overview": "Hitoyoshi, a high school kid who lives alone, hears a knock on his door. He opens it to find a strange girl offering to be his maid. She has beautiful black hair, graceful manners, and…a dark past as an assassin. But despite her deadly background and lack of household skills, Hitoyoshi takes her in. As she adjusts to her new life, she begins to experience emotions she’s never felt before.", + "posterPath": "/eyFOI6GkIN9JI1qaGLpEkrRlXdc.jpg", + "backdropPath": "/2a1rAVKMJUXuAIv8cga0kTAXjzM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 32, + "popularity": 3.2768 + }, + { + "id": 72296, + "title": "My First Girlfriend Is a Gal", + "originalTitle": "はじめてのギャル", + "overview": "A new school term begins, as does the season of new encounters. As he surveys his class full of couples, Hashiba Jun'ichi's mind is filled with distress as he asks himself, \"Why am I still a virgin?!\" Having heard from his friends that the easiest way to fulfill his long-standing desire to graduate from the fellowship of virgins is to kowtow to a gal, Jun'ichi does exactly that and asks his classmate Yukana out. And unbelievably, she actually agrees to date him. What will become of Jun'ichi from now on?", + "posterPath": "/j7EPg0hgtlMShzhCGcxDj4pvwNK.jpg", + "backdropPath": "/xlTEOHMYP8ECyPhbZZ9eUMqmnSK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.334, + "voteCount": 404, + "popularity": 3.2729 + }, + { + "id": 231357, + "title": "The Foolish Angel Dances with the Devil", + "originalTitle": "愚かな天使は悪魔と踊る", + "overview": "Determined to protect his demon world from heavenly angels, demon Masatora Akutsu heads to earth in search of a charismatic human to rally his kin. Masquerading as a high schooler for his recruitment mission, he's captivated by the lovely Lily Amane. But he's in for a wild celestial surprise, because she's his archnemesis—an angel—and she's set on reforming his demonic ways!", + "posterPath": "/tyay9L58bSNIxVUXIGNxkjKMRuD.jpg", + "backdropPath": "/48dmF9JLqB5YRwAFcpfnRSM2l5K.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 32, + "popularity": 3.2681 + }, + { + "id": 206748, + "title": "Saving 80,000 Gold in Another World for My Retirement", + "originalTitle": "⽼後に備えて異世界で8万枚の⾦貨を貯めます", + "overview": "One day, Mitsuha falls off a cliff and is transported to a medieval Europe–type world! After a near-death encounter with a pack of wolves, she then realizes that she's able to transport between two worlds—this one and her own. Taking advantage of this ability, Mitsuha decides to live in both worlds and calculates that she'll need 80,000 gold coins to be able to retire! Mitsuha now has to come up with different ways to collect her gold coins!", + "posterPath": "/heAGJJHVkYmGJnj5xJZg60HZHXf.jpg", + "backdropPath": "/6rVO9Vkxw1IVudmrcqxfsBLwkAE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.862, + "voteCount": 29, + "popularity": 3.268 + }, + { + "id": 100077, + "title": "Otherside Picnic", + "originalTitle": "裏世界ピクニック", + "overview": "Friendless college girl Sorawo finds a door to another world one day — a strangely post-apocalyptic-feeling Otherside with serene emptiness, which becomes her new “special place.” There, she meets one other human, the beautiful and independent Toriko, and they explore the abandoned Otherside together.", + "posterPath": "/cNtsvbLZHaBrltl0ljAqhymXFgV.jpg", + "backdropPath": "/iNm5mOSWFGm54VcATN6FhaNY3dN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 28, + "popularity": 3.2667 + }, + { + "id": 8779, + "title": "The Vision of Escaflowne", + "originalTitle": "天空のエスカフローネ", + "overview": "High school student Hitomi is transported from Earth to the magical world of Gaea, where she meets boy prince Van Fanel, and is caught up in his quest to unite the countries of Gaea against the ominous Zaibach empire. On the way, she discovers an hidden ability and strives to unravel layers of mystery surrounding Van, his past, and the giant machine known as Escaflowne.", + "posterPath": "/6uX0Q7Sn9JYWbHqQ5ZRJoJKcTmp.jpg", + "backdropPath": "/ix9k2aAiMgMWGloeWNVYHMEMlsJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1996-04-02", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 187, + "popularity": 3.2658 + }, + { + "id": 36247, + "title": "Mahoujin Guru Guru", + "originalTitle": "魔法陣グルグル", + "overview": "", + "posterPath": "/jlWzpmYzswXu4a6ZNqIuPH7fDxF.jpg", + "backdropPath": "/gH36hU7QBkFspVtChkcdDcRfkAa.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1994-10-13", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 7, + "popularity": 3.2654 + }, + { + "id": 42953, + "title": "Rin: Daughters of Mnemosyne", + "originalTitle": "Mnemosyne-ムネモシュネの娘たち-", + "overview": "Rin Asōgi may look like an ordinary office lady on the outside but she is actually a private investigator taking on any jobs, from finding a stray cat to infiltrating a high-security corporate lab. What's more, she appears literally indestructible, supernaturally healing any injuries and mutilations. Together with her partner Mimi, Rin delves into the darkest secrets of the society but the ones she hides herself are by far more sinister...", + "posterPath": "/307fgj1rjBOwTdcnOPu0kxzKGju.jpg", + "backdropPath": "/piMD16N6ZU7Or2Ozl3fUjykad3C.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2008-02-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.583, + "voteCount": 72, + "popularity": 3.265 + }, + { + "id": 69292, + "title": "Scum's Wish", + "originalTitle": "クズの本懐", + "overview": "Seventeen-year-old Mugi Awaya and Hanabi Yasuraoka appear to be the ideal couple. They are both pretty popular, and they seem to suit each other well. However, outsiders don't know of the secret they share. Both Mugi and Hanabi have hopeless crushes on someone else, and they are only dating each other to soothe their loneliness. Mugi is in love with Akane Minagawa, a young teacher who used to be his home tutor. Hanabi is also in love with a teacher, a young man who has been a family friend since she was little. In each other, they find a place where they can grieve for the ones they cannot have, and they share physical intimacy driven by loneliness. Will things stay like this for them forever?", + "posterPath": "/nKqw1zze4D1HfTaHDs6rxWii5bf.jpg", + "backdropPath": "/lIzz0om5v86hqqQm54pT2Rci67E.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-01-13", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 107, + "popularity": 3.2605 + }, + { + "id": 60844, + "title": "Baby Steps", + "originalTitle": "ベイビーステップ", + "overview": "Eiichirō Maruo (nicknamed \"Ei-chan\" for his grades being straight \"A\") is an honor student, bookworm, and is not interested in anything other than studying. In order to solve his problem of lacking physical strength, he enrolled a tennis school and soon found the fascinating side of tennis. Being a tennis newbie lacking physical strength, he supplement his shortcomings with his excellent observing and analyzing skills.", + "posterPath": "/dVXgyHizeUbL1RdyKd58WjVGrNv.jpg", + "backdropPath": "/3m4VV8eiG3dp6FxSy36xVU2DMq6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 19, + "popularity": 3.2558 + }, + { + "id": 71012, + "title": "Cinderella Girls Theatre", + "originalTitle": "アイドルマスター シンデレラガールズ劇場", + "overview": "", + "posterPath": "/3OueDlWvmzhWa7BRxC2bLuwkFqc.jpg", + "backdropPath": "/5oWxlHVfhStOtX4VZJ2b552JYTp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2017-04-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 8, + "popularity": 3.2529 + }, + { + "id": 48561, + "title": "Tamako Market", + "originalTitle": "たまこまーけっと", + "overview": "Tamako is just a normal young girl whose family has been making mochi for generations. As her birthday approaches, she happens to meet a talking bird who claims to be a royal court attendant looking for a bride for his master. After the encounter, Dera the bird decides to stay around her and becomes a part of Tamako's life and the neighborhood that she lives in.", + "posterPath": "/fcukkGngZn4O5KjrTGXr2FYk9LJ.jpg", + "backdropPath": "/z531YyZRH3vwpFdNmZSdxcv9poR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-01-10", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 65, + "popularity": 3.251 + }, + { + "id": 284448, + "title": "Private Tutor to the Duke's Daughter", + "originalTitle": "公女殿下の家庭教師", + "overview": "After Allen failed the court sorcerer exam, he couldn't return home even if he wanted to. While searching for a job, an unexpected offer comes his way to be the private tutor of the duke's daughter. Just as he lowers his guard, he faces a girl who can't use magic at all! But what is preventing her magic from working? Allen's unconventional lessons gently shine a light on the girl's future.", + "posterPath": "/goM5LPOAKJDvf2BPWYqoPgbcb7B.jpg", + "backdropPath": "/jOOQ8JHCbgiPrTVGV3RnHEAIFQP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 9, + "popularity": 3.2501 + }, + { + "id": 19521, + "title": "The Wonderful Adventures of Nils", + "originalTitle": "ニルスのふしぎな旅", + "overview": "Nils Holgersson is a young boy on a farm who is cruel to the animals. But when he catches the farm's little goblin it becomes one prank too many. He is magically shrunk and suddenly the farm animals are out for revenge. He flees on the back of the goose Morten and they join up with a flock of wild geese. Together they travel all over Sweden, with Nils hoping to find a way to become big again.", + "posterPath": "/eoCxhDHMGx2i3qUBWu3N6tBRxbx.jpg", + "backdropPath": "/6WT8BcXJdg7ddDDU4v8UAF2VYHj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1980-01-08", + "releaseYear": "1980", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 49, + "popularity": 3.2407 + }, + { + "id": 156688, + "title": "The Fire Hunter", + "originalTitle": "火狩りの王", + "overview": "Outside the magical barriers lies a world overrun by fiery beasts known as Flame Demons, and the only ones who can protect humanity are the Fire Hunters. In the dark woods where the beasts roam is where Touko, a young villager, is rescued from attack by one of these skilled trackers, Koushi. But their meeting was no accident, and a new destiny begins.", + "posterPath": "/adfYirjfMdN5mNJE1B0J4qD5DP0.jpg", + "backdropPath": "/xMXey1bzzycMCDjflCMvpeMlC4o.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2023-01-14", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 13, + "popularity": 3.2379 + }, + { + "id": 111177, + "title": "Godzilla Singular Point", + "originalTitle": "ゴジラS.P<シンギュラポイント>", + "overview": "Brought together by a mysterious song, a grad student and an engineer lead the fight against an unimaginable force that may spell doom for the world.", + "posterPath": "/thWc7mYiEFFdLyG2fqkeqmL9nrB.jpg", + "backdropPath": "/nhpCCGHQW9A8ufFkD9S3XaS7HXK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2021-04-01", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.282, + "voteCount": 154, + "popularity": 3.237 + }, + { + "id": 76122, + "title": "Death March to the Parallel World Rhapsody", + "originalTitle": "デスマーチからはじまる異世界狂想曲", + "overview": "29-year-old programmer Suzuki Ichirou finds himself transported into a fantasy RPG. Within the game, he's a 15-year-old named Satou. At first he thinks he's dreaming, but his experiences seem very real. Due to a powerful ability he possesses with limited use, he ends up wiping out an army of lizard men and becomes a high leveled adventurer. Satou decides to hide his level, and plans to live peacefully and meet new people. However, developments in the game's story, such as the return of a demon king, may cause a nuisance to Satou's plans.", + "posterPath": "/aVJUCmI7s22BtolCd0QoAztaGU1.jpg", + "backdropPath": "/pv7CjeqAsN1fH5k8oUxs3lJUorJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2018-01-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 265, + "popularity": 3.2358 + }, + { + "id": 222787, + "title": "Metallic Rouge", + "originalTitle": "メタリックルージュ", + "overview": "In a world where humans coexist with androids called Neans, a group known as the Immortal Nine rises up against society. Tasked with disposing of the revolters, a Nean named Rouge Redstar (aka Metal Rouge) and investigator Naomi Orthmann head to Mars to track them down…but first, Rouge wants some chocolate.", + "posterPath": "/dcUWxOeCiEM7n7KdIYk1O8Xzgzp.jpg", + "backdropPath": "/cQFytd14BhCywHnFqgw9uK3YYY8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-01-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.039, + "voteCount": 38, + "popularity": 3.2337 + }, + { + "id": 66958, + "title": "Orange", + "originalTitle": "orange", + "overview": "One day, Naho Takamiya receives a letter written to herself from ten years in the future. As Naho reads on, the letter recites the exact events of the day, including the transfer of a new student into her class named Kakeru Naruse. The Naho from ten years later repeatedly states that she has many regrets, and she wants to fix these by making sure the Naho from the past can make the right decisions—especially regarding Kakeru. What's more shocking is that she discovers that ten years later, Kakeru will no longer be with them. Future Naho asks her to watch over him closely.", + "posterPath": "/4if1RyNVV3cxkh6GBDUP4ItDKU8.jpg", + "backdropPath": "/zS9HrpvMnlaYapPDcfSza8EGLG5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2016-07-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 458, + "popularity": 3.2337 + }, + { + "id": 30992, + "title": "Love Hina", + "originalTitle": "ラブひな", + "overview": "Keitaro and his childhood sweetheart make a promise to be accepted at and to meet each other at the prestigous Toudai University before she moved out of his life. About a decade later, Keitaro has become an artist and a daydreamer, having ranked 27th from the last in the national practice exam. When his grandmother leaves the all-girls dormitory, he becomes the residential manager and soon meets up with two Todai applicants who may have been that sweetheart, since he`s forgotten her name. Then there the other tenants like young Shinobu who was in despair until Keitaro helped her, Motoko the swordsmaster who sees men as evil distractions, Su Kaolo the genius child inventor and the sneaky Kitsune.", + "posterPath": "/a3td66l71KKDS1iaV0EHbaB1wHI.jpg", + "backdropPath": "/kcE0oKf6Lt5bYriMLJyEeyXhJ2i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2000-04-19", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.74, + "voteCount": 77, + "popularity": 3.2335 + }, + { + "id": 61425, + "title": "Cross Ange: Rondo of Angels and Dragons", + "originalTitle": "クロスアンジュ 天使と竜の輪舞", + "overview": "Humanity has advanced to great heights since it obtained the information technology known as \"Mana.\" With that nearly magical power, problems like war, food shortages, and pollution have been eliminated. In this age of peace and freedom, First Princess Angelise Ikaruga Misurugi of the Misurugi Empire is a privileged girl with no disabilities. She learns, however, that she is a \"Norma,\" a kind of human who cannot use Mana and are outcasts of society. Having lost everything, she is sent to an isolated island. There she meets other Normas who ride in humanoid weapons called Para-mails, protecting the world from dragon invaders from another dimension.", + "posterPath": "/wUSu7WKW4KfNARFL0eEmdXdqbpn.jpg", + "backdropPath": "/unOzG01uHdlrrRDgQfHLsGFYgsX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 122, + "popularity": 3.2334 + }, + { + "id": 42468, + "title": "Maria Watches Over Us", + "originalTitle": "マリア様がみてる", + "overview": "When Yumi Fukuzawa entered the Lillian Girls' Academy, a prestigious all-girls Catholic school in Tokyo, she never imagined she would catch the eye of beautiful and demure Sachiko Ogasawara, one of the school's most popular students. Now Sachiko has offered to be Yumi's soeur, her \"sister\" and guide for all her years at the academy. The whole idea has Yumi completely flustered—after all, they hardly know each other!\n\nThe entire campus is abuzz with rumors about the two of them, but Yumi is conflicted over accepting Sachiko's offer. While she admires Sachiko, being her soeur would also mean constantly being at the center of the entire school's attention!", + "posterPath": "/7wVQp2naji7O9guJO1UbVseQPbx.jpg", + "backdropPath": "/sS0pkT50B05WrFQSROwLudYNIN0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2004-01-07", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 19, + "popularity": 3.2332 + }, + { + "id": 31739, + "title": "Kiba", + "originalTitle": "牙-KIBA-", + "overview": "Kiba, a fantasy anime by Madhouse and Aniplex, began broadcasting on TV Tokyo on April 5, 2006. The series is directed by Hiroshi Kōjina with Upper Deck Japan, a trading card game company, as the main sponsor. The anime has been licensed by Upper Deck USA and produced by ADV Films for North American distribution.\n\nThe series is more violent than other trading-card-game-tie-in animations with many characters being killed. According to an interview with the March 2006 issue of Animage, Hiroshi Kamishina, the show's director, noted that the show \"absolutely will not have any plot elements that curry favor to children\". The producers of the show has also commented that Kiba will not be the type of show to put \"human drama\" on the back burner while concentrating on promotional tie-ins. While Upper Deck owns the rights to the series, ADV Films is the distributor and their production studio Amusement Park Media is producing the dub. Kiba aired on Toonami Jetstream from July 14, 2008 to January 21, 2009 and is now showing on The Anime Network's Video on Demand service.", + "posterPath": "/roNaULLgqVA8SnLoOntOaPFvY8L.jpg", + "backdropPath": "/31jZ9r4KYRzA3N91entiaBh7mVx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-02", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 14, + "popularity": 3.2318 + }, + { + "id": 66111, + "title": "Macross Δ", + "originalTitle": "マクロスΔ(デルタ)", + "overview": "Macross Delta is set in the year 2067, 8 years after the events of the latest Macross TV series, Macross Frontier. The story focuses on Walküre, a team of talented idols and the Delta Squadron, a team of experienced Valkyrie pilots as they battle against the Var Syndrome, a mysterious phenomena that is consuming the galaxy and there is also the mysterious Aerial Knights Valkyrie fighter team of the Kingdom of Wind.", + "posterPath": "/rkhrKOtd6FqG37xGgOhZPTiohBS.jpg", + "backdropPath": "/5sdTl2NpbTS1raycAc2D4b7Atz9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 20, + "popularity": 3.2313 + }, + { + "id": 60834, + "title": "Black Bullet", + "originalTitle": "ブラック・ブレット", + "overview": "A near future, where humans have been defeated by the viral parasites named Gastrea. They have been exiled into a small territory and live in despair, side-by-side in terror.\n\nIn this world trapped in darkness—\n\nRentaro, a boy living near Tokyo and member of the \"Civil Security\"—an organization specializing in fighting against the Gastrea—is used to accomplishing dangerous tasks. His partner is Enju, a precocious young girl. They fight thanks to their peculiar powers until one day, when they receive a special assignment from the government. This top secret mission is to prevent the destruction of Tokyo...\n\nSet in a near future, this thrilling heroic-action story... starts now!", + "posterPath": "/4UOpAafs6PCsZ8AwlCjGVIVn2ET.jpg", + "backdropPath": "/r0HS8CD1tmOUCU3M5J1cmOg2fUq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-08", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.486, + "voteCount": 214, + "popularity": 3.2262 + }, + { + "id": 139512, + "title": "Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs", + "originalTitle": "⼄⼥ゲー世界はモブに厳しい世界です", + "overview": "An ordinary office worker is reincarnated as Leon into a particularly punishing dating sim video game, where women reign supreme and only beautiful men have a seat at the table. But Leon has a secret weapon: he remembers everything from his past life, which includes a complete playthrough of the very game in which he is now trapped. Watch Leon spark a revolution to change this new world in order to fulfill his ultimate desire...of living a quiet, easy life in the countryside!", + "posterPath": "/8AhHtqY4yPquNrprkVbzUKw8kRh.jpg", + "backdropPath": "/c0oFoz7PttzMLsQOQn54Lcu8V9d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 78, + "popularity": 3.2223 + }, + { + "id": 15130, + "title": "Monster Farm", + "originalTitle": "モンスターファーム", + "overview": "Genki is a boy who loves playing the Monster Rancher games and one day he's somehow transported into the world of the video game where he meets the girl Holly and the monsters Mochi, Suezo, Golem, Tiger and Hare. Together, they are searching for a way to revive the Phoenix, which is the only monster capable of stopping the evil Moo.", + "posterPath": "/lzh49cRWKSjNm98Cov0bBDvBww7.jpg", + "backdropPath": "/ttuBTSrNq4GSZyN01aPOvXYoOR3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "1999-08-30", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.062, + "voteCount": 113, + "popularity": 3.2209 + }, + { + "id": 101571, + "title": "Talentless Nana", + "originalTitle": "無能なナナ", + "overview": "It is the year 20XX. Earth was assaulted by monsters that would come to be known as \"the Enemy of Humanity.\" In order to deal with this threat, special schools composed of teenagers with extraordinary abilities were formed. These people, who came to be known as \"the Talented,\" had abilities that could defy the rules of reality.\n\nAmong these people with supernatural powers was an outlier, an individual who was sent to one of these schools despite having no innate special abilities whatsoever. This is the story of our protagonist, who attempts to defeat the Enemies of Humanity through the use of intelligence and manipulation alone.", + "posterPath": "/erj3B3eRpcd9CEPN55IAY8aupwc.jpg", + "backdropPath": "/2oz6ZzO9SygE0stV0qoIkKQkmFB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2020-10-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 115, + "popularity": 3.2197 + }, + { + "id": 254987, + "title": "DEAD DEAD DEMONS DEDEDEDE DESTRUCTION", + "originalTitle": "デッドデッドデーモンズデデデデデストラクション", + "overview": "As the world is threatened by the sudden appearance of a mysterious alien mothership, best friends Koyama Kadode and Nakagawa “Ontan” Oran carry on about their high school life. But as they grow up, they face existential questions, learning adulthood’s complexities and that the true threat may not be from above.", + "posterPath": "/45XAw7d5aTu6CK6OC4XQ3ji8s89.jpg", + "backdropPath": "/ld1UMkzjVsA1midityNjHTAX79v.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2024-05-30", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.667, + "voteCount": 30, + "popularity": 3.2178 + }, + { + "id": 111255, + "title": "Wonder Egg Priority", + "originalTitle": "ワンダーエッグ・プライオリティ", + "overview": "Ai, a young girl with shut-in tendencies, who tries not to interact with others. She keeps one of her eyes hidden behind her hair. One day, she happens to stop by a deserted arcade, where she meets \"Aka.\" Spinning the gacha at their urging, she acquires a \"Wonder Egg,\" and from that moment, her fate begins to change...", + "posterPath": "/7Ief4J2hkBuaKxUzy9fMqUoh9BY.jpg", + "backdropPath": "/mGnufSW0r6gpsgTjWoHzyR1pxgk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2021-01-13", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 105, + "popularity": 3.2149 + }, + { + "id": 13375, + "title": "RahXephon", + "originalTitle": "ラーゼフォン", + "overview": "Ayato Kamina, a 17-year-old high school student, lives in Tokyo Jupiter oblivious to the world around him, having been raised to believe that the rest of civilization has been destroyed; but everything changes when a mysterious alien civilization invades his home.", + "posterPath": "/sQhAs3I1nqZusc5y7s0KiaFmju3.jpg", + "backdropPath": "/pL2f1R8Vbs3L4sDfReF3nhwiGdS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2002-01-21", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 31, + "popularity": 3.2144 + }, + { + "id": 68573, + "title": "Magic Kaito 1412", + "originalTitle": "まじっく快斗1412", + "overview": "Eight years after the mysterious death of his father, Kaito Kuroba, a slightly mischievous but otherwise ordinary teenager, discovers a shocking secret: the Phantom Thief Kaito Kid—also known as \"The Magician Under the Moonlight\"—was none other than his own father. The former thief was murdered by a criminal organization seeking a mythical stone called the Pandora Gem, said to shed a tear with the passing of the Valley Comet that comes every ten thousand years. When the tear is consumed, the gem supposedly grants immortality.\n\nVowing to bring those responsible for his father's death to justice, Kaito dons the Phantom Thief's disguise, stealing priceless jewels night after night to find the Pandora Gem before his enemies can use the power for themselves.", + "posterPath": "/yFAqxNPOK5JkWKLSSB65gK59W8Q.jpg", + "backdropPath": "/rDr04z6zWtCed25Bd2FLVSc1Ljq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Crime" + ], + "releaseDate": "2014-10-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.914, + "voteCount": 29, + "popularity": 3.2137 + }, + { + "id": 45835, + "title": "Mobile Suit Gundam AGE", + "originalTitle": "機動戦士 ガンダム AGE", + "overview": "Advanced Generation (A.G.) 101. The space colony Angel is attacked and destroyed by a mysterious \"Unknown Enemy\" with overwhelming strength. As this \"UE\" continues its attacks, a boy named Flit Asuno loses his mother when she is caught in the crossfire. Now in A.G. 115, Flit must fight using a new Gundam of his own creation, which evolves itself through battle. The curtain rises on an epic Gundam saga spanning 100 years and three generations.", + "posterPath": "/ApcwLXh9JOf3B5gl4i2Gna9ssc1.jpg", + "backdropPath": "/wWWSYvpWJAXMerWnyaOi2jVASNe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "2011-10-09", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 11, + "popularity": 3.2132 + }, + { + "id": 195081, + "title": "My Life as Inukai-san's Dog.", + "originalTitle": "犬になったら好きな人に拾われた。", + "overview": "The story follows the protagonist who wakes up one day transformed as Pochita, a pet dog of his cool and beautiful classmate Karen Inukai.", + "posterPath": "/l1rMliOKZXpsY9SP6ZgCfSmhaxC.jpg", + "backdropPath": "/jiKtn560NRQ3KUxSA2KBpJd25i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.552, + "voteCount": 29, + "popularity": 3.2117 + }, + { + "id": 45527, + "title": "Nodame Cantabile", + "originalTitle": "のだめカンタービレ", + "overview": "Shinichi Chiaki is a first class musician whose dream is to play among the elites in Europe. Coming from a distinguished family, he is an infamous perfectionist; not only is he highly critical of himself, but of others as well. The only thing stopping Chiaki from leaving for Europe is his fear of flying. As a result, he's grounded in Japan.\n\nDuring his 4th year at Japan's top music university, Chiaki happens to meet Noda Megumi—or as she refers to herself, Nodame. On the surface, she seems to be an unkempt girl with no direction in life. However, when Chiaki hears Nodame play the piano for the first time, he is in awe at the kind of music she plays. To Chiaki's dismay, Nodame moves into the apartment next to his and finds out that she is head-over-heels in love with him.", + "posterPath": "/cInelIGreu0mrUnA6F0YN2bRQEc.jpg", + "backdropPath": "/heO0fDQB2EgHKTUvErj74ohM6Fz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2007-01-12", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 37, + "popularity": 3.2115 + }, + { + "id": 199920, + "title": "KamiKatsu: Working for God in a Godless World", + "originalTitle": "神無き世界のカミサマ活動", + "overview": "Yukito, the son of a questionable cult leader, lost his life due to the cult's ridiculous training practices. Now to his surprise, he was reincarnated into another world! It was an ideal world for him without the concept of \"God\" or \"religion\" BUT...! A unique \"reincarnating in other world\" adventure begins: creating a \"religion\" in a world without God?!", + "posterPath": "/zIn90M0V83e0F1n9fCudP3My88Q.jpg", + "backdropPath": "/lCsYvxiYjS2CcusGjHnNdEm9SG1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 42, + "popularity": 3.1992 + }, + { + "id": 46345, + "title": "Tokyo Mew Mew", + "originalTitle": "東京ミュウミュウ", + "overview": "On her first date with the cutest boy in school, Ichigo is zapped by a mysterious ray that scrambles her DNA with that of the endangered Iriomote wildcat. The next day, Ichigo discovers that she has developed the agility (and occasionally the ears and tail) of a cat, as well as the power to transform into a pink-haired superheroine, Mew Ichigo. She and four other girls, each endowed with the genes of a different \"Red Data\" animal, have been selected for the top-secret Mew Project, which aims to protect the Earth from an alien menace known as Deep Blue.", + "posterPath": "/vEBuze5ULPfMYfMX8BYuVa2moRs.jpg", + "backdropPath": "/ijLRv7VZzLhYiEt7UiBQowlVscr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765, + 10759, + 35, + 10751 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Family" + ], + "releaseDate": "2002-04-06", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 109, + "popularity": 3.1957 + }, + { + "id": 9543, + "title": "Gankutsuou", + "originalTitle": "巌窟王", + "overview": "In an elegant future Paris, a Count returns to wreak havoc on those that betrayed him.", + "posterPath": "/eAatnAycra30LroeMmVSGgrum73.jpg", + "backdropPath": "/mQhWdm3GRJ6VZKRcXDTcil5fak5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 44, + "popularity": 3.1945 + }, + { + "id": 42555, + "title": "Phi Brain: Puzzle of God", + "originalTitle": "ファイ・ブレイン 神のパズル", + "overview": "Phi Brain: Puzzle of God is a 2011 Japanese anime television series produced by Sunrise. The first two series aired on NHK Educational TV between October 2011 and September 2012, with a third season to begin airing in October 2013. The series is directed by Junichi Sato with script supervision by Mayori Sekijima. Hajime Yatate, the collective penname for the creative staff at Sunrise, is credited with the original story. The anime has been licensed in North America by Sentai Filmworks. A manga adaptation by Yoshiki Togawa began serialization in Kadokawa Shoten's Newtype Ace magazine from November 2011. A PlayStation Portable video game by Arc System Works was released on May 31, 2012.", + "posterPath": "/AvSfAmjKMND6KdSDO4icS3hZSPe.jpg", + "backdropPath": "/yd9hiDx6Xy9aLSPPLPHZ27lYEB0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-10-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 11, + "popularity": 3.1919 + }, + { + "id": 85940, + "title": "7SEEDS", + "originalTitle": "7SEEDS", + "overview": "Shy Natsu awakens as part of a group chosen to ensure the survival of humanity. Together, they have to survive on a changed Earth.", + "posterPath": "/eeGRd3ENc9vetozwDDMhl9S7l3G.jpg", + "backdropPath": "/moI1fOrXKak8RIXaLHRozkoIh4Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2019-06-28", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 225, + "popularity": 3.1893 + }, + { + "id": 62742, + "title": "Sankarea: Undying Love", + "originalTitle": "さんかれあ", + "overview": "Zombie-obsessed Furuya is making a potion to reanimate his dead cat when he meets Rea. She’s about as miserable as a girl can get, thanks to her creepy, domineering father. When the pain becomes too much, she tries to commit suicide with a sip of Furuya’s weird elixir. The potion doesn’t kill her – but it does turn her into a zombie after she falls from a cliff.\n\nNow that Rea’s undead and ready to finally live, she hides out with Furuya, who’s always dreamed of having a zombie girlfriend. Their one-of-a-kind relationship comes with some challenges, like the fact that Rea is decomposing. Even worse, her freak-show dad is dangerously determined to get her back under his control. As Furuya fights to keep his ghoulfriend safe, Rea finds the secret to resurrecting her happiness: Live like you’re dying – even if you’re already dead.", + "posterPath": "/onnBtLYwC1snOARDGhGoJ4x3ZX6.jpg", + "backdropPath": "/zKnoPdFQZXuFvb6qzeAk5q6G6Ge.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-04-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 246, + "popularity": 3.1885 + }, + { + "id": 68071, + "title": "ALL OUT!!", + "originalTitle": "ALL OUT!!", + "overview": "In rugby, there is no ace striker, there is no number four batter, so who is the star of the team? The story begins at school entrance ceremony of Kanagawa High School where Kenji Gion, a small but gutsy go-getter joins the rugby club. He joins with his classmate, Iwashimizu, who has a complicated past and sub-captain Hachiouji, who always takes good care of his Club members. Lastly, there is Captain Sekizan, who has overwhelming powers but keeps his cards close to his chest. With such differences in both personality and physical performance, the team must learn to work and grow together so they can become the best.", + "posterPath": "/yxZPVoXgnepxo4y30qFKuMUZKtW.jpg", + "backdropPath": "/Ar5krnLmhenT80VyAaY82wM39Z9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 17, + "popularity": 3.1875 + }, + { + "id": 34131, + "title": "Mister Ajikko", + "originalTitle": "ミスター味っ子", + "overview": "Mister Ajikko is a Japanese manga series written and illustrated by Daisuke Terasawa about a young boy cook. It was later adapted into anime series, produced by TV Tokyo and Sunrise. This show was broadcast from October 8, 1987 to September 28, 1989 with a total of 99 episodes. One of the earliest cooking/battle related manga and anime of its kind, there are some indications that this series is the inspiration for the live action competitive cooking show, Iron Chef.", + "posterPath": "/hq1pqsWSBetq7IFONxdekzOVEpl.jpg", + "backdropPath": "/jzRHGKyGPgYbAAU29vmyQRAcPN6.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1987-10-08", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 5, + "popularity": 3.1846 + }, + { + "id": 45801, + "title": "Glitter Force", + "originalTitle": "スマイルプリキュア!", + "overview": "Candy, a fairy from Märchenland follows the shining light that leads to the five legendary PreCure warriors in order to fight Bad End Kingdom villains who are trying to vanquish the entire world to the “Worst Ending.", + "posterPath": "/tahqw8y3BEjeBMLhwF516diK5Ch.jpg", + "backdropPath": "/sFTubrjweAZ0YyR8fOgNZ94Xtz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-02-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 29, + "popularity": 3.1843 + }, + { + "id": 53296, + "title": "Oreshura", + "originalTitle": "俺の彼女と幼なじみが修羅場すぎる", + "overview": "A young boy called Eita enters high school aiming for the National University School of Medicine. Because of his parents' divorce and his goal, he shuns anything to do with romance or love. One day Masuzu, the school beauty with the silver hair, who's just returned to the country, enters his life in a most unexpected way. Chiwa, his childhood friend since elementary school, will not let this go without a fight.", + "posterPath": "/rCToNn77J1o2K5eSOpjIWtGsnRj.jpg", + "backdropPath": "/e1Js710rpRUmxw5iMWchVljmzvI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-01-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.698, + "voteCount": 43, + "popularity": 3.1839 + }, + { + "id": 8880, + "title": "Space Cobra", + "originalTitle": "スペースコブラ", + "overview": "Cobra lived an adventurous life until his enemies began to hunt him down. He surgically altered his face and erased his own memory in order to hide from his foes and lead a normal life. Eventually, he regains his memories and re-unites with his old partner Lady Armaroid and his ship Tortuga. Cobra travels the galaxy, fighting the outlaw Pirate Guild, but also fleeing the law-enforcing Milky Way Patrol.", + "posterPath": "/v7mbZ8zYkm2tMP3WnKgcFN2tNuN.jpg", + "backdropPath": "/sNrepGrBl9Wx4B4kd5VA2SrslMl.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1982-10-07", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 207, + "popularity": 3.1707 + }, + { + "id": 94693, + "title": "Wandering Witch: The Journey of Elaina", + "originalTitle": "魔女の旅々", + "overview": "Once upon a time, there was a witch named Elaina. Inspired by her favorite book, Elaina ventures out to see the world she's read so much about. Like a leaf on the wind, she travels from one country to another, looking to sate her inquisitiveness and searching for new experiences. Exploration and curiosity drive her journey. She's confronted by humanity in all its forms, whether strange, bizarre, or emotional and with each meeting, Elaina would become a small part of their story, and her own world would get a little bit bigger.", + "posterPath": "/3HsDd9C0I2PWXjZiWJnwl7djm9z.jpg", + "backdropPath": "/kZE2LlQ0HKubeLEOI9ukhqRXGx2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 108, + "popularity": 3.1654 + }, + { + "id": 19780, + "title": "Please Teacher!", + "originalTitle": "おねがい☆ティーチャー", + "overview": "Kusanagi Kei, a high-school student living with his aunt and uncle, has an encounter with a female alien. This alien is revealed to be a new teacher at his school. Later, he is forced to marry this alien to preserve her secrets. From there, various romantically-inclined problems crop up repeatedly.", + "posterPath": "/3ih1gZLPeeeQXRWeFwv7mD7MRE.jpg", + "backdropPath": "/gI1szNP0CgP1T6ocY4X6tV6YPa4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2002-01-10", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 111, + "popularity": 3.1653 + }, + { + "id": 27813, + "title": "MoonPhase", + "originalTitle": "月詠~MOON PHASE~", + "overview": "Paranormal photographer Kouhei stumbles into the arms of Hazuki, a vampire beauty who has waited for years to be freed from a forgotten castle. Unwilling to part with her unwitting hero, the petite vamp follows Kouhei home and starts causing trouble. But domestic disorder is the least of Kouhei’s problems. With dark forces gathering, he’s about to enter a world he can’t begin to comprehend!", + "posterPath": "/wGJqJUSKMNayEs5JZBmXHfWc8HY.jpg", + "backdropPath": "/ih8Q0sggUzkIBgcZCqBtu8ae7jb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-10-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.833, + "voteCount": 45, + "popularity": 3.164 + }, + { + "id": 72519, + "title": "Altair: A Record of Battles", + "originalTitle": "将国のアルタイル", + "overview": "Tughril Mahmut is a young pasha serving on the Divan of the Türkiye Stratocracy. The clouds of war are gathering over his country due to the threat of an aggressive Empire. With the Divan split between warmongers and the pacifists, Mahmut begins his quest to keep the peace at any cost. As he finds himself deeper and deeper in the politics of the ancient world, new enemies and allies surface. Who will prevail? What will Mahmut do if war proves to be inevitable?", + "posterPath": "/g8LNOGIqvzpMlb6XzmJhY46j1t5.jpg", + "backdropPath": "/p6B9vmnqKVVvOzxITubYbzhzQWq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 8, + "popularity": 3.1634 + }, + { + "id": 132664, + "title": "The Heike Story", + "originalTitle": "平家物語", + "overview": "A young orphan named Biwa is taken in by the powerful Taira Clan—also known as the Heike—after their leader witnesses her extraordinary psychic abilities. Unfortunately, what she predicts is a future of bloodshed, violence, and civil war. Inspired by the 12th-century epic tale Heike Monogatari.", + "posterPath": "/fCqeRND1KqfQblDDD50S0VGfNP8.jpg", + "backdropPath": "/xjXRlOtDCZK5igttQd07WHOvTTD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-13", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 27, + "popularity": 3.1621 + }, + { + "id": 34839, + "title": "Queen Millennia", + "originalTitle": "新竹取物語 1000年女王", + "overview": "The planet LaMetal begins a war of conquest with the Earth, and the only one who can defend the world from this threat is the Queen Millennia, a former princess of LaMetal who has made Earth her home.", + "posterPath": "/tf2Je0XAPs9Q7GRVqDjpjj0Ln5b.jpg", + "backdropPath": "/b8zaKb4d59vMjUWL7NdezgOsxQs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1981-04-16", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 51, + "popularity": 3.1562 + }, + { + "id": 75775, + "title": "Junji Ito Collection", + "originalTitle": "伊藤潤二「コレクション」", + "overview": "A collection of animated horror stories based on the works of Japanese artist Junji Ito.", + "posterPath": "/umIn2MeNsJAvzb8ztRrv2nhfJ28.jpg", + "backdropPath": "/6uvq5gqhwrPdpDJuauCvH9tvVO7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 260, + "popularity": 3.1554 + }, + { + "id": 70592, + "title": "Re:Creators", + "originalTitle": "Re:CREATORS", + "overview": "Humans have created many stories. Joy, sadness, anger, deep emotion. Stories shake our emotions, and fascinate us. However, these are only the thoughts of bystanders. But what if the characters in the story have \"intentions\"? To them, are we god-like existences for bringing their story into the world? Our world is changed. Mete out punishment upon the realm of the gods. In Re:CREATORS, everyone becomes a Creator.", + "posterPath": "/cVOYool4Um1ZqpbYIBoBgR5qoEO.jpg", + "backdropPath": "/4Q6eUPWDSQmws34Y1U9bZRZxjuz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.543, + "voteCount": 48, + "popularity": 3.1501 + }, + { + "id": 76063, + "title": "Citrus", + "originalTitle": "citrus", + "overview": "Yuzu, a high school gyaru who hasn't experienced her first love yet, transfers to an all-girls school after her mother remarries. She's beyond upset that she can't land a boyfriend at her new school. Then, on her first day, she meets the beautiful black-haired student council president Mei in the worst way possible. What's more, she later finds out that Mei is her new step-sister, and they'll be living under the same roof! And so the love affair between two polar opposite high school girls who find themselves drawn to one another begins!", + "posterPath": "/c9CtgyFvvSJhgVaWgoVB1jlnhh5.jpg", + "backdropPath": "/iX7xEtHtTXCPE75tkEdN0rHxqQY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2018-01-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.59, + "voteCount": 106, + "popularity": 3.1496 + }, + { + "id": 285828, + "title": "Onmyo Kaiten Re:Birth Verse", + "originalTitle": "陰陽廻天 Re:バース", + "overview": "Narihira Takeru is a delinquent who often thinks about Tsukimiya, the girl who appears in his dreams. After an unexpected accident, Takeru finds himself in a parallel universe, and the world that Tsukimiya lives in. When Takeru and Tsukimiya are slain by a monster, he awakens again and realizes he has leapt through time. Now, Takeru must train with Abe Seimei to fight for Tsukimiya’s life!", + "posterPath": "/mEStkWZB2cvPn9haL9JZrZIwlkD.jpg", + "backdropPath": "/fGrAejjSIi8VNEEvtuepyHjz83o.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 5, + "popularity": 3.1481 + }, + { + "id": 261298, + "title": "Possibly the Greatest Alchemist of All Time", + "originalTitle": "いずれ最強の錬金術師?", + "overview": "Iruma Takumi finds himself caught up in a hero summoning, even though he’s not a hero. Summoned by mistake to Mildgard, a fantasy world of swords and magic, Takumi is given a chance to start over. Though he dreams of a peaceful life, the goddess Nolyn grants him “alchemy,” an ultra-powerful skill that allows him to create anything from holy swords to flying ships. His reluctant adventure begins!", + "posterPath": "/4TyTS9O7ECH3mXpazQ6GpJXCqNm.jpg", + "backdropPath": "/qDQt2pdwyWEWWWTBVBDo2UhYODc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2025-01-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.429, + "voteCount": 42, + "popularity": 3.1443 + }, + { + "id": 45860, + "title": "Lupin the Third: The Woman Called Fujiko Mine", + "originalTitle": "LUPIN the Third ~峰不二子という女~", + "overview": "She’s a thief. A killer. A saint and a scandal. She’s whatever you need her to be to get the job done. She takes your breath away to get what she wants. She takes everything else just because she can. It’s all in a night’s work for the woman called Fujiko Mine. She’s the slinky, sultry thread that holds Lupin III’s crew together—and this is the heist that started it all.", + "posterPath": "/eiyGSiIlDXd4CXrwlMwjWko2fGi.jpg", + "backdropPath": "/jHBmrBhwW8FEYWruPQTHpTlZuAD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama", + "Crime" + ], + "releaseDate": "2012-04-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.133, + "voteCount": 49, + "popularity": 3.1432 + }, + { + "id": 154098, + "title": "Endo and Kobayashi Live! The Latest on Tsundere Villainess Lieselotte", + "originalTitle": "ツンデレ悪役令嬢リーゼロッテと実況の遠藤くんと解説の小林さん", + "overview": "Endo and Kobayashi love to bicker about their latest video game fixation. They think they're simply providing color commentary, but one of the game's characters, Siegwald, can hear them talking about his fiancée, the villainess Lieselotte!", + "posterPath": "/u4QQjptxgPhq58YDKtVbm3QROM7.jpg", + "backdropPath": "/sFjuR5cbEJ0YU0VP5uYg9fWB5dG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.783, + "voteCount": 23, + "popularity": 3.1388 + }, + { + "id": 8853, + "title": "Kimba the White Lion", + "originalTitle": "ジャングル大帝", + "overview": "The adventures of Leo, a young lion cub who becomes king of the jungle when his father, the previous king of the jungle is killed by a human hunter.", + "posterPath": "/eOErQhpDuvj1K1U2RPkOu4w9GBw.jpg", + "backdropPath": "/hMbLzypHBfMb1UyGGrfLREmP8El.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1965-10-06", + "releaseYear": "1965", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 18, + "popularity": 3.1385 + }, + { + "id": 25850, + "title": "Saber Marionette J", + "originalTitle": "セイバーマリオネットJ", + "overview": "300 years ago, the interstellar colonization transport, The Mesopotamia, had an accident, setting mankind down on the surface of Terra II. The only survivors were six males.\n\nDue to a twist of events, the hard-working Otaru visits the run-down Pioneer Museum, where, remembering his childhood, he sees the painting of a woman, titled: \"In the memory of the human female.\" Suddenly a trap door opens under him, dropping him into a room with a hibernation capsule containing a beautiful female android, a so-called Marionette.\n\nAlso see: Saber Marionette R", + "posterPath": "/mhGgJVo31CgWZ3XEXFcYr8d029P.jpg", + "backdropPath": "/rSQ14CqSVOvtHA3vnR3YJjzNLCz.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1996-10-01", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 9, + "popularity": 3.1379 + }, + { + "id": 14578, + "title": "The Adventures of Peter Pan", + "originalTitle": "ピーターパンの冒険", + "overview": "The anime starts with Wendy having a dream about Peter Pan rescuing her and having a sword fight with Captain Hook. Wendy and her two brothers later on the episode go to Never Never land and Wendy becomes the 'mother' of the Lost boys. Throughout the series a romance blooms between Peter and Wendy as they go on fights with pirates . The last half of the series go to a different direction then the original story line and also introduce a new character ( Princess Luna ) who becomes an important part of the last episodes.", + "posterPath": "/cPeTO5cvRdhgXCFCVo7wbn52qtn.jpg", + "backdropPath": "/zsuG0VnUEwye5jng3tWRxZGP8wg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 16, + 10759 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1989-01-15", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 10, + "popularity": 3.1357 + }, + { + "id": 35466, + "title": "Ghost Stories", + "originalTitle": "学校の怪談", + "overview": "When nearby construction disturbs a spiritual resting place, its disgruntled denizens do what any supernatural beings would do after a rude awakening: they terrorize the local school. And that means it’s up to a scruffy band of young ghostbusters to expel their satanic schoolmates before everyone gets sent to permanent detention! So join Satsuki, her crybaby brother, the resident class stud, the school nerd and \"physical researcher,\" a born-again beauty, and a resentful, demon-possessed cat in the funniest, scariest school you’ve ever enrolled in.", + "posterPath": "/9muUVVBl5gpBzZTGUmvjzKWUge9.jpg", + "backdropPath": "/eAQKaLrdlfGk6yiILuCWIGUTaL0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-10-22", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 121, + "popularity": 3.1334 + }, + { + "id": 61259, + "title": "Aldnoah.Zero", + "originalTitle": "アルドノア・ゼロ", + "overview": "In 1972, the Apollo 17 mission discovered a hypergate to Mars on the surface of the moon. Soon a war breaks out between Earth and Mars, and Martian soldiers begin to descend from the sky, riding steel giants, intent on exterminating humanity.", + "posterPath": "/kVx5aK7F9PVeTHvraNh6fX5pnpL.jpg", + "backdropPath": "/ftKcJNdadN3e55v9TWFAiQAyMOO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.675, + "voteCount": 143, + "popularity": 3.133 + }, + { + "id": 62602, + "title": "Blue Spring Ride", + "originalTitle": "アオハライド", + "overview": "At the end of her first year of high school, Futaba Yoshioka suddenly has a chance encounter with her first love, Kou Tanaka. Three years ago, he transferred schools before she was able to say how she felt about him. After meeting each other again, Futaba realizes that he has gone through many changes. He acts more cool and even had his last name changed to Mabuchi. Gradually the two rekindle their love while piecing together what had happened in the time that they were apart.", + "posterPath": "/dJbG3paFR4TeCENN7ognYyZ2Xhy.jpg", + "backdropPath": "/tYwwbdfu16AK386j3Q7fixpdUKR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-07-08", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 328, + "popularity": 3.1311 + }, + { + "id": 197848, + "title": "The Unwanted Undead Adventurer", + "originalTitle": "望まぬ不死の冒険者", + "overview": "Rentt Faina has hunted monsters for the last 10 years. Sadly, he’s not great at his job, stuck hunting slimes and goblins for a few coins each day. His luck turns when he finds an undiscovered path. At the path’s end, he meets his demise in the maw of a legendary dragon. But, he wakes up as an undead bag of bones! He sets out to achieve Existential Evolution and rejoin the land of the living.", + "posterPath": "/lQpkZLyw8ID6lZG3djRtihzVWmY.jpg", + "backdropPath": "/eYfyC5foNQVxi0dosgwUl8obHLg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.799, + "voteCount": 87, + "popularity": 3.1203 + }, + { + "id": 206629, + "title": "Days with My Stepsister", + "originalTitle": "義妹生活", + "overview": "When his father remarries, Yuta Asamura winds up sharing a roof with his new stepsister, Saki Ayase, the hottest girl in his grade. Carrying the scars of their parents’ troubled divorces, they vow to maintain a respectful distance. But what starts as cautious camaraderie blossoms into something deeper from shared experiences. Is it admiration, familial love, or something more?", + "posterPath": "/xzbatUmI1qlcLHqMmawGduqHh1X.jpg", + "backdropPath": "/4VobhteGHVBfW5tDF1ZL4gymssz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-07-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.67, + "voteCount": 48, + "popularity": 3.1188 + }, + { + "id": 45318, + "title": "Hello! Spank", + "originalTitle": "おはよう!スパンク", + "overview": "Morimura Aiko is a junior high school student who is short for her age. Her father went on a yacht ten years ago and his whereabouts remained in obscurity. Her mother, a designer for hats, left for Paris, leaving Aiko in the care of her uncle, Mr Fujinami. Aiko had a pet dog, Papi, but it died in a car accident. Around the same time, another dog, Spank, appears before her. Having gone through so many unfortunate events in her life, Spank's presence begins to brighten up Aiko's life and put a smile on her face.", + "posterPath": "/a6kCb4A4UUaVEzysdcjFoCa9ecm.jpg", + "backdropPath": "/ajBmrsNsqO4h1DqXxe1XOVpH0DN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1981-03-07", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 10, + "popularity": 3.1166 + }, + { + "id": 78457, + "title": "Wotakoi: Love Is Hard for Otaku", + "originalTitle": "ヲタクに恋は難しい", + "overview": "When Narumi, an office lady who hides the fact that she is a yaoi fangirl, changes jobs, she is reunited with Hirotaka, her childhood friend who is attractive and skilled but is a hardcore gaming otaku. They decide to start dating for now, but being otaku, both of them are awkward so a serious romantic relationship is rather difficult for them...", + "posterPath": "/fpDesSzDRMFGIJbcuC2WVCveC2P.jpg", + "backdropPath": "/mYunpuXqt2nCwrcq00am9zeca7h.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-04-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 136, + "popularity": 3.1148 + }, + { + "id": 60862, + "title": "JoJo's Bizarre Adventure", + "originalTitle": "ジョジョの奇妙な冒険", + "overview": "Jotaro Kujo is a popular high school student – at least until that day when he thinks he is possessed by a ghost, which is why he locks himself up. During a fight between his grandfather and his grandfather’s friend Muhammad Abdul, he notices that the ghost is his “Stand”, named \"Star Platinium\", his fighting aura. Later, his mother also gets such a “Stand” and thus falls ill. Jotaro learns that a man named Dio Brando, who was defeated by Jotaro’s great-great-grandfather a hundred years ago, is to blame. He joins his grandfather and Abdul to destroy Dio once and for all.", + "posterPath": "/8PO6QwTuCQKucMAx72gREkWYwiF.jpg", + "backdropPath": "/2AskfZCVSh2cEbvURPgSG2VD8q5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1993-11-19", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 6.89, + "voteCount": 68, + "popularity": 3.1138 + }, + { + "id": 12050, + "title": "Astro Boy", + "originalTitle": "ASTROBOY 鉄腕アトム", + "overview": "Astro is a robotic boy created by Dr. Tenma to replace his late son. When Tenma destroys his laboratory and shuts down Astro, the Ministry of Science revives him and tries to give him a normal life as a 6th-grade student who occasionally helps keep renegade robots from causing harm.", + "posterPath": "/vl2geBaVhcSEjzyk3WeL55ghd3i.jpg", + "backdropPath": "/8cOm7XSRIbkVnD88Y67R1GMmVQ2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10751, + 35, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Family", + "Comedy", + "Kids" + ], + "releaseDate": "2003-04-06", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 16, + "popularity": 3.1136 + }, + { + "id": 9041, + "title": "Noein: To Your Other Self", + "originalTitle": "ノエイン もうひとりの君", + "overview": "When summer break begins, Haruka is only thinking of hanging out with her friends—until one fateful night she learns that she’s the keystone in an interdimensional battle for not only the Earth’s future, but the very survival of all existence across the multiverse.", + "posterPath": "/5CWYj3XuQXmRbk7lI7ad5DTiJ5p.jpg", + "backdropPath": "/fqfcpJ3tGWmktXEZ3rbWoHtYdvR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-12", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 16, + "popularity": 3.1109 + }, + { + "id": 77702, + "title": "Magical Girl Site", + "originalTitle": "魔法少女サイト", + "overview": "Aya Asagiri is a middle school girl who has problems both at school with bullying and at home from physical abuse by her brother. While browsing online, a website pops up on her computer featuring a creepy looking person. This person appears to take pity on her, and announces that she has granted Asagiri magical powers.", + "posterPath": "/tNVxRfjHcFSkciIHXMPdjXwZAqg.jpg", + "backdropPath": "/5WzVWccAxJrziHgs6IbB769Cua5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2018-04-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.264, + "voteCount": 182, + "popularity": 3.1098 + }, + { + "id": 11235, + "title": "Medabots", + "originalTitle": "メダロット", + "overview": "Set in the near future, Medabots revolves around the super charged battling adventures of a group of kids and their pet robots. Fueled with artificial intelligence and a specialized arsenal of high powered weapons, Medabots compete against each other in exciting Robattles, with the winners acquiring Medaparts from the defeated Medabot.\n\nWith over 370 unique robots ready to Robattle, Medabots is filled with explosive adventures in a world where kids have the ultimate power. But more than anything else, these challenges are about courage and mind power, where the soul of the Medafighter and Medabot combine to emerge victorious.", + "posterPath": "/x4bQto8Jsphbd0VxLKcvqDQS0Mj.jpg", + "backdropPath": "/wbrbdpdEBuNCtgiqL9xObpma1zu.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759, + 35, + 10762 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure", + "Comedy", + "Kids" + ], + "releaseDate": "1999-07-02", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 187, + "popularity": 3.1089 + }, + { + "id": 43167, + "title": "Accel World", + "originalTitle": "アクセル・ワールド", + "overview": "A short, overweight student uses the Neuro Link, an evolution of the Nerve Gear, to escape himself from the reality. But his skills in the virtual world brings him to the attention of Kuroyukihime, a popular student who introduces him to the Brain Burst.", + "posterPath": "/eNodkllQPCOrWlPCRfPUc9Deyo2.jpg", + "backdropPath": "/clNR2BABiVEcaPRQbCT1y1bHz0R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.579, + "voteCount": 140, + "popularity": 3.1088 + }, + { + "id": 42425, + "title": "Asura Cryin'", + "originalTitle": "アスラクライン", + "overview": "Tomoharu is a normal high school student... except for the fact that he is never alone. Haunted by the ghost of his dead childhood friend, he moves into a new residence at the beginning of the school year.\n\nLife turns out to be a little more difficult than expected, though, when his house is overrun by various female occult users. To make things even worse he is pulled into an epic struggle to protect a mysterious trunk, that is presently hidden in the house.", + "posterPath": "/2aPuDNtfDRSTsZznGXRNwrc4gSi.jpg", + "backdropPath": "/pGCKkACejNJ5rN710X09EOfRTxJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 11, + "popularity": 3.1063 + }, + { + "id": 46388, + "title": "PERSONA 4 the Animation", + "originalTitle": "Persona4 the ANIMATION", + "overview": "When Yu Narukami moves to the rural country town of Inaba to live with his uncle while his parents are away on business, he's expecting a lot more peace and quiet than he's been used to in the big city. Instead, the peace has been shattered as a rash of mysterious murders and kidnappings sweep the countryside. With the police stymied, Yu finds himself joining with a group of seven other teenagers in a desperate bid to solve the mystery. A mystery that is somehow connected to both the local weather patterns and a strange TV world which Yu, his friends and the enigmatic killer can all enter.", + "posterPath": "/pNqWrcUbJgBqiefyTGxRl0NQ9NK.jpg", + "backdropPath": "/aPQ1ul1PLbYsC0VjcIOaofH7AZ2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 9648, + 80 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery", + "Crime" + ], + "releaseDate": "2011-10-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.452, + "voteCount": 42, + "popularity": 3.1051 + }, + { + "id": 43715, + "title": "Little Memole", + "originalTitle": "とんがり帽子のメモル", + "overview": "Little Memole also known also as Wee Wendy or Tongari Bōshi no Memoru, lit. \"Memole Of The Pointed Hat\", is a Japanese anime television series produced in the 1980s by Toei Animation. The series centers around a tiny girl named Memole that lands on Earth with 245 inhabitants from the planet Riruru. Memole befriends a human girl named Mariel who is ill and spends time with her. Memole also meets woodland animals and uses an owl named Bo-bo for transport.", + "posterPath": "/xphAGARoBW1Z88nyvEQcDDg0xxa.jpg", + "backdropPath": "/3pTYCs4Oz07sYLavTPqQl3SJ3Qh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1984-03-03", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 5, + "popularity": 3.1021 + }, + { + "id": 208445, + "title": "The Witch and the Beast", + "originalTitle": "魔女と野獣", + "overview": "Guideau is a young woman who was cursed by a witch, forced to carry a dark secret. Ashaf is a tall, soft-spoken man with a coffin strapped to his back and secrets yet untold. Together they venture across the land on their quest for vengeance. Appearances can be deceiving, and each step could be their last. In a dark fantasy filled with adventure, will unlikely heroes find the vengeance they seek?", + "posterPath": "/ooSzpaJkU8MnfuLKn0IThcACv57.jpg", + "backdropPath": "/3sOWWRpSEGrljd8O50KLmOIdIPn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2024-01-12", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.92, + "voteCount": 50, + "popularity": 3.0982 + }, + { + "id": 69225, + "title": "ACCA: 13-Territory Inspection Dept.", + "originalTitle": "ACCA13区監察課", + "overview": "\"ACCA\" is a giant unified syndicate residing in a kingdom split into 13 autonomous regions. ACCA was formed back when there was threat of a coup d'etat, and has continued to protect the peace for almost one hundred years. Jean Otus, vice-chairman of the inspections department at ACCA headquarters, wanders through the 13 districts, checking to see if there is any foul play afoot. His quiet everyday life slowly gets swallowed up into the world's conspiracies!", + "posterPath": "/levpmW2U8QClpQYqYcpFAVw3vDq.jpg", + "backdropPath": "/sicm3KhlaSVppqaUx7n7h33LPqk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 18, + 9648 + ], + "genres": [ + "Animation", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2017-01-10", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.229, + "voteCount": 59, + "popularity": 3.0975 + }, + { + "id": 210181, + "title": "Synduality Noir", + "originalTitle": "SYNDUALITY Noir", + "overview": "The year is 2242. Kanata wants to be a Drifter and meets Noir, who is a dud Magus with no memories. However, because Noir excels in battle against the Enders, Kanata partners with her and discovers exactly what it takes to be a Drifter.", + "posterPath": "/x97QNSsHpHaq3HsbYD5Nhbsmr11.jpg", + "backdropPath": "/gGyMbhL6qxP25VDowuTMrIyyqa2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-11", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.205, + "voteCount": 22, + "popularity": 3.0937 + }, + { + "id": 49294, + "title": "You're Being Summoned, Azazel-san", + "originalTitle": "よんでますよ、アザゼルさん。", + "overview": "Have a stalker you just can't shake? Fear your spouse is being unfaithful? You might consider hiring Akutabe, a detective who summons demons to do his dirty work. While his methods might seem unorthodox, he always gets results. However, as powerful as Akutabe is, manipulating demons is a delicate art. His new part-time employee Sakuma, a young college girl, doesn't get to spend too much time exploring the finer points of controlling demons before Akutabe forces her into a demonic contract with Azazel. Azazel is lazy, lustful, and depraved... Everything you'd expect a demon to be. Sakuma needs to keep Azazel on a tight leash, but to do that, she may have to dabble in a little depravity herself.", + "posterPath": "/gkulREswG2KJOP1GeKlydu2jPVc.jpg", + "backdropPath": "/umPTnS9QcccCByWVy9qDhh9WARj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-04-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 14, + "popularity": 3.093 + }, + { + "id": 294766, + "title": "Milky☆Subway: The Galactic Limited Express", + "originalTitle": "銀河特急 ミルキー☆サブウェイ", + "overview": "Arrested for reckless space driving, super human Chiharu and cyborg Makina are sentenced to clean the Milky☆Subway—an old interplanetary train. Easy enough, right? Wrong. When the train suddenly takes off, they are thrown into a high-speed space-train spectacle packed with chaos, no plans, and zero strategy. Just pure momentum!", + "posterPath": "/uRQalzrXA5OTI6dDDi4eqrpIzbN.jpg", + "backdropPath": "/n0LJoRDb6U4wRM9fvJuEIYRf6Wk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9.2, + "voteCount": 12, + "popularity": 3.0925 + }, + { + "id": 53347, + "title": "The \"Hentai\" Prince and the Stony Cat", + "originalTitle": "変態王子と笑わない猫", + "overview": "Yōto Yokodera is a schoolboy who is unable to express his true feelings freely. After hearing about the wish-granting Stony Cat, he decides to try and make an offering to lose his facade, only to meet Tsukiko who wishes instead to be more discreet with her feelings to become more adultlike. Who'd have thought the rumors of the wish-granting Stony Cat turns out to be true; transferring the facade that Yōto wishes to lose into a classmate who needs it more and making it difficult for Tsukiko to show even the slightest of emotions on her face. Being on the same boat, they both search for ways to remedy the situation.", + "posterPath": "/d2hw6HjWLosbNqs1chZhtcSt6MO.jpg", + "backdropPath": "/vbep6zrFwAOmQgI3YNTqy7bIm7o.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-04-13", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.015, + "voteCount": 68, + "popularity": 3.0884 + }, + { + "id": 42828, + "title": "Rozen Maiden", + "originalTitle": "ローゼンメイデン", + "overview": "Jun is a total recluse who won't take a step outside his house and only loves online shopping. When Jun winds up a doll that suddenly appears in his room because of his mail-orders tendencies, he has no idea what he's in for. The doll comes to life and proclaims herself to be 'Shinku'. She later binds Jun to her as a medium, her counterpart, and her magical power source, in an attempt to save his life. And so starts the beginning of a chaotic life for the Sakurada household as more Rozen Maidens arrive on their doorsteps. But what are the Rozen Maidens and why do they exist? And will Jun learn to open up his heart and face his fears? The main characters are: Sakurada Jun - The main lead of the story who has to learn to face his fears, thanks to the arrival of Shinku. The interaction between Jun and Shinku are often funny and at times, touching.", + "posterPath": "/5FIVOkcXrhyxMm6dMrioCMkQy7R.jpg", + "backdropPath": "/4iGLHcdv7wS9agY9HIRRA21e0l6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2004-10-07", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 88, + "popularity": 3.0849 + }, + { + "id": 69298, + "title": "One Room", + "originalTitle": "One Room", + "overview": "Series of shorts that will tell stories of \"three sisters raised in your (one) room.\"", + "posterPath": "/4gbGvpOsThpztTopUYcZ1wPMvvA.jpg", + "backdropPath": "/wUd2LAPrr0lGzhiIkMScTsoG0g4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-11", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 32, + "popularity": 3.0817 + }, + { + "id": 52896, + "title": "Valvrave the Liberator", + "originalTitle": "革命機ヴァルヴレイヴ", + "overview": "Haruto Tokishima, a high school student, discovers Valvrave, a mysterious and very powerful machine, and after controlling it Haruto becomes immortal.", + "posterPath": "/800znNngbnDR2cHg2HXVHxCaKhP.jpg", + "backdropPath": "/3WhPkBTM51BRClmHQjhqUqXHo0y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2013-04-12", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.704, + "voteCount": 27, + "popularity": 3.0804 + }, + { + "id": 218263, + "title": "The Girl I Like Forgot Her Glasses", + "originalTitle": "好きな子がめがねを忘れた", + "overview": "Komura starts his school year with a new seat neighbor in homeroom—the bespectacled Mie. Before long, he's nursing a raging crush on his quirky classmate who's always forgetting her glasses! While this might be ideal for Komura to get to know Mie better, will his poor heart give out from the daily strain of being up close and personal with the girl he likes?!", + "posterPath": "/vkL7KQzJ3YFcKiNBc4QXrJbYJV8.jpg", + "backdropPath": "/zvRCVEr16Ti3b6Sx9coBGGon4bf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-07-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 76, + "popularity": 3.0768 + }, + { + "id": 255107, + "title": "Code Geass: Rozé of the Recapture", + "originalTitle": "コードギアス 奪還のロゼ", + "overview": "Year Seven of the Kowa Period, in the former Hokkaido Block, live brothers known as the Nameless Mercenaries. The Emperor, Callis al Britannia, tries to plunge the world into chaos with the help of his servant, Norland, and his Einberg Knights. Rozé and Ash take action from the Northern lands.", + "posterPath": "/jQRG3lI42IaJNr23jFeO6FSXmoE.jpg", + "backdropPath": "/pSdmUGsfocf4gTyD5auC4Ccz25l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-06-21", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.125, + "voteCount": 24, + "popularity": 3.0762 + }, + { + "id": 46275, + "title": "Wedding Peach", + "originalTitle": "愛天使伝説ウェディングピーチ", + "overview": "Wedding Peach is a Japanese magical girl anime series created by Kunihiko Yuyuma, and was aired on TV Tokyo from April 5, 1995 to March 27, 1996.", + "posterPath": "/e304jgLE7y3Z7CPsxJoJm2ZW40s.jpg", + "backdropPath": "/gzMbvJGbLlKYdByV73xaH1TUkZX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759, + 18, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure", + "Drama", + "Kids", + "Family" + ], + "releaseDate": "1995-04-05", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 17, + "popularity": 3.0712 + }, + { + "id": 23374, + "title": "Fushigi Yûgi: The Mysterious Play", + "originalTitle": "ふしぎ遊戯", + "overview": "Junior high school student Miaka lives a normal life in Tokyo until she finds a mysterious book in the library, and she and her friend Yui are transported the Universe of the Four Gods. Upon arriving in this new universe, the girls are immediately attacked by would-be slavers and saved by a dashing young man. When Miaka isn't looking, both Tamahome and Yui vanish. Unbeknownst to Miaka, Yui has been sucked back into the real world. Back in the library, all she can do is read on as Miaka sets out for the city to find the mysterious young boy and save her friend. But what awaits for Miaka isn't what either of the girls expect—and now Miaka's only way back to her world is to become the Priestess of Suzaku and save their world.", + "posterPath": "/5eXcEyXTa9dgI9voYtYjxyF19sB.jpg", + "backdropPath": "/tEmdqOMlupwYykV4bJ0Ado5OKSt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1995-04-06", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 59, + "popularity": 3.0693 + }, + { + "id": 277881, + "title": "The Unaware Atelier Meister", + "originalTitle": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話~", + "overview": "Kurt Rockhans is a kind-hearted errand boy for a hero’s party, the Flaming Dragon Fang. One day, he's banished from the party and finds out he has the lowest rank in combat. In order to make a living, Kurt picks up various jobs and discovers he has astonishing abilities. Though he doesn't realize it yet, Kurt has SSS-rank skills in anything other than fighting, as he sets off on a new journey.", + "posterPath": "/OPJ7k6DMm1o3A0kIXysgrqVT5w.jpg", + "backdropPath": "/wygwG3cGZjn3Q4H84yE4avF22a8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 29, + "popularity": 3.0687 + }, + { + "id": 72041, + "title": "Record of Lodoss War: Chronicles of the Heroic Knight", + "originalTitle": "ロードス島戦記 英雄騎士伝", + "overview": "Five years after the death of the Emperor of Marmo in the War of Heroes, Parn is now the Free Knight of Lodoss, he and his old allies now famous through the land. However, the Emperor's right-hand-man, Ashram, seeks the Scepter of Domination to re-unify Lodoss under his former leader's banner. Meanwhile, beyond his attempts at conquest lies a more sinister force beginning to set the stage for the resurrection of the goddess of death and destruction...", + "posterPath": "/cC03MG5593IWXPUeKZAQX9qW3A1.jpg", + "backdropPath": "/k52zrD5uzjpTr0s9cwtfw5Cw0gD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-04-01", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 20, + "popularity": 3.0674 + }, + { + "id": 67154, + "title": "Chivalry of a Failed Knight", + "originalTitle": "落第騎士の英雄譚", + "overview": "Magic Knights are modern magic-users who fight with weapons converted from their souls. Ikki Kurogane goes to a school for these Magic Knights, but he is the \"Failed Knight\" or \"Worst One\" who is failing because he has no magical skills. However, one day, he is challenged to a duel by Stella, a foreign princess and the \"Number One\" student. In this duel, \"the loser must be obedient for life.\"", + "posterPath": "/nEeLLbhlKRLC98dK6HUow7p4dNL.jpg", + "backdropPath": "/wf7HeTRRa9SOQ8up5EJZeOKseLO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2015-10-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 139, + "popularity": 3.0672 + }, + { + "id": 45532, + "title": "Big Windup!", + "originalTitle": "おおきく振りかぶって", + "overview": "Ren Mihashi was the ace of his middle school's baseball team, but due to his poor pitching, they could never win. Constant losses eventually lead to his teammates bullying him and reached the point where his teammates no longer tried to win, causing Mihashi to graduate with little self-esteem. As a result, Mihashi decides to go to a high school in a different prefecture where he has no intention of playing baseball. Unfortunately, upon his arrival at Nishiura High, he is dragged into joining their new team as the starting pitcher.\n\nAlthough unwilling at first, Mihashi realizes that this is a place where he will be accepted for who he is; with help from the catcher Takaya Abe, he starts to have more confidence in his own abilities. Abe, seeing the potential in Mihashi, makes it a goal to help him become a pitcher worthy of being called an ace.", + "posterPath": "/lKG1XS2D6dDWDfbsxXXRfvsmYLI.jpg", + "backdropPath": "/4GMqxm6wpZbqeGIkxyWlkSeHtje.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2007-04-13", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 16, + "popularity": 3.0649 + }, + { + "id": 241811, + "title": "Puniru Is a Kawaii Slime", + "originalTitle": "ぷにるはかわいいスライム", + "overview": "The slime created by the boy Kotarou can transform into a super beautiful girl! Kotarou is constantly getting pushed around by Puniru's freewheeling antics. It's a joyful and exciting life every day!", + "posterPath": "/zaUlTqv4OWyTmi0Z80g9XQ5LFbE.jpg", + "backdropPath": "/a1qDztwWW0L3c2G1RzmYpGV2UKq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 15, + "popularity": 3.0644 + }, + { + "id": 76821, + "title": "Gundam Build Divers", + "originalTitle": "ガンダムビルドダイバーズ", + "overview": "Gunpla Battle Nexus Online (GBN) is a network game that lets people have adventures with their Gunpla in a virtual cyberspace dimension. Middle-school students Riku Mikami and Yukio Hidaka recruit their classmate Momoka Yashiro and dive together into this vast world. Becoming \"Divers,\" or inhabitants of GBN, they meet a mysterious girl named Sarah who has an amazing sensitivity to Gunpla. As they meet new friends and allies, the force known as Build Divers is born!", + "posterPath": "/xncxq5xi391TNVdo9wMRWruY0C.jpg", + "backdropPath": "/dD3QvbPo2si8MCp5hjl6msrPyyY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2018-04-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.571, + "voteCount": 14, + "popularity": 3.0631 + }, + { + "id": 259558, + "title": "Loner Life in Another World", + "originalTitle": "ひとりぼっちの異世界攻略", + "overview": "Isekai'd into another world, Haruka makes use of seemingly underpowered skills to live as a lone wolf.", + "posterPath": "/nkWUPeyRTFMUD7aJBydTWjELBUG.jpg", + "backdropPath": "/a6wRbL6hj0bpU8dK1EAZkJDdyIV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-09-27", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.125, + "voteCount": 36, + "popularity": 3.0626 + }, + { + "id": 274580, + "title": "Ave Mujica - The Die Is Cast -", + "originalTitle": "BanG Dream! Ave Mujica", + "overview": "After losing everything in a single night, Sakiko Togawa reaches out toward an even deeper abyss, one that will drag everyone around her down as well. Gathering the lives of girls burdened with their own troubles and desires, Sakiko raises the curtain on a perfect masquerade. On a stage where sorrow, death, fear, love—even the solace of forgetting—are stripped away, will their masks be torn off and shatter into oblivion?", + "posterPath": "/2oq4QR3CtiAaRYHOjdYWgZAby63.jpg", + "backdropPath": "/A2d4FQhXbwTFwQwNNnIrHfLOLmf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-01-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 14, + "popularity": 3.0624 + }, + { + "id": 65333, + "title": "Myriad Colors Phantom World", + "originalTitle": "無彩限のファントム・ワールド", + "overview": "In the near future, in a world born of human imagination, what humans would call ghosts or monsters appear, and they come to be called \"phantoms.\" Haruhiko Ichijō, is a first year at Hosea Academy along with his upperclassman Mai Kawakami, who fights phantoms with the ability \"Spirit of Five Elements,\" Reina Izumi, who has the ability \"Phantom Eater,\" and Koito Minase, who fights phantoms in solitude. They experience the ups and downs of high school life before a certain incident leads them to the truth of this world.", + "posterPath": "/qHeXtLAshmzGVx759rnCWRW2iz7.jpg", + "backdropPath": "/6Tt8634C2yn9x84ZIifubTqiEQD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2016-01-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 133, + "popularity": 3.0526 + }, + { + "id": 43249, + "title": "AIKa", + "originalTitle": "AIKa", + "overview": "Aika Sumeragi works as a salvager for hire, but gets caught up in a plot for world domination.", + "posterPath": "/t0ooRM2kpIlzRpGpJ7oxBFGB0lW.jpg", + "backdropPath": "/8Tqt7iAGoQcpicS6RSzRZ5Fpjud.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "1997-04-25", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 191, + "popularity": 3.049 + }, + { + "id": 61460, + "title": "Trinity Seven", + "originalTitle": "トリニティセブン", + "overview": "In this \"romantic comedy but sometime serious magical school story,\" life as Arata Kasuga knows it is wiped out by a bizarre incident known as \"Collapse Phenomenon,\" which causes worldwide destruction and takes his cousin Hijiri Kasuga to the next world. To resolve the \"Collapse Phenomenon\" and bring back Hijiri, Arata enrolls in the Royal Biblia Academy. Waiting in the school are seven beautiful female magic users — the Trinity Seven.", + "posterPath": "/spklcFiiHyIbkAzhKw88Epp25Z0.jpg", + "backdropPath": "/rXWbob80oIGs9pvO2K5k7XNVEhk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-10-08", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.926, + "voteCount": 68, + "popularity": 3.0472 + }, + { + "id": 61527, + "title": "Gatchaman Crowds", + "originalTitle": "ガッチャマン クラウズ", + "overview": "Tachikawa, Japan, is a \"second metropolis\" of Tokyo, protected by the Gatchaman, warriors who fight in special reinforced suits powered by the manifestation of their spiritual powers called NOTE. When the energetic and cheerful Hajime Ichinose becomes their newest member, the Gatchaman must deal with Berg Katze, an enigmatic alien creature bent on destroying Earth just like it did with several other planets in the past.", + "posterPath": "/sy6A71E7WVfBUQQkXOn1QQe1R4O.jpg", + "backdropPath": "/mGIgwTFuut9rkkuYa5UavzcPmkW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-07-13", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 36, + "popularity": 3.0462 + }, + { + "id": 36588, + "title": "Dear Brother", + "originalTitle": "おにいさまへ…", + "overview": "Misonoo Nanako, a professor's daughter, looks forward to her first day at the prestigious Seiran Academy, a girls' school that caters to the rich, or in her case, those with high test scores. She soon finds that the school is polarized by three popular and talented individuals, known as the Magnificent Three. Though Nanako doesn't intend to make waves at this school, when she is tabbed to be a member of the Sorority, the brutal politics that run beneath the surface of the school's sophisticated veneer soon turn Nanako's world into one where she is unsure of her friends, her enemies, and her very identity... The only way she can vent her emotions is through her correspondence letters to a man she calls her \"Dear Brother\".", + "posterPath": "/eOxB93uT4DahhesM5XAXVCKriR6.jpg", + "backdropPath": "/sG4oWm2QZSU5bP63uRT3KAnebd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1991-07-14", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 9, + "popularity": 3.0459 + }, + { + "id": 12577, + "title": "Devil May Cry", + "originalTitle": "デビル メイ クライ", + "overview": "The adventures of the demon hunter Dante who himself is half demon and half human.", + "posterPath": "/xDGxMQk24gt4proydCyxddPzTIG.jpg", + "backdropPath": "/hgmVKvA1zddu5VmcGJYqIStpDo6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2007-06-14", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.599, + "voteCount": 247, + "popularity": 3.0397 + }, + { + "id": 21296, + "title": "Sherlock Hound", + "originalTitle": "名探偵ホームズ", + "overview": "In a steampunk London, the great detective Sherlock Holmes and Doctor Watson routinely crack the most challenging cases — perpetrated more often than not by their nemesis, the proud, bumbling genius Professor Moriarty.", + "posterPath": "/65H05v4M20v88gnnu9JdnR6WcS.jpg", + "backdropPath": "/dh42YdtvkuoyfZ8Gns77mRAhOic.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Family" + ], + "releaseDate": "1984-11-06", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 55, + "popularity": 3.0383 + }, + { + "id": 68188, + "title": "Kiss Him, Not Me", + "originalTitle": "私がモテてどうすんだ", + "overview": "Kae Serinuma is a second year high school student and an avid fujoshi who secretly ships her classmates, Igarashi and Nanashima. The death of her favorite anime character causes her to become stressed and lose weight rapidly. Now that Serinuma has become an attractive girl to her classmates, snarky junior Shinomiya and senior Mutsumi, how is she going to deal with them with her constant BL-filled fujoshi mind?", + "posterPath": "/aFjVWEAK2CZVGqUCFZjktqErWbh.jpg", + "backdropPath": "/bDFb2S3jPm3vGfiHkaf1E2ZabBC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 311, + "popularity": 3.0344 + }, + { + "id": 66077, + "title": "Tanaka-kun Is Always Listless", + "originalTitle": "田中くんはいつもけだるげ", + "overview": "A lethargic student dozes through class, activities and pretty much everything, frustrating his best friend but attracting the affections of others.", + "posterPath": "/q3TdnhtfXh6yfrHuZO0hEmkjjnr.jpg", + "backdropPath": "/fbUsgV5ofg68iIijsqEhF3kiX4P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 43, + "popularity": 3.0317 + }, + { + "id": 31670, + "title": "Air Gear", + "originalTitle": "エア・ギア", + "overview": "Itsuki Minami is a school student notorious for engaging in street fights, a reckless punk that will break through any obstacle, alongside his best friends Kazuma Mikura and Onigiri. However, when he discovers a pair of Air Trecks his true desire to rule the skies takes off.", + "posterPath": "/2L56xOGEgYTasjzYMUylEc29eyb.jpg", + "backdropPath": "/6rPG2XDlIIgtePWqJHhyx0avo4z.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10759 + ], + "genres": [ + "Comedy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2006-04-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 52, + "popularity": 3.0316 + }, + { + "id": 78941, + "title": "Aggretsuko", + "originalTitle": "アグレッシブ烈子", + "overview": "Frustrated with her thankless office job, Retsuko the Red Panda copes with her daily struggles by belting out death metal karaoke after work.", + "posterPath": "/5Htj8wlj53HUCWXFrbgB0wpRkXJ.jpg", + "backdropPath": "/uPaX3KczjZiXxLJiG91F8pZh88s.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-04-20", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.372, + "voteCount": 152, + "popularity": 3.0265 + }, + { + "id": 45657, + "title": "A Dog of Flanders", + "originalTitle": "フランダースの犬", + "overview": "Nello Tarth is a poor but happy orphan who lives with his grandfather Jehan in a little village nearby Antwerp. Nello has a talent for drawing pictures and has been fascinated by it since he saw one of Rubens (a famous artist) pictures as a little boy. Helping Jehan with the daily milk delivery to Antwerp, Nello one day discovers Patrash, a working dog who has been mistreated and abandoned by his former owner. He treats the exhausted animal and after a little while a close and dependable friendship develops. Alois Cojez, the daughter of the richest and hence most influential man in Blacken Village, is Nellos best friend. When Nello decides to become an artist he has to experience firsthand the ignorance and cruelty of the villagers. Especially Alois father thinks of him as a slacker who cannot earn his living by drawing pictures. Nontheless Nello perseveres and never gives up to achieve his dream and to win their appreciation and respect while strenuously struggling with his poverty.", + "posterPath": "/8Nfu4THgMIo08FlR7BEeiLMqytm.jpg", + "backdropPath": "/77AoB6E3u0N1nAkGjC0JPsU0Ewj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1975-01-05", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 9, + "popularity": 3.0216 + }, + { + "id": 250994, + "title": "Ameku M.D.: Doctor Detective", + "originalTitle": "天久鷹央の推理カルテ", + "overview": "Ten’ikai General Hospital’s Supervisory Department of Diagnostic Pathology handles cases other physicians deem too difficult to treat. It’s also where bizarre mysteries surface, from unexplained illnesses to strange murders even the police can’t solve. At the center of it all is Takao Ameku, a brilliant doctor determined to reveal the shocking truth behind these anomalies.", + "posterPath": "/ukyIdEgqRKfovtFm9NzUfrIdm8y.jpg", + "backdropPath": "/oBYKvW0VS1L3Gfr81VoJgeK7jzo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2025-01-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 25, + "popularity": 3.0209 + }, + { + "id": 42557, + "title": "Kids on the Slope", + "originalTitle": "坂道のアポロン", + "overview": "Two different students - a successful but aloof academic and a rebellious but kindhearted delinquent - form a friendship through their love for music.", + "posterPath": "/e2shFe5YRvzvUrjHpZgAxLNpIT7.jpg", + "backdropPath": "/daG1YyVv7rOFWMeOGgi2BW9lCVl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2012-04-13", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.64, + "voteCount": 68, + "popularity": 3.019 + }, + { + "id": 20959, + "title": "Calimero", + "originalTitle": "カリメロ", + "overview": "Calimero is an Italian/Japanese cartoon about a charming, but hapless anthropomorphized cartoon chicken; the only black one in a family of yellow chickens. He wears half of his egg shell still on his head. Calimero originally appeared on the Italian television show Carosello on July 14, 1963, and soon became a popular icon in Italy.\n\nThe characters were later licensed in Japan as an anime series, twice. The first was made by Toei Animation and ran from October 15, 1974 to September 30, 1975, and the second, with new settings and characters, was made in 1992. Altogether, 99 Japanese episodes were made. The series mostly consists of the many adventures of Calimero and his friends as they solve mysteries and make documentaries. However, their adventures usually get them into quite a bit of trouble. The first series was also broadcast on European networks such as TROS, ZDF and RTL II or TVE.", + "posterPath": "/arGrH3uEpW2DonslsBfyUzboyEP.jpg", + "backdropPath": "/ylVMRyy5dA8l4ZB1c1m8pEQK8SS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "1974-10-15", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 10, + "popularity": 3.0186 + }, + { + "id": 249031, + "title": "Welcome to Japan, Ms. Elf!", + "originalTitle": "日本へようこそエルフさん。", + "overview": "Kazuhiro Kitase’s only hobby? Sleeping, of course. Since childhood, his dreams have been a portal to exhilarating adventures with an elf girl. During one of their explorations through ancient ruins, they both get scorched by a dragon, and Kazuhiro wakes up like usual. Except this time, he finds a familiar figure in bed beside him—the elf girl from his dreams.", + "posterPath": "/1BifdNaVpUZUkbHYVPVDBYBlqJj.jpg", + "backdropPath": "/nmlyumUP75OATOl4TiRzbEVc7or.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.952, + "voteCount": 21, + "popularity": 3.0182 + }, + { + "id": 76139, + "title": "Pop Team Epic", + "originalTitle": "ポプテピピック", + "overview": "Crude, rude, and a little…cute? Get ready for the larger-than-life attitude of Popuko and Pipimi, the small and tall stars of Pop Team Epic! Based off the bizarre four-panel webcomic by Bukubu Okawa comes a comedy that’ll throw you off with its out-there jokes and intense absurdity. You think you’re ready for these girls? Think again, F#%**er!", + "posterPath": "/krWQxK4i5CWvkNCiLJKrz4GsdY8.jpg", + "backdropPath": "/p2vf2tqHMV4VQtFNGvv2dicfBiD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 55, + "popularity": 3.0161 + }, + { + "id": 38560, + "title": "Gosick", + "originalTitle": "ゴシック", + "overview": "Set in a fictional European country in 1924, a Japanese exchange student meets a mysterious, brilliant girl who only leaves the library to sleep. Her brother, a detective, relies on her exceptional mind to solve difficult mysteries.", + "posterPath": "/jkzcxkON0yCkx6JQTDEUJpax5HV.jpg", + "backdropPath": "/9215rBsQ6jSEK2QuALxHEigKaUZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2011-01-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.932, + "voteCount": 73, + "popularity": 3.0122 + }, + { + "id": 99083, + "title": "Bottom-Tier Character Tomozaki", + "originalTitle": "弱キャラ友崎くん", + "overview": "Tomozaki is one of the best gamers in Japan, and in his opinion, the game of real life is one of the worst. No clear-cut rules for success, horribly balanced, and nothing makes sense. But then he meets a gamer who’s just as good as him, and she offers to teach him a few exploits…", + "posterPath": "/86sP2j7NdslbZywy98qPDtzgvEV.jpg", + "backdropPath": "/xWhkbeNtpdvtmLkknzjbLoBghrA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-01-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 51, + "popularity": 3.0099 + }, + { + "id": 21788, + "title": "Peacemaker", + "originalTitle": "PEACE MAKER鐵", + "overview": "For 15-year-old Tetsunosuke Ichimura, childhood innocence has given way to a blinding thirst for revenge. Haunted by the vicious slaying of his parents, Tetsu decides to seek out the Shinsengumi, an elite group of swordsmen sworn to protect the capital. The Shinsengumi are engaged in a brutal conflict with the Choshu rebels, the same ruthless killers who murdered Tetsu's parents. In the name of justice - and against the will of his older brother - Tetsu desperately hopes to join the Shinsengumi.\n\nBut an incident late one night forces him to face reality. The Shinsengumi show themselves capable of the same brutality as his parents' murderers. Wading through a sea of espionage, intrigue, and flowing blood, the young boy must decide whether to shed his humanity and become a demon of the Shinsengumi, or to relinquish his hatred and become a Peacemaker in the spirit of his father. Revenge is sweet, but is it worth losing your soul?", + "posterPath": "/5zOrmT7rDoeFWNNKOG6dErCXGbR.jpg", + "backdropPath": "/qEOFzH8ujuy5JlJoTZua8Vlx9SX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2003-10-07", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 15, + "popularity": 3.0063 + }, + { + "id": 113219, + "title": "Dr. Slump", + "originalTitle": "Dr.スランプ", + "overview": "Senbei Norimaki, an inventor, finally invents his dream robot, the House Keeper Robot -Arale! But somehow the House Keeper Robot becomes a girl robot who has super powers!", + "posterPath": "/yhsrHk2zBTcw6hhSfh0a3oTAoDG.jpg", + "backdropPath": "/itYm3qYY4uB4II0zd91puV0fs6P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1997-11-26", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 15, + "popularity": 3.0062 + }, + { + "id": 61901, + "title": "Death Parade", + "originalTitle": "デス・パレード", + "overview": "There is a place after death that’s neither heaven nor hell. A bar that serves you one chance to win. You cannot leave until the game is over, and when it is, your life may be too.", + "posterPath": "/q95PaZEpjfNzmz3c0TFFAG6lc7S.jpg", + "backdropPath": "/ptt4UVsyV32OcTBjbkuH3mQHGmx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2015-01-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.985, + "voteCount": 563, + "popularity": 3.0053 + }, + { + "id": 217390, + "title": "My Tiny Senpai", + "originalTitle": "うちの会社の小さい先輩の話", + "overview": "When Shinozaki started his new job, he didn’t expect his superior to be so…cute!? He struggled to learn the ropes until Katase, his tiny and kind senpai, took him under her wing. But as they grow closer, he hopes her attention might mean something more.", + "posterPath": "/7zSPXGCvXjkVCR7797UbRDPfV2B.jpg", + "backdropPath": "/b6EoiUpO8tx0Bzhkd8dxXEupDvj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-07-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.094, + "voteCount": 32, + "popularity": 3.0048 + }, + { + "id": 67043, + "title": "91 Days", + "originalTitle": "91Days", + "overview": "During Prohibition, the law is powerless and the mob rules Lawless, a town that thrives on the black market sale of illicitly brewed liquor. Avilio returns to town after a time away, following a lead on the murder of his family.", + "posterPath": "/cPn42jFjw0ia1o5oL3SsTsEKgFP.jpg", + "backdropPath": "/iiHQiu3Kg8TFzVCiugQT0SGPEU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 18 + ], + "genres": [ + "Animation", + "Crime", + "Drama" + ], + "releaseDate": "2016-07-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.638, + "voteCount": 200, + "popularity": 3.0048 + }, + { + "id": 106055, + "title": "LoveLive! Superstar!!", + "originalTitle": "ラブライブ!スーパースター!!", + "overview": "Yuigaoka Girls High School is a newly established school that lies between the Omotesando, Harajuku, and Aoyama neighborhoods of Tokyo. The story centers on its first batch of students. With no history, no upperclassmen or alumni, and no reputation, it is a school full of unknowns.\n\nFive girls, among them Kanon Shibuya, have a fateful encounter with school idols. Kanon decides, \"I love singing. I want to make something come true with song!\" Many feelings converge upon a star that has only started to grow. The future is blank and full of possibility for these girls, and their story that everyone will make possible has only just begun. Soar with your wings, our Love Live!", + "posterPath": "/gFs2oxAjyzMu7Bx9mUJKeW3K4ym.jpg", + "backdropPath": "/4RNJAAVpU2bzDVumQMvR1W7jYxW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-07-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 30, + "popularity": 3.0018 + }, + { + "id": 238903, + "title": "Vampire Dormitory", + "originalTitle": "ヴァンパイア男子寮", + "overview": "After Mito loses her parents and is fired from her job, she must fend for herself on the streets disguised as a boy. She comes across a stranger named Ruka and learns his dark secret—he's a vampire! Ruka invites Mito, still in disguise, to live in an all-boys dorm. Mito exchanges her blood for a place to stay, but a budding romance and her true identity threaten all that hangs in the balance.", + "posterPath": "/y4HvRKul54BSRFBeY5uaA3354Bz.jpg", + "backdropPath": "/wrSbw5nb5ep9tHJvR1qewKk0Iit.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 12, + "popularity": 3.0014 + }, + { + "id": 36837, + "title": "His and Her Circumstances", + "originalTitle": "彼氏彼女の事情", + "overview": "In His and Her Circumstances, like a drug, Yukino Miyazawa was addicted to admiration and praise from those around her. She worked hard to become the perfect student, the perfect girl. But that was before… him. Souichirou Arima. The instant she met him, she hated him. Without even trying, he snatched the very glory from her hands by easily acing the high school entrance exam that should have made her the class representative. To take back what is rightfully hers, Yukino is putting all her efforts into plotting her revenge – but was love part of the plan?", + "posterPath": "/ys1VsQYMNMlQIKt3eCx2DWUZcxW.jpg", + "backdropPath": "/AneAN7CEuc2JrtvMJ89Ei25ZWRW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "1998-10-02", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.948, + "voteCount": 153, + "popularity": 3.0009 + }, + { + "id": 21311, + "title": "Michiko & Hatchin", + "originalTitle": "ミチコとハッチン", + "overview": "Hana is a nine-year-old girl who lives in constant fear of her abusive family; Michiko is a sexy woman who has just done the unthinkable: broken out of the impenetrable Diamandra Penitentiary. After Hana is whisked away by Michiko, who claims to be her mother, the duo sets forth on a high octane ride towards freedom. In the streets of Brazil and aboard Michiko's motorcycle, Hana and Michiko will look for Hana's long lost father, try to learn to co-exist and get along together, and stay one step ahead of the police and afro-clad Atsuko.", + "posterPath": "/fOzETCtcUblPqQ6x900aqLlr1tC.jpg", + "backdropPath": "/498LrQIDL2u7bGEJoSdpKBMgzmi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2008-10-16", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.588, + "voteCount": 34, + "popularity": 3.0009 + }, + { + "id": 243140, + "title": "Tonbo!", + "originalTitle": "オーイ!とんぼ", + "overview": "A dramatic tale of golf and humans, set on the beautiful Tokara Islands. Igarashi has thrown away his past and fled society, relocating to Hinoshima Island. Here, on \"Japan's last hidden paradise,\" he meets Tonbo, the island’s only middle schooler. To his surprise, this girl harbors an extraordinary talent for golf!? This encounter marks the beginning of a significant change in their destinies.", + "posterPath": "/rAI0hOocFwELMJVmBJn1l3ubRD9.jpg", + "backdropPath": "/ePma3sQVolgMcojxBrhkGgN9u4D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-04-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.81, + "voteCount": 21, + "popularity": 2.9997 + }, + { + "id": 262377, + "title": "Detectives These Days Are Crazy!", + "originalTitle": "まったく最近の探偵ときたら", + "overview": "Once a legendary detective, Nagumo Keiichiro now stumbles through middle age baffled by smartphones and modern life. His quiet decline gets disrupted when Mashiro, a bold high school girl, bursts into his office demanding to become his apprentice. Though he’s rusty and set in his ways, her relentless enthusiasm drags him back into detective work. Now the gap-bridging detective duo is on the case!", + "posterPath": "/hv51RYVvaCrKJKuwFEWm17V0QaD.jpg", + "backdropPath": "/38H5MJX53fSi8W03YiMStLBmj6D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-01", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 11, + "popularity": 2.9969 + }, + { + "id": 247859, + "title": "Honey Lemon Soda", + "originalTitle": "ハニーレモンソーダ", + "overview": "After middle school, with its bullying and nicknames, Uka Ishimori is excited for a fresh start at Hachimitsu High School. Kai Miura, a cool and uninhibited boy, sits next to her in class. Uka remembers she met Kai in middle school and with a single word, he had convinced her to attend Hachimitsu. Though he’s popular, Kai supports Uka in her efforts to fit in with her new classmates.", + "posterPath": "/vORim2Ymnr8ULKPiVWSh9PAeZ4b.jpg", + "backdropPath": "/1pVCssTNb0v4mD2lERReRb6tBn3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-01-09", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.24, + "voteCount": 25, + "popularity": 2.9931 + }, + { + "id": 116983, + "title": "Blue Period", + "originalTitle": "ブルーピリオド", + "overview": "Bored with life, popular high schooler Yatora Yaguchi jumps into the beautiful yet unrelenting world of art after finding inspiration in a painting.", + "posterPath": "/bK669RsJ4xaZYHvc144iKlEyzJ7.jpg", + "backdropPath": "/wNDzc5QsyWTvt9ZCpwNU4VJLymE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2021-10-02", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 100, + "popularity": 2.9906 + }, + { + "id": 208730, + "title": "Romantic Killer", + "originalTitle": "ロマンティック・キラー", + "overview": "Living her best single life, romance is the last thing on Anzu's mind — until a tiny match-making wizard suddenly turns her life into a clichéd romcom.", + "posterPath": "/ocCtP4MdXE0keyfmrt6X4JRbhmy.jpg", + "backdropPath": "/vy4ogEDRNuwIzMa9Sz0JihnKlqV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-10-27", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.324, + "voteCount": 188, + "popularity": 2.9904 + }, + { + "id": 80504, + "title": "Yuuna and the Haunted Hot Springs", + "originalTitle": "ゆらぎ荘の幽奈さん", + "overview": "Kogarashi has the ability to see supernatural, and has been possessed by ghosts since he was a kid but now he has learned to fight back against them! Unfortunately, he's now also very poor, homeless, and hoping for a happier, more normal, high school life. In his search for housing, he's introduced to a very cheap boarding house called Yuragi Manor, which was formerly a hot springs inn. It's so cheap because the house is haunted by the spirit of a high school student whose corpse was found there.\n\nKogarashi doesn't think this is going to be a problem for him. Soon he finds that Yuragi Manor's ghost is a 16-year-old girl named Yuna, who lives in his room. Kogarashi has no desire to hurt a ghost girl, and instead he ends up agreeing to help her to figure out her unfinished business so that she can move onto the afterlife before turning evil. Once it is clear that he is fine with Yuna, the other tenants reveal their own secrets—his life in Yuragi Manor is going to be far from ordinary!", + "posterPath": "/fuZemw0UoF8aMD77FSmDom3VvW1.jpg", + "backdropPath": "/mnNkpQ4J9bNubFQfReaI9SVV9QR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-07-14", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 56, + "popularity": 2.9812 + }, + { + "id": 262141, + "title": "I Have a Crush at Work", + "originalTitle": "この会社に好きな人がいます", + "overview": "Yui Mitsuya and Masugu Tateishi aren't just any coworkers—they totally have the hots for each other. His helpful yet humble attitude makes her giddy, and her cuteness leaves him grinning like a fool. Problem is, they're trying to keep their new relationship under wraps to avoid making things awkward at work. But seeing how they can't keep their hands off each other, they run the risk of spilling their little secret with each passing day at the office.", + "posterPath": "/x1BBUPUwxGI4ISk8yZ0Y3E6bFHU.jpg", + "backdropPath": "/dOECK5Ru10T77ZXTiqZ3yv5UE5k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-01-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 12, + "popularity": 2.9808 + }, + { + "id": 42567, + "title": "Ai Yori Aoshi", + "originalTitle": "藍より青し", + "overview": "Kaoru is a college boy with everything going for him. He lives in a mansion with his beautiful fiancé, Aoi, all his roommates are babes, and they all have the hots for him. There’s just one hitch: due to family complications, Kaoru and his beloved have to keep their engagement a secret. As he gets tangled in countless steamy situations, can Kaoru overcome temptation and stay true to the lovely Aoi?", + "posterPath": "/sBqJgnOAIJzc8MO6okjlH4ePfJh.jpg", + "backdropPath": "/z4GtNULtH7UCjrzg6PoCCjpzDcs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2002-04-10", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.636, + "voteCount": 82, + "popularity": 2.98 + }, + { + "id": 278816, + "title": "The Gorilla God's Go-To Girl", + "originalTitle": "ゴリラの神から加護された令嬢は王立騎士団で可愛がられる", + "overview": "Sophia Reeler, a timid noble, received the Gorilla God’s blessing—the ultimate combat power. Now her dream of a peaceful student life is shattered as the royal knights recruit her unrivaled strength. Juggling school, the knight life, and her overwhelming power, Sophia learns the hard way that gorilla strength isn’t so simple.", + "posterPath": "/wsVUjE78BP7v2KayDnlAKbiY3Av.jpg", + "backdropPath": "/ugK0TDbaedrD1wL60Hxe5BazQxl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.537, + "voteCount": 27, + "popularity": 2.978 + }, + { + "id": 122369, + "title": "Fuuto PI", + "originalTitle": "風都探偵", + "overview": "Sometime after the events of Kamen Rider W, Shotaro Hidari and Philip continue to solve crimes and fight evil as superhero detectives in the windy city of Fuuto.", + "posterPath": "/oQpK0067z4owkPnFiulzauu5P7u.jpg", + "backdropPath": "/quBm72EXhp6RWdf19p7xmQ1IUgT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2022-08-01", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.447, + "voteCount": 39, + "popularity": 2.9763 + }, + { + "id": 96451, + "title": "SSSS.DYNAZENON", + "originalTitle": "SSSS.DYNAZENON", + "overview": "Sequel to the 2018 animated series SSSS.Gridman and the third installment of the Gridman multimedia franchise.\n\nWhen Yomogi Asanaka, a first-year student at Fujiyokidai High School, meets Gauma, he claims to be a \"kaiju user.\" But the appearance of a kaiju followed by the entry of the gigantic robot, Dynazenon, backs up his mysterious words. After ending up in the wrong place at the wrong time; they get dragged into the desperate fight against the kaiju!", + "posterPath": "/MxqsKDLmeAjZi8pcq8qepZolw0.jpg", + "backdropPath": "/etA0YB6g0ww63Wu1DyWl2ppMpQI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-02", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 66, + "popularity": 2.9742 + }, + { + "id": 87142, + "title": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "originalTitle": "この世の果てで恋を唄う少女YU-NO", + "overview": "Arima Takuya is a young student whose father, a historian who has conducted various researches, disappeared recently. During a summer vacation Takuya receives a peculiar package from his missing father, along with a letter containing information about the existence of various parallel worlds. At first Takuya doesn't take it seriously, but soon he realizes that he possesses a device that allows him to travel to alternate dimensions. Is his father alive, after all? If so, where is he?", + "posterPath": "/fFcp3iSVzruLAAvjw0qrpCAq5eq.jpg", + "backdropPath": "/6eLxVWeLi6fKZNJWiAdkGUqk9KF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-02", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 68, + "popularity": 2.9724 + }, + { + "id": 20432, + "title": "SPEED GRAPHER", + "originalTitle": "SPEED GRAPHER", + "overview": "In the new Tokyo, where every fetish has a face, burned-out war photographer Tatsumi Saiga is slumming in the tabloid wasteland. Sent to dig up dirt on the underground elite, he stumbles upon a depraved ritual below the city—and before the night ends, a single kiss from a young beauty named Kagura Tennouzu ignites a chain of events that could force the entire ruling class to their knees.", + "posterPath": "/5OOEt14tCMakadSZDCwRA6yD4R6.jpg", + "backdropPath": "/zf1TGjNDpqmd12AiCKg2LQlRXa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80 + ], + "genres": [ + "Animation", + "Crime" + ], + "releaseDate": "2005-04-08", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 40, + "popularity": 2.9708 + }, + { + "id": 42882, + "title": "Bubblegum Crisis", + "originalTitle": "バブルガムクライシス", + "overview": "MegaTokyo 2033: Tokyo was left flattened as a result from a great earthquake.\n\nA new city, MegaTokyo, was then recreated due in no small part from the aid of a multi-million dollar company, Genom Corp. Genom created and mass-produced biomechanical creatures called Boomers to aid in the restoration of MegaTokyo.\n\nWhen the Boomers began to run out of control, the ADPolice at first tried to stop them, but they proved to be far more difficult to deal with than was first imagined.\n\nUnder the ever looming Boomer threat, a group of four girls from varying degrees of society banded together. Calling themselves The Knight Sabers, they were the only ones with enough firepower and resourcefullness to defend the fledgling MegaTokyo from Genom and it's berserk Boomers.", + "posterPath": "/rnF1zD3GP3L4DDoLIshUEH0JYHJ.jpg", + "backdropPath": "/6LrQ2hzUzbKT14G1rJB63fJdCAT.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1987-02-25", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 7.01, + "voteCount": 50, + "popularity": 2.9604 + }, + { + "id": 66390, + "title": "Gangsta.", + "originalTitle": "GANGSTA.", + "overview": "In the crime-ridden, mafia-governed city of Ergastulum, Worick and Nicolas are two “handymen” known as “Benriya” who would take any dirty job from either police or mafia, for a good price. After an assignment from police the two met and later joined by Alex, a former prostitute who got interested in the mysterious background of the team, in particular of Nicolas’ abilities.", + "posterPath": "/ly43ajQpjpYYnx3w5BgFtcflUTD.jpg", + "backdropPath": "/oSW554Z4tu8hk9j6bYFMx2nq0mb.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 16, + 80 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Animation", + "Crime" + ], + "releaseDate": "2015-07-02", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.212, + "voteCount": 118, + "popularity": 2.9592 + }, + { + "id": 90451, + "title": "Hungry Heart: Wild Striker", + "originalTitle": "ハングリーハート WILD STRIKER", + "overview": "Kyosuke Kano has lived under the shadow of his successful brother Seisuke all his life who is a professional soccer player.", + "posterPath": "/IFYUFTK4hsmvL6wsdHwJSMFvVs.jpg", + "backdropPath": "/vho9YfxltSqUUg0PgxbExB3kLiU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2002-09-11", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.558, + "voteCount": 26, + "popularity": 2.9575 + }, + { + "id": 70590, + "title": "Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side: Sword Oratoria", + "originalTitle": "ソード・オラトリア ダンジョンに出会いを求めるのは間違っているだろうか外伝", + "overview": "After having descended upon this world, the gods have created guilds where adventurers can test their mettle. These guilds, known as \"familia,\" grant adventurers the chance to explore, gather, hunt, or simply enjoy themselves.\n\nThe Sword Princess, Ais Wallenstein, and the novice mage, Lefiya Viridis, are members of the Loki Familia, who are experts at monster hunting. With the rest of their group, they journey to the tower of Babel in hopes of exploring the dungeon underneath. Home to powerful monsters, the dungeon will fulfill Ais's desire to master her sword skills, while bringing Lefiya closer to her dream of succeeding Riveria Ljos Alf, vice-captain of the Loki Familia, as the most powerful mage in the land.", + "posterPath": "/mLRmZ83ab7EPDY0mdUVuDCk3USU.jpg", + "backdropPath": "/ard57H2UJfk9Ls50rib5lKHBiK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2017-04-15", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 97, + "popularity": 2.9519 + }, + { + "id": 46128, + "title": "Fresh Precure!", + "originalTitle": "フレッシュプリキュア!", + "overview": "Love Momozono is a 14-year-old student at Yotsuba Junior Highschool that tends to care more for others than for herself. One day she visits a show of the famous dance unit \"Trinity\" and decides to become a dancer, too. On the same event, subordinates of the Labyrinth Kingdom show up who want to collect the unhappiness of the audience. Love gets the power to change into Cure Peach and fights them. Soon after, she is joined by her good friends Miki, who is Cure Berry, and Inori, who becomes Cure Pine.", + "posterPath": "/m27Nr8uYDnO02RcXkKmTiFKaUxQ.jpg", + "backdropPath": "/f80Mr6SPvt4f4MsAloO84lqKYbp.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762, + 10751, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-02-01", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 12, + "popularity": 2.9496 + }, + { + "id": 22758, + "title": "A Little Snow Fairy Sugar", + "originalTitle": "ちっちゃな雪使いシュガー", + "overview": "The story is based around 11-year-old Saga Bergman, a young girl in a small German town called Muhlenberg (based on real town of Rothenburg ob der Tauber). Saga lives with her grandmother Regina and works in a coffee shop when not in school. Saga is extremely structured and plans her life down to the minute. One day, she notices a tiny creature in a fluffy outfit that appears to be starving. She offers it a waffle, which helps revive the tiny creature. Saga learns that this tiny creature is Sugar, an apprentice season fairy. Sugar explains that season fairies alter the weather by playing a magical musical instrument, and her specialty is snow, which she creates by playing the piccolo. Sugar is joined by two more apprentice season fairies, Salt, an outgoing male fairy who plays the trumpet to make the sun shine more brightly, and Pepper, a quiet and caring female fairy who plays the harp to make the wind blow.", + "posterPath": "/6dmtivFKKr5tXpgR7lnK3RAjFSp.jpg", + "backdropPath": "/2HfQb8JmsZvQHYoVPXv6szHLyf1.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2001-10-02", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 6, + "popularity": 2.9479 + }, + { + "id": 65210, + "title": "BBK/BRNK", + "originalTitle": "ブブキ・ブランキ", + "overview": "It’s been ten years since Azuma Kazuki has been in Japan, and upon his arrival he is taken prisoner by a group of armed men. Azuma is saved by his childhood friend, Kogane Asabuki, thanks to a living weapon she wields on her right hand, known as a Bubuki. Learning about these weapons, Azuma becomes a Bubuki wielder himself and sets out on a journey.", + "posterPath": "/3Mi3N7l5X9Rm5U1lUzC4vD526zG.jpg", + "backdropPath": "/2fs9w915mmNAtAoYeS9XpWaz048.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.875, + "voteCount": 20, + "popularity": 2.9477 + }, + { + "id": 42417, + "title": "Hanasaku Iroha: Blossoms for Tomorrow", + "originalTitle": "花咲くいろは", + "overview": "Ohana is sent off to live with her grandmother, who owns the hot spring inn. Upon arriving, she is put to work at the inn. Thrust into a life where the customers always come first, she struggles to find her place and fit in with her fellow coworkers.", + "posterPath": "/hDWFlnPiN1EdKZDj4FMfjIwVJ5E.jpg", + "backdropPath": "/lahbIYAN7SNuUh0QMzHkcBoZLwH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 30, + "popularity": 2.9462 + }, + { + "id": 127327, + "title": "Miss Shachiku and the Little Baby Ghost", + "originalTitle": "社畜さんは幼女幽霊に癒されたい。", + "overview": "From sunup to sundown, Fushihara-san works ’round the clock. She spends so much time there that even the ghosts worry about her well-being! One night, Fushihara-san was working late as usual when a little ghost girl whispered to her, “Leave now”—an encounter that would change her life forever. Be healed by the heartwarming daily life of the cute little ghost and Fushihara-san!", + "posterPath": "/3RcqAojHIVHXfdhW3mqHBNlfEy7.jpg", + "backdropPath": "/9mkJbteNh8qo3U0Ldw4iQRnuDL4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 2.9436 + }, + { + "id": 235978, + "title": "Tadaima, Okaeri", + "originalTitle": "ただいま、おかえり", + "overview": "Masaki struggles with self-worth as an omega parent, but just as life feels stable, the past comes knocking with uneasy motives.", + "posterPath": "/hEpXSDGopY61A13lGfgZQVqkoLB.jpg", + "backdropPath": "/8HJs18yKHPDSjkWeFSCx17LOjtd.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2024-04-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 24, + "popularity": 2.9379 + }, + { + "id": 20450, + "title": "Witchblade", + "originalTitle": "ウィッチブレイド", + "overview": "Masane Amaha and her daughter Rihoko are on the run from a government child welfare agency that wants to take Rihoko away from her mother. They are caught and Rihoko is taken away. Meanwhile, Masane is attacked by an advanced weapon that can disguise itself as a human being. When faced with the danger, a strange light emits from her wrist and she transforms into a powerful being. She becomes involved in a power struggle between powerful organizations, with her at the center of their attention because she holds the greatest power of them all, the legendary Witchblade.", + "posterPath": "/1IQVeZqeEZSfgPVOafc4ld0kgOX.jpg", + "backdropPath": "/8HdvpqTBhSaU9Kil2O7i34U1XLn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10765, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 138, + "popularity": 2.9335 + }, + { + "id": 112163, + "title": "High-Rise Invasion", + "originalTitle": "天空侵犯", + "overview": "High-school girl Yuri suddenly finds herself on the rooftop of a high-rise building. She's trapped in a bizarre world surrounded by skyscrapers, where a masked man cracked open a man's head with an axe before her eyes. Finding a way to survive this bizarre world, find her beloved brother, and escape becomes her top priority, but she is beset by danger not just from the mysterious Masks, which possess both inhuman strength and cruelty, but other survivors turned cruel or desparate by the insanity of the high-rise world.", + "posterPath": "/rNmZKDZWysmFtTP23ruRZF9relM.jpg", + "backdropPath": "/cT0o6RFi36TkMFG1wWyTyGb2jrR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2021-02-25", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.234, + "voteCount": 725, + "popularity": 2.9331 + }, + { + "id": 259786, + "title": "Good Bye, Dragon Life", + "originalTitle": "さようなら竜生、こんにちは人生", + "overview": "Long ago, the most ancient of divine dragons was slain by a human. The mighty dragon accepted its death when suddenly, it was reborn as Dolan, a man who lives in a quiet village. While spending another peaceful day toiling in the fields, he meets Celina, a half-human, half-snake creature looking for a partner. The unlikely duo become friends, but challenges lie ahead that threaten their new bond.", + "posterPath": "/n15iwXmYASiAEWUvkfoVKEIoqWq.jpg", + "backdropPath": "/yK6dJ0Z28R9PloEAtxltealhNa2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-10-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 25, + "popularity": 2.9309 + }, + { + "id": 8996, + "title": "Fighting General Daimos", + "originalTitle": "闘将ダイモス", + "overview": "The survivors of Planet Baam and the Earth people want to sign a peace treaty, so General Lion and the renowned scientist Dr. Ryūzaki head out to have a reunion. But Lion dies in odd circumstances, his vengeful son Richter kills Dr. Ryūzaki—and war starts. Dr. Ryūzaki's son, young martial artist Kazuya, decides to defend Earth with Dr. Izumi's powerful robot: Tōshō Daimos...", + "posterPath": "/7zBSFAORAhKYbcK6g5R8yPZaKCN.jpg", + "backdropPath": "/7pGeH3SfoZ5uKP2gmIOGhiSbRoy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1978-04-01", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 2.9309 + }, + { + "id": 67346, + "title": "Amanchu!", + "originalTitle": "あまんちゅ!", + "overview": "The hyperactive teenage scuba diver, Hikari Kohinata, lives in a small town near the sea. On her first day of high school she meets the shy transfer student, Futaba Oki, who is struggling to find a place after moving away from Tokyo. Hikari takes the lead, dragging Futaba into her hijinx, and the two soon become close friends", + "posterPath": "/aAH7MHYqmBujlTfKbMwPGsbtMc5.jpg", + "backdropPath": "/f4rnNIACmQTTsPAFRNvpeNZzEbk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 15, + "popularity": 2.9281 + }, + { + "id": 13265, + "title": "Den-noh Coil", + "originalTitle": "電脳コイル", + "overview": "Den-noh Coil, Coil — A Circle of Children, is a Japanese science fiction anime television series depicting a near future where semi-immersive augmented reality technology has just begun to enter the mainstream. The series takes place in the fictional city of Daikoku, a hotbed of AR development with an emerging city-wide virtual infrastructure. It follows a group of children as they use AR glasses to unravel the mysteries of the half real, half Internet city, using a variety of illegal software tools, techniques, and virtual pets to manipulate the digital landscape.\n\nDen-noh Coil, in development for over a decade, is the series director debut of Japanese animator Mitsuo Iso. It premiered on NHK Educational TV on May 12, 2007. Due to the animators involved in its production and its unusually high-profile television broadcast time slot, Den-noh Coil was highly anticipated.", + "posterPath": "/4bl5XmT52fdIlIQ5nkuP0LeFQLH.jpg", + "backdropPath": "/on7IJBBipns053ZCnnL8SvtF5aD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-05-12", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.343, + "voteCount": 35, + "popularity": 2.925 + }, + { + "id": 217755, + "title": "The Vexations of a Shut-In Vampire Princess", + "originalTitle": "ひきこまり吸血姫の悶々", + "overview": "Shut-in vampire Terakomari, or Komari for short, awakens from her slumber to find she's been promoted to a commander of the army! The thing is, though, her new squad has a reputation for being violently insubordinate. And although Komari was born to a prestigious vampire family, her hatred of blood has made her the picture of mediocrity-scrawny, uncoordinated, and inept at magic. With the odds stacked against her, will the help of her trusty maid be enough for this recluse to blunder her way to success?", + "posterPath": "/9IfQxH5ORqYbsxtCNcUVCwID8Cg.jpg", + "backdropPath": "/4P94kdc9R4MPaALuABpmi1AK7eY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.621, + "voteCount": 29, + "popularity": 2.9238 + }, + { + "id": 201889, + "title": "Kubo Won't Let Me Be Invisible", + "originalTitle": "久保さんは僕を許さない", + "overview": "First year high schooler Junta Shiraishi is a mob character who goes unnoticed even when he's standing right next to you. But his classmate, \"heroine-level beauty\" Kubo, always notices him and is there to tease him. Anyone can become special to someone, but it might be a little too early to call these feelings \"love.\" Perhaps this story is still two-steps from being a romantic comedy--let's call it a sweet comedy where a background character becomes visible!", + "posterPath": "/kQBRkfuByQVww9R51SeGsgDOIat.jpg", + "backdropPath": "/78Q6wh406ISbS613KBlPb2Umgld.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-01-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 30, + "popularity": 2.9228 + }, + { + "id": 55011, + "title": "Gargantia on the Verdurous Planet", + "originalTitle": "翠星のガルガンティア", + "overview": "While fighting an intense inter-galactic war, a mecha pilot is accidentally warped into a space-time neither he nor his computer recognize. After waking up from a long-time hibernation, he finds himself trapped on a planet, with human residents talking in an unknown form of language, using inferior technologies, and - most shocking to him - naturally breathable air.", + "posterPath": "/z3E4DPo520fO7QQm53shMLVxsb2.jpg", + "backdropPath": "/fyyJSBWbBZT1faAQ2djemYziJYk.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-04-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 71, + "popularity": 2.92 + }, + { + "id": 238846, + "title": "Brave Bang Bravern!", + "originalTitle": "勇気爆発バーンブレイバーン", + "overview": "In the future, humanity wages war with giant humanoid weapons called Titanostrides. Isami Ao of the Japan Ground Self-Defense Force and Lewis Smith of the United States Marine Corps meet on the battlefield in Oahu, Hawaii. An enemy aircraft attacks, scattering their forces. To survive the battle and save their friends, unlikely comrades must find the courage to defeat this new threat.", + "posterPath": "/l1VNaNW6myz6jNUuqyF6GI0bNZk.jpg", + "backdropPath": "/yhU9HHf9sZIJpCycqHQPyjJ7LMx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 8, + "popularity": 2.9189 + }, + { + "id": 48623, + "title": "Hakkenden: Eight Dogs of the East", + "originalTitle": "八犬伝 ―東方八犬異聞―", + "overview": "When their village was wiped out five years ago, only Shino Inuzuka, Sosuke Inukawa, and the girl Hamaji, who was raised as if she were their sister, survived. And both men inexplicably have the same peony-shaped birthmark. Genpachi Inukai and Kobungo Inuta were raised hundreds of miles away as foster brothers, but they too share the same birthmark. When they went north as part of the army three years ago, they went to confront demons and came back forever transformed. Now the Imperial Church has come for Shino and Sosuke and they must find eight mystical gems and their owners or face a fate worse than death at the hands of the Church.", + "posterPath": "/if4Nm7UHlS8MaGDdEWDrmCJLP7A.jpg", + "backdropPath": "/q3vBYGyn7wLhblNaKcLA0n3UQGN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2013-01-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 17, + "popularity": 2.9184 + }, + { + "id": 62568, + "title": "Yamada-kun and the Seven Witches", + "originalTitle": "山田くんと7人の魔女", + "overview": "One day, high-school boy Yamada bumps into the beautiful girl Shiraishi on the stairs (literally), and their lips touch as they fall. When they regain their wits, they realize that they have swapped bodies. As time progresses, the two realize that this is not the only mysterious happening in the school.", + "posterPath": "/y7j7cptjQvaMX2l12EkatqC54Q9.jpg", + "backdropPath": "/udCwCPDlWTfKDxXIqMNqxXcibfu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "2015-04-12", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 245, + "popularity": 2.9181 + }, + { + "id": 17017, + "title": "The Legend of Zorro", + "originalTitle": "怪傑ゾロ", + "overview": "Diego Vega returns from his study trip to discover his homeland is under the army's dictatorship. Diego, refusing to watch idly, disguises himself as Zorro to protect the weak and oppressed. Diego is not a coward but he is unable to win the affections of his sweetheart, Lolita, who is attracted to other more noble men. Diego serenades Lolita as Zorro and fights the evils of his homeland, hoping to capture her heart.", + "posterPath": "/gNxDr0pGaYqc1JllTAPXJTvTZUg.jpg", + "backdropPath": "/gbMFTSfDEeSJE1zCfyR6Ra4aJkN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1996-04-05", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 24, + "popularity": 2.913 + }, + { + "id": 91026, + "title": "After School Dice Club", + "originalTitle": "放課後さいころ倶楽部", + "overview": "A story about girls playing board games after school!\n\nKyoto in Spring. Aya is a high school girl who's just moved to a new town. Miki is her shy classmate, and her first friend. One day after school Aya and Miki follow the committee president Midori to a speciality board games store. The Dice Club!! Without thinking they try out a German board game together.\n\nThese girls, who are searching for fun, soon fall into the exciting world of games!", + "posterPath": "/2i8kS6Lyy3PX6bkQWPhKwMx0xvX.jpg", + "backdropPath": "/u1rzKbZBkYAR7cpal8UZDAug418.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-10-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 14, + "popularity": 2.9125 + }, + { + "id": 94359, + "title": "Adachi and Shimamura", + "originalTitle": "安達としまむら", + "overview": "Adachi spends her school days skipping class until she meets fellow delinquent Shimamura and the two become fast friends. Cutting class together deepens their friendship but soon unexpected emotions blossom. As awkwardness and confusion settle in, the two girls travel this sea of emotions without a paddle as they learn about each other’s feelings.", + "posterPath": "/sh5yedKXpngurKN0Do4ltT3r0KK.jpg", + "backdropPath": "/zOfOs7a9Kal6TVvgf8UdtdozckE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2020-10-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.777, + "voteCount": 47, + "popularity": 2.9108 + }, + { + "id": 261148, + "title": "The Red Ranger Becomes an Adventurer in Another World", + "originalTitle": "戦隊レッド 異世界で冒険者になる", + "overview": "Togo Asagaki was the Red Ranger in a heroic Ranger squad. During their final battle against an evil organization, he gave his life to guarantee their triumph. But fate had other plans, and he found himself reborn in an entirely different world. Embracing his new role as an adventurer, he transforms into Kizuna Red and continues his pursuit of justice, helping those in need.", + "posterPath": "/ZkvF2ASZD3gLDnn2ZJ7L7RGSBc.jpg", + "backdropPath": "/lzDymuPd9IGvaM6LIdiTIdrtDn8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-12", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 26, + "popularity": 2.9095 + }, + { + "id": 21734, + "title": "Super Dimension Fortress Macross", + "originalTitle": "超時空要塞マクロス", + "overview": "After a mysterious spaceship crashes on Earth a fleet of spaceships belonging to a race of aliens known as the Zentradi descend upon Earth sparking an intergalactic war.", + "posterPath": "/15JJd47Wy6enQS3roKSdK1ouce7.jpg", + "backdropPath": "/yiZRga7KXQvjPLuExLNlfJvkrel.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "1982-10-03", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 54, + "popularity": 2.9062 + }, + { + "id": 104032, + "title": "She Professed Herself Pupil of the Wise Man", + "originalTitle": "賢者の弟子を名乗る賢者", + "overview": "Kagami Sakamori was one of the top players in the VRMMO Ark Earth Online as Danblf, a veteran summoner with the gravitas to match his elite status. When he falls asleep playing one day, he's transported to a world where the game is reality—but instead of his all-powerful avatar, he's stuck in the body of a cute young girl! He can't let anyone know that this little cutie is really Danblf, so he takes the name “Mira” and claims to be Danblf's disciple. If this gets out, he'll never live it down!", + "posterPath": "/j8QFzP0Jh80hYZtwI6UF8R81Ahw.jpg", + "backdropPath": "/ynDM18sP3GKRpyPGppjtHe70GFU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-12", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 32, + "popularity": 2.906 + }, + { + "id": 77701, + "title": "PERSONA5 the Animation", + "originalTitle": "PERSONA5 the Animation", + "overview": "Ren Amamiya is about to enter his second year after transferring to Shujin Academy in Tokyo. Following a particular incident, his Persona awakens, and together with his friends, they form the “Phantom Thieves of Hearts” to reform hearts of corrupt adults by stealing the source of their distorted desires. Meanwhile, bizarre and inexplicable crimes have been popping up one after another… Living an ordinary high school life in Tokyo during the day, the group maneuvers the metropolitan city as Phantom Thieves after hours. Let the curtain rise for this grand, picaresque story!", + "posterPath": "/kGFHVTE0mYXH3cohjWRHkObkwFS.jpg", + "backdropPath": "/2nQJ07Fe53JKqzvebE9PpPDgkIi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 18, + 10765, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Drama", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 92, + "popularity": 2.9051 + }, + { + "id": 75911, + "title": "Transformers: Energon", + "originalTitle": "トランスフォーマー スーパーリンク", + "overview": "The show takes place ten years after the finale of Armada, opening in an age of peace on Cybertron and Earth which is destined not to last long. Energon pits the Autobots against an array of villains: the reborn Megatron , the barely functional Unicron, and the mysterious Alpha Q and his Terrorcon minions.", + "posterPath": "/bNoznz2CDSWbarJ1NuT0m6zU2SP.jpg", + "backdropPath": "/hp8sSFPnh8n0BPkGRlRUzlsEUcb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids" + ], + "releaseDate": "2004-01-09", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 17, + "popularity": 2.9042 + }, + { + "id": 63525, + "title": "Hyperdimension Neptunia", + "originalTitle": "超次元ゲイム ネプテューヌ The Animation", + "overview": "This is Gameindustri. Beings called Goddesses rule the countries of this unreal world. The four goddesses govern four states: Planeptune, Lastation, Lowee and Leanbox. For many long years these countries fought each other over the Share, the source of the Goddesses' power. However, fearful that the conflict would pointlessly erode their strength, the goddesses signed a Friendship Treaty forbidding them from taking the Share by force. Under the treaty, the Goddesses and their younger sisters took a step forward to a new stage in their relations. It is the dawn of a new, dynamic era marked occasionally by shared laughter, disputes as well as cooperation. But what does the future hold in store for Gameindustri...?", + "posterPath": "/rDM3a18dtkJjg0ReuQy2bO1zcho.jpg", + "backdropPath": "/vkQwvT3VoN14LVabCkjUNxliVhW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-07-12", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 22, + "popularity": 2.9034 + }, + { + "id": 20214, + "title": "The Jungle Book: The Adventures of Mowgli", + "originalTitle": "ジャングルブック・少年モーグリ", + "overview": "Jungle Book Shōnen Mowgli is an anime adaptation of Rudyard Kipling's original collection of stories, The Jungle Book. It aired in 1989, and consists of a total of 52 episodes.\n\nThe series, a compromise between the original Mowgli stories and the Walt Disney version, received international acclaim and was aired in different countries around the world.", + "posterPath": "/zXKAeQfnzvUdcCtN4gsyux4xvj9.jpg", + "backdropPath": "/eXU5ujVMs2nuN9CKhyEMZ7iAKxE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids" + ], + "releaseDate": "1989-10-02", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 30, + "popularity": 2.9022 + }, + { + "id": 90999, + "title": "Science Fell in Love, So I Tried to Prove It", + "originalTitle": "理系が恋に落ちたので証明してみた。", + "overview": "Shinya Yukimura and Ayame Himuro are two scientists that want to find out if love can be solved by a scientific theory. These two scientists also have feelings for each other and want to be able to solve their feelings through similar theoretical facts. With this perfect opportunity, these scientists will attempt to solve the theory of the love they express for each other.", + "posterPath": "/njxYwSx92QS6l5n7L1KWVDQoTqD.jpg", + "backdropPath": "/iCojH97EeZFmwLdq5mbtjrJyiS1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.589, + "voteCount": 123, + "popularity": 2.9015 + }, + { + "id": 215401, + "title": "Bullet Bullet", + "originalTitle": "BULLET/BULLET", + "overview": "In the near future, civilization has collapsed. Gear works in a junk shop, retrieving stolen goods alongside Qu-0213 and White Bear. After accepting a mysterious request to steal an important item, they soon find themselves hunted by deadly assassins.", + "posterPath": "/pCeMlilk1GKcbX8BWvCbRF0vd1U.jpg", + "backdropPath": "/kjJdQ3yeUWvGSf6U0rKGJAhsGzr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-16", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.833, + "voteCount": 6, + "popularity": 2.9012 + }, + { + "id": 87432, + "title": "We Never Learn: BOKUBEN", + "originalTitle": "ぼくたちは勉強ができない", + "overview": "Nariyuki Yuiga is in his last and most painful year of high school. In order to gain the “special VIP recommendation” which would grant him a full scholarship to college, he must now tutor his classmates as they struggle to prepare for entrance exams. Among his pupils are “the sleeping beauty of the literary forest,” Fumino Furuhashi, and \"the Thumbelina supercomputer,\" Rizu Ogata–two of the most beautiful super-geniuses at the school! While these two were thought to be academically flawless, it turns out that they’re completely clueless outside of their pet subjects…!?", + "posterPath": "/7WJCB8swbMYhhdOIWh1dz96AioW.jpg", + "backdropPath": "/9k55akid147wjGkntRlmSZZRjtg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 253, + "popularity": 2.9008 + }, + { + "id": 115785, + "title": "Chi's Sweet Adventure", + "originalTitle": "こねこのチー", + "overview": "Chi is a sweet playful kitten who’s always full of energy. She lives with the loving Yamada family. Her daily routine is to drink milk, take naps, and go walk in the park.", + "posterPath": "/4YgPy8H4YFxSYDmxNrFKndU2MAS.jpg", + "backdropPath": "/3awGkXosXdcfvx5CTbqNpdGCYc6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "2016-10-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 2.8984 + }, + { + "id": 72425, + "title": "Restaurant to Another World", + "originalTitle": "異世界食堂", + "overview": "There is a certain restaurant in the first basement level of a multi-tenant building in one corner of a shopping street near the office district. The historical restaurant, marked by a sign with a picture of a cat, is called \"Western Cuisine Nekoya.\" This restaurant looks completely normal through the week, but on Saturdays, it opens in secret exclusively to some very unique guests. During these hours, doors in various areas of a parallel world open to allow customers of many different races and cultures into the restaurant.", + "posterPath": "/pUP09fJ5IVUnUBKr538pXySzvYk.jpg", + "backdropPath": "/kjb16PLghkbRKpIkv2MERBq8sbe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 55, + "popularity": 2.8952 + }, + { + "id": 26209, + "title": "Crest of the Stars", + "originalTitle": "星界の紋章", + "overview": "Jinto Lin's life changes forever when the Humankind Empire Abh takes over his home planet of Martine without firing a single shot. He is soon sent off to study the Abh language and culture and to prepare himself for his future as a nobleman - a future he never dreamed of. Or wanted. Now, Jinto is entering the next phase of his training, and he is about to meet his first Abh, the lovely Lafiel. But Jinto is about to learn that she is more than she appears to be. And together they will have to fight for their very lives.", + "posterPath": "/bimOHbtqCjwpB2Dy6EXbcueg2td.jpg", + "backdropPath": "/9Or0JCa6D6H9gbCwonGja1fBPgh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1999-01-02", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.077, + "voteCount": 13, + "popularity": 2.895 + }, + { + "id": 46374, + "title": "Katanagatari", + "originalTitle": "刀語", + "overview": "The legendary swordsmith Kiki Shikizaki created 1,000 swords in his career. The more of the swords a country owns, the higher its chances are at winning a war. When the shogun emerged victorious, he collected 988 swords, but these were merely the “practice pieces”. The last twelve swords were the crowning achievements of Kiki’s career. Each one of them is so powerful that a single man could defeat an army with it.\n\nTogame, the shogun’s strategist, gets the order to collect these swords. At first she hired a ninja, but each of the swords’ value is so high that the entire ninja clan went rogue once they got hold of one. She then put her trust in another warrior, but he kept the sword for himself. Her final hope now is Shichika, the seventh and last student of the Kyotoryuu School.", + "posterPath": "/ii4D1K3XJvOLQuaYcP0Oh3mL6JC.jpg", + "backdropPath": "/aMqe9Ne9Rx3HZa3sdquqWnTmAQL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2010-01-25", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 55, + "popularity": 2.8946 + }, + { + "id": 36243, + "title": "The Tatami Galaxy", + "originalTitle": "四畳半神話大系", + "overview": "When a college dropout stops for a late night bite at a mysterious ramen stand, he crosses paths with a self-proclaimed deity of matrimony. This bizarre meeting sends the young man hurtling through a horrifying flashback to his not-so-glorious college days when the influence of a cruel new friend turned him from a hopeless romantic into a mischievous “black cupid.”", + "posterPath": "/lPvrDKvfwjqCp6fp6aCpLkpxyi6.jpg", + "backdropPath": "/xF2v9Piv8HidnAH6uXwehz0efvp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-04-23", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 130, + "popularity": 2.8946 + }, + { + "id": 103927, + "title": "Japan Animator Expo", + "originalTitle": "日本アニメ(ーター)見本市", + "overview": "The short film series \"Japan Anima(tor)'s Exhibition\" presented by Studio Khara and Dwango Original projects, spin-off projects, promotional films, Music PV, and VJ Films etc... Various omnibus animations produced with love and energy, regardless of any genres. The digital distribution anime series bring opportunities for project development, R&D, human resources development, and free production under limited period and budget, to explore the possibilities of future film production.", + "posterPath": "/c0hdu4gPQPiyK6y2N6mQONHUecM.jpg", + "backdropPath": "/jQKbFVZJwsVTW6Kz7j23xpa11Ft.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2014-11-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 7, + "popularity": 2.8935 + }, + { + "id": 34061, + "title": "Chrono Crusade", + "originalTitle": "クロノクルセイド", + "overview": "Set in New York during the 1920s, Chrono Crusade follows the story of Rosette Christopher, and her demon partner Chrono. As members of the Magdalene Order, they travel around the country eliminating demonic threats to society, while Rosette searches for her lost brother Joshua.", + "posterPath": "/gEmUOPRBvhtZG9v8jh5XuyYjmk.jpg", + "backdropPath": "/A4kINEPmKCUsTCUtdxCLZkPD0gl.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2003-11-25", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 84, + "popularity": 2.8928 + }, + { + "id": 21750, + "title": "Eden of the East", + "originalTitle": "東のエデン", + "overview": "When Saki Morimi gets into trouble with the police while in Washington D.C., she is helped by a Japanese man who calls himself, Akira Takizawa. Akira has only two things, a gun and a cell phone loaded with 8.2 billion yen in digital money.", + "posterPath": "/z7fWrBzCwd5DRPvNh1tr7yaQQP8.jpg", + "backdropPath": "/5yOxRuPljFOM8pPK7MoppZtNmEJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 35, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2009-04-09", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 113, + "popularity": 2.8894 + }, + { + "id": 155942, + "title": "Handyman Saitou in Another World", + "originalTitle": "便利屋斎藤さん、異世界に行く", + "overview": "Handyman Saito has never been anyone special. All his life, he’s had average grades, ordinary athletic skill, a commonplace job… But his unremarkable path takes a turn when he wakes up in another world. Here, warriors, wizards, and elves accompany him on quests delving deep into dungeons, and Saito realizes for the first time what it’s like to be needed. After all, who other than the handyman could be trusted to open locked treasure chests or repair his allies’ equipment? Beginning with a simple “thank you,” this is the story of an ordinary person’s fulfilling life.", + "posterPath": "/xp404PMU2cGsODMTIkkUizbYhcm.jpg", + "backdropPath": "/6c1tMSLoWmy0rPic1j0cihExfmP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.94, + "voteCount": 50, + "popularity": 2.889 + }, + { + "id": 213181, + "title": "Hokkaido Gals Are Super Adorable!", + "originalTitle": "道産子ギャルはなまらめんこい", + "overview": "Snowflakes aren’t the only things dropping in Hokkaido—so are jaws, thanks to the super adorable gals who are turning the icy north into a hotbed of fashion and fun. Brace yourself for a winter storm of laughs, love, and killer outfits as these gals prove that being cute is an all-season affair. Here, frostbite meets fashionista!", + "posterPath": "/5PCVM6o2OvXFrfJXOrlRQGBLB4x.jpg", + "backdropPath": "/1LjcJ7Ct6AU1uvnHJ8894GZ4p91.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-01-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.142, + "voteCount": 102, + "popularity": 2.8889 + }, + { + "id": 75975, + "title": "Tada Never Falls in Love", + "originalTitle": "多田くんは恋をしない", + "overview": "Mitsuyoshi Tada, a boy who has never known love, is taking pictures of the cherry blossoms in full bloom when he meets Teresa Wagner, a transfer student from Luxembourg. Upon arriving in Japan, she got lost, separated from her travel companion. Mitsuyoshi helps her and brings her to his grandfather's coffee shop.", + "posterPath": "/3BazV6nF9Cr3vVepAhWCFMp12b4.jpg", + "backdropPath": "/9PosEjEkcSt5jO0rRDgQ0iUcMIo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-04-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.438, + "voteCount": 88, + "popularity": 2.8886 + }, + { + "id": 23004, + "title": "Captain Future", + "originalTitle": "キャプテンフューチャー", + "overview": "Curtis Newton, aka Captain Future, is an orphan. His parents died in their artificial satellite while he was an infant. His father was a scientist, who has abandoned earth for the satellite to dedicate his life for science along with his aging friend the genius Dr Simon Wright. Wright senses his death, and decides to implant his brain in a mechanical container. They both manufactured a superior robot and an android. Captain future dedicated his life to fight evil along with his three men, the brain, android, and robot.", + "posterPath": "/o69Gvj0iKzGr7AQt8ilkX7zHvHf.jpg", + "backdropPath": "/ikfli8KPDNaIrJZm3IXF4jsqda4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1978-11-07", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 8.08, + "voteCount": 106, + "popularity": 2.8856 + }, + { + "id": 85368, + "title": "Lord El-Melloi II's Case Files {Rail Zeppelin} Grace note", + "originalTitle": "ロード・エルメロイⅡ世の事件簿 -魔眼蒐集列車 Grace note-", + "overview": "Waver Velvet – The boy who fought side by side with the King of Conquerors - Iskandar - during the Fourth Holy Grail War in Fate/Zero. Time has passed, and the mature Waver has now adopted the name of Lord El-Melloi. As Lord El-Melloi II, he challenges numerous magical and mystical cases in the Clock Tower, the mecca of all mages...", + "posterPath": "/kKtYZGaIFuG7vztNdxkoBq324s0.jpg", + "backdropPath": "/3jWeadSVRZOe6mjcA4PkcaL4gFb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 33, + "popularity": 2.8842 + }, + { + "id": 93483, + "title": "Daa! Daa! Daa! UFO Baby", + "originalTitle": "だぁ! だぁ! だぁ!", + "overview": "Daa! Daa! Daa! UFO Baby is a Japanese children's animated television series produced by J.C.Staff, Directed by Hiroaki Sakurai, and was aired on NHK-BS2 from March 28, 2000 to February 26, 2002.", + "posterPath": "/s9SmF9cEg8HATdjGv56ysy4PgIe.jpg", + "backdropPath": "/1lIwuFEKNiykZwxKbGjalCq8GSL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-03-28", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 59, + "popularity": 2.8835 + }, + { + "id": 61421, + "title": "Terror in Resonance", + "originalTitle": "残響のテロル", + "overview": "In an alternate version of the present, Tokyo has been decimated by a shocking terrorist attack, and the only hint to the identity of the culprit is a bizarre video uploaded to the internet. The police, baffled by this cryptic clue, are powerless to stop the paranoia spreading across the population. While the world searches for a criminal mastermind to blame for this tragedy, two mysterious children - children who shouldn't even exist - masterfully carry out their heinous plan. Cursed to walk through this world with the names Nine and Twelve, the two combine to form \"Sphinx,\" a clandestine entity determine to wake the people from their slumber - and pull the trigger on this world.", + "posterPath": "/y8zPuRD9jRkSCBhmZOJFV1X87nA.jpg", + "backdropPath": "/lt5rC0GcXVmHEjXzRruNIdbca8B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2014-07-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.784, + "voteCount": 424, + "popularity": 2.8827 + }, + { + "id": 224207, + "title": "BanG Dream! It's MyGO!!!!!", + "originalTitle": "BanG Dream! It's MyGO!!!!!", + "overview": "The best way to fit in at a new school? Start a band! Anon has just transferred to Haneoka Girls’ Academy where girl bands are all the rage. But she started school late, so there aren’t many girls left to recruit. Then she meets her first friend and Haneoka’s misfit, Tomori, who’s hesitant to join. Still, Anon is determined to persuade Tomori and experience the true power of friendship and music.", + "posterPath": "/qXqu07NmCP1Ub49VUXZDsBLfwol.jpg", + "backdropPath": "/siwWay4juRsUCCYGEAaZIHhkBr6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-06-29", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.97, + "voteCount": 33, + "popularity": 2.8821 + }, + { + "id": 68099, + "title": "Digimon Universe: App Monsters", + "originalTitle": "デジモンユニバース アプリモンスターズ:アプモン", + "overview": "Everyone in the world uses smartphone apps, but within them lurks unknown creatures called App Monsters or Appmon. The Appmon are AI lifeforms with the ability to think and act, and exist in the boundary between the human world and the digital world. In the vast sea of the internet, a villainous AI known as Leviathan takes control of the Appmon with the L-virus and begins hacking every system, thus gaining control of the human world from the world of the net. Haru Shinkai is led to acquire the Appli Drive, and uses it to materialize Gatchmon, a search app monster.", + "posterPath": "/ka7l04z9O9Jghp0RAsBOYLimil4.jpg", + "backdropPath": "/bdjzagcwi9ukoH5Soqym2HCl9xQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Kids" + ], + "releaseDate": "2016-10-01", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 16, + "popularity": 2.8807 + }, + { + "id": 39657, + "title": "Penguindrum", + "originalTitle": "輪るピングドラム", + "overview": "A terminally ill girl named Himari Takakura is miraculously saved from death by a strange spirit who resides in a penguin-shaped hat. However, in exchange for extending her life, the spirit tasks Himari's brothers, Kanba and Shōma, to seek out an elusive item known as the Penguin Drum with assistance from a trio of strange penguins.", + "posterPath": "/xXbteCvDq4DaRoNasfvBPxKVvhr.jpg", + "backdropPath": "/XxXaxAhXp9eQRMaF9Rta0e5Z1N.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 16, + 18, + 35, + 80, + 10765 + ], + "genres": [ + "Mystery", + "Animation", + "Drama", + "Comedy", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-07-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 86, + "popularity": 2.8802 + }, + { + "id": 45213, + "title": "Usagi Drop", + "originalTitle": "うさぎドロップ", + "overview": "By force of circumstances, a 30-year-old single man with a full-time job suddenly starts raising a 6-year-old girl. While running each other ragged, the two of them gradually grow into a \"family\".", + "posterPath": "/o1sIk7Bn5aRPoKEAG4qf9eRwD8i.jpg", + "backdropPath": "/kREWBfkeUvDHiYnL9jriXcFV2rd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2011-07-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 184, + "popularity": 2.878 + }, + { + "id": 30386, + "title": "B'T X", + "originalTitle": "B'T X", + "overview": "After years of absence, Teppei’s joyous reunion with his brother is cut short when the two brothers are attacked. When his brother is kidnapped, Teppei gives chase only to find himself cornered in a junkyard when a miracle appears. His spilled blood awakens the legendary B’t X.", + "posterPath": "/6wEUIRqChdiGpzEgIjgfIpGFG6T.jpg", + "backdropPath": "/6lJROHhUSRcNLqAKIPmIsbYW2Vl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-04-06", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 94, + "popularity": 2.8741 + }, + { + "id": 62773, + "title": "God Eater", + "originalTitle": "ゴッドイーター", + "overview": "In the early 2050s, unknown life forms called “Oracle cells” begin their uncontrolled consumption of all life on Earth. Their ravenous appetite and remarkable adaptability earn them first dread, then awe, and finally the name “aragami”. In the face of an enemy completely immune to conventional weapons, urban civilization collapses, and each day humanity is driven further and further toward extinction. One single ray of hope remains for humanity. Following the development of “God Arcs”—living weapons which incorporate Oracle cells—their wielders are organized into an elite force.", + "posterPath": "/5H2XJUqkuLdhoYAxUOpa3NYLo8T.jpg", + "backdropPath": "/ptiSlEK0UhqUGQxeOlS3rn5FBSn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-12", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.24, + "voteCount": 144, + "popularity": 2.8734 + }, + { + "id": 21736, + "title": "Patlabor: The TV Series", + "originalTitle": "機動警察パトレイバー", + "overview": "Patlabor: The TV Series is an anime television series, created by Headgear, animated by Sunrise, and based on the Patlabor anime franchise.", + "posterPath": "/eVScFCd5lV0LcQFmewGJI6aGT78.jpg", + "backdropPath": "/3b1qVJtfgQUAtAJSy6vyPbFdRS4.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10759 + ], + "genres": [ + "Comedy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1989-10-11", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 7.167, + "voteCount": 24, + "popularity": 2.8687 + }, + { + "id": 114892, + "title": "Platinum End", + "originalTitle": "プラチナエンド", + "overview": "As his classmates celebrate their middle school graduation, troubled Mirai is mired in darkness. But his battle is just beginning when he receives some salvation from above in the form of an angel. Now Mirai is pitted against 12 other chosen humans in a battle in which the winner becomes the next god of the world. Mirai has an angel in his corner, but he may need to become a devil to survive.", + "posterPath": "/hxL3ZYeS1GYORKGHG9FI0l6QXQF.jpg", + "backdropPath": "/aCLTXSF8MvRzmJkjJYGnFe8pAHf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2021-10-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.645, + "voteCount": 242, + "popularity": 2.8668 + }, + { + "id": 32676, + "title": "The Rose of Versailles", + "originalTitle": "ベルサイユのばら", + "overview": "Raised from birth as a man, the Lady Oscar commands the palace guards at Versailles in the years before the French Revolution. Her beauty and noble spirit make her a shining figure in the eyes of both men and women but she is torn between her chosen life of service and duty to class and country and her own heart and desires. She lives as a noble amidst the opulence of Versailles but her keen senses and compassion are not blinded to the poverty of the French people.", + "posterPath": "/xCngKb1ZGMTSympkswtotgqyYvy.jpg", + "backdropPath": "/8aWflP87kbV0pnma3DLBUf6pfSF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10759 + ], + "genres": [ + "Drama", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1979-10-10", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 182, + "popularity": 2.8661 + }, + { + "id": 138441, + "title": "Ya Boy Kongming!", + "originalTitle": "パリピ孔明", + "overview": "General of the Three Kingdoms, Kongming had struggled his whole life, facing countless battles that made him into the accomplished strategist he was. So on his deathbed, he wished only to be reborn into a peaceful world... and was sent straight to modern-day party-central, Tokyo! Can even a brilliant strategist like Kongming adapt to the wild beats and even wilder party people?!", + "posterPath": "/3WHz6tzLfoaJFoApAOHt2q9qR1m.jpg", + "backdropPath": "/oaoKKOnpkzmqhuVfx8UlMS1BOsq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.357, + "voteCount": 49, + "popularity": 2.8655 + }, + { + "id": 35971, + "title": "Pandora Hearts", + "originalTitle": "PandoraHearts", + "overview": "Oz Vessalius, heir to one of the duke houses, has just turned fifteen. His life is rich and carefree, darkened only by the constant absence of his father. At his coming-of-age ceremony, however, everything changes. For no reason that he can discern, he's cast into the prison known as the \"Abyss\", only to be saved by a \"chain\" known as Alice, the bloodstained black rabbit. It is unknown why was he cast into Abyss, how does Alice factor into it all, and what does the organization known as \"Pandora\" want with him.", + "posterPath": "/p2lKV5adYVtjbVixacccZwUdFAR.jpg", + "backdropPath": "/9KHdLVv592ECZPHAkQSLTMA7uYZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2009-04-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 21, + "popularity": 2.8653 + }, + { + "id": 70881, + "title": "Boruto: Naruto Next Generations", + "originalTitle": "BORUTO-ボルト- NARUTO NEXT GENERATIONS", + "overview": "The life of the shinobi is beginning to change. Boruto Uzumaki, son of Seventh Hokage Naruto Uzumaki, has enrolled in the Ninja Academy to learn the ways of the ninja. Now, as a series of mysterious events unfolds, Boruto’s story is about to begin!", + "posterPath": "/e0B6i48kxdRkMcK4tR4YNfXGWOc.jpg", + "backdropPath": "/4jDRuUk02VGAVMBJXabI9r0Cj6j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2017-04-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.846, + "voteCount": 2459, + "popularity": 2.8651 + }, + { + "id": 134667, + "title": "Reincarnated as a Sword", + "originalTitle": "転生したら剣でした", + "overview": "Reincarnated as a sentient weapon with memories of his past life, but not his name, a magical sword saves a young beastgirl from a life of slavery. Fran, the cat-eared girl, becomes his wielder, and wants only to grow stronger, while the sword wants to know why he is here. Together, the strange duo's journey has only just begun!", + "posterPath": "/yZ3VZVc7iyF7KtIjERBGEedVXqA.jpg", + "backdropPath": "/fo5qwDAVqY7j2jmL350WKjk6kmi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-09-28", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.534, + "voteCount": 74, + "popularity": 2.865 + }, + { + "id": 75086, + "title": "Glitter Force Doki Doki", + "originalTitle": "ドキドキ!プリキュア", + "overview": "Thanks to Sharuru, a fairy from the Trump Kingdom, and the power of mysterious accessories called Cure Lovies, Mana transforms into Cure Heart! Mana, her close friend Rikka, her high-class childhood friend Alice, and the enigmatic, cool super idol singer Makoto all become legendary saviors. Together, they purify the Jikochu, who have forgotten about love!", + "posterPath": "/zr54XYhlqo5yE9Ue3LiBAu4zl4i.jpg", + "backdropPath": "/tWmvSuFN5dIad2R1PRXagBberYY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10751, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Family", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-02-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 23, + "popularity": 2.8649 + }, + { + "id": 42821, + "title": "Welcome to the N-H-K", + "originalTitle": "N・H・Kにようこそ!", + "overview": "Sato's life – or what's left of it – is a paranoid mess of conspiracy theories and social anxieties. He's terrified of the outside world; his apartment is overflowing with the remnants of cheap take-out food; and his retinas have been permanently scarred by a steady diet of internet porn. But maybe it's not all his fault. After all, the nefarious N.H.K. is out there, and they’re determined to turn society's fringe-dwellers into a brainwashed lot of jobless, hopeless, futureless recluses.\n\nEnter Misaki – a mysterious girl-next-door type who is Sato's last chance to beat-down his inner demons and venture out into the light of day. She's ready to help him overcome his crippling phobias, but Sato would rather cower in his existential foxhole and pretend to work on the demo for his virtual sex game.\n\nHe’s afraid to face the world. She's strangely desperate to fix a total stranger. Maybe together they can be normal.", + "posterPath": "/hIsRcWso57zxD2MWBSqze5G4NDS.jpg", + "backdropPath": "/5jtc5va1gDiRi9pjnGqgCN1W0hF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-07-09", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 161, + "popularity": 2.8586 + }, + { + "id": 68272, + "title": "Flip Flappers", + "originalTitle": "フリップフラッパーズ", + "overview": "How does the world look in your eyes? Papika and Cocona, the heroines of the story, hold the keys to open the door. When the two girls meet, their adventures in a different time and different overlapping dimension called \"Pure Illusion\" begin. Many things in Pure Illusion will stand in the girls' way on their search for the mysterious crystal called the \"Shard of Mimi,\" an item that is said to grant any wish. However, when the girls find themselves in danger, the Shard of Mimi shines, and they are able to transform.", + "posterPath": "/bMtCTs0ZRA4rRGne5PPO2iZm4SP.jpg", + "backdropPath": "/4BnK6YsxQNGritWsXaA3EdHySvz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-10-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 36, + "popularity": 2.8582 + }, + { + "id": 106519, + "title": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "originalTitle": "ひげを剃る。そして女子高生を拾う。", + "overview": "On his way home from drinking his sorrows away after being rejected by his crush, 26 year old salaryman Yoshida finds a high school girl named Sayu sitting on the side of the road and ends up letting her stay at his place overnight. Not having the heart to put the runaway out on the streets, Yoshida allows her to stay at his place... And so began the awkward, irritable, and slightly heartwarming relationship between a runaway high school girl and a salaryman living together.", + "posterPath": "/5k20SVsi0sAMZI9p9g1HaUUHgeA.jpg", + "backdropPath": "/u5lyhrnWDZ9kcAb6t5HpWj85XLh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2021-04-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 251, + "popularity": 2.855 + }, + { + "id": 18960, + "title": "Amazing Nurse Nanako", + "originalTitle": "菜々子解体診書", + "overview": "Nanako Shichigusa (16) works as a maid in the hospital of Dr. Kyogi Ogami. Nanako is a classic ditzy slapstick protagonist who tends to accidentally break things and do everything wrong. Ogami treats her frequently in a cruel or heartless manner—threatening her, yelling at her and even subjecting her to physical abuse—yet at the climax of every episode he comes through to rescue her from whatever predicament she got herself into. Much of the series revolves around the relationship between Nanako and Ogami—his mean veneer, her faith in him, and how he alternates between the evil mad scientist archetype and the knight in shining armor archetype.", + "posterPath": "/xBNIuIQmiNbzItZorrJdfxmyGgZ.jpg", + "backdropPath": "/sovPUhop8P5UnjrsHVOVwScvmyr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-07-05", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 3.8, + "voteCount": 10, + "popularity": 2.855 + }, + { + "id": 36249, + "title": "Mazinger Edition Z: The Impact!", + "originalTitle": "真マジンガー 衝撃!Z編", + "overview": "Developed from Japanium ore is the super energy, Photon Power. Seeking this energy is Dr. Hell, a madman craving world domination who along with his subordinates Baron Ashura and Count Brocken, commands the Machine Beasts excavated from Bardos Island (believed to be Rhodes) to attack the Photon Power Lab and take it for himself. Meeting the attack head on is our hero, the hot-blooded teenager Kouji Kabuto who pilots the super robot Mazinger Z, constructed by his grandfather Juzo and made from the strongest metal Chogokin Z. But in this battle between Dr. Hell and the Kabuto family, many legends surrounding the Mycenaean Civilization and Bardos Island, as well as the secrets of Mazinger Z remain shrouded in mystery.", + "posterPath": "/bTu1W4PoK40Z8hNbdNoV3QH9YY7.jpg", + "backdropPath": "/kLAT3DgQWW1PfSpXvC0hhSen5JD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-04", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 60, + "popularity": 2.8544 + }, + { + "id": 61289, + "title": "Aoi Bungaku Series", + "originalTitle": "青い文学シリーズ", + "overview": "An animated adaptation of six classical Japanese literature pieces, including No Longer Human (Ningen Shikkaku) and Run, Melos (Hashire, Melos) by Osamu Dazai, Kokoro by Natsume Souseki, Hell Screen (Jigoku Hen) and The Spider's Thread (Kumo no Ito) by Ryunosuke Akutagawa and In the Forest, Under Cherries in Full Bloom (Sakura no Mori no Mankai no Shita) by Ango Sakaguchi.", + "posterPath": "/ht1PGrCdSY95E1Zh22ZNU7033MF.jpg", + "backdropPath": "/4CYJILEqy9LAFDVSMepdKFeFnAJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2009-10-10", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 23, + "popularity": 2.8542 + }, + { + "id": 62104, + "title": "The Seven Deadly Sins", + "originalTitle": "七つの大罪", + "overview": "The “Seven Deadly Sins”—a group of evil knights who conspired to overthrow the kingdom of Britannia—were said to have been eradicated by the Holy Knights, although some claim that they still live. Ten years later, the Holy Knights have staged a Coup d'état and assassinated the king, becoming the new, tyrannical rulers of the kingdom. Elizabeth, the king's only daughter, sets out on a journey to find the “Seven Deadly Sins,” and to enlist their help in taking back the kingdom.", + "posterPath": "/gxTojpKEOtue85EEFlozwRbDXwJ.jpg", + "backdropPath": "/1MQxe37jSlgZ2ViPGpXIrANY40Q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.417, + "voteCount": 5073, + "popularity": 2.8505 + }, + { + "id": 62495, + "title": "Ronja, the Robber's Daughter", + "originalTitle": "山賊の娘ローニャ", + "overview": "Ronja is the only daughter of Mattis, a bandit leader who lives in a castle in the middle of a large forest. When Ronja grows old enough, she ventures into the forest to interact the strange and magical creatures that live there. She learns to live in the forest through her own strength, with the occasional rescue from her parents. Ronja's life begins to change, however, when she happens upon a boy her own age named Birk.", + "posterPath": "/tz62Z9XRmOa7NZlCZlh48tHwtX0.jpg", + "backdropPath": "/nKgHsTibflGgGv3QeEEu7jtzqjR.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10751, + 10759, + 10765 + ], + "genres": [ + "Comedy", + "Animation", + "Family", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 31, + "popularity": 2.8503 + }, + { + "id": 248951, + "title": "The Strongest Magician in the Demon Lord's Army Was a Human", + "originalTitle": "魔王軍最強の魔術師は人間だった", + "overview": "Ike is a powerful magician and the leader of the Immortal Brigade, part of the Seventh Corps of the Demon Lord’s Army. He single-handedly conquers fortresses and pushes back the armies of humanity. Neither Dairokuten, the Demon Lord, nor Ike’s loyal soldiers know his darkest secret—he is a human in hiding! But can he keep his secret safe and bring peaceful coexistence to demons and humans?", + "posterPath": "/1ANATsXdWWJzsSI5GKp1cot6jRe.jpg", + "backdropPath": "/iIjfY0Zz6LTn2PTiLEe8baGc48k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-07-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.167, + "voteCount": 33, + "popularity": 2.849 + }, + { + "id": 74089, + "title": "GARO -VANISHING LINE-", + "originalTitle": "牙狼<GARO> -VANISHING LINE-", + "overview": "In a prosperous city named Russell City, an omen that threatens to shake its world begins to move within it. A man named Sword is the first to hear the first stirrings of the plot, and throws himself into a shadow war in order to expose it. His only clue is the key word \"El Dorado.\" He meets Sophie, a woman searching for her missing older brother who has only left her with the same words: \"El Dorado.\" With Sword having also lost his younger sister in the past, both are drawn together by the words, and work together to find out its meaning.", + "posterPath": "/qZ6QbEjU2J829zSFyDJlHZaFYVe.jpg", + "backdropPath": "/tbGIQ4qA6nRwejTfuvywC7IH4F1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2017-10-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.059, + "voteCount": 17, + "popularity": 2.8481 + }, + { + "id": 112010, + "title": "Muv-Luv Alternative", + "originalTitle": "マブラヴ オルタネイティヴ", + "overview": "A story of the bonds between those who fight, in a world pushed to its limits. On one of the countless parallel worlds that exist throughout spacetime, humanity has fought a decades long war against the BETA, hostile extraterrestrial invaders, using humanoid fighting machines called Tactical Surface Fighters. This is a story of how humanity lives and dies while on the brink of extinction...", + "posterPath": "/t7sugZpyqBKycMvB7OEHeuHPTsH.jpg", + "backdropPath": "/18ypMUCOV1nhyqBx6DLa448JXgJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 17, + "popularity": 2.8476 + }, + { + "id": 45234, + "title": "So, I Can't Play H!", + "originalTitle": "だから僕は、Hができない。", + "overview": "Ryousuke Kaga, a helplessly romantic teenager, was walking in the rain when he sees a beautiful girl with red eyes drenched in the rain. Everyone was avoiding her, but Ryousuke was taught to treasure women so he offered his help by letting her dry off at his home. Ryousuke can’t imagine that this mysterious girl would stab him in the chest and leave him to die… Or did she? Who is this pretty girl and what does she want with him?", + "posterPath": "/wRq7t74dGefQK1mU0owrXXbHKx5.jpg", + "backdropPath": "/tHpjj6F247CAlEkxnyfs6KC9AVF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2012-07-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 143, + "popularity": 2.8414 + }, + { + "id": 65949, + "title": "JOKER GAME", + "originalTitle": "ジョーカー・ゲーム", + "overview": "Taking place in the year 1937 on the eve of World War II, the story involves a mysterious spy training organization known as the \"D Agency.\" The organization is established by Lieutenant Colonel Yuuki from the Imperial Japanese Army. His ideals lead him to recruit people beyond military academy graduates and personnel, while training them to become skilled agents in arts of manipulation. These agents would become a specialized team to conduct operations. One such antihero agent, under the name Jirou Gamou, goes on a harrowing mission to uncover secret documents titled \"Black Notes,\" while battling forces from within and without his own ranks.", + "posterPath": "/1mvFLm2y4N6Et5JOFsSb9nhKPcd.jpg", + "backdropPath": "/fMT0SK0KCTIbHfwik8T67G0kC89.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 9648 + ], + "genres": [ + "Drama", + "Animation", + "Mystery" + ], + "releaseDate": "2016-04-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.678, + "voteCount": 45, + "popularity": 2.8382 + }, + { + "id": 74185, + "title": "Girls' Last Tour", + "originalTitle": "少女終末旅行", + "overview": "Civilization is dead, but Chito and Yuuri are still alive. So they hop aboard their beloved Kettenkrad motorbike and aimlessly wander the ruins of the world they once knew. Day after hopeless day, they look for their next meal and fuel for their ride. But as long as the two are together, even an existence as bleak as theirs has a ray or two of sunshine in it, whether they're sucking down their fill of soup or hunting for machine parts to tinker with. For two girls in a world full of nothing, the experiences and feelings the two share give them something to live for.", + "posterPath": "/52MoeswRoEgREmpfAoM5BLjOt83.jpg", + "backdropPath": "/5ZeU6YQGHMd0jqQCxsE9SpshQw2.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 10759, + 16, + 10765 + ], + "genres": [ + "Mystery", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-10-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 99, + "popularity": 2.838 + }, + { + "id": 60663, + "title": "Buddy Complex", + "originalTitle": "バディ・コンプレックス", + "overview": "When a giant robot suddenly attacks the city, a high-school student named Aoba is saved by a classmate who's piloting her own mecha. After accepting an offer to join the alliance she's is a part of, Aoba is thrust into the middle of high-flying robot warfare.", + "posterPath": "/2JVwRxQEWVhehgzZblNfRe8zvHn.jpg", + "backdropPath": "/x5ay8a9i9ewIIxP1q8DdqYOIYaT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2013-12-29", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 12, + "popularity": 2.8379 + }, + { + "id": 46279, + "title": "Jormungand", + "originalTitle": "ヨルムンガンド", + "overview": "Jonah is a child soldier and the newest bodyguard for Koko, an international arms dealer with an entourage of hired guns. The cold-blooded kid hates Koko’s line of work, but following her into the darkest corners of the black market might be the only way he can find those responsible for his family’s slaughter. Besides, his employer isn’t like most merchants of death. She uses guile and cutthroat tactics to keep her clients armed to the teeth—all while cultivating her own warped plan for the future of world peace. With the CIA desperate for her capture, assassins eager to collect her head, and the potential for every contract to end in ultra-violence, Koko and her comrades in arms bring the boom to every corner of the world.", + "posterPath": "/2v886zu4uziTmmtjRWXaWjf1QeU.jpg", + "backdropPath": "/nk8vzXp3JFCHgqwqX1oGzvOjEtz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2012-04-10", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 73, + "popularity": 2.8361 + }, + { + "id": 43418, + "title": "Canaan", + "originalTitle": "CANAAN", + "overview": "Two years ago, Shibuya was ravaged by a biological terrorist attack using the deadly Ua virus. Maria Osawa was saved when her father inoculated her against the virus, but is left with partial amnesia from the shock. She works as a cameraman when she reunites with a girl named Canaan in Shanghai, China. A gifted assassin with synesthesia, she is under orders from an unknown organization for a yet unspecified mission", + "posterPath": "/pz6F0f9gmXOVH9IprXDm3XONad4.jpg", + "backdropPath": "/AurNyartTzjWs2fek0juUIVG2yr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2009-07-04", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 43, + "popularity": 2.8344 + }, + { + "id": 232252, + "title": "Delico's Nursery", + "originalTitle": "デリコズ・ナーサリー", + "overview": "Hailing from a prestigious noble house, Dali Delico is an elite member of the Blood Pact Council, the highest governing body of the Vamps. Yet, Dali flatly refuses a mission the Vamps assign him. As Dali’s motives and possible connection to mysterious murders begin to mount, council members Gerhard, Dino, and Henrique visit him in hopes he’ll reconsider, but find him soothing an infant child!", + "posterPath": "/4bbE584icNWcdcoEkIVePmjHI0V.jpg", + "backdropPath": "/bVZAj5B1OU5fJYnX0LkSWil8lxY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-08-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 10, + "popularity": 2.8338 + }, + { + "id": 212273, + "title": "Train to the End of the World", + "originalTitle": "終末トレインどこへいく?", + "overview": "In a seemingly ordinary rural town, something strange is happening to the residents. But Shizuru Chikura is more concerned for her missing friend. Determined to find her, Shizuru and three other girls board an abandoned train and travel to the outside world, unsure if they'll make it back alive. As they venture toward the unknown, the question looms: What awaits them at the final stop?", + "posterPath": "/9eyKUHjD3roRqyypM8FbsUV5iKT.jpg", + "backdropPath": "/lIryvAPvyTkM6Iba7u9HBrSfKZ0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-01", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.957, + "voteCount": 23, + "popularity": 2.8326 + }, + { + "id": 118017, + "title": "Tokyo Mew Mew New", + "originalTitle": "東京ミュウミュウ にゅ~♡", + "overview": "The scientists of the μ(Mew) Project use DNA of endangered species to create a team of heroines imbued with amazing abilities. Armed with the skills of an Iriomote cat, Ichigo must band together with other Mew Mew girls to repel an alien incursion.", + "posterPath": "/mTMyfBtlFB8mYs5vxa5CoIP4m2i.jpg", + "backdropPath": "/pOWRyG0gQnkcKwQmXBu8W2PHx6T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2022-07-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 10, + "popularity": 2.8311 + }, + { + "id": 38812, + "title": "Little Battlers eXperience", + "originalTitle": "ダンボール戦機", + "overview": "Little Battlers eXperience, originally known as Danball Senki is a series of action role-playing video games created by Level-5, involving small plastic model robots known as LBXs that fight on dioramas made out of cardboard, with the main character setting out to battle against LBXs created by other characters. The first game of the series is released on June 16, 2011 for the PlayStation Portable and has expanded to 6 official games and three Japanese anime series.", + "posterPath": "/t4Mee8V797WJ5tynbL41jr4xeuI.jpg", + "backdropPath": "/9AcAtr42sOsHWMRyTytM7MILPEA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2011-03-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 6, + "popularity": 2.8303 + }, + { + "id": 68586, + "title": "Devilman", + "originalTitle": "デビルマン", + "overview": "Devilman features Akira Fudo, a shy and timid teenager who has gone mountain climbing in the Himalayas with his father. While in the middle of the expedition, both father and son are killed in a tragic accident. Akira's body is found and possessed by the demon soldier Devilman, who uses his new human form as a disguise in order to fulfill his mission of causing chaos on Earth in order to pave the way for a demonic invasion of the planet.\n\nBefore his mission can begin in earnest, Devilman meets Akira's childhood friend Miki Makimura and quickly falls in love with her. Devilman resolves to protect Miki and humanity as a whole by battling against his fellow demons. Demon Tribe leader Zennon becomes greatly angered at Devilman's betrayal and is quick to send Devilman's former comrades to destroy him. The other demons soon learn that Miki is precious to Devilman and he must now work to protect her, as well as protect himself. Will the power of love be able to overcome that of true evil?", + "posterPath": "/zaWCutFNLIsg5a76G7uEDi76kK5.jpg", + "backdropPath": "/1RgfoVvgyqxOVUpqCeahVCI689A.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1972-07-08", + "releaseYear": "1972", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 38, + "popularity": 2.8291 + }, + { + "id": 123528, + "title": "Skeleton Knight in Another World", + "originalTitle": "骸骨騎士様、只今異世界へお出掛け中", + "overview": "One day, a gamer played video games until he fell asleep...and when he woke up, he found himself in the game world—as a skeleton! Equipped with the powerful weapons and armor of his avatar but stuck with its frightening skeletal appearance, Arc has to find a place for himself in this new, fantastical land. All his hopes for a quiet life are dashed when he crosses paths with a beautiful elven warrior, setting him on a journey full of conflict and adventure.", + "posterPath": "/jMhzjbRI1iL2ENtMnS3Zm3DBAJw.jpg", + "backdropPath": "/q96VKocz5HlymMvmQDNNS6FA9O0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2022-04-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.349, + "voteCount": 93, + "popularity": 2.8275 + }, + { + "id": 72677, + "title": "Mobile Suit Gundam 0083: Stardust Memory", + "originalTitle": "機動戦士ガンダム0083 STARDUST MEMORY", + "overview": "It is the year 0083 of the Universal Century. The rebellious Principality of Zeon has been defeated in the One Year War by the Earth Federation. However, a faction of Zeon remnants led by Aguille Delaz fled from the final battle, hiding themselves away. After three long years, they attempt to rise up once more, sending Delaz’s ace pilot, Anavel Gato, to infiltrate a Federation research base to steal one of two secretly developed prototype Gundams along with its deadly nuclear warhead.\n\nThreatened by the rogue Gundam suit and seeking to retain peace, the Earth Federation mobilizes the newly developed Albion carrier to recover the stolen unit. Manned by the remaining test pilots, with rookie pilot Kou Uraki piloting the remaining prototype Gundam, the Albion and her crew are determined to stop Gato, retake the stolen Gundam, and prevent the Zeon remnants from starting another war.", + "posterPath": "/zLO8bidHA5S26kxI5DufYscgMsU.jpg", + "backdropPath": "/y79nYQo4neuTPDGj7ug7nrvz8EE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "1991-05-23", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 29, + "popularity": 2.8222 + }, + { + "id": 83054, + "title": "Karakuri Circus", + "originalTitle": "からくりサーカス", + "overview": "Narumi Katou is a middle-aged man who suffers from the bizarre ZONAPHA Syndrome: a rare and inexplicable disease that causes its victims to endure severe seizures at random, with the only cure being to watch someone laugh. One day, during Narumi's part time job, a young boy with a giant suitcase fleeing from three adults runs into him. The boy introduces himself as Masaru Saiga, the new owner of the famous Saiga Enterprises following his father's recent death. However, other members of his family are trying to assassinate him and claim the fortune for themselves.", + "posterPath": "/pUhEiAZXI6OqlUnIbUjlANzY8V9.jpg", + "backdropPath": "/hhlcTHAaRdwCcr9UbGt1c7airxU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648, + 80, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Mystery", + "Crime", + "Animation", + "Drama" + ], + "releaseDate": "2018-10-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.198, + "voteCount": 126, + "popularity": 2.821 + }, + { + "id": 67048, + "title": "Barakamon", + "originalTitle": "ばらかもん", + "overview": "After punching a famous curator in the face for criticizing his work as \"textbook and lifeless,\" Handa Seishuu is sent to Gotō Island to calm his nerves and find new inspiration for his calligraphy. Growing up in the city all his life, though, Handa must adapt to country life while meeting an assortment of quirky people during his tenure.", + "posterPath": "/5biiZSKFkIFRxv6Ny6H6XwzyuKE.jpg", + "backdropPath": "/avw2CFUqBTiUFwWPR0OHCys1N3M.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 139, + "popularity": 2.8164 + }, + { + "id": 12599, + "title": "My-Hime", + "originalTitle": "舞-HiME", + "overview": "Schoolgirls discover that they have been given the ability to materialize weapons and control robotic beasts called \"Children\" to stop an evil organization from their plans of domination.", + "posterPath": "/cWZhtbCNHGtivsebbbxxnw8mczE.jpg", + "backdropPath": "/8uEXkalYzADzeS4USwUYttd9Yhd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-09-30", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 36, + "popularity": 2.8125 + }, + { + "id": 283935, + "title": "Touring After the Apocalypse", + "originalTitle": "終末ツーリング", + "overview": "Two young girls, Yoko and Airi, travel through the empty world of post-apocalyptic Japan. They photograph the scenery of famous places and camp out in towns overtaken by nature. Together, they ride on a Serow off-road motorbike and experience a new sense of freedom, unbothered by neither traffic nor traffic lights. The world is over now, so let’s hop on a bike and go on a journey!", + "posterPath": "/1WbHcaQcuP0xBkzqvMirvufvxTm.jpg", + "backdropPath": "/oxVU2EE2XtCU5LSS2N78aNXXJdA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-10-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9.4, + "voteCount": 5, + "popularity": 2.8113 + }, + { + "id": 69289, + "title": "KiraKira☆PreCure a la Mode", + "originalTitle": "キラキラ☆プリキュアアラモード", + "overview": "Ichika Usami is a second year middle school student whose family runs the Kirakira Patisserie shop. One day, she encounters a fairy named Pekorin and learns that evil monsters known as Henteko have been stealing \"Kirakiraru\", the energy that resides within sweets and desserts. Thus, Ichika becomes a Pretty Cure and, alongside four other cures, forms the Kirakira PreCure a la Mode to fight off the Henteko and protect the sweets.", + "posterPath": "/cQ3roHMJVQkqWSCFz5LkPoJ15Lt.jpg", + "backdropPath": "/rMsipTQlsMf51tIKVj7ms2XX467.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759, + 35, + 10751, + 10762 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "2017-01-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 13, + "popularity": 2.8071 + }, + { + "id": 72520, + "title": "A Predator in a Skirt", + "originalTitle": "スカートの中はケダモノでした。", + "overview": "The story begins when the reserved Shizuka attends a local mixer party but has trouble adjusting to the atmosphere. A beautiful older female college student named Ryou starts talking to her, and the pair hit it off. Shizuka goes to spend the night at Ryou's place. However, Ryou unexpectedly kisses Shizuka and pushes her down. Shizuka thinks the beautiful woman is a lesbian but soon discovers that Ryou is actually a man dressed as a woman.", + "posterPath": "/5o2TArFnXPzBvLdH97AOnJCfwW0.jpg", + "backdropPath": "/g4xIonifR3ainYvoTBJhW2Zrcdr.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2017-07-01", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 14, + "popularity": 2.8047 + }, + { + "id": 34132, + "title": "Princess Tutu", + "originalTitle": "プリンセスチュチュ", + "overview": "Princess Tutu follows Duck, a duck who was transformed into a young girl and takes ballet at a private school. She becomes enamoured of her mysterious schoolmate Mytho, and transforms into Princess Tutu to restore his shattered heart. Mytho's girlfriend Rue transforms into Princess Kraehe to frustrate Tutu's efforts, and Mytho's protective friend Fakir discourages Mytho's burgeoning emotions. When it becomes apparent that Duck, Rue, Mytho, and Fakir are meant to play out the characters in a story by a long-dead writer named Drosselmeyer, they resist their assigned fates and fight to keep the story from becoming a tragedy.", + "posterPath": "/lXPCfdHq3GQxLqTBIQ9QtRZSftS.jpg", + "backdropPath": "/jtQFBCP0GkufnKoTMgFEhvyeVC2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2002-08-16", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 29, + "popularity": 2.8031 + }, + { + "id": 106782, + "title": "Those Snow White Notes", + "originalTitle": "ましろのおと", + "overview": "Matsugorou Sawamura is a shamisen player of legendary talent. Upon his death, his grandson, Setsu Sawamura, lost his ability to play. Having lost his beloved sound, Setsu finds himself in Tokyo in search of a new sound to love. Tachiki Yuna, who works at a club, hooks him up with a gig to play there as a warm up act. Setsu imbues the sound of his shamisen with his many thoughts and feelings he has of others, still searching for his own sound and his own feelings.", + "posterPath": "/c5TXVs0BRGy7smjMHiqUnttiktw.jpg", + "backdropPath": "/1AoAZNXlzgAnyWkwX9wESHRgRgD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2021-04-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 23, + "popularity": 2.803 + }, + { + "id": 45807, + "title": "Kokoro Connect", + "originalTitle": "ココロコネクト", + "overview": "Five members of the school culture club—Taichi Yaegashi, Iori Nagase, Himeko Inaba, Yui Kiriyama, and Yoshifumi Aoki—encounter a bizarre phenomenon one day when Aoki and Yui switch personalities without warning. The same begins to happen to the other club members, throwing their daily lives into chaos. At first the five students find some amusement among the confusion, but this connection also exposes the painful scars hidden within their hearts... When their calm lives are shattered, the relationships between the five students also begin to change!", + "posterPath": "/xcIUwuVA0mHy3HHuEvUZyTz9lyh.jpg", + "backdropPath": "/oI1e7C9N587Eav9ofIxv3R96tP4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2012-07-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 83, + "popularity": 2.7992 + }, + { + "id": 127549, + "title": "Sasaki and Miyano", + "originalTitle": "佐々木と宮野", + "overview": "When bashful Miyano meets brash Sasaki, it feels like a teen romance manga come to life — but for these boys, real-world love is messier than fiction.", + "posterPath": "/yNAdyqOwROeKf82iyzGGnNbvHDr.jpg", + "backdropPath": "/p2tU2zJ4tw01X4R9RKOJibAs8Pa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-01-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.31, + "voteCount": 93, + "popularity": 2.7977 + }, + { + "id": 46512, + "title": "Mobile Suit Gundam 0080: War in the Pocket", + "originalTitle": "機動戦士ガンダム0080 ポケットの中の戦争", + "overview": "In the final days of the One Year War, a Zeon special forces group infiltrates a colony to gather information on a new Gundam unit. Alfred Izuhara, a 10-year-old student, befriends Zeon rookie pilot Bernie Wiseman during a brief mobile suit combat. Meanwhile, Al meets up with Christina MacKenzie, his former neighbor and babysitter. Little does he know that not only is Christina a member of the Earth Federation, she's the test pilot of the new Gundam NT-4 prototype.", + "posterPath": "/ju1llP8kQROLHQ2xqOscSUrEHb4.jpg", + "backdropPath": "/21fk0W388vXQ4TpQ2iZgGzXqwru.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10768, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "War & Politics", + "Drama" + ], + "releaseDate": "1989-03-25", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 35, + "popularity": 2.7969 + }, + { + "id": 82867, + "title": "DAKAICHI -I'm being harassed by the sexiest man of the year-", + "originalTitle": "抱かれたい男1位に脅されています。", + "overview": "\"I'll make it so your body's unable to forget mine.\" Saijou Takato's 5 year reign as the 'Most Huggable No. 1' has been snatched. Stealing his thunder is the newbie actor with a 3-year debut, Azumaya! Towards the stuffy hostile Takato, Azumaya's sincere sparkling smile starts to become effective. Even as Takato sets his alert level on MAX, Azumaya catches Takato in his shameful drunken state and uses it to blackmail him! In exchange for Azumaya's silence, Azumaya states, \"Please let me hold you…?! Embrace me, who was the Most Huggable No.1?\" What the heck is he saying! Includes a large quantity of other high suspense erotic stories.", + "posterPath": "/2YLoMavlrbMyK2CuYzmMu9GdheO.jpg", + "backdropPath": "/rlWqioaob4HLBZSd0WeNtsMvCBh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.419, + "voteCount": 37, + "popularity": 2.7948 + }, + { + "id": 36941, + "title": "Fruits Basket", + "originalTitle": "フルーツバスケット", + "overview": "Tohru Honda is 16 year old orphaned girl who gets invited to live in the house of her classmate, the handsome boy Sohma Yuki, and his cousins, 16 year old Kyo and 27 year old Shigure. However, these young men and parts of the rest of their family (both close and distant) hold a curse; if they are hugged by the opposite gender, they transform into animals of the Chinese Zodiac. Everyday is an adventure for sweet Tohru, as she gets to know everyone in the large family better (especially Yuki and Kyo), in both common and bizarre situations. But, the Sohma Family curse is certainly no laughing matter... it also holds horrible cruelty and heartbreak.", + "posterPath": "/6WQf2frdsNFt98LVx4AcVTNlIZ8.jpg", + "backdropPath": "/yGu6dz6tBAC4GE4gHzdsoDD6btG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2001-07-05", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 71, + "popularity": 2.7921 + }, + { + "id": 56834, + "title": "My Bride is a Mermaid", + "originalTitle": "瀬戸の花嫁", + "overview": "Nagasumi's in hot water after a beautiful, young mermaid named Sun saves him from drowning. The deep-sea sweetheart's dad is a merman yakuza prone to executing anyone who learns his family's scaly secret! Luckily, there's a catch - if Nagasumi agrees to marry Sun, he just might avoid sleeping with the fishes!", + "posterPath": "/b3Ta4RDn22SmxuGKK7klxDrTbiB.jpg", + "backdropPath": "/iCfocYjZiNeHgj7J3t1i7Y4nMNH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-01", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.184, + "voteCount": 38, + "popularity": 2.7919 + }, + { + "id": 31730, + "title": "Casshern Sins", + "originalTitle": "キャシャーン Sins", + "overview": "After the murder of Luna, the robot society that rules the planet starts to rust and decay. Death and despair spread through the land like wildfire. The only one unaffected by the affliction that becomes known as \"The Ruin\" is Luna's assassin, Casshern. Unable to remember if he really triggered this capital sin against the entire mechanized civilization, Casshern embarks on a journey to unravel the mystery that connects him, Luna, and the plague.", + "posterPath": "/y2jzEQ6Yqhw1rHuNANeO0L741zf.jpg", + "backdropPath": "/jXVdRXPu8ud93R5vPhz5p8LMdog.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-01", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.086, + "voteCount": 35, + "popularity": 2.7915 + }, + { + "id": 277581, + "title": "Dekin no Mogura: The Earthbound Mole", + "originalTitle": "出禁のモグラ", + "overview": "A shady self-proclaimed hermit named Momoyuki Mogura, AKA: Mogura, is banned from the afterlife due to an incident. Now he collects spirit possessed will-o'-wisps in his lantern, hoping to make a comeback.", + "posterPath": "/xnEForFiNATvYS4MUwYyFuPyiok.jpg", + "backdropPath": "/4FaEZoLnxTsSV4829sy17SMiBvB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2025-07-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 7, + "popularity": 2.79 + }, + { + "id": 45186, + "title": "The Knight in the Area", + "originalTitle": "エリアの騎士", + "overview": "Kakeru and Suguru are brothers who both have a flaming passion for soccer. However, while Suguru becomes a rising star in the Japanese youth soccer system, Kakeru decides to take on a managerial role after struggling on the field. But due to a cruel twist of fate, Kakeru ends up reevaluating the role he has chosen.\n\nIn hopes of one day being able to enter the World Cup by becoming a member of the national team, Kakeru trains harder than anyone else. He isn’t alone in this quest for glory, though. Kakeru's childhood friend, Nana, is a soccer prodigy of her own, with the wicked nickname “Little Witch”. She is a top-ranked player and is already playing for Nadeshiko Japan, the Japanese women’s national team. Nana's success gives Kakeru the extra push he needs to reach for his goals.", + "posterPath": "/uIclZ7srQb4bi7WOb4ZKGXWd3VP.jpg", + "backdropPath": "/1h1l8bSu0az0eu0S4QpYoDo9YSe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-01-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 13, + "popularity": 2.7888 + }, + { + "id": 195990, + "title": "Love Flops", + "originalTitle": "恋愛フロップス", + "overview": "Asahi Kashiwagi lives the typical life of an average high school student — until the day a TV fortune teller’s predictions come true one after another, culminating in a series of risqué encounters! Destiny seemingly draws five beautiful girls into Asahi’s path, and soon he finds himself fielding not one, not two, but five love confessions. Asahi will need to follow his heart to find the perfect love for him, or else his love fortunes may end in one epic flail and flop.", + "posterPath": "/oDdaWg2ROrXrpvixAN06MBiaYj.jpg", + "backdropPath": "/gPKfi8LWohOPMjvjEpYbVldMGAN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-12", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.517, + "voteCount": 30, + "popularity": 2.7846 + }, + { + "id": 63712, + "title": "Place to Place", + "originalTitle": "あっちこっち", + "overview": "Tsumiki Miniwa, a small girl who packs a punch, is in love with her best friend, tall and easygoing Io Otonashi. The only problem is that she can't bring herself to come out and say it. And, despite the fact that he can otherwise read her like a book, Io doesn't seem to be able to pick up the obvious clues—even with all of their friends teasing that there's no one better suited for each other.\n\nAcchi Kocchi follows Tsumiki and her circle of friends as they go through their day-to-day lives. Between Mayoi the electronics nerd, Sakaki the good-natured prankster, and the nosebleed-prone Hime, Tsumiki's friends will never let her live down her crush. But only time will tell if Tsumiki will gain the courage to finally say how she truly feels.", + "posterPath": "/khQtphhJLSzkRvf4kNiLzi70yTg.jpg", + "backdropPath": "/9BSTUCDIQrcupqhn8J7pJDFghs2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-04-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.828, + "voteCount": 32, + "popularity": 2.7825 + }, + { + "id": 42980, + "title": "The Story of Saiunkoku", + "originalTitle": "彩雲国物語", + "overview": "Saiunkoku is a world of eight provinces or houses, each named after a different colour. The new Emperor, Shi Ryuuki, has gained for a reputation for being uninterested in courtly matters and for flaunting his love for men. Shuurei, although born of the important Kou family, has difficulty making ends meet. She easily accepts an invitation to be the Emperor's concubine in order to turn him into a good ruler. The mysterious Seiran, a young man who was adopted by her father, goes with her as Ryuuki's bodyguard. Entering the imperial palace revives Shuurei's dream of being a court official, and, together with the many companions she meets along the way, continues moving bravely forward while trying to fend off the Emperor's advances.", + "posterPath": "/nS2ZtOltMCWHLlL6Y9U4DdKM2VW.jpg", + "backdropPath": "/5zLZ3SmXeNzz6CTGlCBZNxhLY3X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2006-04-08", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.556, + "voteCount": 9, + "popularity": 2.7795 + }, + { + "id": 43564, + "title": "Devil Hunter Yohko", + "originalTitle": "魔物ハンター妖子", + "overview": "Yohko Mono is a regular girl making her way through high school--until she learns that she is the successor to a line of warriors charged with defending the earth against demons.", + "posterPath": "/pkC0v3ya7svybQLQxfXmWNNerkR.jpg", + "backdropPath": "/9eWHrFIfgwSEsbh30SLezsmfBKb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1990-12-01", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 6.429, + "voteCount": 7, + "popularity": 2.7792 + }, + { + "id": 67628, + "title": "B-PROJECT", + "originalTitle": "B-PROJECT~鼓動*アンビシャス~", + "overview": "Tsubasa is a new hire in the A&R department of the major recording company Gandala Music. Tsubasa is immediately assigned to oversee the idol unit \"B-PROJECT,\" which is made up of three idol groups: Kitakore, Thrive, and MooNs. This is Tsubasa's first job, and she gets involved in various incidents and accidents as she deals with this group of young men who each have their own differing personalities.", + "posterPath": "/2GuZ8IRVYXkepzYZGz3kBsmr5ot.jpg", + "backdropPath": "/QxCYl8zpGYgSCOZg7zCUdNUwQ6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2016-07-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 7, + "popularity": 2.778 + }, + { + "id": 90293, + "title": "Ghost in the Shell: SAC_2045", + "originalTitle": "攻殻機動隊 SAC_2045", + "overview": "After a global financial crisis, the world is engulfed in an AI-driven \"sustainable war.\" It's up to Section 9 to counter new forms of cyber threats.", + "posterPath": "/tPK8BER0Pyq68IGKHrTemGlxBV4.jpg", + "backdropPath": "/2L4ob76e1tp6fgMXgMD2BC2hSUT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-23", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 138, + "popularity": 2.7763 + }, + { + "id": 62171, + "title": "Aesthetica of a Rogue Hero", + "originalTitle": "はぐれ勇者の鬼畜美学", + "overview": "For 30 years, thousands have traveled to other worlds. The few that return keep the powers they had in those worlds. Akatsuki Ousawa returns from the world of Alayzard with the defeated Demon King's daughter, Miu. Miu pretends to be Akatsuki's sister to hide her true identity. They join Babel, a school for inter-dimensional travelers, and struggle against the student council to uncover the truth behind the school.", + "posterPath": "/65y1Z0CaMYT31IUPgZYYxMgpayz.jpg", + "backdropPath": "/vG5Rkm3vMqUsRp252xeyMuYKtW7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-07-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 68, + "popularity": 2.776 + }, + { + "id": 217407, + "title": "Can a Boy-Girl Friendship Survive?", + "originalTitle": "男女の友情は成立する?(いや、しないっ!!)", + "overview": "Childhood BFFs Himari and Yu’s vow of friendship hits turbulence when Yu reunites with his first crush in high school. Himari, who’s never known the fuzzy warmth of a crush, now must confront her feelings. Their shared dreams and peaceful days as a twosome gardening club are tested in this tale of love, flowers, and growing pains!", + "posterPath": "/nAooVCW6PIfISHegaIwtQOZLBOC.jpg", + "backdropPath": "/taa2aoX0ZBZiydrmc4p3IBtmJz0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 13, + "popularity": 2.7714 + }, + { + "id": 34765, + "title": "Bokurano", + "originalTitle": "ぼくらの", + "overview": "During a summer camp, 15 children, 8 males and 7 females, find a grotto by the sea. Deep within they discover working computers and some electronic equipment, and later the owner, a man called Kokopelli. Kokopelli claimed to be a programmer working on a brand new game, in which a large robot has to defend the Earth against fifteen alien invasions. He persuades the children to test the game and sign a contract. All but one of them signs; barely a moment later they mysteriously awaken on the shore believing what happened was just a dream.", + "posterPath": "/nxsG82r30eKyybItqVJjOCPbpwD.jpg", + "backdropPath": "/iYfQrAAHCZcW3r4jxJz1hmP9Lx8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-08", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 26, + "popularity": 2.7688 + }, + { + "id": 60730, + "title": "Haganai: I Don't Have Many Friends", + "originalTitle": "僕は友達が少ない", + "overview": "Kodaka Hasegawa has just transferred to St. Chronica's Academy and he's having a hard time making friends. With his naturally blond hair and fierce looking eyes, people constantly mistake him for a delinquent. One day, he runs into his bad-tempered loner of a classmate, Yozora, while she's talking to her imaginary friend, Tomo. Since neither of them have any friends, they decide to form a club and start recruiting some. Little by little, lonely classmates join their club to learn how to build friendships through cooking together, playing games, and other group activities. But, with so many misfits, will the club members really be able to get along?", + "posterPath": "/oaKPbowjQgbNgaQsTNBlU7e00FI.jpg", + "backdropPath": "/iMh5wkmPYgT39iL8VwFRkz82wdk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-10-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.521, + "voteCount": 166, + "popularity": 2.7679 + }, + { + "id": 124363, + "title": "The Dawn of the Witch", + "originalTitle": "魔法使い黎明期", + "overview": "Saybil can't remember his life before he joined the magic academy. He has the lowest grades, because his amnesia leaves him unmotivated. One day, the school headmaster, Albus, orders him to participate in a dangerous special training. \"I want you to spread the use of magic in an area where they hold witch hunts.\" This story is a spin-off of 'Grimoire of Zero.'", + "posterPath": "/lfBTEhNt6NBChu0rryz6WojsDMw.jpg", + "backdropPath": "/y4DVLXmb4M5JHFGHSLglYpFwUVZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.175, + "voteCount": 40, + "popularity": 2.7675 + }, + { + "id": 42419, + "title": "SKET DANCE", + "originalTitle": "スケットダンス", + "overview": "SKET DANCE is a manga series written and illustrated by Kenta Shinohara and serialized, beginning in July 2007, in Shueisha's manga magazine Weekly Shōnen Jump. Sket Dance won the 55th annual Shogakukan Manga Award in 2009 for best shōnen manga. An anime adaptation, produced by Tatsunoko, premiered on April 7, 2011 on TV Tokyo.", + "posterPath": "/wYMBMX3s6X3aCTifAIrLRxR5A3f.jpg", + "backdropPath": "/4OrWPSyIbiO51IU2O3yMre3OSJa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2011-04-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 10, + "popularity": 2.7632 + }, + { + "id": 74097, + "title": "Kino's Journey -the Beautiful World- the Animated Series", + "originalTitle": "キノの旅 -the Beautiful World- the Animated Series", + "overview": "A story about Kino, who travels around the world with nothing but guns for protection and the talking motorcycle Hermes. Kino travels to many mystical worlds, each with its unique customs and people, and learns about the world through their stories, at times conjuring humor and inspiration or other times piercing cynicism. However, Kino's own custom is to stay no longer than three days in every town without exception, as it is enough time to learn almost everything important about the place while still leaving time to explore new lands.", + "posterPath": "/nfHnr1rS278EyNwvG32BZ3oWPdX.jpg", + "backdropPath": "/cTHXGMldOa3uzFAIXqSWwmUvIkT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-10-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.25, + "voteCount": 84, + "popularity": 2.7622 + }, + { + "id": 222930, + "title": "Villainess Level 99: I May Be the Hidden Boss But I'm Not the Demon Lord", + "originalTitle": "悪役令嬢レベル99~私は裏ボスですが魔王ではありません~", + "overview": "This college kid wants nothing more than a quiet life. So when she's reborn as Yumiella, the hidden villainess of an Otome RPG, she's not exactly thrilled. Still yearning for peace, she abandons her evil duties to live a more discreet life. Until her gamer side kicks in, and she accidentally reaches level 99! Now, everyone suspects that she's the infamous Demon Lord. What future awaits her?", + "posterPath": "/45KqPcfk6qrxl5XF7z9Wwtvo0vw.jpg", + "backdropPath": "/m3jSoC9aCTI5euALkCTuiGVVIeS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 58, + "popularity": 2.7611 + }, + { + "id": 37580, + "title": "Princess Jellyfish", + "originalTitle": "海月姫 〜くらげひめ〜", + "overview": "Amamizukan is an apartment complex where no boys are allowed. Tsukimi, a girl who adores jellyfish, lives there happily with her friends who all have nerdy obsessions of their own. Their peaceful lives gradually start to change when a beautiful woman helps Tsukimi out of a pinch. She stays overnight at the apartments—but it turns out \"she\" is really a \"he\".", + "posterPath": "/e5DJroUlDEudJHYC9ho73WByEoJ.jpg", + "backdropPath": "/4TQWErJW8BShqVOdnDOJRiehHmk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-10-15", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 24, + "popularity": 2.7585 + }, + { + "id": 46414, + "title": "Kanokon", + "originalTitle": "かのこん", + "overview": "Kouta has girl troubles of the supernatural sort. For some reason, he keeps attracting the attention (and affections) of animal spirits!\n\nHaving spent most of his life in the country, Kouta is understandably nervous when he moves in with his grandma to attend a high school in the big city. He hoped to make a good impression, but having Chizuru, a beautiful fox spirit, hanging off his arm didn't seem to be the sort of image he wanted to have. She's not alone in her love for Kouta, either. Nozomu, a wolf spirit, as well as other youkai have their sights set on the hapless country boy.", + "posterPath": "/iEJU6ZiH5TEsNddFqpJgNnahswn.jpg", + "backdropPath": "/z1o6vvFkMmZ5It3Gb3YtFD56KrH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2008-04-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.556, + "voteCount": 45, + "popularity": 2.7576 + }, + { + "id": 34751, + "title": "Steel Angel Kurumi", + "originalTitle": "鋼鉄天使くるみ", + "overview": "A boisterous comedy starring the perfectly invincible \"Maidroid\" Kurumi, a product of science and magic and boy named Nakahito, they manage to get into all sorts of trouble.", + "posterPath": "/xYgR7oIUlWwQEeZ9rLYkzRLu151.jpg", + "backdropPath": "/60qwrmzBoud1NlpqS78pVAQZsP7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Drama", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1999-10-05", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 2.7547 + }, + { + "id": 34714, + "title": "Kannagi: Crazy Shrine Maidens", + "originalTitle": "かんなぎ", + "overview": "An art student named Jin Mikuriya carves a statue from the wood of the Kannagi tree only to have the statue come to life in the form of a goddess, who has now taken over the statue. He and \"Nagi\" work together to destroy the impurities that are gathering in the town.", + "posterPath": "/1if3gNQW5X9k8ne4j8ToGBZMGtp.jpg", + "backdropPath": "/3PJbPijszlcsPKngCfT3jVY9Xwi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-04", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 14, + "popularity": 2.7534 + }, + { + "id": 79024, + "title": "Aikatsu Friends!", + "originalTitle": "アイカツフレンズ!", + "overview": "Aine Yūki is good at making friends, and is enrolled in Star Harmony Academy's general education track. She befriends Mio Minato, the school's top idol, and becomes an idol herself.", + "posterPath": "/pM5ND1TiH6jArgMjMbJcnGMhk5W.jpg", + "backdropPath": "/5meyZ1ZcmpcKqNUr8V6IVrRBwh3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10751, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Family", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 10, + "popularity": 2.7531 + }, + { + "id": 66991, + "title": "Tales of Zestiria the X", + "originalTitle": "Tales of Zestiria the X", + "overview": "Legends speak of the Shepherd, a savior who will bring peace to the seraphim and human worlds. Sorey has spent his life studying ancient books and exploring ruins to learn more about this legendary savior. When he and his seraphim companion Mikleo encounter a mysterious girl in the ruins, the stories of the Shepherd become Sorey's reality.", + "posterPath": "/8cvnUjctdbExvnRyo8AVDvo2KaT.jpg", + "backdropPath": "/1Wv3T1Tgc2AeMYv5JfdQZnVjOcg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2016-07-10", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 39, + "popularity": 2.7513 + }, + { + "id": 234538, + "title": "DEMON LORD 2099", + "originalTitle": "魔王2099", + "overview": "Five centuries ago, Demon Lord Veltol reigned over an immortal nation. Now, the time has come for him to awaken once again. The year is 2099, and civilization has reached peak evolution, leading to a high-tech landscape with towering skyscrapers—nothing like he’s conquered before. Veltol may be a relic of the past, but make no mistake, this new world will be his for the taking!", + "posterPath": "/jL4D4phOdEf6Ay0kdW25RiQTWBc.jpg", + "backdropPath": "/rS6CNUPU62dsSmsPieLGm6NceZa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-10-13", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.75, + "voteCount": 32, + "popularity": 2.7505 + }, + { + "id": 61333, + "title": "Stigma of the Wind", + "originalTitle": "風のスティグマ", + "overview": "Four years ago, Kazuma Kannagi was defeated by his cousin Ayano Kannagi for the right to be the successor of Enraiha, a sword passed down in the Kannagi family. His defeat, along with his lack of talent for En-Jutsu, the fire arts, the Kannagis' specialty, resulted in his banishment from the family. Now, Kazuma returns as Kazuma Yagami, a skilled master of Fū-Jutsu, the wind arts.", + "posterPath": "/nkc297dsqyIYR6oFOBdf6p6BqqT.jpg", + "backdropPath": "/xizfoV6bKFduH0up5RRCDTICeUg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-13", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 56, + "popularity": 2.7504 + }, + { + "id": 96914, + "title": "Healin' Good Precure", + "originalTitle": "ヒーリングっど♥プリキュア", + "overview": "The Healing Garden, a secret world that has provided treatment to heal the Earth, is under attack by the Byougenzu, who plan to infect Earth with an illness, putting it in great danger! To solve this crisis, the three medical trainees of Earth, known as the Healing Animals, along with Latte, who holds a special power as the Princess of the Healing Garden, escape in search of their partners! Three ordinary girls come across the group by chance, and together, they transform into Pretty Cure and take on the Byougenzu!", + "posterPath": "/bw592IpjOLC4QNitCRAyA7KMgxx.jpg", + "backdropPath": "/sNe8l5iARBanKM5Xagd5HUCAKBP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35, + 18, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Drama", + "Kids", + "Family" + ], + "releaseDate": "2020-02-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 13, + "popularity": 2.7489 + }, + { + "id": 238848, + "title": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "originalTitle": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "overview": "Zagan might be the most feared evil sorcerer, but when it comes to social interactions, he's the most inept. All those days studying the dark arts won't help him when he falls in love at first sight with Nephelia, the beautiful elven slave, and spends his entire fortune to purchase her. With no clue how to talk to each other, the awkward arrangement for a bumbling sorcerer and timid elf begins.", + "posterPath": "/yrtmTLOnHWJxlqDHNyxm0eUHr1U.jpg", + "backdropPath": "/xi8GEQrgBhf8UJltVUfcigw8Vbk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.091, + "voteCount": 44, + "popularity": 2.7486 + }, + { + "id": 44777, + "title": "Starzinger", + "originalTitle": "SF西遊記 スタージンガー", + "overview": "Three powerful cyborgs must assist Princess Aurora on her dangerous journey to the Great Planet, in order to restore balance in the universe.", + "posterPath": "/v698D2DB3oPzau6W55tiA2QI4Eu.jpg", + "backdropPath": "/kBVz2tcSSw6xjVNWxrMagYIJMne.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1978-04-02", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 53, + "popularity": 2.746 + }, + { + "id": 34801, + "title": "Wolf's Rain", + "originalTitle": "WOLF'S RAIN", + "overview": "Paradise—a legend, a myth, and a hopeless dream in a world that has become a wasteland. It is not meant for everyone, only the wolves thought to be extinct yet still roam the lands. When the Flower Maiden awakens, the path to the end will open.\n\nKiba, a lone white wolf, wanders into a poverty stricken city on a quest. The scent of Lunar Flowers and the will to find Paradise is all he has. Along the way, he runs into other outcast wolves—Tsume, Hige, and Toboe, each with their own story and troubles. Fate bringing them together, they seek out the Flower Maiden, Cheza, and their way to Paradise. But, doing so is no simple matter. Up against a world that fears them and a man with mysterious abilities, their journey is overrun with challenges and worse—sacrifices. With limited time, they must fight to protect Cheza against everyone who seeks her and discover the hidden path to their destiny.", + "posterPath": "/59p0MqCAXnzUcGu8nI8Mz4CCT59.jpg", + "backdropPath": "/uszWjTXvIzbIH3rj51ez5EHoLKA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-01-07", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 192, + "popularity": 2.7459 + }, + { + "id": 73093, + "title": "Actually, I Am...", + "originalTitle": "実は私は", + "overview": "Asahi Kuromine is a high school student who supposedly cannot keep a secret. One day he spots his crush Yoko Shiragami, unfurling a large pair of wings from her back. She explains to him that she is a vampire and is only able to attend a normal school on the condition that no one discover her true identity. Asahi swears to keep her secret but finds it hard to maintain seeing as how Yoko herself is an airhead and Asahi's friend Mikan keeps bullying the two of them.", + "posterPath": "/8a3P39jVKwFBLTG4t6yMy1G11X.jpg", + "backdropPath": "/47ap7C2q9ceQp9n39sApTc0uKVH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 44, + "popularity": 2.739 + }, + { + "id": 214587, + "title": "Bye Bye, Earth", + "originalTitle": "ばいばい、アース", + "overview": "Belle Lablac doesn’t really fit in as the only human being in a world full of anthropomorphic animals. No fangs, no fur, no scales, no claws. Lonely and eager to discover where she comes from, Belle journeys to find answers to the questions of her heart. Carrying nothing but her giant sword, the Runding, she faces a world of possibilities and pitfalls in hopes of discovering the truth.", + "posterPath": "/iuo2jor1Hya3bT1imNxEScgoh5o.jpg", + "backdropPath": "/7KI43sAChDcCrLGT2kBACXduDX8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-07-12", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 16, + "popularity": 2.7388 + }, + { + "id": 156510, + "title": "Bibliophile Princess", + "originalTitle": "虫かぶり姫", + "overview": "When book-loving Lady Elianna spots Prince Christopher—her betrothed in name only—consorting with another noble lady, she realizes the recent rumors must be true. The prince has someone he truly loves, which means the annulment of their engagement is both inevitable and fast-approaching. What she doesn't realize is that this is merely a surface ripple—one of many where the truth runs deep, in a conspiracy surpassing her imagination!", + "posterPath": "/S0xduJgRyZCDVzTjtZVuHIGlhj.jpg", + "backdropPath": "/fXSESaKpHadFjisHuyurnLOxh4n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2022-10-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 25, + "popularity": 2.7367 + }, + { + "id": 68928, + "title": "Lemon Angel", + "originalTitle": "レモンエンジェル", + "overview": "An idol trio are thrown into various bizarre situations.", + "posterPath": "/t0PKnYdEL7PFGYxIs33frCqUOrg.jpg", + "backdropPath": "/9AIgvFOxJ7YWmks2WsumUc8mHsE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1987-10-02", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 4.4, + "voteCount": 5, + "popularity": 2.7367 + }, + { + "id": 76721, + "title": "Wanna Be the Strongest in the World", + "originalTitle": "世界でいちばん強くなりたい!", + "overview": "Sakura Hagiwara, the main vocalist of the nationally renowned idol group Sweet Diva, suddenly decides to become a female professional wrestler.", + "posterPath": "/1YaxVSLtXRH9qZjF4JIXML0PNDG.jpg", + "backdropPath": "/nmUqMxuuBbc2hPKXxHEAQqxMsxF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2013-10-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.941, + "voteCount": 17, + "popularity": 2.7331 + }, + { + "id": 83451, + "title": "Million Arthur", + "originalTitle": "叛逆性ミリオンアーサー", + "overview": "With an overabundance of “worthy” dignitaries, six Arthurs go to England to defeat the corrupt leadership that plagues the world.", + "posterPath": "/cX9GWxuJZl3xoEuDha9l3tfOBHm.jpg", + "backdropPath": "/xnIEH2sbDxGidigqKfLKVIoXxff.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-25", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.125, + "voteCount": 16, + "popularity": 2.7297 + }, + { + "id": 68960, + "title": "Wolf Girl & Black Prince", + "originalTitle": "オオカミ少女と黒王子", + "overview": "Erika Shinohara has taken to lying about her romantic exploits to earn the respect of her new friends. So when they ask for a picture of her \"boyfriend,\" she hastily snaps a photo of a handsome stranger, whom her friends recognize as the popular and kind-hearted Kyouya Sata.\n\nTrapped in her own web of lies and desperately trying to avoid humiliation, Erika explains her predicament to Kyouya, hoping he will pretend to be her boyfriend. But Kyouya is not the angel he appears to be: he is actually a mean-spirited sadist who forces Erika to become his \"dog\" in exchange for keeping her secret.\n\nBegrudgingly accepting his deal, Erika soon begins to see glimpses of the real Kyouya beneath the multiple layers of his outer persona. As she finds herself falling for him, she can't help but question if he will ever feel the same way about her. Will Kyouya finally make an honest woman out of Erika, or is she destined to be a \"wolf girl\" forever?", + "posterPath": "/7uyXTR4jVTV4NvvDyJrhdZIgjc5.jpg", + "backdropPath": "/bAyDxKRv10DeLIvkA07g0MVYquU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 72, + "popularity": 2.7274 + }, + { + "id": 67345, + "title": "Thunderbolt Fantasy", + "originalTitle": "Thunderbolt Fantasy -東離劍遊紀", + "overview": "In an Eastern-styled fantasy setting, a brother and sister team of sacred guardians is beset by the Xuan Gui Zong, minions of Miè Tian Hai, who seeks the Tian Xing Jiàn sword that they possess. Hai showing up himself leads to the defeat of the brother, but his sister, Dan Fei, jumps off a cliff to temporary safety. Later, a wandering swordsman comes across a ruined temple where a statue of Buddha is protected by an umbrella against the rain. When he takes the umbrella for himself, a man resting under a tree nearby informs him the he must be compassionate to the next traveler he meets as trade-off for taking the umbrella. But the next traveler is Dan Fei, who is still being pursued by the Xuan Gui Zong minions, and between that and the sorcery of the other man he finds himself unable to avoid getting involved.", + "posterPath": "/14mjNSdAgSKAD4RvwjQRL8gCNLv.jpg", + "backdropPath": "/Anmgg1tu9PDaK2t0WtWgx9FPpVI.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 16 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2016-07-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 10, + "popularity": 2.7248 + }, + { + "id": 279731, + "title": "Your Forma", + "originalTitle": "ユア・フォルマ", + "overview": "In 1992, a viral encephalitis pandemic led to the creation of \"Your Forma,\" an invasive brain-implanted device that records all sensory data. Special detectives called \"Cyber Investigators\" dive into this data to solve crimes. Prodigy Echika Hieda, isolated by her talent, is paired with Harold, a humanoid \"Amicus.\" Together, they uncover the world's deepest secrets.", + "posterPath": "/g0NFMpqPuon5iJRaNtalYBcyMJo.jpg", + "backdropPath": "/iYXJ0FklzUDt58WnURoGU3hTYiq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.273, + "voteCount": 11, + "popularity": 2.7247 + }, + { + "id": 258994, + "title": "Medaka Kuroiwa Is Impervious to My Charms", + "originalTitle": "黒岩メダカに私の可愛いが通じない", + "overview": "For Mona Kawai, winning hearts and turning heads comes naturally. Everything changes when Medaka Kuroiwa, a new transfer student, arrives. He won’t even give Mona a second look, and it turns her life upside down! Mona tries everything she can to win Medaka over, even going to the extreme at times. Tune in to a new rom-com about a queen bee and an unfazed boy among the school’s halls.", + "posterPath": "/8cjNjEYJVqj0nTeuZlMv8IUvI65.jpg", + "backdropPath": "/s4QEjHrJ1BXIjv6OQ1Jh67uVRYP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-01-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 18, + "popularity": 2.722 + }, + { + "id": 138948, + "title": "Malevolent Spirits: Mononogatari", + "originalTitle": "もののがたり", + "overview": "Filled with rage against spirits known as tsukumogami, Kunato Hyoma is sent to live with Nagatsuki Botan to help him see a different side. Though both are part of a clan that return the spirits back to their world with divine powers, their experiences with the otherworldly vessels are vastly different. Kunato, robbed of a loved one, and Nagatsuki, saved by them. Can she get through to him?", + "posterPath": "/j79vHpQsZ9vlQ3PQWfYKf1FsSkx.jpg", + "backdropPath": "/vinxuhciaCzxxvABqHxNWaZZGc2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 21, + "popularity": 2.7215 + }, + { + "id": 21174, + "title": "Sindbad the Sailor", + "originalTitle": "アラビアンナイト シンドバットの冒険", + "overview": "More than 1200 years ago, the impish Sindbad, a mischievous boy full of curiosity, sneaks into the royal palace to watch the acrobatic performances and learns that a wide world awaits beyond Baghdad. Hearing of the travels of his uncle Captain Ali, Sindbad decides to become a sailor and travel around the world. Leaving behind a note to his father, young Sindbad boards Captain Ali’s ship and-accompanied by a myna called Sheila-sets out for the greatest adventure of his life.", + "posterPath": "/60A2gjXPGD0yGKiYobqBQE2lq0q.jpg", + "backdropPath": "/4Qlx42xIZ0Q3AVpP7xCZ5WM7QJD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1975-10-01", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 20, + "popularity": 2.7201 + }, + { + "id": 44578, + "title": "Magic Kaito: Kid the Phantom Thief", + "originalTitle": "まじっく快斗", + "overview": "Kaito Kuroba is a normal teenage student whom loves being a magician and showing off to his classmates. His father dies in an accident 8 years prior and later finds out it was because of his fathers double life. Kaito finds out his father was a famous international criminal known as Kaitou Kid the Phantom Thief and that he was murdered by a mysterious organization for refusing to aid them in retrieving the \"Pandora Gem”. He vows to prevent the organization from gaining the gem and assumes his father's secret identity as kaitou kid.", + "posterPath": "/lK0VNYGpHgLjsh140BKmfnGOSWq.jpg", + "backdropPath": "/w0i81VaZJtBBehyUPrZShAIF9l2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 16, + 9648, + 80 + ], + "genres": [ + "Animation", + "Animation", + "Mystery", + "Crime" + ], + "releaseDate": "2010-04-17", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.059, + "voteCount": 17, + "popularity": 2.7192 + }, + { + "id": 66104, + "title": "SUPER LOVERS", + "originalTitle": "SUPER LOVERS", + "overview": "While spending summer with his mother, Haru meets Ren, a boy newly adopted by his mother. Getting along with Ren isn't easy as Haru's goal is to \"civilize\" him by the time summer ends. Their relationship slowly improves as Haru spends more time with Ren and in return Ren steadily warms up to him. Can they really become a \"family\" at the end of summer?!", + "posterPath": "/7YJDDmLwjnuc3CF8J1JeLaFvGTh.jpg", + "backdropPath": "/nFjzoQl6MX7rgM4V410TTnt7i8d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2016-04-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 37, + "popularity": 2.7181 + }, + { + "id": 23022, + "title": "Astro Boy", + "originalTitle": "鉄腕アトム", + "overview": "In 2030 AD, after being abandoned by his creator, a young boy robot is rescued by an Android Advocate, Dr Elefun, who adopts him as his own and guides him in the use of his special powers to aid and protect mankind and robot-kind.", + "posterPath": "/u3LVqlU9OLVN18uwIazxwgDVgdZ.jpg", + "backdropPath": "/qxZpjuNTECc8nTibvujSFSidU2l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1980-10-01", + "releaseYear": "1980", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 81, + "popularity": 2.7174 + }, + { + "id": 82895, + "title": "SSSS.GRIDMAN", + "originalTitle": "SSSS.GRIDMAN", + "overview": "Yuta Hibiki can’t remember who he is, and now he’s seeing and hearing things that others don’t! A voice from an old computer tells him to remember his calling, and he sees a massive, unmoving creature in the distance. Nothing’s making sense—until the behemoth springs to life! Suddenly, Yuta is pulled into a computer, reappearing in reality as the colossal hero—Gridman!", + "posterPath": "/4l9EA3CCn9BQi95Rj2xlj5PSZB.jpg", + "backdropPath": "/daqQkmsrwwO3W8RV5hsmMaGU0bx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 88, + "popularity": 2.716 + }, + { + "id": 34793, + "title": "Girls Bravo", + "originalTitle": "GIRLSブラボー", + "overview": "Small for his age, Yukinari has been bullied and abused by girls all his life. Now in high school, he has developed a rare condition: whenever girls touch him, or even come close, he breaks out in hives. Imagine his surprise, when he is suddenly transported to the city of Seiren on a mystic world invisibly orbiting the Earth, and populated with vast numbers of women and very few men. Fortunately, he has a new friend, Miharu-chan, whose touch inexplicably doesn't affect him.", + "posterPath": "/7oi1AruNAkgzKRn47muIP6Bq8iK.jpg", + "backdropPath": "/mRa2K6Fx2iPE0dyCGKpbFWBsMbk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2004-07-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 283, + "popularity": 2.7148 + }, + { + "id": 8727, + "title": "Daddy Long Legs", + "originalTitle": "私のあしながおじさん", + "overview": "Judy Abbott is an orphan living in New York, who at the age of 17 finds herself in receipt of a college scholarship and monthly allowance from a mysterious benefactor. Her benefactor believes she has great potential as a writer and wishes to see her succeed. The only payment he asks in return is that she write him a letter every month addressed to the pseudonym \"Mr. John Smith\", with the understanding that he will never reply.", + "posterPath": "/eZuyNToQ8ri5eAcJzHIp0FwDZiG.jpg", + "backdropPath": "/ekei3HikUTydvWGdbt0D5Tyn2cX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 18 + ], + "genres": [ + "Animation", + "Drama", + "Drama" + ], + "releaseDate": "1990-01-14", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 18, + "popularity": 2.7147 + }, + { + "id": 28502, + "title": "White Album", + "originalTitle": "WHITE ALBUM", + "overview": "Touya Fujii is a twenty-year-old college student dating a rising singer named Yuki Morikawa. Along the way, they are faced with numerous challenges throughout the course of events at Fuji’s college. Be prepared for an exciting journey!", + "posterPath": "/u6Grq2AKqzvTQTbpG6uhHTvi5Qf.jpg", + "backdropPath": "/eKYNWVBYviuVfNB9c0e3aPaJR9U.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16 + ], + "genres": [ + "Drama", + "Animation" + ], + "releaseDate": "2009-01-04", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 11, + "popularity": 2.7131 + }, + { + "id": 80477, + "title": "Angels of Death", + "originalTitle": "殺戮の天使", + "overview": "Most girls waking up without any memory and meeting a serial killer would panic, but not Rachel. In fact, far from being her biggest problem, killer Zack might just prove a convenient resource when it comes to finding a way out of the building in which they're both trapped!", + "posterPath": "/heT4HYY8FdQumrXPU93I6N0VeTd.jpg", + "backdropPath": "/pULVZQAxe7XbRnGtXN3fRq0EhqK.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2018-07-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.959, + "voteCount": 308, + "popularity": 2.7126 + }, + { + "id": 25499, + "title": "Umineko: When They Cry", + "originalTitle": "うみねこのなく頃に", + "overview": "As customary per year, the entire family is gathering on the island for a conference that discusses the current financial situations of each respective person. Because of the family head's poor health, this year involves the topic of the head of the family's inheritance and how it will be distributed.\n\nHowever, the family is unaware that the distribution of his wealth is the least of Ushiromiya Kinzo's concerns for this year's family conference. After being told that his end was approaching by his longtime friend and physician, Kinzo is desperate to meet his life's true love one last time: the Golden Witch, Beatrice. Having immersed himself in black magic for many of the later years in his life, Kinzo instigates a ceremony to revive his beloved upon his family's arrival on Rokkenjima.", + "posterPath": "/jSXaOtStb2vyNoGQSSXLT5EG0g7.jpg", + "backdropPath": "/tvoe0JHWnaBJbWKvGruprc0RrF2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 9648, + 80 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2009-07-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 63, + "popularity": 2.7121 + }, + { + "id": 35257, + "title": "Vicky the Viking", + "originalTitle": "小さなバイキング ビッケ", + "overview": "Vicky is the only son of Halvar, the formidable viking chief. Vicky renounces violence but nevertheless he is able to convince the seasoned viking warriors to take him along on their voyages. In dangerous situations, where their bravery and force are not quite enough to master the situation, the wild-eyed warriors learn to rely on Vicky's cleverness.", + "posterPath": "/jIR2RCOSRNfZoBYqwVYVfrcf9M6.jpg", + "backdropPath": "/ljtQfw7ujk4rtGKr7cNpsObDNTc.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1974-04-03", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 53, + "popularity": 2.7099 + }, + { + "id": 94541, + "title": "Assault Lily: BOUQUET", + "originalTitle": "アサルトリリィBOUQUET", + "overview": "On Earth in the near future, humanity faced imminent destruction from mysterious giant creatures known as \"Huge.\" The entire world unites against the Huge, and successfully develops weaponry known as \"CHARM\" (Counter Huge Arms) by combining science and magic. CHARM exhibits high rates of synchronization with teenaged girls, and the girls who use CHARM are viewed as heroes called \"Lilies.\" Throughout the world, \"Garden\" military academies are established to train Lilies to face the Huge and to serve as bases to protect and guide people.\n\nRiri Hitotsuyanagi managed to pass the exam to enter the prestigious Garden known as Yurigaoka Girls' School. She entered in an attempt to find Yuyu Shirai, a girl who rescued her in her past. This is a story about Riri and other girls who aim to become Lilies at one such Garden.", + "posterPath": "/iXLZtzmxRPMMYyNtSOysGWLEmd1.jpg", + "backdropPath": "/4peiJ4ve1GJulLAt1IA9y0XymN5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 60, + "popularity": 2.7097 + }, + { + "id": 35447, + "title": "Squid Girl", + "originalTitle": "侵略!イカ娘", + "overview": "Squid Girl has come to the land from the depths of the sea to conquer humanity in revenge for pollution of the ocean. Unfortunately she ruins the first house she uses as an invasion base and has to work to pay for repairs. Of course, she can't overcome the Aizawa sisters who manage the house, so who knows whether she can subjugate humankind.", + "posterPath": "/n9mhIbk2VE3bCDEm2aPsNZtZuOH.jpg", + "backdropPath": "/JPuk8H588WIUragF1EQNPVQRcG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 27, + "popularity": 2.7096 + }, + { + "id": 36001, + "title": "Cutie Honey Flash", + "originalTitle": "キューティーハニーF", + "overview": "Honey Kisaragi is a high school student at Sainte Chapelle Girls' School. On her 16th birthday, when she returns home, she discovers that her father Takeshi Kisaragi has been kidnapped by the Panther Claw gang because he had discovered a device that could allow the transformation of the human body.\n\nThat same evening, Honey Kisaragi meets a man with long white hair who gives her the said device. She thus becomes Cutie Honey and fights Panther Claw to save her father.\n\nBut a new transfer student, Seira Hazuki, will not make her task easy...", + "posterPath": "/gUm6R8zm0qqlC6070TnZkNCzZSM.jpg", + "backdropPath": "/xcCTezlBi75qB9LIuUgEtxdsMfO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1997-02-15", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 6.389, + "voteCount": 9, + "popularity": 2.7093 + }, + { + "id": 70972, + "title": "Please Take My Brother Away", + "originalTitle": "兄に付ける薬はない!", + "overview": "What's your brother like? To Miao, her brother Fen is someone who would tease her and make her explode 100 times a day; not a peaceful day as the two are fighting every single minute. However, when troubles come, Fen will become a caring, loving brother who protects his little sister at all cost.", + "posterPath": "/zCBGfrrCMu3axBk2UgCuEBAFrPn.jpg", + "backdropPath": "/nhiFpVOTBNyFHO3Ba57LTmyIWqG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-04-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.522, + "voteCount": 23, + "popularity": 2.7039 + }, + { + "id": 226905, + "title": "BUCCHIGIRI?!", + "originalTitle": "ぶっちぎり?!", + "overview": "Arajin Tomoshibi’s reunion with his old pal Matakara Asamine takes an unexpected turn when they stumble into a brawl with the toughest guys in town. And just when you thought things couldn’t get weirder, a colossal genie decides to drop in. Brace yourself for the ultimate showdown. It’s the clash of the cool and the magical!", + "posterPath": "/bhtkmLdMleHtGTq267VqhePgp5S.jpg", + "backdropPath": "/oziPYy02zzGejwvzsVOPgCaPqRv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-13", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 31, + "popularity": 2.7037 + }, + { + "id": 37101, + "title": "Star Driver", + "originalTitle": "STAR DRIVER 輝きのタクト", + "overview": "One night, a boy named Takuto washes up on shore swimming from the mainland. He later enrolls in Southern Cross High School as a freshman and makes new friends. However, beneath the school is a group of mysterious giants called Cybodies, which can be controlled by humans in an alternate dimension known as Zero Time. Takuto, The \"Galactic Pretty Boy\", finds himself dragged into opposition with the \"Glittering Crux Brigade\".", + "posterPath": "/usgW8WYgOHwPKEpXHEIktejZOiq.jpg", + "backdropPath": "/aYVhM9xQdGbBbaw9X70hLL23cEg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 11, + "popularity": 2.7031 + }, + { + "id": 34812, + "title": "Haré+Guu", + "originalTitle": "ジャングルはいつもハレのちグゥ", + "overview": "Haré was a happy boy living in the jungle with his mother, but then one day Guu showed up.", + "posterPath": "/wtO541BFRT6jp7MShlZNIOAnX9g.jpg", + "backdropPath": "/ir3FgE1siodL2DuPaWlUVYJisza.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2001-04-03", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 20, + "popularity": 2.6996 + }, + { + "id": 202821, + "title": "The Masterful Cat Is Depressed Again Today", + "originalTitle": "デキる猫は今日も憂鬱", + "overview": "When Saku took in a stray black cat, she never expected that he would become the equivalent of a housekeeping life partner. But Yukichi, a giant cat who towers over Saku, is not your ordinary feline. He takes great pride in his culinary skills, and a good sale at the supermarket always gets his whiskers twitching. Saku may not have her act together yet, but at least she has Yukichi!", + "posterPath": "/4fXOTVi4f3T9Ii2rljyCDuKnvVv.jpg", + "backdropPath": "/7adL88xQLVJ4ZjzZCJKQP9RsVuc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 29, + "popularity": 2.6922 + }, + { + "id": 42830, + "title": "Moribito: Guardian of the Spirit", + "originalTitle": "精霊の守り人", + "overview": "Balsa the spearwoman is a wandering warrior, who takes on the task of saving lives, in atonement for a past sin. On her journey, she happens to save a prince, and is tasked with becoming his bodyguard. And he is going to need one, for his own father, the emperor, wants him dead. Throughout the story, Balsa's past will come to light and they will uncover mysteries about Chagum's condition while developing a family-like relationship with each other and others.", + "posterPath": "/1AfvVo4mtAfmn7kjdpk3rlFgdm7.jpg", + "backdropPath": "/xzhigG2RlyHjWqHFyZBVcS2nkGG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2007-04-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.717, + "voteCount": 60, + "popularity": 2.6856 + }, + { + "id": 61414, + "title": "Gundam Reconguista in G", + "originalTitle": "ガンダム Gのレコンギスタ", + "overview": "The Universal Century, a history marked by space colonization and space warfare, has passed. Humanity's prosperity, which ushered in a new era known as the Regild Century (R.C.), was believed to endure alongside global peace. In RC 1014, Bellri Zenam, a pilot in training of the Capitol Guard is somehow chosen by the G-Self - a highly maneuverable Mobile Suit of unknown origin - to lead to uncover hidden truths that will shake the peace of the Regild Century era.", + "posterPath": "/zcjOBN1b7IlgCs6G3n6MPyvo6Uk.jpg", + "backdropPath": "/soxQOZ6cmQ6HhFA5gojvJsT5yru.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18, + 10768 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "War & Politics" + ], + "releaseDate": "2014-10-02", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 2.6844 + }, + { + "id": 134742, + "title": "CLASSROOM FOR HEROES", + "originalTitle": "英雄教室", + "overview": "“I want to be an ordinary person! Someone who's normal! I've already told you I don't have my power anymore!”\n\nBlade is a carefree transfer student whose only goal is to make friends with his classmates at Rosewood Academy, a school for heroes-in-training. On the surface, Blade seems like an ordinary boy, but he is hiding a miserable secret with seeds that start long ago, with the defeat of the Demon King at the hands of the Great Hero. Join this new class of friends as they unravel the mystery surrounding Blade, and journey toward becoming full-fledged Heroes!", + "posterPath": "/xf3k3EZzGWCpO68LWFgI8boryw5.jpg", + "backdropPath": "/7NXMz4qtIT608BIQx3pL4nsD24S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 92, + "popularity": 2.6841 + }, + { + "id": 34067, + "title": "Someday's Dreamers", + "originalTitle": "魔法遣いに大切なこと", + "overview": "Someday's Dreamers is a manga written by Norie Yamada and illustrated by Kumichi Yoshizuki. It was serialized in Kadokawa Shoten's Comic Dragon magazine from May 2002 to January 2003 and was later collected in two bound volumes. In 2006, Tokyopop released the manga in the United States under the name Someday's Dreamers.\n\nSomeday's Dreamers was also adapted into an anime series that was produced by J.C.Staff under the direction of Masami Shimoda. It is loosely based on the storyline of the first manga series with new characters added to the story. It ran for a total of 12 episodes on TV Asahi and was later licensed by Geneon Entertainment USA. However, due to the closure of Geneon USA, the series has been relicensed by Sentai Filmworks.\n\nAnother story set in the same universe, Someday's Dreamers: Spellbound, written and drawn by the same author and illustrator, was serialized in Kadokawa Shoten's Comic Dragon Age. It ran from December 2003 to February 2006 and was later released in five bound volumes. In 2006, Tokyopop released the manga in the United States under the name Someday's Dreamers: Spellbound.", + "posterPath": "/kPWHphwoXvXjz7Tdb8giYkYD7PV.jpg", + "backdropPath": "/pVHRrh5bsBhXpcgMrXgJXmEf1Z8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-01-09", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 6, + "popularity": 2.6827 + }, + { + "id": 207743, + "title": "Ranking of Kings: The Treasure Chest of Courage", + "originalTitle": "王様ランキング 勇気の宝箱", + "overview": "Get ready for a new collection of stories from Ranking of Kings!", + "posterPath": "/9txbeJIHla2QXW3bGi3pgjIsVp5.jpg", + "backdropPath": "/1U5G9ppuzVekYWPW9V4VPx86G9j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2023-04-14", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 38, + "popularity": 2.6814 + }, + { + "id": 97923, + "title": "Sleepy Princess in the Demon Castle", + "originalTitle": "魔王城でおやすみ", + "overview": "Syalis is a princess. A really cute one. When she gets kidnapped by the Demon King as a hostage, she's stuck in a castle full of demons, waiting to be rescued by her knight in shining armor. So what does she do? What any of us would. Take a nap—on a pillow she fashioned from her Teddy Demon guards. Duh.", + "posterPath": "/tioFJhE9y1LiNkvPOeYgzTxbzBa.jpg", + "backdropPath": "/lUWrh3wtY7nDG00b56oMvzk18s7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.363, + "voteCount": 131, + "popularity": 2.6807 + }, + { + "id": 62883, + "title": "GetBackers", + "originalTitle": "ゲットバッカーズ -奪還屋-", + "overview": "Ban Mido and Ginji Amano run a freelance business of recovering anything lost or stolen. They call themselves the GetBackers, and they're a super powered duo.", + "posterPath": "/22WtfwbpWM1RFUTh5l4qfW2xCgl.jpg", + "backdropPath": "/hw8vGukROGMlriQs4DkRn8Kifcr.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-10-05", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.458, + "voteCount": 36, + "popularity": 2.6798 + }, + { + "id": 236000, + "title": "Kinnikuman Perfect Origin Arc", + "originalTitle": "キン肉マン 完璧超人始祖編", + "overview": "Kinnikuman returns to the ring in an epic three-way battle between the Seigi, Akuma and Perfect Chojin factions and reveals the roots of the Chojin.", + "posterPath": "/tkhMzWi33pPpyxJDwAs3xiqLiGA.jpg", + "backdropPath": "/gZwfx7zDthxboj4rk2hIToobnHF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2024-07-14", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 8, + "popularity": 2.6797 + }, + { + "id": 78464, + "title": "DOREIKU The Animation", + "originalTitle": "奴隷区 The Animation", + "overview": "24 people enter a survival game. Each has a device called an SCM (slave control method), which can make their opponent into their slave. Each person has their own reason for participating in the game.", + "posterPath": "/q4J6PuFOEqUvPsvvCYrW3KkDWiF.jpg", + "backdropPath": "/z6W2iXldACg21sUdVMd2nc59jSe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 18 + ], + "genres": [ + "Animation", + "Crime", + "Drama" + ], + "releaseDate": "2018-04-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 11, + "popularity": 2.6784 + }, + { + "id": 221725, + "title": "Chibi Godzilla Raids Again", + "originalTitle": "ちびゴジラの逆襲", + "overview": "Welcome back, Chibi Godzilla! Everyone’s favorite little monster has made its return with the new anime series Chibi Godzilla Raids Again!", + "posterPath": "/be7uDWl2vWMX5OeAA8S6FNCT5Ei.jpg", + "backdropPath": "/eeM3vC21ob1iD2n9ca65fmOasJu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 2.6773 + }, + { + "id": 12565, + "title": "Those Who Hunt Elves", + "originalTitle": "エルフを狩るモノたち", + "overview": "Martial Artist Junpei, actress Airi, and artillery-obsessed student Ritsuko all find themselves transported from Japan to a magical world. When the elven priestess Celcia casts the spell to send them home, she is interrupted, and the spell is broken into parts that scatter throughout the world. The spell fragments imprint themselves onto the bodies of various female elves so the trio must travel in search of them.", + "posterPath": "/hHBAl44kt1m4KGBrVMWTKrYD5Uf.jpg", + "backdropPath": "/n00YPtmXqRiny74bSzK7z9ZLJ7U.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-10-04", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 15, + "popularity": 2.6769 + }, + { + "id": 68148, + "title": "Keijo!!!!!!!!", + "originalTitle": "競女!!!!!!!!", + "overview": "\"Keijo\" is a popular gambling sport where contestants stand on platforms floating on the water and must use their butts and chests to fight against each other to push each other off the platform. Nozomi Kaminashi, a high school student, aims to join the sport after she graduates. Nozomi was raised in a poor family and hopes to make lots of money by playing Keijo. She grew up training in gymnastics, and she has good balance and flexibility. After high school, Nozomi joins a training boarding school and enters the world of Keijo.", + "posterPath": "/AqFfPfjDWKczferx5lm0tAsN9RT.jpg", + "backdropPath": "/nyq3EE4lpmapzAxMx8UrIzs9xi1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 64, + "popularity": 2.6758 + }, + { + "id": 36089, + "title": "The Legend of the Legendary Heroes", + "originalTitle": "伝説の勇者の伝説", + "overview": "\"Alpha Stigma\" are known to be eyes that can analyze all types of magic. However, they are more infamously known as cursed eyes that can only bring destruction and death to others.\n\nRyner Lute, a talented mage and also an Alpha Stigma bearer, was once a student of the Roland Empire's Magician Academy, an elite school dedicated to training magicians for military purposes. However, after many of his classmates died in a war, he makes an oath to make the nation a more orderly and peaceful place, with fellow survivor and best friend, Sion Astal.\n\nNow that Sion is the the king of Roland, he orders Ryner to search for useful relics that will aid the nation. Together with Ferris Eris, a beautiful and highly skilled swordswoman, Ryner goes on a journey to search for relics of legendary heroes from the past, and also uncover the secrets behind his cursed eyes.", + "posterPath": "/eYoWjQceJGSndCgOpuEqJmAAQxb.jpg", + "backdropPath": "/yOYsxTl6XW15BXLojRA68OlOMfF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2010-06-26", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 56, + "popularity": 2.6742 + }, + { + "id": 236533, + "title": "Studio Apartment, Good Lighting, Angel Included", + "originalTitle": "ワンルーム、日当たり普通、天使つき。", + "overview": "After a long day, high schooler Shintaro Tokumitsu's plans for relaxing in his studio apartment take a turn when he discovers an angel on his balcony. The divine girl, Towa, reveals she's there to study humanity, and yet, despite his skepticism, he agrees to put her up. Prepare for the most heavenly and high jinks roommate experience of all time!", + "posterPath": "/zfgAYt8ewfWT7myLY7UgWGDLHsG.jpg", + "backdropPath": "/1n7IFhSvYknCy34MBDKxTdTRifO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 15, + "popularity": 2.674 + }, + { + "id": 77721, + "title": "Real Girl", + "originalTitle": "3D彼女 リアルガール", + "overview": "Tsutsui Hikari (a.k.a \"Tsuttsun\") is a high school student who is content with his virtual life of anime and video games. One day, he gets stuck cleaning the pool with Iroha, a real live girl who is stylish, sassy and known to be easy with boys ... and she aggressively approaches him! Tsuttsun, who has few friends and lives in his own world, finds himself smitten by the confident and wild Iroha ... and his whole world is turned upside down!! It's the awkward and pure love story of a boy who experiences relationship for the first time.", + "posterPath": "/3UmNynM1YXkYylyontGXPHncjOC.jpg", + "backdropPath": "/jwAUfgwFEzMYUh3lUht8VBB1SU7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-04-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.512, + "voteCount": 454, + "popularity": 2.6735 + }, + { + "id": 105903, + "title": "Eternity Shinya no Nurekoi Channel", + "originalTitle": "エタニティ ~深夜の濡恋ちゃんねる♡~", + "overview": "Anime adaptation of 12 romantic works from the Eternity Books manga label.", + "posterPath": "/jJGNByRqVXvulYk0HjGZUG0aZBY.jpg", + "backdropPath": "/cMcruaHNfXC97LmsW44e7VLE53X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2020-10-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 12, + "popularity": 2.6726 + }, + { + "id": 221310, + "title": "Doctor Elise: The Royal Lady with the Lamp", + "originalTitle": "外科医エリーゼ", + "overview": "Making up for her sins in a past life as the evil princess Elise, Aoi Takamoto dedicates her life to saving people as a doctor. But a fatal accident cuts her atonement short, and suddenly, she's back to her previous life, 10 years before her death! Will her foresight and medical brilliance help her change her past ways and heal an ailing empire, or is fate doomed to repeat itself?", + "posterPath": "/dYqcim8IjD8TNoae9SAcYrRmVXi.jpg", + "backdropPath": "/htJef5Rp7z1vMEuCV3SRdVIHr2x.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2024-01-10", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.528, + "voteCount": 36, + "popularity": 2.6703 + }, + { + "id": 70880, + "title": "Tsukigakirei", + "originalTitle": "月がきれい", + "overview": "Kotarou Azumi and Akane Mizuno became third year students at junior high school and are classmates for the first time. These two, along with fellow classmates, Chinatsu Nishio and Takumi Hira, relate to their peers through mutual understandings and feelings. As their final year at junior high school progresses, the group overcome their challenges to mature and become aware of changes in themselves.", + "posterPath": "/v8g98YzFpmCPfvk9FWQodTzTB0W.jpg", + "backdropPath": "/eqH0zSwNvgsysfGrEaBODoPpDHd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-04-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 131, + "popularity": 2.6699 + }, + { + "id": 44303, + "title": "Magical Taluluto", + "originalTitle": "まじかる☆タルるートくん", + "overview": "Fifth grader Edojou Honmaru is one of the most trodden-upon losers in his class, until he meets Magical Taruruuto-kun. Taruruuto's powers help him deal with all his hardships, such as girls, bullies, and numerous other challenges.", + "posterPath": "/xgOancQdN2VMOCpcGTkBdxRuIFC.jpg", + "backdropPath": "/a7AJbi2vW3XNRJtun6hfcEbOy0l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1990-09-02", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 2.6669 + }, + { + "id": 96150, + "title": "Seton Academy: Join the Pack!", + "originalTitle": "群れなせ!シートン学園", + "overview": "Seton Academy, a school full of animals where, thanks to population decline, there are fewer humans than any other creature. Mazama Jin, an animal hater and the only human male in his class, falls in love with Hino Hitomi, the only female human, the moment he lays eyes her. However he soon finds himself entangled with various other creatures after he reluctantly joins the 'pack' of Lanka the wolf, the only other member of her pack. After getting to know each other, the two decide to create a cooking club, and after a few bad-blooded misunderstandings, Ranka soon joins the club as well.\n\nThus begins the howl-some and howl-arious story of two normal humans; an adorable wolf; a cheerful koala; a sluggish, blonde sloth; and a feline with cattitude in their newfound club—in a story that teaches that friendship can be forged by creatures of different kinds.", + "posterPath": "/yXSH5BYOhYt26S5x7Aqz2VXj6P1.jpg", + "backdropPath": "/5TUEto1tKNfwdFwNkVrntsEepKk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 234, + "popularity": 2.6668 + }, + { + "id": 27117, + "title": "Ninja Scroll: The Series", + "originalTitle": "獣兵衛忍風帖", + "overview": "Fourteen years after defeating the immortal warrior Himuro Genma and thwarting the Shogun of the Dark's evil plans, Kibagami Jubei continues to roam all over Japan as a masterless swordsman. During his journey, he meets Shigure, a priestess who has never seen the world outside her village. But when a group of demons destroys the village and kills everyone, Jubei becomes a prime target after acquiring the Dragon Jewel — a stone with an unknown origin. Meanwhile, Shigure — along with the monk Dakuan and a young thief named Tsubute — travels to the village of Yagyu. And with two demon clans now hunting down Shigure, Dakuan must once again acquire the services of Jubei to protect the Priestess of Light.", + "posterPath": "/3FqHYYSYAJCco6kZkASA4iWGFyT.jpg", + "backdropPath": "/grezR86HaQoPPUJ1pebgVKbbhtY.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2003-04-14", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.617, + "voteCount": 60, + "popularity": 2.6668 + }, + { + "id": 25891, + "title": "Fafner Exodus", + "originalTitle": "蒼穹のファフナー EXODUS", + "overview": "2150 A.D. The battle with the Festum, the silicon life-forms from distant outer space, had reached a new dimension. The North Polar Meir that was crushed during the First Azure Operation had dispersed its fragments all over the world. They all started activity on their own as independent Meirs. Most of the Meirs harbored hatred towards humanity and challenged a fight, however, a portion of the Festum chose coexistence with mankind. Amongst the crossfire, the Ryugujima island alone disappeared from the forefront of battle and continued its silence. The island had gained a means to converse with the Meir since their encounter with Misao Kurusu two years ago. The children of ALVISS had been searching for a way to understand the enemy as they prepared for battle. And now, once again, further evolution was about to befall the island. A girl that understands the language of the Festum, and a girl protected by a Festum. When the two meet, the doors to a new universe opens.", + "posterPath": "/jqE5UkBE5an0xFWoffyPN1qpoAH.jpg", + "backdropPath": "/1whoAOJY79wBOwbhjUz0po9SUot.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-01-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 9, + "popularity": 2.6588 + }, + { + "id": 130996, + "title": "The Tatami Time Machine Blues", + "originalTitle": "四畳半タイムマシンブルース", + "overview": "It is August 12th. After the remote control to his boarding house's only air conditioning unit is inadvertently destroyed by spilled cola, \"I\" devises a plan to return to yesterday in a time machine to recover the remote before it breaks. However, his prankster friend Ozu cannot resist playing with past events, even if it means bringing the universe to the brink of destruction. Now \"I\" finds himself racing through time to avoid disaster.", + "posterPath": "/5OA5QH2dCsygjEOAsfp5FLW4Y6Q.jpg", + "backdropPath": "/hQPxYEoF9e2fpU9BMc3dPKMrCD3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-09-14", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 22, + "popularity": 2.6579 + }, + { + "id": 92591, + "title": "Drifting Dragons", + "originalTitle": "空挺ドラゴンズ", + "overview": "Dragons, the rulers of the sky. To many people on the surface, they are a dire threat, but at the same time, a valuable source of medicine, oil, and food. There are those who hunt the dragons. They travel the skies in dragon-hunting airships. This is the story of one of those ships, the “Quin Zaza,” and its crew.", + "posterPath": "/yOJaVdGH5P8MuHgIJa5T9Aq0yYk.jpg", + "backdropPath": "/eS87GW6iMXjAjzB8G5R9GZ9RZm5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 53, + "popularity": 2.6572 + }, + { + "id": 34732, + "title": "Tenjho Tenge", + "originalTitle": "天上天下", + "overview": "The story primarily focuses on the members of the Juken Club and their opposition, the Executive Council, which is the ruling student body of a high school that educates its students in the art of combat. As the story unfolds, both groups become increasingly involved with an ongoing battle that has been left unresolved for four hundred years.", + "posterPath": "/eDsZvcqvuJaN0E97MsjSv8Taeyi.jpg", + "backdropPath": "/qdwQHwXMytEvJOFycJcc3W6lzCq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2004-04-01", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.609, + "voteCount": 124, + "popularity": 2.6568 + }, + { + "id": 37575, + "title": "Seikimatsu Occult Academy", + "originalTitle": "世紀末オカルト学院", + "overview": "Occult Academy is a Japanese anime television series produced by A-1 Pictures and Aniplex and directed by Tomohiko Itō. The 13-episode anime premiered in Japan on the TV Tokyo television network on July 6, 2010. Occult Academy is the third project of Anime no Chikara. It was shown by Crunchyroll an hour after the Japanese broadcast. A manga adaptation of the anime is currently serialized in Media Factory's Monthly Comic Alive. A series of DVD/Blu-ray releases are made over six volumes. Volumes one through five each contain two episodes from the series and comes with extras, such as bonus songs sung by various voice actors for the characters. The final volume covers the last three episodes There are also four spinoff episodes, the first of which is included with the second volume. The series has been picked up in North America by NIS America, who released the series on Blu-ray on May 8, 2012.", + "posterPath": "/6Vz1goAvLqq87FC8BI1DSlt6TKI.jpg", + "backdropPath": "/4k57W4VONxM9xEaaCwLsWtwsU7B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2010-07-06", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 48, + "popularity": 2.6565 + }, + { + "id": 72362, + "title": "Welcome to the Ballroom", + "originalTitle": "ボールルームへようこそ", + "overview": "Tatara is an average middle school student with no particular dreams until an unexpected incident draws him into the fascinating world of ballroom dancing. “If I can just find one thing to be passionate about...” He dives into the world of dance, believing it's his opportunity to change. “Dance is a passion!”", + "posterPath": "/iGf49kruXI3mMpfBD43ZtxXE7MC.jpg", + "backdropPath": "/pvEPr5COs1ZxoQwFmCQckXVt5e9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2017-07-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.733, + "voteCount": 90, + "popularity": 2.6555 + }, + { + "id": 76124, + "title": "School Babysitters", + "originalTitle": "学園ベビーシッターズ", + "overview": "After losing both parents in a fatal plane crash, teenager Ryuuichi Kashima must adjust to his new life as the guardian of his younger brother Kotarou. Although Ryuuichi is able to maintain a friendly and kindhearted demeanor, Kotarou is a reserved toddler still too young to understand the reality of the situation. At their parents' funeral, they are approached by Youko Morinomiya, the stern chairman of an elite academy, who decides to take them under her care.\n\nHowever, there is one condition Ryuuichi must fulfill in exchange for a roof over their heads and enrolment in the school—he must become the school's babysitter. In an effort to support the female teachers at the academy, a babysitter's club was established to look after their infant children; unfortunately, the club is severely short-staffed, so now not only is Ryuuichi responsible for his little brother, but also a handful of toddlers who possess dynamic personalities.", + "posterPath": "/q7CVITR2Ca8kg54hZPGIEoctsrf.jpg", + "backdropPath": "/lOVu2fC0iUgtAl2n3nWJlhsNyFO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2018-01-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 53, + "popularity": 2.6529 + }, + { + "id": 274741, + "title": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "originalTitle": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "overview": "Philia Adenauer hails from a family renowned for producing Saints for generations in the Kingdom of Girtonia. Saints fight to protect humankind from monsters, and Philia underwent rigorous education and training to earn her title. After her fiancé, Julius, breaks off their engagement, Philia is sold to the kingdom of Parnacorta for resources. Will her homeland survive without her?!?", + "posterPath": "/dBvBEN0uC7nnNtPjpmxVQcjO97y.jpg", + "backdropPath": "/2hefpQz2FYVzQHuAx9SilJV73fU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.028, + "voteCount": 18, + "popularity": 2.6522 + }, + { + "id": 42142, + "title": "Un-Go", + "originalTitle": "UN-GO", + "overview": "Un-Go is set in a war-torn Tokyo, in a near-future Japan. In response to Japan sending their military abroad as peacekeeping forces, terrorists launched multiple attacks on Japan, killing many people and destroying much of its cityscapes. Some time after the war receded to a period of uneasy peace, the Japanese Parliament passed the \"Information Privacy and Protection Act\", which gives the Japanese government control over the Internet. Detective Shinjuurou Yuuki and his strange partner Inga make a living in solving crimes and exposing human souls, all influenced in some way by the dystopian backdrop.", + "posterPath": "/dqbdyrHRIUqHvPzFbVRfFYstiqU.jpg", + "backdropPath": "/qEakqZN8kLK71amM0g26Shg1rHD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-10-14", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 13, + "popularity": 2.651 + }, + { + "id": 34175, + "title": "Onmyou Taisenki", + "originalTitle": "陰陽大戦記", + "overview": "All his life, Riku Tachibana has been raised by his grandfather. For some reason, the old man has always been fond of strange hand gestures, and they've rubbed off on Riku, who performs them almost subconsciously, to his classmates' great amusement. One day, however, it suddenly becomes clear to Riku what his grandfather has been surreptitiously teaching him. And the teachings could mean the difference between life and death for Riku.", + "posterPath": "/rj8UtXq7HbEDhnc0a7KKbGV5ya1.jpg", + "backdropPath": "/BqMsGYtnV0cgo001rZFUPt9HKA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-09-30", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 5, + "popularity": 2.6493 + }, + { + "id": 13230, + "title": "Pokémon Chronicles", + "originalTitle": "ポケットモンスター サイドストーリー", + "overview": "Pokémon Chronicles, partly known in Japan as Pocket Monsters Side Stories, is a spin-off series of the Pokémon anime, revolving around characters other than Ash Ketchum.", + "posterPath": "/wjQKZR2IdQpAZU1ngPHGzrqcknb.jpg", + "backdropPath": "/73ltsFaQOlS9KXZUGiEOESkzQNP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2002-12-03", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 190, + "popularity": 2.6493 + }, + { + "id": 26201, + "title": "Air", + "originalTitle": "AIR", + "overview": "Yukito Kunisaki is on a journey in search of the Winged Maiden who was bound to the sky centuries ago after hearing the old childhood tale from his mother. As Yukito shows his puppet show to people in an attempt to make some money, he finds himself in a small town in which he did not expect to stay very long. However, when he meets an unusual girl named Misuzu, things take a drastic turn as he is invited to stay with her.", + "posterPath": "/cZ97grqenZ0oB3Da9NKkucNbSpj.jpg", + "backdropPath": "/h0mbpTHdWTvNg4fzbjoqWI3jtjM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-01-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 65, + "popularity": 2.6462 + }, + { + "id": 77025, + "title": "Dragon Quest: Legend of the Hero Abel", + "originalTitle": "ドラゴンクエスト~勇者アベル伝説~", + "overview": "In the Ariahan village, on her 15th birthday, Tiala receives a red jewel from the elder Yogi. The jewel is the key to awaken the Great Dragon, whose blood grants eternal life. Due to this, the demon Baramos kidnaps Tiala. His childhood friend, Abel tries unsuccessfully to save her. He is given a blue jewel, the counterpart of the jewel that Tiala received, that can seal the Great Dragon and embarks on a mission to rescue Tiala.", + "posterPath": "/8PVAxZOVk1VXErELiuL9cmELCrx.jpg", + "backdropPath": "/dhvbsdoM7xIDDKjJOMqyVcfrapc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1989-12-02", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 5, + "popularity": 2.6451 + }, + { + "id": 44038, + "title": "Ginga e Kickoff!!", + "originalTitle": "銀河へキックオフ!!", + "overview": "The story follows a boy who was in a soccer team, but it was disbanded due to not enough players. However, after the boy meets a female professional soccer player, he aims to bring his soccer team back.", + "posterPath": "/ofBxQKKxnbZQmTENaG1mIgzfoOE.jpg", + "backdropPath": "/vBPoQ31jMmdPaVWbw8PQot0wAmE.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2012-04-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 9.1, + "voteCount": 7, + "popularity": 2.6446 + }, + { + "id": 35529, + "title": "Magical Angel Creamy Mami", + "originalTitle": "魔法の天使クリィミーマミ", + "overview": "Creamy Mami, the Magic Angel is a magical girl anime series by Studio Pierrot which aired from 1983 to 1984 on Nippon Television. It went on to have five OVA adaptions and featured in other Studio Pierrot special presentations. A three volume manga was released during the original TV run, with the story written by Kazunori Itō and art by Yuuko Kitagawa. This was the first of five magical girl anime to be produced by Studio Pierrot, and the first of these to feature the designs of Akemi Takada. In 2005, the web-poll for TV Asahi's top-100 anime of all time saw Creamy Mami, the Magic Angel poll 82nd. The series is currently streaming in North America via Yomiuri Group's planned Anime Sols video service, as of spring 2013. Thus far, a limited DVD release of the first thirteen episodes has been successfully crowd-funded at Anime Sols, with the second set of episodes currently in crowd-fund mode.", + "posterPath": "/uwYN4cWm6ncjNe0aWiUUr908scQ.jpg", + "backdropPath": "/5gSFRGzBd32NKVEKN0YHOa1Lc5r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "1983-07-01", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 9, + "popularity": 2.6436 + }, + { + "id": 66941, + "title": "ReLIFE", + "originalTitle": "ReLIFE", + "overview": "Arata Kaizaki (27) quit the job he landed after graduation in only three months. His life did not go well after that. Now his parents are threatening to stop sending money, and want him to come back to the country. He has no friend or girlfriend to share his troubles with...as he hits rock bottom a strange man named Ryou Yoake appears. He invites Arata to join a societal rehabilitation program for NEETs called ReLife. This program uses a mysterious drug to make him look younger, and sends him back to high school for a year...", + "posterPath": "/aRK64bB8hMsuZZnitebPyKqOR5d.jpg", + "backdropPath": "/j8gNkno0nWmwAsIJd19wa3wryn6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.572, + "voteCount": 187, + "popularity": 2.6433 + }, + { + "id": 34771, + "title": "Saikano", + "originalTitle": "最終兵器彼女", + "overview": "Saikano: The Last Love Song on This Little Planet. is a manga, anime, and OVA series by Shin Takahashi, creator of Iihito and Kimi no Kakera. Saikano was originally serialized in Shogakukan's Big Comic Spirits magazine.\n\nA live-action movie adaptation was released in Japan on January 28, 2006 with Aki Maeda starring as Chise.\n\nThe Saikano manga and anime series has been licensed and is being distributed by Viz Media in English in North America. The anime series is distributed in the UK by Manga Entertainment.\n\nAlthough the city is not mentioned by name in the series, many of the locations used in Saikano can by all probability be found in Otaru-shi, west of Sapporo. The train station, \"Hell Hill\", the Asahi Observation Hill, the view over the harbor, and the school all have similar looking counterparts in the city of Otaru.", + "posterPath": "/hScmm5ToLt0v0b8Yb0e7IboEyUd.jpg", + "backdropPath": "/bdCCnmI68GfAgaYQpFfFB0B9T1P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-07-02", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 89, + "popularity": 2.6422 + }, + { + "id": 116727, + "title": "ODDTAXI", + "originalTitle": "オッドタクシー", + "overview": "While working as a taxi driver on the hectic streets of Tokyo, a reticent walrus gets pulled into a mystery involving a missing teenage girl.", + "posterPath": "/x3vFYmyz6gqbMwi4B9tHbUX2R60.jpg", + "backdropPath": "/m7RQ7l2FnCTEnH58Zm8SQzJGYQH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "2021-04-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 178, + "popularity": 2.6417 + }, + { + "id": 205743, + "title": "No Longer Allowed in Another World", + "originalTitle": "異世界失格", + "overview": "Pulled into an otherworldly adventure with cute sidekicks and superpowers, you’d think Osamu hit the jackpot. Nope! From a time before pixels, the early 20th-century gloomy author just wants to find a quiet place to meet his maker, not to rack up XP. Sadly, his poetic demise is constantly thwarted by inconvenient heroics. Dive into the hilariously tragic life of the most reluctant hero!", + "posterPath": "/bO39Vo712EVr7nxKi1X4xk4GxEm.jpg", + "backdropPath": "/xOffg6d0o3XqdaZkhQApBhm1lEH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 42, + "popularity": 2.6373 + }, + { + "id": 34722, + "title": "Angelic Layer", + "originalTitle": "機動天使エンジェリックレイヤー", + "overview": "12-year-old Misaki Suzuhara has just gotten involved in Angelic Layer, a battling game using electronic dolls called angels. Even as a newbie, Misaki shows advanced skills as she meets new friends and enters Angelic Layer tournaments to fight the greatest Angelic Layer champions of the nation.", + "posterPath": "/rrdSAKHOZLmBag2PMceTTUEcEF4.jpg", + "backdropPath": "/2YbCFo3XaBWzXtcwkYxKjTSc3qG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-04-01", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 13, + "popularity": 2.6368 + }, + { + "id": 104518, + "title": "POKÉTOON", + "originalTitle": "POKÉTOON", + "overview": "A series of animated shorts based on the Pokémon franchise, with each episode telling a different story ranging from silly to heartwarming and presented with a unique art style.", + "posterPath": "/sI9oq61ucu2zaeAsB9ktouAc4GF.jpg", + "backdropPath": "/7HJ3ffMZPMkdfkK9kVFaO4YxQwF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751 + ], + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "2020-06-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 12, + "popularity": 2.6363 + }, + { + "id": 256744, + "title": "Flower and Asura", + "originalTitle": "花は咲く、修羅の如く", + "overview": "The story is set in Tonakishima, a small island with a population of 600. Hana, a high school girl who lives on the island, loves recitals, and holds regular reading sessions for the island's children. Mizuki, the president of the Broadcasting Club, senses Hana's power to attract people through her reading and invites her to join the club. Hana joins the Broadcasting Club and experiences many firsts with the other members.", + "posterPath": "/8r6Fv7tNRVOH5uKf1rkj6sK8KWF.jpg", + "backdropPath": "/5gdqwB0uYyh2oIGNGZg2a1032Ni.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-01-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 10, + "popularity": 2.636 + }, + { + "id": 115911, + "title": "Orient", + "originalTitle": "オリエント", + "overview": "During the Warring States era, the feuding generals were suddenly struck down one after another by the demonic Kishin. In the 150 years since, groups of individuals have continued to resist Kishin control. They are called Bushi bands. When they were young, Musashi and Kojiro would hear tales about the Bushi from Kojiro's father, and the two of them dream to form the strongest Bushi band. One day, as Musashi struggles with his choices, he witnesses humans being torn apart by oni. Forced to face the truth, Musashi rises up against the powerful oni to make his dream with Kojiro come true!", + "posterPath": "/jE5cgpooUbp8XJK7tPlJxjz5kp5.jpg", + "backdropPath": "/2IgdwHAtYmcyVZ0t56oTogj4uBJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 65, + "popularity": 2.6345 + }, + { + "id": 64671, + "title": "The Asterisk War", + "originalTitle": "学戦都市アスタリスク", + "overview": "Invertia was a meteor storm that caused an unprecedented disaster during the 20th century. Because of this disaster, numerous cities around the world were destroyed. However, within the meteor, an unknown element called mana was discovered. It allowed human technology to make rapid strides giving rise to a new species of super-powered humans, the Star Pulse Generation (Genestella). The Festas (Star Warrior Festivals) host battles between Genestella at a city of six academies called “Rikka,” also commonly known as “Asterisk.”\n\nScholarship student Ayato Amagiri transferred into Seidoukan Academy in order to fulfill his own wish, swearing he too will fight in this city.", + "posterPath": "/f3ZgoCfGwKlPEbKXwkY4esfN57s.jpg", + "backdropPath": "/rkRTJRK0UnKkTrmqEhC2HRCtEnW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 205, + "popularity": 2.6344 + }, + { + "id": 95433, + "title": "Kakushigoto", + "originalTitle": "かくしごと", + "overview": "Single father Kakushi Goto has a secret. He’s a top-selling artist of popular erotic manga, but his impressionable young daughter, Hime, can never find out! Now he’s having to bend over backwards just to keep her inquisitive little mind from discovering what he does for a living.", + "posterPath": "/d69Vp6RRezCK85TUWbJBPI06esT.jpg", + "backdropPath": "/2LEo6XM1TO5NgK1jBkzAmPbbMXh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-04-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.858, + "voteCount": 137, + "popularity": 2.6316 + }, + { + "id": 65369, + "title": "Grimgar of Fantasy and Ash", + "originalTitle": "灰と幻想のグリムガル", + "overview": "Fear, survival, instinct. Thrown into a foreign land with nothing but hazy memories and the knowledge of their name, they can feel only these three emotions resonating deep within their souls. A group of strangers is given no other choice than to accept the only paying job in this game-like world—the role of a soldier in the Reserve Army—and eliminate anything that threatens the peace in their new world, Grimgar.\n\nWhen all of the stronger candidates join together, those left behind must create a party together to survive: Manato, a charismatic leader and priest; Haruhiro, a nervous thief; Yume, a cheerful hunter; Shihoru, a shy mage; Mogzo, a kind warrior; and Ranta, a rowdy dark knight. Despite its resemblance to one, this is no game—there are no redos or respawns; it is kill or be killed.\n\nIt is now up to this ragtag group of unlikely fighters to survive together in a world where life and death are separated only by a fine line.", + "posterPath": "/dP9okxs6ZrzPubTS3rhmrMDgMWe.jpg", + "backdropPath": "/2VbLfSlnPaxGmyhtuV12aFsg5HL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2016-01-11", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 132, + "popularity": 2.6311 + }, + { + "id": 129195, + "title": "Parallel World Pharmacy", + "originalTitle": "異世界薬局", + "overview": "A young pharmacologist and researcher in Japan died from overworking, and was reincarnated in a Medieval Parallel Europe. He was reincarnated as a 10-year-old apprentice to a famous Royal Court pharmacist, had attained an inhuman skills of ability to see through disease, material creation, and material destruction. In a society in which dubious medical practice are rampant, price gouging thru the monopoly of the pharmacist guild, and good medicine aren't available to the commoners. He was recognized by the Emperor at that time and opened a Pharmacy at the corner of the town.\n\nHe will wipe out the fraud that has swept the world, and deliver to the commoners a truly effective medicine that was developed using present day pharmacology. Thus the boy pharmacist will cheat by using his previous knowledge to create innovative medicines while helping the people of the parallel world, a story about living his new life to the fullest this time.", + "posterPath": "/52PZhMEggFTd4YBsnpDZZLW44xQ.jpg", + "backdropPath": "/prz10dLj89r3pP7CBA1TKq73ZzW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 75, + "popularity": 2.6256 + }, + { + "id": 281512, + "title": "My Melody & Kuromi", + "originalTitle": "My Melody & Kuromi", + "overview": "When My Melody's visit to the Cloud Kingdom leads to a whirlwind of trouble, can she, Kuromi and their friends save their home before it's too late?", + "posterPath": "/yKFFgGD9JCX7cXZerg2jXh1dMI7.jpg", + "backdropPath": "/ttx0PmqmgbSwWbI1th4MvP6G8YX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2025-07-24", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.346, + "voteCount": 26, + "popularity": 2.6218 + }, + { + "id": 113687, + "title": "Remake Our Life!", + "originalTitle": "ぼくたちのリメイク", + "overview": "Hashiba Kyouya is a 28-year-old game developer. With his company going bankrupt, and him losing his job, he returns to his hometown. Looking at the success of creators of his age, he finds himself regretting his life decisions as he lay distressed on his bed. As Kyouya wakes up, he discovers that he has traveled ten years back to the time before he entered college. Will he be able to finally make things right?", + "posterPath": "/wDzEZowkUbnbOrtLv178i6xoIjG.jpg", + "backdropPath": "/4mZoVBp6ePNZMkmPSJK6vPKejwZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2021-07-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.246, + "voteCount": 57, + "popularity": 2.6214 + }, + { + "id": 207965, + "title": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "originalTitle": "転生王女と天才令嬢の魔法革命", + "overview": "Despite her supposed ineptitude with regular magic, Princess Anisphia defies the aristocracy’s expectations by developing “magicology,” a unique magical theory based on memories from her past life. One day, she witnesses the brilliant noblewoman Euphyllia unjustly stripped of her title as the kingdom’s next monarch. That’s when Anisphia concocts a plan to help Euphyllia regain her good name-which somehow involves them living together and researching magic! Little do these two ladies know, however, that their chance encounter will alter not only their own futures, but those of the kingdom...and the entire world!", + "posterPath": "/4cPzbS1vgV6GY5xiwULwxMGrFHE.jpg", + "backdropPath": "/lQSFvNAq0CCpToL3tN0WH8KaSqA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2023-01-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.519, + "voteCount": 52, + "popularity": 2.6203 + }, + { + "id": 65816, + "title": "Undefeated Bahamut Chronicle", + "originalTitle": "最弱無敗の神装機竜", + "overview": "Lux, a former prince of an empire named Arcadia that was overthrown via a rebellion five years earlier, accidentally trespasses in a female dormitory's bathing area, sees the kingdom's new princess Lisesharte naked, incurring her wrath. Lisesharte then challenges Lux to a Drag-Ride duel. Drag-Rides are ancient armored mechanical weapons that have been excavated from ruins all around the world. Lux used to be called the strongest Drag-Knight, but now he's known as the \"undefeated weakest\" Drag-Knight because he will absolutely not attack in battle. After his duel with Lisesharte, Lux ends up attending the female-only academy that trains royals to be Drag-Knights.", + "posterPath": "/ymEG0G9uMSzTa5PZLDvs8UjJ9zs.jpg", + "backdropPath": "/2XxrBVlYe9QSZFDhKWkaVDEVKaY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-11", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 109, + "popularity": 2.6192 + }, + { + "id": 31678, + "title": "Kekkaishi", + "originalTitle": "結界師", + "overview": "Yoshimori Sumimura is a 14-year-old student at Karasumori School. Following in the tradition that's come down through the generations, he is the twenty-second Kekkaishi of the Sumimura clan. But he’s constantly fighting with his rival, Tokine Yukimura—his childhood friend and also a Kekkaishi—about who is the rightful heir to the magical barrier arts. Protecting people from danger while growing stronger himself, Yoshimori will battle the forces of evil again tonight!", + "posterPath": "/9z8AQd7jy9LqK01tJBcnYSU4jvT.jpg", + "backdropPath": "/uPnblPIqNiBlHi5NmoBQa6GJCMP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-10-16", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 17, + "popularity": 2.6191 + }, + { + "id": 273048, + "title": "I'm Living with an Otaku NEET Kunoichi!?", + "originalTitle": "ニートくノ一となぜか同棲はじめました", + "overview": "In order to protect an ordinary businessman, Tsukasa Atsumi, from demons, a genius kunoichi, Shizuri Ideura, signs a master-servant contract with him on the condition that she stays with him. Despite her cool appearance of defeating demons, Shizuri is an otaku NEET who spends all her time playing video games. While Shizuri is spoiled by Tsukasa and leads a lazy cohabitation life, the quirky Kunoichi gather together.", + "posterPath": "/jzgixTaVH9SfeOv6bMtNbETyaCZ.jpg", + "backdropPath": "/532ZdugTqAT9XH38oA318Eh0gzG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2025-01-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 8, + "popularity": 2.6181 + }, + { + "id": 65835, + "title": "Captain Tsubasa J", + "originalTitle": "キャプテン翼J", + "overview": "Captain Tsubasa J is a TV anime series that retells the story of the original manga and also adds some arcs from the World Youth Saga manga. The anime was originally broadcast by Fuji Television in Japan from 1994-10-21 to 1995-12-22 with 47 episodes. The animation was done by Studio Comet. The series was suspended due to budget constraints.", + "posterPath": "/utlvq1mRI77yO8JZTWTTgfoIUHc.jpg", + "backdropPath": "/TvtgclnnmTm7xtBdvhJOto9o2v.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "1994-10-21", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 58, + "popularity": 2.6175 + }, + { + "id": 23406, + "title": "Trinity Blood", + "originalTitle": "トリニティ・ブラッド", + "overview": "Many centuries ago, man's Armageddon gave birth to the vampires' wrath. As man and immortal clash, a reality-shattering threat looms. Hope resides solely in a new breed of hunter operating under the Vatican's authority. The true battle between holiness and evil has begun.", + "posterPath": "/vGNXftjI4rvZaM5jrL68HcgFEuf.jpg", + "backdropPath": "/udNVvupHVsdtU3J3ugDSITbFY4A.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-29", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 79, + "popularity": 2.6142 + }, + { + "id": 68103, + "title": "Drifters", + "originalTitle": "ドリフターズ", + "overview": "Shimazu Toyohisa is a real-life samurai who fought in the pivotal Battle of Sekigahara. In his dying moments, Shimazu is transported to a world of magic with other famous warriors throughout history. These warriors are forced to fight each other in an endless battle.", + "posterPath": "/1r91JxYLyfEULX19EjFZqiOjl4m.jpg", + "backdropPath": "/pnIhvvYZytNDoDqwmxItWeSaDbp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 95, + "popularity": 2.6131 + }, + { + "id": 31714, + "title": "Space Pirate Captain Harlock", + "originalTitle": "宇宙海賊キャプテンハーロック", + "overview": "When a mysterious invader from the stars catches Earth unawares, only the legendary space pirate Captain Harlock and the crew of the Arcadia have the will to stand against them.", + "posterPath": "/uxME9jveTHhoKKqN0e2PaotoJmv.jpg", + "backdropPath": "/emBhP4hN3oNNx2QapodTMAAMFyv.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1978-03-14", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 48, + "popularity": 2.6118 + }, + { + "id": 223780, + "title": "Firefighter Daigo: Rescuer in Orange", + "originalTitle": "め組の大吾 救国のオレンジ", + "overview": "Daigo Toake burns with remarkable talent and unparalleled determination. Shun Onoda struggles against the walls blocking his own path. Yuki Nakamura hopes to become one of the few female members of the special rescue corps known as \"Orange.\" When these three young firefighters who share the goal of becoming members of Orange come together, the story of how Japan will one day be saved begins... and what looms before them is a crisis that endangers the entire country!", + "posterPath": "/3gdaJacLTvi48ZoDsu7YSKb86mj.jpg", + "backdropPath": "/vYiejIRKCWFnA9xD2jwDbfGnkZ4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2023-09-30", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 8, + "popularity": 2.6087 + }, + { + "id": 88043, + "title": "Magical Sempai", + "originalTitle": "手品先輩", + "overview": "Our MC finds out that his school requires him to join a club and during his reluctant search he stumbles upon Tejina-senpai attempting magic tricks in her clubroom. Tejina-senpai has massive stage fright however and so now that she has an audience her attempts are simply comedic.", + "posterPath": "/l4FJaBZ7QB4VQ2qVxwp0AxVRLOi.jpg", + "backdropPath": "/70t5uboiDK8ykxdj9q6rLCOJaWq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-07-02", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.307, + "voteCount": 326, + "popularity": 2.608 + }, + { + "id": 34711, + "title": "Elemental Gelade", + "originalTitle": "エレメンタルジェレイド", + "overview": "Cou, the bumbling rookie of the \"Red Lynx\" pirate squadron has just discovered the treasure of a lifetime! A Mighty member of the ancient race of Edel Raids. Ren, at first glance, seems to be a shy and defenseless girl, but she holds withing her a power that many are willing to kill for. When Cou takes it upon himself to protect Ren on her journey to a mysterious place called Edel Garden, He immediately makes new friends and dangerous enemies.", + "posterPath": "/nNbRsvCXFCBKpdz6YI7gwut1sXM.jpg", + "backdropPath": "/mGvu7kUvb6C6MWvqYSabhjJ5xsS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2005-04-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 13, + "popularity": 2.6078 + }, + { + "id": 94631, + "title": "Diary of Our Days at the Breakwater", + "originalTitle": "放課後ていぼう日誌", + "overview": "Hina Tsurugi and her family have just moved to a quaint seaside town. Hoping to savor the sight of the peaceful ocean, Hina stumbles upon a girl named Yuuki Kuroiwa—an upperclassman at her new school—who invites Hina to join her in fishing. Hina reels in an octopus, which falls onto her; being afraid of bugs and big creatures, she panics and begs Yuuki to remove it from her. Yuuki sees this as an opportunity to force Hina to join the school's Breakwater Club—a club where members gather, catch, and eat various types of marine life as their main activity. Although her attempts to refuse to join fail, Hina slowly begins to discover the hidden joy in fishing. Her view on the sport changes, now looking forward to all the delightful experiences she can take part in alongside her fellow club members.", + "posterPath": "/iGRZVfxkJcm0TLyHzjLOqJ4qotg.jpg", + "backdropPath": "/muHYgLHUNcOYF6yoHwYh0ASZKNC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-04-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 21, + "popularity": 2.6038 + }, + { + "id": 70072, + "title": "White Album 2", + "originalTitle": "WHITE ALBUM 2", + "overview": "One evening in fall, with one month left before the school festival, the last member of the ruined light music club, Haruki Kitahara, looks out the window and plays his guitar in the direction of the festival stage set up outside. This was the simple little adventure that the conscientious honor student had hoped for two and a half years to achieve before his graduation in half a year. But then, when a flowing piano melody and a bell-like singing voice joined the clumsy sound of his guitar...", + "posterPath": "/bYl6hBOV3Bzb0uAV1mzZ9JnDl1z.jpg", + "backdropPath": "/nM5Bfc6d6AJqVmsgw49HQbK2F4B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2013-10-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.759, + "voteCount": 27, + "popularity": 2.6036 + }, + { + "id": 46350, + "title": "Yakitate!! Japan", + "originalTitle": "焼きたて!!ジャぱん", + "overview": "Azuma Kazuma isn't terribly clever, but he's got a good heart and great skill - at baking. Since childhood, he's been on a quest to create the perfect bread to represent Japan internationally. Now, he seeks to enter the famous bakery Pantasia, in hopes of reaching his goal. But plots abound...", + "posterPath": "/5FwUqjpiYxfnTxMwjYaVd5Wd8Wp.jpg", + "backdropPath": "/zpUHUVLgpzDzNkDHsMHRwGZETEg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-10-12", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 16, + "popularity": 2.6014 + }, + { + "id": 4335, + "title": "Ōban Star-Racers", + "originalTitle": "オーバン・スターレーサーズ", + "overview": "Every 10,000 years, teams from all over the universe are gathered by the mysterious Avatar to compete in the Great Race of Ōban, a race with much more at stake than just honor or prize money. According to legend, the winner is awarded the Ultimate Prize, which is rumored to grant any wish, from large-scale destruction to, perhaps, the resurrection of a loved one. Some want it for glory, others as a way of universal domination. However, the true nature of the Prize is shrouded in mystery, and things are not what they appear to be…", + "posterPath": "/8rMCjbsHk9EYSoNCgjkCVdyJyYL.jpg", + "backdropPath": "/jUhdXLgj2FZtxAXQI7FIsImkpR0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2006-06-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 76, + "popularity": 2.6003 + }, + { + "id": 76125, + "title": "Record of Grancrest War", + "originalTitle": "グランクレスト戦記", + "overview": "On a continent ruled by chaos, the Lords have the power of a holy seal that can calm the chaos and protect the people. However, before anyone realizes it, the rulers cast aside their creed of purifying the chaos, and instead start to fight each other for each other's holy seals to gain dominion over one another. Siluca, an isolated mage who scorns the Lords for abandoning their creed, and a wandering knight named Theo, who is on a journey to train to one day liberate his hometown, make an everlasting oath to work together to reform this continent dominated by wars and chaos.", + "posterPath": "/tECUAfNnSrNp7IS1HwXboLvg1FQ.jpg", + "backdropPath": "/tTreUT7rTd7gHvMSJHowBjyMZwm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2018-01-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 144, + "popularity": 2.5994 + }, + { + "id": 23573, + "title": "Neighborhood Story", + "originalTitle": "ご近所物語", + "overview": "Mikako Kōda is an aspiring fashion designer who attends Yazawa Art Academy in Tokyo and is slowly building up her clothing brand, Happy Berry. Having been childhood friends with her neighbor, Tsutomu Yamaguchi, since infancy, Mikako reassesses her once-platonic feelings for him when he suddenly becomes popular at school due to his resemblance to the singer Ken Nakagawa and begins dating Mariko, a popular and attractive girl.", + "posterPath": "/j07gLAV92lnJiEdtpbvVky0N1U4.jpg", + "backdropPath": "/x19NGhXDMm8gfpH8usLMYwOhHLq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1995-09-10", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 6, + "popularity": 2.5948 + }, + { + "id": 37183, + "title": "Dance in the Vampire Bund", + "originalTitle": "ダンス イン ザ ヴァンパイアバンド", + "overview": "Mina Tepeş, the Princess of the ancient covenant and ruler of all vampires, wants her race to stop hiding from the humans. Using her vast wealth, she has paid off Japan's entire national debt and by doing so, gained the right to create a district off Japan's coast that is to become the future haven to vampires worldwide. But when she finally attempts to make public the existence of vampires to the world some politicians, terrorists and rival factions are plotting to assassinate Mina before she has a chance to get Japan's and international recognition for the Vampire Bund. Now she must rely on her strength, cruelty and those closest to her, while trying to make a normal life.", + "posterPath": "/z2oM4QJuam8BUHoPnNxMIxUvjne.jpg", + "backdropPath": "/fgTu7zADTGdliBdjB8zqfAYQqb9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-01-07", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 57, + "popularity": 2.5929 + }, + { + "id": 34124, + "title": "Kanon", + "originalTitle": "カノン", + "overview": "Yuichi hasn’t seen his cousin Nayuki in years. Now that he’s back, all knowledge of ever visiting has vanished. He tries to adjust to the vaguely familiar surroundings, but the gaps in his memory haunt him as time grows short. The pieces of the puzzle have appeared – an eerily silent beauty with blazing tresses, the mysterious girl with the winged backpack, and the sword-wielding demon slayer – but it’s up to Yuichi to discover how they fit together.", + "posterPath": "/AedHrlFciZxJSGSyOGiRSve3O5e.jpg", + "backdropPath": "/u2kTCyXpkxx2CFeXH7ZC4zFCsEf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-10-06", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 54, + "popularity": 2.5921 + }, + { + "id": 274069, + "title": "KOWLOON GENERIC ROMANCE", + "originalTitle": "九龍ジェネリックロマンス", + "overview": "Real estate agents Reiko Kujirai and Hajime Kudo work in the nostalgic Kowloon Walled City. As they spend more time together, Reiko’s feelings for Hajime grow. But when she finds a photo of him and his former fiancée, she’s shocked to see the woman looks exactly like her. Reiko then realizes a chilling truth: she has no memory of her past.", + "posterPath": "/j13aUJ1WfCtYCldCC6weTUcBvNc.jpg", + "backdropPath": "/ypIWlo7Q4hx4LI2ECWL9vxyRmBO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 20, + "popularity": 2.5919 + }, + { + "id": 34065, + "title": "Black Cat", + "originalTitle": "ブラックキャット", + "overview": "The bounty hunter Sven is barely scraping by when he crosses paths with the Black Cat (a.k.a. Train Heartnet) and the young bio-weapon Eve. The three new companions will need more than luck to survive when they find themselves sought by both the Chronos Numbers and a Taoist revolutionary group called the Apostles of the Star.", + "posterPath": "/1GpXrmDmQmRrsXLbMY8y0YaxHLL.jpg", + "backdropPath": "/mxUU4nT3rkskoV56MJrjLVcsDGL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 33, + "popularity": 2.5917 + }, + { + "id": 42722, + "title": "Mahoromatic", + "originalTitle": "まほろまてぃっく", + "overview": "Mahoromatic is a sci-fi romantic comedy manga and anime series which contains elements of the literary genre of tragic dramas. It is about a female android former soldier, Mahoro. Driven by guilt from her actions during her combat days, she decides to dedicate the rest of her life to serving the son of her late commander as a maid.", + "posterPath": "/dg46XFpzAm5CeZaOkdJ3bmean6p.jpg", + "backdropPath": "/vknLvLFz43d9cKUEU0H5et1TQoA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2001-10-05", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 17, + "popularity": 2.5913 + }, + { + "id": 34667, + "title": "Maria Holic", + "originalTitle": "まりあ†ほりっく", + "overview": "Maria†Holic is a Japanese manga series written and illustrated by Minari Endō, the author of Dazzle. The manga was first serialized in the Japanese seinen manga magazine Monthly Comic Alive on June 27, 2006, and is published by Media Factory. The manga was licensed by Tokyopop with the first volume in English being released in September 2009. The first anime adaptation animated by Shaft aired in Japan between January and March 2009. A second anime season, Maria†Holic: Alive, premiered on April 8, 2011. Both seasons of the anime series have been licensed by Sentai Filmworks, and the first season is being distributed by Section23 Films.", + "posterPath": "/dxQbLZxIqtH5xFQY5UzfMCzwjay.jpg", + "backdropPath": "/31Epzacj7YMpght1bMUUQ5V7AgO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-01-04", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 4.684, + "voteCount": 19, + "popularity": 2.5908 + }, + { + "id": 276204, + "title": "Bogus Skill «Fruitmaster» ~About that time I became able to eat unlimited numbers of Skill Fruits (that kill you)~", + "originalTitle": "外れスキル《木の実マスター》 ~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "overview": "In a world where Skill Fruits grant powers, aspiring adventurer Light is stuck with the useless «Fruitmaster» skill. Eating another one results in death, so no do-overs. Meanwhile, his childhood friend Rena quickly rises to S Rank. But when Light accidentally eats a second Skill Fruit, he survives and discovers his true power: He can consume unlimited Skill Fruits and gain their abilities!", + "posterPath": "/fZiuJtxzOlvvbQcgrCSnwefqkcp.jpg", + "backdropPath": "/vUtfUpXxdrbUTrpsvRF8nPPinPv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-01-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.519, + "voteCount": 26, + "popularity": 2.5865 + }, + { + "id": 93649, + "title": "Shironeko Project: Zero Chronicle", + "originalTitle": "白猫プロジェクトZERO CHRONICLE", + "overview": "In a world consisting of numerous isles, a young hero from the Astora Isle encounters the adventurer Kyle and follows him on an expedition on the isle. They meet a mysterious girl named Iris and a talking white cat, and together they make their way to the isle's ruins, where they find a flying island. Kyle becomes consumed by darkness there, and the party resolves to travel to the ends of the world on the flying island in order to find the seven \"Great Runes\", following Kyle's words before he disappeared.", + "posterPath": "/4kC9XyXhOK7BLEDyDwQzGy0OS1.jpg", + "backdropPath": "/2rdO6jw3jqOTZk3xulbTcawZNkr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 19, + "popularity": 2.5856 + }, + { + "id": 66992, + "title": "Taboo Tattoo", + "originalTitle": "タブー・タトゥー", + "overview": "The story follows Justice Akazuka (a.k.a. Seigi), a young man who is good at martial arts. One day, Seigi rescues a homeless old man from some thugs, and the man gives him an object that imprints a tattoo on his palm. However, it is not an ordinary tattoo, but a special weapon that gives Seigi supernatural powers such as warping space-time. Seigi then meets a female American agent named Izzie, whose duty is to recover the tattoos. He decides to help her and gets wrapped up in a cross-national conspiracy.", + "posterPath": "/amSovufH8T18cdB2FmDQ2qpSLLe.jpg", + "backdropPath": "/xwHgOz8ybwFvRLA9dpdiP3rEXFh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.386, + "voteCount": 88, + "popularity": 2.5845 + }, + { + "id": 207564, + "title": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "originalTitle": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "overview": "A middle-aged man with only one passion in his life meets a fitting end in a traffic accident. That's where most stories would end, but instead, this is when his story begins when he's reborn as what he admired the most in life--a vending machine! But his new lease on life happens in the worst place possible--what can a vending machine do in a monster-infested dungeon when he can't speak or even move on his own?", + "posterPath": "/bY6oLDoxDyP7JNLVGjeO3udND4g.jpg", + "backdropPath": "/rJKANgQCrIPJV4a9BXwdw7d3BZr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 49, + "popularity": 2.5839 + }, + { + "id": 121702, + "title": "Do It Yourself!!", + "originalTitle": "Do It Yourself!! -どぅー・いっと・ゆあせるふ-", + "overview": "Building furniture and friendships have a lot in common. Intention, effort, and hard work are needed for both crafts. This is a story of girls in a DIY club building both as they carve out their futures. None of it comes easy, but that doesn’t stop any of ’em. Furniture, friendships, and the future—they’re building it all with their own hands!", + "posterPath": "/x7hcg0gUvKaLHshVH3WG4CTTrT.jpg", + "backdropPath": "/bzG9AongeMWW75U2Gn0rjoSymki.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-10-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 33, + "popularity": 2.582 + }, + { + "id": 51492, + "title": "Detective Opera Milky Holmes", + "originalTitle": "探偵オペラ ミルキィホームズ", + "overview": "Set in a futuristic world, there exist \"Toys\" which grant people superhuman abilities. This is responsible for a wave of crimes and necessitates employing Toy-using detectives to help solve them. Opera Kobayashi runs a detective agency, Milky Holmes, staffed by four aspiring young girl detectives who attend the Holmes Detective Academy, and each girl possesses their own unique Toy.", + "posterPath": "/1tUE9wZXIurCa8ioPiLKsrT1pRC.jpg", + "backdropPath": "/t7MjkWAaM7OBwamGY7lsc5bmI63.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2010-10-07", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 7, + "popularity": 2.5813 + }, + { + "id": 34729, + "title": "Kamikaze Kaitou Jeanne", + "originalTitle": "神風怪盗ジャンヌ", + "overview": "Maron seems to be a normal, ditsy kinda of school girl when in actuality she is the reincarnation of Joan of Arc. With her angel sidekick Finn, she attempts to seal demons which are hiding in pieces of art and possess weak-hearted people. However with sealing the demons the art disappears leaving the police and her best friend Miyako, the police chief's daughter, to suspect her to be nothing but a common art thief. More strange twists occur when a smooth talking new boy in school moves in next door along with the presence of a new \"art thief\" Sinbad, who races against Joan to seal demons. Now Maron must race against the police and Sinbad to seal the demons and manage just to make it through school and a strange homelife.", + "posterPath": "/5XwnEYqTtRmRileoKc9SOKcLQP7.jpg", + "backdropPath": "/kzTDGiMSePFHN1tKLhxFmBRFtaL.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35, + 10759, + 18 + ], + "genres": [ + "Drama", + "Animation", + "Comedy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1999-02-13", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 68, + "popularity": 2.5801 + }, + { + "id": 34840, + "title": "Eiken", + "originalTitle": "エイケン エイケンヴより愛をこめて", + "overview": "Densuke just enrolled at the exclusive Zashono Academy. He's eager to participate in extracurricular activities, but never expected to join the mysterious Eiken Club. Strangely enough, every other member is a busty co-ed, and many of the club activities involve bikinis. But Densuke isn't interested in anyone but the the shy and beautiful Chiharu. Will he overcome the wall of women that stand between him and true love?", + "posterPath": "/giohCfXtmSOL4z6H05tf8nMro0H.jpg", + "backdropPath": "/lrtP7hbRQ9ECKc9UzEaWfb2R9q9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2003-06-25", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 3.7, + "voteCount": 13, + "popularity": 2.5798 + }, + { + "id": 27244, + "title": "Haruka: Beyond the Stream of Time – A Tale of the Eight Guardians", + "originalTitle": "遙かなる時空の中で ~八葉抄~", + "overview": "Akane Motomiya and her friends Tenma and Shimon are pulled by a demon into another world, where Akane becomes the Priestess of the Dragon God. The people of this world tell her that she is the only one who can stop the demons from taking over; meanwhile, the demons want to use her power for their own ends. Luckily, Akane has the Hachiyou, eight men with powers of their own who are sworn to protect the Dragon Priestess.", + "posterPath": "/dRQlsz9vfsfcTNM4v78Byv4oJLs.jpg", + "backdropPath": "/dwqkw8QbAcO05LSGZDejxrhYIc0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 2.5783 + }, + { + "id": 98491, + "title": "The Millionaire Detective – Balance: UNLIMITED", + "originalTitle": "富豪刑事 Balance:UNLIMITED", + "overview": "Two police detectives with different beliefs about the value of people's lives must cooperate to solve their city's most serious crimes.", + "posterPath": "/i9Xwd7mUxASxU8ofCQc77XLj1Ff.jpg", + "backdropPath": "/rq7pXeN4hbBi2r2GKPi5Hr4tVTT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 9648 + ], + "genres": [ + "Animation", + "Crime", + "Mystery" + ], + "releaseDate": "2020-04-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 63, + "popularity": 2.5771 + }, + { + "id": 137391, + "title": "Summoned to Another World for a Second Time", + "originalTitle": "異世界召喚は二度目です", + "overview": "There was once a man who was summoned to another world, and saved it. Of course, he became too popular there, and turned into an isekai-normie. However, that man fell into a \"trap\" and was forcibly returned to his original world. Moreover, he had to start over as a baby!\n\nThis is the story of the way-too-fantastic ex-hero who lived as a gloomy high-schooler, as he gets summoned once again to that same other world in a very unexpected development!", + "posterPath": "/sRnUYGttSV1pAszU3BxhM7UOQxI.jpg", + "backdropPath": "/kTZxqf1YF42QxUcxA2MLEXLZ7OK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 48, + "popularity": 2.5743 + }, + { + "id": 112624, + "title": "The Vampire Dies in No Time", + "originalTitle": "吸血鬼すぐ死ぬ", + "overview": "In Shin-Yokohama, humans engage in a long, drawn out battle against vampires. Amongst them, the last \"true vampire\" stands...\n\nWill he be a bringer of peace, or destruction?", + "posterPath": "/6ZFAqdFmg7wHUiJqowTITBxh7C2.jpg", + "backdropPath": "/tPJEjEqZJfa2jYhy0SqRYM1oaQU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 21, + "popularity": 2.5742 + }, + { + "id": 42926, + "title": "Psychic Squad", + "originalTitle": "絶対可憐チルドレン", + "overview": "They're cute, adorable and three of the most powerful Espers the world has ever seen: Kaoru, the brash psychokinetic who can move objects with her mind; Shiho, the sarcastic and dark natured psychometric able to pick thoughts from people's minds and read the pasts of inanimate objects like a book; and Aoi, the most collected and rational of the three, who has the ability to teleport herself and the others at will. So what to do with these potential psychic monsters in the making? Enter B.A.B.E.L., the Base of Backing ESP Laboratory, where hopefully \"The Children\" and others like them can become part of the answer to an increasing wave of psychic evolution. It's a win-win solution... Unless you're Koichi Minamoto, the overworked young man stuck with the unenviable task of field commanding a team of three pre-teen girls!", + "posterPath": "/v2ryqDd8FAmthlA2TocoMUr2ok1.jpg", + "backdropPath": "/bPJNDWlcaOQf0Vxy06rMWyhcCwS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2008-04-06", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 2.5712 + }, + { + "id": 80662, + "title": "Miss Caretaker of Sunohara-sou", + "originalTitle": "すのはら荘の管理人さん", + "overview": "Shiina Aki is constantly being treated like a girl due to his feminine looks so he decides to move to Tokyo to attend middle school in an attempt to change himself.\n\nHowever what awaits him in his new home, Sunohara-sou, is the kind-hearted caretaker, Sunohara Ayaka. Along with the three female members of Aki's new middle school's student council, Yukimoto Yuzu, Yamanashi Sumire & Kazami Yuri.\n\nAnd so begins Aki's new life in Tokyo living with 4 girls.", + "posterPath": "/mXASMbUAaUjB75efTI5zl2OyUSB.jpg", + "backdropPath": "/b7iPfh85FVQ8YrgBB6Zf9IAJ9F9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-07-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.667, + "voteCount": 108, + "popularity": 2.5689 + }, + { + "id": 78122, + "title": "Saint Seiya: Saintia Sho", + "originalTitle": "聖闘士星矢 セインティア翔", + "overview": "The whole Sanctuary was misled into danger due to the civil war instigated by the Gemini Gold Saint, Saga. Our story begins right after the end of those events... This is a story of the girls protecting Athena. These are the records of love and fierce fights they meet while opposing destiny on their way to maturity...", + "posterPath": "/nCVE9TWt0ku2B3JnFATKkEeeuKK.jpg", + "backdropPath": "/dyNeUkO8Gnexi6ino5kfPIhLJRQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-12-10", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 274, + "popularity": 2.5674 + }, + { + "id": 201949, + "title": "Yuri Is My Job!", + "originalTitle": "私の百合はお仕事です!", + "overview": "Worried about her reputation, Hime covers shifts for a cafe manager she accidentally injures to maintain her picture-perfect princess image. But this cafe has a peculiar theme—private school. To put on her best barista schoolgirl act, she’ll be trained by the most graceful girl there, Mitsuki. Under her guidance, Hime’s feelings start to brew, but there’s just one problem—Mitsuki can’t stand her!", + "posterPath": "/z35BRoqjMpcVmQmDTx2xh5twQoi.jpg", + "backdropPath": "/dWktdVHGKykJEGMc3Ex3aBfQq4d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2023-04-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.083, + "voteCount": 30, + "popularity": 2.5666 + }, + { + "id": 65944, + "title": "Haven't You Heard? I'm Sakamoto", + "originalTitle": "坂本ですが?", + "overview": "First year high school student Sakamoto isn't just cool, he's the coolest! Almost immediately after starting school, he began attracting everyone's attention. The girls love him, and most of the boys resent him. There's even a boy in the class who works as a model, but who is constantly upstaged by Sakamoto! No matter what tricks the other boys try to play on him, Sakamoto always manages to foil them with ease and grace. Though Sakamoto may seem cool and aloof, he helps others when asked, such as in the case of the boy in his class who was being constantly bullied. No matter what difficulties Sakamoto encounters, he moves through his high school life with confidence and class.", + "posterPath": "/rzWTW9DSToU7mW5RPos91fJSbBV.jpg", + "backdropPath": "/5FAgln9JBDTzjWorFqJvlJ6wfZ1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 200, + "popularity": 2.5645 + }, + { + "id": 120013, + "title": "RE-MAIN", + "originalTitle": "RE-MAIN", + "overview": "Minato is a boy who stopped playing water polo due to a certain incident in the winter of his third middle school year. He picks the sport back up again with a new team when he starts in high school, but the fledgling team runs into many problems.", + "posterPath": "/tG92mLqwXdByHNhGp8yOxIc1BjE.jpg", + "backdropPath": "/ODcHQvZ6pkGMK2fsjib03qMq1q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-07-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 28, + "popularity": 2.5636 + }, + { + "id": 34210, + "title": "Sorcerer Hunters", + "originalTitle": "爆れつハンター", + "overview": "In the continent of spooner, sorcerers, who are the continent's aristocrats, have begun to abuse their powers. Under the guidance of Big Momma (their boss) Carrot (who turns into a giant monster every time he's placed under a magic spell), Gateau (a bodybuilder), Marron (a mage), Chocolate and Tira (who can transform into dominatrix's at will) must stop the evil sorcerers from picking on the weak. However, none of them (except maybe Marron) have a clue to what’s going on.", + "posterPath": "/3qE91gHdUi06jcEtD4PlLwXwRdk.jpg", + "backdropPath": "/o7F9KAbj7c5XO3mjAWbhwclRrb2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1995-10-03", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 5.083, + "voteCount": 6, + "popularity": 2.5577 + }, + { + "id": 43935, + "title": "Variable Geo", + "originalTitle": "ヴァリアブル・ジオ", + "overview": "The special of the day is Variable Geo-a brutal battle between waitresses who serve up generous portions of energy blasts and vicious side orders of murderous martial artistry.\n\nFor buffed beauties who make below-minimum wages, VG is the perfect way to make some fast cash. The victorious walk away with millions, and the defeated lose everything.\n\nBut this high-stakes sport has dark forces and dubious practices behind the fun and games. Lethal injections make steroids seem like vitamins. Instead of team prayer, there's demonic possession. Athletic sponsors are malevolent corporations with a more frightening agenda than increased market share. It's all just part of the game.", + "posterPath": "/lKJaUSowWpzt7PEj3uMdltkzgZY.jpg", + "backdropPath": "/2rb4VFP952UdUQYfgBxoIA4bwHW.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1997-01-09", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 5, + "popularity": 2.5568 + }, + { + "id": 12144, + "title": "Magical Shopping Arcade Abenobashi", + "originalTitle": "アベノ橋魔法☆商店街", + "overview": "Two kids whose families own businesses in a shopping arcade that's scheduled to shut down are thrown into a series of dimensions, each one a parody of some form of anime or video game, and try to find their way home.", + "posterPath": "/Ahw2UR7BOasYPbsWA55t07tnFoJ.jpg", + "backdropPath": "/oO1ZOYYkc5BM6LatmXY62vAxjSc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2002-04-04", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.735, + "voteCount": 49, + "popularity": 2.5526 + }, + { + "id": 66101, + "title": "Rewrite", + "originalTitle": "リライト", + "overview": "Green City Kazamatsuri is a city built on the ideal of a harmonious relationship between civilization and environment.. However, the peaceful Kazamatsuri will soon be faced with its annual commotion, the Harvest Festa at the turn of the year. It's an event that is much like a massive school festival, and Tennoji Kotaro decides to head out to research topics for his articles. It's an easy decision for him, because the town is filled with rumors about unidentified creature sightings and various other occult occurrences. At the same time, strange things start happening to Kotaro himself.", + "posterPath": "/iyiLtuHFiehUASS5HEDJvUivLIG.jpg", + "backdropPath": "/9Otcgt1bULYSZl4Jhc1e95eh3io.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2016-07-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.105, + "voteCount": 19, + "popularity": 2.5503 + }, + { + "id": 103511, + "title": "Love Live! Nijigasaki High School Idol Club", + "originalTitle": "ラブライブ! 虹ヶ咲学園スクールアイドル同好会", + "overview": "Nijigasaki High School is located in Odaiba, Tokyo. The school is popular due to its free school style and diverse majors. The story centers on the members of school idol club in Nijigasaki, and their attempt to prevent the club from being abolished.", + "posterPath": "/eMQbS9A6ly7y3VkbxgRKIXuO3jc.jpg", + "backdropPath": "/vrxf1z8wCcNgxZZRu7PYoKtRCbi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 24, + "popularity": 2.549 + }, + { + "id": 204266, + "title": "TRIGUN STAMPEDE", + "originalTitle": "TRIGUN STAMPEDE", + "overview": "Vash the Stampede's a joyful gunslinging pacifist, so why does he have a $$6 million bounty on his head? That's what's puzzling rookie reporter Meryl Stryfe and her jaded veteran partner when looking into the vigilante only to find someone who hates blood. But their investigation turns out to uncover something heinous—his evil twin brother, Millions Knives.", + "posterPath": "/4rMkVmkk6AzrcbBX9JSwqyG7pbK.jpg", + "backdropPath": "/6dErjmx17e8kZn5zHAqLrbcTesV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 63, + "popularity": 2.5484 + }, + { + "id": 72921, + "title": "Gourmet Girl Graffiti", + "originalTitle": "幸腹グラフィティ", + "overview": "After her grandmother passed away, high school student Ryō Machiko began living by herself. Although she recreated her grandmother's recipes perfectly, she felt that something was missing. However, when a girl named Kirin begins visiting her home, she realizes that company makes any meal taste better. Together with their friend Shiina, they enjoy many different kinds of delicious foods together.", + "posterPath": "/qDVT3sfmuzUhlQwOg6zLN5KrkSM.jpg", + "backdropPath": "/iwH2UFSSnNbspFOsILfkUmE0CnO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-01-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 8, + "popularity": 2.5442 + }, + { + "id": 99618, + "title": "So I'm a Spider, So What?", + "originalTitle": "蜘蛛ですが、なにか?", + "overview": "I, the protagonist, was just an ordinary high school girl, but suddenly I was reincarnated as a spider monster in a fantasy world. Not only that, but I awakened in a dungeon filled with vicious monsters. Armed with only my human knowledge and my overwhelming positivity, I'm forced to use spiderwebs and traps to defeat far stronger monsters just to stay alive... So begins the labyrinth survival story of a girl with incredible mental strength living as one of the lowest-ranked beasts!", + "posterPath": "/oTbqSiJx2nxFJ8zSM8JLdkTUFKZ.jpg", + "backdropPath": "/2D78M7AuO1J1NiZicEcho83GsPC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.874, + "voteCount": 183, + "popularity": 2.5437 + }, + { + "id": 25797, + "title": "Mobile Suit Victory Gundam", + "originalTitle": "機動戦士Vガンダム", + "overview": "It is the Universal Century, year 0153. The Zanscare Empire, which rules almost all of Side 2, has declared its independence from the old government, the hollow and corrupt Earth Federation. Under the justification of creating a new, space-based order, it has begun an invasion of Earth; and Point Kasarelia, the illegal residence area in Eastern Europe where Üso Ewin and Shahkti Kareen live, is no exception. As they are caught in the fighting between Zanscare and the opposing resistance organization, the League Militaire, fate draws Üso and his friends into the midst of battle.", + "posterPath": "/1adT1zljkHVqPnuQl3G8h6ecx0y.jpg", + "backdropPath": "/gYaq6dfXRfcrKjJP0zz4dm6O5Cj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10768, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics", + "Action & Adventure" + ], + "releaseDate": "1993-04-02", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 15, + "popularity": 2.5436 + }, + { + "id": 37555, + "title": "Omamori Himari", + "originalTitle": "おまもりひまり", + "overview": "The slapstick romantic comedy centers around an ordinary 16-year-old high school boy named Yūto Amakawa who is protected by a spirit—specifically, a beautiful, sword-wielding cat girl spirit named Himari. Yūto is descended from a family that has subjugated demons since time immemorial. The charm that once protected him is now impotent, but fortunately, at that same moment, Himari appears before him as his new guardian.", + "posterPath": "/6FKVuV9jBeTHRFBD0zCVPORieQB.jpg", + "backdropPath": "/dtbj8vdXqS813QvirK3x1GWPRaZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759, + 35, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2010-01-06", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 32, + "popularity": 2.5425 + }, + { + "id": 138180, + "title": "In the Heart of Kunoichi Tsubaki", + "originalTitle": "くノ一ツバキの胸の内", + "overview": "The isolationist Akane Clan, composed of an all-girls body mainly consisting of young kunoichi in training, has a code to which they all must adhere: \"As men are dangerous beings, interacting with them is forbidden.\"\n\nKunoichi Tsubaki, the leader of the Dog Squad, is an excellent trainee with a promising future, but she has started to experience a strange feeling in her heart... whenever the subject of boys is brought up.", + "posterPath": "/q2tuEq6N6Y5soicGzN3V7mz3L32.jpg", + "backdropPath": "/ciE8ynkvgE1GC1olKv5Q78TdD7N.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 18, + "popularity": 2.5412 + }, + { + "id": 88042, + "title": "O Maidens in Your Savage Season", + "originalTitle": "荒ぶる季節の乙女どもよ。", + "overview": "The girls in a high school literature club do a little icebreaker to get to know each other: answering the question, \"What's one thing you want to do before you die?\" One of the girls blurts out, \"Sex.\" Little do they know, the whirlwind unleashed by that word pushes each of these girls, with different backgrounds and personalities, onto their own clumsy, funny, painful, and emotional paths toward adulthood.", + "posterPath": "/e0mBYzj7uBqObuG3THsrq2jedhk.jpg", + "backdropPath": "/mR3GPTvUFlKO9mbrx8o2CZBNDRb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2019-07-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.018, + "voteCount": 140, + "popularity": 2.5388 + }, + { + "id": 42877, + "title": "Akagi", + "originalTitle": "闘牌伝説アカギ~闇に舞い降りた天才~", + "overview": "Nangou is a compulsive gambler who has accumulated debt over three million yen. In a last ditch attempt to clear his record, he decides to wager his life on a game of mahjong with the mafia. Unfortunately, as the game progresses, Nangou only moves further from the prize and closer to death.\n\nWhen all hope seems lost, the game parlor is suddenly intruded upon by Shigeru Akagi, a young boy on the run from the police. Desperate to turn the game around, Nangou hands the game over to Akagi after teaching him a few of the rules. The mafia can only smirk as Akagi sits down to play. However, they soon come to learn that Akagi is a natural born gambler. An imposing figure who does not fear death. One who is destined to become a legend.", + "posterPath": "/hsXnmIZfp8B8TobylmIbe8wHyDi.jpg", + "backdropPath": "/3TyVbYLlNui8T3WHSGjGrCsNNCf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2005-10-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 22, + "popularity": 2.537 + }, + { + "id": 239158, + "title": "Narenare -Cheer for You!-", + "originalTitle": "菜なれ花なれ", + "overview": "Misora Kanata is a first-year student on the Takanosaki High School cheerleading team. She won a national championship in middle school, but can’t jump after a mistake in a competition. She befriends Suzuha, Shion, Anna, Onka, and Megumi to form the PoMPoMs. Their new team goes beyond cheerleading to reach the hearts of the people they cheer on. They might just change the world!", + "posterPath": "/b0kHEAx7Na9Bv1Mu0pP5Ql5PVwU.jpg", + "backdropPath": "/lOvJbND12WBqRgKqYNT7wDwwUtJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 8, + "popularity": 2.5369 + }, + { + "id": 72502, + "title": "AHO-GIRL", + "originalTitle": "アホガール", + "overview": "She is Yoshiko Hanabatake, and she's an idiot through and through. She loves bananas, and she loves her childhood friend Akkun. That is all!", + "posterPath": "/bDclbu2KtIccDQqU7l4TT1m299.jpg", + "backdropPath": "/srNNP3nBFDLPLFAII4aOy1VaQUR.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2017-07-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.821, + "voteCount": 183, + "popularity": 2.5368 + }, + { + "id": 200732, + "title": "A Galaxy Next Door", + "originalTitle": "おとなりに銀河", + "overview": "After his father’s death, Ichiro is left to care for his siblings alone. They’re barely scraping by with only a small inheritance and his job as a manga artist, which isn’t going so great. That is until a talented and beautiful assistant is hired! Her name is Shiori, and she’s a gift from above—literally. While working late one night, her true identity is revealed and they’re instantly engaged!?", + "posterPath": "/1Ro3fLZ6OPbT0zmJVW6EdI4M51E.jpg", + "backdropPath": "/t4f80BzUFbuJpRxs52BpafQRaQa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-04-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 32, + "popularity": 2.5365 + }, + { + "id": 61379, + "title": "Monthly Girls' Nozaki-kun", + "originalTitle": "月刊少女野崎くん", + "overview": "High school student Chiyo Sakura has a crush on schoolmate Umetarō Nozaki, but when she confesses her love to him, he mistakes her for a fan and gives her an autograph. When she says that she always wants to be with him, he invites her to his house and has her help on some drawings. Chiyo discovers that Nozaki is actually a renowned shōjo manga artist named Sakiko Yumeno. She then agrees to be his assistant in order to get closer to him. As they work on his manga Let's Fall in Love (恋しよっ), they encounter other schoolmates who assist them or serve as inspirations for characters in the stories.", + "posterPath": "/xcgTRBwqou6QgvNh53viHFQeTsC.jpg", + "backdropPath": "/kyKmIypYjtjbdKwQ7wHugC4NewP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 127, + "popularity": 2.5364 + }, + { + "id": 125712, + "title": "Life with an Ordinary Guy Who Reincarnated into a Total Fantasy Knockout", + "originalTitle": "異世界美少女受肉おじさんと", + "overview": "Childhood friends Tachibana Hinata and Jinguji Tsukasa were living the everyday life of office workers. Then, on the way home from a mixer, they were sent flying into another world by a mysterious being. Once there, Jinguji sees his best friend has been turned into a beautiful blonde-haired, blue-eyed girl...?! The adorableness of Tachibana’s female form completely flummoxes Tachibana. But these two are each others’ best friends. To keep their relationship from being destroyed, they must defeat the Demon Lord as quickly as possible and return to their original forms.", + "posterPath": "/sZNv39rodZIF1GPvQJC4mTIaO66.jpg", + "backdropPath": "/u2emI7epHChnQrUaSFtxHuFiJ1e.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-12", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 33, + "popularity": 2.534 + }, + { + "id": 43631, + "title": "AIKa ZERO", + "originalTitle": "AIKa ZERO", + "overview": "In the future — in a world mostly submerged under water — the 19-year-old Sumeragi Aika goes to college while training as an agent by assisting in Aida Gozo's salvaging business.", + "posterPath": "/wKIfSjeByb6weMgtNgZUe2RaZgN.jpg", + "backdropPath": "/xkiVVsVqOgtCrCjmpBUllZgOvqd.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2009-03-01", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.672, + "voteCount": 189, + "popularity": 2.5309 + }, + { + "id": 54241, + "title": "Sugar Sugar Rune", + "originalTitle": "シュガシュガルーン", + "overview": "Chocolat Meilleure is a happy-going and optimistic girl. Together with her friend-cum-rival, Vanilla Mieux, they are potential candidates to become Queen of the magic world. After obtaining their magic wands, they set off to the human world to gather the hearts of unsuspecting humans. Whoever gets the most hearts will be the crowned Queen.", + "posterPath": "/xdlCDOZtHWJ1fH4YwuwIktoFOeQ.jpg", + "backdropPath": "/x8NA42fSP8g5wHGBQvqbHTmY9iv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-07-02", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 6, + "popularity": 2.5295 + }, + { + "id": 249882, + "title": "ZENSHU", + "originalTitle": "全修。", + "overview": "After graduating from high school, Natsuko Hirose starts her career as an animator. Her talent quickly flourishes, and she makes her debut as a director in no time. Her first anime becomes a massive hit, sparking a social phenomenon and earning her recognition as an up-and-coming genius director. Her next project is set to be a romantic comedy movie themed around first love! However, having never been in love herself, Natsuko struggles to understand the concept of first love, and as a result, she’s unable to create the storyboard, causing the movie production to come to a standstill. One day, she passes out while working on her storyboard and wakes up in the world of her favorite childhood anime movie \"A Tale of Perishing.\"", + "posterPath": "/okRnvNLpduDKPUIyZbMxJkeek8D.jpg", + "backdropPath": "/5CQYgKT7P3uArdazN7GhBCwW0zn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 49, + "popularity": 2.5278 + }, + { + "id": 114937, + "title": "Taisho Otome Fairy Tale", + "originalTitle": "大正オトメ御伽話", + "overview": "Tamahiko Shima has been exiled to the country because of his disability, but the sudden arrival of an arranged bride upends his lonely life.", + "posterPath": "/9seXWYkWAk4SDxvg61hZhQppITv.jpg", + "backdropPath": "/dTNrPvSf3WEoYAiO2q8xmwtSM6o.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2021-10-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 36, + "popularity": 2.5267 + }, + { + "id": 34216, + "title": "Blassreiter", + "originalTitle": "BLASSREITER", + "overview": "The story is set in a fictional Germany and centers around the outbreak of bio-mechanical creatures named \"Demoniacs\", who rise from corpses and attack people mindlessly. All the while, a number of human-turned-Demoniacs appear. Some use their powers for good whilst others for evil. One will rise above all other Demoniacs to become the \"Blassreiter\".", + "posterPath": "/v4jPxBJEdl17MxnRlZLcxbmlnmJ.jpg", + "backdropPath": "/1piiXEhAKaf6SReMpUBmGMkZvGO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2008-04-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.615, + "voteCount": 13, + "popularity": 2.5255 + }, + { + "id": 107001, + "title": "The Idaten Deities Know Only Peace", + "originalTitle": "平穏世代の韋駄天達", + "overview": "It has been 800 years since the incredibly fast and powerful gods of battle known as the Idaten had sealed away the demons after an intense battle. Now, that battle is just considered a myth or a fairytale. While the current generation of Idaten who have never even had to fight are enjoying their peaceful lives, someone awakened the demons once again! Armed forces, ingenuity, politics, and intrigue. If you've got it, use everything you can! This three-way battle royale with no rules and no limits is about to begin!!", + "posterPath": "/osCAbL4rdGUVLH3o2rlYZpDaiCb.jpg", + "backdropPath": "/z32ZqlrgyEyEqfP7atFw7dUntKZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-23", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 58, + "popularity": 2.5224 + }, + { + "id": 34090, + "title": "Red Baron", + "originalTitle": "レッドバロン", + "overview": "In the year 2050 the world population is crazy about the \"Metal Fight\", a competition where people compete in battles featuring giant robots. An organization called Iron Mask is planning on transforming Metal Fight competitors and their robots into weapons, and tries to kidnap Shoko Saeba, a robot programmer who created the Red Baron, which uses a feedback system. Ken Kurenai is able to protect Sally and the Red Baron, and becomes Metal Fight World Champion in the process. Iron Mask then decides to send out their forces to take Ken and the Red Baron out forever.", + "posterPath": "/hqgXe18xtYDbS36CmpBgVRRNTf2.jpg", + "backdropPath": "/l4XWaTC4SFlGodPBxZW4J7W0Nzd.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1994-04-05", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 19, + "popularity": 2.5224 + }, + { + "id": 279216, + "title": "The Dinner Table Detective", + "originalTitle": "謎解きはディナーのあとで", + "overview": "Rich heiress Reiko Hosho lives a double life as a novice detective, fighting crime under Inspector Kazamatsuri—also from a wealthy family. After work, Reiko sheds her pantsuit to don a lovely dress for dinner each day. Difficult cases force her to confide in her butler Kageyama, who proceeds to savagely ridicule her inability to solve mysteries, all while brilliantly unraveling each case himself.", + "posterPath": "/ojbA3PYa2P5FIs2l4N737FtVpSn.jpg", + "backdropPath": "/2JOmSm7WWPzBILS8jODRqbllnf8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Crime" + ], + "releaseDate": "2025-04-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 15, + "popularity": 2.52 + }, + { + "id": 69820, + "title": "Granblue Fantasy: The Animation", + "originalTitle": "GRANBLUE FANTASY The Animation", + "overview": "This is a world of the skies, where many islands drift in the sky. A boy named Gran and a talking winged lizard named Vyrn lived in Zinkenstill, an island which yields mysteries. One day, they come across a girl named Lyria. Lyria had escaped from the Erste Empire, a military government that is trying to rule over this world using powerful military prowess. In order to escape from the Empire, Gran and Lyria head out into the vast skies, holding the letter Gran's father left behind - which said, \"I will be waiting at Estalucia, Island of Stars\".", + "posterPath": "/hUo1FNB9WZZZi4pOJ2YE7Vq5UcF.jpg", + "backdropPath": "/3bYfBuWby20fSYTKNVJQgEuZDja.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-21", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 37, + "popularity": 2.5179 + }, + { + "id": 68343, + "title": "Flower Angel", + "originalTitle": "花の子ルンルン", + "overview": "The King of the Flower Planet is dying, but his heir can't take up the throne until the legendary Seven Color Flower, symbol of the King's power, is found. The Angels Cateau and Noveau are sent to Earth to find the Flower Girl, a young female who descends from both humans and Flower Angels (who once inhabited Earth, long ago) - and they find Lunlun in France. They convince her to go in a long journey to find the Flower - she'll know the good and bad sides of humans and Flower Angels (incarnated in the ambitious Togenishia and her sidekick Boris), and will fall in love with Serge Flora, a man who holds a great secret.", + "posterPath": "/5nISfuXfMTC0XTzUWdx5auLCipI.jpg", + "backdropPath": "/z8zsrSjpCuvQSxWSkLJsJUk51t6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10762 + ], + "genres": [ + "Animation", + "Drama", + "Kids" + ], + "releaseDate": "1979-02-09", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 86, + "popularity": 2.5158 + }, + { + "id": 34821, + "title": "Ashita no Nadja", + "originalTitle": "明日のナージャ", + "overview": "This story takes place about one hundred years ago. Nadja is a bright, cheerful girl who was raised in an orphanage near London, England. Nadja was entrusted to the orphanage when she was a baby. So she thought her father and mother were dead. But before her thirteenth birthday, she found out that her mother might be alive...\n\nNadja sets out on a journey to find her mother! With all of Europe as the stage, Nadja's exciting adventure begins!", + "posterPath": "/3ibbLrqBBy9CWQtqgKlFaOUdzlV.jpg", + "backdropPath": "/5gl9v2CD6oVtEiqoBPrryYPc4Vy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2003-02-02", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 13, + "popularity": 2.5141 + }, + { + "id": 42692, + "title": "Flame of Recca", + "originalTitle": "烈火の炎", + "overview": "Recca was an average ordinary boy, who happened to like ninjas. One day as an dark and mysterious women enters his life, Recca finds that he has some extraordinary powers. Now he must use these powers to protect his friends and himself from a long lost brother, who holds a hatred against him.", + "posterPath": "/vywtHxLB4CnB2hVrevZ9eEqh33s.jpg", + "backdropPath": "/61QNPdtnF7j2NYZBNW7EuOjtaoV.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-07-19", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 16, + "popularity": 2.5098 + }, + { + "id": 43318, + "title": "Chrome Shelled Regios", + "originalTitle": "鋼殻のレギオス", + "overview": "The world of tomorrow is an arid wasteland. Humans must live in domed cities to escape the threat of mutant Contaminoid monsters. In this future, mysterious Layfon struggles to keep his violent past hidden from his fellow student soldiers at the military academy. Unfortunately, his former life might be impossible to keep secret – and the truth could tear his team apart.", + "posterPath": "/np0kBS99x9jejKCfRvnSXzOAcOd.jpg", + "backdropPath": "/80ceIROspsra5q30XUpToRAev07.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2009-01-11", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 13, + "popularity": 2.5053 + }, + { + "id": 38811, + "title": "Dragon Crisis!", + "originalTitle": "ドラゴンクライシス!", + "overview": "Ryuji Kisaragi is a normal high school boy living a peaceful life, which is turned into an adventure when his second cousin Eriko suddenly returns from overseas. He gets recruited into her organisation, the Seven Tails, in order to help her find artefacts called Lost Precious. Ryuuji and Eriko manage to seize a relic box from a black broker named Fang. Inside the box they find a girl whom Ryuuji names Rose because of the rose like pattern on her left hand. When it turns out that Rose is in fact a Red Dragon, Ryuuji decides to protect her from the black organisation using his powers as a level 10 Breaker.", + "posterPath": "/xKxlszugzZK9CV1xbGxiDTfvBVs.jpg", + "backdropPath": "/twbJNqy9ST1WiVKnSEkWZKcOtHC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-01-11", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 12, + "popularity": 2.5045 + }, + { + "id": 100567, + "title": "Combatants Will Be Dispatched!", + "originalTitle": "戦闘員、派遣します!", + "overview": "Turns out, evil takes initiative! With world domination close at hand, the Kisaragi Corporation turns its sights on interstellar conquest, and who better to take over a magical world than two randomly assigned minions—Combatant Agent Six and his android partner Alice? But Six’s path up the evil corporate ladder won’t be easy—a Demon Lord’s army is hatching its own nefarious plan!", + "posterPath": "/tk0LqlgKzc79nWtTmgGz41yu6p3.jpg", + "backdropPath": "/knIHqqoNsDZn2tZrDM3iw3xH9oe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 161, + "popularity": 2.5011 + }, + { + "id": 26843, + "title": "Yamibo - Darkness, the Hat, and the Travelers of the Books", + "originalTitle": "ヤミと帽子と本の旅人", + "overview": "Hatsuki is a highschool student living with her sister, Hatsumi, who she has a huge crush on. On Hatsumi's 16th birthday, she is suddenly surrounded by a green light and disappears in front of Hatsuki!\n\nShe manages to follow Hatsumi with the help of a being resembling a fat baby chick (literally), ending up in a place called \"The Great Library\", which is full of different worlds stored in books. Hatsumi wasn't there, though, so the search for Hatsuki's great love begins and involves traveling from book to book.", + "posterPath": "/msFl5bIuCZs1G2IY3oPE9BMCVog.jpg", + "backdropPath": "/qYh6ixZtSoGIWGySTB6WMHcQkWq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2003-10-02", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 5.636, + "voteCount": 11, + "popularity": 2.5001 + }, + { + "id": 71441, + "title": "I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job", + "originalTitle": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "overview": "The story revolves around Raul, a boy who did not become a Hero, since the demon lord was already defeated just before his Hero exams. His dreams dashed, Raul spends his days working at a magic shop in the capital. One day, a part-time job seeker appears at the shop with an amazing résumé: Name: Fino Previous Occupation: Demon Lord Heir Motive: Because my father was defeated The work comedy revolves around this former Hero-in-training and the daughter of the demon lord.", + "posterPath": "/xwiWn8vggHGxL0ANCsUWwcYFlOk.jpg", + "backdropPath": "/zG0hGjl8umxHz0COOYOXr6KJDWI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2013-10-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 37, + "popularity": 2.4974 + }, + { + "id": 66080, + "title": "Kuromukuro", + "originalTitle": "クロムクロ", + "overview": "When mecha attack a research center, its students, pilots, and researchers must fight back with the help of mysterious artifacts and a young samurai.", + "posterPath": "/6XMhVgeBlimKneB77AxLSpHqmHq.jpg", + "backdropPath": "/9ByWfLIczxMdIprIFRzMaD3UQxa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 49, + "popularity": 2.4974 + }, + { + "id": 78239, + "title": "SWORD GAI: The Animation", + "originalTitle": "ソードガイ The Animation", + "overview": "The swordsmith Amon accidentally comes across an infant and its dead mother in the forest. Although he is initially overwhelmed by the situation, he finally decides to take the boy with him and thus save him from certain death. Ten years after this fateful encounter, the boy from that time, Gai, is apprenticed to Amon. While making a sword, however, there is a tragic accident in which Gai loses his right arm. Amon then decides to use a sword called Shiryuu to make an artificial arm for Gai. Thus, it begins…", + "posterPath": "/pAlxdiEa0L9F0Ofu4r1Og0BJbqd.jpg", + "backdropPath": "/jsvmzkVzSxf7lA4vZcwT8cjQ6IP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-03-23", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.833, + "voteCount": 42, + "popularity": 2.4972 + }, + { + "id": 13915, + "title": "Lunar Legend Tsukihime", + "originalTitle": "真月譚 月姫", + "overview": "Shiki Tohno sustained a life threatening injury as a child, and due to that incident he was sent away from the Tohno household and was given to a relative to be raised. Years later, when Shiki is in high school, the head of the Tohno household—his father—dies, and he is ordered to move back in by his sister Akiha, who is the new head of the household. However, Shiki holds a huge secret. Ever since that injury, he has been seeing lines on objects, and only with a special pair of glasses is he able to stop seeing them. Also he is unable to remember anything well from the time before his accident. The day he moves back to the Tohno household is the day he stumbles upon a woman named Arcueid Brunestud and decapitates her with one stab of his knife in a temporary fit of insanity. When she suddenly showed up beside him later alive and well, and ask him to be her bodyguard, Shiki's journey to unravel the mysteries of his past begins.", + "posterPath": "/cUCAzXjLXg4Zr2NP03fYtxmCYsR.jpg", + "backdropPath": "/pmYO8BqcyXuAPsNNXNcFbBqBaCW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2003-10-09", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.765, + "voteCount": 17, + "popularity": 2.4969 + }, + { + "id": 130765, + "title": "Love All Play", + "originalTitle": "ラブオールプレー", + "overview": "Ryou joins a powerhouse badminton team to chase his dreams and surpass the rival he once admired.", + "posterPath": "/m19Cko9WIICOCdV7qiRyj5ZxyhE.jpg", + "backdropPath": "/rRMmxFRKyRkiob2EbN6Z8vFBLVG.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2022-04-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 9, + "popularity": 2.4961 + }, + { + "id": 42413, + "title": "Demon King Daimao", + "originalTitle": "いちばんうしろの大魔王", + "overview": "Demon King Daimao follows Akuto Sai as the lead character, who on the day he enters Constant Magic Academy, receives a very unexpected future occupation aptitude test result: “Demon King.”", + "posterPath": "/xdogTliKCAQ1PBtp6IK7nabfBRC.jpg", + "backdropPath": "/5Zj8p3fGHpDQHX4rrzJV6DMbyTO.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-04-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 160, + "popularity": 2.4954 + }, + { + "id": 72871, + "title": "Shurato", + "originalTitle": "天空戦記シュラト", + "overview": "A 16-year-old boy named Shurato and his friend Gai happen to be drawn into a gigantic ball of light while competing in the final match of a martial arts tournament. When they regain their senses, they find themselves transferred to a mystic heavenly sphere with a divine atmosphere. It's soon discovered that Shurato used to be the governing king of this world and that he has only been brought to his original state. Shurato is shocked as Gai suddenly turns hostile. After this unfortunate incident, a spectacular yet fantastic drama develops involving the two.", + "posterPath": "/vg11MwZUEUjAQB1MkmRAo3DhLrq.jpg", + "backdropPath": "/22raTd2mRTwBfWk60E6EBtLncsh.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1989-04-06", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 13, + "popularity": 2.494 + }, + { + "id": 85588, + "title": "Papa datte, Shitai", + "originalTitle": "パパだって、したい", + "overview": "\"There are Times I Cannot Hold It, Even If I'm a Father\"\n\nUniversity student Asumi came to Naruse household to be a housekeeper for his part-time job. The family consists of a single-father and a son Ichika. Among them, the father Naruse is too sexy for Asumi!! Even if he is not gay, Asumi gets conscious of Keiichi, and when he noticed that Keiichi is sexually unsatisfied by noticing him watching adult video in his room, he would unconsciously get tempted to attack him…! \"Naruse-san, you're too sexy for a father with a child...!\"", + "posterPath": "/ydpL1rKDmIiTfCGD8gNQrUluA5g.jpg", + "backdropPath": "/tccHdpmHoL7U0N9s8amDqilUShr.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-01-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.333, + "voteCount": 15, + "popularity": 2.4931 + }, + { + "id": 69084, + "title": "Monster Strike", + "originalTitle": "モンスターストライク", + "overview": "Ren Homura returns to his former residence, yet he feels very uncomfortable: he possesses no memory of having lived there. Without warning or his permission, a game called \"Monster Strike\" installs itself into Ren's smartphone; monsters of the game then literally fly out from his smartphone and start fighting on streets. Watching the fighting in amazement, Ren starts picking up his lost memories.", + "posterPath": "/cPdZtK8gdjxsyPouNmFKR4cGapo.jpg", + "backdropPath": "/9jPiGnf6EH7VVKm720vpk865Yqn.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 13, + "popularity": 2.4929 + }, + { + "id": 43146, + "title": "X-Men", + "originalTitle": "エックスメン", + "overview": "X-Men, still grieving over the death of Phoenix (Jean Grey), are investigating a case of a missing mutant girl in Northern Japan. This leads them to a mysterious virus that turns mutants into monsters. U-Men and the Inner Circle want it.", + "posterPath": "/sXNDCbP5sjq1FeXBxGovN21VVOG.jpg", + "backdropPath": "/uwBbG078IBGbuwrhHHVEZu35JSU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-01", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 174, + "popularity": 2.4922 + }, + { + "id": 42412, + "title": "Heroman", + "originalTitle": "HEROMAN", + "overview": "An American kid named Joey lives in Center City, USA & has always wanted to become a hero. Unfortunately, he's just an orphan working part-time to support his grandma and himself. After he watched a commercial of a new robot action figure, Joey believe he'll gain strength if he obtains one. The only robot toy he can get his hands on is a broken one that was abandoned by a rich school bully. Feeling pity for the trashed action figure, Joey took it home to repair it. Little did he know, that once he repairs the toy, it'll make his hero dream become a reality.", + "posterPath": "/bOSK96t6la9dn8Yutm8Pr8OdlKF.jpg", + "backdropPath": "/poUG5FfqCNByVLN3zxTMNaeJxaH.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-04-01", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.629, + "voteCount": 62, + "popularity": 2.4911 + }, + { + "id": 23451, + "title": "Legendary Brave Swordsman Yaiba", + "originalTitle": "剣勇伝説YAIBA", + "overview": "Kurogane Yaiba is a boy who doesn't want to become what any regular kid would: A samurai. That's why he undergoes a hard training with his father, knowing only the forest as his world. Then, one day, he is sent to Japan, where he has to deal with a whole new civilized reality, meeting the Mine family, the evil Onimaru and even the legendary Musashi, having lots of dangerous adventures, becoming stronger everyday.", + "posterPath": "/uDDFQaIaP5dnfnUi2Ebsw7JwsrD.jpg", + "backdropPath": "/qaDvdxDkED127VPqlVxlDv29H8x.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "1993-04-09", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 11, + "popularity": 2.491 + }, + { + "id": 127599, + "title": "Super Crooks", + "originalTitle": "スーパー・クルックス", + "overview": "Johnny Bolt recruits a group of ragtag supervillains for one last heist. Their target: A ruthless super-powered crime boss. What can go wrong?", + "posterPath": "/8n1Zd4fG1eTf4adUBd7EQVEzWur.jpg", + "backdropPath": "/vI8cIF3G0yZyj5NtntuoFhKfrM6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Crime", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-11-25", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 80, + "popularity": 2.4908 + }, + { + "id": 258055, + "title": "Once Upon a Witch's Death", + "originalTitle": "ある魔女が死ぬまで", + "overview": "Meg Raspberry is just an apprentice witch celebrating her 17th birthday. That is, until Faust, her magic teacher and Perennial Witch of the Seven Sages, suddenly reveals she is going to die. To stop the Death Sentence curse, Meg must create the Seed of Life using tears of joy from 1,000 people. Join Meg on her travels as she collects the happy tears from everyone she meets to gain eternal life!", + "posterPath": "/5Gr2mDFSGHhiEYrNfP6vbYtuNrT.jpg", + "backdropPath": "/vtVEwuQ93jfUMB4ooEbdzv2Ktt5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-01", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.154, + "voteCount": 13, + "popularity": 2.4883 + }, + { + "id": 112138, + "title": "Kageki Shojo!!", + "originalTitle": "かげきしょうじょ‼", + "overview": "The curtain rises on Sarasa Watanabe, a starry-eyed 5'10\" student who hopes to perform as a male lead role in the all-female Kouka Acting Troupe. She forms a friendship with her new roommate, a former idol. Together, they’re in for the role of a lifetime.", + "posterPath": "/9PBHtRI3ZFdE3UkxsHBxbkzF3pl.jpg", + "backdropPath": "/39oWx7f4liRLUIA0sD4utlfnLf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2021-07-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 47, + "popularity": 2.4877 + }, + { + "id": 42917, + "title": "Koihime Musou", + "originalTitle": "恋姫†無双", + "overview": "When Kanu was young, her family and their village were wiped out by bandits. And so she sets out on a journey. A journey to find the answer.", + "posterPath": "/djQQqZpZZlYToFbVNKpuytsqVEi.jpg", + "backdropPath": "/gcNgNTjMzQXlParKEaUIgIkidzZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2008-07-09", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.75, + "voteCount": 8, + "popularity": 2.4871 + }, + { + "id": 281623, + "title": "SHIROHIYO - Reincarnated as a Neglected Noble: Raising My Baby Brother with Memories from My Past Life", + "originalTitle": "白豚貴族ですが前世の記憶が生えたのでひよこな弟育てます", + "overview": "Ageha Kikunoi was a spoiled 5-year-old before he suddenly recalled memories from a past life. Then, he loved to cook, sew, and sing above all else. In this world, Ageha and his younger brother, Regulus, try to navigate the Kikunoi house as corruption among the aristocracy deepens. They’ll need skills from Ageha’s past life, blessings of gods and elves, and magic spells to help them on their way!", + "posterPath": "/cPfb1zRevjNa8cA17D7KszobE2s.jpg", + "backdropPath": "/nYBTmeGJQDJhkFBlKhSfnmK5WF4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2025-04-20", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 5, + "popularity": 2.4824 + }, + { + "id": 74083, + "title": "My Girlfriend Is Shobitch", + "originalTitle": "僕の彼女がマジメ過ぎるしょびっちな件", + "overview": "Haruka Shinozaki has been interested in the class representative, Akiho Kousaka, since his first year in high school. She is attractive, good at sports, and is an all-around model student. Since they are in the same class this year, Shinozaki decides to confess his feelings—and, to his shock, Kousaka agrees to be his girlfriend! However, he finds that Kousaka is a bit stranger than he first thought: this seemingly perfect girl has never been in a relationship. But even though she is inexperienced, she vows to please Shinozaki in every way she can... such as learning multiple sex positions or his fetishes. Shinozaki tries to assure her that her studies into such subjects aren't necessary, but Kousaka devotes herself to making him happy in more ways than one.", + "posterPath": "/lBRMJrc8ogt1yJhhzTAsjSTxbUr.jpg", + "backdropPath": "/kWfVitXQRM7J5D74y122kXe5YSB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-10-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 202, + "popularity": 2.4803 + }, + { + "id": 240641, + "title": "Nina the Starry Bride", + "originalTitle": "星降る王国のニナ", + "overview": "Nina never imagined she would be at the center of a royal deception. She’s had a rough start in life as an orphan in the castle town of Fortna. But when Prince Azure notices that her deep blue eyes look the same as the late Princess Alisha’s, he ordains that she takes her place and marry the Prince of Galgada. Despite this uncertain fate, she finds joy in knowing someone finally needs her.", + "posterPath": "/goE7QiiaRkzVLnwaODRNKarWljv.jpg", + "backdropPath": "/gpFoMy9EZOwjUlu1MKlTFFEQOIA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 50, + "popularity": 2.4797 + }, + { + "id": 13481, + "title": "The Adventures of Pinocchio", + "originalTitle": "ピノキオより ピコリーノの冒険", + "overview": "The Adventures of Piccolino is a 52 episode anime series by Nippon Animation first aired in 1976. The story is based on the novel \"Pinocchio\" by Italian author Carlo Collodi.", + "posterPath": "/7VjIU63FV7eJoPAygUUOOVsmRl7.jpg", + "backdropPath": "/cp9c1JewIsruytrtnlIiPlQLlo4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Kids" + ], + "releaseDate": "1976-04-27", + "releaseYear": "1976", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 8, + "popularity": 2.4797 + }, + { + "id": 35544, + "title": "Martian Successor Nadesico", + "originalTitle": "機動戦艦ナデシコ", + "overview": "Only one ship stands between earth and total annihilation! The High Mobile Battleship Nadesico is the most formidable fighting machine ever conceived, but due to a shortage of trained soldiers, the crew is a little unorthodox. The poor Jovians don't stand a chance against the largest contingent of geeks and misfits ever sent into orbit!", + "posterPath": "/iKd4q8iY1mcCCJ0GYBh9uJdlpUn.jpg", + "backdropPath": "/pPMoafI3yIXo0oC743sccsyAXpi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1996-10-01", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 18, + "popularity": 2.4795 + }, + { + "id": 258680, + "title": "Anyway, I'm Falling in Love with You.", + "originalTitle": "どうせ、恋してしまうんだ。", + "overview": "It’s the year 2020, and Mizuho is having the worst 17th birthday ever. Her parents forgot it’s her birthday, she still can’t seem to get close to the senior she likes, and all her school trips and tournaments are canceled thanks to a new disease going around. She’s convinced she’ll never have the kind of youth she’s always dreamt of…until her childhood friend, Kizuki, suddenly asks her out.", + "posterPath": "/1l2M78uA4oCqJImxnvrsSyjXzF6.jpg", + "backdropPath": "/hGrWgrPb80Mbbx3hFqsf0welxLu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2025-01-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 2.4794 + }, + { + "id": 249409, + "title": "Twilight Out of Focus", + "originalTitle": "黄昏アウトフォーカス", + "overview": "Three poignant love stories unfold in a boys' school film club as its members butt heads and navigate friendship, sexuality and boundaries.", + "posterPath": "/sk1YIuggnboOBXql6dpffAUBYFq.jpg", + "backdropPath": "/inSxdAuG0f1kNedPZCPkrNn8M6Z.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2024-07-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 17, + "popularity": 2.4782 + }, + { + "id": 77778, + "title": "A.I.C.O. -Incarnation-", + "originalTitle": "A.I.C.O. Incarnation", + "overview": "In Japan in the year 2035, an accident known as the \"Burst\" occurs during a research project, spawning an out-of-control artificial life form called \"Matter\" that has spread throughout the Kurobe Gorge. The research city that was once hailed as the hope for humanity is cordoned off by the government. Two years later, 15-year-old Aiko Tachibana, who lost her family in the Burst, learns something unbelievable from Yuya Kanzaki, a new student at her school. A secret is hidden within her body, and the answer to the puzzle lies at the \"Primary Point\" that was the center of the Burst. Aiko resolves to infiltrate the restricted area, escorted by a team of divers and with Yuya as her guide. When boy meets girl with the fate of humanity in their hands, what new truth will come to light?", + "posterPath": "/kZKj6x6Wa8xyfj2VWoLDq0Or6OC.jpg", + "backdropPath": "/32WeuBrqcXyTFEMcoWr0qkjf1zT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-03-09", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 58, + "popularity": 2.4761 + }, + { + "id": 286434, + "title": "Uglymug, Epicfighter", + "originalTitle": "ブサメンガチファイター", + "overview": "After a false accusation, Shigeru Yoshioka becomes an unemployed recluse. By choosing to remain ugly in another world, Shigeru gains higher status. He begins his second life as an absolute god with cheat-level stats. At first, Shigeru tags along with Seika, Seiji, and Leeds, but due to a weakness caused by direct contact with a girl, he considers breaking away from the party. However…", + "posterPath": "/6lYZ29Y4lBpod50gBz1OndQFqx0.jpg", + "backdropPath": "/fHaqmhk74upqcM6BnRwSXeIrLoV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.824, + "voteCount": 17, + "popularity": 2.4754 + }, + { + "id": 92579, + "title": "Keep Your Hands Off Eizouken!", + "originalTitle": "映像研には手を出すな!", + "overview": "First-year high schooler Midori Asakusa loves anime so much, she insists that \"concept is everything\" in animation. While she spends her time doodling endless ideas and settings in her sketchbook, she hasn't taken the first step to creating anime, insisting that she can't do it alone. After Asakusa's money-loving best friend Sayaka Kanamori notices her genius and drive – and when it becomes clear that their classmate and charismatic fashion model Tsubame Mizusaki wants to be an animator – the energetic trio start an animation club. Together, the three aim to realize the \"ultimate world\" that exists in their minds, as they come to see the power that fiction and imagination have on their lives and the world around them.", + "posterPath": "/1rHoqpvvfjHqEBGuhKfPtZoRQkC.jpg", + "backdropPath": "/zay5axfEIgIrd5tyPl2NsS1OPY4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2020-01-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 104, + "popularity": 2.475 + }, + { + "id": 37517, + "title": "The Tower of Druaga: The Aegis of Uruk", + "originalTitle": "ドルアーガの塔", + "overview": "The Summer of \"Anu\": In a summer once every five years, demons in the mysterious Tower of Druaga lose their powers due to the magic spell cast by a god named \"Anu\". King Gilgamesh, ruler of the kingdom Uruk, uses the appearance of demons as an excuse to invade the tower and find out the construct's secrets. As 80 years passed, the Uruk army managed to fight back the demons and built a fortress city and safe haven on the very first floor of Druaga—Metz Kier. Thus begins the story of a warrior named Jil, who, finding companions along the way, embarks on a quest for the fabled Blue Crystal Rod, a powerful artifact rumored to be in the highest floor of Druaga. However, other competitors, including the kingdom of Uruk itself, want the treasure, all for their own reasons.", + "posterPath": "/k77eqVawgYo4tPGzmuCdwBTi7XO.jpg", + "backdropPath": "/s5XcKKSQ7INYhrK4N92nxWabOH9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2008-04-04", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 19, + "popularity": 2.473 + }, + { + "id": 76130, + "title": "Killing Bites", + "originalTitle": "キリングバイツ", + "overview": "Yuuya Nomoto was horrified to discover that the vehicle he was driving was being used to kidnap a high school girl, but he's even more shocked when the girl, Hitomi Uzaki, literally tears her kidnappers to pieces instead! Then she forces Yuuya to drive her to an arena where she bets the value of his organs on herself to win in a death match against a half-lion hybrid! Even more astonishing: Hitomi wins! That's because she's a Therianthrope, a genetically engineered fighter created specifically for the underground death matches known as Killing Bites! And now that Yuuya has been pulled into this dark underworld, he has no choice but to continue working for Hitomi. Because who's going to fight against a girl who's part honey badger?", + "posterPath": "/uyIowoKd2SGu3ahUs669QuLFHbF.jpg", + "backdropPath": "/cRyGHTfK2J3GFMxsiI6eLbe9mu1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2018-01-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 141, + "popularity": 2.4727 + }, + { + "id": 65036, + "title": "Show by Rock!!", + "originalTitle": "SHOW BY ROCK!!", + "overview": "Set in the glamorous metropolis Tokyo Midi City, where music—and the dream of musical superstardom—is everything. Here, “battle of the bands” is more than just a teen rivalry: Dozens of ensembles compete for the honor of playing atop the city’s highest tower.", + "posterPath": "/mNruuU5nlxzf5XG0jfsJkWg94Ow.jpg", + "backdropPath": "/aam90rvNplzurTcClnETrs0o8x6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 2.4727 + }, + { + "id": 42499, + "title": "Waiting in the Summer", + "originalTitle": "あの夏で待ってる", + "overview": "While testing out his camera on a bridge one summer night, Kaito sees a blue light streaking across the sky, only to be blown off the railing seconds later. Just before succumbing to unconsciousness, a hand reaches down to grab ahold of his own. He woke up the next morning wondering how he ended up back in his own room with no injuries or any recollection of the night before. As he proceeds with his normal school life, Kaito and his friends discuss what to do with his camera, finally deciding to make a film with it over the summer break. Noticing that Kaito has an interest in the new upperclassmen Ichika Takatsuki, his friend Tetsurou decides to invite her, as well as her friend Remon Yamano, to join them in their project.\n\nIn what becomes one of the most entertaining and exciting summers of their lives, Kaito and his friends find that their time spent together is not just about creating a film, but something much more meaningful that will force them to confront their true feelings.", + "posterPath": "/4sR3bBl47FkkXGuuW0oDW72pS9O.jpg", + "backdropPath": "/gFRk6blKDP2V9R4mj3DYmvmoG9a.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-01-10", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 53, + "popularity": 2.4727 + }, + { + "id": 276288, + "title": "Hotel Inhumans", + "originalTitle": "ホテル・インヒューマンズ", + "overview": "The best hotels must meet certain standards, including the finest cuisine, ways to relax, and entertainment. Of course, they also need the best selection of weapons, reliable ways to falsify one's identity, and ways to dispose of evidence. In this hotel at the border of death stand two concierges, Ikuro Hoshi and Sara Haizaki. What kinds of requests will the assassins have for them next?", + "posterPath": "/dMHgFwX2cRPcuMSZ0rsBNap01o6.jpg", + "backdropPath": "/1Ik6i72QjVRNQ3N475uxiFxRrv9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 2.4723 + }, + { + "id": 37473, + "title": "Rave Master", + "originalTitle": "レイヴ", + "overview": "Fifty years ago, malevolent stones known as Dark Brings brought about the \"Overdrive,\" a calamitous event that destroyed one-tenth of the world. In the present day, the nefarious organization Demon Card seeks the Dark Brings' power for their all but innocent intentions.\n\nHaru Glory, a sword-wielding silver-haired teenager, inherits the title of Rave Master: the person who wields the power of the legendary Rave Stones, artifacts capable of destroying the Dark Brings. However, the many Rave Stones were scattered across the globe as a result of the Overdrive, allowing Demon Card to continue their malpractices.", + "posterPath": "/eGKx06UAZz5fG0WbsJAjhGjR8SZ.jpg", + "backdropPath": "/V1nE9ijzWD0QKr6NcmdtaDQncg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2001-10-13", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 43, + "popularity": 2.4714 + }, + { + "id": 42836, + "title": "Fafner", + "originalTitle": "蒼穹のファフナー Dead Aggressor", + "overview": "Tatsumiyajima is the central island in the middle of a small cluster of islands, in a sleepy backwater of the Japanese isles. Not much happens there, and the island's young people go to school knowing that their lives are likely to remain peaceful and undisturbed. Or so they have been taught...but the truth is different. The fate of mankind is on the line, and Tatsumiyajima is the last line of defense against a hostile and incomprehensible enemy. At the center of it all, fighting for Humanity's continued existence, is the giant robot Fafner, the dragon that guards this final treasure of mankind.", + "posterPath": "/jMqhqNYCp3MZ9kJKK5xg7pwqtjE.jpg", + "backdropPath": "/xVrTcXB7wQRL5S2uJ06mvnXSwH3.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10768, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "War & Politics", + "Drama" + ], + "releaseDate": "2004-07-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 15, + "popularity": 2.4709 + }, + { + "id": 9542, + "title": "Bubblegum Crisis Tokyo 2040", + "originalTitle": "バブルガムクライシス TOKYO 2040", + "overview": "MegaTokyo 2040: Tokyo’s workforce is riddled with robots that tend to go on destructive killing sprees.\n\nFour young women gear up in cybernetic suits to battle an evil corporation’s bionic pawns while its grip on the city threatens to strangle humanity.\n\nIn order to shut down an android uprising, these heavy metal heroines flirt with a critical meltdown in an adrenaline-fueled death match between woman and machine!", + "posterPath": "/visWGTzuyinneD8a2tNMSdHTP0y.jpg", + "backdropPath": "/3nmwKiDhF3daBoGPO3BlUumxcIt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-10-08", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 34, + "popularity": 2.4659 + }, + { + "id": 44742, + "title": "Remy, Nobody's Girl", + "originalTitle": "家なき子レミ", + "overview": "Remy, a cheerful and tender-hearted girl, lives with her mother in a French country town. One day her father returns to the town after a long period working away from home in a city. Her father tells Remy that she isn’t their real daughter, and Remy is almost sold to an evil slave trader. It is Vitaris, a strolling entertainer, who helps Remy. Vitaris discovers her talent for singing and decides to take her in with his troupe. Remy starts her journey with Vitaris and his troupe animals such as the monkey Georicoule and the dogs Capi, Dolce, and Zelbino.", + "posterPath": "/dklxmOaS4hS2J3YPevzqTaD3Fye.jpg", + "backdropPath": "/eHyRMSiCQEWcBowNLwp3y0deBsK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1996-09-01", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 10, + "popularity": 2.4638 + }, + { + "id": 61512, + "title": "Diabolik Lovers", + "originalTitle": "ディアボリックラヴァーズ", + "overview": "Based on a visual novel of the same name by Rejet and Otomate, for the female market.\n\nKomori Yui is a positive-thinking girl who nevertheless is troubled by seeing spirits and experiencing poltergeist phenomena. In her second year in high school, she transfers to a new school — a night school for entertainers and celebrities — due to her father's work. There are rumours that vampires exist among the student body, and Yui ends up living with the six sadistic Sakamaki vampire brothers.", + "posterPath": "/s47IdJi9JSvrOSr1fbswI9EUSEE.jpg", + "backdropPath": "/mAs8HQdoxJbMuXxgoSgDoX5apJd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2013-09-16", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 95, + "popularity": 2.4625 + }, + { + "id": 97782, + "title": "Kuma Kuma Kuma Bear", + "originalTitle": "くまクマ熊ベアー", + "overview": "Fifteen-year-old Yuna prefers staying home and obsessively playing her favorite VRMMO to doing anything else, including going to school. When a strange new update gives her a one-of-a-kind bear outfit that comes with overpowered abilities, Yuna is torn: the outfit is unbearably cute, but too embarrassing to wear in-game. But then she suddenly finds herself transported into the world of the game, facing down monsters and magic for real, and the bear suit becomes the best weapon she has!", + "posterPath": "/yLOiO2hnAGtIyY6sH5fNZqY919I.jpg", + "backdropPath": "/iF7igCcBrVEW77JNBSnThXpwu9g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.152, + "voteCount": 46, + "popularity": 2.46 + }, + { + "id": 18241, + "title": "The Big O", + "originalTitle": "THE ビッグオー", + "overview": "Forty years ago, the minds of Paradigm City's inhabitants were wiped clean of all recollections of the past. Now, ruled by a powerful corporation and cut off from the rest of the world by desolate wastelands, Paradigm has become a virtual police state where Negotiators like Roger Smith keep the wheels of progress, commerce, and society turning.", + "posterPath": "/AsL5J7k9diSxQcxwNEYJSKqtRCS.jpg", + "backdropPath": "/lNVwMT6PpQGriJN0Xi6CwpDwoas.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1999-10-13", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.914, + "voteCount": 30, + "popularity": 2.4587 + }, + { + "id": 21269, + "title": "Superbook", + "originalTitle": "パソコントラベル探偵団", + "overview": "Superbook, also known as Animated Parent and Child Theatre, is an anime television series initially produced by Tatsunoko Productions in Japan in conjunction with the Christian Broadcasting Network in the United States and more recently solely produced by CBN for global distribution and broadcast.\n\nThe series chronicled the events of the Bible's Old and New Testaments in its 52 episode run. The first 26 episodes aired from October 1, 1981 to March 29, 1982. The series returned as Superbook II with 26 episodes to air from April 4, 1983 to September 26, 1983. Between both series in the first run was the companion series The Flying House. The Christian Broadcasting Network is currently producing a new Superbook series and has released fourteen episodes.", + "posterPath": "/iIXRDcfqVMQZc5IFSLQluZfKL9F.jpg", + "backdropPath": "/mthAW0op3ALA2hXhFG3cdXw6tZA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Kids", + "Family" + ], + "releaseDate": "1981-10-01", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 13, + "popularity": 2.4556 + }, + { + "id": 198170, + "title": "Play It Cool, Guys", + "originalTitle": "クールドジ男子", + "overview": "Despite their distinctive personalities, Souma Shiki, Hayate Ichikura, Shun Futami, and Takayuki Mima all have one thing in common: though naturally clumsy, the four disguise their embarrassment from tiny slip-ups by maintaining a composed demeanor. However, it is actually the guys' airheaded natures that makes the girls' hearts throb. No matter what happens in their daily lives, the boys do their best not to lose their cool!", + "posterPath": "/2CnXuF3rxRCG1Et8vrPdAcPbvwd.jpg", + "backdropPath": "/cJzc5Rk2nGKcGFRVrbU2IOdmYtq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-10-11", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.063, + "voteCount": 16, + "popularity": 2.4542 + }, + { + "id": 36664, + "title": "Lady Georgie", + "originalTitle": "ジョージィ!", + "overview": "An Australian farmer returns home from the woods with a baby named Georgie. The girl lives ignoring the terrible secret hidden in the golden bracelet on her hand. Her \"Father\" and Her \"brothers\", Abel and Arthur, love her dearly, but her \"mother\" considers her an intruder and doesn't manage to open her heart to the girl. After Father dies in an attempt to rescue Georgie, Mother starts hating the girl. Georgie grows up into a beautiful young girl, and both her \"brothers\" are terribly in love with her. Not knowing the truth Georgie eventually falls in love with the handsome grandson of the British Governor. When Mother finally reveals the truth to her and condamns the girl for being an exile's daughter, Georgie leaves for Britain in search of her real parents - and for her love, who has also left Australia. Abel and Arthur follow her and the three are thrown into the cruel world of London aristocracy, lies and intrigues.", + "posterPath": "/nAyOUoBTavtCOTxn4hBp84twETZ.jpg", + "backdropPath": "/vJqqnr5kBNf13K3GxBqa5eb8cPZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "1983-04-09", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 2.4535 + }, + { + "id": 31701, + "title": "Burst Angel", + "originalTitle": "爆裂天使", + "overview": "The future’s looking bleak. It’s a good thing there’s a new sheriff in town. Her name is Jo and she’s an enigma even to herself. Alongside her partners Sei, Amy, and Meg, Jo fights for the citizens who can’t defend themselves. Confronting corruption and twisted science, these gals are on fire—and they’re the best chance the wounded city’s got.", + "posterPath": "/ePCzPNEfafaWA9NpvdzsHuaNBkq.jpg", + "backdropPath": "/ok5E21DIrRXfbWpzDQ4AyYugNjQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.113, + "voteCount": 31, + "popularity": 2.4527 + }, + { + "id": 107408, + "title": "The Gymnastics Samurai", + "originalTitle": "体操ザムライ", + "overview": "In the year 2002, the formerly powerful Japanese men's gymnastics team member Jotaro Aragaki is no longer able to compete. Even though he trained strenuously daily, he is asked about retiring by his coach Amakusa. However, a certain encounter alters Aragaki's fate.", + "posterPath": "/liHoITCCyZr9EB6KKl9VqKLOQ5H.jpg", + "backdropPath": "/6ipvxfnQxeB8Ntkrm6IqZTnFTmu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2020-10-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.158, + "voteCount": 19, + "popularity": 2.4491 + }, + { + "id": 16660, + "title": "Mononoke", + "originalTitle": "モノノ怪", + "overview": "The Medicine Seller is a deadly and mysterious master of the occult who travels across feudal Japan in search of malevolent spirits called mononoke to slay. When he locates one of these spirits, he cannot simply kill it; he must first learn its Form, its Truth, and its Reason in order to wield the mighty Exorcism Sword and fight against it. He must begin his strange exorcisms with intense psychological analysis and careful investigative work—an extremely dangerous step, as he must first confront and learn about the mononoke before he even has the means to defeat it.", + "posterPath": "/r3S04UDFVaDRC6fOSjLfvrDhpvd.jpg", + "backdropPath": "/1K0xW8RtPzACZ2Tu42H9R3OlGEw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-07-13", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.917, + "voteCount": 66, + "popularity": 2.4482 + }, + { + "id": 88040, + "title": "given", + "originalTitle": "ギヴン", + "overview": "Ritsuka’s lost his spark for music—until he hears Mafuyu sing. One voice pulls him back in, and suddenly, everything starts to change between them.", + "posterPath": "/gO4ntuWf5hTUNA76onzA62GVoBf.jpg", + "backdropPath": "/k76NuWGNLInN9WjhH7zhAcXBxvX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.552, + "voteCount": 773, + "popularity": 2.4468 + }, + { + "id": 119787, + "title": "Tropical-Rouge! Precure", + "originalTitle": "トロピカル~ジュ!プリキュア", + "overview": "Manatsu Natsuumi is a first-year junior high school student born and raised on a small island. On the day she moves from the island, She meets Laura, a mermaid girl who has come to the earth alone in search of the legendary warrior, PreCure. Laura's hometown, Grand Ocean, is attacked by a witch who lives in the dark depths of the ocean, and all of their motivational power is taken away. It is said that if the motivational power of humans is also taken away, the world will be in deep trouble. Laura is captured by the witch's servant, and Manatsu transforms into Cure Summer to save her.", + "posterPath": "/2kADqAWvVCKMvATHNviixw8oki7.jpg", + "backdropPath": "/4alh8wCZT2itRAD8m9hyySoJCOT.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10759, + 35, + 10765, + 10751 + ], + "genres": [ + "Kids", + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Family" + ], + "releaseDate": "2021-02-28", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 14, + "popularity": 2.443 + }, + { + "id": 34833, + "title": "Betterman", + "originalTitle": "ベターマン", + "overview": "A deadly virus known as \"Algernon\" has attacked humanity. At the forefront of the battle is the mysterious Akamatsu Industries, this undercover organization uses enhanced weapons known as NeuroNoids to battle Algernon. Also helping with their secret efforts is the mysterious mutant who is known as \"Betterman.\"", + "posterPath": "/comP8hOIxXl2k2IrdZxy0mrHoYO.jpg", + "backdropPath": "/nrB2mWNLiB480Fz3vqQu8PWBo7G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-04-02", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 5, + "popularity": 2.4421 + }, + { + "id": 222923, + "title": "Jellyfish Can't Swim in the Night", + "originalTitle": "夜のクラゲは泳げない", + "overview": "In the bustling heart of Shibuya, four young women—an artist, a retired idol, a V-tuber, and a composer—form JELEE, an anonymous artist group. United in their quest for self-expression, they journey towards self-discovery and finding their voice.", + "posterPath": "/m8JSoCOP0OlnlCpLXBgL7HOH77R.jpg", + "backdropPath": "/bVuykDnOlkI5psQyoFuCn4PYhM1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 34, + "popularity": 2.4411 + }, + { + "id": 57577, + "title": "Blood Lad", + "originalTitle": "ブラッドラッド", + "overview": "Staz is a vampire from the surreal \"Demon World\", and Fuyumi, an ordinary girl, accidentally wanders into the Demon World through a portal. Subsequently after meeting each other, Fuyumi is killed by a carnivorous plant and turned into a ghost, causing Staz to take responsibility and pledge to help bring her back to life.", + "posterPath": "/6ySatbrYDxvHkXaq7ZjIRRmJuQB.jpg", + "backdropPath": "/aduQ1nazJ5YI4gHvWphSAtD6NvY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-07-08", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 209, + "popularity": 2.4386 + }, + { + "id": 96139, + "title": "HYPNOSISMIC -Division Rap Battle- Rhyme Anima", + "originalTitle": "ヒプノシスマイク-Division Rap Battle- Rhyme Anima", + "overview": "Legendary rap group The Dirty Dawg could have taken Japan by storm, but then they broke up. Now each member fights in one of the four rival groups. Battles for turf are fought with rap and the Hypnosis Mic, a microphone that can affect the human spirit.", + "posterPath": "/8z45YRcsnUVRp6qEHkGSoql6CQM.jpg", + "backdropPath": "/8fh4Psj2TsLDEKE1lu24NiEkNLE.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 14, + "popularity": 2.4381 + }, + { + "id": 260689, + "title": "Negative Positive Angler", + "originalTitle": "ネガポジアングラー", + "overview": "Tsunehiro’s life isn’t easy. After a doctor gives him two years to live and debt collectors come knocking, he falls from a bridge. In the knick of time, Hana and her crew spot Tsunehiro and pull him to safety. Before returning, they anchor offshore to fish and Tsunehiro catches a huge sea bass in a bout of beginner’s luck. As his apartment building crumbles, Tsunehiro’s new life begins to unfold!", + "posterPath": "/hTa90snCvIgN4pFRB6op5MLLLCv.jpg", + "backdropPath": "/5NvA6QkG4CU2t6a7Z1pp7LUnhCh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-10-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 18, + "popularity": 2.4366 + }, + { + "id": 122287, + "title": "Love After World Domination", + "originalTitle": "恋は世界征服のあとで", + "overview": "It’s love at first sight for Fudo and Desumi, except it was during a battle of life and death. Fudo, leader of the hero squad Gelato 5, and Desumi, the Reaper Princess of the evil society Gekko, have found themselves caught in a forbidden love—and it’s their first relationship! Moving in secrecy, they live holding hands with one weapon in the other, finding out what’s truly fair in love and war.", + "posterPath": "/vHX5AFNNNNvkiZlxqS8WftUZOAH.jpg", + "backdropPath": "/4mS2p8DF8EpzbMzW2cq2nDZ4la4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 52, + "popularity": 2.4361 + }, + { + "id": 64552, + "title": "Shomin Sample", + "originalTitle": "俺がお嬢様学校に「庶民サンプル」として拉致られた件", + "overview": "Kimito Kagurazaka is an ordinary high school boy who is kidnapped by an elite young lady's academy to be a \"sample of the common people.\" The school is full of sheltered girls who have never met male peers before.", + "posterPath": "/bUCMLqtoYVywYcLu1XlxGGlRot5.jpg", + "backdropPath": "/uvwSzRWNJLwJVRrci9z0ynBheoL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-10-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.326, + "voteCount": 170, + "popularity": 2.4352 + }, + { + "id": 29884, + "title": "Saki", + "originalTitle": "咲-Saki-", + "overview": "Saki tells the story of a girl's mental and emotional growth as she and her fellow teammates battle fearsome rivals, all gunning for the national high school mahjong tournament, and is a cross between sports action and high school drama.", + "posterPath": "/f7G034DjKdPHucFLWHmx0qXpLBQ.jpg", + "backdropPath": "/f5G1mG7aVDuvgBhDY6ArCsMI16M.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2009-04-06", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 15, + "popularity": 2.4337 + }, + { + "id": 35423, + "title": "Arakawa Under the Bridge", + "originalTitle": "荒川アンダー ザ ブリッジ", + "overview": "Ko Ichinomiya's family motto is \"Never be indebted to anyone,\" but after losing his pants and falling into the Arakawa River, he quickly finds himself in debt to his savior, the cutely insane Nino who happens to live under the bridge. To repay her, he vows to help her with her desire to \"experience love.\" Along the way he'll meet the river's other residents, including a hot-blooded kappa, a Sister in drag, and a literal rock star.", + "posterPath": "/e2njBadZaTeFXKHs5LMKXb4FYM3.jpg", + "backdropPath": "/qOozkHguFVvG0BryiGdrTCXiTTg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-04-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 37, + "popularity": 2.4323 + }, + { + "id": 248086, + "title": "THE iDOLM@STER SHINY COLORS", + "originalTitle": "アイドルマスター シャイニーカラーズ", + "overview": "Hands clasped, hearts alight, our idols take flight! Watch as our wannabe idols band together to forge friendships and pursue their dreams, each with their own unique personalities that light up the screen just as much as the breathtaking visuals and novel storytelling. Embark on a dazzling and heartwarming tale about chasing a shining world.", + "posterPath": "/zSZ8T0nKeU91QnRObdTTPjrqmZ0.jpg", + "backdropPath": "/mApkcnnacTfFHlmEc6nJspqiAB1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-04-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5.556, + "voteCount": 9, + "popularity": 2.4319 + }, + { + "id": 278050, + "title": "A Ninja and an Assassin Under One Roof", + "originalTitle": "忍者と殺し屋のふたりぐらし", + "overview": "On the way home from school one day, Konoha Koga rescues Satoko Kusagakure, a ninja who escaped her village. Soon, pursuers from the village show up in search of Satoko only to be deftly dealt with by Konoha. As it turns out, the unassuming high schooler is actually an assassin. Thus, the potentially cutthroat cohabitation of a ninja and an assassin begins!", + "posterPath": "/9D0Wnq426kYQpizGU3McFqxOXPe.jpg", + "backdropPath": "/gjCIUh71506MRyEhpt7TvbiEdk3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 16, + "popularity": 2.4317 + }, + { + "id": 72788, + "title": "Magical Circle Guruguru", + "originalTitle": "魔法陣グルグル", + "overview": "The seal that for hundreds of years had confined the demon king Giri has worn off. A young boy named Nike is chosen (against his will) as the hero. Together with Kukuri, a girl who is the lone survivor of the tribe that had used black magic to seal Giri, they set off to save the world, RPG style.", + "posterPath": "/oW7fSREzxYF49Yyeg1H9kuAFgBu.jpg", + "backdropPath": "/kezI43878W4n30ill1dIq07c9W3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 7, + "popularity": 2.4317 + }, + { + "id": 245561, + "title": "OKITSURA: Fell in Love with an Okinawan Girl, but I Just Wish I Know What She's Saying", + "originalTitle": "沖縄で好きになった子が方言すぎてツラすぎる", + "overview": "When Teruaki Nakamura transfers to laid-back Okinawa, he falls for the lively Kyan-san—but her dialect is a complete mystery to him. With Higa-san translating, Teru's misunderstanding-filled island life takes off... and subtle hints suggest Higa-san might want his heart too. On this serene island, love flows as freely as the ocean breeze!", + "posterPath": "/VICqDMbB1K3MWZjtqxVEvl7ror.jpg", + "backdropPath": "/qkbCAbBf37exX9uM13ozSN2pQmd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-01-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 8, + "popularity": 2.4307 + }, + { + "id": 108906, + "title": "Pretty Rhythm: Aurora Dream", + "originalTitle": "プリティーリズム・オーロラドリーム", + "overview": "Prism Stars are performers on the new popular ice show, Prism Show. They are superidols whose techniques, singing and fashion sense are a cut above all others. Aira and Rizumu are two Prism Stars whose goal is to become the best, the Prism Queen; however, the road to success is bumpy.", + "posterPath": "/taWXKwAF5Lqy80dPCKHW3eruxqJ.jpg", + "backdropPath": "/enkRDzgrYROAqlI4CbdT0VMZJdq.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2011-04-09", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 5, + "popularity": 2.43 + }, + { + "id": 22077, + "title": "Baby and Me", + "originalTitle": "赤ちゃんと僕", + "overview": "Takuya Enoki is living a difficult life for a fifth grader. His mother passed away in a tragic car accident a few months ago, forcing him to pick up the slack and take care of his baby brother, Minoru, as his father works the endless hours typical of a Japanese salaryman.\n\nHe will have to sacrifice his childhood in order to meet the needs of his little brother. Cooking, cleaning, worrying, and trying to discipline Minoru are some of the tasks Takuya will have on his plate, all while their neighbors blame him for Minoru’s constant crying. Meanwhile, he will watch as his friends live their carefree lives, enjoying their free time. It will not be easy and there will be plenty of stumbling blocks, but along the way, he may actually learn the true meaning of family.", + "posterPath": "/wS5are5edZHy00y0o9Nnfl2ssKs.jpg", + "backdropPath": "/aGNEoVxLlJNXBfMplu08eOzGSJG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "1996-07-11", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 12, + "popularity": 2.4292 + }, + { + "id": 3251, + "title": "X", + "originalTitle": "X−エックス−", + "overview": "It's the year of destiny and 15 year old Kamui Shirō, a powerful psychic, has returned to Toyko after a 6 year absence. He returns to protect his childhood friends, Fūma, and Fūma's younger sister, Kotori. But destiny and fate are haunting Kamui and pulling in himself and his loved ones. It is his destiny to decide the fate of the world and mankind, no matter if he wants the role or not.", + "posterPath": "/mblTlK6XNGBrnrK3ftEIv1antZP.jpg", + "backdropPath": "/vtMhfULEdxFJd1wWcJYfw0Ud0c6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2001-10-03", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.343, + "voteCount": 105, + "popularity": 2.4267 + }, + { + "id": 158293, + "title": "Shinobi no Ittoki", + "originalTitle": "忍の一時", + "overview": "A descendent of the Iga Ninja Clan trains to become a shinobi and fights against the rival Koga Clan!", + "posterPath": "/2zg8z6krPm8sjfwPRyDVUgRvL9g.jpg", + "backdropPath": "/9DidWNT1fkqeKu2SpSjgo1iUZUg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2022-10-04", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.403, + "voteCount": 36, + "popularity": 2.4261 + }, + { + "id": 211709, + "title": "SHY", + "originalTitle": "SHY", + "overview": "On the brink of a third World War, superheroes appeared on Earth. Gifted with powers, their appearance brings peace to the world. The heroes each selected a country in which they would reside, serve, and protect its citizens. Shy is Japan’s hero, endowed with super strength. Her most daunting enemy yet? Crippling shyness. Join Shy and her super friends as she defends Earth and gains confidence!", + "posterPath": "/vskzblCarM8QXmWQfH4RwNOfiTk.jpg", + "backdropPath": "/sA6L9bRLVpFEtralQY5UQmgsHOD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.077, + "voteCount": 26, + "popularity": 2.4255 + }, + { + "id": 203045, + "title": "Paradox Live THE ANIMATION", + "originalTitle": "Paradox Live THE ANIMATION", + "overview": "Saturated in hip hop culture comes the birth of a new movement known as \"Phantom Live.\" Each of the artists have a metal accessory known as \"Phantom Metal\" which chemically reacts to the wearer's emotions to produce an image, setting a magnificent stage for enthusiastic youths. With legendary club \"CLUB paradox\" hosting the mysterious Paradox Live, four teams: BAE, The Cat's Whiskers, cozmez and Akanyatsura each receive an invitation to participate, each with their own genre of music in a race to the top.", + "posterPath": "/tlPG08mmtFPb6K0PpymddXvuzzt.jpg", + "backdropPath": "/7o116hjdaWQzEaRT4SfH4F6nohN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-10-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 8, + "popularity": 2.421 + }, + { + "id": 105511, + "title": "My Senpai Is Annoying", + "originalTitle": "先輩がうざい後輩の話", + "overview": "Futuba Igarashi's new job would be great if her senpai, Harumi Takeda, wasn't so incredibly annoying! Futuba hates his laugh, she hates how big he is, and she really hates that he treats her like a little kid. Just because Futuba is short and looks young doesn't make her a kid, and just because she spends so much time with Takeda doesn't mean she sees him as anything but an annoying senpai...or does she?!", + "posterPath": "/sIFbhBRTghLu36j3Aw67hrTSr2k.jpg", + "backdropPath": "/3v6YfgVKoBk0VrAEQ4Blq3KUly6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-10-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 64, + "popularity": 2.4174 + }, + { + "id": 195966, + "title": "RWBY: Ice Queendom", + "originalTitle": "RWBY 氷雪帝国", + "overview": "In the world of Remnant, a place where science and fairy tales coexist, human civilization is plagued by deadly monsters known as the Grimm. For a time, victory by the Grimm seemed all but certain, if not for the heroism of those sworn to protect humanity -- Huntsmen and Huntresses. These warriors are trained and assembled into teams at schools like Beacon Academy, where Ruby meets Weiss and Blake -- forming Team RWBY along with Ruby’s sister, Yang. While team RWBY studies to become the greatest Huntresses the world of Remnant has ever known, they are faced with a horrifying threat...", + "posterPath": "/vG14o43Bb4zrhDeURQIyht5JALO.jpg", + "backdropPath": "/2p4WlvOrdKjno5YRZ6IDQ7xixNy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.933, + "voteCount": 15, + "popularity": 2.4172 + }, + { + "id": 122286, + "title": "Rumble Garanndoll", + "originalTitle": "逆転世界ノ電池少女", + "overview": "Japan, 2019, just before the dawn of a new era. Suddenly, a rift to another dimension appears in the sky, revealing an alternative world \"Shinkoku Nippon,\" with the sky and the earth upside down. This parallel world keeps the former militarism, with its era being Eternal Showa. The military invades the real Japan with giant humanoid robots called \"GARANN\" and their gas weapons \"GENMU\", rendering our modern weapons ineffective. \"Shinkoku Nippon\" instantly seizes the government and achieves de facto conquest of Japan. The new era, \"Reiwa,\" has not arrived for Japan.", + "posterPath": "/h20Bf9yhuaWG3EKWyjignEG4561.jpg", + "backdropPath": "/dfCgeNUdRHZTfdwvaoIgVwV3zdx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 6, + "popularity": 2.4156 + }, + { + "id": 138183, + "title": "KAKEGURUI TWIN", + "originalTitle": "賭ケグルイ双", + "overview": "Determined to climb up the social ladder, Mary Saotome invests everything she has into what her elite high school values most: high stakes gambling.", + "posterPath": "/hc4lqS5sOHZCMoMau3xIdtgzafA.jpg", + "backdropPath": "/5MuHglMHocWxTy3FkEZRoVJvzs2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2022-08-04", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.247, + "voteCount": 85, + "popularity": 2.4137 + }, + { + "id": 45856, + "title": "Polar Bear Cafe", + "originalTitle": "しろくまカフェ", + "overview": "Pushed by his mother to stop lazing around the house, a Panda searches for a part-time job but has troubling finding one to accommodate his laziness. He soon stumbles upon the Shirokuma Cafe, run by a Polar Bear who is holding interviews for a part-time position with his faithful customer Penguin. Panda applies for the job but fails the interview, with the job instead going to a human girl named Sasako. However, the others soon point Panda towards a part-time job at a nearby zoo.", + "posterPath": "/hbbeiV0BH6BFQ3VFvOIj0rXOup4.jpg", + "backdropPath": "/jnY9e8G8KHkkqUUxzMr64mcnWLO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-04-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 11, + "popularity": 2.4116 + }, + { + "id": 237045, + "title": "Cherry Magic! Thirty Years of Virginity Can Make You a Wizard?!", + "originalTitle": "30歳まで童貞だと魔法使いになれるらしい", + "overview": "After a shy office worker unexpectedly gains the ability to read minds, he discovers that his handsome colleague can't stop thinking about him!", + "posterPath": "/5oYTlsrNYNcFyLINOIALikZu5Mh.jpg", + "backdropPath": "/9PIoKwn5T1h4iQf1KUwXH6kVVil.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-01-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 21, + "popularity": 2.4111 + }, + { + "id": 88051, + "title": "To the Abandoned Sacred Beasts", + "originalTitle": "かつて神だった獣たちへ", + "overview": "The democratic nation of Patria was created on the continent of Patria. Because of economical disputes, the country split north and south, creating the Northern Union of Patria and the Southern Confederation of Patria and they waged a long civil war. With their numbers dwindling, the North decides to use forbidden technology in order to defeat the South. This technology turns humans into monster-like soldiers, giving them almost godlike powers. And with those powers, the long war came to an end and peace was restored.", + "posterPath": "/yCKFfiaPjV3GeWUOabqxYq8a6cL.jpg", + "backdropPath": "/4eo2VEIjLa5JUNODlL2ERVf197q.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2019-07-01", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.633, + "voteCount": 75, + "popularity": 2.4108 + }, + { + "id": 248817, + "title": "I'll Become a Villainess Who Goes Down in History", + "originalTitle": "歴史に残る悪女になるぞ", + "overview": "This young girl hates all those goodie-two-shoes heroines. So when she’s reincarnated as Alicia, the villain in her favorite fantasy dating sim, it’s like a dream come true! There’s just one problem: the more she tries to be evil, the more the prince seems to fall for her. Alicia will have to work much harder if she ever wants to become the world’s greatest villainess.", + "posterPath": "/lTDWs3IjKwiBz00c8bzVmrgLa3A.jpg", + "backdropPath": "/v97JJxh6ts4v6xkLLFm7Sr76Mva.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-10-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 41, + "popularity": 2.4076 + }, + { + "id": 78434, + "title": "LAST HOPE", + "originalTitle": "重神機パンドーラ", + "overview": "After causing the near extinction of mankind seven years ago, genius scientist Leon Lau must now fight the ecological disaster he unwittingly created.", + "posterPath": "/bWMRcwNXoKefS53x0pLnZgOhg3R.jpg", + "backdropPath": "/5v8ADVoOc7ZCqVqreExpmHbyDz1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10759, + 10765 + ], + "genres": [ + "Drama", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-03-29", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.129, + "voteCount": 31, + "popularity": 2.4038 + }, + { + "id": 92586, + "title": "Somali and the Forest Spirit", + "originalTitle": "ソマリと森の神様", + "overview": "The world is ruled by spirits, goblins, and all manner of strange creatures. Human beings are persecuted, to the very point of extinction. One day, a golem and a lone human girl meet.\n\nThis is a record of the pair, one a member of a ruined race, the other a watchman of the forest. It tells of their travels together and of the bond between father and daughter.", + "posterPath": "/oWEIcSsevQREpdQQleynW3s1zh2.jpg", + "backdropPath": "/pLxNpnYuppOjpEyqiYmoZ2OrEI8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2020-01-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 42, + "popularity": 2.4033 + }, + { + "id": 76141, + "title": "The Ryuo's Work is Never Done!", + "originalTitle": "りゅうおうのおしごと!", + "overview": "The story is about a teenage boy who happens to be a shougi master. One day, a nine-year-old girl turns up at his house, requesting to be taken as his disciple. From there, all kinds of wacky hijinks ensue.", + "posterPath": "/lbHY3xFcffIQddcldG9WaEVWWhn.jpg", + "backdropPath": "/bAjeb5CIRv2oOBnebHUzV2oxzyN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.511, + "voteCount": 45, + "popularity": 2.4019 + }, + { + "id": 43242, + "title": "Uninhabited Planet Survive!", + "originalTitle": "無人惑星サヴァイヴ", + "overview": "It is the 22nd century where anti-gravity and warp travel are commonplace. However, the green Earth only exists in history book, people live in space colonies instead. Luna is a transfer student whose parents passed away when she was young, leaving her alone with her robotic cat Chako. Her dream is to become space exploration expert like her parents. A mistake during a school trip strands her and six of her classmates on a seemingly uninhabited planet. Here she must lead the introvert Shaara, the mechanic expert Shingo, the quiet Kaoru, the spoiled Howard, the obedient Bell, and the prideful Menori in s battle for their survival.", + "posterPath": "/ok7QAdCyoS9WI8P8PZbURbLoVZu.jpg", + "backdropPath": "/988JCReesf8PH34uHNvIranVMe6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2003-10-16", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8.167, + "voteCount": 6, + "popularity": 2.4018 + }, + { + "id": 91299, + "title": "ASSASSINS PRIDE", + "originalTitle": "アサシンズプライド", + "overview": "In the world only the aristocrats have the power to fight the monster - mana. Even though Melida Angel was born in an aristocracy and studies at an academy developing mana users, she has no mana. To find her talent for mana, Kufa Vampir was sent to be her tutor but at the same time, he was ordered to assassinate her if she has no talent for mana. He makes a cruel decision to assassinate her because he thinks that it is a wasted effort that people who have not any mana are working hard in this world... However, he asks her, \"Do you want to try to entrust your life to me?\" He is not as an assassin nor a tutor. He is someone betting on his pride as an assassin tutor, to show the world what Melida is capable of!", + "posterPath": "/oR5GH0hdYClkRgaTTu3eJbtjyyY.jpg", + "backdropPath": "/mKPUU1GtpCtyeBQRYgKnlolUgNA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80, + 18, + 9648, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime", + "Drama", + "Mystery", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 79, + "popularity": 2.4014 + }, + { + "id": 34820, + "title": "Jing: King of Bandits", + "originalTitle": "王ドロボウ JING", + "overview": "Jing may appear to be a young boy, but his remarkable skills make him one of the most feared thieves on the planet. Along with his feathered partner Kir, Jing travels from town to town, stealing anything of value regardless of the amount of security. But when he's in a pinch, he has one more trick up his sleeve: Kir bonds with Jing's right arm to perform the effectively deadly \"Kir Royale\" attack. And because of all this, Jing is infamously known by many as the \"King of Bandits.\"", + "posterPath": "/2u5mbQDXvLGUvDkh39K6ECKxmcc.jpg", + "backdropPath": "/bPnzERBUjyaQoyLOFgcEuL0Nu6U.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2002-05-15", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 6, + "popularity": 2.3992 + }, + { + "id": 65614, + "title": "Witch Craft Works", + "originalTitle": "ウィッチクラフトワークス", + "overview": "Takamiya Honoka is a regular student whose only problem seems to be that he sits next to Kagari Ayaka, the school's #1 beauty. They have never spoken to each other before and any small interaction between them immediately results in her fanclub beating him. Yet when a falling part of the school's building is about to send him to the afterlife, it's Kagari that comes to his rescue. Only... she's dressed as a witch, carrying him in her arms and floating on a broom?! Kagari tells him it is her mission to protect him and that now she can finally protect him openly rather than undercover.", + "posterPath": "/elt434eNLMhZQBM0tPu4mUkPqGo.jpg", + "backdropPath": "/6Dx6Cra1Ju06I4q62EOvLFwHaep.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-01-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 122, + "popularity": 2.3981 + }, + { + "id": 80539, + "title": "Asobi Asobase - workshop of fun -", + "originalTitle": "あそびあそばせ", + "overview": "During recess, Olivia, a foreign transfer student who doesn't know English, plays a game of \"look-the-other-way\" with Hanako Honda, a loud-mouthed airhead. Their rowdy behavior spurs the ire of Kasumi Nomura, a deadpan loner constantly teased by her older sister for her tendency to lose games. Not willing to compete, Kasumi declines Olivia's offer to join the fun, but eventually gets involved anyway and dispenses her own brand of mischief. Soon, a strange friendship blossoms between the peculiar trio, and they decide to form the \"Pastime Club,\" where they are free to resume their daily hijinks.\n\nWhether it be failing to learn English, trying desperately to become popular, or getting caught by teachers at the wrong time, school life will never be boring when these girls are up to their hilarious antics.", + "posterPath": "/zWE3bnCILcRpfQCsxBkMsgcEjOE.jpg", + "backdropPath": "/iLR6tKvMu67oSK0DIgDutkPBaiy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-07-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 149, + "popularity": 2.3949 + }, + { + "id": 236532, + "title": "The Strongest Tank's Labyrinth Raids -A Tank with a Rare 9999 Resistance Skill Got Kicked from the Hero's Party-", + "originalTitle": "最強タンクの迷宮攻略~体力9999のレアスキル持ちタンク、勇者パーティーを追放される~", + "overview": "Rud, a shielder with a defense stat of 9999, serves as a tank for the Hero's Party as they carry out raids in labyrinths. When the tyrannical hero suddenly kicks him out of the party, saying his skill is \"useless,\" Rud makes his way back to his hometown. Along the way, he saves a young girl, and she reveals the true nature of his skill... which turns out to be incredibly powerful!", + "posterPath": "/3Uf8L7wl4dokMukJ855cBLVxQj5.jpg", + "backdropPath": "/4e8zDimEuYp5NvhekPZ2W8FiJAa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 26, + "popularity": 2.3932 + }, + { + "id": 66919, + "title": "World Break: Aria of Curse for a Holy Swordsman", + "originalTitle": "聖剣使いの禁呪詠唱", + "overview": "The scenery takes place in a private high school involving the concept of \"saviors.\" They are known as people who possess awakened memories of their past lives. The story tells of a young boy named Moroha Haimura who comes to this private school. At the school, there are two types of people: Saviors, who fight enemies with weapons and techniques gleaned from the Puraana powers from their own bodies, and Kuroma, who wipe out enemies with magic to manipulate the Maana powers that surpass physics. Moroha Haimura is the first person with past lives of both Shirogane and Kuroma.", + "posterPath": "/e083Kkp9cC3no0Zc17gQVKBFqLu.jpg", + "backdropPath": "/9HndBpJjohTWgxZ9LOQYPYh0Hge.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-01-11", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 27, + "popularity": 2.392 + }, + { + "id": 277222, + "title": "Catch Me at the Ballpark!", + "originalTitle": "ボールパークでつかまえて!", + "overview": "To escape his tiring job, weary Murata finds escape at a nearby baseball stadium. While the games are thrilling, it’s Ruriko, the gyaru as cold as the beer she serves but secretly a sweetheart, who keeps him coming back. As her first regular, Murata discovers the warmth behind her frosty demeanor, and their hilarious, heartwarming encounters light up the ballpark and maybe even their hearts.", + "posterPath": "/jgfrsJiFJCOCRWD5OnKbKpTw92E.jpg", + "backdropPath": "/zymNlQT3NMJpoKehvJVUU7dyxvI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 9, + "popularity": 2.3879 + }, + { + "id": 214651, + "title": "The Dreaming Boy Is a Realist", + "originalTitle": "夢見る男子は現実主義者", + "overview": "Did Wataru's intentions slip by Aika because she was getting impatient?! This is the start of a romcom revolving around two people who just can't get their feelings across and both think their love is unrequited!", + "posterPath": "/85EoiGOOG58oP9HlvxiWjvgkMNR.jpg", + "backdropPath": "/9YAWGG7X8PU4W7MNXsO9vBJysQv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2023-07-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 38, + "popularity": 2.3864 + }, + { + "id": 217405, + "title": "I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness", + "originalTitle": "婚約破棄された令嬢を拾った俺が、イケナイことを教え込む", + "overview": "What does a young noblewoman freshly betrayed by her betrothed need most? A crash course in everything naughty! And who better to teach her than the feared hermit sorcerer who for some reason can’t help but pamper her to no end?", + "posterPath": "/tFr8Edx1Txms9EDiyLPEC6oiDDr.jpg", + "backdropPath": "/ydf5WJgPX5o34sMFcIQIglv0d4R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.619, + "voteCount": 21, + "popularity": 2.3863 + }, + { + "id": 44725, + "title": "Nobody's Boy: Remi", + "originalTitle": "家なき子", + "overview": "Orphaned Remi gets hired out to a traveling street entertainer Vitalis when her foster parents fall on hard times.", + "posterPath": "/vWPWVexfLDWU9vszZJVKtcgyuiL.jpg", + "backdropPath": "/r0suHqDDEo4hlFCTfJbATLipwIf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1977-10-02", + "releaseYear": "1977", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 122, + "popularity": 2.3839 + }, + { + "id": 110837, + "title": "Bungo Stray Dogs Wan!", + "originalTitle": "文豪ストレイドッグス わん!", + "overview": "The peaceful days of the very popular work Bungou Stray Dogs are here. The characters of the Armed Detective Agency and the Mafia are in miniature form?! Due to Atsushi and co. becoming cute, this is a different experience to the original work—a pleasant gag manga!", + "posterPath": "/37e40AS92eZKuvdxRuruNihiTOS.jpg", + "backdropPath": "/qODR3gZVdmkSeBfr17ph28rn0J0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-01-13", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 28, + "popularity": 2.3803 + }, + { + "id": 70639, + "title": "WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?", + "originalTitle": "終末なにしてますか?忙しいですか?救ってもらっていいですか?", + "overview": "The fleeting and sad story about little girls known as fairy weapons and an associate hero that survived. This is a world after it was attacked by unidentified monsters known as beasts and many of the species in the world, including humans, had been destroyed. The species that had managed to survived left the ground and were living on a floating island called Regal Ele. Willem Kmetsch wakes up above the clouds 500 years later and couldn’t protect the ones who he wanted to protect. Actually, he was living in despair because he was the only survivor.", + "posterPath": "/3ovabijZNSSXBAloBFzUVqmmLXC.jpg", + "backdropPath": "/y0SwJxgPOaX9VN94xIIrcYoI0FQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-11", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.996, + "voteCount": 134, + "popularity": 2.3797 + }, + { + "id": 66081, + "title": "The Wonderful Wizard of Oz", + "originalTitle": "オズの魔法使い", + "overview": "A young girl named Dorothy has gone to live with her grandparents on their small farm. One day when Dorothy is left alone in the house a tornado appears. Dorothy fails to get to the basement in time, and the entire house is picked up and transported to a magical land, falling on and killing a wicked witch. There she is informed by a good witch that she must travel to the Capital of Emerald and meet a great magician who may be able to help her find a way home. Along the way she makes some incredible friends and sees many strange and fantastic things.", + "posterPath": "/gULxsk1pbbhqal80ghawS2ZZhaY.jpg", + "backdropPath": "/3J5Xj6JZq931GaoynjRy8H6Jwp1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10751, + 10762, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Family", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1986-10-06", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 27, + "popularity": 2.3769 + }, + { + "id": 68134, + "title": "Anime de Training! Ex", + "originalTitle": "あにトレ!EX", + "overview": "The Series follows six young aspiring idols as they train and teach the audience using various exercise routines.", + "posterPath": "/wdPWxokwuZvHiL4R4lNg3Xg2Sz4.jpg", + "backdropPath": "/1oCGov2j4DV7ZMG6FKnqmBfcTXY.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-10-13", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 17, + "popularity": 2.3749 + }, + { + "id": 76123, + "title": "Fate/Extra Last Encore", + "originalTitle": "Fate/EXTRA Last Encore", + "overview": "Waking up in a strange virtual world with no recollection of the past, Hakuno finds himself forced to fight for survival in a war he does not understand for a prize beyond value; the opportunity to have one's wish granted. With only an enigmatic \"Servant\" by his side, Hakuno Kishinami will have to face both friends and foes in battles to the death in order to not only gain possession of a mysterious object known as the \"Holy Grail,\" but also to find the answer to the most important question of all: \"Who am I?\"", + "posterPath": "/5qveZHKo8RatUbZDzgGG9QEj558.jpg", + "backdropPath": "/78aF0EIxDdesV81ByS5PaFnqOnC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-27", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 96, + "popularity": 2.374 + }, + { + "id": 74080, + "title": "Anime-Gataris", + "originalTitle": "アニメガタリズ", + "overview": "After dreaming about an anime she used to watch as a child, Minoa Asagaya could not forget a particularly memorable scene. However, despite her best efforts, she cannot recall the name of the show. Due to this, Minoa asks for help from her fellow classmates at Sakaneko High School. Her conversation is overheard by Arisu Kamiigusa, the most popular and wealthy girl in class who is also a hardcore otaku. Yet even with her vast knowledge, Arisu does not recognize the show.\n\nAfter discovering that there isn't an anime club at their school, Minoa and Arisu create the Anime Research Club, as they may obtain the answer to Minoa's mystery if they gather people who share the same interest. Thus, Minoa is exposed to a bizarre new world—the world of anime!", + "posterPath": "/xfVB4VaFot6JDHySoiSC1pQoxDC.jpg", + "backdropPath": "/9ek7KfMQeY7qGeIMkzriHJ3udSw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2017-10-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 152, + "popularity": 2.3739 + }, + { + "id": 281042, + "title": "Food for the Soul", + "originalTitle": "日々は過ぎれど飯うまし", + "overview": "Follow the daily lives of five new undergrad college girls as the eat, laugh, and deepen their friendships. They love delicious, want to have lots of fun together, study hard, and enjoy their college life to the fullest!", + "posterPath": "/3jI8ZHkteqxYEi4xTET3HMQb4zD.jpg", + "backdropPath": "/jjRmHHPjd5lithIzG7gWkIQr5lD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-04-13", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 13, + "popularity": 2.3724 + }, + { + "id": 34744, + "title": "Hatsukoi Limited.", + "originalTitle": "初恋限定。", + "overview": "Ayumi and her friends are all just entering the eighth grade, as, one by one, they discover that love is infectious and you can catch it from anyone! Now Ayumi's torn between two brothers, Koyoi has an altogether different kind of brother issue and budding theatrical impresario Sumire seems ready to do anything to land her leading man. Then there's tom-boy Rika, aspiring artist Nao, Kei, who's very 'mature' for her age and older girl Misaki who really IS more mature.", + "posterPath": "/9TH837BXyZYo5YCOqyLSQvPTgDs.jpg", + "backdropPath": "/m1r1DMioCyjKdacWqvzb8bLWAsh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2009-04-12", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 9, + "popularity": 2.3715 + }, + { + "id": 66562, + "title": "Yo-kai Watch", + "originalTitle": "妖怪ウォッチ", + "overview": "After elementary schooler Keita Amano (Nate Adams) frees a Yo-kai butler named Whisper, he is granted a special watch that allows him to see the Yo-kai causing trouble all around him.", + "posterPath": "/k8EM9rl22UAGtR2YUHNHsnMWggn.jpg", + "backdropPath": "/9AgFgicr8tFS6gcFo1UDhiqU5GH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762, + 9648, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Kids", + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2014-01-08", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 24, + "popularity": 2.3685 + }, + { + "id": 65305, + "title": "Alice in Wonderland", + "originalTitle": "ふしぎの国のアリス", + "overview": "A young girl named Alice follows a white rabbit into a hole, only to find herself in Wonderland, where she meets many interesting characters, including the mysterious Cheshire Cat and the terrible Queen of Hearts.", + "posterPath": "/ipLBlkU7IXDS6bMgpG4cv92eHwG.jpg", + "backdropPath": "/q01bJ2II7TaBlxY2p7tcKu4UxxM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-10-10", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 13, + "popularity": 2.3683 + }, + { + "id": 67249, + "title": "The Prince of Tennis II", + "originalTitle": "新テニスの王子様", + "overview": "The Seigaku tennis club has been invited to train at the U-17 (Under 17) camp. Seigaku is one of the 50 middle schools invited and must compete with high school players to prove they are just as good.", + "posterPath": "/dgh8sdVp2O0d533M1T1ztrFkUyw.jpg", + "backdropPath": "/jL12R06O32PEGRxX3ihvbdOxtif.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2012-01-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 2.3674 + }, + { + "id": 234740, + "title": "My New Boss Is Goofy", + "originalTitle": "新しい上司はど天然", + "overview": "Forced to change jobs after being bullied by his boss, office worker Momose worries his new boss will be the same. But Shirosaki is totally easygoing!", + "posterPath": "/znyUBGQfT9Z59eqwJu0n9SNofXo.jpg", + "backdropPath": "/gxiXnVUqZ4RMtyZqJ6NMfuSeHUT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-10-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 19, + "popularity": 2.3663 + }, + { + "id": 34208, + "title": "Paradise Kiss", + "originalTitle": "Paradise Kiss", + "overview": "Yukari is a typical high-school student who listens to her parents and attends school everyday. As she starts to question her way of life, she encounters a group of fashion design students who has a clothing label known as \"Paradise Kiss\". The group needs to find a model to showcase their designs in an up-coming fashion show and decides to pick Yukari instead. Initially, Yukari was reluctant to be associated with this seemingly eccentric group, but eventually, she realises that they are really nice people. Furthermore, their passion and enthusiasm to follow their ideals and dreams make Yukari realise that she has not been enjoying her life and this motivated her to pursue her own dreams.", + "posterPath": "/o4c1e7mWp2MrsHGOytAWSRLx2tJ.jpg", + "backdropPath": "/bGUQFK9GWbATsIo2fkMVQeBk1DE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2005-10-14", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 32, + "popularity": 2.3648 + }, + { + "id": 65214, + "title": "Active Raid", + "originalTitle": "アクティヴレイド -機動強襲室第八係-", + "overview": "Set in a part of Tokyo that has descended into a quagmire, the story follows Unit 8 of the 5th Special Public Security Section's 3rd Mobile Assault Division — popularly called \"The Eighth\" — who don powered armor \"Willware\" exoskeletons to counter the rise in crime. Assistant inspector Asami Kazari is assigned to The Eighth with the task of assessing the unit's status and reporting it to her superiors. But her true goal is to rehabilitate this sloppy, haphazard, justice-less group.", + "posterPath": "/q5fpBFuTMtwLhPECXJ38c7XG07W.jpg", + "backdropPath": "/nFK1szk19NxWRnP9gV9wYNutvhy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2016-01-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 19, + "popularity": 2.3644 + }, + { + "id": 260822, + "title": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "originalTitle": "悪役令嬢転生おじさん", + "overview": "After being struck by a car, 52-year-old civil servant Kenzaburou Tondabayashi finds himself reincarnated as the villainess of his daughter’s favorite video game! Committed to his role as the haughty and arrogant Grace Auvergne, Kenzaburou plays out Grace’s part in the game’s story… Except his kind nature and elegant Japanese manners accidentally turn the unlikeable Grace into the most admired girl in school instead.", + "posterPath": "/gkWFukI6zs2brCGvEy5ZNlfjgJp.jpg", + "backdropPath": "/tq6Ouby6VmXxiQfJpUdh3zzPIF5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 24, + "popularity": 2.3641 + }, + { + "id": 108891, + "title": "Shenmue the Animation", + "originalTitle": "Shenmue the Animation", + "overview": "After he witnesses his father’s murder at the family dojo, Ryo Hazuki dedicates his life to finding the man responsible — a mission that takes him from the streets of Yokosuka, Japan to the sprawling metropolis of Hong Kong, and beyond. Soon he’ll learn that larger, mystical forces are at play as he trains to become the ultimate martial artist in his quest for revenge.", + "posterPath": "/owwTW4OVSG1IbU9gpVgRHbD6Dgz.jpg", + "backdropPath": "/9qboi1jAeIFfgbCtA686kYQGTx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2022-02-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 22, + "popularity": 2.3629 + }, + { + "id": 254853, + "title": "ZatsuTabi -That's Journey-", + "originalTitle": "ざつ旅 -That's Journey-", + "overview": "When aspiring manga artist Chika’s storyboards get rejected, she ditches her desk for an adventure! Armed with a quirky social media poll, she sets off on a spontaneous journey of random crowdsourced destinations. From hilarious mishaps to heartwarming encounters, Chika discovers inspiration, friendship, and herself, one unpredictable stop at a time.", + "posterPath": "/gemDYCOLFZE8RGMxJi433bikPcD.jpg", + "backdropPath": "/rN555e3fN2oFTTt03aA52BYC6sw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2025-04-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 13, + "popularity": 2.3628 + }, + { + "id": 31575, + "title": "Buso Renkin", + "originalTitle": "武装錬金", + "overview": "The story begins when high school student Kazuki Muto is killed one night saving a mysterious girl from a monster, only to wake up in his school dorm, believing it to have been a dream; however, he soon finds out that dream wasn't a dream at all when a giant serpentine monster attacks him and his sister. Tokiko Tsumura, the girl he saved, explains that the monster is a homunculus. Kazuki had been attacked and killed by it when he was rescuing her; however, she, feeling responsible for him, revived him by placing a Kakugane medallion in his chest, serving as a replacement heart.", + "posterPath": "/dx4wVPrb5mHfbD9W98KmXJQFBV4.jpg", + "backdropPath": "/mod0NUkN5XyJlO97O13yW0qfAeA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-10-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 31, + "popularity": 2.3617 + }, + { + "id": 132213, + "title": "Heroines Run the Show", + "originalTitle": "ヒロインたるもの!〜嫌われヒロインと内緒のお仕事〜", + "overview": "What would you do to pursue your passion? For Hiyori Suzumi, it’s leaving her simple rural hometown for the bustling city of Tokyo to join Sakuragaoka High School’s track team. Between being a manager-in-training for two cutthroat schoolboy idols, track, and friends, Hiyori shows no signs of slowing down.", + "posterPath": "/A5OlJA472GSc2S05bzAMaTw1o9w.jpg", + "backdropPath": "/oPyLzaWOFsbteeOmlBt1b36jsT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2022-04-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 18, + "popularity": 2.3615 + }, + { + "id": 279220, + "title": "Cultural Exchange with a Game Centre Girl", + "originalTitle": "ゲーセン少女と異文化交流", + "overview": "Kusakabe Renji, a young man working at a game centre, sees an English girl named Lily Baker playing a crane game on Valentine's Day. Seeing her fail repeatedly to win a prize, Renji can't help but take action. The day after Lily finally gets her plushie, Renji receives an unexpected message from her that reads, \"Be my valentine!\" What started as a misunderstanding leads to cultural exchange!", + "posterPath": "/vWg9mzTx4XtOVI2T5ScZj3RPCOn.jpg", + "backdropPath": "/dOJ2YDxwNTRgUpIx3xD8IDC7Scu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 6, + "popularity": 2.3612 + }, + { + "id": 110642, + "title": "RESIDENT EVIL: Infinite Darkness", + "originalTitle": "バイオハザード: インフィニット ダークネス", + "overview": "Years after the horrors of Raccoon City, Leon and Claire find themselves consumed by a dark conspiracy when a viral attack ravages the White House.", + "posterPath": "/wWwTjKER5a8LRUGHrw86VU0gUy1.jpg", + "backdropPath": "/uPHXbrh9jlq2XgfjjTFlkJfgtOQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.594, + "voteCount": 866, + "popularity": 2.3607 + }, + { + "id": 65950, + "title": "Kiznaiver", + "originalTitle": "キズナイーバー", + "overview": "The anime's setting is a fictional Japanese city named Sugomori City. One day, Noriko Sonosaki tells her classmate Katsuhira Agata, \"You have been selected to be a Kiznaiver.\" The Kizuna System, which allows Katsuhira to share his wounds, connects him to the classmates whose lives and personalities completely differ from his. The Kizuna System is an incomplete system for the implementation of world peace that connects people through wounds. All those who are connected to this system are called Kiznaivers. When one Kiznaiver is wounded, the system divides and transmits the wound among the other Kiznaivers. Sugomori City is built on reclaimed land, but as the years go by, the city's population is decreasing. The story is set in this town where Katsuhira and the others live.", + "posterPath": "/wk0zTNzmB8L2cR1lkvDMMFGAqvJ.jpg", + "backdropPath": "/wosCqZNuCSP7MnNRJOy665yXs4Z.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "2016-04-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.709, + "voteCount": 153, + "popularity": 2.3599 + }, + { + "id": 195923, + "title": "Case Closed: The Culprit Hanzawa", + "originalTitle": "名探偵コナン 犯人の犯沢さん", + "overview": "A silhouetted suspect moves to the crime-infested town of Beika with murder in mind.", + "posterPath": "/lxxh5cjBYZcymABOJWTlWnujakH.jpg", + "backdropPath": "/e4eOnPhpJjZth3Y0wQqrDuFTteU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Crime" + ], + "releaseDate": "2022-10-04", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 47, + "popularity": 2.3566 + }, + { + "id": 60818, + "title": "The World is Still Beautiful", + "originalTitle": "それでも世界は美しい", + "overview": "In the Sun Kingdom, sunshine is part of its citizens' everyday lives, and rain is something that they have never even heard of. However, in a faraway land called the Rain Dukedom, the weather is reversed, and everybody has the power to create rain with their voices.\n\nLivius Ifrikia has conquered the entire world and expanded the Sun Kingdom's influence in the three short years since he was crowned king. Upon learning about the powers to create rain, Livius decides to marry Nike Remercier, one of the princesses of the Rain Dukedom. However, those outside the Sun Kingdom have spread a rumor that Livius is a cruel, ruthless, and tyrannical ruler, and as word reaches the princess, she begins to prepare herself for the worst. But when she finally meets her fiancé, Nike discovers that he is an entirely different person from what she originally expected.", + "posterPath": "/5dsvoY06sJR86y7L8DPqOQV2gUi.jpg", + "backdropPath": "/wS7B6FiNG9fD06H8v5MqHyTBpc6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 47, + "popularity": 2.3561 + }, + { + "id": 239214, + "title": "A Condition Called Love", + "originalTitle": "花野井くんと恋の病", + "overview": "High school freshman Hotaru Hinase has a vibrant life full of family and friendship, but not much luck in romance. That all changes when she makes a warm gesture to her handsome and heartbroken classmate, Hananoi, leading to him asking her out and her becoming flustered. Witness a girl who grapples with the enigma of love and a boy who is heavy handed with it.", + "posterPath": "/aaYPPivWuebwIKQvFYuWkp9m0q5.jpg", + "backdropPath": "/9ACPQUpmlOLDZpQK61PRFRgauBO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-04-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 62, + "popularity": 2.3557 + }, + { + "id": 34689, + "title": "Magical Project S", + "originalTitle": "魔法少女プリティサミー", + "overview": "In the magical kingdom Juraihelm, Tsunami is in line to be crowned queen but must complete a test first. She must choose someone to make the world a better place. Sasami is given the task of delivering a CD from her mother's store to a spooky mansion. When she gets there she is met by Tsunami who tells her she will become a magical girl. She endows Sasami with magical powers and sends Ryo-Okhi with her as a guide. Matters are not easy, however, as Tsunami's rival, Ramia, wants the crown and will do anything she can, including creating her own magical girl, Pixy Misa, to stop Tsunami from being crowned.", + "posterPath": "/dNHchy6vllaw72Tp6yEDYZox9PI.jpg", + "backdropPath": "/f9ibinMF4S1gzF0gQG9Y9o83kCp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-10-04", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.143, + "voteCount": 7, + "popularity": 2.354 + }, + { + "id": 69355, + "title": "The File of Young Kindaichi Returns", + "originalTitle": "金田一少年の事件簿R", + "overview": "High school student Hajime Kindaichi is the supposed grandson of famous private detective Kosuke Kindaichi. Visiting Hong Kong for a fashion event with Kindaichi, our hero's girlfriend Miyuki is captured by a stranger in a case of mistaken identity. The journey to save Miyuki itself leads to yet another crime case...", + "posterPath": "/zO2tblpedor1VPTIvByS8Iccjs5.jpg", + "backdropPath": "/prEbnVJUVRHiRoaJ69mexvB0YWm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2014-04-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 14, + "popularity": 2.3527 + }, + { + "id": 80537, + "title": "HANEBADO!", + "originalTitle": "はねバド!", + "overview": "Ayano Hanesaki, a first-year student at Kanagawa Prefectural Kitakomachi High School, has a badminton ability able to surpass others effortlessly yet avoids playing the sport. She meets Nagisa Aragaki, a third-year student who practices day and night aiming to become the best player in Japan. Encouraged by coach Tachibana Kentarou, supported by club colleagues, and fired up by various rivals, the two engage in their youth and adored sport so thrilling like a shuttle flown at high speed!", + "posterPath": "/hDXmdpd2kwhqk4TLCaEowx3Y2lX.jpg", + "backdropPath": "/lPKt1PAEEK48wtbXi2se7he19Sr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-07-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 34, + "popularity": 2.3526 + }, + { + "id": 34803, + "title": "Capeta", + "originalTitle": "カペタ", + "overview": "Capeta is a Japanese sports manga and anime about kart racing by Masahito Soda. The manga won the Kodansha Manga Award for shōnen in 2005.\n\nThe series consists of three separate arcs. The first is about Capeta's first experiences with kart racing at the age of 10. The next arc, which starts four years later, deals with Capeta trying to handle his growing financial issues due to the high cost involved in kart racing. The third is about Capeta trying to realize his dream of beating his rival and becoming a professional racer, venturing through into a more senior category: Formula Three. Both the anime and manga features numerous references and homages to Initial D and Best Motoring International references, as well as Formula One. In addition to this, there are many karting and racing references that not only add flesh to the story, but are also factual.", + "posterPath": "/A6tucT7siPnRuJwkY3eudkbRV6N.jpg", + "backdropPath": "/1GUJZgNCBmZ5RZjGdH5ozFHLI5N.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2005-10-04", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 11, + "popularity": 2.3518 + }, + { + "id": 76134, + "title": "Mitsuboshi Colors", + "originalTitle": "三ツ星カラーズ", + "overview": "Residing within Tokyo’s district of Ueno are the Colors, three individuals who protect their city by performing good deeds and aiding their community. Or, at the very least, they pretend to be the city’s defenders. In reality, the Colors are just three young girls who spend their time playing make-believe and exploring the city. The Colors’ activities are facilitated by the grandfatherly Daigorou \"Pops\" Kujiraoka, who uses his store’s inventory of knick-knacks to entertain the rambunctious trio.\n\nNot everyone is a fan of the Colors though. The local policeman Saitou just wants to deal with his regular duties, but he often finds himself the target of the Colors’ attention, having been made the villain in most of their fantasies. But despite his personal feelings, Saitou always finds the time to go along with the three girls’ games. Even though the Colors do not actually defend Ueno, they definitely help brighten everyone’s day.", + "posterPath": "/uiB412p9JIfTqavtfJ54Izd64TD.jpg", + "backdropPath": "/cYMydFAatb4guDgOzKIeBEonaa4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 18, + "popularity": 2.3509 + }, + { + "id": 133938, + "title": "Management of a Novice Alchemist", + "originalTitle": "新米錬金術師の店舗経営", + "overview": "For a lonely orphan, there is almost only one career path to success. That is to get a national qualification as an alchemist. After graduating from the Royal Alchemist Training Academy, which requires nothing but ability, Sarasa is presented with the rights to a store by her master. After being sent off by her generous mentor, Sarasa sets off on her journey, dreaming of a slightly elegant life as an alchemist, but upon arrival, she is shocked to find that the countryside is even more rural than she had imagined. However, even in such a place, she has to manage a store somehow to make a living.", + "posterPath": "/hFnddzz8MJMrrrCEQGbY1aSCG7M.jpg", + "backdropPath": "/50CUkSThRy6rW3OnxO18C7xM6pu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.184, + "voteCount": 19, + "popularity": 2.3488 + }, + { + "id": 231873, + "title": "Oblivion Battery", + "originalTitle": "忘却バッテリー", + "overview": "Star pitcher Haruka Kiyomine and skilled catcher Kei Kaname were an unstoppable duo—until Kei was hit with a curveball: amnesia. Now they have a second chance to play at a no-name high school with a team of past rivals. Can they overcome Kei’s memory loss and rekindle their baseball dreams? With hilarious hijinks and fierce competition, get ready for a strikeout.", + "posterPath": "/f3omqdSksi5RSLCvkqAKbX8WLrm.jpg", + "backdropPath": "/rP7lxtP4BE0LqCG4nW9TDZfyP7B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2024-04-10", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 14, + "popularity": 2.346 + }, + { + "id": 5719, + "title": "Mirmo Zibang!", + "originalTitle": "わがまま☆フェアリー ミルモでポン!", + "overview": "Mirmo de Pon! is a manga series written by Hiromu Shinozuka and serialized in Ciao magazine from 2001 Jul through 2005 Dec. It was also published in twelve collected volumes by Shogakukan. The manga series was awarded the 2003 Kodansha Manga Award and the 2004 Shogakukan Manga Award for children's manga. The series was licensed for an English language release in North America by Viz Media. Four months later, the show aired in Japan for the first time.\n\nAn anime series named Wagamama Fairy: Mirumo de Pon! by Studio Hibari was adapted from the manga. It premiered in Japan on TV Tokyo on April 6, 2002, and ran for 172 episodes until September 27, 2005. The anime series is also licensed by Viz Media for an English language release in North America, and by ShoPro Entertainment, as Mirmo!.", + "posterPath": "/9BEa9q8c2J19iChC5PCsJSgGHAl.jpg", + "backdropPath": "/t317wZsJ4AIfPiSWRprmu9owVEh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-04-06", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 9, + "popularity": 2.345 + }, + { + "id": 46041, + "title": "My Little Monster", + "originalTitle": "となりの怪物くん", + "overview": "Mizutani Shizuku finds peace in her studies.  Working hard to stay at the top of the class, alone but focused.  When she is tasked with delivering class materials to Yoshida Haru, her world starts to rapidly expand.  With some new friends and feelings, will she be able to stay focused on her studies?", + "posterPath": "/qKCY7dUsEDdWvdftQJQoWkV3lFT.jpg", + "backdropPath": "/zHQ2ntgjx2xHMkyXFgI1tjcoHST.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2012-10-02", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.297, + "voteCount": 350, + "popularity": 2.3427 + }, + { + "id": 74081, + "title": "Blend · S", + "originalTitle": "ブレンド・S", + "overview": "High school girl Maika Sakuranomiya has trouble finding a part-time job because of how scary she looks when smiling. However, she is scouted one day by Dino, the manager of the café Stile where its waitresses play unique traits such as tsundere and younger sister. Maika is given a sadist trait because of her looks and has to adopt a dominant and cruel persona when servicing customers, particularly masochist ones.", + "posterPath": "/cRN22Xeb4kZ3GVBdfIJVPgD3ZH0.jpg", + "backdropPath": "/shat7d2no6y7p29568WprhohTAu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-10-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.253, + "voteCount": 255, + "popularity": 2.3349 + }, + { + "id": 22366, + "title": "One Outs", + "originalTitle": "ワンナウツ", + "overview": "Hiromichi Kojima, the star batter of the Lycaons, heads to the southern Japanese island of Okinawa to train and find a new pitcher for the team. There, he meets Toa Tokuchi, a 134-kmph pitcher and the undisputed king of a gambling form of baseball called \"One Outs\". At Kojima's urging, Tokuchi signs up with the Lycaons under an unusual contract: he gets 5,000,000 yen for every out he pitches, but loses 50,000,000 yen for every point he gives up. A high-level psychological game of baseball, gambling and logic is about to begin..", + "posterPath": "/YlkQr9E5L5ScgWYBq6WdSBkf75.jpg", + "backdropPath": "/eR5Dgd9yckTKBisyzzmago9kCkO.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2008-10-07", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 34, + "popularity": 2.3343 + }, + { + "id": 241021, + "title": "Isekai Onsen Paradise", + "originalTitle": "名湯『異世界の湯』開拓記 ~アラフォー温泉マニアの転生先は、のんびり温泉天国でした~", + "overview": "The story centers around Yoshizou Yukawa, a major hot spring fan who finds hidden springs to revitalize the economy of the local area. However, he dies after falling off a cliff and is transported to an alternate world, thanks to an inari deity of harvest at a small shrine nestled in the rocks. Together with the inari's attendant princess Mayudama, he continues searching for storied hot springs, only this time in the alternate world. Along the way, he ends up naked in hot springs with furry-eared girls and elven girls.", + "posterPath": "/5f0yh62qbcNyhETZgoaihqRIgdR.jpg", + "backdropPath": "/pXUW5Wa3pmT9KjXJb60TJ31l3Iy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-12", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 10, + "popularity": 2.3325 + }, + { + "id": 34864, + "title": "Princess Knight", + "originalTitle": "リボンの騎士", + "overview": "Princess Sapphire is a girl raised as a Prince. Through the mischief of an angel, the princess is born with both a girl's and a boy's heart. Since there is no boy successor in her kingdom, Sapphire is raised as a boy, but evil ministers try to reveal her secret. Unable to put up with the kind of vicious conduct prevailing in the kingdom, Sapphire disguises herself as \"Princess Knight\" and wields her sword of justice.", + "posterPath": "/qXV21ltqxe9VIr44hdcGjf1kXfY.jpg", + "backdropPath": "/b6V23ekh4Jow8zN6b7wdh7tqcYG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1967-04-02", + "releaseYear": "1967", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 13, + "popularity": 2.3315 + }, + { + "id": 62227, + "title": "Triage X", + "originalTitle": "トリアージX", + "overview": "Mochizuki General Hospital boasts some of the most well-trained nurses in town. But though these ladies spend much of their day battling sickness, their after-hours are spent fighting a very different sort of disease... Under the leadership of the hospital chairman, a handful of staff members and local teenagers form a group of mercenary assassins, targeting the \"cancers\" of society and excising those individuals before their wickedness spreads.", + "posterPath": "/eQuP3VBa7asCrQdaPG2SeZp4KlA.jpg", + "backdropPath": "/zstjUIjmlgpwCH8vkS7cwwQ03WO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2015-04-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.876, + "voteCount": 258, + "popularity": 2.3298 + }, + { + "id": 93019, + "title": "ORESUKI Are you the only one who loves me?", + "originalTitle": "俺を好きなのはお前だけかよ", + "overview": "Kisaragi Amatsuyu is invited out alone by the cool beauty upperclassman Cosmos and his childhood friend Himawari. Expecting to hear their confessions, he triumphantly goes to meet each of them in turn. But Cosmos and Himawari both instead confess to Amatsuyu that they like his friend. Amatsuyu fights this lonely battle, but there is another girl who is looking at him. She is a gloomy girl with glasses and braids. Amatsuyu finds that he hates her, because she's always turning her sharp tongue only on him and finding enjoyment in his troubles. But it turns out that she's the only one who actually does like him.", + "posterPath": "/q3589iXqM9rYuZ19f7PI8xZXpc.jpg", + "backdropPath": "/gd2r6lQEv9gqjqGmlTRYNkkvstX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2019-10-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 279, + "popularity": 2.3276 + }, + { + "id": 31713, + "title": "Street Fighter II: V", + "originalTitle": "ストリートファイターII V", + "overview": "Ryu and Ken travel the world to become better fighters and learn new techniques. During their journey, they find themselves caught up in a conspiracy of the mysterious Shadowlaw.", + "posterPath": "/jwhr0Cttec7FgDDZqz19EIqNETK.jpg", + "backdropPath": "/umeyX0a6JkDubtxfCDNPjWW66FL.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1995-04-10", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 73, + "popularity": 2.3267 + }, + { + "id": 45610, + "title": "Devil Lady", + "originalTitle": "デビルマン レディー", + "overview": "The beautiful and successful supermodel Jun Fudou meets a woman named Lan Asuka, who confronts her with a werewolf monster, which she calls a devil beast. As a result, unimagined powers awaken in Jun, and she manages to defeat the monster. She, just like this werewolf, is part of the next step in human evolution: humans who can mutate into beast-like monsters and then mercilessly terrorise civilisation. Unlike the other devil beasts, however, she can retain her humanity, which is her undoing because Lan Asuka is a high-ranking employee of the government and of the “Anti-Beast Special Squad”, which wants to abuse her powers and train her to mercilessly hunt down her own species.\n\nCaught between these extremes and her weak self, the question arises: what fate will Jun meet? Will she ever be able to decide it for herself?", + "posterPath": "/bBeUz5FFcIoJxSS6KDXOzYDH4Hn.jpg", + "backdropPath": "/fpJAiPn5U0I5hZldVNgQL5ImO99.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-10-10", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.393, + "voteCount": 122, + "popularity": 2.3238 + }, + { + "id": 216391, + "title": "THE IDOLM@STER CINDERELLA GIRLS U149", + "originalTitle": "アイドルマスター シンデレラガールズ U149", + "overview": "These small girls are ready to make it big! All 12 or younger and under 149 centimeters tall (4'11\"), these aspiring pop idols dream of performing for thousands of people. But with zero experience, they've got a lot of work to do! With the help of their rookie producer, who's almost just as short, can they stay focused and make it to the top?", + "posterPath": "/lAMjJGd1Ojwkw7MGj7fWLClzo7q.jpg", + "backdropPath": "/wvnPBJTFzNk1QpBbhzQkynqWMlG.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-04-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 13, + "popularity": 2.3165 + }, + { + "id": 45822, + "title": "Ixion Saga: Dimension Transfer", + "originalTitle": "イクシオン サーガ DT", + "overview": "Hokaze Kon is an otherwise normal boy who, one day, receives an inter-dimensional summons to the world of Mirror. He appears just in time to save the life of Princess Ecarlate, whose enemies are trying to prevent her political marriage. Kon, who knows nothing about Mirror nor the way home, attaches himself to Ecarlate's entourage.", + "posterPath": "/bsFlrXSTdgJ8IFxqUxTM3G4PIZV.jpg", + "backdropPath": "/uvxkdDFZjA8sYpLESr4hSysLzqi.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2012-10-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 12, + "popularity": 2.3147 + }, + { + "id": 26674, + "title": "Solty Rei", + "originalTitle": "ソルティレイ", + "overview": "It’s been twelve years since the Blast Fall, an unexplained disaster that left countless dead and many more maimed. Society is divided and every citizen feels the burn, most of all the Resembles – people whose mangled bodies have been rebuilt with high-tech prosthetic devices. Bounty hunter Roy Revant has seen it all, walking alone in this shattered city. That is, until the day a strange little girl named Solty falls from the sky straight into his heart. The search for family turns into a search for meaning and those that wield harsh power over society won’t go unnamed for long. Roy and Solty may seek different things… But who wants to search for truth alone?", + "posterPath": "/u8ONAAB4eWjn9CkE8s0JPMdcOUN.jpg", + "backdropPath": "/5NVIijd8tReEDTXyO1rSrz4XTtS.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 13, + "popularity": 2.314 + }, + { + "id": 21175, + "title": "Shinzo", + "originalTitle": "マシュランボー", + "overview": "Shinzo, known as Mushrambo in Japan, is an anime produced by Toei Animation and based on the Chinese legend Journey to the West. In the series, creatures known as Enterrans take over Earth and rename it in their own image: Enterra. Now three Enterrans have to protect the last human in order to restore the human race. The anime focuses primarily on the adventures they undergo while working to accomplish this task.", + "posterPath": "/oiAajUalnrbXDSFXjtD2LYSW2zg.jpg", + "backdropPath": "/KSxxz5Fuv1dLspqZNZnp2CuYCI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2000-02-05", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 9, + "popularity": 2.3097 + }, + { + "id": 5863, + "title": "Samurai 7", + "originalTitle": "SAMURAI 7", + "overview": "As villages perish under the thumb of a cruel race of warriors, a young priestess named Kirara travels the countryside gathering stray samurais.", + "posterPath": "/ebA9HuNZLscfmcWaOGHiBra0o1B.jpg", + "backdropPath": "/tTLPPCkjJZGaAmVdYueC9uNj0xX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-06-12", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 60, + "popularity": 2.3083 + }, + { + "id": 42554, + "title": "Sekai Ichi Hatsukoi: The World's Greatest First Love", + "originalTitle": "世界一初恋", + "overview": "Sekaiichi Hatsukoi follows three couples that are interconnected within the manga industry, with each being subject to the budding of first love.", + "posterPath": "/2Ald4WukHy8TeqacR6pbeIs1adO.jpg", + "backdropPath": "/hrbDqvBkKYbWiiW96V2PH8jAa8W.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2011-04-09", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 27, + "popularity": 2.3067 + }, + { + "id": 233408, + "title": "After-school Hanako-kun", + "originalTitle": "放課後少年花子くん", + "overview": "The spirit Hanako-kun and his human assistant, first-year student Nene Yashiro, keep the peace between supernatural forces and the students of Kamome Academy. When they’re not fighting to maintain balance between the living and spirit worlds, how do they spend their time? Join Hanako-kun and Nene on their adventures after school!", + "posterPath": "/6qtqmilWKwgbcz7l31aTvj7Edmu.jpg", + "backdropPath": "/v9fZdX7ra8ifTZokT27MLT3r30J.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-13", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 29, + "popularity": 2.306 + }, + { + "id": 117884, + "title": "The Strongest Sage with the Weakest Crest", + "originalTitle": "失格紋の最強賢者", + "overview": "His strength limited by the magical crest with which he was born, Mathias, the world's most powerful sage, decides reincarnation is necessary to become the strongest of all. Upon his rebirth as a young boy, Mathias is thrilled to discover he's been born with the optimal crest for magical combat on his first try! Unfortunately, the world he's been born into has abysmally poor standards when it comes to magic, and everyone thinks he's still marked for failure! Now it's up to Mathias to prove everyone wrong…world's strongest sage-style!", + "posterPath": "/55IKEC0Q0w50iKlygeHCdldTMse.jpg", + "backdropPath": "/3Ae74pwKoTE0Xjb19LCxxBZgiwt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 80, + "popularity": 2.3042 + }, + { + "id": 222623, + "title": "The Elusive Samurai", + "originalTitle": "逃げ上手の若君", + "overview": "Set between the Kamakura and Muromachi periods, during the Kenmu Restoration, the story follows the tale of Hojo Tokiyuki, a boy on the run after his family is overthrown by Ashikaga Takauji. With his only allies being a shady priest and his followers, the young lord must seek revenge and regain his glory, with his only weapon: a superhuman ability to flee and hide.", + "posterPath": "/f9ZgHhSwJKkoaVAuYz4uJaHsqii.jpg", + "backdropPath": "/cN8u7s6vaQezheTy2mGOzEmF7Hg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-07-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.853, + "voteCount": 34, + "popularity": 2.3025 + }, + { + "id": 239161, + "title": "THE NEW GATE", + "originalTitle": "THE NEW GATE", + "overview": "When an online game turns real, trapping its players in its virtual space, the strongest of them, Shin, rises up to put a stop to the madness. But just moments after defeating the game's final boss, Origin, and freeing everyone, Shin is transported 500 years into the future of the in-game world. Armed with unrivaled strength, the young swordsman embarks on a legendary journey.", + "posterPath": "/neTGdBl851se6Vk9xGVIZ7N2jzJ.jpg", + "backdropPath": "/pELpFSbW0zIjlbQy42DrTZyS8nE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-04-14", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.844, + "voteCount": 45, + "popularity": 2.3016 + }, + { + "id": 45281, + "title": "Majikoi - Oh! Samurai Girls", + "originalTitle": "真剣で私に恋しなさい!!", + "overview": "Kawakami City is famous for its strong dedication to its samurai ancestors. A healthy fighting spirit is always valued and it's even an important factor for success at school. Yamato, a second year student from Kawakami High school, is always with his close friends (4 boys and 3 girls). They have all known each other since they were young and have done many things together. While they have many other friends, this group of seven is a close-knit, inseparable group. They even have a secret base where they meet. With the new semester, they welcome two girls into their group and shortly after things begin to change...", + "posterPath": "/2wD6brkjoMIXlirEyqY5hoijmi6.jpg", + "backdropPath": "/r4QVwrTP29P7T8F9BQ8DqRBVVaU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2011-10-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 26, + "popularity": 2.3003 + }, + { + "id": 44775, + "title": "El-Hazard: The Magnificent World", + "originalTitle": "神秘の世界エルハザード", + "overview": "When Makoto Mizuhara discovers an old monument in his school and awakens a beautiful woman he, his teacher, his worst enemy and one of his female friends is transported to the magnificent world of El Hazard. There they discovers that they have received special powers.", + "posterPath": "/5rLMnEwY0nkLvY2td12KmZ03AfL.jpg", + "backdropPath": "/v4po8wXHHY9YyaBtMLzLhsr2DLE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1995-05-26", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 15, + "popularity": 2.2973 + }, + { + "id": 129599, + "title": "Waccha Primagi!", + "originalTitle": "ワッチャプリマジ!", + "overview": "“PriMagi” is a form of entertainment created by singing, dancing and fashion! There's a secret to this magical, sparkling stage! Yes, seriously, it really is \"magic\"! The main character, Hibino Matsuri, is a first year junior high school student who yearns to do \"PriMagi\". One day, she is scouted to join \"PriMagi\" by the wizard \"Miyam\", who suddenly appears!! The two of them work together to be at the top of \"PriMagi\", so they don't lose to their rivals!", + "posterPath": "/vBkzs9ZT409UMIKIlpVREe2U8Ho.jpg", + "backdropPath": "/1zzY21D52HKYadKvu9kHMvDRwNc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-10-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 9.3, + "voteCount": 6, + "popularity": 2.2972 + }, + { + "id": 137718, + "title": "Tomodachi Game", + "originalTitle": "トモダチゲーム", + "overview": "After his class' school trip fund is stolen, Yuichi and his best friends are abducted to play a debt repayment game; there is more than money on the line, as their bonds are tested with dark secrets and a lingering question of who is behind it all.", + "posterPath": "/l9wfsCpH5Zot8PSskCShqiQc9I4.jpg", + "backdropPath": "/lYFVTkTxjYGsiMDXqXk70fBKQAM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2022-04-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 80, + "popularity": 2.2971 + }, + { + "id": 1098, + "title": "Witch Hunter Robin", + "originalTitle": "ウィッチハンターロビン", + "overview": "Solomon fights the harmful use of witchcraft using a database of witches, which includes those who have obtained the power of witchcraft through genetics and others who carry the gene in order to arrest or eliminate them should their powers \"awaken\". The series focuses on one STN-J member, Robin Sena.", + "posterPath": "/uqsoTTEzLVKUacVR9cqtjqEYEAb.jpg", + "backdropPath": "/y9ETqHxMWc8IrDtVvRGST3IxafB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2002-07-03", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 41, + "popularity": 2.2971 + }, + { + "id": 25722, + "title": "Kodocha", + "originalTitle": "こどものおもちゃ", + "overview": "Sana Kurata has a charmed life. Not only is her mother is a famous, award-winning writer, but she's the star of the hit TV comedy \"Child's Toy\" while still in the fifth grade. But Sana's biggest concern is Akito Hayama, a pint-sized hellion who's organized the boys in their grade-school class into a mass of unending noise and violence. With the help of Rei, her manager, chauffeur and \"pimp,\" Sana is determined to win back control of the classroom from her new arch-enemy. But as her crusade continues, Sana moves further into Akito's life, and finds that he might not be entirely bad...or entirely safe.", + "posterPath": "/73UnEMJUxbG9zSIftY6HVJC6udS.jpg", + "backdropPath": "/tTj6xG4x3wARpgf9h9pYZYrEj8d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1996-04-05", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 27, + "popularity": 2.2967 + }, + { + "id": 34767, + "title": "Stellvia of the Universe", + "originalTitle": "宇宙のステルヴィア", + "overview": "2167 AD is shown to be devastated by a powerful electromagnetic shockwave. This is caused by a nearby star, Hydrus Beta, 20 light-years away, going supernova. The series itself is set 189 years later, in the year 2356 AD. Civilization has been rebuilt with humanity having united together to face the coming of the second shockwave of the supernova. The second shockwave, unlike the first, is to contain a great deal of matter composed of the remnants of the star itself.", + "posterPath": "/bjR3oeRrDU5553kjVKcLNlFOPLT.jpg", + "backdropPath": "/fcK5hv7qPePilQM7Vq864jQVmpz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2003-04-02", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.25, + "voteCount": 5, + "popularity": 2.2958 + }, + { + "id": 46169, + "title": "Mayo Chiki!", + "originalTitle": "まよチキ!", + "overview": "Sakamachi Kinjiro discovers that the most popular student in their school, Subaru Konoe—the butler of the headmaster’s daughter, Kanade Suzutsuki—is actually a girl.", + "posterPath": "/cwJSH6wTdOA1TnGsRQD3UjLWKZW.jpg", + "backdropPath": "/ijcoCucx8bNf7BUpJyHwMMNW0Ww.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-07-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.274, + "voteCount": 53, + "popularity": 2.2956 + }, + { + "id": 38084, + "title": "MM!", + "originalTitle": "えむえむっ!", + "overview": "There are twisted tales and twisted tales, but few are as twisted as poor Sado's, who's just realized that he actually likes being made miserable. Of course, knowing that only makes him more miserable, which in turn... well, you get the idea. Desperate to break the circle, Sado volunteers for a special club where he hopes he can work through his issues only to discover that the other members have equally... complex... issues to deal with.\n\nFor example, the hyper-aggressive club president Isurugi not only has a violent fear of cats, but also believes herself to be a god! Then there's Yuno, who's terrified of men; the Nurse, who forces other people to perform cosplay; and Hayama, Sado's best friend and a compulsive cross-dresser, who's also the girl that Sado is infatuated with. (We did say it was complex, remember?)", + "posterPath": "/5xsIJYkzrMahFHrwtpp7Gr8jDoQ.jpg", + "backdropPath": "/zPHGHYAuWSgX0OwWqaa3cyf8P19.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10749, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Romance", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 18, + "popularity": 2.2955 + }, + { + "id": 45058, + "title": "Shippuu! Iron Leaguer", + "originalTitle": "疾風! アイアンリーガー", + "overview": "Shippū! Iron Leaguer is an anime television series produced by Sunrise. Directed by Tetsurō Amino and featuring mecha designs by Kunio Okawara, it premiered on TV Tokyo on April 6, 1993 and ended its run on March 29, 1994, spanning a total of 52 episodes.", + "posterPath": "/k12pmq0lxJywXR474LSsXhtiV4r.jpg", + "backdropPath": "/Ak8Jk2L3mnoFjb6DN4EF6367AJJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1993-04-06", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 5, + "popularity": 2.2949 + }, + { + "id": 122826, + "title": "Dance Dance Danseur", + "originalTitle": "ダンス・ダンス・ダンスール", + "overview": "This young student will do whatever it takes to become the world's best ballet dancer: the Danseur noble!", + "posterPath": "/sF4IQP7jUVZmd8qup3dRj99faRY.jpg", + "backdropPath": "/eDG3Omokvq14lOKrM1KvO9u9spE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2022-04-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 18, + "popularity": 2.2946 + }, + { + "id": 88050, + "title": "Cop Craft", + "originalTitle": "コップクラフト", + "overview": "15 years ago, an unknown hyperspace gate opened over the Pacific. Beyond this gate lies Reto Semaani, a strange alternate world where fairies and monsters live.\n\nSan Teresa City—a city where over two million immigrants live from both worlds. As a result, there are the haves and the have-nots. Here is the world's newest \"city of dreams.\" But in the shadow of the chaos, crime is rampant: drugs, prostitution, and weapon trafficking. The detectives who stand up to these heinous crimes are in the San Teresa City Police. When the detective Kei Matoba and the alternate-world knight Tirana—two individuals who differ in gender, personality, and even world of origin—meet, an incident erupts. Two worlds. Two justices. From this, the curtain rises on a buddy police action story!", + "posterPath": "/7oWFujqWhPOGdUg4zseZfnAsNXv.jpg", + "backdropPath": "/yU0FKuu5GAW1PGYIjLkFdlVZFJ9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-09", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 31, + "popularity": 2.2942 + }, + { + "id": 70634, + "title": "The Rolling Girls", + "originalTitle": "ローリング☆ガールズ", + "overview": "In a dystopian future where Japan's political organization has crumbled after the Great Tokyo War, Japan is broken up into 10 independent nations, with each nation controlled by a gang led by a \"Best,\" a human-proclaimed prophet with destructive superpowers. Nozomi Moritomo is a \"Rest\"—a normal girl that has just started out as a rookie in the local gang. She wants to help the Best Masami Utoku, her childhood friend and role model, in the ongoing territorial dispute.\n\nWhen Masami becomes severely injured and unable to fight, Nozomi decides to go on a mission to complete the requests sent to Masami from all over Japan. Along the way, she meets Yukina Kosaka, a shy girl with no sense of direction; Ai Hibiki, an upbeat girl who loves eating; and Chiaya Misono, a quiet and mysterious girl that wears a gas mask. Together, the four girls travel all over the country on their motorcycles while getting involved in territorial wars, disagreements, and even suspicious conspiracies.", + "posterPath": "/9QuzoUebSW3xu6F40tYOb70rODt.jpg", + "backdropPath": "/ccdkaYSNo7irxRkSc5TvHiNoKGA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-12", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 18, + "popularity": 2.2938 + }, + { + "id": 95550, + "title": "SING \"YESTERDAY\" FOR ME", + "originalTitle": "イエスタデイをうたって", + "overview": "After college, Rikuo Uozumi, a boy without much ambition in life, takes on a job at a convenience store. The days pass by uneventfully for Rikuo until he meets his former girlfriend and classmate, but especially thanks to the unusual Haru Nonaka, and her pet raven...", + "posterPath": "/fB5WHX8NNThiMcLT0zMIeiiAjEO.jpg", + "backdropPath": "/xz5dU7uWPN7mXkjHLzoqWKwdHcO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 92, + "popularity": 2.2937 + }, + { + "id": 60814, + "title": "Blade and Soul", + "originalTitle": "ブレイドアンドソウル", + "overview": "Alka is an assassin for the Clan of the Sword. She's on a journey to find the woman Jin Valel, who killed her master Hon. Jin is demon-like woman who controls the Energy of Chaos and kills without feeling - not unlike how Alka has learned to kill in her work as an assassin. On her journey, Alka encounters three strange women, each great warriors in their own right, and grapples with her slain master's wish that she leave the life of an assassin behind.", + "posterPath": "/Aheo8qBUXTFSppHdgkZfc7fIovB.jpg", + "backdropPath": "/umRuntFGGmaDr9R0opfNnWK1zOi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.196, + "voteCount": 23, + "popularity": 2.2922 + }, + { + "id": 206324, + "title": "Chillin' in My 30s After Getting Fired From the Demon King's Army", + "originalTitle": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "overview": "Dariel, a dark soldier in the demon king's army who cannot use magic, has risen to the position of assistant to the Four Generals with his talent and energy, and has been wielding his skill. However, as soon as the Four Generals are replaced, Dariel is fired from the army. Dariel is devastated, but when he arrives in a human village, he finds that his adventuring skills, which are supposed to be useless to demons, have blossomed! \"I was... human?\" Dariel decides to spend his second life in this village, and the requests start pouring in! Trouble! False charge! Duel! With his natural skills and the adjusting power that he developed in his old place, the former dark soldier solves them all!", + "posterPath": "/wt3y5uru1yaHRHl8KUZ68HqcaMv.jpg", + "backdropPath": "/6Z8uMC4Bj30dbYKc3LkQbpXx4eA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 55, + "popularity": 2.2908 + }, + { + "id": 9477, + "title": "Attacker You!", + "originalTitle": "アタッカーYOU!", + "overview": "Attacker You! is the story of ambitious and energetic 13-year-old junior high schoolgirl You Hazuki (variously known as \"Mila,\" \"Jeanne\" or \"Juana\" in Western dubbed versions of the anime), who moves to Tokyo from Osaka to live with her father Toshihiko, a cameraman recently returned from Peru, and attend school. You's mother is not in the picture, having left when You was very young. Also living with You and her father is her younger brother Sunny, who is very attached to his older sister and tends to follow her everywhere she goes, including to school and to her volleyball matches. You is also curious about Kyushi Tajima, the pretty blonde woman whom she sees covering volleyball games on television, and about why her father becomes very angry whenever You mentions her.", + "posterPath": "/6iiSUJbxIA2XiFfEZCHk15LmlOG.jpg", + "backdropPath": "/lIykOzcXC0anF86E7pqU8SfmuHe.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1984-04-13", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 25, + "popularity": 2.2883 + }, + { + "id": 72635, + "title": "Knight's & Magic", + "originalTitle": "ナイツ&マジック", + "overview": "A mecha otaku is reincarnated into another world as Ernesti Echevarria, also known as Eru. In this world, huge humanoid weapons known as Silhouette Knights exist. Dreaming of piloting those robots, Eru and his friends, Archid Olter and Adeltrud Olter, aim to become Knight Runners.", + "posterPath": "/oDzFHkWvZ0JGRsGesVTQE0S7Itu.jpg", + "backdropPath": "/xAiu8FTFW86u3oqrQy8uuZbe60D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2017-07-02", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 58, + "popularity": 2.2881 + }, + { + "id": 112166, + "title": "Yasuke", + "originalTitle": "YASUKE -ヤスケ-", + "overview": "A peaceful boatman once known as the Black Samurai is pulled back into conflict when he takes a little girl with mysterious powers under his wing.", + "posterPath": "/hgYqEkZQS2fgC6E9fe8Le1Kxbmw.jpg", + "backdropPath": "/n37Q4McCD6EpiZJICgsDJWUhkWE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-29", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 246, + "popularity": 2.2864 + }, + { + "id": 34747, + "title": "Kaiba", + "originalTitle": "カイバ", + "overview": "In a world where memories can be stored like computer data, a young man named Kaiba searches for his lost memories and discovers a connection with a mysterious girl.", + "posterPath": "/Aa2x9qWRU7UwU1PCsBOj0HqoErZ.jpg", + "backdropPath": "/ofrEZSmNAzF2ZDkusPyZqhG8qZy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2008-04-11", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 47, + "popularity": 2.2861 + }, + { + "id": 216269, + "title": "I'm in Love with the Villainess", + "originalTitle": "私の推しは悪役令嬢。", + "overview": "The world turns upside down when a corporate drone wakes up as Rae Taylor, the heroine in her favorite otome game, Revolution. Rae is elated at the opportunity to court Claire François, the game’s villainess and the object of her affection. Armed with her knowledge of the game and events to come, Rae sets out to make Claire fall for her. But how will the villainess take Rae’s romantic advances?", + "posterPath": "/29jtBbv4eSk0QHdVMLwl8P4p6NX.jpg", + "backdropPath": "/irpfqoLS3cI08zGSpCDhclA3yyR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 42, + "popularity": 2.2825 + }, + { + "id": 22254, + "title": "Phantom: Requiem for the Phantom", + "originalTitle": "ファントム レクイエム・フォー・ザ・ファントム", + "overview": "Mafia is rife in America where assassinations are a regular occurrence on the streets. Inferno, a mysterious company, is behind most of these dealings through the use of their near-invincible human weapon, \"Phantom.\"\n\nOne day, a Japanese tourist accidentally witnesses Phantom's latest murder. Desperate to escape, the tourist hides in a secluded building. However, Phantom, revealed to be a young woman named Ein, and the leader of Inferno \"Scythe Master\" captures the tourist and brainwashes him.\n\nGiven the name \"Zwei,\" this once peaceful tourist is now a puppet of Inferno with no memories. Drawn into a world of lies, deceit, and violence, Zwei must fight to survive, hopefully to one day regain his memories and escape from this world where he is constantly on the brink of death.", + "posterPath": "/tkA2spPJbtaDvx2qz0rQC5af5HR.jpg", + "backdropPath": "/1nsuwlNHIWV8xKpGigOxKoG2Jp9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2009-04-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 33, + "popularity": 2.2824 + }, + { + "id": 46302, + "title": "Maoyu: Archenemy & Hero", + "originalTitle": "まおゆう魔王勇者", + "overview": "The story is set in a world embroiled by war between Humans and Demons. The Humans’ greatest hero invades the Demon Queen’s castle determined to vanquish her. However, instead of fighting back, the Queen proposes an alliance with the Hero. She explains how a sudden end to the war can bring further chaos to the world as the Humans once united to stand against their common enemies would eventually begin fighting among themselves, with similar issues already occurring at the Demon Realm. Convinced by her words, the Hero joins forces with the Queen and together they execute a plan to bring prosperity and a lasting peace to both Humans and Demons alike.", + "posterPath": "/GMPYCitK7L429czVhcPdfHu6N6.jpg", + "backdropPath": "/1jUOZbFhjo3GyLhQEfhy59jCXhr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2013-01-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.667, + "voteCount": 48, + "popularity": 2.2823 + }, + { + "id": 119631, + "title": "RPG Real Estate", + "originalTitle": "RPG不動産", + "overview": "The story begins 15 years after the demon king was defeated and the world has become peaceful. Kotone, who graduated from school and became a magician, inquired the kingdom-affiliated RPG Real Estate in order to find a new home. In reality, RPG Real Estate was Kotone's place of employment, and together with Fa, a demi-human, the priest Rufuria, and the soldier Rakira, they help support the searches of new homes for the customers with various circumstances.", + "posterPath": "/cNBXqytZ2531GotAQoC1vDXX92R.jpg", + "backdropPath": "/uOWHuasTpabR3zenQ3Arw2N4o0a.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 4.688, + "voteCount": 16, + "popularity": 2.2822 + }, + { + "id": 65965, + "title": "Angel Cop", + "originalTitle": "エンゼルコップ", + "overview": "In the future, Japan is in the grip of terrorism, and the police have become as brutal as the criminals. The Special Security Force stands out, led by the fearless Angel, an elite agent who, alongside her partner Raiden, investigates a series of brutal murders.", + "posterPath": "/tsl1tJdy8qH0WgawBZfIh7oCmL5.jpg", + "backdropPath": "/oUo0vMRgp5rePSQ8UCdIXfHyxld.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 80 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "1989-09-01", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 11, + "popularity": 2.2819 + }, + { + "id": 77529, + "title": "B: The Beginning", + "originalTitle": "B: The Beginning", + "overview": "Genius investigator Keith Flick rejoins the royal police force just as serial killer \"B\" emerges. Mysterious youth Koku may be an ally, or a target.", + "posterPath": "/ouigEf38GDHsH5U46J7iwNUBqIN.jpg", + "backdropPath": "/sVepiHYpQRnNvOpyWUIBy7n6azy.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 80, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Crime", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-03-02", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 174, + "popularity": 2.2815 + }, + { + "id": 196369, + "title": "The Little Lies We All Tell", + "originalTitle": "4-nin wa Sorezore Uso wo Tsuku", + "overview": "What do an alien, a rogue ninja, a girl with superpowers, and a disguised boy have in common? They’re all friends hiding as 8th graders at an all-girls school. Though none of them are aware of each other’s secret, their lies keep their friendship tight. If this wild bunch isn’t enough, their classroom is in danger of being destroyed…oh and Earth too!", + "posterPath": "/8BPAF90xUwBjJSSA2y1EemoIuEP.jpg", + "backdropPath": "/yvuEARziWYyfqoc7FQ5JSlmzyBw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-16", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 14, + "popularity": 2.2803 + }, + { + "id": 27346, + "title": "To Heart", + "originalTitle": "ToHeart", + "overview": "For as long as Akari can remember, she and Hiroyuki have always been friends. But with time, everything changes, and her feelings have turned into something more. As a new semester of high school begins, will the two childhood friends come closer together or drift further apart? Join Hiroyuki, Akari and all their friends—the bubbly Shiho, the quiet Serika, the lovely Kotone, and more—in this heartwarming tale of love, relationships and friendship!", + "posterPath": "/9EuhiTMDpdWEIWq9D1IZte2b1xL.jpg", + "backdropPath": "/wj9gg7DPT0fkX9m0ZkGconFHIMu.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1999-04-02", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 6, + "popularity": 2.2796 + }, + { + "id": 96442, + "title": "Life Lessons with Uramichi Oniisan", + "originalTitle": "うらみちお兄さん", + "overview": "Being an adult is hard, and for Uramichi Omota, that truth weighs on him. While on TV, he’s the upbeat exercise instructor for a children’s show, but he and his coworkers keep revealing the plight of adulthood on air. At least they’re working through it.", + "posterPath": "/8D7QUo2w4TwfLXsC6Riy7TMhyje.jpg", + "backdropPath": "/py5DjCbDekHpQkauSJToeO2FWjS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-07-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 34, + "popularity": 2.2788 + }, + { + "id": 61337, + "title": "Orphen", + "originalTitle": "魔術士オーフェン", + "overview": "Orphen finds himself living in a quiet town and taking on a student - Majic Lin, his landlord's son. Life is quiet and fairly lazy until the day Cleao Everlasting comes home from boarding school, and stumbles into Orphen's quietly laid plans for the sword that sits on her family's mantle: the Sword Of Baltanders. It turns out that the sword is actually one of three magical artifacts that Orphen will need if he is to save Azalie, and, in fact, was the very sword Azalie used in her experiment that ended with her unfortunate transformation. Before he can obtain it, however, the Bloody August assaults the town looking for the sword.\n\nTo find the other Baltander's relics, Orphen sets off with his apprentice, little miss Everlasting and two short-statured misfits.", + "posterPath": "/zzgAdxDsNPV518GV1R4xP16VLqK.jpg", + "backdropPath": "/wV2usCba4cyplsLukpRxYqkY7XP.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 16, + 10759 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1998-10-03", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 12, + "popularity": 2.2786 + }, + { + "id": 35973, + "title": "Romeo × Juliet", + "originalTitle": "ロミオ×ジュリエット", + "overview": "On a tragic night in Neo Verona, the Capulet family is murdered by Montague and the country is seized. The only Capulet survivor is the child Juliet, who is rescued by loyal knights. Fourteen years later, people in Neo Verona live in poverty and fear. Juliet has spent her life in hiding, and in disguise as the male Red Whirlwind, secretly fighting Neo Verona’s oppression. On one of her secret adventures, she is helped by Romeo and falls in love. Finally, on one fateful day, Juliet’s family reveals her heritage and their desire for her to reclaim her title and rescue Neo Verona from tyranny. Meanwhile, Juliet also discovers that Romeo is the son of her worst enemy. Can Juliet rescue Neo Verona and kill the father of the man she loves?", + "posterPath": "/qlol0RBxKvs6b8FnH8k256OuPsm.jpg", + "backdropPath": "/tYliL3xhxP5bLxYwzDNR8VObhT6.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 14, + "popularity": 2.2784 + }, + { + "id": 214264, + "title": "Kizuna no Allele", + "originalTitle": "絆のアリル", + "overview": "In the virtual world, you can be anyone. And for Miracle, her dream is to be a famous virtual artist! Miracle attends ADEN Academy, where she learns new talents to prepare her for her big debut. Although she’s a bit of a klutz, she’s determined to follow in the footsteps of her idol: the legendary VTuber, Kizuna AI. With dedication and the help of her friends, her dream just might come true!", + "posterPath": "/3wwJZ1LDe6aHHmchqAkS9LfmOZy.jpg", + "backdropPath": "/2pipnd58f6CmweY8o6BPBlufIOq.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-04-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 11, + "popularity": 2.2783 + }, + { + "id": 68640, + "title": "Unbreakable Machine-Doll", + "originalTitle": "機巧少女〈マシンドール〉は傷つかない", + "overview": "During the early 20th century, along with technological advancements, scientists were able to develop sophisticated magic. The combination of science and sorcery was Makinot, circuits made from spells that were put into objects to bring them to life and even gain a personality. It was developed as a military weapon and has now spread throughout the world. Akabane Raishin is now attending the Royal Academy to become the best in the world. Accompanied by the lovely teenage girl Yaya, who is actually Raishin’s puppet weapon, he plans on rocketing to the top of the class. However, his test scores come nearly dead last although his combat skills and determination are second to none. Raishin has to compete with the deadliest of classmates if he wants to come out as the king.", + "posterPath": "/hVZEHhtunEvFHUZGyIZChdci6Ul.jpg", + "backdropPath": "/k6gVdNL909okGl5BraTbwvOkkQP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 26, + "popularity": 2.2769 + }, + { + "id": 45195, + "title": "You and Me", + "originalTitle": "君と僕。", + "overview": "The story revolves around four teens - the good-looking twins Asaba Yuuta and Yuuki, the effeminate Matsuoka Shun, and the class head Tsukahara Kaname - who have known each other since early childhood. While they are not necessarily good or bad friends, they continue to hang out well into high school. The half-Japanese transfer student Tachibana Chizuru joins the circle of friends in this comedy about the everyday life of adolescence.", + "posterPath": "/gFPRdoqPRAwJ3aYtdH4tmZOrjGz.jpg", + "backdropPath": "/rL1toXLRIBOGsfX04lnPG5A4AjZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2011-10-04", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 6, + "popularity": 2.2747 + }, + { + "id": 68146, + "title": "Ninja Girl & Samurai Master", + "originalTitle": "信長の忍び", + "overview": "The anime centers on a young female ninja named Chidori, whose dream is to help the Warring States-era warlord Oda Nobunaga to achieve his goals.", + "posterPath": "/f7pCCsV0uzQ5O6Ik5X4VQB7iIj.jpg", + "backdropPath": "/wckZWH6AJknqbnXuYaUVNzLC9GE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 12, + "popularity": 2.2745 + }, + { + "id": 119335, + "title": "In the Land of Leadale", + "originalTitle": "リアデイルの大地にて", + "overview": "Due to a terrible accident, Keina Kagami is forced to live on life support in order to survive. The only way for her to be free is within the VRMMORPG \"Leadale.\" One day, her life support stops functioning, and Keina loses her life. But when she wakes up, she finds herself in the world of Leadale 200 years in the future. She is now the half-elf Cayna, who possesses lost skills and OP statuses and becomes closer to the other inhabitants of this world. But among those inhabitants happen to be the \"children\" she made in character creation?!", + "posterPath": "/GQVw5PC4385SMuKuuSIqzTLKof.jpg", + "backdropPath": "/jlcJMuYl1OYyyxxnZeghIytSbdO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2022-01-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 45, + "popularity": 2.2737 + }, + { + "id": 34701, + "title": "Gokudo", + "originalTitle": "ゴクドーくん漫遊記", + "overview": "Gokudo is an adventurer by heart, his only goals being to get all the money and hot babes in the world. After being told by an old hag in a local bar that an evil king seeks to harm him, he is set forth unknowingly on a hilarious adventure filled with a gender changing genie, demon prince, and sword wielding enemies galore. The story thickens later on when Gokudo and friends find out the real reason for their series of events.", + "posterPath": "/yeDbyOyYJuQpwML2gNGptS4i9g7.jpg", + "backdropPath": "/jupyc00jMXnD3VqFzeW1TxKVmBQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1999-04-02", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.429, + "voteCount": 7, + "popularity": 2.2727 + }, + { + "id": 209604, + "title": "Tearmoon Empire", + "originalTitle": "ティアムーン帝国物語~断頭台から始まる、姫の転生逆転ストーリー~", + "overview": "After a rebellion overthrows the Tearmoon Empire, Princess Mia meets her demise by guillotine at just 20 years old. She awakens eight years in the past, given a second chance at life. Haunted by her memory of the guillotine, the princess sets out to rebuild the empire and prevent a return to fate. Can the selfish princess learn to be a selfless leader, even though she’s trying to save herself?", + "posterPath": "/ukaAsrpMczWl2AP7l27uYwdunvB.jpg", + "backdropPath": "/92E2kg0wcQMuyPRUjqzRfV9lHMa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.074, + "voteCount": 27, + "popularity": 2.2725 + }, + { + "id": 85990, + "title": "Hitoribocchi no Marumaruseikatsu", + "originalTitle": "ひとりぼっちの○○生活", + "overview": "Hitori Bocchi, a girl with extreme social anxiety, has had only one friend throughout elementary school. When Bocchi learns they'll be split up after graduation, she makes a promise to her: \"By the time of my middle school graduation, I'll make friends with everyone in my class.\" And if she can't... they won't be friends anymore?! But Bocchi has a hard time talking to people. When she gets nervous, her legs cramp. She can't look other people in the eye. She doesn't even know how to make friends! Every way she thinks of to make friends ends up failing. Will her friend-making plan pay off?!", + "posterPath": "/btoTzCw3zmjRtB99g2M5Mw2GUQG.jpg", + "backdropPath": "/790rH1ByeDJg6VPwBFxdzxHRepI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 141, + "popularity": 2.2717 + }, + { + "id": 75778, + "title": "25-Year-Old High School Girl, I Wouldn’t Do This with a Kid", + "originalTitle": "25歳の女子高生", + "overview": "Once most students are done with high school, they leave and never come back. However, at 25 years old, Hana Natori finds herself in the role of a student once more at her aunt's request.\n\nSince Hana's cousin, Kaho Miyoshi, refuses to go to school, her aunt begs Hana to take Kaho's place, since the two of them are practically identical. But as luck would have it, she is recognized by Okito Kanie—an old classmate from her days in high school—who is now a teacher! With her cover blown, Hana assumes Kanie will expose her secret. But when he suddenly kisses her, she soon learns he has other ideas.", + "posterPath": "/ypjJNB2AZ8bffNULuWKwpYUoxC1.jpg", + "backdropPath": "/yARqByzW4paZU6vrwrfuj1N4th4.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-01-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 18, + "popularity": 2.2699 + }, + { + "id": 36025, + "title": "Kämpfer", + "originalTitle": "けんぷファー", + "overview": "Natsuru is selected to be a Kampfer, a mystical fighter who has to fight other Kampfers. The catch is that all Kampfers are female, and Natsuru is male... at least he was! Worse, Natusru's best friend turns out to have a crush on his new body.", + "posterPath": "/5z3iiFjp2k3AsrkcDr6FgLgCJTF.jpg", + "backdropPath": "/xvQ1j5vpro380XMlK7ldEc8m7k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.29, + "voteCount": 31, + "popularity": 2.269 + }, + { + "id": 137045, + "title": "Tokyo 24th Ward", + "originalTitle": "東京24区", + "overview": "The Far Eastern Special Administrative Region, also known as the 24th Ward, is a man-made island. Shuta, Ran, and Koki were born and raised on the island. Their family backgrounds, preferences, and personalities are completely different, but they always stuck together. However, one incident changed their relationship forever. A year afterward, the three friends are reunited by chance at a memorial service held for the incident. All three of their phones suddenly ring simultaneously. Their friend, who is supposed to be dead, is calling and demands that they make a decision about the future.", + "posterPath": "/3NYB8HfKALKQ4cHGx8Rx4Dhd0YE.jpg", + "backdropPath": "/zehW179C3TdFBdIE0bOhQ5TZnVn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2022-01-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 13, + "popularity": 2.2663 + }, + { + "id": 262254, + "title": "With You and the Rain", + "originalTitle": "雨と君と", + "overview": "On a rainy day, Fuji meets a cute critter posing as a dog and offering an umbrella and a cue card that says, “Please take me home,” and she can’t resist. With this dog-poster’s quirky charm and mysterious ways, life together becomes a heartwarming adventure of friendship and shared seasons.", + "posterPath": "/unxtv8nwBEMPWHTYlxl7z3k6yNc.jpg", + "backdropPath": "/vdSWplKXJ3HsdydRc3yLmx5C75F.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 11, + "popularity": 2.2634 + }, + { + "id": 204519, + "title": "The Ice Guy and His Cool Female Colleague", + "originalTitle": "氷属性男子とクールな同僚女子", + "overview": "For Himuro, being a descendant of a snow spirit is tough at the workplace when your emotions can lead to snow blasts with snowmen and igloos. Any emotionally charged incident with coworkers can trigger it—conflict, fun, and in this case, romance. And with his lovely and calm coworker Fuyutsuki, he gets more frozen, literally. Get ready for a snow-white office romance that blows in like a blizzard.", + "posterPath": "/2nZrmcyMgYCHmNGKPX9NXfWEybH.jpg", + "backdropPath": "/nGwKfxQ6ewF8zszw5qKbnigGqAJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.629, + "voteCount": 35, + "popularity": 2.261 + }, + { + "id": 64957, + "title": "Argevollen", + "originalTitle": "白銀の意思 アルジェヴォルン", + "overview": "The story takes place in a world where two countries, Arandas and Ingelmia, have been warring against each other for a very long time. Tokimune, a young man belonging to Independent Unit 8 of Arandas, saves a girl named Jamie when she is attacked by enemy forces. In order to survive, he pilots the new mech Argevollen and fights. The new mech Argevollen is defined by its U-Link system wherein the Argevollen molds to its pilot's mind and cannot be piloted by anyone else. This customization allows the pilot to envision what the mech will do in his mind to use it, rather than physically move and steer it.", + "posterPath": "/tKHfz6CtjjK8zW7Grw6176f8eMk.jpg", + "backdropPath": "/9F6VG0PuoZOxr8Bvh0mAXMqex8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 18 + ], + "genres": [ + "Animation", + "War & Politics", + "Drama" + ], + "releaseDate": "2014-07-03", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.545, + "voteCount": 11, + "popularity": 2.2602 + }, + { + "id": 84163, + "title": "Boogiepop and Others", + "originalTitle": "ブギーポップは笑わない", + "overview": "There is an urban legend that tells of a shinigami that can release people from the pain they are suffering. This \"Angel of Death\" has a name—Boogiepop. And the legends are true. Boogiepop is real. When a rash of disappearances involving female students breaks out at Shinyo Academy, the police and faculty assume they just have a bunch of runaways on their hands. Yet some students know better. Something mysterious and foul is afoot. Is it Boogiepop or something even more sinister...?", + "posterPath": "/lz95Bn85XN2pAXbHcSQreiUMv5b.jpg", + "backdropPath": "/eJfxs907hFWBDtXNeARGex69lxw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2019-01-04", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 40, + "popularity": 2.2567 + }, + { + "id": 38806, + "title": "Kemonozume", + "originalTitle": "ケモノヅメ", + "overview": "Creatures known as Shokujinki have been secretly living alongside humans for hundreds of years. Though they may look like humans, Shokujinki are able to transform into uncontrollable beasts with gigantic claws and consume humans to survive. The equally secretive Kifuuken dojo specializes in killing Shokujinki by cutting off their arms, and is the only force preventing unchecked Shokujinki domination.\n\nToshihiko Momota, the son of the leader of the Kifuuken, is instantly charmed by a mysterious woman named Yuka Kamitsuki. Their relationship is complicated, however, because unbeknownst to them both, Yuka is a Shokujinki and Toshihiko is sworn to kill her. Meanwhile, the Kifuuken is having a crisis of confidence as Toshihiko's brother Kazuma pushes against tradition and tries to modernize the Kifuuken. As emotions are strained and the secrets of both the past and present are revealed, who will live, and who will be eaten?", + "posterPath": "/xXXzkVXra7sbf8m9T12KLWYNAXM.jpg", + "backdropPath": "/fA4bnQPXOjEr0MUHbbltQHxpH1m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2006-08-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.739, + "voteCount": 23, + "popularity": 2.255 + }, + { + "id": 100825, + "title": "Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town?", + "originalTitle": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "overview": "Lloyd is a novice adventurer whose dream is to discover “true strength” in the capital he’s always admired, despite growing up with neighbors who always considered him weak. The story starts with him departing from his hometown, which just so happens to be located right next to…one of the most dangerous dungeons in the world?!", + "posterPath": "/5UqT4a8ep7vI9D1XrucBYKV4CB8.jpg", + "backdropPath": "/hvGXW3nISHm2ELwGhWcsSwTYfIi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 66, + "popularity": 2.2538 + }, + { + "id": 61338, + "title": "The Eccentric Family", + "originalTitle": "有頂天家族", + "overview": "In Kyoto, humans and supernatural creatures live side-by-side. Soichiro Shimogamo used to be the head of tanuki society, but without warning one day he was made into tanuki stew, and no one knows how it happened. He left four sons behind who all live happily with their mother. What does fate have in store for this strongly bonded family?!", + "posterPath": "/jDq0Q9OoeFOqJGCaV9sdn1cmJNy.jpg", + "backdropPath": "/cNZT0ELbKlLQqu0qANyI6c8yS3J.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-07-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 26, + "popularity": 2.2527 + }, + { + "id": 261392, + "title": "KAMITSUBAKI CITY UNDER CONSTRUCTION", + "originalTitle": "神椿市建設中。", + "overview": "Seven years after humanity was devastated by a major disaster, a beacon of science and prosperity rises in Kamitsubaki City. But lurking in its shadows are Tesseractor monsters born from human darkness. Only the Witchling, five girls with Song of Purification, stand against them. With every note, they fight, not just to protect the peace of the city, but to heal a broken world.", + "posterPath": "/A6jjtjVaStC9whPdrRxXY5KfEJk.jpg", + "backdropPath": "/rm8LhCEhiaNvWcAcpjoaWiamp8Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2025-07-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5.571, + "voteCount": 7, + "popularity": 2.2508 + }, + { + "id": 42676, + "title": "s-CRY-ed", + "originalTitle": "スクライド", + "overview": "The aftermath of a mysterious environmental catastrophe has left the land in complete desolation! While mankind has been able to rebuild the city, the catastrophe has caused some humans to undergo genetic mutations granting them special powers and abilities. These genetically enhanced humans are known as Alters. Kazuma has spent his entire life in the wastelands relying on his special powers to survive, but when a secret organization called ‘Holy’ threatens to take away his freedom, he will be left with a choice to join or die. His fight to seek the truth behind the ‘Holy’ will rage and consume humanity and Alter alike!", + "posterPath": "/qjTNWCwl1fZuYjkJMHg4kYNUpPF.jpg", + "backdropPath": "/lvNBckTghErG0OGnGGRNyzQ3Wdu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-07-04", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 14, + "popularity": 2.2505 + }, + { + "id": 91343, + "title": "Oda Cinnamon Nobunaga", + "originalTitle": "織田シナモン信長", + "overview": "Before he died at Honnouji in 1582, the great warlord Oda Nobunaga stood before a statue of Buddha and thought to himself that he'd committed so many sins that he'd very likely be reborn as a dog. He never expected that Buddha would take his words literally, however, but the next thing he's aware of, he's in the body of a Shiba Inu named Shinamon in modern Japan! Less than thrilled at the fact that his human warlord consciousness is trapped in the instinct-bound body of an adorable house pet, Nobunaga struggles between making the best of it (he can have that ruff all the Europeans were wearing!) and being frustrated with his reality (the ruff turns out to be a bath hat and now he has to have a bath). Is it better or worse that many of his fellow warriors also seem to have been reincarnated in canine form – and that his enemy looks like he lucked out and got to be a human?", + "posterPath": "/OwV2Uogjh7bhNI2IIzycrIeFCB.jpg", + "backdropPath": "/AgkSLEkrfa3L1TYgZ1AE8LzH5zB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 12, + "popularity": 2.25 + }, + { + "id": 229743, + "title": "VTuber Legend: How I Went Viral After Forgetting to Turn Off My Stream", + "originalTitle": "VTuberなんだが配信切り忘れたら伝説になってた", + "overview": "Yuki Tanaka is a VTuber at Live-On, one of Japan’s largest VTuber companies, as the polite and ladylike Awayuki Kokorone. One day, she forgets to end the stream, and viewers see her real personality—irreverent, improper, and prone to imbibing after a long day. Yuki is surprised to find that her accident caused her rankings to multiply, so she doubles down and gets to work. She’ll be a star yet!", + "posterPath": "/c6eB42kmJWGZgKecme6jhDeNMQr.jpg", + "backdropPath": "/1ufrmUqhlB1SdyGN7EbYgUEA4VJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-07-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 9, + "popularity": 2.2499 + }, + { + "id": 34841, + "title": "Bucky - The Incredible Kid", + "originalTitle": "ジバクくん", + "overview": "Spaak, a very powerful and respected G.C. (Great Child) offers his position to a young boy named Bucky who has the dream to become the ruler of the world. In order to become a true G.C. to protect his land from animals that have gone haywire, he must cross the twelve countries and defeat each G.C. guardian who are ordered by the G.C. leader Hail to stop him. Kai and Pinky who are also G.C. follow Bucky on his journey to make his dream come true.", + "posterPath": "/1fLhjgnHRZHBlPzPBRZny0Gsddk.jpg", + "backdropPath": "/lNsNe1zH8PmM9LAUDx5fKE9PlAX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1999-10-05", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 44, + "popularity": 2.2499 + }, + { + "id": 211297, + "title": "Revenger", + "originalTitle": "REVENGER", + "overview": "As master assassin Usui Yuen looks into a series of assassinations made on the grand samurai clan, the Satsuma, he encounters Kurima Raizo, member and survivor of one of the attacks. Together, they discover the true nature of these murders is bigger than over stolen resources. As they get closer to the truth, will they come out alive to exact revenge?", + "posterPath": "/tvtmguMWDFThuiRpjfIp4QC37yG.jpg", + "backdropPath": "/n2o3bfjTaiAQELubWwPkMNzQ0kH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2023-01-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.743, + "voteCount": 35, + "popularity": 2.2481 + }, + { + "id": 9148, + "title": "Great Mazinger", + "originalTitle": "グレートマジンガー", + "overview": "After Koji Kabuto and Sayaka Yumi leave to the USA, it's up to the rash orphan Tetsuya Tsurugi to pilot the next Mazinger robot: the Great Mazinger. Under the direction of Dr. Kenzo Kabuto and helped by his adoptive sister Jun Honou, Tetsuya battles the Miccene Empire.", + "posterPath": "/7nGqtwa4Ll4gscabYN7uGCFQdPa.jpg", + "backdropPath": "/cobH8xcQtBUjIQ4btggRGZgAUct.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1974-09-08", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 133, + "popularity": 2.2481 + }, + { + "id": 68096, + "title": "ViVid Strike!", + "originalTitle": "ViVid Strike!", + "overview": "Raised up in the same orphanage, Fuuka and Rinne were once close friends but parted company after a quarrel ended up with Rinne overwhelmed Fuuka with her martial art skills. Fuuka has a life in poverty after leaving the orphanage. An accidental encounter with renowned martial arts champion Einhard Stratos discovered Fuuka's hidden talent in fighting; Einhard offered Fuuka a job and coaching, encouraging her to meet up with Rinne again — in a ring.", + "posterPath": "/qRzv1UtMbsDCvgpKQSaYIgF8t0l.jpg", + "backdropPath": "/1qtkQqvxQMOaUCV7igeedR4zWVW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2016-10-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 55, + "popularity": 2.2478 + }, + { + "id": 98685, + "title": "Monster Girl Doctor", + "originalTitle": "モンスター娘のお医者さん", + "overview": "In the town of Lindworm where monsters and humans coexist, Dr. Glenn runs an exemplary medical clinic for monster girls with his lamia assistant, Sapphee. Whether receiving a marriage proposal by a centaur injured in battle, palpating the injury of a mermaid, or suturing the delicate wounds of a flesh golem, Dr. Glenn performs his job with grace and confidence. But when an unsavory character seeks to steal a harpy egg, how will the unflappable Dr. Glenn respond...?", + "posterPath": "/w0RJVdb1BdEjHAUX1LmzGyUvLaS.jpg", + "backdropPath": "/1sWzmUmMPT0cmfgPJkzzZ1VEnqY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-07-12", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.342, + "voteCount": 38, + "popularity": 2.2475 + }, + { + "id": 76866, + "title": "HUGtto! PreCure", + "originalTitle": "HUGっと!プリキュア", + "overview": "Hana Nono is an 8th-grade student who wants to be a stylish and mature big sister-like figure. She always puts on a lovely smile and loves to search for exciting things. One day, Hana meets a baby named Hug-tan and her guardian fairy named Harry who had fallen from the sky. At that exact moment, an evil organization called Dark Tomorrow suddenly appeared! They're trying to forcefully take Hug-tan's Mirai Crystal! In order to protect Hug-tan, Hana wishes to do something to help her, and her wish is granted, as she gains a Mirai Crystal and transforms into Cure Yell. The world is overflowed with Tomorrow Power, which is the power to create a brilliant tomorrow, which is crystalized into the Mirai Crystals. If it's stolen, everyone's future will not exist. To protect Hug-tan and everyone's future, Cure Yell will do her best!", + "posterPath": "/xY8RG5C7X28g9v8l8mBK137L2ER.jpg", + "backdropPath": "/v3JULnP3Ia2t2RiXQfQrSJz0VmC.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10759, + 10765, + 10751, + 10762 + ], + "genres": [ + "Comedy", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Family", + "Kids" + ], + "releaseDate": "2018-02-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 14, + "popularity": 2.2461 + }, + { + "id": 280906, + "title": "Grisaia: Phantom Trigger", + "originalTitle": "グリザイア:ファントムトリガー", + "overview": "What was once \"Mihama Academy,\" a sanctuary for young girls, has now been transformed into a SORD (Special Organization for Research & Development) training school dedicated to fostering talent for national defense. Rena and Maki specialize in firearms, Tohka and Gumi excel at sniping, Chris handles explosives and data processing, and Murasaki is a skilled ninja for intelligence operations. Together, they take on cases too complex for the police or Self-Defense Forces, repeatedly facing dangerous missions. This is the story of these young girls, painted in blood and gunpowder.", + "posterPath": "/z1AC8hMSPKK7OjeOldasielDWZE.jpg", + "backdropPath": "/dGyFvrxsFRYjiAaztx0Vcuz7OKt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2025-01-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.167, + "voteCount": 6, + "popularity": 2.2451 + }, + { + "id": 99624, + "title": "The 8th Son? Are You Kidding Me?", + "originalTitle": "八男って、それはないでしょう!", + "overview": "Ichinomiya Shingo, an everyday twenty-five-year-old office worker, wakes up as Wendelin, the 8th son of an impoverished noble family out in the sticks. He soon despairs at his lack of succession rights and knowledge to navigate the political world, but finds hope in his aptitude for magic. This is the story of that young man earning his keep and his freedom through magic, with no world saving involved, and spending quite a while escaping his solitude. Ultimately, it is also the story of him being unable to escape the shackles of society.", + "posterPath": "/vczlgbCyJPIzjhyyiI9mGVL1gTg.jpg", + "backdropPath": "/1QhNiFUOhljlOmdDrDbi4UGmEWk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2020-04-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.592, + "voteCount": 137, + "popularity": 2.2439 + }, + { + "id": 35236, + "title": "Bobobo-bo Bo-bobo", + "originalTitle": "ボボボーボ・ボーボボ", + "overview": "Based on the manga by Yoshio Sawai, Bobobo-bo Bo-bobo is one of the weirdest, yet funny animes using puns, cross-dressing, and lots of visual gags. Taking place in the year 300X, an evil organization knows as the Bald Empire (Margarita Empire) is planning to take over the world by stealing everyones hair. The Bald Empire, led by Emperor Baldy Bald, will have to go through Bobobo-bo Bo-bobo, who is determined to put a stop to them once and for all, if they plan to succeed. But it won't be easy, because Bobobo-bo Bo-bobo was trained to \"hear the voices of the hair,\" enabling him to command his own body hair to perform various martial arts stunts to defend himself. Along the way, he will eventually need the help of all the different, yet weird friends he encounters in order to defeat the evil Bald Empire.", + "posterPath": "/n7ub8ssDyKRyiWX6IWjl6Gjj2Rh.jpg", + "backdropPath": "/sZpV2xQwf9lREUuWTobmzXoOcJA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2005-10-01", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 28, + "popularity": 2.2439 + }, + { + "id": 92602, + "title": "ID: INVADED", + "originalTitle": "ID:INVADED イド:インヴェイデッド", + "overview": "Sakaido is a genius detective who can track down any criminal. But when his daughter is murdered, revenge lands him on the other side of the law. Now in prison, he helps the police solve mysteries using a system that invades a person’s identity. Little by little, a trail of blood forms, and it all leads back to his daughter’s murderer.", + "posterPath": "/42mieA29Dtw1dBL5mNgZvvLmK8n.jpg", + "backdropPath": "/fx33R1fHLyTSDHz2C2zegPdYujA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 79, + "popularity": 2.2402 + }, + { + "id": 23787, + "title": "Hell Teacher Nube", + "originalTitle": "地獄先生ぬ~べ~", + "overview": "Nueno Mesuke, better known as Nube, is a school teacher who does more than just teach. You see, Nube's left hand is a huge, nasty-looking demon's claw. He uses it to get rid of malicious demons, ghosts, spirits and other supernatural beings that are giving his students a hard time. Nube's left hand was normal, until one fateful day when he exorcised an extremely powerful demon from a child. He was outmatched and lost his left hand. The only way to fight it was to let it enter his body. As a result, Nube has a demonic left hand where his own hand used to be.\n\nTo educate and protect — that is what Jigoku Sensei Nube does.", + "posterPath": "/6NkKPwyJKE8aFWt7uGLglVVKiEp.jpg", + "backdropPath": "/rinfbZOAJHK2yGdMmHOjpBzDbnl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1996-04-13", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 66, + "popularity": 2.2396 + }, + { + "id": 106611, + "title": "Let's Make a Mug Too", + "originalTitle": "やくならマグカップも", + "overview": "Together with her father, who had quit his salaryman job, Toyokawa Himeno moves to Gifu prefecture's Tajimi city. That's the city where her mother is from, whom she had lost when she was still young. Himeno is now attending her mother's alma mater, where her classmate Kukuri Mika invites her to tag along to a special place. That place turns out to be the pottery club! There, she learns for the first time that her mother was a legendary potter, and is consequently pulled into the world of pottery.", + "posterPath": "/nNnyQoWgTPlKfAFLEjIci9ug1z7.jpg", + "backdropPath": "/cOlSALXeP8v8Mzp47OG7HcShqll.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 9, + "popularity": 2.2387 + }, + { + "id": 35532, + "title": "Mitsudomoe", + "originalTitle": "みつどもえ", + "overview": "Mitsuba, Futaba, and Hitoha are not your typical Japanese students. Satoshi Yabe who's a newly hired teacher will have to learn to deal with these three girls as they terroize him or it will end up getting the best of him.", + "posterPath": "/1FgmEVB9DKQ865tlBRyKAko3YyX.jpg", + "backdropPath": "/noRXGxDLk70uhzBBxIgtCudxbx4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-07-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 15, + "popularity": 2.238 + }, + { + "id": 43702, + "title": "Katri, Girl of the Meadows", + "originalTitle": "牧場の少女カトリ", + "overview": "Katri, Girl of the Meadows is an anime series based on the Finnish novel, \"Paimen, piika ja emäntä\" by Auni Nuolivaara. The series was broadcast originally in Japan in 1984 as part of the children's anthology series World Masterpiece Theater, also known simply as \"Meisaku\" from Nippon Animation. The anthology had before and after produced a great variety of animated series based on different children's novels from around the world; among them were \"My Annette: Story of the Alps\" and \"Little Princess Sara\". In Europe, where \"World Masterpiece Theater\" series have found huge success, \"Katri, Girl of the Meadows\" made its way to different countries including Spain, Italy, France and Germany. The series has never been broadcast or published in Finland where it remains mostly unknown.", + "posterPath": "/skCUEYJhIwcC7DBjfR1djGlONXg.jpg", + "backdropPath": "/xLstSL3QHJAcaxTrFby4pwbcjO6.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16 + ], + "genres": [ + "Drama", + "Animation" + ], + "releaseDate": "1984-01-08", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 7, + "popularity": 2.2342 + }, + { + "id": 71961, + "title": "Super Pig", + "originalTitle": "愛と勇気のピッグガール とんでぶーりん", + "overview": "One fateful day, Karin, a junior-high student, found what she thought was an injured piglet. However, the piglet was just exhausted from hunger. After the piglet regained his health by eating Karin's apple, he revealed that he is a prince, Tonrariano III, from a planet called Booringo. Tonrariano wanted to reward Karin for helping him and so he transformed her into a pig with superpowers. Karin was not at all pleased with the gift because she wanted to become a pretty superheroine like \"Cutey Chao\" (a parody of Cutey Honey), not Super Pig. Reluctantly, she became more interested in her role as Super Pig when she found out that she can turn into someone like \"Cutey Chao\" if she can collect 108 pearls through doing good deeds for other people.", + "posterPath": "/2B3eqlNIULKwo0X7qmwHf7W3rXd.jpg", + "backdropPath": "/8QnYftbKVqVzocx6MZJ6CUFruIz.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 16, + 10765, + 10762, + 10751 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "1994-09-03", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 30, + "popularity": 2.2317 + }, + { + "id": 44318, + "title": "Hakuoki", + "originalTitle": "薄桜鬼", + "overview": "Yukimura Chizuru is the daughter of a doctor who works in Edo; her father leaves Edo to work as a volunteer doctor and moves to Kyoto without his daughter. As time passes by, Chizuru starts worrying about losing contact with her father, so she decides to go to Kyoto in search of him.\n\nOn the way, Chizuru is attacked by few criminals and witnesses a fight between an oni and the Shinsengumi. Taking her into custody and saving her, the Shinsengumi debate on what to do with Chizuru when they discover that she is the daughter of the doctor they are also looking for. So they decide to become Chizuru's protectors and help her look for her father (the doctor).\n\nLots of events happen while she stays with the Shinsengumi, as they discover mysterious secrets and also fight against the Bakumatsu group.", + "posterPath": "/x98F4iTVwojYvpngeGbr9SXss7M.jpg", + "backdropPath": "/j1563JCbS2VGulDWPU6kocvg5pY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-04-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 30, + "popularity": 2.2317 + }, + { + "id": 96942, + "title": "BACK ARROW", + "originalTitle": "バック・アロウ", + "overview": "Lingalind is a land enclosed by the Wall. The Wall covers, protects, cultivates, and nurtures the land. One day in Edger, a village on the outskirts of Lingalind, a mysterious man named Back Arrow appears. Arrow has lost his memory, but he claims that all he knows is that “I came from outside the Wall.”", + "posterPath": "/w3RUD613FuVRRiS1g9IALhKdhVe.jpg", + "backdropPath": "/lu34GoIkOhpvmgSvrFtDdXkIItI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 20, + "popularity": 2.2286 + }, + { + "id": 229443, + "title": "'Tis Time for \"Torture,\" Princess", + "originalTitle": "姫様“拷問”の時間です", + "overview": "As the war between the Imperial Army and Hellhorde rages on, the Princess, despite being armed with her mythical sword Excalibur, is captured and imprisoned. What kind of torture does she face at the hands of the chief demon interrogator? Fluffy fresh-baked toast! Hot, steaming ramen! Oh, the humanity! Can the Princess withstand these tormenting treats and keep her kingdom’s secrets safe?", + "posterPath": "/c5t7QsHxMqnv7Fi7TAaG3eB5Al3.jpg", + "backdropPath": "/l0siB5HPobsiQgU7GfOEAV28Gx5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 24, + "popularity": 2.2272 + }, + { + "id": 103157, + "title": "The Hidden Dungeon Only I Can Enter", + "originalTitle": "俺だけ入れる隠しダンジョン ~こっそり鍛えて世界最強~", + "overview": "The Hidden Dungeon is a place of legend where rare treasures and items are hidden. Nor, the third son of an impoverished noble family who's lost the one job offer he had, was lucky enough to hear about this dungeon. He then acquires a skill that allows him to create, bestow, and edit skills... and in order to use it, he needs to accumulate points by carrying out such tasks as eating delicious meals and doing sexual things with alluring members of the opposite sex.", + "posterPath": "/nTZZrTr72PKnEVm5bIt3AlHzNpm.jpg", + "backdropPath": "/3g7XI4IuwGiXipyBbreJDpc0fwN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 524, + "popularity": 2.2272 + }, + { + "id": 156057, + "title": "Gods' Games We Play", + "originalTitle": "神は遊戯に飢えている。", + "overview": "In a world of idle gods, humans are forced into brain challenges with them. With three defeats, gods lose their right to challenge, while 10 victories spell human triumph. Fay, determined to achieve the impossible, enters the ultimate test of wits against the gods. Will he defy divinity, or is he just another loss in the making?", + "posterPath": "/uXirDcJ3wTkpL4tMxEoIMWndFxM.jpg", + "backdropPath": "/s8gJHtPcbOdv7eGiBqE6m0izFG9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-01", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.311, + "voteCount": 37, + "popularity": 2.2256 + }, + { + "id": 105004, + "title": "2.43: Seiin High School Boys Volleyball Team", + "originalTitle": "2.43 清陰高校男子バレー部", + "overview": "Kimichika Haijima moves back to his hometown in Fukui and reunites with childhood friend Yuni Kuroba on the volleyball court.", + "posterPath": "/utYAqKUQdUOVVQlM2FJBTWdONf9.jpg", + "backdropPath": "/4RJzq72Q02lihOwaa56ZZXjnMI0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2021-01-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 19, + "popularity": 2.2249 + }, + { + "id": 243141, + "title": "YATAGARASU: The Raven Does Not Choose Its Master", + "originalTitle": "烏は主を選ばない", + "overview": "Welcome to Yamauchi, a world inhabited by the Yatagarasu, a race of three-legged ravens who shapeshift into humans. The land is divided into four regions—North, South, East, and West—each ruled by a noble family. Yukiya, the son of a leader in the North, is shocked by a call to attend to the Imperial Prince. Murder, mysteries, and an invasion from an unexpected enemy await in this epic fantasy.", + "posterPath": "/YEcaV9VcfYF3YYq2JSf6iu6OoW.jpg", + "backdropPath": "/6X2HHGliqqzixzjjbJxj6WICcKK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.636, + "voteCount": 11, + "popularity": 2.2243 + }, + { + "id": 34152, + "title": "Boogiepop Phantom", + "originalTitle": "ブギーポップは笑わない Boogiepop Phantom", + "overview": "Five years ago, a string of grisly murders shook the city to its core and now the rumors have begun once more. Boogiepop... Everyone knows about Boogiepop: meet her one dark night and you are taken. People tell each other the stories and laugh: no one believes that she can possibly exist in this day and age. Still, strange things appear to be going on and the darkness is taking on many forms. Something is out there.", + "posterPath": "/9z2p2DbQ6HdNzcOtcWPOO94vaYR.jpg", + "backdropPath": "/3j5rPzvsTUM42hvXE0t0w7hQ2Op.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2000-01-06", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 38, + "popularity": 2.2232 + }, + { + "id": 69342, + "title": "Seiren", + "originalTitle": "セイレン", + "overview": "For high school students like Shouichi Kamita, university entrance exams and the future are common concerns. It is also during this time in life that a mysterious emotion that vexes people of all ages may begin to weigh upon one's mind—love.\n\nAt this point in his teenage years, Shouichi finds three girls he could see himself having a future with: the ever-cheerful Hikari Tsuneki, who teases Shouichi without mercy, but actually has a softer side; the competitive gamer, Tooru Miyamae, who has difficulty communicating with others; and Shouichi's childhood friend, Kyouko Touno, the sometimes immature shoujo manga enthusiast. Seiren follows Shouichi's relationships with these three girls across three separate arcs, as their feelings grow from mutual interest and blossom into something more beautiful.", + "posterPath": "/thSofF8CfOBllCYhuP8RFg4PkHB.jpg", + "backdropPath": "/i2ypkPT6pk8zPbnLbQN32ssATDS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 69, + "popularity": 2.2224 + }, + { + "id": 62913, + "title": "3x3 Eyes", + "originalTitle": "サザンアイズ", + "overview": "The story of a young man named Yakumo Fuuji, who through a strange series of events becomes the immortal slave of the last of a race of 3 Eyed immortals. The immortal absorbs his soul to save his life, making him immortal in the process. Now, he begins a journey with the female immortal in an attempt to find a way of becoming human. Of course, there are many complications along the way, not the least of which being that the immortal is a female with a split personality, one achingly cute and the other being no-nonsense destructive power, and the romances that develop between.", + "posterPath": "/hVetO3otqpgDlSPtxITKGON5k85.jpg", + "backdropPath": "/wOygXyITWIQtfbiUD0xPr2wKahj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1991-07-25", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 26, + "popularity": 2.2172 + }, + { + "id": 43055, + "title": "Suite Precure♪", + "originalTitle": "スイートプリキュア♪", + "overview": "Hibiki and Kanade are two friends who grew up together in Kanon Town. Very different in their personalities, they share one thing in common: A connection to music. No matter how different they are or how much their differences cause them to quarrel, they both continue to share loving hearts. One day they meet Hummy, who is sent to the Human World from Major Land to collect the scattered notes of the Melody of Happiness. They have to instantly transform into Pretty Cures to resist the threats and evil music from Mephisto. Can they stop the Melody of Sorrow from disrupting their peaceful town, and can their warped friendship measure up to the bonds of Pretty Cure?", + "posterPath": "/t8kOqKwWKj9cv8BIYBLxaCCFEKy.jpg", + "backdropPath": "/v1Flaw6h7V1SVxOECjawUxZIuT7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-02-06", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 10, + "popularity": 2.2153 + }, + { + "id": 19524, + "title": "Combat Mecha Xabungle", + "originalTitle": "戦闘メカ ザブングル", + "overview": "Combat Mecha Xabungle, infrequently called Blue Gale Xabungle, is a mecha anime television series by Sunrise, and directed by Yoshiyuki Tomino. It was broadcast on the Nagoya TV and TV Asahi networks at 5:30 PM each Saturday from February 6, 1982 through January 29, 1983. Promotional toys were produced by Clover. It also had a compilation movie called Xabungle Graffiti, which added a few minutes and a whole-new ending to the series.", + "posterPath": "/1Tel8X9n3ul64in7wN2H7kHfmtA.jpg", + "backdropPath": "/pRhovUlpsYILfVwAi3EJzJweIK5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765, + 35, + 10768, + 37 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "War & Politics", + "Western" + ], + "releaseDate": "1982-02-06", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 6, + "popularity": 2.2149 + }, + { + "id": 34215, + "title": "iDOLM@STER Xenoglossia", + "originalTitle": "アイドルマスター ゼノグラシア", + "overview": "107 years ago, the Moon was destroyed in a massive cataclysm that shattered Earth's former satellite into 81 quintillion tons of orbital debris. However, thanks to super-science, the Earth itself was saved and today no one really thinks much about that century-past disaster. Which is why when teenage Haruka Amami auditions for something called the Idolmaster Project, she THINKS she's trying out to be a singing idol. Instead, Haruka finds herself at a secret school run by the Mondenkind Agency, living with a group of other girls who have also been selected as candidates to pilot an iDOL - an advanced robot specifically designed to intercept falling chunks of moon rock. Except, the people who run the Mondenkind Agency aren't exactly knights in shining armor. And then there's the question of whether the iDOLs are really JUST robots. Because from almost the first moment, Haruka starts to feel emotions resonating from within the iDOL called Imber.", + "posterPath": "/r18Dg3XQnmkCq1xDNCns4bG1Vjb.jpg", + "backdropPath": "/lBRMABrCdyAojps4xswI1YFchQy.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-02", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 12, + "popularity": 2.2134 + }, + { + "id": 28397, + "title": "Whistle!", + "originalTitle": "ホイッスル!", + "overview": "", + "posterPath": "/xXiW1BjoiO1zvON1qxkqM9ALOW.jpg", + "backdropPath": "/2EzcsNHA2wEdIymnSyUSvKvLLfq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2002-05-06", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 11, + "popularity": 2.2134 + }, + { + "id": 5894, + "title": "Gungrave", + "originalTitle": "ガングレイヴ", + "overview": "For Brandon Heat, death doesn't matter. Driven by his need for revenge, he returns from beyond the grave to cripple Milleneon, the huge mafia organization which uses undead monsters as its enforcers. His ultimate goal is to destroy Harry MacDowel, the leader of Milleneon and, at one time, Brandon's best friend...", + "posterPath": "/oUVTXxaPBdzrdX3nDq15urEpyQO.jpg", + "backdropPath": "/7vCIjIH3YR2BpXdnx3tbyH7h7yg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime", + "Drama" + ], + "releaseDate": "2003-10-07", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 69, + "popularity": 2.2122 + }, + { + "id": 63695, + "title": "Little Women II : Jo's Boys", + "originalTitle": "若草物語ナンとジョー先生", + "overview": "Nan Harding is the new student at Mr. and Mrs. Bhaer's school. Everyone thinks that she is a pain in the head, but not Mrs. Jo. Together with the other kids, they all embark on their personal adventures and misfortunes while learning in school.", + "posterPath": "/uv70bgiwBcbvgE82qRd6IhcRlRa.jpg", + "backdropPath": "/kgBVbbaos9HG0mRasAgrjGuVXWP.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35, + 10751 + ], + "genres": [ + "Drama", + "Animation", + "Comedy", + "Family" + ], + "releaseDate": "1993-01-17", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 12, + "popularity": 2.2108 + }, + { + "id": 57041, + "title": "Gintama", + "originalTitle": "銀魂", + "overview": "After Japan's Shogunate is occupied by an alien army, a samurai forced to work as a handyman forms a squad of swordsmen to fight back.", + "posterPath": "/f7vK8pzZIqhyA8sYmBpWmp9Ae7.jpg", + "backdropPath": "/3gVl0IvJMbhOnAvH9V0Q1Y1HnXE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 223, + "popularity": 2.2102 + }, + { + "id": 38107, + "title": "Sister Princess", + "originalTitle": "シスター・プリンセス", + "overview": "Wataru Minakami was at the top of his class in middle school and had a pretty comfy life. But, when he unexpectedly fails his only high school entrance exam because of a computer glitch, his life is suddenly thrown into utter chaos! Jeeves, Wataru's trusted butler, sends him off to attend school on a mysterious island. Upon his arrival, Wataru. encounters many friendly, cute girls. This isn't a problem until he finds out they are all his sisters! For most kids, adjusting to life at a new school in a different town is tough enough. But for Wataru Minakami, high school will be the easy part!", + "posterPath": "/vsgQJ6hjmT1WNrHhmzJrziOt3Tg.jpg", + "backdropPath": "/ce5zsDcCwXeqNRXZ72v1JLFeGed.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2001-04-04", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 2.2057 + }, + { + "id": 158522, + "title": "I've Somehow Gotten Stronger When I Improved My Farm-Related Skills.", + "originalTitle": "農民関連のスキルばっか上げてたら何故か強くなった。", + "overview": "Al Wayne loves farming — and we don’t mean the video game sim. He wants to be a literal farmer, but in the process of improving his agriculture skills, he somehow winds up maxing out his overall character stats! He’s superpowered in the most unexpected of ways with abilities even the strongest of heroes would envy. Alas, all he wants is an idyllic farmer's life, but with demons and monsters invading the realm, Al may have to take up the mantle of hero just to keep his dreams from withering away!", + "posterPath": "/8TTveKSNr23SRib4Q4C3yy9dszz.jpg", + "backdropPath": "/jFWPKQZxILLwq7MzLqT2kDfLzSC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-01", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.676, + "voteCount": 34, + "popularity": 2.2042 + }, + { + "id": 117886, + "title": "The Executioner and Her Way of Life", + "originalTitle": "処刑少女の生きる道", + "overview": "The Lost Ones are wanderers who come here from a distant world known as \"Japan.\" No one knows how or why they leave their homes. The only thing that is certain is that they bring disaster and calamity. The duty of exterminating them without remorse falls to Menou, a young Executioner. When she meets Akari, it seems like just another job...until she discovers it's impossible to kill this girl! And when Menou begins to search for a way to defeat this immortality, Akari is more than happy to tag along! So begins a journey that will change Menou forever...", + "posterPath": "/uvsuokDM09o8ZJHUbLjXE8jmZHa.jpg", + "backdropPath": "/fFNs90Cpe1Wi2rSWDfyXqs0K6zP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 37, + "popularity": 2.2036 + }, + { + "id": 55016, + "title": "GJ Club", + "originalTitle": "GJ部", + "overview": "Within the old school building of a certain high school, is the clubroom of the GJ (Good Job) Club, into which Shinomiya Kyouya finds himself forcibly conscripted.\n\nThe other members are:\n\nMao, the short and egotistical president;\n\nMegumi, Mao's sister who's as generous as an angel;\n\nShion, a genius lacking in common sense; and\n\nKirara, who is perpetually hungry.", + "posterPath": "/xFxEsG6k4ewBwwjI2jU2obewmBw.jpg", + "backdropPath": "/102hhQpjl86kiyM3WCcVviSccQy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-01-10", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.556, + "voteCount": 9, + "popularity": 2.2027 + }, + { + "id": 203740, + "title": "Moonrise", + "originalTitle": "ムーンライズ", + "overview": "After rebel forces attack Earth, a carefree heir becomes the prime suspect and joins a special military unit to find the true mastermind on the Moon.", + "posterPath": "/mqok8du6LvnaigAJo5omAq1BPye.jpg", + "backdropPath": "/lA7PhetuTDbW5euHB7VtPAYwrH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-04-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.125, + "voteCount": 20, + "popularity": 2.2016 + }, + { + "id": 153697, + "title": "Ayakashi Triangle", + "originalTitle": "あやかしトライアングル", + "overview": "Japan may be brimming with mysterious monsters called ayakashi, but they have a special exorcist ninja force to counter the threat! Young exorcist ninja Matsuri spends his days fighting ayakashi to protect his childhood friend Suzu. But when an ayakashi cat named Shirogane shows up, things get turned upside down!", + "posterPath": "/sio2EmpowZXOtHv7bqB0gv9AZ0u.jpg", + "backdropPath": "/eN6t5HUzcziDV1HxMhasrRi6ZY0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 36, + "popularity": 2.2014 + }, + { + "id": 46095, + "title": "Uta no Prince-sama", + "originalTitle": "うたの☆プリンスさまっ♪", + "overview": "With dreams of becoming a composer and someday writing a song for her favorite idol, Haruka enters the Saotome Academy, a prestigious performing arts school. If successful there, she’ll be able to join the Shining Agency after graduation. However, it won’t be so easy when Haruka is already surrounded by potential idols and composers. On top of that, her homeroom teacher is a current idol, the headmaster was a record-breaking singer, and the academy itself is a chaotic place where anything can happen. Which prince of song will be paired up with Haruka?! Uta no Prince Sama is an exciting, coming-of-age romantic comedy that will be like sweet music to your eyes and ears!", + "posterPath": "/5hU5KQXXQyH97uZvnYfNrgBS8zX.jpg", + "backdropPath": "/hNM8BrWhWh44fDhJQuBsjLoK6ck.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-07-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 41, + "popularity": 2.2007 + }, + { + "id": 68642, + "title": "Yurikuma Arashi", + "originalTitle": "ユリ熊嵐", + "overview": "Humans have created a Wall of Severance to separate themselves from the bears, who grew violent and attacked humans after a far-off planet known as Kumalia exploded many years ago, turning into a meteor shower that fell upon earth. Two bears, Ginko Yurishiro and Lulu Yurigasaki, sneak through the Wall of Severance and disguise themselves as humans, enrolling in Arashigaoka Academy and taking an interest in Kureha Tsubaki, a human girl who despises bears.", + "posterPath": "/5iR56K02oa9RDZZaDmwnNasewsS.jpg", + "backdropPath": "/cJTwGrbhbMPP2qjUy4xiEmKH7iF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2015-01-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.391, + "voteCount": 23, + "popularity": 2.199 + }, + { + "id": 85942, + "title": "Darwin's Game", + "originalTitle": "ダーウィンズゲーム", + "overview": "Sudou Kaname, an ordinary high school student, receives an invitation email to try a mysterious app called \"Darwin's Game.\" Kaname, upon launching the app, is drawn into a game where players fight one another using superpowers called Sigils. Without knowing the reason for all this, can Kaname survive furious battles against the powerful players who attack him?", + "posterPath": "/dk5QFqxVt6WnTWTiK6hHdkL2SMz.jpg", + "backdropPath": "/2kbBfr1ZGuMETCMf3cC8O5sBlKA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.57, + "voteCount": 172, + "popularity": 2.1989 + }, + { + "id": 43295, + "title": "Carnival Phantasm", + "originalTitle": "カーニバル・ファンタズム", + "overview": "Comedy OVA series based on the Type-Moon Gag manga, Take-Moon. It focuses on funny and absurd situations happening to the various characters of the Type-Moon franchises, mostly from Fate/stay night and Tsukihime.", + "posterPath": "/hhFvh0gFRcIBEk4igTUeXHBLZ75.jpg", + "backdropPath": "/mpzCpEi7CdVJ4wixqXDedNumbb9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-08-12", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 30, + "popularity": 2.1978 + }, + { + "id": 34697, + "title": "Blade of the Immortal", + "originalTitle": "無限の住人", + "overview": "Manji is a crass, violent samurai with a special ability: he cannot die. Cursed with immortality by the nun Yobikuni as punishment for his ruthless deeds, he has grown weary of his ageless life. The only way to lift the curse is to slay 1,000 evil men. So Manji wanders Japan, shedding the blood of the wicked on his quest to finally die.", + "posterPath": "/ufo6y5FUdhUOXc97zZhpvmcQLRP.jpg", + "backdropPath": "/AaqGsucjufRBH6W7ZgP9OF77rCy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2008-07-14", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.222, + "voteCount": 18, + "popularity": 2.1924 + }, + { + "id": 45203, + "title": "A Dark Rabbit has Seven Lives", + "originalTitle": "いつか天魔の黒ウサギ", + "overview": "Taito has been really sleepy lately, and keeps dreaming of a female vampire who says she has given him her \"poison.\" Sometimes he even thinks he hears her voice when he's awake. But after surviving an accident that should have killed him, Taito's world changes drastically and he realizes that his dreams are more real than he thought.", + "posterPath": "/wDFvddtioQmp2mbydtyw9da6qRn.jpg", + "backdropPath": "/jHnZscollAZ8IaOiqYYcFmJp0tK.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2011-07-09", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.462, + "voteCount": 13, + "popularity": 2.1923 + }, + { + "id": 244592, + "title": "Haigakura", + "originalTitle": "ハイガクラ", + "overview": "The story is set in a secluded realm where deities and mortals both dwell. A youth named Ichiyō sets out to capture the gods who have fled and scattered all over the realm. Together with the subordinate god Tenkō, Ichiyō seeks the four evil gods who hold the key to the realm's collapse.", + "posterPath": "/rk3IlmXhoSBwbTsYWWjnqtljnr3.jpg", + "backdropPath": "/mRuS1eV8L8qWRHbaeFOpu7FeUNW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 5, + "popularity": 2.1917 + }, + { + "id": 102871, + "title": "King's Raid: Successors of the Will", + "originalTitle": "キングスレイド 意志を継ぐものたち", + "overview": "A century has passed since King Kyle of the Orvelia kingdom destroyed the fierce demon lord Angmund, restoring peace to the lands. Now in a time of peace, the apprentice knight Kasel enjoys his life without worry. His fate begins to change, however, with news of demon appearances infesting the neighborhood. Guided by a wise man, Kasel finds friends he can rely on and sets off on his mission to seek a holy sword, capable of slaying his newfound enemies.", + "posterPath": "/qPw3m4DDmtJqDQ0m0f5U7WsgrsS.jpg", + "backdropPath": "/9aN0IOg97Y8syhUmm8vgVMqcFdG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.774, + "voteCount": 53, + "popularity": 2.1914 + }, + { + "id": 23313, + "title": "New Cutey Honey", + "originalTitle": "新・キューティーハニー", + "overview": "The forces of evil were looking for trouble; they found Cutey! In a futuristic world were evil comes in all shapes and sizes, she is the ultimate weapon. She's Cutey Honey, a one woman S.W.A.T. team whose android chassis is capable of changing at will into a dazzling array of hard-hitting, curvaceous bodies each with it's own set of special skills, weapons and other impressive physical attributes. Go Nagai's legendary android super-hero is back and hitting the bad guys where it hurts most.", + "posterPath": "/no75xbgrTcjScKiOLjDvynaCDSd.jpg", + "backdropPath": "/bRLU8OHZqD6SUXfkmspjAdaWxEK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-03-21", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 5.923, + "voteCount": 13, + "popularity": 2.187 + }, + { + "id": 37468, + "title": "Dash Kappei", + "originalTitle": "ダッシュ勝平", + "overview": "The hero of the story is Kappei Sakamoto, a high school student with amazing athletic abilities who joins the basketball team of Seirin High School and quickly becomes one of the most skilled players. Kappei has one unusual handicap for a basketball player - his height; he stands not even one meter tall. His Achilles' heel is female undergarments; he has a particular interest in white panties, and is even more enthusiastic about joining the basketball team when he discovers that the team's female coach, Coach Natsu, wears white panties (although his inventive attempts to sneak a peek at said panties usually result in a physical beatdown from the hot-tempered coach). Eventually, Kappei's athletic prowess extends beyond basketball, and he tries out for - and excels at - every sport the school offers.\n\nIn the first episode, Kappei meets and becomes enamored with Akane Aki, a sweet, pretty girl who is quite athletic herself (she later joins the school's ping-pong team) and signs on as assistant coach of Seirin's basketball team. Much to Kappei's delight, not only is Akane pretty, but she also wears white panties, and Kappei sets his sights on winning her heart. Kappei eventually moves in with Akane and her family after his parents (who are rarely around) leave for the United States. However, Kappei has an unusual rival for Akane's heart - Akane's dog, Seiichiro, who has often fantasized about marrying his owner and, resenting Kappei, immediately seeks to sabotage his relationship with Akane through various tricks. Seiichiro can also speak, although only Kappei can understand him.", + "posterPath": "/yVFNssDdmDs9hohJDmShugwZCzR.jpg", + "backdropPath": "/r35f8yxPde8jJh7rqcx9TIF2fy9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1981-10-04", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 18, + "popularity": 2.1863 + }, + { + "id": 65928, + "title": "12-sai.: Chicchana Mune no Tokimeki", + "originalTitle": "12歳。~ちっちゃなムネのトキメキ~", + "overview": "The story begins with Hanabi, a sixth-grade girl who is neither an adult nor a child. She deals with issues such as accidentally witnessing her homeroom teacher kissing, and worrying about experiencing physiological changes before her friends. The series depicts a 12-year-old girl's innocent worries and first love.", + "posterPath": "/q5MQhvVnEUc8VztssOVcrt1WocP.jpg", + "backdropPath": "/uTxVa3q7eyQfU7Z6Wm0PAzDK1TG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2016-04-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 12, + "popularity": 2.1852 + }, + { + "id": 102518, + "title": "Iwa Kakeru! Sport Climbing Girls", + "originalTitle": "いわかける! - Sport Climbing Girls -", + "overview": "Sport climbing is a sport that makes use of both the body and the brain to climb walls. Kasahara Konomi, a master at puzzles, just happens to discover her school’s climbing wall, and it looks almost like a colorful sort of puzzle in her eyes. This fateful encounter brings big changes to Konomi’s life! With her teammates in the Hanamiya Girls’ High School Climbing Club, Konomi races for the top in this passionate climbing story!", + "posterPath": "/zBdWsx9MQONjyJdOziSff8hQygQ.jpg", + "backdropPath": "/pw9c9dhImjaksKZYbVuAR6om8tH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2020-10-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.601, + "voteCount": 188, + "popularity": 2.1848 + }, + { + "id": 196220, + "title": "Level 1 Demon Lord & One Room Hero", + "originalTitle": "Lv1魔王とワンルーム勇者", + "overview": "Ten years ago, the hero Max defeated the Demon Lord. In order to regain his power, the Demon Lord went into a deep slumber...but when he awakens, his body is only a chibi version of its fearsome form. Now curious to see what his enemy is up to, the Demon Lord visits Max, only to discover the mighty hero living in a dirty one-room apartment. The Demon Lord decides to move in with Max and help his old enemy become a formidable opponent once more!", + "posterPath": "/u6YOhBnWSgvsr3iS8asoeAJwlnb.jpg", + "backdropPath": "/qLnua7YvZuw0Dr6xpF9ZlCxSSVk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 21, + "popularity": 2.1828 + }, + { + "id": 34100, + "title": "Zillion", + "originalTitle": "赤い光弾ジリオン", + "overview": "On the planet Maris in the year 2387 three teen soldiers fight back against invading aliens.", + "posterPath": "/6tLgXYMH2konOFmTaJFqz63Yp14.jpg", + "backdropPath": "/cbClv6ffwHlVSfsbA0SqcfZyX73.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1987-04-12", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 10, + "popularity": 2.1821 + }, + { + "id": 34173, + "title": "Aoki Densetsu Shoot!", + "originalTitle": "蒼き伝説 シュート!", + "overview": "Toshihiko Tanaka is a boy who entered Kakegawa High School with his friends Kenji & Kazuhiro, in order to play soccer with Yoshiharu Kubo, a great soccer player whom they have idolized. While his other two friends were reluctant to play again, \"Toshi\" eventually convinces them to play for the team. The team soon find themselves in the midst of a quest to the All-Japan High School Championship, while overcoming obstacles along the way.", + "posterPath": "/tXbxNaneTcdLRsQ7NJkdBN7yY5t.jpg", + "backdropPath": "/oSzMefvx7dho5liRQEUaFUYpv0k.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1993-11-07", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.167, + "voteCount": 12, + "popularity": 2.178 + }, + { + "id": 19837, + "title": "Ai Shite Knight", + "originalTitle": "愛してナイト", + "overview": "Ai Shite Knight is a shōjo manga created in the early 1980s by Kaoru Tada. An anime version of the story in 42 episodes was also produced in 1983-1984 by Toei Animation, and features episodes supervised by Shingo Araki.", + "posterPath": "/hmHGq255s3Wydf6JKHbUGBri2sO.jpg", + "backdropPath": "/29BnZVaTHoot0DCm9ARUFwH8aBo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1983-03-01", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 5.25, + "voteCount": 12, + "popularity": 2.1759 + }, + { + "id": 72699, + "title": "Lord Marksman and Vanadis", + "originalTitle": "魔弾の王と戦姫", + "overview": "Tigrevurmud Vorn, the young lord of a remote region far from the kingdom's center, is commanded by the king to go fight the war against a neighboring country. The leader of the enemy is Eleonora Viltaria, one of the seven Vanadis given supernatural arms from a dragon. The moment when an archer boy and the silver-haired beautiful war maiden meet, it is the beginning for the legend of a hero that will be told for generations to come.", + "posterPath": "/tnDeDv41ETMVw0epAsvfw69eONh.jpg", + "backdropPath": "/sUQFEvVVSQFyx6jto7KArHtotxy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.953, + "voteCount": 43, + "popularity": 2.1742 + }, + { + "id": 157842, + "title": "Black Summoner", + "originalTitle": "黒の召喚士", + "overview": "Waking up in a strange new place with no memory of his past life, Kelvin learns that he's bartered away those very memories in exchange for powerful new abilities during his recent transmigration. Heading out into a whole new world as a Summoner — with his first Follower being the very goddess who brought him over! — Kelvin begins his new life as an adventurer, and it isn't long before he discovers his hidden disposition as a battle junkie. From the Black Knight of the Ancient Castle of Evil Spirits to the demon within the Hidden Cave of the Sage, he revels in the fight against one formidable foe after another. Join this OP adventurer in an exhilarating and epic saga as he and his allies carve their way into the annals of history!", + "posterPath": "/otO9fEZRVa5GRGswglYXXmcSnWF.jpg", + "backdropPath": "/TT1kfBoM5KGS42kXq8Tn4MXOtj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.092, + "voteCount": 65, + "popularity": 2.1739 + }, + { + "id": 34789, + "title": "Dragon Drive", + "originalTitle": "ドラゴンドライブ", + "overview": "Oozora Reiji isn't a lazy boy, he's just terribly unmotivated; all the clubs and activities he's joined don't interest him for long. That is, of course, until his best friend Yukino takes him to a underground arcade where an unbelievable virtual reality game is played - Dragon Drive - in which players fight each other with virtual dragons. Reiji ends up throwing all he's got into training a dragon so rare that the Dragon Drive staff are baffled. But soon Reiji learns that Dragon Drive isn't all it seems, and he might be the only one who can save an entire world from evil.", + "posterPath": "/2xL4ePDknC2V4tqqzIxBLLdF8Lz.jpg", + "backdropPath": "/krZndSTFRN8MytcGP66Y2DZHBGb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2002-07-04", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 2.1722 + }, + { + "id": 37513, + "title": "Le Chevalier D'Eon", + "originalTitle": "シュヴァリエ 〜Le Chevalier D'Eon〜", + "overview": "Paris, 1742. While investigating the murder of his beautiful sister—Lia—D’Eon uncovers an evil which casts shadows in both the palaces of kings and the dark alleys of Europe. It is a dark and strange power—one which allows Lia’s soul to return from beyond and possess her brother in order to avenge her own death.", + "posterPath": "/vkTR8IWaqzhd0bE16JWVZPW3hp4.jpg", + "backdropPath": "/o6z2BUqrfWznV6w0NBBVKEM0bri.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2006-08-19", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.667, + "voteCount": 9, + "popularity": 2.172 + }, + { + "id": 261745, + "title": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "originalTitle": "アラフォー男の異世界通販", + "overview": "Kenichi Hamada is just a regular, middle-aged man working as an illustrator in Japan. One day, he is transported to another world and wakes to find himself in the middle of a dangerous forest filled with ravenous monsters. He quickly discovers a massive online shopping site that can deliver him exactly what he needs. Join Kenichi on his search for relaxation in a new world!", + "posterPath": "/rr079GvB0pgzkGnKFTSk7519dDR.jpg", + "backdropPath": "/tcNah6yo0hwChrI77NT4KvdGsC4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2025-01-09", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.917, + "voteCount": 30, + "popularity": 2.168 + }, + { + "id": 53298, + "title": "Time Bokan Series: Yatterman", + "originalTitle": "タイムボカンシリーズ ヤッターマン", + "overview": "The Yatterman duo and an evil trio led by the beautiful Florina engage in a struggle to obtain the Skull Stone—which is said to reveal the location of a gold mine. The trio seem to constantly have the upper hand, but are always foiled by Yatterman, who are able to stop their evil schemes.", + "posterPath": "/U0GCN9VQy15P2oiWvrP1tW3pHE.jpg", + "backdropPath": "/zRgOdwxViStwSaDtW50fg4jYjWC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1977-01-01", + "releaseYear": "1977", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 2.165 + }, + { + "id": 101873, + "title": "Cells at Work! CODE BLACK", + "originalTitle": "はたらく細胞BLACK", + "overview": "Alcohol, smoking, and stress—in the body subjected to these irritants, the cells responsible for maintaining life seem to fight a war that never ends. Due to a severe shortage of workers, Red Blood Cell AA2153 has to quickly learn to deliver oxygen and collect carbon dioxide, even in dangerous conditions. Meanwhile, White Blood Cell U-1196 has to do her part by dealing with germs and viruses during life-threatening situations. In the midst of these crises, they have to work together to keep the body healthy, despite not knowing if their sacrifices will be worthwhile. Cells at Work! Code Black takes a different approach by showing the grittier side of the jobs our cells perform.", + "posterPath": "/lZQKzmE3P5CJ9Bj0wK4jMZuengp.jpg", + "backdropPath": "/fsnHf3qC4SJAMaYolZqmqvRaVw3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 105, + "popularity": 2.1631 + }, + { + "id": 280366, + "title": "See You Tomorrow at the Food Court", + "originalTitle": "フードコートで、また明日。", + "overview": "Meet Wada, who gives off an unapproachable vibe, and Yamamoto, who strikes fear into those around her because of her looks. Though the two girls attend separate high schools, they meet up at a shopping center's food court almost every day. Take a little peek at the laid-back afternoons Wada and Yamamoto share as they reflect on the ups and downs of high school life together.", + "posterPath": "/pZa3jPQzcOHCivH0il30BqwK46F.jpg", + "backdropPath": "/wK62NMBMk4l70U8UWDb96Ezkqd9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-07-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 8.889, + "voteCount": 9, + "popularity": 2.1615 + }, + { + "id": 25504, + "title": "After War Gundam X", + "originalTitle": "機動新世紀ガンダムX", + "overview": "Taking place 15 years after the 7th Space War, the surviving 98 million residents of Earth try to make a living as best they can in the post apocalyptic landscape. Mobile Suits and weapons left over from the war fall into the hands of civilians as well as other organizations on the planet. In an effort to keep the past from repeating itself, Jamil Neate brings together a crew of Vultures to search for Newtypes and protect them from being exploited. As they try to carry out this task, an old government rises from the ashes to try and unify the Earth as other forces slowly fan the flames of war once more between the newly formed New United Nations Earth and the Space Revolutionary Army. Now the crew of the Freeden face a multitude of enemies as they try to prevent another catastrophic war.", + "posterPath": "/dhKidw4ldRUT3OYITx84nsIlz7e.jpg", + "backdropPath": "/xYrINplDixJZKGGmNMmqZctk4Qs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-04-05", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 9, + "popularity": 2.1602 + }, + { + "id": 42694, + "title": "Di Gi Charat", + "originalTitle": "Di Gi Charat", + "overview": "DiGi Charat is a series of shorts created as advertisements for \"Digital Gamers,\" a store in Akihabara. The series follows Dejiko, princess of DiGi Charat planet, and her companions, Puchiko and Gema, as well as Dejiko's rival, Rabi~en~Rose through daily ordeals they encounter while working at Gamers.", + "posterPath": "/bjiYTjrSSxDu7NZUT4OHEbxcvvI.jpg", + "backdropPath": "/w2IgPR222tM4MeBCwjFniLMowmg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-11-30", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 7, + "popularity": 2.1581 + }, + { + "id": 27866, + "title": "Ef: A Tale Of Memories & Melodies", + "originalTitle": "エフ ア テイル オブ メモリーズ", + "overview": "On Christmas Eve, Hiro Hirono meets a girl named Miyako Miyamura as she chases a purse snatcher. Hiro later finds out that Miyako also goes to the same school as he does and they start hanging out together. This makes Hiro's childhood friend, Kei Shindō, feel left out, so she tries to compete with Miyako for Hiro's affection, creating a love triangle. Meanwhile, Renji Asō meets a girl named Chihiro Shindō at an abandoned train station. He soon learns that Chihiro suffers from a type of amnesia where her memory lasts for only 13 hours. He also discovers Chihiro's dream of writing a novel, but she has never been able to fulfill that dream due to her condition. Renji then decides to help her fulfill that dream.", + "posterPath": "/AoxyuMX7gQqw2tdbTYaMIO6HMZ1.jpg", + "backdropPath": "/scChY3VVpHXXfX9kXEWBtSiHDWM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10749 + ], + "genres": [ + "Animation", + "Drama", + "Romance" + ], + "releaseDate": "2007-10-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.125, + "voteCount": 20, + "popularity": 2.1578 + }, + { + "id": 12333, + "title": "Gravion", + "originalTitle": "超重神グラヴィオン", + "overview": "Gravion is an anime television series produced by Gonzo. It aired in Japan from October 7, 2002 to December 16, 2002 and ran for 13 episodes. In 2004, Gravion Zwei was released and aired from January 8 to March 25 in Japan, running for twelve additional episodes, answering the questions generated from the first series.\n\nBoth Gravion and Gravion Zwei are created and directed by Masami Ōbari with mecha designs from Kunio Okawara. Both series were released in the United States by ADV Films.", + "posterPath": "/rgGBVK0oAi2FhWh5o8Z54Q9S7RS.jpg", + "backdropPath": "/iZH5iTjM1RQR8Lkcz9rveg3oyvv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2002-10-08", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 7, + "popularity": 2.1575 + }, + { + "id": 99779, + "title": "Noblesse", + "originalTitle": "NOBLESSE -ノブレス-", + "overview": "Rai wakes up from 820-years long sleep and starts his new life as a student in a high school founded by his loyal servant, Frankenstein. But his peaceful days with other human students are soon interrupted by mysterious attackers known as the \"Unions\".", + "posterPath": "/tnIfTMaig2FmsOSL5wEH3rYofJN.jpg", + "backdropPath": "/4jaGeTbps5BKk6l1x6K2P9b3Qto.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2020-10-08", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8.452, + "voteCount": 417, + "popularity": 2.1566 + }, + { + "id": 46183, + "title": "Listen to Me, Girls. I'm Your Father!", + "originalTitle": "パパのいうことを聞きなさい!", + "overview": "Segawa Yuta is a freshman of a university. He lost his parents when he was small and was raised by his sister Yuri. Yuta has been living alone since Yuri got married to a middle aged man when Yuta was a junior high student.  One day, Yuri visited Yuta's apartment and asked him to take care of her three daughters while Yuri and her husband were on a trip. He unwillingly accepted the job but the plane Yuri took went missing. In order to prevent the daughters from being adopted separately by relatives, Yuta decided to take in all three girls.  A life of a strange family in a tiny apartment begins.", + "posterPath": "/m4LD5zdovH7WhqLWXRrTFNasV7t.jpg", + "backdropPath": "/8SsiEhXKptoLCJFeZUT7fCCffIz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2012-01-11", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.263, + "voteCount": 19, + "popularity": 2.1558 + }, + { + "id": 42824, + "title": "Midori Days", + "originalTitle": "美鳥の日々", + "overview": "There isn't a single person in Sakuradamon High who hasn't heard the legends about Seiji \"The Mad Dog\" Sawamura's demonically powerful right hand. His reputation makes it fairly difficult for him to approach girls, and after being rejected 20 times straight, he half-jokingly vows to finish high school with his right hand for a girlfriend.\n\nMuch to his surprise, after waking up the next morning, Seiji discovers that his demon right hand has mysteriously turned into a miniature girl, Midori Kasugano, who reveals that she has had a crush on Seiji for the past three years. Because their situation is not ideal for either of them, Seiji attempts to return Midori to normal. But after causing a big misunderstanding at the Kasugano household, the pair decide to keep their predicament between them until a solution is found. Thus begins an odd relationship, and what could be the only chance for Midori to finally be with the one she loves.", + "posterPath": "/gyY7CfjW70VsJXZRzs1JDD278Oc.jpg", + "backdropPath": "/h7r1SlHhPAfy39SA9l58Zqt5CgC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2004-04-04", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 26, + "popularity": 2.1553 + }, + { + "id": 95317, + "title": "Nekopara", + "originalTitle": "ネコぱら", + "overview": "Kashou Minaduki is an aspiring chef who moves away from home to open his own confection shop. While he is unpacking in his new shop, he discovers that two of his family's Nekos, Chocola and Vanilla, came along with him by hiding in cardboard boxes. After the two Nekos convince Kashou to let them stay and live with him, the three of them work together to run his shop, La Soleil. During the story, Kashou receives a couple of visits from his younger sister Shigure and the other four Nekos owned by their family.", + "posterPath": "/42r41IMXpMhMtTKyJIJORf6L994.jpg", + "backdropPath": "/c3IhyxZ6lpwYHHQpxpja8r3zbtW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 20, + "popularity": 2.1547 + }, + { + "id": 66504, + "title": "Please Tell Me! Galko-chan", + "originalTitle": "おしえて! ギャル子ちゃん", + "overview": "Three high school girls with different perspectives discuss the kinds of secrets you can't tell boys.", + "posterPath": "/g77GQPzn1dhMzxJbSTvcMIL62oG.jpg", + "backdropPath": "/sm06vwHcUWU6Obqp0Kpbof4NJQJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 25, + "popularity": 2.1543 + }, + { + "id": 43798, + "title": "Bastard!!", + "originalTitle": "バスタード!! 暗黒の破壊神", + "overview": "Several hundred years after Anthrasax destroyed modern civilization, a group of four lords plans to set this old god free once again. To prevent this from happening, a former ally of the four is released from his 15 year imprisonment. Dark Schneider, a sorcerer who once tried to conquer the world, now fights to save it.", + "posterPath": "/lzmCDRyDrpLo71nLLp6IkHBJgBB.jpg", + "backdropPath": "/g7h4j1h5SCSHCgQlJbN2RkC248q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-08-25", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 22, + "popularity": 2.1522 + }, + { + "id": 123670, + "title": "BUILD-DIVIDE", + "originalTitle": "ビルディバイド コードブラック", + "overview": "In Shin-Kyoto, people battle to become the new governing lord in a battle of intense card games!", + "posterPath": "/rpTuOr1MjcPcHWjvxhe00X6O4o9.jpg", + "backdropPath": "/9MCEGgfBOABzkkLR5clWsZtIC5r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 2.1517 + }, + { + "id": 230189, + "title": "365 Days to the Wedding", + "originalTitle": "結婚するって、本当ですか", + "overview": "Takuya and Rika work at the same travel agency in Tokyo and are both happily introverted and single. But their company is opening a new branch in Alaska next year, and employees without a spouse will be recruited to work there. Desperate to avoid the move, and though they’ve hardly spoken before, they decide to fake an engagement. Can these quiet coworkers become a convincing couple?", + "posterPath": "/lMVkOrMaWEkHZLdPksKGcdi6hJg.jpg", + "backdropPath": "/2drriQmhbkGgJbIX2Zmr8sEsbik.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-10-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 22, + "popularity": 2.1509 + }, + { + "id": 65764, + "title": "Absolute Duo", + "originalTitle": "アブソリュート・デュオ", + "overview": "This is the story of Tooru Kokonoe who has enrolled at Kouryou Academy, a school which trains students in wielding Blaze, soul powered weapons to prepare them for the Dorn Agency's special peacekeeping corps. When Tooru is partnered with a mysterious girl: Julie Sigtuna, he finds he has to overcome many hurdles to ensure their teamwork and fighting skills are up to par for the duration of their training.", + "posterPath": "/reoZZ94M0nDL7SGstuChqbLlhNT.jpg", + "backdropPath": "/tREFgCrBo5TIToSUI0CwabhEtVR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2015-01-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.756, + "voteCount": 158, + "popularity": 2.1505 + }, + { + "id": 256323, + "title": "Leviathan", + "originalTitle": "リヴァイアサン", + "overview": "Set in an alternate steampunk past, an Austrian fugitive prince and a Scottish airman in disguise embark on an unexpected quest to prevent a world war.", + "posterPath": "/wIu0KWF2g2gWO482HXUQRM5ioOr.jpg", + "backdropPath": "/kobz3t4TKPXRUGUpcV3Ic7sgLtW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-07-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 2.1504 + }, + { + "id": 63265, + "title": "High School! Kimengumi", + "originalTitle": "ハイスクール! 奇面組", + "overview": "", + "posterPath": "/r9QQcW22uPHo7FzLUrKtTcAOPdy.jpg", + "backdropPath": "/hgX7jnZ1o43uiYDQAMauv91QN9m.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "1985-10-12", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 8, + "popularity": 2.1498 + }, + { + "id": 83479, + "title": "Magical Emi, the Magic Star", + "originalTitle": "魔法のスター マジカルエミ", + "overview": "Kazuki Mai, an elementary schoolgirl, wanted to be a magician but her skills weren't good enough for her to join her grandparents' Magiccarat troupe. One day she sees a light enter a strange heart-shaped mirror. The light is actually a mirror fairy named Topo, who takes over her favourite stuffed toy, a flying squirrel and gives her a bracelet with the 4 card suits. The bracelet can turn into a bubble wand which transforms Mai into the 18 year old magician Magical Emi, who uses her magic to help people and participate in her grandparents' shows.", + "posterPath": "/hiiatg9j3SszQK94pozFEAZc34K.jpg", + "backdropPath": "/kRjtu7FKyD7hxhAp9kIWqRIyW7k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Comedy", + "Kids" + ], + "releaseDate": "1985-06-07", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 9, + "popularity": 2.1454 + }, + { + "id": 34834, + "title": "Tokyo Underground", + "originalTitle": "東京アンダーグラウンド", + "overview": "Tokyo Underground is a manga series by Akinobu Uraka and published by Enix. It became an anime series, produced by Studio Pierrot and shown on the TV Tokyo Network from April 2 until September 24, 2002. The TV series was released on DVD by Geneon Entertainment in the US and Canada, released as a boxset by Manga Entertainment in the UK and by Tokyo Night Train in Australia. It also aired in Canada on the digital channel G4techTV Canada, starting on July 22, 2007 at 8:30 pm ET/PT.", + "posterPath": "/gsjdYvsZmvgeU2ysNj0DTbfIP2X.jpg", + "backdropPath": "/qz1opojKuy0HnsyRWvJC5vEJuSn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-04-02", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 6, + "popularity": 2.1454 + }, + { + "id": 259788, + "title": "A Terrified Teacher at Ghoul School!", + "originalTitle": "妖怪学校の先生はじめました!", + "overview": "Haruaki Abe is happy to finally fulfill his dream of becoming a teacher. That happiness is short-lived after he arrives at Hyakki Academy and finds out the school is full of monsters! Can Abe overcome his cowardice and get his supernatural students under control? Join the timid teacher and his bizarre class for a tale of ghoulish mischief and paranormal education.", + "posterPath": "/km1hhFIIMOoA2hk6k3UM38WH5yL.jpg", + "backdropPath": "/AjKkOVU0NqpQjCpQTuykpBuQnhr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.455, + "voteCount": 11, + "popularity": 2.1436 + }, + { + "id": 137390, + "title": "BIRDIE WING -Golf Girls' Story-", + "originalTitle": "BIRDIE WING -Golf Girls' Story-", + "overview": "Fore! After Eve’s first meet-up with Aoi on the grass left her in defeat, she’s had her eyes set on a rematch to return the favor. Both these up-and-coming golfers are highly skilled, highly unique and most of all, highly competitive. With dreams of making it pro, a rivalry is getting in full swing as they both battle it out in the biggest tournaments.", + "posterPath": "/lQzXueKaedZ5fs68MLq6cKZ76BD.jpg", + "backdropPath": "/2stzsTWDsgkdvwHl2YAA5hXkW3D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2022-04-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 20, + "popularity": 2.1411 + }, + { + "id": 42408, + "title": "Hanamaru Kindergarten", + "originalTitle": "はなまる幼稚園", + "overview": "Anzu, Hiiragi, and Koume are three girls who attend the lively Hanamaru Kindergarten. There they have lots of adventures with their classmates and with Naozomi Tsuchida, their teacher who has just started working fresh out of school.", + "posterPath": "/49jZCqTAfmUN0qpTKWXElyxgjf3.jpg", + "backdropPath": "/nbMCbhhnuyJQZrvjOtUQ1dXOG7y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-01-11", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 5, + "popularity": 2.139 + }, + { + "id": 93875, + "title": "22/7 (nanabun no nijyuuni)", + "originalTitle": "22/7(ナナブンノニジュウニ)", + "overview": "One day, Miu Takigawa suddenly receives a letter notifying her that she has been chosen as a member of a brand-new project. Half in disbelief, she heads over to the location stated on the letter. There, she finds seven other girls summoned there in the same fashion. The girls behold a giant, top-secret facility. They stand in bewilderment as they are told: \"You are going to debut for a major record label as an idol group.\" A new kind of idol, never-before-seen, is about to be born here...", + "posterPath": "/m93b9GWlI3DetEczMt71edE75p4.jpg", + "backdropPath": "/3vhISZJYAYDkZNV0rcLTvfzdYwZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2020-01-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 2.1377 + }, + { + "id": 35106, + "title": "Outlaw Star", + "originalTitle": "星方武侠アウトロースター", + "overview": "Gene Starwind is a jack-of-all-trades responsible for odd jobs and bounty hunting with his partner, Jim Hawking. Stuck on a rundown planet, he’s going nowhere fast. But when a bodyguard job goes sideways, he finds himself the proud owner of the Outlaw Star and on an adventure to find the mysterious Galactic Leyline. Facing pirates and dangers galore, can he survive the journey through space?", + "posterPath": "/lSD3robi0EDLEucVoLFgaBuFRQt.jpg", + "backdropPath": "/tZSPO6UuvllyG4sIp3VUkp49pjY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "1998-01-09", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 53, + "popularity": 2.1376 + }, + { + "id": 36324, + "title": "PreCure Splash Star", + "originalTitle": "ふたりはプリキュア Splash Star", + "overview": "During the summer festival five years ago, two girls met at a mysterious tree and saw two glowing spheres. Now, these two girls--Saki Hyuga, ace pitcher on the school softball team; and Mai Mishou, who prefers sketching over stargazing--are chosen by the spirits of flowers (Flappy) and birds (Choppy) to restore the Seven Fountains and save their worlds from Dark Autumn. Together, they are the NEW Pretty Cure.", + "posterPath": "/lA4ZYQ94omDOjyH6Oa775274yYR.jpg", + "backdropPath": "/ljo2aZT4PoWkrYLZKySsI301kCw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-02-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 14, + "popularity": 2.1316 + }, + { + "id": 243743, + "title": "Plus-Sized Elf", + "originalTitle": "エルフさんは痩せられない。", + "overview": "Naoe, a massage therapist, is about to head home for the day when he’s saddled with a rather strange patient. This lovely lady has emerald eyes, pointy ears, and grew up in the forest–everything about her screams “elf,” except for one thing: her bodacious body. It turns out she left her world but loves junk food in this one, and now her obsession has caught up with her. Can Naoe help this lovable elf girl lose the weight–and keep it off?", + "posterPath": "/uAsfnNQmo8apz4tDDgnjXAirudB.jpg", + "backdropPath": "/36ayECqAXwPnAT9O38Zj9wk4YMD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-07-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.769, + "voteCount": 13, + "popularity": 2.1303 + }, + { + "id": 94423, + "title": "Japan Sinks: 2020", + "originalTitle": "日本沈没2020", + "overview": "After catastrophic earthquakes devastate Japan, one family's resolve is tested on a journey of survival through the sinking archipelago.", + "posterPath": "/guWqteZJ16ABGGtXIKFyDBAo8Ik.jpg", + "backdropPath": "/6aJMl28iBbhZLxDIj3Vqfaonzv2.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2020-07-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 317, + "popularity": 2.1296 + }, + { + "id": 261301, + "title": "I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "originalTitle": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "overview": "While innocently enjoying himself after work, one man’s life changes forever. He wakes in the body of Liam Hamilton, the youngest son of a noble house on the brink of collapse. Amid the chaos, Liam realizes he finally has time to learn and practice magic. Once he begins, it takes his life for an even bigger turn. Can Liam master magic and save his noble family? The aristocratic fantasy begins!", + "posterPath": "/7yYvOotNSvM8Q9le7uDfzX2h9fb.jpg", + "backdropPath": "/q8VkhEbp7x0CnQPGtsGtNCQQAbu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2025-01-07", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 19, + "popularity": 2.1289 + }, + { + "id": 21618, + "title": "Tales of Little Women", + "originalTitle": "愛の若草物語", + "overview": "Meg, Jo, Beth and Amy are four loving March sisters living with their mother in the USA during the Civil War. Their father is a military doctor fighting in the Union Army. After a terrible battle in a neighbour town, the Confederates pass through their town and burn it. Over the ruins of their house the March family also learn that the factory in which their father invested all his money has been burnt too. Homeless and pennyless, the family heads towards Newcord, where the father's aunt lives, hoping for the old lady to help them. The girls try to adjust to their new life, face many hardships, meet new friends and wish to the war to be over at last.", + "posterPath": "/8xfhCHNuZ7EvszXOW4kmecqsx6B.jpg", + "backdropPath": "/sBJUiOKEH8RCjmUgGeXqUstOJw4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1987-01-11", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 19, + "popularity": 2.1278 + }, + { + "id": 46184, + "title": "Campione!", + "originalTitle": "カンピオーネ!", + "overview": "Godo Kusanagi, a high school student that kills a god, claiming its power and title of Campione, to slay other gods.", + "posterPath": "/h46tgmaPjq7ojhgqlR7lE8VxVfm.jpg", + "backdropPath": "/b15cuTpCvjRBOVkldU1wzquEust.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-07-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.98, + "voteCount": 101, + "popularity": 2.1272 + }, + { + "id": 236144, + "title": "My Instant Death Ability Is Overpowered", + "originalTitle": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "overview": "Yogiri Takatou missed a few things during his nap. When he wakes up, he finds out that he and his entire class are in another word and must now team up with Tomochika and fend off danger with his Instant Death ability. If he can keep his eyes open, that is...", + "posterPath": "/rqklWX3bDMrFx5bmV1kuGuMuo27.jpg", + "backdropPath": "/zN6kspmbYSwR8nmNeKvD4efNnxj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.396, + "voteCount": 48, + "popularity": 2.1266 + }, + { + "id": 62798, + "title": "Blade", + "originalTitle": "ブレイド", + "overview": "Legendary half-vampire, half-human vampire hunter Blade is tracking Deacon Frost, a very powerful and influential vampire who killed his mother and who heads Existence, a secretive vampire organization that operates in Southeast Asia.", + "posterPath": "/ql9YpFD8J1zeWzLMHHjp4nKKD4n.jpg", + "backdropPath": "/vknOLvvET1s9BaC2kmrulMCeE7Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-07-01", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.181, + "voteCount": 91, + "popularity": 2.1266 + }, + { + "id": 29153, + "title": "Mushiking: The Guardians of the Forest", + "originalTitle": "甲虫王者ムシキング ~森の民の伝説~", + "overview": "Popo, and his family were harmoniously living with the insects in the forest until one day when his father left him and gave him a mysterious pendant with magical powers. Now, with mysterious events happened to his mother, he must travel with his newly found companions to the forest to solve the mysteries bound in the east.", + "posterPath": "/wDpjSro9lonXK1HeKPwWTtZ0LJs.jpg", + "backdropPath": "/qGfJtYZyyjogTKm8MPC88QYlcl9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids" + ], + "releaseDate": "2005-04-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 5, + "popularity": 2.1247 + }, + { + "id": 42713, + "title": "Record of Lodoss War", + "originalTitle": "ロ-ドス島戰記", + "overview": "Born in battle, baptized in fire, it's kingdoms have been ravaged by war for thousands of years. Now, an evil stirs, an ancient goddess of destruction awakened by an evil wizard. A party of six is forged to defeat this threat, or die in the attempt. Join Parn, the young fighter, as he leads his warriors into the heart of a land where dragons rule and evil holds sway over the earth. Six swords are now drawn against this darkness. The war for Lodoss has begun!", + "posterPath": "/4DmzoxYfS4A1eFA35QIEJCvZE4D.jpg", + "backdropPath": "/lOVKwI5TtcZMiB94Gkn9Tj1uu7k.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "1990-06-30", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 64, + "popularity": 2.124 + }, + { + "id": 70036, + "title": "Tonari no Seki-kun: The Master of Killing Time", + "originalTitle": "となりの関くん", + "overview": "In the middle of class at a certain school, Rumi Yokoi, a diligent student, has her in-class life turned upside down when her desk mate Toshinari Seki begins to play by himself at his desk in class. Although Rumi is irked by Toshinari's distracting yet intricate playtime, she finds herself being drawn into his interesting hobby. Never being able to focus, Rumi observes Seki's stunning ways of slacking off in class.", + "posterPath": "/1972unB06y8eHC05byFIrOt8aA8.jpg", + "backdropPath": "/c9UTATGVikQwEuF7vuafV4IKvfG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.492, + "voteCount": 64, + "popularity": 2.1229 + }, + { + "id": 222785, + "title": "Undead Murder Farce", + "originalTitle": "アンデッドガール・マーダーファルス", + "overview": "In this world, creatures like vampires and werewolves still walk about, but Aya Rindo can’t say the same for herself. This beautiful disembodied head, carried by her maid Shizuku Hasei, is a detective in search of her stolen body. One evening, they meet half-human Oni Slayer Tsugaru Shunichi, who offers a lending hand. Now, the trio is traveling through Europe, solving mysteries along the way.", + "posterPath": "/tkbOrGOm6niFaRBCUFHcYPZy5dG.jpg", + "backdropPath": "/7tk8aL3yPcMUahqKQVn6waNfa8G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.598, + "voteCount": 51, + "popularity": 2.1221 + }, + { + "id": 46179, + "title": "Kodomo no Jikan", + "originalTitle": "こどものじかん", + "overview": "23-year-old school teacher Aoki Daisuke has a huge problem. One of his students, Kokonoe Rin, has proclaimed herself to be Daisuke-sensei's girlfriend and is now on the warpath to win him over or get him fired.", + "posterPath": "/w6BeXOpOkP3lF0uHw99nUiWbAzb.jpg", + "backdropPath": "/tNBfnl9sIdSHmR5AMnWKIAzheNP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2007-10-11", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.75, + "voteCount": 28, + "popularity": 2.1218 + }, + { + "id": 19229, + "title": "CLAMP School Detectives", + "originalTitle": "CLAMP学園探偵団", + "overview": "CLAMP School has the size and resources of a small city. Over 10,000 people—students and their families—live, work, and study within its self-sufficient campus. Any student with talent, regardless of wealth, is gladly accepted into this amazing facility. Covering kindergarten through graduate school, it is without equal anywhere in the world. Nokoru Imonoyama, Student Council President of the Elementary School Division, as well as the Treasurer, Akira Ijūin, and Secretary, Suō Takamura, are three of the most well-liked and idolized students in school. Nokoru decides that he and his two friends are going to start a detective service, solving any mystery or crime, great or small. But, as Nokoru is a bit theatrical and a shameless romantic, he declares that these detectives will focus on aiding mostly girls and women. With all the resources the school has to offer at their disposal, the CLAMP School Detectives are on a mission to help damsels in distress.", + "posterPath": "/A6lk08ARcf5MOorxpWfbD0My7xN.jpg", + "backdropPath": "/8U9hCvAuQFp4ukMGBeXPDHkxk1b.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1997-05-03", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 5, + "popularity": 2.1215 + }, + { + "id": 31731, + "title": "Gunslinger Girl", + "originalTitle": "Gunslinger Girl", + "overview": "The Social Welfare Agency saves the lives of terminal patients using cybernetic implants. Then it teaches them to kill. After surviving the slaughter of her family, young Henrietta awakens to her new life at the Agency with a rebuilt body and no memory. Teamed with Jose, who is responsible for turning her into the perfect assassin, Henrietta’s been given a second chance—but at what cost?", + "posterPath": "/hZrhtwcSydWh3rxQSB6we1KSql7.jpg", + "backdropPath": "/p7F1cnCQHp29F0OhH9bqgoybvbs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2003-10-08", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 50, + "popularity": 2.1214 + }, + { + "id": 45241, + "title": "Muv-Luv Alternative: Total Eclipse", + "originalTitle": "トータル・イクリプス", + "overview": "In the year 1973, alien species known as BETA (Beings of Extra Terrestrial origin which is Adversary of human race) came to invade earth. During the next 30 years, they have conquered most of the Eurasian continent, effectively decreasing the world population by billions. In response to their unique behavior, a new type of mobile mechanical humanoid weapon was developed, known as Tactical Surface Fighter (TSF). In the year 2001, elite pilots from around the world start to gather at a UN base in Alaska named Yukon to participate in the Prominence Project. This project is a joint effort between Russia and America on research and development of next generation of TSF. The job of the pilots is to test the prototypes, which occasionally involves pitting them one against another...", + "posterPath": "/qCcUT9hJAjQN0gRPVC8lzeXobci.jpg", + "backdropPath": "/bYTz1u4hOzyOxYCnMGN7cHXwRGO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2012-07-02", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.588, + "voteCount": 17, + "popularity": 2.1143 + }, + { + "id": 61363, + "title": "Samurai Flamenco", + "originalTitle": "サムライフラメンコ", + "overview": "Male model Masayoshi Hazama decides to become a superhero, despite having no superpowers or the technology to create a high-powered suit. He becomes the hero, Samurai Flamenco and begins to fight crime in the name of justice. Police officer Hidenori Goto finds out about Samurai Flamenco and his real identity by a twist of fate, which leads to him getting involved in lots of trouble. These two young men will come face to face with hardships of being crime-fighters while discovering what it truly means to be a hero of justice.", + "posterPath": "/ijHECy9gGDZ8caOez8gDViHNqWN.jpg", + "backdropPath": "/j4bZtbg3d5P6jmzQpBG60WmIyF2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2013-10-10", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 13, + "popularity": 2.113 + }, + { + "id": 250596, + "title": "My Wife Has No Emotion", + "originalTitle": "僕の妻は感情がない", + "overview": "Takuma isn’t the most exciting guy. He’s awkward, single, and does nothing but go to work and come home. Tired of doing chores, he decides to buy a housekeeping robot named Mina. She can cook and clean perfectly, and the two get to know each other better over time. Soon, Takuma starts to fall for Mina! But could a robot ever love him back?", + "posterPath": "/ttaknfJP0qjg7kMKwH0w29fcE6d.jpg", + "backdropPath": "/cQGq1oRSORK1xHnAvli4qXOBOTJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2024-07-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 13, + "popularity": 2.1099 + }, + { + "id": 44893, + "title": "Dream Hunter Rem", + "originalTitle": "ドリームハンター麗夢", + "overview": "Rem Ayanokōji is a \"dream hunter,\" a person capable of entering the dreams of sleeping people and fighting the demons causing nightmares.", + "posterPath": "/f3OKrOicvuJ71y71QdBULcYDHJB.jpg", + "backdropPath": "/4FuYP7o5e64fJu5KAjcoIaqTMik.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1985-12-15", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 6.875, + "voteCount": 8, + "popularity": 2.1097 + }, + { + "id": 218146, + "title": "Mysterious Disappearances", + "originalTitle": "怪異と乙女と神隠し", + "overview": "Sumireko Ogawa’s dream of becoming a novelist is reinvigorated with new rumors of mystical incidents. Now a clerk at a bookstore, she enlists her young coworker, Ren Adashino, to investigate urban legends, black magic, and ghost stories across the city. Sumireko has a knack for triggering magical events, and Ren has a dark secret of his own. Will they survive their investigation unscathed?", + "posterPath": "/2S5ZCNmmio6wfXhmO9cZLEtzLL3.jpg", + "backdropPath": "/a3Sdszoxb3oH7i79XiYKKAdsl6J.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-10", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.667, + "voteCount": 15, + "popularity": 2.1078 + }, + { + "id": 76062, + "title": "Beatless", + "originalTitle": "ビートレス", + "overview": "Most of the world's needs are fulfilled by humanoid robots called hIE's. One day, 17-year-old Arato Endo meets the android Lacia and becomes her owner. She is one of five androids with advanced AI. Each of the five units have their own motivations, and fight to gain each other's abilities. What will the relationship between man and machine be moving forward? That is something Arato must find.", + "posterPath": "/2PtN9nZJYEXiklRe1T5DxwIKED9.jpg", + "backdropPath": "/c6VFXuF8Sx5Aw3oymlu1OcbEnTH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-01-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 24, + "popularity": 2.1068 + }, + { + "id": 69288, + "title": "Kemono Friends", + "originalTitle": "けものフレンズ", + "overview": "Japari Park is an enormous integrated zoo built somewhere in this world. A mysterious substance found there, called \"Sand Star,\" causes the animals to turn into humanoid beings called \"Animal Girls\"! These new creatures spend every day peacefully with the zoo's visitors... but after some time, a lost child turns up in the park. The child's attempt to find the way home turns into a great adventure with the Animal Girls!", + "posterPath": "/2TQq8uiRob7nboF7UBVKBach88N.jpg", + "backdropPath": "/9e1KtWeZ8tRjjoxdRxIkNXCI5dD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-11", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 19, + "popularity": 2.1065 + }, + { + "id": 66109, + "title": "Hundred", + "originalTitle": "ハンドレッド", + "overview": "\"Hundred\"—that is the only weapon that can oppose the mysterious life form \"Savage\" from visiting the earth. The protagonist, Kisaragi Hayato, aims to become a Martial Arts Master using this Hundred. He managed to get into the battleship university Little Garden. However— \"I wanted to see you, Hayato!!!\" \"H-How do you know my name?\" Around the roommate, Emil Crossford, who somehow knows him well (?), Hayato gets an uneasy feeling. What's more, just after the entrance ceremony, he gets asked for a duel by the campus' strongest martial arts master \"Queen\" Claire Harvey...!? The ultimate academy battle begins here!", + "posterPath": "/pb6s3Dd1k424OU5Fq1OWdk2F4yK.jpg", + "backdropPath": "/9bXJLRcbXtmfPymG2lQlHgmABFv.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 41, + "popularity": 2.1062 + }, + { + "id": 65956, + "title": "The Morose Mononokean", + "originalTitle": "不機嫌なモノノケ庵", + "overview": "Ashiya has spent the first seven days of high school stuck in the infirmary because of a youkai attaching itself to him. He ends up asking the owner of a small tea room called the \"Mononokean\" for help. This is a tale involving the very morose owner of Mononokean guiding the youkai that happened to wander into this world go to the next world.", + "posterPath": "/spX0QB8smjL2P7CDcVamnsIj5CD.jpg", + "backdropPath": "/45PNVTcVCYL8DR4ZAp290PSo3W2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-06-28", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 34, + "popularity": 2.1062 + }, + { + "id": 87447, + "title": "Case File N° 221: Kabukicho", + "originalTitle": "歌舞伎町シャーロック", + "overview": "Shinjuku Ward, east side… The center of the street with the most chaos, there's Kabuki-chō, full of neon lights. When the light is stronger, the shadow is deeper. The story begins when certain bizarre murder happens one night! Suspense? Or Comedy? Drama that cannot be identified begins!", + "posterPath": "/a3IN3jazd0GtDjSPuPuf9WTqR56.jpg", + "backdropPath": "/a1q4poXtZvd22sZhfiYFkhWetMx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy" + ], + "releaseDate": "2019-10-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 4.95, + "voteCount": 20, + "popularity": 2.1059 + }, + { + "id": 35583, + "title": "Guyver: The Bioboosted Armor", + "originalTitle": "強殖装甲ガイバー", + "overview": "Guyver: The Bioboosted Armor is a Japanese anime series based on the long-running manga series, Bio Booster Armor Guyver, written by Yoshiki Takaya, adapting chapters 1 - 59 of the manga. The production was in association with ADV Films and Kadokawa Shoten. The series first episode aired in Japan on August 6, 2005 and the last episode aired on February 18, 2006.\n\nThe series aired in North America on December 20, 2010, on the FUNimation Channel.", + "posterPath": "/nmyqGLfgUWcszAVPIzqAythRIhe.jpg", + "backdropPath": "/1dR3jnx1R8xf1bLwjnAFVCkT3KJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2005-08-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 13, + "popularity": 2.1042 + }, + { + "id": 71005, + "title": "The Silver Guardian", + "originalTitle": "銀の墓守り", + "overview": "Lu Shuiyin (Riku Suigin in Japanese) is a master of gaming, a skill only known to his classmate Lu Lian (Riku Lin in Japanese). One day, Shuiyin receives a device from Lu Lian for a tomb raiding online game. While Shuiyin is excited to receive the device, Lian is suddenly kidnapped. Shuiyin touches the device that was left behind, pulling him inside the game and trapping him there. What is the imaginary world inside the device? What will Shuiyin find there? It is a world where two groups of people fight over the power of the gods, which originates from the tomb the mother goddess Pangu (Bango in Japanese). The two groups are the tomb raiders and the tomb protectors. The device Shuiyin received from Lian is called the Monolith, and it allows a normal gamer to go near the tomb. The tomb raiding group plans its attack by recruiting common people in the name of gaming. Shuiyin, as the final tomb protector, must fight against the raiders in order to save Lian.", + "posterPath": "/q58RHZRnMp9SVmj0q4vvmdO7gZC.jpg", + "backdropPath": "/tULmg5gfr2NGLmN3WOspSRWZGcQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2017-04-01", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 17, + "popularity": 2.1018 + }, + { + "id": 52878, + "title": "Say \"I Love You.\"", + "originalTitle": "好きっていいなよ。", + "overview": "To trust is to set yourself up for failure. That’s the lesson Mei Tachibana learned when her heart was broken. She found a solution: never make any more friends. It’s not as easy as it sounds, but it works for Mei. At least it did until handsome and charming Yamato Kurosawa showed up to complicate everything. Mei’s not looking for a white knight. So why did he have to kiss her and ruin everything? Between heartbeats and behind trembling lips the specter of betrayals past, future, and present haunt them both in Say \"I Love You\"!", + "posterPath": "/jCTTTaVz2a6f7T9mvJu5zQgxMEU.jpg", + "backdropPath": "/23JsXTt0m1P17vIYqUpqeDgAJYk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2012-10-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 87, + "popularity": 2.1007 + }, + { + "id": 37578, + "title": "Robin Hood's Big Adventure", + "originalTitle": "ロビンフッドの大冒険", + "overview": "Robin Hood's Big Adventure is an anime adaptation of the classic Robin Hood story consisting of 52 episodes. In this version, Robin and his allies are mostly pre-teens.", + "posterPath": "/cHDNtXswW5uKdHMrjMeLVjB561z.jpg", + "backdropPath": "/p20Ixev8WxutYvQohM0A6tZlx5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1990-07-29", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 12, + "popularity": 2.0984 + }, + { + "id": 54552, + "title": "Barbapapa around the world", + "originalTitle": "バーバパパ 世界をまわる", + "overview": "The adventures of Barbapapa, Barbamama, their seven children, and their pet dog Lolita as they travel around the world.", + "posterPath": "/xVGSFlaBAi3Lfgd2TlEgSSvPnOC.jpg", + "backdropPath": "/hfbVSYZAHbddr03GOZXOLa8OEwP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "1999-07-05", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.786, + "voteCount": 7, + "popularity": 2.0967 + }, + { + "id": 234776, + "title": "Blue Miburo", + "originalTitle": "青のミブロ", + "overview": "The year is 1863, with the story being based in Kyoto. We follow a youth named Nio who is an honest and kind soul who's considerate of his family, yet he also has a hidden burning passion for seeking justice. From the time he came across Toshizou Hijikata and Souji Okita, members from a group of hated ronin known as the Miburo, his life then takes a turn to a bluer, and clearer path. Nio, alongside the other men whose hearts burn bravely and true, step forth towards an honest path with their blue wills adorned on their hearts!", + "posterPath": "/wuBTOsLsQEXHkMWgmpmswFjSJXr.jpg", + "backdropPath": "/s2P0DYSeMrqNh4L7hGXP3Xs5kbA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-10-19", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 14, + "popularity": 2.096 + }, + { + "id": 67395, + "title": "Tokyo Ravens", + "originalTitle": "東京レイヴンズ", + "overview": "Tsuchimikado Harutora was born into a prestigious Onmyoji family, but he can't see \"spirit energy\". Therefore, he's been enjoying a peaceful daily life with his friends at an Onmyo branch school. One day, his childhood friend Tsuchimikado Natsume, heir to the head family, suddenly appears. Will this cause his destiny spring into motion!?", + "posterPath": "/zgCoBUFzK89BdWV3xh8oqw0PGGU.jpg", + "backdropPath": "/tKOEv4VdohSLMbTjw8szcfk9VI5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-09", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 41, + "popularity": 2.0953 + }, + { + "id": 133733, + "title": "Black Rock Shooter: Dawn Fall", + "originalTitle": "ブラック★★ロックシューター DAWN FALL", + "overview": "The year is 2062. Earth has been left in ruin after the failure of a labor automation project when the AI called Artemis waged war against humanity. A girl, Empress, awakens in a research lab. As one of the three surviving guardians, she must destroy the Orbital Elevator before Artemis can complete its construction. Failure will result in a machine army overrunning Earth.", + "posterPath": "/fjwT6zU73MTptIkqta16dBKycGq.jpg", + "backdropPath": "/ck9dE7kwAuxXwswo3OWEeOerRSj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2022-04-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 77, + "popularity": 2.0939 + }, + { + "id": 43938, + "title": "Trapp Family Story", + "originalTitle": "トラップ一家物語", + "overview": "Trapp Family Story is a Japanese anime series by Nippon Animation.\n\nIt was based on the memoir The Story of the Trapp Family Singers by Maria von Trapp, which has also inspired the world famous musical The Sound of Music.\n\nWhile many things were changed from the original story, unlike other adaptations such as The Sound of Music, the children's names are all correct in this version.", + "posterPath": "/y0ju0nU1Dol6J5RI83h8jgNd4cQ.jpg", + "backdropPath": "/t4UKL648jkEtdGpyQAkeeSNPiqb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 18, + 35 + ], + "genres": [ + "Animation", + "Family", + "Drama", + "Comedy" + ], + "releaseDate": "1991-01-13", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 10, + "popularity": 2.0938 + }, + { + "id": 54923, + "title": "The Beast Player Erin", + "originalTitle": "獣の奏者 エリン", + "overview": "In the war against neighboring countries, the Grand Duke’s warriors use dragon-like beasts called Touda as weapons. Touda are admired across the nation and villages take great pride in breeding them. Erin lives in one such village with her mother, Soyon, who is the best beastinarian in the country. However, life in the village is not so straightforward: Soyon is also an Ariyo, a woman of the Mist People - a race that is feared by humans for its mystical abilities. So that she and Erin can stay in the village, Soyon must flawlessly fulfill her duty capturing and disciplining the Touda; but while Erin wants nothing more than to become a beastinarian, she also feels sorry for the Touda and recognizes that there’s far more to them than meets the eye. Can Erin ever become an ordinary beastinarian when her deepest instincts tell her there is a better way to interact with the Touda?", + "posterPath": "/aNA2Jv2CrHqZxF4oJtE7bh3nLyo.jpg", + "backdropPath": "/lU6SfQcJNSdqMzDDUwW6TwOp8hp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-01-10", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 6, + "popularity": 2.0937 + }, + { + "id": 66251, + "title": "Kaibutsu-kun", + "originalTitle": "怪物くん", + "overview": "As part of his training to succeed the throne, he visits the human world, where he has various adventures with other monsters.", + "posterPath": "/xpBE2Y2drI7pbyuzOZIJrS8uWiz.jpg", + "backdropPath": "/hkm8OhtvwVZUId069MjY6u6Ed3n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1980-09-02", + "releaseYear": "1980", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 2.0931 + }, + { + "id": 195053, + "title": "Case Closed: Zero's Tea Time", + "originalTitle": "名探偵コナン ゼロの日常", + "overview": "A detective who's also a public security agent and a member of a shadowy organization juggles his triple identities.", + "posterPath": "/e5T5tLm2EqzfjxhYNEchcuzyLcs.jpg", + "backdropPath": "/AtNw5nXnON4oChajNC521wXQmVl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Crime" + ], + "releaseDate": "2022-04-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 29, + "popularity": 2.0917 + }, + { + "id": 213883, + "title": "Soaring Sky! Precure", + "originalTitle": "ひろがるスカイ!プリキュア", + "overview": "A major incident has occurred in the peaceful Sky Land!? The young Princess Ellee has been kidnapped by the monsters of Underg Empire! A brave young girl, Sora, follows the princess through a mysterious hole. \"TV\"? \"Cars\"? Are those some kind of magic tools!?!?\n\nBut there's no time to be surprised! She has to get the princess back to the castle...! Flying between two worlds! The adventure with the Pretty Cure begins now!", + "posterPath": "/nUBxAQBOCU9IFUPsPUxXTEOIJ74.jpg", + "backdropPath": "/xwt9MjF0wOjcVC7ENs3158u9O4m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "2023-02-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 14, + "popularity": 2.0897 + }, + { + "id": 34144, + "title": "Shigurui: Death Frenzy", + "originalTitle": "シグルイ", + "overview": "At the beginning of the Edo Era, when people enjoyed a time of peace, Lord Tokugawa Tadanaga holds a fighting tournament. In the past, matches were fought with wooden swords. This time, real swords will be used. One-armed Fujiki Gennosuke and blind Irako Seigen will fight each other in this match. Both are disciples of Iwamoto Kogan, who is known as Japan's greatest swordsman. Each of them are determined to prove himself the successor of Iwamoto's school. However, there can only be one champion. So begins a story of intertwining fates, conflict, and strange destinies.", + "posterPath": "/noOICSvKXkz2lQqw778aQPXQJJ4.jpg", + "backdropPath": "/gojctO0VsadPKjWz3fQVTL67QzZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2007-07-19", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 56, + "popularity": 2.0895 + }, + { + "id": 42460, + "title": "Vampire Princess Miyu", + "originalTitle": "吸血姫美夕", + "overview": "Miyu, a vampire girl, acts as a guardian, sending stray demons known as Shinma back to the darkness while publicly posing as a high school student.", + "posterPath": "/A5Ro3RpFXAWiV5Ntk7BoMcDcSUE.jpg", + "backdropPath": "/gQBAqyGWh6lDRw2hJFV1kMwaYed.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1997-10-07", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 10, + "popularity": 2.0885 + }, + { + "id": 72515, + "title": "Princess Principal", + "originalTitle": "プリンセス・プリンシパル", + "overview": "The stage is set during the 19th century London, in its capital where a wall divides the east and west of the Kingdom of Albion. Five high school girls, who enrolled in the prestigious Queens May Fair School, are involved in spy activities that involve disguise, infiltration, car chase, and more. These girls take advantage of their special abilities and fly around the shadow world.", + "posterPath": "/2dltGXHFepYw7vCMDFVWVt3crup.jpg", + "backdropPath": "/hr0ar1Is3AKCaFcpo1uOGukMPGs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery", + "Drama" + ], + "releaseDate": "2017-07-09", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 30, + "popularity": 2.0875 + }, + { + "id": 121017, + "title": "Irina: The Vampire Cosmonaut", + "originalTitle": "月とライカと吸血姫", + "overview": "The first astronaut in human history was a vampire girl.\n\nFollowing the end of World War II, the world-dividing superpowers, Federal Republic of Zirnitra in the East and United Kingdom of Arnack in the West, turned their territorial ambitions toward space. Both countries have been competing fiercely for development.\n\nEast history 1960. Gergiev, the chief leader of the Republic, announces the manned space flight program Project Mechtat (Dream), which, if successful, would be the first feat for humankind. At that time, Lev Leps, a substitute astronaut candidate, is ordered to perform a top secret mission. The \"Nosferatu Project\"—a program that experiments with vampires prior to manned missions—will use Irina Luminesk as a test subject, and Lev is to monitor and train her.\n\nEven while trifled by the walls of the race and ego of the nations, Lev and Irina share a genuine sentiment as they aim for the universe.", + "posterPath": "/a5SstgQQ9XmIRrYR0HL95sPpGAQ.jpg", + "backdropPath": "/9m0lzt1J0CPC5RVhtUK5JiWuEjo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 30, + "popularity": 2.0871 + }, + { + "id": 65447, + "title": "Rainbow", + "originalTitle": "RAINBOW 二舎六房の七人", + "overview": "About ten years after the Second World War, a group of juvenile offenders are sent to the Shounan Special Reform School, a kind of juvenile detention center, to deal with the atrocities and injustices they experienced in the war.", + "posterPath": "/1habNx0wDHcrZ2nCRs32V2bqdYw.jpg", + "backdropPath": "/dqkMMzxHbCVcUJ8qm6XqZV5OSo1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Crime" + ], + "releaseDate": "2010-04-06", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 69, + "popularity": 2.0865 + }, + { + "id": 52873, + "title": "Recorder and Randsell", + "originalTitle": "リコーダーとランドセル", + "overview": "On the surface it seems as if Atsushi is an adult, but really he's just an elementary student! However, he is paired with a second-year high school student Atsumi, whose height is just the opposite of his. These two together create an unusual relationship and will undoubtedly instigate some comedic antics in this slice of life comedy!", + "posterPath": "/3cqIaFHdFO7bpbvda2P3NGAOEO9.jpg", + "backdropPath": "/eotuvv8cs2uOHscUmGzo5MfXCit.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 35 + ], + "genres": [ + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "2012-01-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 4.2, + "voteCount": 6, + "popularity": 2.0864 + }, + { + "id": 42855, + "title": "Rumbling Hearts", + "originalTitle": "君が望む永遠", + "overview": "At first, Takayuki Narumi is befriended by Mitsuki Hayase only because Mitsuki's best friend, Haruka Suzumiya has a crush on him; however since then, Takayuki, his pal Shinji Taira, and Mitsuki have grown to be the best of friends. Then one day, Haruka confesses to Takayuki her love for him. Not wanting to hurt her feelings, Takayuki agrees to go out with her. After a few incidents, their relationship gets intimate, even while Takayuki and Mitsuki begin to realize their feelings for each other. But suddenly, when tragedy strikes, things are never the same for these four friends again.", + "posterPath": "/fb7vMnAmUvmGGxEb9nNLHYrItpr.jpg", + "backdropPath": "/jpaDxwdfFdzuvlu6s9DMGyMRgfF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2003-10-04", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.407, + "voteCount": 27, + "popularity": 2.0857 + }, + { + "id": 66979, + "title": "Days", + "originalTitle": "DAYS", + "overview": "The series is about two boys named Tsukushi and Jin. Tsukushi is a boy with no special talent or traits while Jin is considered a soccer genius. On one stormy night, Jin meets Tsukushi, and they get dragged into the world of soccer.", + "posterPath": "/ocDHk2mlH5Hx5FHOcDbCUqZ4PQo.jpg", + "backdropPath": "/vtzEqPNWIroLlPVta9fL3AGKvrD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 16, + "popularity": 2.0854 + }, + { + "id": 65523, + "title": "Dagashi Kashi", + "originalTitle": "だがしかし", + "overview": "Shikada Kokonotsu's father owns a rural sweets shop, and his plan is for Kokonotsu to take it over one day. However, Kokonotsu wants to be a manga author instead! One day in summer, the cute but weird girl Shidare Hotaru, from the famous sweets company, comes to pay a visit. Apparently, Kokonotsu's father is famous and she wants him to join her family's company. However, he will only agree if she can convince Kokonotsu to take over the family business!", + "posterPath": "/kQ8aOnFUJmEGHmkkJS8tcIwnCWX.jpg", + "backdropPath": "/43nMoj910U4KWrzdNDPgr0iChRF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 194, + "popularity": 2.0837 + }, + { + "id": 58237, + "title": "Silver Spoon", + "originalTitle": "銀の匙 Silver Spoon", + "overview": "Yuugo Hachiken enrolled in Ooezo Agricultural High School for the reason that he could live in a dorm there. In some ways he chose Ooezo in an effort to escape the highly competitive prep schools he had attended previously, but he was faced with an entirely new set of difficulties at Oezo, surrounded by animals and Mother Nature. After growing up in an average family, he began to encounter clubs and training the likes of which he had never seen before.", + "posterPath": "/4HiHpVy0OVk5nFl28pjU8gBDA7A.jpg", + "backdropPath": "/cf2jCEnFMDHWIFfWRWW8YRduT1s.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-07-12", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.763, + "voteCount": 57, + "popularity": 2.0835 + }, + { + "id": 117061, + "title": "The Detective Is Already Dead", + "originalTitle": "探偵はもう、死んでいる。", + "overview": "Kimizuka Kimihiko is a crisis-magnet. So it is no surprise when his rather mundane flight suddenly enters a state of emergency with a dire need of a detective onboard. Unfortunately, his attempt at avoiding trouble is foiled by a beautiful girl with silver hair who goes by the codename Siesta. Declaring herself a detective, she unceremoniously drags Kimizuka into the case as her assistant. That incident spelled the beginning of an adventure around the globe that went beyond his wildest imagination. Putting their lives on the line, the two took down criminal organizations, prevented disasters, and saved thousands. But the curtain closed to their epic journey with Siesta's untimely death three years later. Resolving to live an ordinary high school life this time, Kimizuka spends a year maintaining a low profile. However, as fate would have it, a girl with an uncanny resemblance to Siesta comes crashing into his life, threatening to throw his peaceful days into disarray.", + "posterPath": "/8gCOlj0bXa2cQnXSl4wRX5tVIA0.jpg", + "backdropPath": "/aqETSDXdeYqcD1PPd2WBfeWtoct.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2021-07-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 54, + "popularity": 2.0815 + }, + { + "id": 57912, + "title": "Doraemon", + "originalTitle": "ドラえもん", + "overview": "Nobita Nobi is so hapless that his 22nd century decendants are still impoverished as a result of his 20th century bumbling. In a bid to raise their social status, their servant, a robotic cat named Doraemon, decides to travel back in time and guide Nobita on the proper path to fortune. Unfortunately Doraemon, a dysfunctional robot that the familly acquired by accident (but chose to keep nonetheless), isn't much better off than Nobita. The robot leads Nobita on many adventures, and while Nobita's life certainly is more exciting with the robot cat from the future, it is questionable if it is in fact better in the way that Doraemon planned.", + "posterPath": "/fpUEcviOHumDfkl1z8rfovy9m3m.jpg", + "backdropPath": "/jjqHm8djEFzlmcTdpg2wxZTrPaC.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 16, + 10765, + 10762, + 10751 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "1973-04-01", + "releaseYear": "1973", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 12, + "popularity": 2.0815 + }, + { + "id": 30979, + "title": "Gravitation", + "originalTitle": "グラビテーション", + "overview": "Aspiring singer Shuichi Shindo and his band, Bad Luck, work to become Japan's next musical sensation, while he struggles to capture Eiri Yuki's attention.", + "posterPath": "/pSX3VpIt5lQJvxh1uHuSMJUwPgO.jpg", + "backdropPath": "/fowIZg4V8WEfhA8pOUWpBHWf42f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2000-10-04", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.429, + "voteCount": 14, + "popularity": 2.0813 + }, + { + "id": 61930, + "title": "Cute High Earth Defense Club LOVE!", + "originalTitle": "美男高校地球防衛部", + "overview": "The Earth Defense Club at Binan High School are a group of boys that do nothing, but be lazy. One day when two of the club members, Atsushi and En, are taking a bath in a bathhouse, a talking pink Wombat appears out of nowhere and requests the two boys to help save the Earth with the power of love. Unfortunately, the bathhouse owner's son, Yumoto sees the wombat and chases after it while saying \"Let me fluff you up!\". The next day, the two boys and the other two club members, Io and Ryu are met with the pink wombat and suddenly, bracelets appears and clasp onto each of the four members' wrists, as well as Yumoto (who just happened to be nearby) and they are transformed into the Battle Lovers.", + "posterPath": "/9F3VNRHeHAz4TR6jIFER339UveS.jpg", + "backdropPath": "/2C9dc5S3b8bUhcncAkEpgdyn52D.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2015-01-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 8, + "popularity": 2.0789 + }, + { + "id": 44508, + "title": "Chitose Get You!!", + "originalTitle": "ちとせげっちゅ!!", + "overview": "Chitose Get You!! is a Japanese yonkoma manga series written and illustrated by Etsuya Mashima. An anime series by Silver Link began airing in July 1, 2012.", + "posterPath": "/kLC9QifAeXTJUbR42PROQElu3Ed.jpg", + "backdropPath": "/xqOgT4QoAGgnwrGhcO0lO2SyB61.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-07-02", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 9, + "popularity": 2.0782 + }, + { + "id": 123446, + "title": "The Great Jahy Will Not Be Defeated!", + "originalTitle": "ジャヒー様はくじけない!", + "overview": "The Great Jahy, the Dark Realm's second-in-command, cuts a frightening figure, feared and revered by all. But when a run-in with a magical girl results in the destruction of the precious mana crystal, the Dark Realm falls, transporting the newly tiny and powerless Jahy to the human world! Unfortunately, plotting the revival of the Dark Realm from a cramped, crumbling one-room apartment is no easy feat when you have rent to pay and a job to keep!", + "posterPath": "/9hrlzVgSK0y2sA6Q3Nk8oSOIYUD.jpg", + "backdropPath": "/clsLGcG4OWy1FMywOS0yUXWLWVE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-08-01", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 51, + "popularity": 2.0745 + }, + { + "id": 19656, + "title": "Lucy of the Southern Rainbow", + "originalTitle": "南の虹のルーシー", + "overview": "Lucy of the Southern Rainbow is a Japanese anime series by Nippon Animation. The 1982 adaptation of the studio's popular World Masterpiece Theater franchise, the anime is based on Southern Rainbow by Australian writer Phyllis Piddington, and tells the story of a young girl named Lucy and the hardships and excitement she and her family encounter when they move from England to Adelaide in Australia to start a farm.\n\nThe anime has been dubbed into French, Italian, Arabic, Spanish, German and Persian.\n\nOne interesting note is that this was the only World Masterpiece Theater series to be produced while the original creator of the story was still alive. Another adaptation of the story, written by Ken Wakasaki as a tie-in to the anime, was also published in Japan in 1982.", + "posterPath": "/WU4Lh3rXi5fP5Qkwm7PKkVrbgN.jpg", + "backdropPath": "/pfr5N6AYIVuHsaSq309gHU6avF3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1982-01-10", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 5, + "popularity": 2.0744 + }, + { + "id": 34773, + "title": "Real Drive", + "originalTitle": "RD 潜脳調査室", + "overview": "The story takes place in 2061, 50 years after humanity developed the \"Net society\" that depended on information networks despite their security issues. To improve security, a new network called Meta Real Network — or \"Metal\" for short — was developed. People's personal memories are reduced to information and placed within \"protected virtual stand-alone organic cyber enclaves\" called bubble shells online. The result was a virtual \"explosion\" of creative freedom as people felt safe enough to explore instincts and desires on Metal that they would not otherwise explore in real life. This \"friction\" between the Metal's alluring lack of restrictions and rules-bound reality led to trouble and incidents that investigators known as \"cyber divers\" must handle. Masamichi Haru is one such cyber diver.", + "posterPath": "/33lPIG5divmPEIiCj8UmqbjQIsm.jpg", + "backdropPath": "/rWatsA0eJEhroHkmEWiGcdwugnz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2008-04-09", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 6, + "popularity": 2.0721 + }, + { + "id": 259559, + "title": "Headhunted to Another World: From Salaryman to Big Four!", + "originalTitle": "サラリーマンが異世界に行ったら四天王になった話", + "overview": "In an alternate fantasy world, the Demon King reigns with a formidable army led by his Four Heavenly Kings. One happens to be Uchimura Denosuke, a normal salaryman unexpectedly plucked from his mundane life by the Demon King himself. But even in this new realm, Uchimura is bestowed no particular powers. Can he survive treacherous missions with only the knowledge of an office worker?", + "posterPath": "/jn74fTmDPlQLyHyhhErM82WqTlD.jpg", + "backdropPath": "/kEhka30yogwEZcQCq0atXHzgVLe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2025-01-06", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 5.913, + "voteCount": 23, + "popularity": 2.0719 + }, + { + "id": 42411, + "title": "The Betrayal Knows My Name", + "originalTitle": "裏切りは僕の名前を知っている", + "overview": "Gifted with a strange ability to see into the troubles of others, kind-hearted Yuki Sakurai finds his life turned upside down the day a handsome stranger named Luka appears. Suddenly, evil beings known as \"Duras\" begin hunting for him and a world of magic, terror, and a dark truth about his past surround him.", + "posterPath": "/u5bqFocBric73YPjBlcbGDKsdNm.jpg", + "backdropPath": "/bQ3z8ab3WBKRgPMERqwRz4sTAq5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2010-04-11", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 2.0709 + }, + { + "id": 239761, + "title": "Senpai Is an Otokonoko", + "originalTitle": "先輩はおとこのこ", + "overview": "For Makoto Hanaoka, life’s about to get more complicated. Saki Aoi, a lively girl with loads of confidence, confesses her love for Makoto one day. When he fails to reciprocate, Saki declares she will be his first love! She shares her goal with a mutual friend, Ryuji Taiga, who also confesses his crush on Makoto. Stuck in a love triangle, Makoto must find a way to make it work and have fun.", + "posterPath": "/7ZHylyosB06pSmBNCwY4lhFAjFq.jpg", + "backdropPath": "/wQcy20hJw1u1yw1zLN7Q1uWbpmu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2024-07-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 15, + "popularity": 2.0704 + }, + { + "id": 36248, + "title": "Linebarrels of Iron", + "originalTitle": "鉄のラインバレル", + "overview": "Centers around Kouichi Hayase, a fourteen-year-old boy living a mediocre life, until an accident turns him into the pilot of a gigantic robot called \"Linebarrel\" and leads him to encounter a mysterious girl.", + "posterPath": "/ieHjmuA24mG0InX2WZH7uQ9TfEy.jpg", + "backdropPath": "/rDDn1U7m9WcSGUCgod9nllRGFMH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2008-10-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 7, + "popularity": 2.0701 + }, + { + "id": 194665, + "title": "HIGH CARD", + "originalTitle": "HIGH CARD", + "overview": "Fourland Kingdom is an island nation in the North Atlantic. In this country, there are 52 X-Playing Cards, considered the origin of playing cards. A card with a unique supernatural ability can gift its abilities to a qualified person: the player.\n\nOne day, the X-Playing Cards in government's custody were spread all over Fourland leading to troubles caused by the supernatural abilities of the players with cards across the country. The king secretly assigns Pinochle, one of the top corporations of the nation, to a mission, to collect the cards that are causing all the chaos in the country.", + "posterPath": "/aGyV4sV4P0y4NXuguucNOo3eolp.jpg", + "backdropPath": "/zLtHqKWqU2vh1tNoHfHAvTWdUQc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.655, + "voteCount": 29, + "popularity": 2.0699 + }, + { + "id": 88047, + "title": "Ensemble Stars!", + "originalTitle": "あんさんぶるスターズ!", + "overview": "Yumenosaki Private Academy, a school located on a hill facing the ocean. Specializing in boys' idol training, the school has a long history of producing generations of idols for the entertainment world out of the young men overbrimming with talents, like the shining stars in the sky. Due to \"special circumstances,\" you are a transfer student at the school, as well as the only female student there. In fact, you are chosen to be the very first student of the \"producer course,\" and your task is to produce these idols… We hope you will enjoy your journey with the idols you meet at the academy, as well as the vigorous ensemble that together you will make.", + "posterPath": "/vYhvuXLEYERKXbNcEV9HeZjEqv6.jpg", + "backdropPath": "/k65bqmrIuAKqM6j3Dh8GrQZnbEb.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-07-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 10, + "popularity": 2.0697 + }, + { + "id": 37806, + "title": "Cat Planet Cuties", + "originalTitle": "あそびにいくヨ!", + "overview": "Nice guy Kio’s normal life gets turned upside down when he meets a friendly, sexy cat-alien named Eris. She’s on a peaceful mission—and she’s ready to play. Things get even friskier when her fellow felines set up base in Kio’s house. It’s not all fun and games, though. Danger is afoot, thanks to several secret agencies and enemy dog-aliens on Eris’s tail.", + "posterPath": "/u1NIvRULdGnufAuGqAdevu4PoYd.jpg", + "backdropPath": "/mMB1vCASCuOek3F8jQDEPRU9mr1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2010-07-10", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 75, + "popularity": 2.0697 + }, + { + "id": 36449, + "title": "Lost Universe", + "originalTitle": "ロスト・ユニバース", + "overview": "Kane Blueriver and his AI companion Canal Vorfeed are trouble contractors, taking on jobs that require their special skills. Their jobs vary from armed escort, to patrol duty, to the capturing of dangerous criminals. Millennium Feria Nocturne is a private eye who has to be the best at everything.\n\nWhen the three of them get together, they run into one mess after another, gradually uncovering more of a mystery that ties the legendary Lost Ships to all of their pasts, bringing them closer and closer to a discovery that something called Nightmare would rather not have them find...", + "posterPath": "/o7ioUtTuyaPhhgQi3nrBQapCVfw.jpg", + "backdropPath": "/5ASNDCHjJUh4gBQV9z7XkSZQqZG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-04-03", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 9, + "popularity": 2.0689 + }, + { + "id": 67325, + "title": "Ai no Kusabi", + "originalTitle": "間の楔", + "overview": "On planet Amoi, a great society has developed, creating a computerized city called Tanagura, ruled by a supercomputer, Jupiter. The populace is almost entirely male and is based on hair color; light-haired men, \"blondies\", are the elites, and dark-haired are the bottom of society, often known as \"mongrels\". Blondies keep young boys as \"pets\" for a few years to perform sexual actions for the Blondie's voyeurism entertainment. Blondies aren't supposed to keep pets for long or interact sexually with pets, but one blondie named Iason Mink has kept a pet named Riki for years and is rumored to sleep with him. Iason refuses to let go of Riki, even with Jupiter's disapproval. Iason is obsessed with keeping Riki, and Riki doesn't know what to do; fight against him or surrender to him, nor what to do about his old friend/lover Guy and their gang.", + "posterPath": "/ZMhBv0GiEsrRw2biZHmg8xO4Xj.jpg", + "backdropPath": "/4AJ2vhy0FfVOHXq613oEBMWT2n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-08-31", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 16, + "popularity": 2.0677 + }, + { + "id": 65959, + "title": "Crying Freeman", + "originalTitle": "Crying フリーマン", + "overview": "Yo Hinomura was an ordinary Japanese potter when a run-in with a Chinese mafia changed his life forever. Now an assassin for the 108 Dragons, Yo is the perfect killing machine. As a sign for remorse over his victims, he sheds tears after eliminating his targets. Because of this, he is infamously known by the Dragons and every crime syndicate in the world as the \"Crying Freeman.\"", + "posterPath": "/qgUASvfjiL7HoKXAlNAo385x9Ow.jpg", + "backdropPath": "/45iI8JQTacbzsVmwnaemmByMrC8.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 80 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Crime" + ], + "releaseDate": "1988-11-25", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 8, + "popularity": 2.0674 + }, + { + "id": 95631, + "title": "Super Cub", + "originalTitle": "スーパーカブ", + "overview": "Koguma is a high school girl in Yamanashi. She has no parents, friends, or hobbies, and her daily life is empty. One day, Koguma gets a used Honda Super Cub motorcycle. This is her first time going to school on a motorcycle. Running out of gas and hitting detours become a small source of adventure in Koguma's life. She is satisfied with this strange transformation, but her classmate Reiko ends up talking to her about how she also goes to school by motorcycle. One Super Cub begins to open up a lonely girl's world, introducing her to a new everyday life and friendship.", + "posterPath": "/higmQmAxcx4UAWTbjQvJQXSlaXJ.jpg", + "backdropPath": "/owvL8PxjIvU4X83mJ4Z7aYMVBmw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 36, + "popularity": 2.0665 + }, + { + "id": 45999, + "title": "Yumeiro Patissiere", + "originalTitle": "夢色パティシエール", + "overview": "The episodes from the anime Yumeiro Patissiere are based on the manga of the same name written and illustrated by Natsumi Matsumoto. The series is produced by Studio Pierrot and directed by Ko Suzuki. The story is about 14 yr old Ichigo who dreams of becoming a pastry chef. She attends St. Marie Academy in hopes of following her grandmother's footsteps. Along the way, she meets boys, enemies, and sweets spirits.", + "posterPath": "/dCKoeh4EcHGUnWtVcoqD5OqFjlV.jpg", + "backdropPath": "/zh53iGbdKXH1FCcGwHzARBIKzIu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-10-04", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 9, + "popularity": 2.065 + }, + { + "id": 60806, + "title": "Captain Earth", + "originalTitle": "キャプテン・アース", + "overview": "High-school student Daichi Manatsu works for the Globe organization to pilot a giant robot called the Earth Engine Impacter to protect the Earth from the invading alien force known as the \"Kill-T-Gang\", from the planet Uranus.", + "posterPath": "/g8JU8FwRHdptsS0277dZFdHo5TC.jpg", + "backdropPath": "/7kPV6VKnAoEe7MyXMyIKI8lqOjt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 19, + "popularity": 2.0648 + }, + { + "id": 258912, + "title": "Magic Maker: How to Make Magic in Another World", + "originalTitle": "マジック・メイカー ~異世界魔法の作り方~", + "overview": "On the night of his 30th birthday, one man’s dreams of wielding magic come true after he unexpectedly passes away. He wakes as Sion, a young child in another world. He and his elder sister, Marie, are the children of a lower-class noble family who govern their region. After receiving conflicting messages from their father, Sion and Marie set out on an adventure to uncover the magic.", + "posterPath": "/wKe1FmUAcSukpfEn5s6747pBwLD.jpg", + "backdropPath": "/ts50p9h0HseLrZ0tvhDrMrLGoIc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-09", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 34, + "popularity": 2.0607 + }, + { + "id": 45858, + "title": "Medaka Box", + "originalTitle": "めだかボックス", + "overview": "Kurokami Medaka is an exceptional first year student at Hanokiwa Academy who got elected as president of the student council with a smashing 98% of the votes. Extremely intelligent, strong, and rich; she wants to help anyone in need. To do that, she introduces a suggestion box that allows any student to contact her. Later known as the Medaka Box, it will bring forth incredible challenges to Kurokami and her friends of the student council.", + "posterPath": "/7W0wmXZa8ZOgawGXvHD3Gv1vVQ6.jpg", + "backdropPath": "/wffBRriPGAmFkdHZtmpLq47r27y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-04-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 27, + "popularity": 2.0586 + }, + { + "id": 63146, + "title": "Rokka: Braves of the Six Flowers", + "originalTitle": "六花の勇者", + "overview": "Legend says, when the Evil God awakens from the deepest of darkness, the god of fate will summon Six Braves and grant them with the power to save the world. Adlet Mayer, self-proclaimed \"Strongest Man in the World,\" has arrived at the continent of Piena in hopes of becoming a Brave. Although it doesn't go as smoothly as he had planned, Adlet is ultimately chosen as one of the six heroes shortly after being greeted by Nashetania Loei Piena Augustra, crown princess and fellow Brave.\n\nThis story follows the two as they embark upon their destined journey to fight the Demon God, intending to meet up with their fellow heroes. However, when they finally unite, seven heroes are present, and soon the others begin to suspect Adlet to be a fraud. Now on the run, Adlet must utilize his unique skill set and wit in a fight for his life to identify which member of the group is the true impostor before it's too late!", + "posterPath": "/ve6wy4KrcU7Lo6WuGb5Zqru3Ds.jpg", + "backdropPath": "/4gf2hdfzOXF4Q8FgxwGIFmXJOHu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 92, + "popularity": 2.0584 + }, + { + "id": 23488, + "title": "Galaxy Warring State Chronicle Rai", + "originalTitle": "銀河戦国群雄伝ライ", + "overview": "Thunder Jet is a 52-episode anime adaptation of the Japanese manga, Ginga Sengoku Gun Yuuden Rai (trans. The Heroes of Galaxy Wars), which was written and illustrated by Johji Manabe.", + "posterPath": "/gKZxVnQOyTHOFkXm07WjwT2vcg.jpg", + "backdropPath": "/hLjyYw72sHyYwIcis0g9UOBJix9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1994-04-08", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 8, + "popularity": 2.0582 + }, + { + "id": 255492, + "title": "Sakuna: Of Rice and Ruin", + "originalTitle": "天穂のサクナヒメ", + "overview": "Two realms exist in the ancient land of Yanato: the Lofty Realm, where gods reside, and the Lowly Realm, where humans reside. Princess Sakuna was the daughter of the god of war and goddess of harvest, but she led a lazy life. One day, she is banished to Hinoe Island, the Isle of Demons. Stranded in a barren land, Sakuna sets out to slay demons and farm rice. Her new adventure begins!", + "posterPath": "/acj334nPMriYBPEiS2CuhCQDUXr.jpg", + "backdropPath": "/fh92RJLcHh6Odk6eE5w24fMOB22.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 14, + "popularity": 2.0557 + }, + { + "id": 67013, + "title": "The Highschool Life of a Fudanshi", + "originalTitle": "腐男子高校生活", + "overview": "Sakaguchi is a high school boy and also a \"fudanshi\" who loves boys-love stories. He hangs out with his friends, a fujoshi named Rumi, his gay friend Yūjirō, fellow fundashi Daigo, and his \"normal\" friend Nakamura.", + "posterPath": "/p3B27eOXibFnpSuaxDPhgOVc1wo.jpg", + "backdropPath": "/3yiFGRMDnlcRXnrTOOf6gWGE22A.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.344, + "voteCount": 16, + "popularity": 2.0535 + }, + { + "id": 74095, + "title": "Juni Taisen: Zodiac War", + "originalTitle": "十二大戦", + "overview": "Every 12 years, mercenaries with the highest caliber of brute strength, cunning wit, and deadly precision gather to participate in the Zodiac Tournament. Each warrior bears the name and attributes of one of the 12 animals of the Chinese zodiac. With their pride and lives on the line, they engage in vicious combat until only the victor remains.", + "posterPath": "/oIrzzvEo8ceLtw4NXVxNDwBcvO1.jpg", + "backdropPath": "/ctSc5ZR2C4SuzVjc9p0J8w0UFc1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2017-10-02", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 89, + "popularity": 2.0523 + }, + { + "id": 69284, + "title": "Fuuka", + "originalTitle": "風夏", + "overview": "Yuu Haruna, a loner and an avid Twitter user, has just transferred to a new school in Tokyo. He ends up befriending a unique high school girl named Fuuka Akitsuki, despite some initial conflict, and the two wind up forming a band together with their classmates. Their relationship becomes strained however when Koyuki Hinashi, Yuu's childhood friend who has become a popular idol, contacts Yuu on Twitter and attempts to rekindle long lost feelings.", + "posterPath": "/tjHDnl1qXieCBLxYfxItFe6E3b8.jpg", + "backdropPath": "/oWwSqmwnoKH5iBtpxoCveIJMEBW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-01-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 43, + "popularity": 2.0523 + }, + { + "id": 34723, + "title": "Jubei-chan the Ninja Girl: Secret of the Lovely Eyepatch", + "originalTitle": "十兵衛ちゃん ーラブリー眼帯の秘密", + "overview": "Jiyu Nanohana is modern highschool girl and unwilling heir to the Yagyu Jubei school of swordsmanship.", + "posterPath": "/lH7IwrE5vdWnA1TJYg7F9xt6JCy.jpg", + "backdropPath": "/dpMwWqTm3YF8oCvhF33r1rPdNSx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1999-04-06", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 5, + "popularity": 2.0521 + }, + { + "id": 44919, + "title": "Mobile Suit Gundam MS IGLOO", + "originalTitle": "機動戦士ガンダム MSイグルー", + "overview": "The year is Universal Century 0079. Oliver May is a technical officer in the Zeon 603rd Technical Evaluation Unit , in charge of testing new military technology. Stationed in the Jotunheim, a civilian transport ship that was converted into military use, Oliver must head into battle and experience the One Year War, only this time from the perspective of a weapon tester who struggles to make an impact on an evolving war during changing times.", + "posterPath": "/8nV8FNnM8HxU8bjQjlVS0wTgo1z.jpg", + "backdropPath": "/2YWYNmdZmhyP1ecviUMAraJtqD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10765 + ], + "genres": [ + "Animation", + "War & Politics", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-07-19", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 9, + "popularity": 2.0487 + }, + { + "id": 67710, + "title": "Servamp", + "originalTitle": "サーヴァンプ", + "overview": "When a stray black cat named Kuro crosses Mahiru Shirota's path, the high school freshman's life will never be the same again. Kuro is, in fact, no ordinary feline, but a servamp: a servant vampire. While Mahiru's personal philosophy is one of non-intervention, he soon becomes embroiled in an ancient, altogether surreal conflict between vampires and humans.", + "posterPath": "/ws1dZfIaptH3A6zeWC7ANIXDcLl.jpg", + "backdropPath": "/Fnh761DcUeN63mtyiJdKzW9uQu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 138, + "popularity": 2.0484 + }, + { + "id": 34110, + "title": "The♥Kabocha Wine", + "originalTitle": "The♥かぼちゃワイン", + "overview": "Shunsuke Aoba has just transferred to a new school and can’t wait to attend. Excitedly, he sprints to the school but, upon arrival, finds that no one is there. Unfortunately, Shunsuke didn’t know that his first day was a holiday, of all things. However, it seems that he is not the only one on campus. As he is about to eat his lunch, he meets a student named Natsumi. Shunsuke gives her some of his food, and the two strike up a conversation. Natsumi was born as a so-called SL girl, a particularly tall girl. She herself accepts her specialness but is rejected by many of her classmates. How will Shunsuke react to this? Will their initial friendship continue?", + "posterPath": "/zTLrvZZ5zsWILSpkMa1fzrNDbp7.jpg", + "backdropPath": "/jIG83PgjAZn9j0WojAShPvUvL2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1982-07-05", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 5.833, + "voteCount": 6, + "popularity": 2.0473 + }, + { + "id": 244672, + "title": "Why Does Nobody Remember Me in This World?", + "originalTitle": "なぜ僕の世界を誰も覚えていないのか?", + "overview": "In a world where humans triumphed in a great war, Kai guards sealed crypts containing their enemies. But when “World Rebirth” overwrites history, he’s thrust into an alternate reality where humanity lost the war and he’s been forgotten by everyone he knows. Now, this lost hero must rise to restore the world’s balance!", + "posterPath": "/vAezbCXT3h5TyWsNoF5CXIc5AhU.jpg", + "backdropPath": "/nxpzuqlmmrbJAAE0tvFHmhXeGjN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2024-07-13", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 17, + "popularity": 2.045 + }, + { + "id": 105468, + "title": "Happiness Charge Precure!", + "originalTitle": "ハピネスチャージプリキュア!", + "overview": "The ruler of the evil Phantom Empire, Queen Mirage, begins her invasion on Earth using an army of Choiarks and powerful monsters called Saiarks. All across the world, Pretty Cures are dispatched to fight against the Phantom Empire threat. Hime Shirayuki, a princess from the Blue Sky Kingdom, which was taken over by the Phantom Empire, joins the fight as a Pretty Cure named Cure Princess, but always finds herself running away scared. Given a Crystal of Love by the Spirit of Earth, Blue, and told to seek out a partner to fight alongside her, Hime goes to the city of Pikarigaoka and randomly throw the crystal in the air, deciding to partner up with whoever it lands upon. This person turns out to be Megumi Aino, a kind-hearted girl always looking to help others, who is recruited by Hime to fight by her side as Cure Lovely.", + "posterPath": "/nvi9BLlnB4IA0qr28RVFVRf5Lnn.jpg", + "backdropPath": "/4A7QA1JF1hpJJK8lg5bf6Ls13G3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10762, + 10751, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Kids", + "Family", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-02-02", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 9, + "popularity": 2.0443 + }, + { + "id": 123684, + "title": "KAGINADO", + "originalTitle": "かぎなど", + "overview": "This is the story of a small miracle. Stars from different universes and different times that were never meant to cross paths. By irony of fate, these stars come together in “Kaginado Academy”. What awaits them there is a lively school life full of hope and dreams. The wonderful encounters provide the stars with new radiance. What awaits beyond that radiance...?", + "posterPath": "/vjD7y51lFYcnxRqaOZesawe5oYu.jpg", + "backdropPath": "/6BPh9lPOqyzenBTFlDUqDl6Fgh4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-10-13", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 10, + "popularity": 2.043 + }, + { + "id": 61970, + "title": "Ben-To", + "originalTitle": "ベン・トー", + "overview": "You Sato is a new high school student living in the dorms. While seeking cheap eats at the local market he finds himself beat up and semi-conscious with fleeting glimpses of a girl during the moments of his collapse. As his memories recover the next day, he discovers that trying to purchase half priced lunchboxes can be hazardous to his health as free-for-all fights with local students for the discounted food is the nightly routine. The girl from the night before, Sen Yarizui, is an upper classmate known as the Frozen Witch and is one of the local Wolves who dominates the area. She educates him on the rules of the game where Wolves eat well while Dogs settle for cup ramen. With fellow first year student Hana Oshiroi, a fetishistic germaphobe, You Sato sets out to discover if he too has what it takes to be a Wolf and taste the sweet victory of half priced boxed banquets or wallow in the bitter defeat of reconstituted noodles and salty broth in a styrofoam bowl.", + "posterPath": "/lKg5GQu5YKJsaN0QJEm5kS16OKx.jpg", + "backdropPath": "/8H9TgfbnQuXmX9WGqnxvcXdMcut.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2011-10-04", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 134, + "popularity": 2.0371 + }, + { + "id": 32871, + "title": "Supernatural: The Anime Series", + "originalTitle": "SUPERNATURAL:THE ANIMATION", + "overview": "The anime re-imagining of the original live-action series follows the Winchester brothers Sam and Dean as they hunt creatures and other supernatural phenomena in the American countryside. The storyline covers the first two seasons of the live-action version, as well as original episodes.", + "posterPath": "/4dHiX4cui1Zk0d6nwONSx3jQ8Zf.jpg", + "backdropPath": "/sVoc8UkF2a0SJOsMDGad0Kv8p4m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-01-12", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 255, + "popularity": 2.0358 + }, + { + "id": 214547, + "title": "My Clueless First Friend", + "originalTitle": "事情を知らない転校生がグイグイくる。", + "overview": "One lonely, gloomy fifth-grade girl is the target of her classmates' relentless bullying and teasing—that is, until a new kid arrives on the scene. Friendly Takada is as clueless as he is well-meaning, but somehow he possesses the magic ability to start drawing \"Grim Reaper\" Nishimura out of her shell. As the elementary schoolers experience all the fun of a childhood summer together—from going to the pool to picking sunflowers to watching fireworks—an unusual friendship blossoms!", + "posterPath": "/vgUQaunqSLmTtU38VmRntz8aVsN.jpg", + "backdropPath": "/kw8lD8gtkTzxX0rNfr4x5onQ2MY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2023-04-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 22, + "popularity": 2.0349 + }, + { + "id": 45982, + "title": "AKB0048", + "originalTitle": "AKB0048", + "overview": "AKB0048, sometimes stylized AKB∞48, is a 2012 Japanese anime television series based on the popular AKB48 idol group. The anime is produced by Satelight, with Shōji Kawamori as chief director and writer. The first season aired in Japan between April and July 2012 whilst the second season aired between January and March 2013.", + "posterPath": "/lRTmEAerrjdBEqGzRA8y1lp8BoF.jpg", + "backdropPath": "/51BIpXLgtquLTblKyjCIG0mPfW7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-29", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 19, + "popularity": 2.0343 + }, + { + "id": 42982, + "title": "Infinite Ryvius", + "originalTitle": "無限のリヴァイアス", + "overview": "An act of sabotage has sent a space station plummeting towards a dangerous phenomena known as the Sea of Geduld. With only hours to spare before the collapse of the entire station, a group of teens, training on-board the ship will seek safety aboard the Ryvius, an interstellar spacecraft hidden deep inside the station. With the adult crew and instructors dead, these young astronauts must rely on their training, courage and most importantly each other to prepare for the journey home.", + "posterPath": "/ylYb74MNy49fdcvY7s3X0seEhWE.jpg", + "backdropPath": "/2bgj7Np0T0ye9cJ19TFuKDEqagg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-10-10", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 13, + "popularity": 2.0326 + }, + { + "id": 31712, + "title": "Pumpkin Scissors", + "originalTitle": "パンプキン・シザーズ", + "overview": "Pumpkin Scissors is a manga created and authored by Ryotaro Iwanaga. Originally serialized in Magazine GREAT in 2002 it was later moved to Monthly Shonen Magazine in October 2006. The manga has been licensed by Del Rey. An anime adaptation of Pumpkin Scissors has been released, produced by Gonzo and AIC, which began airing on October 2, 2006 across several Japanese television stations and ended with the 24th episode on March 19, 2007. The series was originally licensed to the North American market by ADV Films for $780,000. In 2008 it became one of over thirty titles transferred from ADV Films to FUNimation, the main distributor of anime in the English speaking world.", + "posterPath": "/56MIZgVKGDMo25NNuVspQmDrF0D.jpg", + "backdropPath": "/2de33LCNRqLrIHsXBIfoZTLzdmV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-10-02", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 15, + "popularity": 2.0322 + }, + { + "id": 34696, + "title": "Yozakura Quartet", + "originalTitle": "夜桜四重奏", + "overview": "In Sakurashin, humans and demons live side by side in peace. But when a series of strange events threatens the delicate balance of their town, it will be up to four superpowered teens to restore order and save the day!", + "posterPath": "/42U33MsbJGhiaxh1pF3sgMG10UG.jpg", + "backdropPath": "/raLJlKgiFER3pYGSefzIoh8PviQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2008-10-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 11, + "popularity": 2.032 + }, + { + "id": 262929, + "title": "Apocalypse Hotel", + "originalTitle": "アポカリプスホテル", + "overview": "Following the collapse of civilization, one storied hotel stands among the ruins of Tokyo’s Ginza district. Overrun by nature, this lone hotel continues to defy humanity’s collapse. Current guests: zero. Check-ins scheduled today: zero. Yesterday’s website traffic: zero. Enter with caution in this story of survival and mystery in a world where the memory of humanity begins to fade.", + "posterPath": "/nyoCfoSrHRsrgholvTOqZug0zSN.jpg", + "backdropPath": "/cSTqAOPhuApXcAzn2SoBo2Ffral.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2025-04-09", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 9.154, + "voteCount": 13, + "popularity": 2.0304 + }, + { + "id": 61423, + "title": "When Supernatural Battles Became Commonplace", + "originalTitle": "異能バトルは日常系のなかで", + "overview": "A group of five boys and girls suddenly acquire supernatural powers. Ready to fight in galactic battles to defend human cause… they are struck by the realization that there are no wars, no conspiracies, no evils empires, no nothing in their high school life. They instead decide to idly have fun by wasting their powers away.", + "posterPath": "/o0v3bMpC9u1ofg2uD439cr4j3et.jpg", + "backdropPath": "/v9Fq1xvjEbgNnpD1eIasJQ1rIGn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.907, + "voteCount": 43, + "popularity": 2.0294 + }, + { + "id": 87461, + "title": "The Helpful Fox Senko-san", + "originalTitle": "世話やきキツネの仙狐さん", + "overview": "Like many hardworking members of the workforce, Kuroto Nakano is perpetually stressed out by his job. Still, since he lives alone, he must carry on to sustain himself. Little do humans like Kuroto know, this stress takes the form of darkness residing within a person's body and will bring one's life to ruin.\n\nFox deities can see this darkness and have the duty to save people before it is too late. To help rid Kuroto of his stress, Senko-san, an eight hundred-year-old foxgirl, volunteers to take care of him, and will do everything she can to ease the tension in his weary soul.", + "posterPath": "/pygu154QHVzb0Ro3PKTdFBKcdiY.jpg", + "backdropPath": "/nuvy1AUlGOqpMfNMg5PWb4HzvHB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 224, + "popularity": 2.0287 + }, + { + "id": 61462, + "title": "Sakura Trick", + "originalTitle": "桜Trick", + "overview": "Haruka Takayama and Yū Sonoda were inseparable during middle school, but upon entering high school, they end up being seated on opposite sides of the classroom. Having to spend time with more friends, the two decide to make their relationship special by kissing each other in secret.", + "posterPath": "/lUV9pPrOp5E0k9ubgd9kdftombG.jpg", + "backdropPath": "/lrfx9KVxlmYpOpJRNOhj2i8P3VY.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2014-01-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.059, + "voteCount": 34, + "popularity": 2.0283 + }, + { + "id": 221301, + "title": "Pokémon Concierge", + "originalTitle": "ポケモンコンシェルジュ", + "overview": "Welcome to Pokémon Resort, a peaceful getaway for Pokémon to relax and have fun. Which adorable guest will the new concierge Haru befriend and help first?", + "posterPath": "/2LnImoYwynnbqrXBiRzdxEUspo8.jpg", + "backdropPath": "/mfalSGLVwkpupN7Zmj0m3x4xUlr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751 + ], + "genres": [ + "Animation", + "Family" + ], + "releaseDate": "2023-12-28", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.458, + "voteCount": 83, + "popularity": 2.0279 + }, + { + "id": 60672, + "title": "Recently, My Sister is Unusual", + "originalTitle": "最近、妹のようすがちょっとおかしいんだが。", + "overview": "A girl named Mitsuki Kanzaki lives with her step-brother Yuya after her mother remarries. One day, Mitsuki is possessed by the self-proclaimed spirit of a young girl, Hiyori Kotobuki. Hiyori (in Mitsuki's body) must fall in love with Yuya to move towards the \"Gates of Heaven.\"", + "posterPath": "/rkoE7RxkBXuTfGUA6HwQ1DQftDc.jpg", + "backdropPath": "/tZDrzly8FcXnz7bClaMYSEb7Fyy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 21, + "popularity": 2.0272 + }, + { + "id": 230288, + "title": "Protocol: Rain", + "originalTitle": "僕らの雨いろプロトコル", + "overview": "Shun Tokinoya is a high school sophomore who works at the FOX ONE e-sports cafe. He gives up his passion for gaming after losing his father in an accident. Upon hearing the cafe is in debt, Shun puts his guilt aside and assembles a team to compete in the Xaxxerion Championship. Together they face stiff competition to win the prize money. Watch Shun and his friends band together in epic battles!", + "posterPath": "/owYdO4nDxx1Uwo5O8QQGy08zstl.jpg", + "backdropPath": "/b4lTzRfDSF8z1CjeIsvasXKwaLX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 10, + "popularity": 2.02 + }, + { + "id": 87693, + "title": "Strike Witches: 501st JOINT FIGHTER WING Take Off!", + "originalTitle": "ストライクウィッチーズ 501部隊発進しますっ!", + "overview": "Strike Witches, the 501st Joint Fighter Wing girls, are back from battle and ready to relax as best they can! War with the deadly Neuroi won’t last forever, but one thing is certain, the war on laundry is eternal. Join these aerial combat cuties in a down-to-earth series highlighting the team’s hijinks between missions.", + "posterPath": "/aBMlhLUt4CxoskvFgqhmbLHO1S9.jpg", + "backdropPath": "/8OdrPtb1Y26E2khoLv1aFIqyGyI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 9, + "popularity": 2.0199 + }, + { + "id": 156218, + "title": "Lucifer and the Biscuit Hammer", + "originalTitle": "惑星のさみだれ", + "overview": "Everything about college student Amamiya Yuuhi is average: grades, looks and his blasé outlook on life. So what happens when he awakens one day to a talking lizard, who informs him that there is a gigantic hammer in outer space, poised to split the Earth into pieces, and requests his allegiance in the fight against the forces of evil? Pretend it never happened! Unfortunately for Yuuhi, a little bit of coercion in the form of a super-powered princess prevents him from returning to his mediocre life-as-usual.\n\nIn the adventure of his lifetime, Yuuhi will join forces with the unpredictable princess and seek out a motley crew of companions to fight back against an evil mage and his horrifyingly powerful homunculus before the Biscuit Hammer destroys the planet!", + "posterPath": "/aQP5nyfO0qNAX03rS1BDXlcXbx3.jpg", + "backdropPath": "/isDxdNdRCfTrmsNCWvrLKbUOtsa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.444, + "voteCount": 18, + "popularity": 2.0188 + }, + { + "id": 82738, + "title": "IRODUKU: The World in Colors", + "originalTitle": "色づく世界の明日から", + "overview": "Set in the city of Nagasaki, the story takes place in a world where a miniscule amount of magic remains in everyday life. Hitomi Tsukishiro is a 17-year-old descendant of a witch family who grew up with stale emotions, as she lost her sense of color at a very young age. Feeling sorry for her granddaughter's future, Kohaku, a great witch, sends Hitomi to past, the year 2018. Through exchanges with her 17-year-old grandmother and her club members, the story follows Hitomi's growth as a person.", + "posterPath": "/o8qXYSzDRJlWUCbMKttPvB7CDix.jpg", + "backdropPath": "/h1k6e1GIUE0MqIf818Hq3Ydysjf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 47, + "popularity": 2.0168 + }, + { + "id": 72737, + "title": "18if", + "originalTitle": "18if", + "overview": "Haruto Tsukishiro wakes up in a dream world dominated by strange and powerful entities called Witches. To survive, he gets the assistance of research professor Katsumi Kanzaki and a mysterious white-haired girl called Lily. With their help, Haruto must outsmart the witches and find a way to return to the real world.", + "posterPath": "/gvKKFv5aIYSAyRY0lCmcYvHqIsN.jpg", + "backdropPath": "/t59K2j343r4pCWPSCmwjL3RUnzh.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 11, + "popularity": 2.0144 + }, + { + "id": 230697, + "title": "Love Is Indivisible by Twins", + "originalTitle": "恋は双子で割り切れない", + "overview": "Jun Shirosaki’s love life takes a wild turn when he finds himself caught between the Jinguji twins—his childhood friends who are as different as night and day. Rumi, the older sister, pairs a boyish charm with a maiden’s heart, while Naori combines girlish looks with her deep love for otaku culture. As feelings grow and confusion mounts, Jun must navigate this unexpected love triangle next door.", + "posterPath": "/3Q8w7vkPG3byxJk8eUX5fnRtgTo.jpg", + "backdropPath": "/3DYvPcIeyXL69yw43CEPpnKXbEW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-07-10", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 15, + "popularity": 2.0114 + }, + { + "id": 210875, + "title": "ATRI -My Dear Moments-", + "originalTitle": "ATRI -My Dear Moments-", + "overview": "In the near future, a sudden and unexplained sea rise has left much of human civilization underwater. Ikaruga Natsuki, a boy who lost his mother and one of his legs in an accident some years earlier, returns disillusioned from a harsh life in the big city to find his old countryside home half-swallowed by the sea. Left without a family, all he has to his name is the ship and submarine left to him by his oceanologist grandmother, and her debts. His only hope to restore the dreams for the future that he has lost is to take up an opportunity presented to him by the suspicious debt collector Catherine. They set sail to search the sunken ruins of his grandmother's laboratory in order to find a treasure rumor says she left there. But what they find is not riches or jewels; it is a strange girl lying asleep in a coffin at the bottom of the sea, Atri. Atri is a robot, but her appearance and her wealth of emotions would fool anyone into thinking she's a living, breathing human being.", + "posterPath": "/6bQKMlHwRmGnvIRxDahl1r8WJkE.jpg", + "backdropPath": "/zwHdg4RWuAsCPHwcxOrOMTDGcKi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-14", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 19, + "popularity": 2.0112 + }, + { + "id": 94498, + "title": "Appare-Ranman!", + "originalTitle": "天晴爛漫!", + "overview": "During the back-end of the 19th century, the genius but socially awkward engineer Sorano Appare and the wise yet cowardly samurai Isshiki Kosame find themselves drifting in the sea between Japan and America. With no money, the duo decide to enter the Trans-America Wild Race to win the prize money so they can get home. The two encounter rivals, bandits, and challenges in the wilderness as they race through America, from the starting line in Los Angeles to the finish line in New York, in the steam-powered car they built.", + "posterPath": "/f0kYFyG8DmDlT8KBmfOTHDsOeKp.jpg", + "backdropPath": "/ujPuQ8VVHzpRhdhJZfR9phovbcf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2020-04-10", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.087, + "voteCount": 46, + "popularity": 2.011 + }, + { + "id": 94925, + "title": "Spriggan", + "originalTitle": "スプリガン", + "overview": "An ancient civilization's relics on Earth hold dangerous powers — it's up to ARCAM Corporation's Spriggan agents to keep them out of the wrong hands.", + "posterPath": "/xw3wplPpAweQG0Na1KmAdrx90lx.jpg", + "backdropPath": "/8v1flw4wcx1I7cIBxavaMsQqLou.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10768, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "War & Politics", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-06-18", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.708, + "voteCount": 60, + "popularity": 2.0102 + }, + { + "id": 123818, + "title": "Deaimon: Recipe for Happiness", + "originalTitle": "であいもん", + "overview": "Nagomu Irino returns to his Kyoto home for the first time in ten years when his father is hospitalized. Nagomu is eager to take over Ryokushou, the family's Japanese sweet shop, but he's instead asked to be a father figure to Itsuka Yukihira, the girl everyone calls the successor.", + "posterPath": "/208GQuV0Px9qTMQcrPo1QBb4baG.jpg", + "backdropPath": "/3dxRcmUj41YR5TQjgjNy9o8l5UR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-04-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 30, + "popularity": 2.0088 + }, + { + "id": 27167, + "title": "Lovely★Complex", + "originalTitle": "ラブ★コン", + "overview": "Love is unusual for Koizumi Risa and Ootani Atsushi, who are both striving to find their ideal partner in high school—172 cm tall Koizumi is much taller than the average girl, and Ootani is much shorter than the average guy at 156 cm.", + "posterPath": "/dpIlgXXGKZDG5jafeOURRuwCqrh.jpg", + "backdropPath": "/d2mXa6mhvAuMIZ89LL1FFGGv9KJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-04-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.35, + "voteCount": 160, + "popularity": 2.0078 + }, + { + "id": 34785, + "title": "H2", + "originalTitle": "H2", + "overview": "Kunimi Hiro is a high school student, who is forced to give up his ambitions as a professional baseball player due to a serious injury. Now at a new high school, Hiro gets involved with Haruko and her goals of reviving that school's baseball team. At first they must overcome the refusal of school principle, who still remembers a dishonorable defeat that the school's baseball suffered some ten years earlier. Even with permission to form a school baseball team, there are still the players to recruit and train, and the challenges of building a reputation of the team within the high school baseball circuit. This is a story of group of high school students and their love of the game of baseball. Hiro is national class pitcher and batter, with his best friend who is a catcher and with Haruko as the team manager, together they struggle to build a baseball team worthy of the national championship.", + "posterPath": "/ym0CSDFJg35Ye9TlG5RWhnzuNTS.jpg", + "backdropPath": "/hY75PtQd7i3IjzaYSyLmnkhjHRr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1995-06-01", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 6, + "popularity": 2.0075 + }, + { + "id": 61474, + "title": "Gonna Be the Twin-Tail!!", + "originalTitle": "俺、ツインテールになります。", + "overview": "Souji Mitsuka is a first-year high school student who is obsessed with twin-tails. One day, a beautiful girl from a parallel world named Twoearle, suddenly appeared in front of him and gave him the power to transform into the twin-tailed warrior Tail Red. With the Ultimegil organization attacking the planet, Souji now must fight in order to protect the peace on Earth.", + "posterPath": "/6ahyvuyYG3t92rAmol9RaBrAnlf.jpg", + "backdropPath": "/bemtxp3x5P02sw5wmQiYUG6judV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 8.031, + "voteCount": 48, + "popularity": 2.0041 + }, + { + "id": 43228, + "title": "Hanada Shounen-shi", + "originalTitle": "花田少年史", + "overview": "Hanada Shōnen Shi is a Japanese manga series written and illustrated by Makoto Isshiki about a mischievous young boy, called Hanada Ichiro, who attains the ability to see and talk to the supernatural after an accident to the back of his head. It was serialized in Mr. Magazine from 1993 to 1995. Hanada Shōnen Shi received the 1995 Kodansha Manga Award for the general category.\n\nIt has been adapted into a 25-episode anime series by Madhouse and premiered on NTV on October 1, 2002.\n\nThe series was adapted into a 2006 live-action film subtitled Ghosts and a Tunnel of Secrets by Shochiku.", + "posterPath": "/65xQIWb8O5nWKD5JPkZbHjPGADh.jpg", + "backdropPath": "/zdXjuaQf77Iy9j9VyfzNOduusIu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2002-10-01", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 8, + "popularity": 2.0038 + }, + { + "id": 78382, + "title": "Dream Fighter Wingman", + "originalTitle": "夢戦士ウイングマン", + "overview": "Kenta is a high school student obsessed with superheroes and anime, often seen running around in a costume of his own design called \"Wingman.\" One day as Kenta is walking to school, a girl from another world drops out of the sky. Princess Aoi escaped the villain Rimeru with the artifact known as the \"Dream Note\" which enables its possessor to create anything they desire by drawing or writing within its pages. Kenta soon discovers that his designs and notes on Wingman become reality and he in turn becomes his own creation.", + "posterPath": "/w5Tjlg0KxtBuBNUWtwgz1c8T77I.jpg", + "backdropPath": "/jTv5qbsQpubqNW5qqLDKFvEy6Bi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1984-02-07", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 5, + "popularity": 2.0016 + }, + { + "id": 62070, + "title": "Ghost in the Shell: Arise - Alternative Architecture", + "originalTitle": "攻殻機動隊 ARISE ALTERNATIVE ARCHITECTURE", + "overview": "The story follows Motoko Kusanagi, a highly skilled member of the military, whom upon meeting Daisuke Aramaki, a current chief of the Public Security Section 9, in less than desirable conditions struggles to clear her name whilst forming her own independent team with the highest priority under the sponsorship and guidance of the chief Aramaki himself. Alternative Architecture is a TV anime version of the Ghost in the Shell: Arise movies.", + "posterPath": "/9zTsKmbEkzeWLMb8LOwUcyFsOcr.jpg", + "backdropPath": "/71R1H3crMMHhIv48Cott4Q7RFwy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Crime", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 61, + "popularity": 2.0015 + }, + { + "id": 78459, + "title": "Okko's Inn", + "originalTitle": "若おかみは小学生!", + "overview": "", + "posterPath": "/jpa4RM0y3CKZNpn4Aj6MyZM3RqG.jpg", + "backdropPath": "/kaZYDC6PgbxWTDOw8GhZ8SGGtbD.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 6, + "popularity": 1.9993 + }, + { + "id": 108478, + "title": "Farewell, My Dear Cramer", + "originalTitle": "さよなら私のクラマー", + "overview": "With no soccer accomplishments to speak of during the entirety of Suou Sumire's junior high school years, the young wing gets an odd offer. Suou's main rival, Soshizaki Midori, invites her to join up on the same team in high school, with a promise that she'll never let Suou \"play alone.\" It's an earnest offer, but the question is whether Suou will take her up on it. Thus the curtain opens on a story that collects an enormous cast of individual soccer-playing personalities!", + "posterPath": "/iunaQYinM0b7gyfUuqLzhLyMWXb.jpg", + "backdropPath": "/pnHSFYcfp25gRaPILbAiXj3X3Dv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2021-04-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 3.9, + "voteCount": 8, + "popularity": 1.9985 + }, + { + "id": 209829, + "title": "The Family Circumstances of the Irregular Witch", + "originalTitle": "でこぼこ魔女の親子事情", + "overview": "When witch Alyssa found a baby on her doorstep, she didn’t expect her life to take a topsy-turvy turn. Despite her bewilderment, she names the child Viola and decides to raise her. Fast-forward 16 years, and her “daughter” Viola isn’t just taller—she’s towering! Join this bewitching duo in a hilariously chaotic journey of mistaken identities and supernatural shenanigans!", + "posterPath": "/pGXu03mb6HdNCn41pfi4mTxRSIU.jpg", + "backdropPath": "/wlWLmOmJSrkAn5qUDplr1Bpu0Ek.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 14, + "popularity": 1.9966 + }, + { + "id": 239853, + "title": "Grandpa and Grandma Turn Young Again", + "originalTitle": "じいさんばあさん若返る", + "overview": "Shouzou and Ine Saitou have been happily married for as long as they can remember. Even in their old age with wrinkles and cracking limbs, the strength of this love is evident in their precious bond. And then, one day, they wake up to find they are young again! Despite their newfound youthful and attractive bodies, Shouzou and Ine remain the same as ever.", + "posterPath": "/x2ne0Z2EoznP3S6kcXB8LFMM1lU.jpg", + "backdropPath": "/6Wes3yYbNyYFTLofoiPu3PT3fgS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 24, + "popularity": 1.994 + }, + { + "id": 107003, + "title": "Peach Boy Riverside", + "originalTitle": "ピーチボーイリバーサイド", + "overview": "\"This is a tale that took place long ago. There once lived an old man and an old woman. The old man went into the woods to cut down some grass and the old woman went to the river to... (You know the rest.) The ogres had finally been defeated, but apparently, there were more ogres living elsewhere, so Peach Boy crossed the sea... It was an amazing feat to defeat the ogres and a joyous feat that Peach Boy saved many lives. But the one thing that went wrong... Was that they had fun. This is nothing more than a \"What if\"... What if there was more than one peach that tumbled down the river?", + "posterPath": "/LgbUpJiaEDsMnbsnWioqjxbuaW.jpg", + "backdropPath": "/j0eWLnEq7QDrDJiGeeVdSqO1opI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-01", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 88, + "popularity": 1.9939 + }, + { + "id": 42873, + "title": "Strawberry 100%", + "originalTitle": "いちご100%", + "overview": "One day Junpei Manaka catches a glimpse of a beautiful girl... and her strawberry-print panties. For the first time in Junpei's life, he notices the opposite sex. It also helps that the mystery girl left behind a notebook, filled with a story that Junpei can't put down. Obsessed with this mystery girl, he isn't sure where to turn... shy bookworm Aya Tojo, whose name is in the notebook, or confident school beauty Tsukasa Nishino, who outright told him she was wearing strawberry-print panties.", + "posterPath": "/4KiyjGANlyMqnbB4CmAGHN2Ph0e.jpg", + "backdropPath": "/7etJxtpWqYs1qXuzCyaFrz1IP7e.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-04-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 15, + "popularity": 1.9922 + }, + { + "id": 9161, + "title": "Dirty Pair", + "originalTitle": "ダーティペア", + "overview": "The semi-coherent adventures of two teenage intergalactic private eyes, Kei and Yuri. Members of Trouble Consultant team 234, their code name is 'Lovely Angels'. However, they're better known – universe-wide, in fact – as the 'Dirty Pair', a moniker they're not fond of. Their arrival at the scene is always a source of hope and dread, since they always solve the case, but wherever they go, something gets destroyed, up to and including entire planets. Luckily for them – but not so much for the universe – there's typically some extenuating circumstances that support their oft-uttered phrase, \"It's not our fault\".", + "posterPath": "/4BFtwNhOio6LTP5WT1nRYRex3QA.jpg", + "backdropPath": "/pIteJ509NU00icNxGbi75zpqSVt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1985-07-15", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 36, + "popularity": 1.9921 + }, + { + "id": 95203, + "title": "Vlad Love", + "originalTitle": "ぶらどらぶ", + "overview": "Mitsugu Bamba is a high school girl who is crazy about donating her blood, to the point that she feels compelled to visit a local blood bank despite the unfriendly nurse. One day, Mitsugu encounters a beautiful girl there who looks like she has come from overseas. The girl is so pale that she appears ready to faint. Instead, she suddenly starts trashing the blood bank. The girl then loses consciousness and so Mitsugu takes her home...", + "posterPath": "/mxjMFbQg1bIlwUwkwMEyozANEIf.jpg", + "backdropPath": "/auJAOTb2iVavEpvY5ITjKtZoxre.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-02-14", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 13, + "popularity": 1.9907 + }, + { + "id": 46435, + "title": "Robotics;Notes", + "originalTitle": "Robotics;Notes", + "overview": "In 2019, Kaito Yashio and Akiho Senomiya are the sole members of the Robotics Club at Central Tanegashima High School in Kyushu, Japan. Kaito is a laid back student and a skilled gamer who is just trying to help Akiho, his childhood friend. She is an energetic positive-thinking girl who yearns to complete the ongoing project of the club: building a functional replica of Gunvarrel, the main robot of a once popular TV series. As they gather new members and try to assemble the robot, Kaito starts stumbling upon secret reports that might reveal a conspiracy of large proportions. Unaware of what he is actually dealing with, Kaito little by little starts discovering clues laid by the mysterious Ko Kimijima.", + "posterPath": "/gYqNzVZlueK8FoGlAmz8h3k9XMC.jpg", + "backdropPath": "/uhUgDC8NAjLw64TZaEsb3wt9AUu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-12", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 21, + "popularity": 1.9905 + }, + { + "id": 34709, + "title": "Requiem from the Darkness", + "originalTitle": "京極夏彦 巷説百物語", + "overview": "Momosuke is a young man with a dream: to travel Japan and collect one hundred stories. He journeys from place to place, searching for tales of the paranormal and bizarre, hoping to collect tales to publish in his book. However, the calm of Momosuke's life soon is shattered by a chance meeting with three sinister beings: Mataichi the priest, Nagamimi the bird-caller, and the beautiful Ogin. Soon, Momosuke learns that there might be more to his newfound comrades than first meets the eye...", + "posterPath": "/mzHAq3IzCnzzjZrj42DnbbIpeG.jpg", + "backdropPath": "/93bKVCDs3BZRX4TPpddJQWYVVpd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-03", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 9, + "popularity": 1.9888 + }, + { + "id": 60868, + "title": "Walkure Romanze", + "originalTitle": "ワルキューレ ロマンツェ", + "overview": "Horses dashing gallantly... Knights challenging their own limits... Magnificent, heroic battles highlight the horseback lance sport of jousting. One of the many people fascinated by this proud sport, Takahiro Mizuno, acts as a begleiter (an assistant) to jousting knights as he lives his rather tedious life at Winford Academy.", + "posterPath": "/jlwUoN2lLWZzSWvfG7r7XVgNU1r.jpg", + "backdropPath": "/6afN7lQPDLlaWY0ZOJy7mtf4awf.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.781, + "voteCount": 16, + "popularity": 1.9884 + }, + { + "id": 77722, + "title": "Caligula", + "originalTitle": "Caligula-カリギュラ-", + "overview": "Mobius is a perfect digital world for the imagined benefit of humanity by μ, a virtual idol program that attained sentience and self-awareness. Only humans who are suffering in the real world and strongly relate to μ's songs are lured into Mobius. Once they enter, people often forget that the real world exists. Regardless of age or gender, they are turned into students and forced to experience school life over and over, which μ considers \"the most radiant time in a person's life.\"", + "posterPath": "/epAhPqfiRoyIxeNpldQ6bZ1YZuO.jpg", + "backdropPath": "/2EQHaIfyPoGQB8sA1mq8UFpTDP0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 12, + "popularity": 1.987 + }, + { + "id": 79288, + "title": "Planet With", + "originalTitle": "プラネット・ウィズ", + "overview": "Sōya Kuroi has dreams of people with superpowers fighting a massive dragon in the sky, but his real life is almost as weird. He's had amnesia for about two weeks and been taken in by a maid and an anthropomorphic cat. When a UFO in the shape of a stuffed bear approaches Sorimasaka City and other metros around the world, he's startled to see seven rainbow-sparkling heroes zoom out to confront it – just like in his dream. Even weirder, the maid wants him to leave his shelter to confront these heroes and take the source of their power.", + "posterPath": "/5OogZKfGrU50Q9JlOh7vhwUrHxc.jpg", + "backdropPath": "/8zeYAbNrTL1jcP9rd3hVgjLGsX8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-07-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.333, + "voteCount": 9, + "popularity": 1.986 + }, + { + "id": 114202, + "title": "Selection Project", + "originalTitle": "SELECTION PROJECT", + "overview": "A group of nine determined girls enter the 7th Annual “Selection Project,” a television show where they’ll audition to become idols…and pursue their dreams!", + "posterPath": "/kZsNPggW59mKcy5tEkuMRd5TkGF.jpg", + "backdropPath": "/oBGjtppZsQdIzWnXIqEw8VxL0nv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-10-01", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 9, + "popularity": 1.9853 + }, + { + "id": 34749, + "title": "Hand Maid May", + "originalTitle": "HAND MAID メイ", + "overview": "Saotome Kazuya is threatened with a computer virus. Trying to stop the virus, he makes a special order. May is a cyberdoll that arrives at his door a few minutes later and she is 1/6th the size of a normal person.", + "posterPath": "/k1XbnKx8AXcjaDStLhzpZZQDYo4.jpg", + "backdropPath": "/cA6dFqEb1FgX4NXOWZdFKlHU4g2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2000-07-26", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 7, + "popularity": 1.9851 + }, + { + "id": 46092, + "title": "Sky Girls", + "originalTitle": "スカイガールズ", + "overview": "In the future, Earth is at war with aliens. This heralds the creation of a mecha unit called the Sonic Divers, piloted by three girls to counter the threat.", + "posterPath": "/3Doo8lW1Vi1ZfJw3KRACEDLl0aN.jpg", + "backdropPath": "/tQR7byfpQZBIwU11BsR7wT6h98B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2007-07-05", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 5, + "popularity": 1.9755 + }, + { + "id": 26935, + "title": "Ceres: Celestial Legend", + "originalTitle": "妖しのセレス", + "overview": "Aya Mikage and her twin brother Aki are soon driven apart by the forces of fate…\n\nOn their sixteenth birthday, Aya and Aki are called to the family home to be given a special present. What they thought was a birthday party, however, was really a test—one which Aya failed. She was found to possess the reincarnated spirit of an ageless celestial maiden (tennyo), one bent on the recovery of her heavenly raiment (hagoromo) and the destruction of the Mikage family. Aya quickly finds herself separated from her beloved brother, and hunted by her own family.", + "posterPath": "/5FZ2K6QGVgbfI6ZwaSVJY8wb0A9.jpg", + "backdropPath": "/u2ADeTD0B7dyC4L57go5HrtCAaq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2000-04-20", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 13, + "popularity": 1.9734 + }, + { + "id": 115312, + "title": "The Honor at Magic High School", + "originalTitle": "魔法科高校の優等生", + "overview": "A century has passed since magic - true magic, the stuff of legends - has returned to the world. It is spring, the season of new beginnings, and a new class of students is about to begin their studies at the First National Magic University Affiliated High School, nickname: First High.\n\nIt follows the events of the original series as seen through the eyes of Shiba Miyuki, Tatsuya's sister. The life of an honor student comes with a lot of expectations...and unexpected hidden feelings?!", + "posterPath": "/p5KpzUYxwbqpJMzJBrgLEdSvrA7.jpg", + "backdropPath": "/hqalGitZD9f2bOlmRUBd5MoIQqH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 23, + "popularity": 1.973 + }, + { + "id": 92599, + "title": "Babylon", + "originalTitle": "バビロン", + "overview": "Zen Seizaki is a prosecutor with the Tokyo District Public Prosecutors' Office. While investigating illegal acts by a certain pharmaceutical company, Seizaki stumbles upon a page stained with a mixture of blood, hair and skin, along with the letter \"F\" scribbled all across the sheet. As he investigates further, the case goes beyond Zen's imagination and becomes vastly complex, challenging his sense of justice and his knowledge of the truth.\n\nDigging deeper into the investigation, Zen begins to uncover a concealed plot behind the ongoing mayoral election and ties to many people of interest involved in the election and those closer than he thinks. The case grows more severe and propels Zen into an unforeseen hurricane of corruption and deceit behind the election, the establishment of the Shiniki district, and the mysterious woman associated with it all.", + "posterPath": "/sPui8oETvkX3K9c3YHjVMhUiBdV.jpg", + "backdropPath": "/cD2HK3jBQ2DQmegqppLpW5psPLx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery", + "Crime" + ], + "releaseDate": "2019-10-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 34, + "popularity": 1.973 + }, + { + "id": 24458, + "title": "Bamboo Blade", + "originalTitle": "バンブーブレード", + "overview": "It didn’t take long for pint-sized Tamaki’s lightning reflexes to catch the eye of starving Kendo instructor Toraji. This second-rate sensei is an embarrassment to the sport, and his Kendo club is running out of members. His only hope for redemption – and a full belly – is to get Tamaki to sign-on as his star pupil. Unfortunately, this sword-wielding prodigy is a serious anime addict, so it’ll be a challenge to get her to step away from the television and into the dojo. But once she feels like a part of the team, Tamaki will put down the remote and pick up her sword as Toraji turns his girls into a fearsome sisterhood of the bamboo blade!", + "posterPath": "/cvFiHofIahwA9h5d27wwsniEwlO.jpg", + "backdropPath": "/c8GTOXifwebl1ymKYlJie8vQPqr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2007-10-02", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.656, + "voteCount": 16, + "popularity": 1.9725 + }, + { + "id": 34164, + "title": "Haibane Renmei", + "originalTitle": "灰羽連盟", + "overview": "A dream of falling from the sky...and then birth. Rakka is born from a large cocoon into the Old Home, greeted by a group of females with small wings on their backs and shining halos above their heads. Soon Rakka’s own wings grow, a halo is placed on her head and she is told that she must work in the nearby town of Grie. She soon realizes that the town and the entire world they live in are confined behind the Wall, a tall, impenetrable wall that none except the mysterious Toga are allowed to exit.", + "posterPath": "/uSrIXnPIUkapk0JwMldDZTusl5O.jpg", + "backdropPath": "/sC7DcOOWmQ2WNEVDjLY0t8rEwqS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-10-09", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 115, + "popularity": 1.9724 + }, + { + "id": 91027, + "title": "Val x Love", + "originalTitle": "戦×恋", + "overview": "High schooler Takuma Akutsu has learned to accept his lonely lot in life and is content surrounded by his studies, but when the god Odin taps him to save the world alongside nine Valkyries fueled by intimacy, Takuma can say good-bye to his solitary existence.", + "posterPath": "/6TIEhcHYK8fLmgDKxrLE6tieEQQ.jpg", + "backdropPath": "/dBB79nqLmdSBR3u3DKwXMmmTiqI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765, + 80, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy", + "Crime", + "Mystery" + ], + "releaseDate": "2019-10-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 4.5, + "voteCount": 17, + "popularity": 1.9722 + }, + { + "id": 72508, + "title": "Convenience Store Boy Friends", + "originalTitle": "コンビニカレシ", + "overview": "Six high school boys hang out at a local convenience store where they talk about their daily lives. Haruki Mishima and Towa Honda are first year students looking forward to the high school experience. Alongside them, there’s Nasa Sanagi, the only member of the cooking research club. Natsu Asumi is a loner but has third year students, Mikado Nakajima and Masamune Sakurakoji, looking out for him.", + "posterPath": "/lbZS7fyGP9LO8BqP8K6Z1UACmpl.jpg", + "backdropPath": "/wKJYYP4cX51Z7FWhFaUWmPVFGk1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.75, + "voteCount": 12, + "popularity": 1.972 + }, + { + "id": 71618, + "title": "Aria the Scarlet Ammo AA", + "originalTitle": "緋弾のアリアAA", + "overview": "In the world of Hidan no Aria AA, there are special students called Butei who are authorized to carry weapons, investigate crimes and solve various incidents. One of the best of these students is an S-rank second year at Tokyo Butei High School named Aria Kanzaki. On the opposite end of the scale is E-rank first year named Akari Mamiya.", + "posterPath": "/oEwQ3BmxrH9upzT6JKREDiOyPQg.jpg", + "backdropPath": "/ao3GUgdQ2i8quiHsLnliVTz8YFo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2015-10-06", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 22, + "popularity": 1.9716 + }, + { + "id": 205672, + "title": "Fluffy Paradise", + "originalTitle": "異世界でもふもふなでなでするためにがんばってます。", + "overview": "When this overworked office lady finally meets her maker, she's reborn with an adorable ability. Midori is reincarnated in another world as a young girl, Nema, and must help decide if the humans there should continue to exist. In return, she gains the power to be loved by all nonhuman creatures. From fantasy beasts to mythical monsters, she’s free to pet any animal to her heart's content!", + "posterPath": "/gRUPoUZ1M5jGcIzlKdHpOSvRwyh.jpg", + "backdropPath": "/gv4dkqzagZYxDlWPIQco5lEH1up.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 15, + "popularity": 1.9713 + }, + { + "id": 106342, + "title": "I Want to Be His Prey!", + "originalTitle": "オオカミさんは食べられたい", + "overview": "Having a run in with the \"skirt bandit,\" Ookami almost has her skirt stolen. Her teacher, Akagashira, passes by and becomes her hero after stopping the theft. As thanks, Ookami invites Akagashira to her home, but she has another reason for bringing him over.", + "posterPath": "/iRwRV4CzpC6KyW7WbE9OsjICIlD.jpg", + "backdropPath": "/tgxwnRw5cgjMnNXOjb7sYt5Yxyq.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2020-09-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 4.933, + "voteCount": 15, + "popularity": 1.9706 + }, + { + "id": 61755, + "title": "WATAMOTE ~No Matter How I Look at It, It's You Guys Fault I'm Not Popular!~", + "originalTitle": "私がモテないのはどう考えてもお前らが悪い!", + "overview": "Fifteen year old Kuroki Tomoko has dated dozens of boys and is easily the most popular girl around-- inside her dating games. In reality, she gets tongue tied just talking to people, and throughout middle school she's only had one actual friend. As she enters high school, she desperately wants to be popular, but doesn't understand that real-life doesn't work like her games. Her artificial successes pave the way to real folly and failure. But why drop this strategy when there's always someone else to blame?!", + "posterPath": "/ykhZOdUjdpFuQZqnN4QVWlTjX6o.jpg", + "backdropPath": "/4gbI5yL530Y1LNUE2ir4ZeqmCVw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2013-07-09", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 317, + "popularity": 1.9701 + }, + { + "id": 45125, + "title": "Btooom!", + "originalTitle": "BTOOOM!", + "overview": "Sakamoto, an unemployed young man, is one of the world's top players of an online fighting game called Btooom! One day, he wakes up on what appears to be a tropical island, although he doesn't remember how or why he got there.", + "posterPath": "/9WGXIXqq1Y12KyfxEVmtaDe9b1H.jpg", + "backdropPath": "/xNNplu208Twucpf8MgnqHysYPg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-04", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 221, + "popularity": 1.9695 + }, + { + "id": 133282, + "title": "Magical Destroyers", + "originalTitle": "魔法少女マジカルデストロイヤーズ", + "overview": "Freedom of expression is threatened when a mysterious group, the SSC, destroy Japan’s otaku culture. However, a young revolutionary, Otaku Hero—who loves the culture more than anything—rises up. With the help of three rambunctious magical girls—Anarchy, Blue, and Pink—they’ll team up to create a world free of this oppressive rule. Be part of the rebellion to bring back fandom!", + "posterPath": "/roL5dyZ3agHhE6uDNp5HYI0lPAO.jpg", + "backdropPath": "/cXOnRnlOMmTrYAkQjZJiyBdKT9D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-04-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 20, + "popularity": 1.9692 + }, + { + "id": 69285, + "title": "Gabriel DropOut", + "originalTitle": "ガヴリールドロップアウト", + "overview": "Gabriel White graduated at the top of the class at angel school and attends a human school on earth in pursuit of knowledge, but then gets engrossed in an MMO and decides it's too much trouble to go anywhere. Based on the manga by Ukami.", + "posterPath": "/dS5dut05RFNi3fOCn6iO31Eag9x.jpg", + "backdropPath": "/qyABrcOHxEK0k7CxNTrjPErB3Q0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-09", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.303, + "voteCount": 61, + "popularity": 1.9683 + }, + { + "id": 43384, + "title": "DNA²", + "originalTitle": "D・N・A² ~何処かで失くしたあいつのアイツ~", + "overview": "Karin, a DNA operator from the future, is on a mission to change the course of History by stopping Junta Momonari from becoming the Mega-Playboy who fathered 100 children and led to the overpopulation of the world. But Junta is no playboy; in fact he is allergic to girls. But when Karin shoots him with the wrong DNA-altering bullet, he starts sporadically becoming the Mega-Playboy capable of charming any woman. Karin must try to restore the situation to normal before the change to Mega-Playboy becomes irreversible.", + "posterPath": "/6JFx2Tzio2BId8ZUBdFlQpZUY2w.jpg", + "backdropPath": "/bgwuC5Xd9vz9xjoUqABUcqGFey6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-10-07", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 76, + "popularity": 1.9683 + }, + { + "id": 64699, + "title": "Beautiful Bones: Sakurako's Investigation", + "originalTitle": "櫻子さんの足下には死体が埋まっている", + "overview": "Shōtarō Tatewaki is a normal high school student with a serious demeanor hangs around with Sakurako Kujō. Sakurako is an extraordinarily beautiful woman in her mid-20s from a rich family who loves \"beautiful bones.\" The two live in the city of Asahikawa in Hokkaido, and they get involved in various incidents regarding bones.", + "posterPath": "/zZVY6Sx4mFOuWsWwOKXhyTrxYZy.jpg", + "backdropPath": "/Al6oe8ElrfownGUfq7LceCoNmzB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 9648, + 18 + ], + "genres": [ + "Animation", + "Crime", + "Mystery", + "Drama" + ], + "releaseDate": "2015-10-08", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 48, + "popularity": 1.9672 + }, + { + "id": 207567, + "title": "Pokémon: The Arceus Chronicles", + "originalTitle": "ポケットモンスター 神とよばれし アルセウス", + "overview": "While investigating the legend of the mythical Pokémon Arceus, Ash, Goh and Dawn uncover a plot by Team Galactic that threatens the world.", + "posterPath": "/wfToCZbH3pCLzAqIKu0RBL3v1ek.jpg", + "backdropPath": "/5X77Ep0wZLuxVuDhh5g7xJr3R9d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-21", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 38, + "popularity": 1.9665 + }, + { + "id": 114198, + "title": "Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier Than Real Life!", + "originalTitle": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "overview": "In an unexpected turn of events, dull high school student Hiro Yuuki obtains the full dive role-playing game Kiwame Quest. Created by the best of technology, the game claims to take \"reality to its extremes,\" from stunning graphics, NPCs' behavior, to the scent of vegetation, and even the sensation of wind brushing against the skin—everything was the result of an ultimate workmanship.\n\nExcept, the game is a little too realistic and messy to clear. Kiwame Quest features over ten quadrillion flags and reflects the players' real-life physical abilities in the game. Being hit in the game also hurts in real life and slash wounds take days to heal.\n\nThe only reward here is the sense of accomplishment. Conquer the most stressful game in history that can't be played casually!", + "posterPath": "/k4dMicD0xtMXVYKqrb0lunPuvLr.jpg", + "backdropPath": "/mJHSbFtVwYafbGYOuGueFrIqXYl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 111, + "popularity": 1.9661 + }, + { + "id": 46000, + "title": "Stray Cats Overrun!", + "originalTitle": "迷い猫オーバーラン!", + "overview": "Takumi lives with his older adoptive sister Otome, she manages a confectionery store called Stray Cats. One day, Otome finds a mysterious girl on the street.", + "posterPath": "/1HXPYehIZIccOZAGfvjlAizwJ1f.jpg", + "backdropPath": "/9ZlBXqeupF1R7MnjOQrrWMmvydN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-04-06", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 5.318, + "voteCount": 11, + "popularity": 1.9649 + }, + { + "id": 209649, + "title": "Am I Actually the Strongest?", + "originalTitle": "実は俺、最強でした?", + "overview": "After being a shut-in, Haruto is reincarnated as a baby. And amazingly, that baby is a prince! However, he's abandoned in a forest on the day he's born because of his low magic level... What will be the fate of Haruto, who was inadvertently given 1000 times the normal amount of magic by the goddess of reincarnation without anyone noticing?!", + "posterPath": "/og42meOPOiq37wUSfQV0lqb1U0Q.jpg", + "backdropPath": "/56APRYRS4NdgrezZNnV6csySWC0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 92, + "popularity": 1.9643 + }, + { + "id": 211093, + "title": "Giant Beasts of ARS", + "originalTitle": "アルスの巨獣", + "overview": "Jiro, who makes his living hunting beasts, encounters Kuumi, who is on the run, and saves her. As rumors spread regarding humanity and a mysterious experiment, they seek to discover the world’s secrets together.", + "posterPath": "/5MyHJxDQQdzaV290BlXyzR2VN6p.jpg", + "backdropPath": "/no9uH0TpquI6GrmmBcCU2kKRNYr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.875, + "voteCount": 16, + "popularity": 1.9637 + }, + { + "id": 67656, + "title": "Bananya", + "originalTitle": "ばなにゃ", + "overview": "Bananya is a series about the secret life of kitties who live in bananas.", + "posterPath": "/nkHA9QgrHLh3vEq4WL5itDZAiCt.jpg", + "backdropPath": "/eDcr92URnTb5EK5xkC4tylmE1JY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 22, + "popularity": 1.9619 + }, + { + "id": 22835, + "title": "Pollyanna", + "originalTitle": "愛少女ポリアンナ物語", + "overview": "Motherless since birth, Pollyanna was an ordinary happy-go-lucky girl, leaving peacefully with her father, the vicar. Then one day her life changes completely when her father dies and she has to live with her aunt whom she has never met before. In the beginning, she seems to be detested by her but as time passes, they develop a very strong bond.", + "posterPath": "/aI3qQHUn43g3ck4uWQfTX5aCyt1.jpg", + "backdropPath": "/klJeQYZ0Wo0PZrXodQaQt81Onby.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1986-01-05", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 6.222, + "voteCount": 9, + "popularity": 1.9602 + }, + { + "id": 34797, + "title": "Tokimeki Tonight", + "originalTitle": "ときめきトゥナイト", + "overview": "The main character, Ranze, is a junior high girl with troubles: her father is a vampire and her mother is a werewolf. Ranze has yet to manifest her supernatural powers, and her parents are beginning to get worried she might be normal. So begins the fantasy romantic comedy story.", + "posterPath": "/1fLwJGx0ldQfpsCbKQEcSD50f94.jpg", + "backdropPath": "/z1XBM5cEyi3Qx5CmcmWxgEgXCYk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1982-10-06", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 5, + "popularity": 1.9599 + }, + { + "id": 34102, + "title": "Planetes", + "originalTitle": "プラネテス", + "overview": "In the year 2075, mankind has reached a point where journeying between Earth, the moon and the space stations is part of daily life. However, the progression of technology in space has also resulted in the problem of the space debris, which can cause excessive and even catastrophic damage to spacecrafts and equipment.", + "posterPath": "/9L1iJl6lziuTFOP3pZGW6BxajXk.jpg", + "backdropPath": "/tGsCQXNI640U3OANRixQhOPPH3d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-04", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.92, + "voteCount": 75, + "popularity": 1.9594 + }, + { + "id": 61435, + "title": "Merman in My Tub", + "originalTitle": "オレん家のフロ事情", + "overview": "Tatsumi is a high school student who lives on his own, until a merman named Wakasa takes up residence in his bathtub. His solitary lifestyle is turned upside down by the self-centered (but handsome) new roommate.", + "posterPath": "/3FH1i49sHUnvL8ccgKvoaqY0tzo.jpg", + "backdropPath": "/nkwLklQrJuIQuMYvNJ7wG51RJNv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.176, + "voteCount": 17, + "popularity": 1.9588 + }, + { + "id": 53724, + "title": "Majestic Prince", + "originalTitle": "銀河機攻隊 マジェスティックプリンス", + "overview": "In the latter half of 21st century, humans leave the Earth and begin to live in space. In order to adapt to the environment in space and deal with the hostile aliens in Jupiter, genetically engineered children called \"Princes\" are artificially raised and trained to be pilots of armed robots \"AHSMB (Advanced High Standard Multipurpose Battle Device). This is a story about one of the teenage \"Princes\", Hitachi O Izuru, who studies in an academic city Grandzehle.", + "posterPath": "/wp0W1mYNaBP2TYIm7O9qj1oUvAN.jpg", + "backdropPath": "/qz6npNCW8FOglFHvz3ZFDbnvX8D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2013-04-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 7, + "popularity": 1.9567 + }, + { + "id": 121131, + "title": "Scarlet Nexus", + "originalTitle": "SCARLET NEXUS", + "overview": "Saved by the Other Suppression Force as a child, psychokinetic Yuito enlists in this elite team formed to fight Earth’s enemy. Meanwhile, prodigy Kasane was scouted for her abilities. Kasane’s dreams tell her strange things, dragging the two into an unavoidable fate.", + "posterPath": "/4GsBzKAPbHY7HjGRkAN0svRpIQI.jpg", + "backdropPath": "/ygJ9xAQIt83O1fiOsiHlRP8kTkf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-01", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 57, + "popularity": 1.9559 + }, + { + "id": 23956, + "title": "Treasure Island", + "originalTitle": "宝島", + "overview": "Jim Hawkins is a young boy lead by progressive events to embark on a search journey for the legendary treasure of the once dreaded pirate, Captain Flint. On their way to Treasure Island, John Silver, Jim's best friend, take over command of the ship revealing his true self as the ruthless pirate who once was the right hand of Flint himself. Feeling betrayed, Jim now has to deal with his mixed feelings and face Silver who still consider himself and Jim as friends. ", + "posterPath": "/oppcDycVry07Y0M9983aBall7hr.jpg", + "backdropPath": "/WAJMp3aSx7PZXwFw1haaaQGE4p.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1978-10-08", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 6.765, + "voteCount": 17, + "popularity": 1.9552 + }, + { + "id": 76047, + "title": "Today's Menu for the Emiya Family", + "originalTitle": "衛宮さんちの今日のごはん", + "overview": "Fate and food meet in a delicious and gentle world. It's nothing but ordinary meal scenes... Delicious meals are served at the Emiya's dinner table every day, through spring, summer, fall and winter. -- Let's see... what's for dinner today?", + "posterPath": "/Q1VYhcbcsIfCZ1NUlBKUygJYXt.jpg", + "backdropPath": "/c11GKHHa6x1e6GJKcF9z9cOu89i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-12-31", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 19, + "popularity": 1.9533 + }, + { + "id": 65356, + "title": "Ground Control to Psychoelectric Girl", + "originalTitle": "電波女と青春男", + "overview": "The story revolves around a highschool boy named Niwa Makoto. He lives with his aunt's family since his parents are away on business. It is there where he meets his mysterious cousin of the same age Touwa Erio — who happens to tie a futon mattress around her upper body and is a self-proclaimed alien. Her staple food is pizza. Erio had been missing for half a year and was found floating in the sea. She doesn't remember anything about what happened during that period of time, but she began to think that it was the act of an alien and wanders the neighbourhood wrapped in the futon.", + "posterPath": "/2gh4SOBjRkMe1fTnKIP9viM3jZB.jpg", + "backdropPath": "/3H96IZCk0balz3DsrJOVawUl8NA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-15", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 76, + "popularity": 1.9532 + }, + { + "id": 42902, + "title": "KUROKAMI The Animation", + "originalTitle": "黒神 The Animation", + "overview": "In this world, there are three identical-looking people in existence who split between them an energy-like force called Terra. This energy can be attributed to the amount of Luck or Life Energy that an individual possesses. There also exist beings who observe the human world, maintaining the balance (Coexistence Equilibrium) of Terra. These beings possess abilities that surpass those of normal human beings. They live in hiding in places known as Pure Places, in tribes. They are called the Terra Guardians. This is a tale of battle that begins with a chance meeting between a human boy named Keita and a young Terra Guardian girl named Kuro.", + "posterPath": "/aVtrOJOQ6mRZrM0JuG83Aie41xc.jpg", + "backdropPath": "/w99Fuv6Rm1r7PF1pqnC2gMYmH9u.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2009-01-08", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 12, + "popularity": 1.9524 + }, + { + "id": 31711, + "title": "GODANNAR!!", + "originalTitle": "神魂合体ゴーダンナー!!", + "overview": "Five years ago, while battling an alien force, pilot Goh Saruwatari first met Anna Aoi. Today, on the day of their wedding, the ceremony is interrupted when the aliens strike again.", + "posterPath": "/4k600KdSjhaHkTQ69lhW4IGACB.jpg", + "backdropPath": "/p8kIC75HSJP5ZUNclpFtvfQUVlA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-01", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 10, + "popularity": 1.9498 + }, + { + "id": 92835, + "title": "Stars Align", + "originalTitle": "星合の空", + "overview": "Constantly outperformed by the girls' club, the boys' soft tennis club faces disbandment due to their poor skills and lack of positive results. In desperate need of capable players, Toma Shinjou is looking to recruit, but he fails to do so. Enter Maki Katsuragi, a transfer student who demonstrates great reflexes when he catches a stray cat, Instantly capturing Toma's attention. Toma ambitiously asks Maki to join the team but is quickly rejected, as Maki doesn't wish to join any clubs. Toma refuses to back down and ends up persuading Maki - only under the condition that Toma will pay him for his club expenses.\n\nAs Maki joins the team, he immediately outshine the rest of the team. This gives rise to conflict among the team, Maki challenges his fellow team members to devote themselves to the game they once neglected.\n\nThis story focuses on the boys' soft tennis club and their discovery of their own capability, while also enduring the darker side of growing up in middle school.", + "posterPath": "/tMn8vTdo7PPF3kTPZg883SLRGy0.jpg", + "backdropPath": "/rWMTSMnTW2hJ7XS7ozmOYe60eRh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2019-10-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 84, + "popularity": 1.9492 + }, + { + "id": 12427, + "title": "Happy Lesson", + "originalTitle": "HAPPY☆LESSON", + "overview": "A 15-year-old Hitotose Chitose moves out of the orphanage back to his vacant parents' house and finds himself very alone and unhappy. But when five of his female high school teachers decide to move in with him to become his new mamas, he learns that the chaos of their constant attention and concern change his life for the better, if only to teach him about the very special meaning of being part of a family and enjoying a quiet moment.\n\nEach of his new mothers has something special to share with him; an artistic cosplay princess, a nurturing supportive homeroom mother, a rowdy athletic sports fanatic, a priestess (sword miko) high school nurse mother, and a quiet secretive (possibly mad) science teacher/mother. These five adoptive mothers accept not only Chi-kun, but also his two sisters...", + "posterPath": "/6SZojMO78M3nBTaeiIyh3BShPBe.jpg", + "backdropPath": "/6eSq2hwRgNxK4XQeKRlIPWNp2O4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2002-04-01", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 6, + "popularity": 1.9421 + }, + { + "id": 60805, + "title": "Brynhildr in the Darkness", + "originalTitle": "極黒のブリュンヒルデ", + "overview": "When he was a child, Murakami was friends with a girl he called Kuroneko. One day, while trying to prove the existence of aliens to Murakami, she is killed in an accident that he barely survives. Guilty of his role in the accident, Murokami decides to dedicate his life to proving that aliens exist. Then, one day, a new student with mysterious powers transfers into his class who not only looks a lot like Kuroneko, but is named Kuroha, Neko.", + "posterPath": "/A8O3GlJESEjfRnV72Ju50AjxjB.jpg", + "backdropPath": "/jCDntK32Cikixnu5Dk7yfAWUgHH.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.264, + "voteCount": 53, + "popularity": 1.9409 + }, + { + "id": 53726, + "title": "Mashiroiro Symphony: The Color of Lovers", + "originalTitle": "ましろ色シンフォニー -The color of lovers-", + "overview": "When boys suddenly get into places where they've never been allowed before, some girls tend to get upset. So when the decision is made to merge the elite Yuihime Girls' Private Academy and the coeducational Kagamidai Private Academy, everyone wants to take extra care in avoiding trouble while bringing the two Privates together. Therefore, rather than just bringing the Kagamidai boys into the Yuihime girls' school all at once, a plan is concocted in which a group of test males will be inserted into the Girls' Private Academy first.\n\nThus, poor young Shingo finds himself being thrown as a sacrificial lamb to the lionesses of Yuihime, who aren't exactly waiting for him with open arms. Will Shingo manage to survive the estrogen soaked death pit that is Yuihime? Can the girls learn to be more receptive to the boys? And just how long until something involving panties will cause emotions to flare, sparks to fly and the battle of the sexes to explode?", + "posterPath": "/hWCJ6cfEglN7elvABd52WnCu7o6.jpg", + "backdropPath": "/daFFVxF5yMSmp2IsvI6DlqCJUeh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2011-10-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.909, + "voteCount": 11, + "popularity": 1.9402 + }, + { + "id": 21918, + "title": "Full Moon", + "originalTitle": "満月をさがして", + "overview": "Mitsuki loves singing, but a malignant tumor in her throat has prevented her from pursuing her passion. However, Mitsuki's life turns around when two fun-loving Shinigami appear to grant her a temporary reprieve from her illness--and give her singing career a magical jump-start.", + "posterPath": "/1mtqoY3GrG2swj8wGbX5nLIviLM.jpg", + "backdropPath": "/rx4wIjiWoQV9zD81Jgv1LGQW5Zl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2002-04-06", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.75, + "voteCount": 12, + "popularity": 1.9398 + }, + { + "id": 27977, + "title": "Moyashimon", + "originalTitle": "もやしもん", + "overview": "Follow the life of Tadayasu Sawaki as he enrolls in an Agricultural University and learn about bacteria and viruses that he alone can see with the naked eye.", + "posterPath": "/A8swodH66BGLr8vLRFdZ4mQQvEN.jpg", + "backdropPath": "/qddzr6Czaa6SYV6sz6UqUg9BpAx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2007-10-12", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 16, + "popularity": 1.9389 + }, + { + "id": 153450, + "title": "Migi&Dali", + "originalTitle": "ミギとダリ", + "overview": "The boy's name was Hitori. A stork brought the angel into the lives of a middle-aged couple who were not blessed with children. His parents were kind, his house spacious, and his meals hot. But to protect the happiness he had received, Hitori continued to hide an important secret from his parents.", + "posterPath": "/oRWVGZ4k0DUPpIpzGuD6irKJJ1z.jpg", + "backdropPath": "/sTnKX862YdnrLzhtAlzqGIYoHZs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2023-10-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.765, + "voteCount": 34, + "popularity": 1.9371 + }, + { + "id": 13224, + "title": "Maple Town", + "originalTitle": "メイプルタウン物語", + "overview": "The adventures of Patty Rabbit and Bobby Bear, who live in the small utopian city of Maple Town.", + "posterPath": "/9nGLZM1Y7M60pxg8bR87GDsqSym.jpg", + "backdropPath": "/3R2U3E2h3ozGPxVmdUVGz1VJF8R.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1986-01-19", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 10, + "popularity": 1.9368 + }, + { + "id": 45282, + "title": "Inu X Boku Secret Service", + "originalTitle": "妖狐×僕SS", + "overview": "Protected by the highest security, the Maison de Ayakashi is rumored to be haunted, where only eccentrics could live. In reality, it is a place for humans with non-human ancestors to live. The socially-inept Ririchiyo has come here to improve herself. She meets secret service bodyguard Soushi, who is assigned to protect residents. He has a request of her: \"Please make me your dog.\"", + "posterPath": "/qKAvOUHGOKQ0sVoNMWEaDTrzukJ.jpg", + "backdropPath": "/tXLnqWhnCqrQSvexVW9JhStcZg3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-01-13", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 108, + "popularity": 1.9338 + }, + { + "id": 46033, + "title": "Samurai Harem", + "originalTitle": "明日のよいち!", + "overview": "Having been raised and trained for the past seventeen years as a traditional samurai 'bushi', Yoichi was surprised when his father suddenly announces that there nothing more that he could teach his son, but he arranges for Yoichi to continue training at a dojo owned by one of his fathers friends. So now, Yoichi must leave the tranquility of his remote rural mountain life and move to city to live with his fathers friend's family to continue his studies. And if learning how to cope with city life were not hard enough, he finds himself living with 4 beautiful sisters, and having to endure a ‘training’ regiment more severe than he could ever imagine...", + "posterPath": "/r4qpZOeQ3h6SwIB5qkuewwow3QM.jpg", + "backdropPath": "/sDPaIH831sCEw9czWPgjacLHx1b.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2009-01-08", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 41, + "popularity": 1.9333 + }, + { + "id": 24019, + "title": "Mamotte Shugogetten", + "originalTitle": "まもって守護月天!", + "overview": "Shichiri Tasuke's parents are always travelling around the world, so he basically lives alone. His life seems pretty boring and carefree until an artefact from China sent by his father makes a goddess appear: Shugogetten Shaorin is dedicated to protecting her master by summoning little spirits each with a unique power. If that is not enough, a second goddess appears: Keikounitten Ruaan, who can breathe life into objects. Her goal is to make Tasuke happy. Both goddesses are not very skilful though and cause a lot of trouble instead. Tasuke's peaceful and carefree days definitely seem to be over...\n\nSource: AnimeNfo", + "posterPath": "/8MOMbftJNzryitUTp3vo1VhaHS5.jpg", + "backdropPath": "/9jCUq8c9UG39QxspETO3iZ2elnG.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1998-10-17", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 5, + "popularity": 1.9318 + }, + { + "id": 88808, + "title": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "originalTitle": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "overview": "Just when Masato thought that a random survey conducted in school was over, he got involved in a secret Government scheme. As he was carried along with the flow, he ended up in a Game world! As if that wasn't enough, shockingly, his mother was there as well! It was a little different from a typical transported to another world setting, but after some bickering,\n\n\"Mom wants go on an adventure together with Maa-kun. Can mom become Maa-kun's companion?\"\n\nWith that, Masato and Mamako began their adventure as a mother and son pair. They met Porta, a cute traveling merchant, and Wise, a regrettable philosopher. Along with their new party members, Masato and co. start on their journey.", + "posterPath": "/w97kujliFaiddVCZhc2k2qJxkI0.jpg", + "backdropPath": "/4haPENUcDjwOKKxOw6xlxkOTWPm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-13", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.365, + "voteCount": 63, + "popularity": 1.9306 + }, + { + "id": 67800, + "title": "The Ancient Magus' Bride: Those Awaiting a Star", + "originalTitle": "魔法使いの嫁 星待つひと", + "overview": "A three-part OVA series that will tell a story that takes place before Chise meets Magus. Angelica sends Chise some magical supplies, including a gift. The gift turns out to be a book that Chise read in her childhood. Elias asks Chise to tell him the story behind the book. Chise tells him about Miura-san and the mysterious library she found in the forest when she was a child.", + "posterPath": "/bIRXLgdYU0egVmfxQZ4ZtEA2WSm.jpg", + "backdropPath": "/pjXffujvrhSYvoZcdV7RbeklxwL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2016-08-13", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 50, + "popularity": 1.929 + }, + { + "id": 20351, + "title": "Virtua Fighter", + "originalTitle": "バーチャファイター", + "overview": "Akira Yuki has spent years honing his skills under the guidance of his grandfather. Meanwhile, a nefarious robotics scientist, Eva Durix, desires to create the perfect soldier. Eva kidnaps Sarah Bryant, a close acquaintance of Akira and now he must now fight his way to Sarah to save her.", + "posterPath": "/y2FkPPjwn4OR9eB1fJa6iXEMHJd.jpg", + "backdropPath": "/5NYj5SZ3vpYl63IJDLg0q9wsgOU.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1995-10-09", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 1.9279 + }, + { + "id": 84666, + "title": "WATATEN!: an Angel Flew Down to Me", + "originalTitle": "私に天使が舞い降りた!", + "overview": "Miyako is a shy college student who is also an otaku. One day she happens to meet some angelic grade school kids! When Miyako sees her little sister's new friend Hana-chan, Miyako's heart won't stop racing! Miyako tries to get along with them but struggles... A sketch comedy all about trying to get along with the super cute girl is about to begin!", + "posterPath": "/gfmBwdDmUowytNOULstzLYPQl5X.jpg", + "backdropPath": "/hlsdjfAgSpY4wAATOsYQXhUG9HJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-01-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 109, + "popularity": 1.9277 + }, + { + "id": 80500, + "title": "Yozakura Quartet: Hana no Uta", + "originalTitle": "夜桜四重奏 ~ハナノウタ~", + "overview": "Hundreds of years ago, the borders between the worlds of humans and youkai temporarily overlapped, resulting in many residents of both crossing over to the other side. In the years since this event, the city of Sakurashin has become a central hub for all inter-dimensional affairs—a result of both the sacred Seven Pillars around the city serving as a beacon for the youkai, and the efforts of the Hiizumi Life Counseling Office in keeping the townsfolk happy. This office is composed of Hime Yarizakura, the young mayor of the city; satori Ao Nanami, who can read people's minds; half-youkai Kotoha Isone, who can summon anything by speaking a word; oni siblings, Kyousuke and Touka Kishi; and the office director Akina Hiizumi, who inherited his family's ability to force youkai back to their world.", + "posterPath": "/nFAWQUqu7FgePSLt4MaOtBpzEkM.jpg", + "backdropPath": "/8BjQ7iYIWwNHrlG8eOifwz6gDsF.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 16, + 10759, + 18 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2013-10-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 20, + "popularity": 1.9276 + }, + { + "id": 68403, + "title": "Girlish Number", + "originalTitle": "ガーリッシュ ナンバー", + "overview": "College student Chitose Karasuma is determined not to do boring things as she enters the adult world. To this end, this bad-mannered beauty barges into a facility that trains would-be voice actors and actresses, somehow landing a job at “Number One Produce,” a seiyuu agency managed by her older brother, Gojo. In Chitose's mind, she's poised for greatness, but finds herself at a loss when she continues to only get minor roles. As she clashes with other girls in the agency, including a cunning airhead and a girl with a Kansai accent, Chitose is about to learn that there's more to succeeding in this competitive industry than she imagined.", + "posterPath": "/qRc2keh1AJGlwqKvDtzFpzXTYsc.jpg", + "backdropPath": "/y0vHbB0lyJ0cOn1EbPt7jJUVilz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 16, + "popularity": 1.9268 + }, + { + "id": 61465, + "title": "Persona 4 The Golden Animation", + "originalTitle": "Persona4 the Golden ANIMATION", + "overview": " In the spring when the cherry blossom petals fall, Yū Narukami moves to Yaso Inaba to live with his uncle and cousin due to his family's circumstances. He transfers to Yasogami High School, where his event-filled school life begins. However, when serial murders begin occurring in the peaceful town, Yū is awakened to the power of his heart turned to physical form: A Persona. Within these new mysteries is Marie, a resident of the alternate world, the Velvet Room, who has no memories of her past. Together with his friends, Yū must solve all the riddles set in front of him and save Yaso Inaba from further violence.", + "posterPath": "/bLXHhl520rvw4uIJXAfZW7KQZ5U.jpg", + "backdropPath": "/sJEdi2wbLUVh5KP3xpciOk5zvkK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2014-07-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 15, + "popularity": 1.9216 + }, + { + "id": 34160, + "title": "Tico of the Seven Seas", + "originalTitle": "七つの海のティコ", + "overview": "Tico of the Seven Seas is a Japanese anime series by Nippon Animation. It is about a girl of eleven with her best friend Tico, a female orca.", + "posterPath": "/fURQGf0lJwzJz7I8iA70JopdpVt.jpg", + "backdropPath": "/e4uea3FDn8ORIjjUjlzwdZIfmPM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1994-01-16", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 5, + "popularity": 1.9215 + }, + { + "id": 62696, + "title": "OniAi", + "originalTitle": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "overview": "Adorable young Akiko is thrilled to be reuniting with Akito, the handsome older brother she hasn’t seen in years! In fact, she might be a little too excited about living under the same roof with her precious big bro. This pint-sized cutie has a serious brother complex, and she’s definitely not interested in sharing his attention. Unfortunately for little sister, she and Akito won’t be living alone: three gorgeous girls from the student council will be along for the ride! So much for the peaceful existence Akito was craving. Big Brother the dreamy will have to stay on his toes to avoid the advances of Sis and her ravishing rivals!", + "posterPath": "/gHaRoBJfNhzbzq6B0R4Gn4nq1lc.jpg", + "backdropPath": "/vceI7hiHAuWS35CLOe5HtZdEV4f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10749 + ], + "genres": [ + "Animation", + "Comedy", + "Romance" + ], + "releaseDate": "2012-10-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 21, + "popularity": 1.921 + }, + { + "id": 195924, + "title": "Shine On! Bakumatsu Bad Boys!", + "originalTitle": "ブッチギレ!", + "overview": "In an era when samurai ruled Japan, the Zomen no Oni wiped out all but one member of the Shinsengumi. A top-secret replacement operation is executed to protect the security of Kyoto—seven criminals are chosen as doubles to replace the Shinsengumi while being led by Ichibanboshi, whose parents were also killed by the Zomen no Oni. Now’s their time to shine the brightest!", + "posterPath": "/n52m4tqLLn6CsI5vXIMDCNQvhMz.jpg", + "backdropPath": "/xgh3QCuhNXuJhjQE93rSLAZxMre.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2022-07-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 14, + "popularity": 1.9206 + }, + { + "id": 89367, + "title": "Silver Fang: The Shooting Star Gin", + "originalTitle": "銀牙 -流れ星 銀-", + "overview": "Gin is a striped Akita-Inu puppy named after his silver coat. Shortly after being born, he watches his father, Riki, get killed by Akakabuto, a bear that terrorizes everything in his path. Being the third-generation of bear-dogs to try to stand up against Akakabuto, he ventures out to find dogs to join him in his fight against the demon bear.", + "posterPath": "/r73QVhM5n5G76IQaUsfqdySuDBc.jpg", + "backdropPath": "/c0AzWweIoWpHgYmqDrEF7Ddm84b.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1986-04-07", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 23, + "popularity": 1.9185 + }, + { + "id": 68411, + "title": "Cutie Honey", + "originalTitle": "キューティーハニー", + "overview": "One day, Honey Kisaragi's a trendy, class-cutting Catholic schoolgirl. The next, her father's been murdered by demonic divas from a dastardly organization called Panther Claw. When his dying message reveals that she's an android, Honey uses the transformative power of the Atmospheric Element Solidifier - the very thing Panther Claw wanted to steal - to seek revenge against the shadowy clan.", + "posterPath": "/waJoeBMcoteO6lBdvR1vMR1c6w6.jpg", + "backdropPath": "/91ylpXUOYzZhtKiqrSE4pmL7wol.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1973-10-13", + "releaseYear": "1973", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 1.9168 + }, + { + "id": 132917, + "title": "UNDER NINJA", + "originalTitle": "アンダーニンジャ", + "overview": "Thousands of ninjas live in secret across Japan. One underachieving ninja spends his days doing nothing — until he receives a special mission.", + "posterPath": "/uliIvGVI92s0C26jBOxaiSNUH1v.jpg", + "backdropPath": "/stZFUSfDrKxbViHSM96uoPjEjwA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2023-10-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 27, + "popularity": 1.9145 + }, + { + "id": 12260, + "title": "Cromartie High School", + "originalTitle": "魁!! クロマティ高校", + "overview": "Folks, meet Takashi Kamiyama. Enrolled at Cromartie High, where everybody is a delinquent, Kamiyama is apparently the only non-delinquent in the school. Logically, therefore, he must be the toughest in his class—by the rather twisted logic that only a really tough rabbit would lie down with lions. Thus begins a story that parodies every cliché of tough-guy anime that you've ever heard of, and some you haven't. Oh, and Freddie Mercury is in it, too.", + "posterPath": "/fap9ADMD1xVnz62rmnQerxzmFoy.jpg", + "backdropPath": "/loCWV5K7JEM7sshDaosJZ8xiLBy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2003-10-03", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 30, + "popularity": 1.9141 + }, + { + "id": 69212, + "title": "Giant Robo: The Day the Earth Stood Still", + "originalTitle": "ジャイアントロボ THE ANIMATION -地球が静止する日", + "overview": "Dr. Shizuma invented a revolutionary new form of renewable energy drive but had to pay a heavy price for his success in a catastrophic accident that the world wants to forget. 10 years later the secret organization Big Fire have obtained two of three mysterious Shizuma drives as part of their world domination plans. The third drive has however been taken by Dr. Shizuma who during his escape is saved by Giant Robo. A desperate struggle begins between the Giant Robo and Big Fire for the control of the last drive as Big Fire unleashes their ultimate weapon, the Eye of Volger.", + "posterPath": "/o6RAeajCWAw9BOCDuCZ2Ib1qSD.jpg", + "backdropPath": "/kGbEXpQziWvO9fIEPGjtogW6ekC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-07-23", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 9.8, + "voteCount": 6, + "popularity": 1.9119 + }, + { + "id": 76219, + "title": "Miss Monochrome - The Animation", + "originalTitle": "ミス・モノクローム -The Animation-", + "overview": "Miss Monochrome is an android who decides to try and become a top idol singer in the ever growing competitive market.", + "posterPath": "/pnJ9kX1a3TkCMEtABoknjnHWvOv.jpg", + "backdropPath": "/f3sqD7tbhVztzX2E1KLJ6SZb7f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-10-02", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 9, + "popularity": 1.9117 + }, + { + "id": 53809, + "title": "Mushibugyou", + "originalTitle": "ムシブギョー", + "overview": "The action story is set in Edo-era Tokyo in the early 1700s. The eighth shogun Tokugawa Yoshimune ordered boxes to be installed so commoners can submit their thoughts. After hearing their voices, the shogun creates a new magistrate unit — Mushibugyou — to protect the people in the heart of the city. Each member is a specialist with unique fighting skills.", + "posterPath": "/lgS1HRhGKcoMFgPb8YEoU0hvkQw.jpg", + "backdropPath": "/45d8n6t4w11J8z3lgT2lk6xizYi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2013-04-08", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.571, + "voteCount": 7, + "popularity": 1.9062 + }, + { + "id": 94277, + "title": "Woodpecker Detective's Office", + "originalTitle": "啄木鳥探偵處", + "overview": "A ghost was seen on the 12th floor of the Asakusa Juunikai building. A newspaper article featuring the sighting brought together Takuboku Ishikawa, who runs a private detective agency and his assistant Kyosuke Kindaichi to solve the case.", + "posterPath": "/hyVXsreVfLdMK25VI02DY8SuvVE.jpg", + "backdropPath": "/zdlcU789CQCXb133I00ubJjEmIw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2020-04-13", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 11, + "popularity": 1.906 + }, + { + "id": 72798, + "title": "My Mental Choices Are Completely Interfering with my School Romantic Comedy", + "originalTitle": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "overview": "High school student Kanade Amakusa suffers from a curse called \"Absolute Choice,” which requires him to select an action from a list of options that appear before him at random. Unfortunately, Amakusa’s choices are limited to the weird and perverse, causing him to become something of a social outcast at school. But when a sudden choice on the way home from school causes a beautiful girl to fall out of the sky, Amakusa might’ve found the key to break his curse for good!", + "posterPath": "/uGdBGOIPjBm1P7RRQeYekTrbLmb.jpg", + "backdropPath": "/sLQsNQ0fOhaODBMu6yQk11j7otu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-10-10", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 101, + "popularity": 1.9041 + }, + { + "id": 98748, + "title": "Listeners", + "originalTitle": "LISTENERS", + "overview": "Set in a world where the concept of music ceases to exist. the story begins when a boy encounters Myuu, a mysterious girl who possesses an audio input jack in her body. The two intermingle with the history of rock music and embark on an unforgettable journey.", + "posterPath": "/eUYgm7JQIDojyOSWc14yc1RTWzn.jpg", + "backdropPath": "/nLRvifyfmexpC7XeOZwn5Kta8EX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.098, + "voteCount": 41, + "popularity": 1.904 + }, + { + "id": 138190, + "title": "The Orbital Children", + "originalTitle": "地球外少年少女", + "overview": "In 2045, two children born on the moon and three kids from Earth try to survive after an accident on their space station leaves them stranded.", + "posterPath": "/6rOkpAOflfJs7AVAkp52QcusQzQ.jpg", + "backdropPath": "/a69AAQO2cHTYiR50Z8SmHwIF8rD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-28", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 74, + "popularity": 1.9022 + }, + { + "id": 24722, + "title": "Grenadier: The Beautiful Warrior", + "originalTitle": "グレネーダー ~ほほえみの閃士~", + "overview": "Rushuna is a very beautiful gun expert that travels through the world with one purpose which is to make the world a peaceful place by, instead of fighting with weapons, taking away the people's will to fight by giving them a smile. In this quest she meets Yajirou, a mercenary that joins her on the journey.", + "posterPath": "/jueGj7UiAeroFdPiRxchSLl7Sel.jpg", + "backdropPath": "/mKgsQGfNcXflFRaDgdkikeDmfLR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-14", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 12, + "popularity": 1.9021 + }, + { + "id": 74957, + "title": "All Purpose Cultural Cat Girl Nuku Nuku", + "originalTitle": "万能文化猫娘", + "overview": "Ryunosuke has an interesting life for a teen-aged boy. His mother runs a weapons company, his father is an incredible inventor that's on the run from his divorced wife. And his companion is schoolgirl/android with the brains of a cat he found on Christmas Eve while being attacked by his mom's crew.\n\nNuku Nuku was adapted from its manga origins a few times, and this one is the best and shortest of those attempts.", + "posterPath": "/zBTAjOGTUYCNIdpS6lEtBNEsQOO.jpg", + "backdropPath": "/r9xOLok6otHkLl7T7fSf79y5Ol3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-10-21", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 1.9013 + }, + { + "id": 27008, + "title": "Shangri-La", + "originalTitle": "シャングリ・ラ", + "overview": "The story of a young woman fighting for her survival in a real \"urban jungle.\" Only 18 years old, Kuniko Hojo finds herself at the heart of the battle for humanity's future when she discovers that the government which rules Atlas intends to continue marginalising the less-privileged masses outside the tower - by force, if necessary.", + "posterPath": "/6zqDAcSXqDeUHfJY1WviBBGicIt.jpg", + "backdropPath": "/vIYLynhAorGwICpBMuhO0TPDZyt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 10, + "popularity": 1.8998 + }, + { + "id": 69230, + "title": "Akiba's Trip The Animation", + "originalTitle": "AKIBA'S TRIP -THE ANIMATION-", + "overview": "Set in Akihabara, the shopping area has been invaded by creatures known as \"Synthisters\" who prey on the patrons of Akihabara, feasting on their social energy and will to live. These enemies can only be stopped by direct exposure to sunlight, meaning to defeat these synthisters their clothes need to be ripped off exposing them to sunlight.", + "posterPath": "/vHba6T5GKimojrXTLvEETDdFSr7.jpg", + "backdropPath": "/ttWM6AwMWsd0fCvtXJ2lnQ3IqEX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 30, + "popularity": 1.8996 + }, + { + "id": 75863, + "title": "HAKYU HOSHIN ENGI", + "originalTitle": "覇穹 封神演義", + "overview": "When his clan is wiped out by a beautiful demon, young Taikobo finds himself in charge of the mysterious Houshin Project. Its mission: find all immortals living in the human world and seal them away forever. But who do you trust—and whose side are you really on—when you've been trained to hunt demons by a demon?", + "posterPath": "/hF5wnFp60yl4rHMOP3g0zVCakxh.jpg", + "backdropPath": "/ciXaQ6Vd554y2HhzWsrnDuXU74C.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2018-01-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 1.8979 + }, + { + "id": 45283, + "title": "Tsuritama", + "originalTitle": "つり球", + "overview": "Yuki Sanada has always felt like a fish out of water. Socially awkward and anxious, he struggles to fit in with his surroundings and moves from town to town with his grandma. As he and his grandma settle into the charming seaside town of Enoshima, Yuki hopes for a fresh start. However, his reputation at school is jeopardized by the arrival of fellow transfer student Haru. The eccentric Haru immediately makes a splash, wildly claiming to be an alien and declaring that Yuki is his friend. Pairing the reluctant Yuki with their classmate and fishing talent, Natsuki Usami, he tasks both of them with the absurd mission of saving the world from a mysterious threat in the ocean. Mischief and hijinks ensue, as these three embark on a whimsical adventure filled with laughs, heart, and self-discovery!", + "posterPath": "/c9mY12KdTpksgqMR5PNKf2arehu.jpg", + "backdropPath": "/qmEv1X36WyNzGO0B02Eysf9PMai.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2012-04-13", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 7, + "popularity": 1.8969 + }, + { + "id": 94649, + "title": "Infinite Dendrogram", + "originalTitle": "インフィニット・デンドログラム", + "overview": "In the year 2043, Infinite Dendrogram, the world's first successful full-dive VRMMO was released. In addition to its ability to perfectly simulate the five senses, along with its many other amazing features, the game promised to offer players a world full of infinite possibilities. Nearly two years later, soon-to-be college freshman, Reiji Mukudori, is finally able to buy a copy of the game and start playing. With some help from his experienced older brother, Shuu, and his partner Embryo, Reiji embarks on an adventure into the world of Infinite Dendrogram.", + "posterPath": "/gIhhZsNwP9eVINc7WNOYmBo2Q4P.jpg", + "backdropPath": "/c26SiyLqlWeirNLpRn0JA2BCjRX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 36, + "popularity": 1.8947 + }, + { + "id": 99772, + "title": "Vampire in the Garden", + "originalTitle": "ヴァンパイア・イン・ザ・ガーデン", + "overview": "A vampire queen and a human girl join forces against all odds in search of “paradise” — a place where humans and vampires peacefully coexist.", + "posterPath": "/cL7AmuHxCwDCu8d3kX93NTEDhdw.jpg", + "backdropPath": "/7Iorh0CtvK85oX96BdP2jXziir5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2022-05-16", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.254, + "voteCount": 65, + "popularity": 1.894 + }, + { + "id": 68185, + "title": "Occultic;Nine", + "originalTitle": "Occultic;Nine", + "overview": "The \"paranormal science\" story follows nine idiosyncratic individuals, linked by the \"Choujou Kagaku Kirikiri Basara\" occult summary blog run by 17-year-old second-year high school student Yuuta Gamon. Little incongruities that occur around these nine eventually lead to a larger, unimaginable event that may alter what is considered common sense in this world.", + "posterPath": "/mMsd6UbYuASdvzzQqUm8LAv9MCu.jpg", + "backdropPath": "/5uhwtGjE3w9Wkk9pJuxt7GsPdHs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2016-10-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 29, + "popularity": 1.8937 + }, + { + "id": 74187, + "title": "TsukiPro the Animation", + "originalTitle": "TSUKIPRO THE ANIMATION", + "overview": "SOARA, Growth, SolidS, and QUELL are four groups belonging to Tsukino Entertainment Production (AKA TSUKIPRO). The slice of life music anime \"PRO ANI\" depicting their music overflowing with uniqueness and the drama surrounding their lives begins now! Will you open this glittering treasure box of music?", + "posterPath": "/v3l4ulbOLhZ238QmmY7E39LL08.jpg", + "backdropPath": "/sd4ZYddc1MNE4SBAwYk84DAad2c.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-10-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.9, + "voteCount": 7, + "popularity": 1.8936 + }, + { + "id": 45277, + "title": "Nakaimo: My Little Sister Is Among Them!", + "originalTitle": "この中に1人、妹がいる!", + "overview": "Is insanity hereditary? Shougo Mikadono's beginning to think so, because the terms of his late father's will seem crazy and following them may drive Shougo bonkers as well. Oh, it sounds simple at first: before Shougo can claim his VERY large inheritance, he just has to start attending a certain new school and find a nice girl to marry.\n\nIt's a little unromantic, but perfectly do-able, right? After all, all the girls seem quite friendly, so all Shougo has to do is find one he has something in common with. Except, and here's the kicker, it turns out that Shougo has WAY too much in common with one of them, because she's actually his long-lost sister! And he has no idea which one she is!\n\nWill Shougo meet and court his Miss Right without committing something very morally wrong? Can he find his future bride without slipping into the wrong set of genes? And if his little sister does reveal herself, just how much will be revealed and under what circumstances?", + "posterPath": "/y7U5YwTl88pUb5lr9xecPfPIc1S.jpg", + "backdropPath": "/4XhCA0UoGMz6RJw6LBwwGeNgwQ0.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Comedy" + ], + "releaseDate": "2012-07-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.432, + "voteCount": 22, + "popularity": 1.8929 + }, + { + "id": 37866, + "title": "Tokyo Magnitude 8.0", + "originalTitle": "東京マグニチュード8.0", + "overview": "There is an estimated 70% or higher possibility that a magnitude 7.0 earthquake will occur in Tokyo in the next 30 years. In 2012, Mirai, a middle school freshman girl, goes to Tokyo’s artificial Odaiba Island for a robot exhibition with her brother Yuuki at the start of summer vacation. A powerful tremor registering 8.0 on the JMA scale emanates from an ocean trench, the famed Tokyo Tower and Rainbow Bridge crumble and fall, and the landscape of Tokyo changes in seconds. With the help of a motorcycle delivery woman named Mari who they meet on Odaiba, Mirai and Yuuki strive to head back to their Setagaya home in western Tokyo.", + "posterPath": "/fIRYkOCNH18vF1ygXAtCVqqZZPc.jpg", + "backdropPath": "/dsAFteT3Ai6DbOJeSAcdCDM0UAx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2009-07-09", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 66, + "popularity": 1.8926 + }, + { + "id": 91455, + "title": "Azur Lane", + "originalTitle": "アズールレーン", + "overview": "When the \"Sirens,\" an alien force with an arsenal far surpassing the limits of current technology, suddenly appeared, a divided humanity stood in complete solidarity for the first time. Four countries formed Azur Lane, paving the way for the improvement of modern warfare, which led to an initial victory. However, this tenuous union was threatened by opposing ideals, dividing the alliance into two and humanity became fragmented once again.\n\nAs a seasoned and experienced fighter, the \"Grey Ghost\" Enterprise shoulders Azur Lane's hope for ending the war. But behind her stoic persona hides a frail girl, afraid of the ocean. Even so, she continues to fight as she believes that it's the only purpose for her existence.\n\nAmidst the neverending conflict within humankind, the keys that could unite a fragmented race might exist: a soldier coming to terms with her mysterious personality and camaraderie between those with different ideals.", + "posterPath": "/7k9GZBSjsQCwhYXeTGqPcStpjOF.jpg", + "backdropPath": "/xMMsFxhW8aid6AVnfHL3nSvOusA.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2019-10-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 97, + "popularity": 1.8917 + }, + { + "id": 105476, + "title": "The Dungeon of Black Company", + "originalTitle": "迷宮ブラックカンパニー", + "overview": "Kinji, who lacks any kind of work ethic, is a layabout in his modern life. One day, he finds himself transported to another world–but not in a grand fantasy of a hero welcomed with open arms. He's immediately shoved into a terrible job! Now enslaved by an evil mining company in a fantasy world, Kinji's about to really learn the meaning of hard work!", + "posterPath": "/dVHfZoFzl7MbKBgNaAnhIdwseXY.jpg", + "backdropPath": "/2OUwaSJ5qonI7WKpYFHWnItF9mC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 62, + "popularity": 1.8912 + }, + { + "id": 116168, + "title": "When Will Ayumu Make His Move?", + "originalTitle": "それでも歩は寄せてくる", + "overview": "Ayumu just fell in love at first sight with Urushi and joined the illegitimate Shogi Club! But Ayumu has vowed not to confess his feelings until he can best Urushi, and he has a long way to go before he can stand up to her strategic brilliance.", + "posterPath": "/2VaXju9SuApsbDjazMr6qZhsvfa.jpg", + "backdropPath": "/t9osgSoWpsGXTS4yB5tqYF4W5Fl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 20, + "popularity": 1.8907 + }, + { + "id": 22149, + "title": "Legendz: Tale of the Dragon Kings", + "originalTitle": "レジェンズ 甦る竜王伝説", + "overview": "When a crafty toy company \"Wiz\" also known in this show as Dark Wiz Company, finds crystals with the faint DNA of monsters known as \"Legendz\" are found and made into a battle game.\n\nA young boy named Shu receives one these crystals known as \"soul figures\" from his father after a baseball game. Legendz rapidly became popular and more and more children played it. Wiz employeys start to track down Shu for his special soul figure, for his soul figure can revive real legendz not just the little kiddy digital images! How will Shu fight his way to victory and claim this soul figure as his own?", + "posterPath": "/yXa3LAdj2JsqKlWjXqTOdgC2qWE.jpg", + "backdropPath": "/xM27gLXWLk01YbAWEsljDkILlaQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2004-04-04", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 1.8907 + }, + { + "id": 35154, + "title": "Neo Angelique Abyss", + "originalTitle": "ネオアンジェリーク Abyss", + "overview": "Arcadia is plagued with evil, life-draining demons called Thanatos and a vast lack of Purifiers to exterminate them all. While attending school, Angelique attracts the eye of a man who intends to turn the tides to the people's favor. What lies within her is the key to Arcadia's survival.", + "posterPath": "/5IkPBvZkdG7lw3HI6QheR0quAiI.jpg", + "backdropPath": "/2JuREEIuLMapjtE8qRb9FE1NICU.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2008-04-06", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 3.6, + "voteCount": 5, + "popularity": 1.8903 + }, + { + "id": 218613, + "title": "TenPuru", + "originalTitle": "てんぷる", + "overview": "\"I know! I'll become a monk!\" Akagami Akemitsu has spent his days and nights absorbed in studying and part-time work in an effort to distance himself from his family, which is notorious as a household of philanderers. One day, he falls in love at first sight with a girl named Aoba Yuzuki, and suddenly he's constantly drowning in worldly desires. Hoping to fight back against his genes and live a more stoic life, he enters a temple... only to find out that it's a convent filled with gorgeous girls! So begins a new rom-com about the temple life of three adorable triplets and two beautiful freeloaders!", + "posterPath": "/3zGVf8svzcsFD4MyWpPfUcXYRVK.jpg", + "backdropPath": "/ehvo7achvrJOBHZfL1aWtPbuuuD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2023-07-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 22, + "popularity": 1.8894 + }, + { + "id": 117310, + "title": "Dolls' Frontline", + "originalTitle": "ドールズフロントライン", + "overview": "In the fallout of nuclear war, the last of humanity survives with the help of life-like androids known as Dolls. Built to serve, some fight in wars as Tactical Dolls or T-Dolls. Now, an elite team comprised of T-Dolls are sent to face a new rogue threat, Sangvis Ferri. Leading them into battle is their new human commander, M4A1.", + "posterPath": "/ip5Zx3RWxzNuRUDYpPwPrjsPOo.jpg", + "backdropPath": "/v2ETaw6qRlcvgWxLHCCfSvlD5S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2022-01-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 28, + "popularity": 1.8879 + }, + { + "id": 156197, + "title": "Delicious Party Precure", + "originalTitle": "デリシャスパーティ♡プリキュア", + "overview": "The mysterious, delicious world of CooKingdom, which rules over all the cuisine in this world. CooKingdom has closely guarded the Recipe-Bon, in which it's written how to prepare any dish. But, oh no! One day, it gets stolen by the Bundoru Gang! The Bundoru Gang plans to monopolize everything for themselves, and their next target is the Cuisine Fairy Recipeppi... The Energy Fairies have come to Oishi-Na Town in the human world in search of the Recipe-Bon. With their help, an unexpected turn of events leads to three ordinary girls transforming into Pretty Cures!", + "posterPath": "/bRGlBWKNWdrFfW0VN9DwuSdJfJa.jpg", + "backdropPath": "/tq4guiLRy8g00GeK9TWImzHPBmP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765, + 10762, + 10751 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Kids", + "Family" + ], + "releaseDate": "2022-02-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 1.8875 + }, + { + "id": 68097, + "title": "Kaijuu Girls", + "originalTitle": "怪獣娘~ウルトラ怪獣擬人化計画~", + "overview": "Humanity's battle of many years with the kaiju, giant monsters, has finally come to an end. Now that Earth has entered an age of peace, girls with the souls of kaiju have begun to appear, giving them the ability to transform into kaiju. They are known as the Kaiju Girls, and this is the powerful, transient, beautiful, and at times easygoing story of the strange fate these girls bear.", + "posterPath": "/5Q8cVrTvlju9GmmGWvkxu9IufdQ.jpg", + "backdropPath": "/nxYWjtpaUmGetANyR3ifoh05Idh.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-09-27", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 6, + "popularity": 1.8864 + }, + { + "id": 46337, + "title": "Cross Game", + "originalTitle": "クロスゲーム", + "overview": "Kō Kitamura, whose family owns a sporting goods store, has known the Tsukishima girls since he was born. The Tsukishima family runs a batting center and cafe, and they have four daughters. There's Ichiyo, the responsible eldest; Wakaba, Kō's cheerful best friend; Aoba, who doesn't get along with Kō; and Momiji, the energetic youngest daughter. When Kō enters high school, he aspires to lead his baseball team to the Koshien National High School Championship as their ace pitcher and make Wakaba's dream come true.", + "posterPath": "/3M701nra5h9ChMjT1ACOPfJqQnv.jpg", + "backdropPath": "/wyolXbJmRAlW1rU7G1zOC1O9XQx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10749 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Romance" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 21, + "popularity": 1.8798 + }, + { + "id": 35730, + "title": "Strawberry Marshmallow", + "originalTitle": "苺ましまろ", + "overview": "Everyday things make up the fabric of life—whether it's making friends, going to school, trying to make money, or celebrating a holiday. Ichigo Mashimaro is a heartwarming series that follows the daily lives of Chika Itoh, her sister Nobue, and her friends Miu, Matsuri, and Ana.", + "posterPath": "/pcb6GPHQGWQNCbL338TOOlnmTrI.jpg", + "backdropPath": "/bTO61qEQpOyBeOjnMaCqpQf6Rss.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-07-15", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.409, + "voteCount": 22, + "popularity": 1.8791 + }, + { + "id": 61295, + "title": "Pokémon Origins", + "originalTitle": "ポケットモンスター THE ORIGIN", + "overview": "Follow Red as he travels through the Kanto region, encounters Team Rocket, battles his rival, and challenges the Pokémon League!", + "posterPath": "/tr1sRZEQzL4S9xRiiIu9lRJvKNh.jpg", + "backdropPath": "/zVpsLulhjz1RoW4LWQjYP3wmhtg.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-02", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.283, + "voteCount": 338, + "popularity": 1.877 + }, + { + "id": 244617, + "title": "MAYONAKA PUNCH", + "originalTitle": "真夜中ぱんチ", + "overview": "Meet Masaki, the now former member of the popular NewTuber group, Harikiri Sisters. After a career setback, aka getting fired unexpectedly via a livestream, she joins forces with Live, a partner with superhuman abilities. Together, they aim to create sensational content and reach 1 million subscribers. Will they reach their content dreams or be hit with the block button?", + "posterPath": "/swn5NHufGGFOYShducrbaHN9Oyb.jpg", + "backdropPath": "/7RwDgiCDe7MLPlwtK6CIqMEWjXh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-07-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 15, + "popularity": 1.8759 + }, + { + "id": 37799, + "title": "The Swiss Family Robinson: Flone of the Mysterious Island", + "originalTitle": "家族ロビンソン漂流記 ふしぎな島のフローネ", + "overview": "Flone and her family were on their way to Australia from Switzerland when their ship wrecked and they landed on an inhabited island. Relying on a strong conviction that they will return one day, the Family Robinson made a house on top of a tree and live on whatever resources available to them. Through the cooperation of each and every member, the family managed to survive on the island and eventually did return back to Australia.", + "posterPath": "/76ShAw0PXsnKoxMkugaYEyeTAA8.jpg", + "backdropPath": "/q1CiP8W333hHy5zxc2daMVdup7J.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1981-01-04", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 32, + "popularity": 1.8751 + }, + { + "id": 87462, + "title": "Ao-chan Can't Study!", + "originalTitle": "みだらな青ちゃんは勉強ができない", + "overview": "Ao Horie's father, a popular erotic fiction author, chose Ao's name because A stands for “apple” and O stands for “orgy”! Desperate to escape her father's legacy and get into a prestigious university, Ao devotes herself to studying instead of pursuing romance. She has no time for boys, but there's just one problem: Kijima, her handsome and popular classmate, just confessed his love to her! And to make matters worse, she can't stop thinking dirty thoughts about him! Looks like escaping her father's influence will be harder than she thought...", + "posterPath": "/k5TUS9UTGeJtmFiF9GCmjxuADgG.jpg", + "backdropPath": "/y8ujppuSi7qy3nNACLhold3dyWE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.779, + "voteCount": 188, + "popularity": 1.8745 + }, + { + "id": 71149, + "title": "Don Chuck Beaver", + "originalTitle": "ドン・チャック物語", + "overview": "", + "posterPath": "/2Y6hzr5AJS2AieVcZVdZF6oFqO.jpg", + "backdropPath": "/8WTcwURykgop0jJHafmnxorksWZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16 + ], + "genres": [ + "Kids", + "Animation" + ], + "releaseDate": "1975-04-05", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 8, + "popularity": 1.8737 + }, + { + "id": 45953, + "title": "Ro-Kyu-Bu!", + "originalTitle": "ロウきゅーぶ!", + "overview": "When high schooler Subaru's basketball team is disbanded for a year, his aunt talks him into coaching an elementary school girls' team.", + "posterPath": "/pTjtpplRsx4dCA89RBTtsH1io5o.jpg", + "backdropPath": "/wCddnZyWgx7xwHVoTeOWppVkFHu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-07-01", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 4.438, + "voteCount": 8, + "popularity": 1.8732 + }, + { + "id": 68482, + "title": "Rainy Cocoa", + "originalTitle": "雨色ココア", + "overview": "Aoi’s soaked by a sudden rainstorm and takes shelter at Rainy Color, a cozy café where the warmth of the staff compliments the sweet hot cocoa he’s served. When he falls into a job at the café he feels like things are finally looking up— until Keiichi Iwase, the man he couldn’t help but stare at on the train, shows up.", + "posterPath": "/sZpWrJl0Yg4ogd92M2lrrLsNRrU.jpg", + "backdropPath": "/y106aFMcHV8yHvxwya0oWL5gh6y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-04-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 13, + "popularity": 1.8725 + }, + { + "id": 62323, + "title": "Gunslinger Stratos: The Animation", + "originalTitle": "ガンスリンガー ストラトス", + "overview": "A.D. 2115—the island nation once called Japan is now known as the \"17th Far East Imperial City Management District.\" The citizens were promised a life of peace in exchange for some of the comfort they were used to having. People believed their lives would never change and tomorrow will be the same as today. No one suspected the impending doom which their society was about to face. \"Degradation\"—a rare disease which led to the total disintegration of the human body to a mere pile of sand was slowly but surely spreading throughout the world. Tohru Kazasumi, an ordinary student becomes embroiled in a multi universal battle between his world and the parallel world of \"Frontier S (Stratos).\" This meant that Tohru must fight himself from an alternate world. Their futures collide as their paths cross. Will both worlds ever find peace?", + "posterPath": "/llylPBDxLagalL0ETVvUCF032bF.jpg", + "backdropPath": "/jo09ciCWaivNeiH4vgh48HMJC7i.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 10, + "popularity": 1.872 + }, + { + "id": 64140, + "title": "Heavy Object", + "originalTitle": "ヘヴィーオブジェクト", + "overview": "\"Objects\" are powerful, massive weapons that change the course of warfare and are manned by Elite Object pilots. An odd Elite girl named Milinda meets Quenser, a student who aims to become a Object mechanic, with the soldier-in-training Heivia on a snowy battlefield.", + "posterPath": "/vFjA85bqt3rKw4ueTTfF1VEcvMR.jpg", + "backdropPath": "/lJwaKvQwUYB5QnHObxL1blBh16y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-02", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 13, + "popularity": 1.8719 + }, + { + "id": 240682, + "title": "Astro Note", + "originalTitle": "アストロノオト", + "overview": "Takumi, a gifted chef, just landed a new job. He works at the Astro Manor apartment building that offers breakfast, and there he encounters the beautiful landlady—Mira. It’s love at first sight, and he hopes to charm her, but the quirky tenants and bizarre phenomena don’t make it easy. He even learns by pure chance that Mira is secretly an alien! Will their love survive these unearthly oddities?", + "posterPath": "/7S713gLbVcNrqpys8kInhmbm8jW.jpg", + "backdropPath": "/bM0Jtv4VjvUx0FfW0uc34rD0IGo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5.545, + "voteCount": 11, + "popularity": 1.8711 + }, + { + "id": 42972, + "title": "Lagrange: The Flower of Rin-ne", + "originalTitle": "輪廻のラグランジェ", + "overview": "Madoka is the lone member of her school's Jersey Club. She is one day recruited by a mysterious girl named Lan to pilot the robot \"Vox\" and protect her city from space invaders. They are joined by a third girl, Muginami, who has a different goal than Ran. Meanwhile, they still don't know their enemies' true goal, or what \"Rinne\" might be.", + "posterPath": "/nQNfa0BGj4MVcNeJ1zyGRYVhiqt.jpg", + "backdropPath": "/phcPuBdGvkmiu4UjsxkaMjbVlhG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-01-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 8, + "popularity": 1.8708 + }, + { + "id": 21855, + "title": "07-Ghost", + "originalTitle": "セブンゴースト", + "overview": "Set in a gothic fantasy world, this is the story of Teito Klein, an orphaned slave who became the top military academy student. However, an unexpected turn of events left him pursued by the forces of the Barsburg Empire. Now an escaping convict, Teito's sheltered by the church and its law of sanctuary. Here, he discovered many mysteries surrounding himself, the church, and the Empire itself. The fact that he might be connected to a dethroned king and the mystical stone of god, \"The Eye of Mikhael\", made him the target of the empire more than ever. Fortunately the church is under the mythical 7 Ghost protection. But who are the Ghosts really. Will Teito be free from the military's clutch, and what of his said mission to uncover the history. And who is the military's Chief-of-Staff Ayanami exactly. Teito's future seems to have spiraled into an unexpectedly perilous path.", + "posterPath": "/xmqAgtAnhNNi4q9PUIHYE0NThXl.jpg", + "backdropPath": "/xpbYhlApQErpGSIXTP8o9zQmwMu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2009-04-07", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 29, + "popularity": 1.8698 + }, + { + "id": 6153, + "title": "Gigantor", + "originalTitle": "鉄人28号", + "overview": "Gigantor is an American adaptation of the anime version of Tetsujin 28-go, a manga by Mitsuteru Yokoyama released in 1956. Jimmy Sparks controls a gigantic, powerful robot and uses it to fight crime. It debuted on U.S. television in 1964. As with Speed Racer, the characters' original names were altered and the original series' violence was toned down for American viewers.", + "posterPath": "/c0JLcw2vwmBGPsPTlzYerydAAQm.jpg", + "backdropPath": "/rwldVfSKCLeNpeXLq5a0a5WEZDy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1963-10-20", + "releaseYear": "1963", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 5, + "popularity": 1.8686 + }, + { + "id": 20177, + "title": "Please Twins!", + "originalTitle": "おねがい☆ツインズ", + "overview": "Maiku Kamishiro grew up in an orphanage with no history of his family or of his past. Left with only a childhood picture of himself and another person in front of a house, he believes that the other person in the picture is his long lost twin sister. Upon discovering his old home, two young girls show up on his doorstep one day both claiming to be his long lost sister.", + "posterPath": "/8fHIwmRU1GnvlZrp1z0gVLsltyk.jpg", + "backdropPath": "/oAW6jP0bJTol6PnrwZSC1qD5hxN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2003-07-15", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 51, + "popularity": 1.8661 + }, + { + "id": 36134, + "title": "The Sacred Blacksmith", + "originalTitle": "聖剣の刀鍛冶(ブラックスミス)", + "overview": "Cecily's a blushing knight in shining armor. Unfortunately, it seems most battles end with her as the damsel in distress. Her lack of skill and distaste for violence make her an unlikely heroine - until the brooding blacksmith Luke comes to her aid, using his powerful magic to forge blades of supernatural strength. Cecily wields this sacred steel and charges forth to face a dangerous new threat. A cloaked fiend is unleashing demons upon the land, and though he lurks in shadows, the villain is much closer than Cecily can imagine.", + "posterPath": "/q8u8G9sYg4oXXwCBaRBEwECwsNb.jpg", + "backdropPath": "/dI1eAHX69mZGwDPmTNsKSUj06St.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-03", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.905, + "voteCount": 21, + "popularity": 1.866 + }, + { + "id": 8655, + "title": "Voltes V", + "originalTitle": "超電磁マシーン ボルテスV", + "overview": "From out of nowhere, a mysterious alien race known as the Boazan Forces has invaded the Earth. A group of individuals specially trained to handle this kind of situation has been unleashed. Kenichi, Ippei, Daijirou, Hiyoshi & Megumi are the pilots of the Choudenji Machine Voltes V (5), Earth's defense against the Boazan and their terrible Beast Warriors. The plot thickens as the Go Brothers discover their true heritage and the truth behind their father's disappearance. Conflicts and mixed emotions hinder the Go Brothers at times but due to their unwavering desire to find their dad, they must go to the place where it all started. With the help of the rebels based on Earth and on the aliens' homeworld, the Voltes Team has another mission, remove the tyrant Zu Zanbajil and liberate the people of Boazan.", + "posterPath": "/9X3zk8BP3VeBnpRL9FP0UyjMHGu.jpg", + "backdropPath": "/z62FIWnRW6TmRIXkzVKe8zPifuX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1977-06-04", + "releaseYear": "1977", + "originalLanguage": "ja", + "voteAverage": 7.143, + "voteCount": 7, + "popularity": 1.8642 + }, + { + "id": 78462, + "title": "Devils' Line", + "originalTitle": "デビルズライン", + "overview": "Tsukasa, a college student, is rescued from an attack by a devil, one of many vampires that can blend in among the human population. Anzai, her savior, is a half-devil who exploits his supernatural gifts as a member of a shadowy police task force that specializes in devil-related crime in Tokyo. As Anzai continues to keep guard over Tsukasa, the two quickly forge a tentative bond—one that Anzai fears will test his iron-clad rule of never drinking human blood...", + "posterPath": "/2tz6rfssj7rGmveOaPshPLd20VS.jpg", + "backdropPath": "/1pLAl7M0n0nliV3mMwHPxF5Tf4e.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 80, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Crime", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.869, + "voteCount": 203, + "popularity": 1.863 + }, + { + "id": 21272, + "title": "Doomed Megalopolis", + "originalTitle": "帝都物語", + "overview": "A spiritual battle is being waged within the capital of Tokyo during the turn of the 20th century. In 1908, Japan is undergoing an enormous process of industrial renovation due the influence of radical western ideals. Technology and politics shift the country's emphasis more and more away from the traditions of the past, with Tokyo being the main center of this radical movement. At the same time, Yasumasa Hirai, an Onmyoji of the Tsuchimikado Family, has been called from Kyoto to Tokyo in order to participate in a secret meeting concerning plans to turn Tokyo into the most commercial and blessed city in all of Japan. Opposing Hirai is Yasunori Kato, an evil Onmyoji whose only desire is the complete destruction of Tokyo. Yasumasa Hirai and Kato Yasunori meet and fight for the future of Tokyo and the Japanese Empire.", + "posterPath": "/p4aE774bEQDpUmEt7SxTuVFZiPt.jpg", + "backdropPath": "/53lEdWrH1EaiWsf8Q8Wr6DvMo2I.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1991-09-27", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 4.385, + "voteCount": 13, + "popularity": 1.8623 + }, + { + "id": 74183, + "title": "Ousama Game The Animation", + "originalTitle": "王様ゲーム The Animation", + "overview": "Kanazawa Nobuaki has transferred to a high school far from where he used to live. Due to an incident at his old school, Nobuaki is afraid of getting close to his new classmates and keeps himself at a distance, but he starts opening up because of a sports day inter-class relay. Then a single text message from someone calling themselves the \"King\" is sent to everyone in class. Nobuaki's classmates think it's a simple prank and don't take it seriously - but Nobuaki knows that a death game is about to begin, and struggles to oppose it...", + "posterPath": "/dC5colSokrouEjhWUVbIJjwVEUC.jpg", + "backdropPath": "/6bamjsV4LPigFnYlvQ8pQkvv9Sj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-10-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 113, + "popularity": 1.8613 + }, + { + "id": 42491, + "title": "The Third: The Girl with the Blue Eye", + "originalTitle": "ザ・サード ~蒼い瞳の少女~", + "overview": "In a devastated world overrun by monstrous bugs and ravaged by outlaws, there's only one person to call when you really need a job done right: Honoka. With a sixth sense for danger, sword skills second to none, and a smart-aleck A.I. tank by the name of Bogie, she's ready to tackle any job and solve any problem for her clients. But while crossing the desert one night, she finds a young man alone in the wasteland. It's the first step of a journey that will challenge even Honoka's amazing skills to their very limit!", + "posterPath": "/v4KSmbY32icCOIZdmqDOMpTsA69.jpg", + "backdropPath": "/8aug8yn6NvXotRgZ1AaTJeNaDFC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-14", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 5, + "popularity": 1.8595 + }, + { + "id": 45088, + "title": "Tamayura: Hitotose", + "originalTitle": "たまゆら", + "overview": "As a little girl, Fuu Sawatari’s father taught her to love photography. They took pictures everywhere they went. But after he passed away, seeing those photographs only served as a reminder of her loss, so she locked them away to be forgotten. Years later, her brother Kou finds their father’s picture album, and as he flips through its pages, the pictures remind Fuu of all the happy memories of her father that she will carry with her forever.\n\nNow, as the shy Fuu enters her first year of high school, she once again takes up her father’s old camera, determined to take wonderful pictures that will bring joy and happiness to others.", + "posterPath": "/h2lrJMzxHHRgT33PLspZ38OXbxK.jpg", + "backdropPath": "/eoH1BVRX8UuDsfLzRxR7dMDRLug.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2011-10-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 8, + "popularity": 1.8593 + }, + { + "id": 83116, + "title": "How Clumsy you are, Miss Ueno.", + "originalTitle": "上野さんは不器用", + "overview": "Ueno may be the president of the science club at her junior high and a genius inventor, but she still can’t figure out how to confess to her crush, Tanaka! Can she find a way to give her heart what it truly yearns for?", + "posterPath": "/4vrvWEbyHi4ruuQ07nJnnwBBGIR.jpg", + "backdropPath": "/23zFC1x3Ax6J04cULOSEmUVqblF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-01-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.316, + "voteCount": 19, + "popularity": 1.8589 + }, + { + "id": 84141, + "title": "Meiji Tokyo Renka", + "originalTitle": "明治東亰恋伽", + "overview": "Mei Ayazuki, an ordinary high school girl, becomes the object of affection for a bunch of handsome historical figures when she accidentally time-travels back to Tokyo during the Meiji Era.", + "posterPath": "/iM6bWYvTSXOdMgdIeauU13tJqMy.jpg", + "backdropPath": "/xA9drGlws9iKGjeFw6qkNy4TGlh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-01-09", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.692, + "voteCount": 13, + "popularity": 1.8581 + }, + { + "id": 34782, + "title": "Gasaraki", + "originalTitle": "ガサラキ", + "overview": "The flames of war are fanned in the Middle East as two secretive forces unleash their latest weapons of mass destruction.", + "posterPath": "/6xN2mibxO4yMqHkOmjN6uSVXX4k.jpg", + "backdropPath": "/iu45FZkhSNJysANEDiRu2QoMY8E.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-10-04", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 8, + "popularity": 1.8556 + }, + { + "id": 61407, + "title": "Denki-gai", + "originalTitle": "デンキ街の本屋さん", + "overview": "A blush-inducing, coming-of-age comedy about manga-loving book store employees!! The unique cast of characters -- all hard-core manga fans and maniacs of some sort -- work at comic shop “Uma no Hone.” On a daily basis, they display new releases, shrink-wrap comics, shudder at their lack of feminine qualities, question their love for porn literature…and basically have fun while working hard (?). Girls and guys call each other by nicknames and some begin to develop close relationships! It’s non-stop humor and romance in this book store rom-com!", + "posterPath": "/yDQBCRXijW1AEwKw1mAViIMUI2n.jpg", + "backdropPath": "/nfi0uBBXnL8rF6T6Gpu84TOPwo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-10-02", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.593, + "voteCount": 27, + "popularity": 1.855 + }, + { + "id": 85841, + "title": "Ultramarine Magmell", + "originalTitle": "群青のマグメル", + "overview": "One day in the middle of the pacific ocean a miracle occurred, a new continent appeared out of nowhere! The new continent was the home for new and mysterious plants, creatures and minerals!\n\nHumanity is excited as the age of exploration has returned.", + "posterPath": "/tgqna6q27frmiwYFwJ5f1VRTqsE.jpg", + "backdropPath": "/pv5nWQJqt02AJx0EqBiZT7cg4Mp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2019-04-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.905, + "voteCount": 74, + "popularity": 1.8542 + }, + { + "id": 29117, + "title": "Oh! My Goddess", + "originalTitle": "ああっ女神さまっ", + "overview": "When college student Keiichi Morisato dials the wrong number while ordering for some food at his dormitory, he accidentally gets connected to the Goddess Hotline and a beautiful goddess named Belldandy appears out of a mirror in front of him. After getting kicked out of the dorm, Keiichi and Belldandy move to an old shrine and soon afterwards, Belldandy's sisters Urd and Skuld move in.", + "posterPath": "/d5NGnOLHRrRtlxQHBfrbqzor98M.jpg", + "backdropPath": "/d15ckPUVWP8F107sueP8ePWH42H.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1993-02-21", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 23, + "popularity": 1.8541 + }, + { + "id": 64809, + "title": "Mobile Suit Gundam Thunderbolt", + "originalTitle": "機動戦士ガンダム サンダーボルト", + "overview": "Federation troops and Zeon forces carry out a fierce battle in the Thunderbolt Sector in what was once Side 4 \"Mua\". The Thunderbolt Sector is a shoal zone composed of the debris of destroyed space colonies, named for the electrical discharges from the metal debris. MS pilot Io Flemming is among the Federation soldiers who are dispatched to the area, where Zeon sniper Daryl Lorenz awaits them on the battlefield.", + "posterPath": "/p4A0nZjf5A0Eu2quCpbXOaDPcC9.jpg", + "backdropPath": "/zYPdmf3YhWWTN49cWzM7fnyzuaV.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 18, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Animation" + ], + "releaseDate": "2015-12-25", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.929, + "voteCount": 21, + "popularity": 1.8521 + }, + { + "id": 68285, + "title": "Lostorage incited WIXOSS", + "originalTitle": "ロストレージインサイテッドウィクロス", + "overview": "High school student Homura Suzuko has returned to Ikebukuro, the town where she grew up. But when she gets to school, she finds she has trouble fitting in with the rest of the class. One day, she decides that if she learns to play the card game Wixoss, she might be able to make some friends. She buys a deck set, and when she opens it, the girl on one of the cards begins to move, and speak. \"Welcome, Selector.\" Selectors must battle for control of the five coins that hold all their memories. If they can retake all the coins, they win, and can leave the game. But if they lose, as a penalty--", + "posterPath": "/q4qDgn7qaz4t47wTrtShxdvIHBl.jpg", + "backdropPath": "/dsoBiXdYC8akLVrOpEfMXcrHycn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 11, + "popularity": 1.852 + }, + { + "id": 37102, + "title": "And Yet the Town Moves", + "originalTitle": "それでも町は廻っている", + "overview": "Clumsy Hotori Arashiyama is a girl with a love for mysteries and a knack for getting into trouble. Hotori works as a waitress in an unsuccessful coffee shop when the manager comes up with a plan to increase its fortunes by changing into a maid cafe. Unfortunately, no one knows how to make a successful maid cafe other than dressing everyone in a maid outfit. What follows is a wacky series of incidents involving Hotori’s many friends, mismatched love stories… and ghosts and aliens.", + "posterPath": "/zsmtixjPe4putvCrn1xKKXdOUXF.jpg", + "backdropPath": "/1wxIv2xvgHXTbATQJRxJ9UCSXv7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-10-08", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 12, + "popularity": 1.8501 + }, + { + "id": 56090, + "title": "Problem Children Are Coming from Another World, Aren't They?", + "originalTitle": "問題児たちが異世界から来るそうですよ?", + "overview": "Three problem children - Izayoi Sakamaki, Asuka Kudou, and You Kasukabe - suddenly receive an invitation to another world known as \"Little Garden\" from a girl called Black Rabbit. Battles, laughter, sex appeal... anything goes in this new tale of adventure!", + "posterPath": "/3s47rl7klYfYAT1RbQAPo3vW17n.jpg", + "backdropPath": "/uGk2oZglVmx32zrod5uU2WBtSs5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-01-12", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 48, + "popularity": 1.8494 + }, + { + "id": 37529, + "title": "Nabari no Ou", + "originalTitle": "隠の王", + "overview": "In the shadows of society, rival ninja clans fight to control an ancient technique which holds untold strength. This coveted power dwells within apathetic Miharu, a fact the guy really couldn’t care less about—until the clans bring their war to him.", + "posterPath": "/sVfb84opLuGQrAuS2EqE8QJ7zcB.jpg", + "backdropPath": "/eCiGvkFWxScxd5trip3XJr5ORII.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-04-06", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 10, + "popularity": 1.8492 + }, + { + "id": 27436, + "title": "The Adventures of the Little Prince", + "originalTitle": "星の王子さま プチ・プランス", + "overview": "Anime series based on the book by Antoine de Saint-Exupéry. The series showed the extended adventures of the Little Prince, Swifty The Space Bird, and the Rose Girl.", + "posterPath": "/kTNgb8120H2FmMWQ2GnTQkEfL9k.jpg", + "backdropPath": "/xZI44OMaesd1DY2sFbG72UPTXna.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids" + ], + "releaseDate": "1978-07-04", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 13, + "popularity": 1.845 + }, + { + "id": 44257, + "title": "Story of the Alps: My Annette", + "originalTitle": "アルプス物語 わたしのアンネット", + "overview": "An anime series based on the children's book and set in the Swiss mountain village of Rossinière.", + "posterPath": "/usXJh5QLe1TBq0TOzSp5ewKmoJk.jpg", + "backdropPath": "/f3OFrxI6nxr74F1hJEW5Z37ARZX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1983-01-09", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 7, + "popularity": 1.842 + }, + { + "id": 11316, + "title": "Final Fantasy: Unlimited", + "originalTitle": "FF:U ~ファイナルファンタジー:アンリミテッド~", + "overview": "Twins Ai and Yu Hayakawa decide to set forth in search of their parents and the mysterious dimension they studied.", + "posterPath": "/hrR1rvbDBVy6J9DCgAY0Pz2i61N.jpg", + "backdropPath": "/yrVWGIaOjTNFZEpg9sKXaOip9cW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2001-10-02", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 18, + "popularity": 1.8419 + }, + { + "id": 78476, + "title": "Major 2nd", + "originalTitle": "メジャーセカンド", + "overview": "Shigeno Daigo is an elementary student whose father, Goro, is a professional baseball player. Inspired by his father, who was once a Major League player, Daigo started playing baseball with the Mifune Dolphins, a youth team. However, he was unable to live up to the expectations of being the son of a professional, and quit baseball after less than a year. Then, in the spring of his sixth-grade year, Daigo's school welcomes a transfer student, Sato Hikaru, whose father is Sato Toshiya, a former Major League player and Goro's close friend. The fate of these two young men begins to move forward!", + "posterPath": "/9UmoNij31C7zlC3hiF5UJ4DDD9C.jpg", + "backdropPath": "/p7JpIwBvqWPEGFzYRLQEz1mEYvu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2018-04-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 16, + "popularity": 1.8387 + }, + { + "id": 46283, + "title": "Blast of Tempest", + "originalTitle": "絶園のテンペスト", + "overview": "The Kusaribe family is a family of sorcerers under the protection of the ‘Tree of Origins.’ Their princess, Hakaze Kusaribe, was the greatest sorceress of their family. But Samon Kusaribe, a member of their family seeking to resurrect the ‘Tree of World's End,’ a tree that opposes the ‘Tree of Origins’ and controls the power of destruction, stuffs her into a barrel, and banishes her to a deserted island.", + "posterPath": "/iUU9HoXlExmFCEO8p9oceJqYlDP.jpg", + "backdropPath": "/gAqAdxCOS0Rdo7agYhG1qU7OMou.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 96, + "popularity": 1.8377 + }, + { + "id": 72426, + "title": "GAMERS!", + "originalTitle": "ゲーマーズ!", + "overview": "Keita Amano is a perfectly mediocre loner with no particular distinguishing features other than his love for games. One day, his school's prettiest girl and Gamer Club President Karen Tendo suddenly calls out to him. That moment changes Keita's life forever, as he now finds himself in the midst of a romcom with beautiful girl gamers... or, well, that's how it usually goes. Not with him, however.", + "posterPath": "/x5ztudyVybv0fG1UdCV8nXYTKpd.jpg", + "backdropPath": "/9ONsuIkAZnOmjwq2FHe3EsDJuaB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-13", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 175, + "popularity": 1.8369 + }, + { + "id": 252425, + "title": "Garouden: The Way of the Lone Wolf", + "originalTitle": "餓狼伝: The Way of the Lone Wolf", + "overview": "On the run from a past crime, Juzo Fujimaki is blackmailed into joining an illicit tournament and has to face top martial artists in deadly match-ups.", + "posterPath": "/ozOjfhE6ADlWto0IKgVtniRvUOW.jpg", + "backdropPath": "/li7fkhRa4UpmrkxbbBhFbRSf1UV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-05-23", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.224, + "voteCount": 38, + "popularity": 1.8367 + }, + { + "id": 1041, + "title": "Noir", + "originalTitle": "ノワール", + "overview": "Mireille Bouquet is a professional assassin, and a very good one at that. But when she follows up an E-mail from a young Japanese girl named Kirika Yumura, inviting her to take \"a pilgrimage to the past\", her life becomes even more dangerous than it already is. Now, with a haunting melody invoking the memory of an event long past, Mireille and Kirika decide to work together to find the truth about a thousand-year-old organization that has controlled both of their lives since before they were born. And the only clue in their search, the only thing Kirika remembers about herself, becomes their working codename: a name designating an ancient fate, of two maidens who reign over death—Noir.", + "posterPath": "/bPSNMNUDxH8rR89pStTAEgSkAXn.jpg", + "backdropPath": "/d6lD6QWfunUPBSz3zMGH89iDDV4.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10759 + ], + "genres": [ + "Drama", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2001-04-06", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.452, + "voteCount": 31, + "popularity": 1.8367 + }, + { + "id": 42999, + "title": "Angel Heart", + "originalTitle": "エンジェル・ハート", + "overview": "The last time she closed her eyes, Glass Heart prayed that she'd be set free from the torment she'd wrought as an assassin. A year later, she awakes from a coma to discover a deep scar on her chest and memories that aren't hers. These vivid flash-backs lead the young assassin to Shinjuku and the doorstep of Ryo Saeba, the legendary City Hunter. However, it quickly becomes apparent that Ryo isn't the sweeper he once was.", + "posterPath": "/5o0fpeaB5wnq8HDNMendjlJ3pzX.jpg", + "backdropPath": "/xWP6CQszpcZ1uVoua2PHhewSBZA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2005-10-03", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.083, + "voteCount": 12, + "popularity": 1.8346 + }, + { + "id": 109934, + "title": "Requiem of the Rose King", + "originalTitle": "薔薇王の葬列", + "overview": "The crown of England has been hotly contested throughout history, and in the Middle Ages, a series of great civil wars became known as the War of the Roses. Claiming a right to the throne, the Duke of York seeks to unseat King Henry VI and his heir in order to become king himself.", + "posterPath": "/xhoveJefmxPbQFSPJ1xTzp8qvpd.jpg", + "backdropPath": "/b684NTGFcBLumAAFhGEblgwxZpr.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10759, + 16 + ], + "genres": [ + "Drama", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2022-01-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 10, + "popularity": 1.8327 + }, + { + "id": 9723, + "title": "Hello! Sandybell", + "originalTitle": "ハロー!サンディベル", + "overview": "Hello! Sandybell is an anime series made by Toei Animation in 1981. It was aired in Japan by TV Asahi.\n\nIn the original title when it is made in Japan, her name is the spelling to which \"E\" is attached to an end by \"Sandybelle\".\n\nSimilarly to Silver Fang, the show is relatively unknown in the U.S. but was quite popular in Asia, Latin America, Arab countries and Europe, particularly Scandinavia.", + "posterPath": "/y57X49iIctPzGbSq4Lpbx5FcYWj.jpg", + "backdropPath": "/930JtR2rpmMPLESpnbuhCsOwIUb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "1981-03-06", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 103, + "popularity": 1.8324 + }, + { + "id": 69217, + "title": "The Comic Artist and His Assistants", + "originalTitle": "マンガ家さんとアシスタントさんと", + "overview": "The life of an artist can be hard: Long, arduous hours working with only your thoughts and assistants to keep you company. In the case of overworked mangaka Aito, his attempts to merge the two are so far unsuccessful. His priorities are askew and subjecting his assistants to his fantasies has taken precedent over work. Despite his abuse of power, his assistants are willing to play along. Thankfully, editor Mihari is there to keep him in line, from threatening to fire him to physical punishment.", + "posterPath": "/hVpdJnlz5sCcq0gIUdIfbuHJ4CY.jpg", + "backdropPath": "/l8z3xdD8hHDh2KPJhCVCrn2wLQF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-08", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 81, + "popularity": 1.8296 + }, + { + "id": 9519, + "title": "Excel Saga", + "originalTitle": "へっぽこ実験アニメーション エクセル♥サーガ", + "overview": "Hyperactive Excel does anything and everything to try to please her lord, Il Palazzo, who wants to take over the planet. Excel’s misadventures takes her and her partner, the ever-dying Hyatt, all over the world, meeting several strange people as they go. Everything is bizarre and goofy, as any kind of anime or entertainment genre gets mocked and spoofed.", + "posterPath": "/sr5nHUOuGDmysbANKJN1eV2wzrX.jpg", + "backdropPath": "/hThrYYffpW1vKHSQSBvP3Fp1Pyh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-10-07", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.696, + "voteCount": 28, + "popularity": 1.8287 + }, + { + "id": 24392, + "title": "Valkyria Chronicles", + "originalTitle": "戦場のヴァルキュリア", + "overview": "When Imperial forces attack the small border town of Bruhl, Welkin Gunther, son of late General Belgen Gunther, is forced to fight for his life alongside Town Watch captain Alicia Melchiott. Along with Welkin's adopted sister Isara, the three escape to Gallia's capitol and subsequently join the country's militia forces. As members of the newly-formed Squad 7, they must work to repel the invading Imperial forces and discover the true purpose of the invasion itself.", + "posterPath": "/arkbuM5HIZv7cRoftRpZEnGT24E.jpg", + "backdropPath": "/wLPYn9F4BxyOwlXGi7X9GXEZ3nm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2009-04-04", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 1.8285 + }, + { + "id": 46599, + "title": "Key the Metal Idol", + "originalTitle": "キィ・ザ・メタル・アイドル", + "overview": "Tokiko Mima, nicknamed \"Key,\" is a 17-year-old girl living in the Japanese countryside who, despite her human-like appearance, is a robot. When Key's grandfather Dr. Murao Mima passes away, he leaves her a dying message, telling her that she can become a real girl if she is able to make thirty thousand friends. Thus, Key moves from the quiet Mamio Valley to the busy streets of Tokyo, where she soon runs into her childhood friend Sakura Kuriyagawa.\n\nKey quickly becomes enamored with idol singer Miho Utsuse and wonders if becoming a singer will allow her to make the amount of friends needed for her to become human. But Miho carries a ominous secret: she is connected to Jinsaku Ajou, an old rival of Dr. Mima trying to make new a breakthrough in robotic weaponry. As Key works to become a real girl, Ajou sets a dangerous plan into action, and it turns out there's much more to Key than meets the eye.", + "posterPath": "/jKNNZzCHTwqTumsDZoW4uTABYEl.jpg", + "backdropPath": "/gdxCwzL3NR2aFWMR7zj0ddxt1jh.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 16, + 10759 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1994-12-16", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 5.143, + "voteCount": 7, + "popularity": 1.8283 + }, + { + "id": 61178, + "title": "Corpse Party: Tortured Souls", + "originalTitle": "コープスパーティー Tortured Souls", + "overview": "One rainy night after a school festival, a group of students from Kisaragi Academy decide to perform the \"Sachiko Ever After\" charm, which will unite them forever as friends. Once the ritual is done, a sudden earthquake transports them to Heavenly Host, a torn down elementary school. Unbeknownst to Satoshi and his friends, however, is the horrific past behind it which culminated in its demolition. As they look for each other and try to escape from Heavenly Host, they soon find out their lives are at the mercy of those affected by that same bloodied past.", + "posterPath": "/aP72Yn8rkmZpGZB3fdzQBS3rlr6.jpg", + "backdropPath": "/hdJvh2K7nljN5E81ANPQ6Pjp89L.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2013-07-24", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.428, + "voteCount": 69, + "popularity": 1.8276 + }, + { + "id": 13784, + "title": "Beast King GoLion", + "originalTitle": "百獣王ゴライオン", + "overview": "Long ago, a powerful sentient robot known as GoLion, abused his great powers by attacking and killing creatures known as Deathblack Beastmen, boasting that no one could defeat him. For his arrogance, The Goddess of the Universe punished GoLion by separating him into 5 different lion robots. In the year 1999, a group of 5 young men returned to Earth after a space voyage, only to find it ravaged by nuclear war. After encountering the alien race known as the Galra, the 5 youths end up on the planet Altea and learn that the 5 lion robots that GoLion was split into are in hibernation in various parts of Altea. Somehow, they must reunite the lions and form GoLion, the only hope for the human race.", + "posterPath": "/q2SY3q7ECRGxbAKLyrD0IvVAPIv.jpg", + "backdropPath": "/w6rZqSq9OYCt2um8aX4MHCbQkBM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1981-03-04", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 15, + "popularity": 1.8271 + }, + { + "id": 112601, + "title": "Backflip!!", + "originalTitle": "バクテン!!", + "overview": "The final summer of middle school, Shotaro Futaba discovers boys gymnastics and is completely enamored by it. Shotaro ends up going to Soshukan Private High School (aka Ao High) and decides to visit the boys gymnastics club. He's greeted by very unique senpais and a star gymnast named Misato Ryoya. Dedicating your life to something you love during your fiery days of youth... Of course, there is frustration, and fights, but see how these boys work together as a team towards a similar goal in this drama about sports and youth.", + "posterPath": "/3cABr1YfivCljLO6BvupeOaTsxX.jpg", + "backdropPath": "/1ndKKZfaUTV7AtInbz0kFxNA0Sw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2021-04-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 18, + "popularity": 1.8264 + }, + { + "id": 36984, + "title": "Charger Girl Juden Chan", + "originalTitle": "ファイト一発! 充電ちゃん!!", + "overview": "Plug is a \"Charger Girl\" from a parallel dimension. Her job is to find depressed humans in our dimension and charge them up to revitalize their energy.", + "posterPath": "/uj23l5eM3j2ahW6aJc2IkOJPH9v.jpg", + "backdropPath": "/htA6KyRWzOulQrY2dJ0LOowHzoR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-06-25", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 9, + "popularity": 1.8258 + }, + { + "id": 36005, + "title": "ItaKiss", + "originalTitle": "イタズラなKiss", + "overview": "When her newly-built home is razed to the ground by an earthquake, low-achieving, clumsy, and troublesome third-year high school student Kotoko Aihara is forced to share a roof with the school's—and possibly Japan's—smartest student, Naoki Irie. Kotoko is not actually a complete stranger to Irie-kun; unfortunately, a single love letter that she tried to give him in the past has already sealed her fate as far as he is concerned. Throw in some quirky friends and a meddlesome mother, and Kotoko might not even have a snowball's chance in hell of winning the older Irie boy's heart. Yet Kotoko remains optimistic that, because she now lives in his house, her unattainable crush on the genius since the beginning of high school has never been more within reach.", + "posterPath": "/bJb1y6yXBMBwVLChoXqpkXc2i8M.jpg", + "backdropPath": "/52H16pnnKZ8Mwiytjx3JrsAwNLZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2008-04-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.988, + "voteCount": 40, + "popularity": 1.8246 + }, + { + "id": 51557, + "title": "Burn! Top Striker", + "originalTitle": "燃えろ!トップストライカー", + "overview": "", + "posterPath": "/wxVW9hP7NvFa9qIGDWcYL7Ew2DU.jpg", + "backdropPath": "/qrCjSATTBnXC1nQbZ98Nq35E8q4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1991-10-10", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 55, + "popularity": 1.8241 + }, + { + "id": 6218, + "title": "The Ultraman", + "originalTitle": "ザ☆ウルトラマン", + "overview": "Joneus (Joe), a new Ultraman from U-40, merges with young Science Garrison member Chôichirô Hikari to defend the Earth in this, the first-ever animated Ultra Series. The show was the first animated incarnation of Tsuburaya's iconic superhero Ultraman.", + "posterPath": "/aDjbWYDsSAGlGlBsgXG1CFbyt8i.jpg", + "backdropPath": "/rgvC1V9ROh7kylqhBevw56oLxz3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1979-04-04", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 7, + "popularity": 1.8235 + }, + { + "id": 42903, + "title": "The Girl Who Leapt Through Space", + "originalTitle": "宇宙をかける少女", + "overview": "In the year 311 of the Orbital Calendar, humanity has migrated to countless colony clusters in space. A space colony girl named Akiha Shishidou encounters a malevolent artificial intelligence named Leopard that has been installed on a colony.", + "posterPath": "/lACcvPSqM32keQiljf281y7fXXy.jpg", + "backdropPath": "/2aGM8ecfrWgyhcKvJmlvES2hZbC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-01-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.444, + "voteCount": 9, + "popularity": 1.822 + }, + { + "id": 91547, + "title": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "originalTitle": "私、能力は平均値でって言ったよね!", + "overview": "Having stood out from others most of her life due to her exceptional character, Misato Kurihara has lived without neither the joy of having close friends nor the experience of having a regular life. However, after a sudden death, she was transported to a divine realm to be reincarnated—and granted one wish to top it off. Thinking about the ordinary life that she had always wanted, she wished to be born as a normal person, with abilities that are average for the world she will resurrect in.\n\nReborn as Adele von Ascham—the daughter of a noble—she possesses magic powers completely exceeding what one would label average. Still desiring to carry out the life she wanted, she leaves her home and enrolls at a hunter school in a faraway kingdom using \"Mile\" as an alias. However, try as she might to hide her overpowering potential, attaining her goal will be difficult—especially when facing against the crazy situations that ensue!", + "posterPath": "/I5ba54dxd7EqW0JMeAlftMEyXd.jpg", + "backdropPath": "/3d6NA7xA28fhg0UOJ5T5DXK2SMm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 47, + "popularity": 1.8217 + }, + { + "id": 12634, + "title": "Blue Seed", + "originalTitle": "ブルーシード", + "overview": "Momiji Fujimiya, is a descendant of the mythical Princess Kushinada. When Japan is menaced by Aragami spawned by Yamato-no-Orochi, Momiji is intended to be sacrificed to appease the Aragami. She instead, however, becomes a member of the Terrestrial Administration Center, a secret agency charged with fighting them.", + "posterPath": "/xYigwpjKqbhEHDs8c1mlygs7vxQ.jpg", + "backdropPath": "/eiz7M9HqWE8UVhe8cn6WmBdqeJS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-10-15", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 13, + "popularity": 1.8194 + }, + { + "id": 68203, + "title": "Fist of the Blue Sky", + "originalTitle": "蒼天の拳", + "overview": "Shanghai in the 1930s is a dangerous place. Foreign governments and Chinese factions have carved the city into different quarters, each with its own laws and government, and all rife with corruption. As the major powers vie for political control, the streets are left to local gangs. Life is cheap, and death is always near.\n\nIn days past, one man walked these mean streets battling the forces of evil. He was known only as Yan Wang, \"the King of Death.\" Few knew who he really was, but many knew that he was a master of Hokuto Shinken - Fist of the North Star - a lethal martial art. He disappeared years ago after dispatching the city's worst gangsters, and is now rumored to be in Japan. Various people have come to Japan in search of him, but who will find him first?", + "posterPath": "/60cBEHTmtRZATniXenBV3rHS6x3.jpg", + "backdropPath": "/4nLAxP3d2KdEN0hDPqu2rra5s6u.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2006-10-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 9, + "popularity": 1.8186 + }, + { + "id": 71907, + "title": "Alice in Borderland", + "originalTitle": "今際の国のアリス", + "overview": "Arisu, Karube, and Segawa, a trio of highschool delinquents, are bored with their current lives. During a firework celebration, Arisu wishes that he could live in a different world which would be more exciting for him. As such, his wish was granted, and the three were transported into a seemingly post-apocalyptic-like parallel world. After stepping into what seems to be an empty festival, they are greeted by a woman who tells them that they have already \"entered their game\". After clearing the game, she reveals to them that, in Borderlands, they must play games to survive.", + "posterPath": "/8huvRDPvqQ6N17krzUJf2tmb9PH.jpg", + "backdropPath": "/o5zErS6ZKUY1XAhYmLwQwEzTXd2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2014-10-17", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 34, + "popularity": 1.818 + }, + { + "id": 43863, + "title": "The New Adventures of Kimba The White Lion", + "originalTitle": "ジャングル大帝", + "overview": "Kimba is a young ambitious lion cub who takes his father's place as emperor of the jungle when is father is killed by poachers. Even though his father's fate was met by the hands of humans, Leo is one of the few animals in the Jungle that doesn't fear or feel hatred toward humans. He is not alone either, he is guided by friends of his father to help create the best animal kingdom there can be.", + "posterPath": "/8CkjoIzsoh1ppS2DKpBTZ6unfSF.jpg", + "backdropPath": "/bT134rCbzp9BpHsL7EmlKMi7R1F.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1989-10-12", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 5, + "popularity": 1.8173 + }, + { + "id": 72523, + "title": "Angel's 3Piece!", + "originalTitle": "天使の3P!", + "overview": "A shut-in ever since he had a traumatic experience, Nukui Hibiki's biggest hobby has been using vocalization software to create and uploading songs online. One day, he receives an email from some fifth-grader girls, asking to meet and discuss something with him. The three girls, who have grown up together almost like siblings, ask him to help them show their gratitude to the people who have taken care of them. The method they've devised? Putting on a successful concert at a place full of memories.", + "posterPath": "/aVmLA24NypvwPkh9BGASQlOLuLu.jpg", + "backdropPath": "/oIsR3DFdFQzlWVhKWMe6Va3VAiR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-10", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 28, + "popularity": 1.8167 + }, + { + "id": 29358, + "title": "Heroic Age", + "originalTitle": "ヒロイック・エイジ", + "overview": "When the Golden Race invited other races to join them in the stars, three sentient races answered their call. The Goldens called them the Bronze, Silver and Heroic Tribes. Just before the Gold Tribe left to travel to another Universe, a fourth race appeared, traveling to the stars on their own accomplishments. The Golds named the human race the Iron Tribe. During the passing of time, humanity suffers at the hands of the more dominant races and is now facing extinction. Following a prophecy left by the Gold Tribe, Princess Deianeira sets out to search for the powerful being who might be able to save humankind. She meets a wild haired boy on an abandoned planet—a fateful encounter that will not only change the fortunes of Humanity, but also the fate of the universe.", + "posterPath": "/hz8zrcfXtYCcKWzAV2I3m69Ob04.jpg", + "backdropPath": "/4lYsKnifTWYsm2ghSe2IMrMSIb4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-01", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 11, + "popularity": 1.8165 + }, + { + "id": 70883, + "title": "Love Tyrant", + "originalTitle": "恋愛暴君", + "overview": "A Kiss Note is a powerful notebook that makes anyone who has their name written together will instantly fall in love if they kiss each other regardless of any circumstances. This magical and very familiar item belongs to an angel named Guri whose job as cupid is to create couples. However, she accidentally writes down Aino Seiji, a regular high school student, and unless he kisses someone, Guri will die. She convinces Seiji to go kiss his crush, Hiyama Akane, the school's popular girl who turns out has even stronger feelings for him, bordering on obsessive and psychotic. Eventually Akane and Seiji come together but not before Guri decides that she likes Seiji as well. What seems awesome to most guys becomes hell for Seiji who just wants a normal relationship with girls.", + "posterPath": "/cgIoscnDeI0FZ2w360KmKEle4Rg.jpg", + "backdropPath": "/ikU4jByW52kkSxTIw3w6osz1jEj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-04-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.871, + "voteCount": 35, + "popularity": 1.816 + }, + { + "id": 68312, + "title": "Legend of the Galactic Heroes Gaiden", + "originalTitle": "銀河英雄伝説外伝", + "overview": "Prequel to the original series, focusing on Reinhard and his steps up the chain of command in the Galactic Empire. Also focusing on the FPA's Yang Wen-li. A chronicle on how he earned the title \"The Hero of El Facile\" and his handling of assignments he received after the historic event. Spiral Labyrinth also continues with the background of Reinhard and Kircheis where the first Gaiden left off.", + "posterPath": "/yoz4WKVlLmsDqJPNNegW2LTAwNB.jpg", + "backdropPath": "/wfonVgJaNQsjpbp5afbscZSBmX1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1998-02-09", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 9.1, + "voteCount": 8, + "popularity": 1.8151 + }, + { + "id": 80834, + "title": "Revue Starlight", + "originalTitle": "少女☆歌劇 レヴュースタァライト", + "overview": "Starlight is a play loved throughout the world. Karen and Hikari make a promise with each other when they're young that one day they'll stand on that stage together. Time passes, and now the girls are 16 years old. Karen is very enthusiastic about the lessons she takes every day, holding her promise close to her heart. Hikari has transferred schools and is now away from Karen. But the cogs of fate turn, and the two are destined to meet again. The girls and other Stage Girls will compete in a mysterious audition process to gain acceptance into the revue.", + "posterPath": "/hHtAr8db7knY7eundMhMFqFGkIu.jpg", + "backdropPath": "/q8FbecTZbC95P5xvrGgBzlza140.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2018-07-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 59, + "popularity": 1.8148 + }, + { + "id": 38559, + "title": "Level E", + "originalTitle": "レベルE", + "overview": "Earth has been populated by thousands of aliens from all over the galaxy. While all the other aliens are aware of their presence, it is a secret only from the Earthlings. Baka, the prince of the planet Dogra, crash lands on Earth and loses his memory. He forcibly moves in with Yukitaka Tsutsui, a first year high school student who had just moved out on his own. The normal life he once knew is quickly pulled away as he becomes the target of the prince's torment.", + "posterPath": "/tdhOYnrkZhSr6wiLDWOKIozRhEI.jpg", + "backdropPath": "/zlAzK5qjpP77lPGYKDG0j6SfcDA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2011-01-11", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 53, + "popularity": 1.8146 + }, + { + "id": 117889, + "title": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!", + "originalTitle": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "overview": "Whether at the office or at home, corporate drone Yuji Sano works all the time. So when his home PC flashes a message about him being summoned to another world, Yuji restarts his machine…only to find that he’s inadvertently accepted the summons! Now in a fantasy world far removed from paperwork and computers, Yuji has just one thing on his mind: waking up from what he thinks is a dream and getting back to the mountain of work he left behind! But this other world has other plans for Yuji, who quickly discovers his Monster Tamer character class allows him to befriend slimes! And thanks to their number, those slimes help him absorb so much magical knowledge that he gains a second character class in the blink of an eye! How will Yuji wield his power now that he’s the greatest sage the realm has ever known?! And what about all that paperwork?!", + "posterPath": "/2frM5EXhvwPLnD0eY7RaGCktPTv.jpg", + "backdropPath": "/tP1pjJuBQOrEoYx3FtIl5mfhV5K.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-04", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.325, + "voteCount": 57, + "popularity": 1.8144 + }, + { + "id": 43079, + "title": "Black Rock Shooter", + "originalTitle": "ブラック★ロックシューター", + "overview": "On the first day of junior high school, Mato Kuroi happens to run into Yomi Takanashi, a shy, withdrawn girl whom she immediately takes an interest in. Mato tries her best to make conversation with Yomi, wanting to befriend her. At first, she is avoided, but the ice breaks when Yomi happens to notice a decorative blue bird attached to Mato's phone, which is from the book \"Li'l Birds At Play.\" Discovering they have a common interest, the two form a strong friendship.\n\nIn an alternate universe, the young girls exist as parallel beings, Mato as Black★Rock Shooter, and Yomi as Dead Master. Somehow, what happens in one world seems to have an effect on the other, and unaware of this fact, the girls unknowingly become entangled by the threads of fate.", + "posterPath": "/dBC4N5XvfiJe5KkHT2uLycCrWcf.jpg", + "backdropPath": "/1m3s2Xddnq5MlQzjyJSojSFSLBY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2012-02-03", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 64, + "popularity": 1.8126 + }, + { + "id": 118443, + "title": "Thus Spoke Kishibe Rohan", + "originalTitle": "岸辺露伴は動かない", + "overview": "A popular manga creator becomes enmeshed in paranormal events while conducting research: Stand User Kishibe Rohan visits Italy, goes bankrupt, and more.", + "posterPath": "/6z4PODCyzHvUxH8M1MMrfiwAH6v.jpg", + "backdropPath": "/zQZPwOvnsEW0DtCOrR6TmFmek3H.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 16 + ], + "genres": [ + "Mystery", + "Animation" + ], + "releaseDate": "2017-09-20", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 97, + "popularity": 1.8115 + }, + { + "id": 91585, + "title": "Asteroid in Love", + "originalTitle": "恋する小惑星", + "overview": "In a fateful childhood encounter, Mira Kinohata met a stargazing dreamer named Ao Manaka. Though their time together was short, Ao showed Mira the wonders of astronomy, from orbiting planets to distant stars. Before they parted, Mira learned that a star with her name exists, but there are none with Ao's. And so, she forged a promise: one day, she would discover a new asteroid and name it after Ao.\n\nYears later, Mira is still fascinated with astronomy. Now in high school at Hoshizaki Academy, she tries to join the Astronomy Club. Unfortunately, she finds out that the club has been merged with the Geology Club to form a single Earth Sciences Club. She joins this new club and finds a pleasant surprise—she reunites with Ao after years of separation.\n\nAlongside their new clubmates, Mira and Ao begin their journey together to fulfill their promise. How hard could it possibly be to find an asteroid?", + "posterPath": "/4YBxIk2XrCmS30z4Xrbc0C3Gc2p.jpg", + "backdropPath": "/unWdtguLZ76G8wKzFtktTK96EIz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 20, + "popularity": 1.8094 + }, + { + "id": 210355, + "title": "Mecha-Ude: Mechanical Arms", + "originalTitle": "メカウデ", + "overview": "Hikaru’s ordinary middle school life takes a thrilling turn when he encounters Alma, an alien entity resembling a mechanized limb called Mecha-Ude. Alma, a member of a rare species, is fleeing from a sinister group hunting their kind down in search of one possessing unparalleled power. Tasked by the resistance group ARMS, this unlikely duo will embark on a perilous journey to save the Mecha-Ude.", + "posterPath": "/uryb30IYNtFCovDWKMvr8reFJu2.jpg", + "backdropPath": "/m1Qs7udIu26oQOPjEBQ9GmCpZRd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-10-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.25, + "voteCount": 14, + "popularity": 1.8087 + }, + { + "id": 72510, + "title": "Netsuzou Trap -NTR-", + "originalTitle": "捏造トラップ―NTR―", + "overview": "Yuma, a high school second-year, is enjoying every day now that she has her first boyfriend. After she asks for relationship advice from Hotaru, her beautiful long-time friend who has had many boyfriends, Hotaru teases her for her inexperience and playfully does things to her that even her boyfriend doesn't do. Yuma and Hotaru's secret relationship continues to escalate, and Yuma finds herself unable to deny how it makes her feel. This school drama tells the story of the interwoven lives of these two girls with boyfriends.", + "posterPath": "/lpz9856n8bkJ5kP24pyOhXeGqXN.jpg", + "backdropPath": "/daLLxbBVt8S3j2vCLKFEzvkmIHm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-07-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.9, + "voteCount": 41, + "popularity": 1.8084 + }, + { + "id": 239764, + "title": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "originalTitle": "かつて魔法少女と悪は敵対していた。", + "overview": "An evil organization invades and destroys everything in its path. The brains of the brutal operation is the king’s right-hand man, an evil lieutenant named Mira. Everything changes when a magical girl named Byakuya Mimori tries to stop the evil group in their tracks. When Mira confronts her, he knows it’s love at first sight. What will become of Mira and Byakuya, stuck between orders and love?", + "posterPath": "/r5mp5XoWP9q8fTvx4rLZbC8qtgj.jpg", + "backdropPath": "/rRu0Ogex93Fd3kFzxcLozhHqtZl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 30, + "popularity": 1.8063 + }, + { + "id": 65439, + "title": "Big Order", + "originalTitle": "ビッグオーダー", + "overview": "Ten years ago, a child wished for the destruction of the world. Now, a group of people has the ability to grant their wishes depending on their power. They are called \"Order User.\" Before these great people who have the power of \"Order,\" one person excels the most with the ability to rule and conquer the world and turn people into puppets when it is in his jurisdiction. This power belongs to Hoshimiya Eiji, who is also responsible for the destructive phenomena that happened exactly ten years ago.", + "posterPath": "/n5jDsiekbTmfk8ZwxEOFGPUJzek.jpg", + "backdropPath": "/mhQcxQMyNpuW6OUZ0lN7W3eioGh.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-04-16", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 44, + "popularity": 1.8055 + }, + { + "id": 88805, + "title": "Are You Lost?", + "originalTitle": "ソウナンですか?", + "overview": "A disastrous school trip leaves four students stranded on an uninhabited island. Staying alive on a deserted island is easy for Homare, thanks to her survivalist father's training. While the others struggle, she shows them that being isolated may not be as dreadful as they thought.", + "posterPath": "/j6ptupwJU5MmSfaSYfr8fvAYdev.jpg", + "backdropPath": "/9SJNBYlFPVmh9qlu0LXNahY7sP2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2019-07-02", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 212, + "popularity": 1.8054 + }, + { + "id": 45544, + "title": "Scrapped Princess", + "originalTitle": "スクラップド・プリンセス", + "overview": "Pacifica Casull is the most feared and hated person by the followers of the God Mauser. Known as the Scrapped Princess, she is the poison that will destroy the world. To avoid being killed by the zealots of Mauser, Pacifica and her adoptive brother and sister leave the village of Manhurin. Her brother, Shannon, is an expert with the sword while Racquel is proficient with magic. At every step of the way, however, someone is constantly trying to kill Pacifica, hoping to somehow avert the catastrophe that is supposed to befall the world on her 16th birthday.", + "posterPath": "/n3bg5yxmvEYcIFm2JWvchHEq7wz.jpg", + "backdropPath": "/vu2ZJJT41NCwjiqzHBQPfHJFetU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-04-08", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 21, + "popularity": 1.8051 + }, + { + "id": 60812, + "title": "The Kawai Complex Guide to Manors and Hostel Behavior", + "originalTitle": "僕らはみんな河合荘", + "overview": "Kazunari Usa finally has a place of his own at the Kawai housing complex. Unfortunately, his roommate is a total weirdo and a massive pervert! But life at the Kawai Complex isn’t all that bad with his dream-girl Ritsu living right down the hall.", + "posterPath": "/27RMvY3rqgvOABcz0sNwitPIyQZ.jpg", + "backdropPath": "/82d5MWUZbmXY3YMCfNTxFSdAGEH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 29, + "popularity": 1.8044 + }, + { + "id": 72504, + "title": "Battle Girl High School", + "originalTitle": "バトルガール ハイスクール", + "overview": "Set in the year 2045. The world has been contaminated by Irousu (mysterious invaders who suddenly appeared), and humans find themselves restricted and contained. Standing boldly against these invaders are ordinary girls everywhere, without a powerful army or even weapons.", + "posterPath": "/hdZ035bWBbT5ca08Pbfcx7pU2Dk.jpg", + "backdropPath": "/wttRma4aouH9exEAJEByFRNHQkD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-07-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.857, + "voteCount": 7, + "popularity": 1.8043 + }, + { + "id": 88062, + "title": "Wasteful Days of High School Girls", + "originalTitle": "女子高生の無駄づかい", + "overview": "One day out of boredom, Tanaka decided to give her classmates nicknames based on their quirks. Her friend Kikuchi became \"Ota\" for her nerdy interests, and her other friend Saginomiya became \"Robo\" because of her expressionless personality. In retaliation, her friends decided to name Tanaka \"Baka.\" These are the ridiculous days of three high school friends claiming (or not) the height of their youth.", + "posterPath": "/55EyJpb8M7kwjOJvqhAzBZw78DB.jpg", + "backdropPath": "/Av0ddR5u6xkJQQgzHR3kGHIuT6m.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-07-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.485, + "voteCount": 33, + "popularity": 1.803 + }, + { + "id": 61384, + "title": "Zetman", + "originalTitle": "ゼットマン", + "overview": "The story starts off with a face-off between two rival heroes, ZET and ALPHAS, and then traces their origins - Jin Kanzaki, a young man with the ability to transform into a superhuman being known as ZET, and Kouga Amagi, a young man with a strong sense of justice who uses technology to fight as ALPHAS.\n\nThe fates of these two men and those around them intertwine as they fight to protect mankind and destroy monstrous abominations known as Players.", + "posterPath": "/cujranWhuh2d6iKw88hgVQvGWJe.jpg", + "backdropPath": "/zvXBRGzw5RzhG7IRkldCDJRIdZD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-03", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 23, + "popularity": 1.803 + }, + { + "id": 42716, + "title": "My-Otome", + "originalTitle": "舞-乙HiME", + "overview": "In the distant future on the planet Earl, colonized by immigrants from Earth centuries ago. \"Old technology\" has survived in the form of nanomachines that allow female virgins wield Highly-advanced Materializing Equipment (HiME) and become Meister Otomes - bodyguards and warriors that serve the royalty of various kingdoms.\n\nArika Yumemiya has come to Windbloom Kingdom in search of her mother, whom Arika knows was an Otome. On her arrival she meets the top Coral Otome student, Nina Wáng, and Windbloom's heir to the throne, Mashiro Blan de Windbloom. The series follows Arika's progress as a student at Garderobe Academy and the machinations of those desiring the destructive power of the old technology for themselves.", + "posterPath": "/uSAZrDrR8sySebreeK4FPfjyL0i.jpg", + "backdropPath": "/5xluokTgSt2Pk4bc34wiDzMymFY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-10-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.235, + "voteCount": 17, + "popularity": 1.8016 + }, + { + "id": 29540, + "title": "Zoids: New Century", + "originalTitle": "ゾイド新世紀/ゼロ", + "overview": "New Century Zero takes place a long time after the events of Zoids: Chaotic Century. Zoids are no longer used for warfare; instead, the combative natures of both Zoids and humans are focused and contained by a series of battle-competitions and tournaments, run by the Zoid Battle Commission.\n\nThe series focuses on the Blitz Team, in particular the actions of the Liger Zero and Bit Cloud. The series charts the rise of the Blitz Team through various competitions of the Zoid Battle Commission, and the team's efforts to avoid conflict with the criminal organization known as the Backdraft Group.", + "posterPath": "/qhECcT3SSeChVIuWYgRGJDx5RI0.jpg", + "backdropPath": "/9KSAK3kctQwIJRVjGHwDoiJHvaX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2001-01-06", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 10, + "popularity": 1.8013 + }, + { + "id": 55006, + "title": "Flowers of Evil", + "originalTitle": "惡の華", + "overview": "The corrupt pure-love story revolves around Kasuga Takao, a bookish boy who loves the poems of Charles Baudelaire (the original author of the poetry collection \"Les Fleurs du mal\" or \"Flowers of Evil\"). One day after school, he discovers and steals the gym clothes of Saeki Nanako, the girl he has a crush on. However, he learns that Nakamura Sawa, a girl he loathes, happens to catch him in the act. Nakamura blackmails Kasuga into a contract, or else she will reveal his secret.", + "posterPath": "/4RsLvxekEHDVxNc12HjNTXuBDNA.jpg", + "backdropPath": "/ftlzdzCU0xWuBHppSf7h46B2KZe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2013-04-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 50, + "popularity": 1.7993 + }, + { + "id": 232022, + "title": "Grendizer U", + "originalTitle": "グレンダイザーU", + "overview": "Following a devastating attack by Vega's forces on planet Fleed, Duke Fleed, and Grendizer escaped to Earth. When he got there, Dr. Amon, the head of the Space Research Center, adopted him and gave him the name Daisuke. While they were working side by side in the center on a quest to find out what strange objects appeared in the city's sky! They were surprised by an attack that jolted Daisuke's memory.", + "posterPath": "/3zOp5TuOi4XKSpS7rjAYHf17mRD.jpg", + "backdropPath": "/3gl7e3XhnGM39SpX7W5iRIq02TR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 6, + "popularity": 1.7971 + }, + { + "id": 42502, + "title": "Brave 10", + "originalTitle": "ブレイブ・テン", + "overview": "Brave 10 is a manga series by Kairi Shimotsuki, serialized in Media Factory's Comic Flapper from 2007 to 2010. The series was resumed on June 15, 2011 and retitled Brave 10 Spiral, better known as Brave 10 S, serialized in Monthly Comic Gene. An anime adaptation by Studio Sakimakura and TMS Entertainment began airing on January 8, 2012. The original manga series is licensed by Tokyopop, though no volumes have been released as of 2012. The series is based on the legendary Sanada Ten Braves, a group of ninja that assisted warlord Sanada Yukimura during the Sengoku period of Japan. The series had been licensed for streaming on Crunchyroll.", + "posterPath": "/uCzjlnQhPoVLaB6iXyJK28BjAIj.jpg", + "backdropPath": "/u0E8ddA9pegz84MhANS9EgXAMdW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2012-01-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 23, + "popularity": 1.7968 + }, + { + "id": 67012, + "title": "NEW GAME!", + "originalTitle": "NEW GAME!", + "overview": "After graduating high school, Suzukaze Aoba joins Eagle Jump, the game company that developed Fairies Story, the game she obsessed over as a kid. On her first day as a working member of society, Aoba heads to work swaying in a packed, morning rush hour train. She manages to get to the office building all right but hesitates, wondering if it was really okay for her to take that last step and go inside. That's when a senior member of staff, Toyama Rin, shows up at work and safely leads Aoba inside the offices of Eagle Jump.", + "posterPath": "/poofcdbJHBTsv6S9UHdX0LrPPhw.jpg", + "backdropPath": "/dUx5gcp7WtculstUThA51GLtZVs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 52, + "popularity": 1.7953 + }, + { + "id": 86034, + "title": "Arifureta: From Commonplace to World's Strongest", + "originalTitle": "ありふれた職業で世界最強", + "overview": "Hajime Nagumo and his high school class are suddenly summoned to a fantastical land as heroes. But while most of his classmates have powerful stats and abilities, Hajime does not. Underappreciated and unprepared, he tumbles into the depths of a monster-infested dungeon where voracity and sacrifice are his only options. To thrive in this savage world, he’ll have no choice but to welcome the abyss.", + "posterPath": "/3Te6pYJNdh4YyWY1G7ANxNHpedi.jpg", + "backdropPath": "/1lL1ts7dzTUp0eOTHvMqfw6zFJn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.446, + "voteCount": 616, + "popularity": 1.7952 + }, + { + "id": 83104, + "title": "Magical Girl Spec-Ops Asuka", + "originalTitle": "魔法少女特殊戦あすか", + "overview": "Due to the invasion of Disas—enigmatic creatures of soil from the land of the dead—mankind, who was on the verge of crisis, was saved by the efforts of magical girls who had obtained a mysterious magical power...\n\nThree years later, new incidents suddenly occur, tearing apart the normalcy of the girls who had each returned to their normal lives. The saviours of humanity, those magical girls called \"The Magical Five\" now live each day fighting for their lives, even as they are trifled with by fate...", + "posterPath": "/kQdLe1kjvIBei1J4dt7XKYULBsX.jpg", + "backdropPath": "/gOwbUaolUnRyS2IOvtysc18Hqhb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2019-01-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 20, + "popularity": 1.7938 + }, + { + "id": 34162, + "title": "True Tears", + "originalTitle": "true tears", + "overview": "Shinichiro is a student living in what would be a dream come true for most high school boys, but for him is mostly a frustration. A well liked girl in school named Hiromi has lived in his house for a year along with his family. Her father was a close friend of the family, and when he died they immediately took her in. She is popular and well liked, always smiles, is talented in sports- but Shinichiro knows there must be tears inside her. Having an artistic tendency, he makes watercolours of her and thinks about wishing to ease her tears. Yet he cannot bring up the nerve to talk to her even in his own home. She, too, is quiet and withdrawn in their house, quite unlike at school. Shinichiro is also distracted by teasing from his friend Nobuse for watching Hiromi from afar, a curse of bad luck from a strange girl named Noe, and being forced to perform Muhiga dancing. By helping Noe he hopes to ease his own problems, yet he seems to have difficulty helping himself.", + "posterPath": "/ni8LxxOvCq9CadRt3WpqoiBgyX0.jpg", + "backdropPath": "/ko38jWFU9T8RI2h4CYXticEWXAR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2008-01-06", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 22, + "popularity": 1.7937 + }, + { + "id": 72026, + "title": "Love and Lies", + "originalTitle": "恋と嘘", + "overview": "In a futuristic society, Japan has implemented a complex system referred to as \"The Red Threads of Science\" to encourage successful marriages and combat increasingly low birthrates. Based on a compatibility calculation, young people at the age of 16 are assigned marriage partners by the government, with severe repercussions awaiting those who disobey the arrangement. For Yukari Nejima, a teen that considers himself average in every way, this system might be his best shot at living a fulfilling life.\n\nHowever, spurred by his infatuation for his classmate and long-time crush, Misaki Takasaki, Yukari defies the system and confesses his love. After some initial reluctance, Misaki reciprocates his feelings in a moment of passion. Unfortunately, before the two can further their relationship, Yukari receives his marriage notice. He is then thrown into a confusing web of love and lies when his less-than-thrilled assigned partner, Ririna Sanada, becomes fascinated with his illicit romance.", + "posterPath": "/ejqfETzpBBnR89btARDKrLsv8dp.jpg", + "backdropPath": "/mQLTfx0TCQgDbwOjIZIgaanQmq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-07-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 47, + "popularity": 1.7934 + }, + { + "id": 256109, + "title": "Teogonia", + "originalTitle": "神統記", + "overview": "Humans fight to protect their land from invading demi-human tribes in relentless battles. As his world is engulfed by intense warfare, Kai, a village boy from Lag, joins the fight to defend all he knows. After Kai’s comrades fall one by one and he’s injured, he suddenly recalls memories from another life. A fantasy tale unfolds as a village boy explores a world of magic, mystery, and heroism.", + "posterPath": "/zGHrnnFc0p5Pf25qUaAv95JpnJC.jpg", + "backdropPath": "/4gcAg5Y47J4BPgrTHRTpoEolQmd.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 18, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama", + "Animation" + ], + "releaseDate": "2025-04-12", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.056, + "voteCount": 9, + "popularity": 1.791 + }, + { + "id": 68639, + "title": "Tenchi Muyo! War on Geminar", + "originalTitle": "異世界の聖機師物語", + "overview": "The story is set in an alternate world called Geminar, where countries have fought endless wars with replicas of humanoid Seikishi weapons that they found in ancient ruins. 15-year-old Kenshi Masaki, the half-brother of Tenchi Muyo! protagonist Tenchi Masaki, is summoned from another world to Geminar.", + "posterPath": "/2GzOTBaTdxXh3fAnEZI85zadmu9.jpg", + "backdropPath": "/3tOAWHfm7BjGTCbGqeS23ELtm2I.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35, + 18, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Drama", + "War & Politics" + ], + "releaseDate": "2009-05-22", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.471, + "voteCount": 17, + "popularity": 1.7877 + }, + { + "id": 30146, + "title": "Wangan Midnight", + "originalTitle": "湾岸ミッドナイト", + "overview": "After losing a street race to Tatsuya Shima's legendary \"Blackbird\" Porsche 911 Turbo, high school student Akio Asakura purchases a heavily-modified first-generation Datsun S30 Fairlady Z from a junkyard. The car has a dark history of accidents, leading some to believe it's cursed; hence its nickname \"Devil Z.\" Akio also discovers that the Z's first owner shared his first and last name, and was killed in the car during a race with the Blackbird. Meanwhile, fashion model Reina Akikawa joins the rivalry between Akio and Tatsuya with her modified Nissan Skyline GT-R R32.", + "posterPath": "/5s1pWUZnjtufXMlaUb1YaIzG6Rb.jpg", + "backdropPath": "/hkKVMLmkW3kbsfFbg3YHUMtRyDk.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2007-06-14", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.625, + "voteCount": 8, + "popularity": 1.7875 + }, + { + "id": 231677, + "title": "GOOD NIGHT WORLD", + "originalTitle": "グッド・ナイト・ワールド", + "overview": "Four miserable members of a dysfunctional household have no idea that they've formed a happy family unit in an immersive VR game — with each other.", + "posterPath": "/k91PSMjahbvSOIJ1oB9BxjFDDRH.jpg", + "backdropPath": "/45Usq8tvBj9DOU3tsZBnd19RmtT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-12", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.869, + "voteCount": 42, + "popularity": 1.7871 + }, + { + "id": 80562, + "title": "Seven Senses of the Re'Union", + "originalTitle": "七星のスバル", + "overview": "In the popular MMORPG world 'Union' there existed a legendary party named Subaru. This party, made up of a group of childhood friends and elementary schoolers, exceeded the limits of the game with their various senses. However, due to an incident which resulted in a death, 'Union' ended its service and the group of childhood friends went separate ways. Six years later, highschooler Haruto logged into the new 'Reunion' and reunited with a single girl. Asahi—one of old 'Subaru' party members, and his childhood friend who should have died six years ago. Is she a digital ghost, or...?", + "posterPath": "/t0fq29g3hFitgoq15aXbLH4FVOf.jpg", + "backdropPath": "/dMNp1mpINDRaUm1FkYHKX2Vk8iY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-07-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 21, + "popularity": 1.7865 + }, + { + "id": 103319, + "title": "The Day I Became a God", + "originalTitle": "神様になった日", + "overview": "At the end of the last summer vacation of high school, Youta Narukami spends his days preparing for the university entrance exams, when a young girl named Hina suddenly appears, proclaiming herself as the \"god of omniscience.\" Youta is confused and does not believe Hina when she tells him \"The world will end in 30 days.\" After witnessing Hina’s God-like predictive ability, Youta begins to believe her powers are real. Hina, who is innocent and childlike despite her supernatural powers, decides for some reason to stay at Youta’s home. Thus begins the start of their lively summer before the end of the world.", + "posterPath": "/nWSF0C4X8rdLdJgaiuUdWemSm23.jpg", + "backdropPath": "/rO2ESk0mruU9T58SDE8DQUDgaEl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 155, + "popularity": 1.7853 + }, + { + "id": 91269, + "title": "High School Prodigies Have It Easy Even in Another World!", + "originalTitle": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "overview": "Seven high school students that got caught in an airplane accident wake up, in a middle age like fantasy different world where magic and beast-man (juujin) exist.\n\nBut they do not panic at their current situation!?\n\nThey build a nuclear plant in a world without electricity, they control the economy of a large city in a short work's trip, and finally for their benefactor's sake who are suffering from the misgoverment, they declare war on the evil nobles.\n\nSo... none of them is a normal high school student, each of them are super human high school students that stand at the top of politics, economics, science and medicine!\n\nThis is a story of a dream team that possess earth's greatest wisdom and technology, that without any self-restraining bring a revolution to a different world with over-technology", + "posterPath": "/8uapInBBn7otCQRAbjkUJxniIp7.jpg", + "backdropPath": "/9lKLhohyOLxPviu2aRkA0eJli5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2019-10-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 47, + "popularity": 1.7832 + }, + { + "id": 88796, + "title": "Charge! Men's Private School", + "originalTitle": "魁!!男塾", + "overview": "Otokojuku, a private school for juvenile delinquents that were previously expelled from normal schools. At this school, Japanese chivalry is taught through the feudal and military fundamentals. Similar to an action film, the classes are overwhelmed by violence. Only those who survive it become true men.", + "posterPath": "/dPy8BHh6BjI3m5jzOon4ClhilZk.jpg", + "backdropPath": "/v6plLmAf4qs19qF5J6ZBqger6ct.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1988-02-25", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 7, + "popularity": 1.7821 + }, + { + "id": 67054, + "title": "Ange Vierge", + "originalTitle": "アンジュ・ヴィエルジュ", + "overview": "The story of the card game follows what happens when \"Hairou\" portals suddenly open, fusing five different worlds together. As a result, various mysterious \"Exceed\" powers are awakened in teenaged girls. An academy for these so-called \"Progress\" girls is built on the isolated Seiran Island in the Pacific.", + "posterPath": "/4ZrS6g3H6fKr6gG9d7JZRbpxGtg.jpg", + "backdropPath": "/vShB3UCgE5vQZnuFReS8D1kZnDn.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 12, + "popularity": 1.7813 + }, + { + "id": 257609, + "title": "Farmagia", + "originalTitle": "FARMAGIA (ファーマギア)", + "overview": "In Felicidad, farmers known as the Farmagia raise monsters under the peaceful rule of the Magus Diluculum. After the Magus passes, a power struggle erupts among forces using monsters to seize control. In the town of Centvelt, Farmagia Ten and his friends band together against the despotic new ruler, Glaza. Ten, his friends, and their home-grown monsters must stay strong to defend their freedom.", + "posterPath": "/iSIwGUp5E1T4nCEHu5qi11kVpxd.jpg", + "backdropPath": "/frVCVjVB4LDUMVpN0ADgAirfC6V.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2025-01-10", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.167, + "voteCount": 12, + "popularity": 1.781 + }, + { + "id": 20784, + "title": "The Three Musketeers", + "originalTitle": "アニメ三銃士", + "overview": "D'artagnan leaves Gascone and his grandparents to go to Paris to be a musketeer like his father was...", + "posterPath": "/y8vJr7MZvEzeSWfssbXNLTHCeRz.jpg", + "backdropPath": "/jpC1RG5JoDaXkrhATxnV5KJlxx.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1987-10-09", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 1.7801 + }, + { + "id": 93688, + "title": "Smile Down the Runway", + "originalTitle": "ランウェイで笑って", + "overview": "Chiyuki Fujito was going to be a professional runway model until she stopped growing. Poor Ikuto Tsumura is not even sure if he wants to be a fashion designer because of his family responsibilities. Faced with overwhelming adversity, they need to decide if their dreams are worth pursuing. It’s not impossible – they’ll just have to be creative in how they get there!", + "posterPath": "/oBxWnS366SFPRZJNjjI24XpYZmU.jpg", + "backdropPath": "/vHCBQF76npbzJPRPDFWzfA4INf1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2020-01-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.25, + "voteCount": 56, + "popularity": 1.7793 + }, + { + "id": 68574, + "title": "The Disappearance of Nagato Yuki-chan", + "originalTitle": "長門有希ちゃんの消失", + "overview": "In an alternate universe, shy, awkward Yuki Nagato attempts to court her crush, Kyon, with the help of her best friend and neighbor, the perky and indomitable Ryoko Asakura. Together, the trio defends their high school literature club from extermination…and from the pestering of their over-the-top classmate Tsuruya and her friend and minion Mikuru.", + "posterPath": "/1usg5ElzRxorATTr5ImYBj6fj3D.jpg", + "backdropPath": "/7X1jnjSbUIbvozMc0tJ0kh7PDp9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 82, + "popularity": 1.7793 + }, + { + "id": 137811, + "title": "Technoroid OVERMIND", + "originalTitle": "テクノロイド オーバーマインド", + "overview": "Four ownerless androids shack up in an abandoned house, but with no electricity to recharge themselves, they face the threat of a forced shutdown. To get utilities up and running, they rally together to perform at Babel, the epicenter of entertainment where singers sing their way through a tournament for prize money. Will this android boy band have what it takes?", + "posterPath": "/rn48CHpHBLcx0p9oa08AvIPuS8C.jpg", + "backdropPath": "/msNwFAY23pJOLG5x971cL2YgWBg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 6, + "popularity": 1.7788 + }, + { + "id": 212053, + "title": "A Girl & Her Guard Dog", + "originalTitle": "お嬢と番犬くん", + "overview": "Isaku just wants to live a normal life. But as the granddaughter of a yakuza boss, that’s a pretty tall order. For years, it’s been difficult for Isaku to make friends and find love. So, she decides to enroll in a high school far from her hometown in hopes of a fresh start. But her plans take an unexpected turn when a worried member of the yakuza, Keiya, enrolls in the same school to protect her.", + "posterPath": "/kH1gkpmAW1timu2FOuiso5Hfs2M.jpg", + "backdropPath": "/gRfOceFnUcsOfw1bSn7E734ffYB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-09-29", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 21, + "popularity": 1.7779 + }, + { + "id": 19238, + "title": "Oruchuban Ebichu", + "originalTitle": "おるちゅばんエビちゅ", + "overview": "Ebichu the hamster seems like the perfect house pet: she cleans, shops, cooks, does laundry, and anything to please her master, known only as \"Office Lady\" (OL). Unfortunately, OL and her unfaithful boyfriend, combined with Ebichu's uncontrollable exuberance and love for ice cream, often earn her severe and bloody punishment. However, Ebichu doesn't seem to mind the abuse if she achieves her goal of making her beloved master a little bit happier.", + "posterPath": "/eibWpEh9TdoDdMRM4yrc9UwfPHu.jpg", + "backdropPath": "/3DQQy0wnyIXRJv2esTfIV1xmQMo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-08-01", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 18, + "popularity": 1.7779 + }, + { + "id": 44310, + "title": "11eyes", + "originalTitle": "イレブンアイズ", + "overview": "Satsuki Kakeru lost his sister by suicide and has been living a dull life ever since then. One day, he is transported into a bizarre world \"Red Night\" along with his friend Minase Yuka. In order to survive and escape from Red Night, he fights against Dark Spirits (Ralva) and Black Nights.", + "posterPath": "/6mRx6i58ffk1RMhnQGOYkj0PDOu.jpg", + "backdropPath": "/q5rJomk2giO7hElCRLxoNyI1cen.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-07", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.485, + "voteCount": 65, + "popularity": 1.7758 + }, + { + "id": 34768, + "title": "Najica Blitz Tactics", + "originalTitle": "ナジカ電撃作戦", + "overview": "Najica, perfumer and secret agent, is sent out on a number of recovery missions to round up rogue androids with combat abilities. Najica is assigned an android partner, Lila, whom Najica is to groom as an agent and receive assistance from along the way.", + "posterPath": "/xwYQv2nqVbAbs9lpsgDV9SU2kCq.jpg", + "backdropPath": "/d6rZgnKZ583x4hHRqPCA2kRdwqr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-10-05", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 10, + "popularity": 1.7747 + }, + { + "id": 80665, + "title": "Hi Score Girl", + "originalTitle": "ハイスコアガール", + "overview": "The year is 1991 and 6th grader Yaguchi Haruo only has video games to live for. He's not popular in school and he's neither handsome, funny, nice nor even friendly. The only thing he has going for him is that he is good at video games. One day at the local arcade, he plays Oono Akira, a fellow classmate but who's popular, smart, pretty and a rich girl that absolutely destroys him at Street Fighter II. Not only does he lose to her 30 times in a row, he can’t beat her at any game. Haruo can’t seem to shake Akira off as she follows him from arcade to arcade everyday after school and beats him every time. As weird as it sounds, the odd couple begins a strange bond and friendship.", + "posterPath": "/oGHR5DXFHIWc9xGwvTmxo2dHwr2.jpg", + "backdropPath": "/7hqQU3PDMwUaRlnNNeYY8DjIqIR.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-07-14", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.047, + "voteCount": 181, + "popularity": 1.7739 + }, + { + "id": 80561, + "title": "Phantom in the Twilight", + "originalTitle": "ファントム イン ザ トワイライト", + "overview": "The reverie of a girl who fights her destiny and the \"Shadow Guardians.\" The stage is modern-day London, in a world where the fears and anxieties of people give birth to inhuman shadows. A foreign student gets embroiled in an outlandish incident as soon as she sets foot on English soil. Seeking help in a city where she knows no one, she wanders into a quaint cafe that has quietly remained open in the dead of night: Cafe Forbidden. It is a place where the guardians of the border between human and shadow gather.", + "posterPath": "/svQgyQM9mnEeQC8KtbNvU6Bhs76.jpg", + "backdropPath": "/nXL2w7Lvd4fCseWwN46oiO2disF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 9648, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery", + "Animation" + ], + "releaseDate": "2018-07-09", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 11, + "popularity": 1.7721 + }, + { + "id": 80826, + "title": "Happy Sugar Life", + "originalTitle": "ハッピーシュガーライフ", + "overview": "Satou Matsuzaka, a girl who has never loved anyone before, falls in love with a girl named Shio Koube. The two girls are drawn to each other, and begin a happy life together. Satou won't let anyone endanger their new life, and would do anything for love, even if it means threatening, confining, or killing someone.", + "posterPath": "/51nw1Oor0iiXCwp2ieYuY3WQ9vt.jpg", + "backdropPath": "/h8EX4uA0itnHWJEsY2E90LCyzck.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2018-07-14", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 131, + "popularity": 1.772 + }, + { + "id": 69282, + "title": "Interviews with Monster Girls", + "originalTitle": "亜人ちゃんは語りたい", + "overview": "The story takes place in an age where \"Ajin\" (demi-human), more casually known as \"Demi,\" have slowly started to become accepted into human society. Tetsuo Takahashi is a biology teacher who ends up teaching three such Demi, hoping to understand more about them while also managing to catch their attention.", + "posterPath": "/tm5UMGq9HA958N4ophH38YyqfWv.jpg", + "backdropPath": "/h9tw0s43DMqH3prCCPaYteL0cqk.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.176, + "voteCount": 54, + "popularity": 1.7716 + }, + { + "id": 68115, + "title": "The Numbers", + "originalTitle": "ナンバカ", + "overview": "Four men are assigned to the prison: Jūgo, a man who attempted to break out of prison and ended up extending his jail time; Uno, a man who likes to gamble with women; Rock, a man who likes to get into fights; and Nico, a man who likes anime.", + "posterPath": "/deAAWfBOx5ObJji03bEv19pY9u5.jpg", + "backdropPath": "/kA0PPNoPfqV2B9sLMfzR4IzDMbd.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-10-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 24, + "popularity": 1.7714 + }, + { + "id": 97825, + "title": "The Garden of Sinners", + "originalTitle": "空の境界", + "overview": "This is the 2013 TV edition of the film series.\n\nAfter lying in a coma for two years, Shiki Ryougi awakens with amnesia. Inexplicably, she finds that she has also obtained the “Mystic Eyes of Death Perception” in which she can see the invisible lines of mortality that hold every living and non-living thing together. In this modern occult-action thriller, Shiki must tackle supernatural incidents while searching for her purpose for living.", + "posterPath": "/fnDXXa40YaFcWQ4BhEoMMVgTDo6.jpg", + "backdropPath": "/cpNySYC0fPaEGLgvK4XGalupzyg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 9648 + ], + "genres": [ + "Animation", + "Crime", + "Mystery" + ], + "releaseDate": "2013-07-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 10, + "popularity": 1.769 + }, + { + "id": 56081, + "title": "Photokano", + "originalTitle": "フォトカノ", + "overview": "During Kazuya Maeda's first year of high school he felt like a nobody, just another forgotten face shuffling through the crowded hallways. Even his best friend from childhood, Nimi, seemed somehow more difficult to approach, since she had matured a little quicker in the unsettling way that girls have a habit of doing. However, this year, things will be different for Kazuya, and part of that change may just be because of the big new chick magnet hanging in front of him: The used digital SLR he just received from his dad! But will just having a camera be enough to make talking to girls a snap? Well, if he stays focused and proves to be good enough at making them look good, it might just be! And since it's digital, there are no negatives or having to wait for things to develop! Will Kazyuya's new stock-in-trade click with the most beautiful girls in school, or will his career as a lensman be just a flash in the pan?", + "posterPath": "/m8U1WcV6N1uQ0KmN5hTzwpZmXJg.jpg", + "backdropPath": "/iPs05JqfE9XF5Q7f2QZbIrvwtWw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-04-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 18, + "popularity": 1.7686 + }, + { + "id": 45287, + "title": "Mad Bull 34", + "originalTitle": "マッド★ブル34", + "overview": "Rookie Police Officer Daizaburo \"Eddie\" Ban joins New York's 34th precinct where he is partnered up with John Estes, also known as Sleepy to his friends and Mad Bull to everyone else. Mad Bull usually solves crimes using extreme violence and very unpoliceman-like behaviour which always gets him in trouble with the 34th precinct and his partner Daizaburo. Despite Mad Bulls questionable methods for solving crime he always has a good reason for what he did and together him and Daizaburo try to make New York a safer place for everyone.", + "posterPath": "/jTPqEKJDnv2yPIRt4tUHcuV3mcU.jpg", + "backdropPath": "/nhmWDwTHd9rM2PoJQZ46PNWh1LW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 80 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Crime" + ], + "releaseDate": "1990-12-21", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 19, + "popularity": 1.7685 + }, + { + "id": 80237, + "title": "Genocyber", + "originalTitle": "ジェノサイバー 虚界の魔獣", + "overview": "As the nations of the world begin to merge, world peace is threatened by the private armies of individual corporations. The Kuryu Group has just discovered a weapon that will tip world power in their favor. The Genocyber: a nightmarish combination of cybernetics and psychic potential. Many desire to control this monstrosity, but can its hatred be contained... Battle erupts, and the cyberpunk world of the future is about to explode with violence.", + "posterPath": "/jWyy5jpwqsmbm3g87JMbIPcyDuf.jpg", + "backdropPath": "/Dhi7D5Z49MJpJw78h72i9N2ixs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-05-24", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 1.7676 + }, + { + "id": 86919, + "title": "Sarazanmai", + "originalTitle": "さらざんまい", + "overview": "After accidentally breaking a statue of the guardian god of the Asakusa district, middle school students Kazuki, Toi and Enta are transformed into kappas -creatures from japanese folklore- by Keppi, self-proclaimed prince of the Kappa Kingdom. If they want to regain their human form, they must collect the five Dishes of Hope for him, which fulfill the wishes of whoever possesses them. To do so, they will fight against the kappa-zombies and extract their \"shirikodama\", the mythical organ containing humans' deepest desires. Two policemen, Reo and Mabu, are the ones behind this evil scheme, turning humans into zombies as agents of the Otter Empire, enemy of the Kappa Kingdom since ancient times. In the guise of \"Kappazon, Inc.\", they control society by manipulating the desires of the masses for their own goals. To succeed in their mission, the boys must be connected through the \"Sarazanmai\", revealing their most intimate secrets in the process...", + "posterPath": "/fRWF8xDA9ZGuvbFE8NLGZoBRuqK.jpg", + "backdropPath": "/xAUgzFrOC28qY7bEB5cRuCfCgwF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2019-04-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 27, + "popularity": 1.7662 + }, + { + "id": 77698, + "title": "Comic Girls", + "originalTitle": "こみっくがーるず", + "overview": "Kaoruko Moeta is a 15-year-old high school student and 4-panel manga artist. After moving to a dorm especially for female manga artists, she meets shoujo manga artist Koyume, teen romance manga artist Ruki, and shounen manga artist Tsubasa. Every day, they'll work all through the night trying to ink and finish their work!", + "posterPath": "/p2EkZNwx5ywBKHZRvxeYVdO1Lje.jpg", + "backdropPath": "/lh5sBKS2VCNsi5dICjCtdl9diGA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-04-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.484, + "voteCount": 32, + "popularity": 1.7659 + }, + { + "id": 34671, + "title": "Mokke", + "originalTitle": "もっけ", + "overview": "This is a story about two sisters: Shizuru is a high school student who is able to see ghosts while her younger sister, Mizuki, is haunted by these apparitions. Frustrated by their abilities, their parents decided to entrust the sisters into the care of their grandparents who live in the countryside. As they adapt to life in the countryside, Shizuru and Mizuki begin to learn about the importance of coexisting nature with these apparitions.", + "posterPath": "/rKK9ZkMgGh2oeB2FiG00fnkaS2w.jpg", + "backdropPath": "/qRjneIDImlRDtFXByJCZmkW08VY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2007-10-02", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 6, + "popularity": 1.7656 + }, + { + "id": 244652, + "title": "TASUKETSU -Fate of the Majority-", + "originalTitle": "多数欠", + "overview": "The game began suddenly. It was \"Tasuketsu,\" a brutal survival game in which the majority is eliminated. In order to fight back against the immensely powerful emperor masterminding the game, young men and women create their own futures using the mysterious special ability known as \"Special Right.\"", + "posterPath": "/jCnQloYIWCbSdP6oFyJR5VeHak0.jpg", + "backdropPath": "/iiM6BlgPiDA1KE8jRM6thXydCOw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Mystery" + ], + "releaseDate": "2024-07-03", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 4.167, + "voteCount": 6, + "popularity": 1.7646 + }, + { + "id": 39435, + "title": "[C] The Money of Soul and Possibility Control", + "originalTitle": "「C」", + "overview": "Kimimaro works two jobs to make ends meet. He could go from pauper to prince in a parallel world called the Financial District—if he’ll invest his future as collateral in a dangerous game. Winning gets you more wealth, but losing could erase you from existence. When the destructive forces at play compel Kimimaro to confront the most powerful player, can he save the real world from total collapse?", + "posterPath": "/qtJi38lUQut2USuI07A1dX4KJ3D.jpg", + "backdropPath": "/zCUVArvmCxbMDMAqrVwP6BFN3J5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-15", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.771, + "voteCount": 83, + "popularity": 1.764 + }, + { + "id": 106126, + "title": "Oh, Suddenly Egyptian God", + "originalTitle": "とーとつにエジプト神", + "overview": "Welcome to the world of the Egyptian gods.\n\nThis is where the famous gods of Ancient Egypt, from Anubis to Thoth, live their lives freely.\n\nHow freely, you ask? Bastet appears out of nowhere, singing and dancing. Medjed is always stone-faced. Horus works a part-time job. Set is devoted to pulling pranks. Ra's off traveling and rarely comes home... All the Gods basically just do whatever they want!\n\nThese cute mascot Egyptian deities make the most of their unrestrained divine lives. The extremely popular characters of \"Oh, Suddenly Egyptian God\" now have their own anime!", + "posterPath": "/1LsPEKs6IyzZ71IppJMXCLRe31z.jpg", + "backdropPath": "/xLmiZL9hNMd4hPKoPuFR0pH0Hmk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-12-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 7, + "popularity": 1.7636 + }, + { + "id": 61433, + "title": "I Can't Understand What My Husband Is Saying", + "originalTitle": "旦那が何を言っているかわからない件", + "overview": "Kaoru is an office lady you can find anywhere, serious and works diligently, but her husband is a super otaku and more-or-less a NEET. She is caught up in one of her husband's whims one day or the subject of his concerns another, but the two are so close that it's embarrassing to even watch them!", + "posterPath": "/6km0BzT3m4bPEHsB9maL29Eh1Xv.jpg", + "backdropPath": "/jos4wVOUEjf81vukDQIyR0H0Dd5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-10-03", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 147, + "popularity": 1.7634 + }, + { + "id": 25833, + "title": "Little Pollon", + "originalTitle": "おちゃめ神物語コロコロポロン", + "overview": "The main character of the story is Pollon, a sweet, precocious little girl who is the daughter of the God of the Sun, Apollo. Pollon's goal in life is to grow up to become a beautiful and powerful goddess. She attempts to do good deeds and help out any way she can in order to achieve the status of godhood. Invariably, her overtures backfire and end up causing major trouble for both the gods of Olympus and their human subjects. However, Pollon's kind heart, perseverance and indomitable spirit win out in the end, as she attains the title of \"Goddess of Hope.\"", + "posterPath": "/e1aq0ScR1HbQfln19RnTkHpdfRV.jpg", + "backdropPath": "/4f7eSHOgKOjbpXIZs9UC4mLetxy.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 16, + 10751, + 35 + ], + "genres": [ + "Kids", + "Animation", + "Family", + "Comedy" + ], + "releaseDate": "1982-05-08", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 5.786, + "voteCount": 7, + "popularity": 1.7623 + }, + { + "id": 86389, + "title": "Cyborg Kuro-chan", + "originalTitle": "サイボーグクロちゃん", + "overview": "Kuro is just an ordinary cat who only wants to protect his owners who are an old couple that can't fend for themselves. One day while on a date with his girlfriend Pooly who is a dog, he is kidnapped by an evil scientist and turned into a robot. Kuro somehow removes the chip that controlled him and notices that people get scared with his new robotic appearance and that he can now talk like a human. He decides to disguise himself with the skin of a stuffed toy and to continue living as a pet.", + "posterPath": "/rjTuVZBLV7DCNN7R0CtPziVFPb4.jpg", + "backdropPath": "/axCCTUxJcc8Ju03iCvsvK8OwT0o.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10759 + ], + "genres": [ + "Comedy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "1999-10-02", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.575, + "voteCount": 127, + "popularity": 1.7622 + }, + { + "id": 244620, + "title": "A Nobody's Way Up to an Exploration Hero", + "originalTitle": "モブから始まる探索英雄譚", + "overview": "Meet Kaito Takagi, your typical high schooler with a low profile. He spends his days exploring dungeons in Japan, hunting slimes for some extra cash. On the side, he quietly admires his childhood friend, the popular girl in class. One day, a rare golden slime shows up, and after Kaito defeats it, he finds a super valuable item—a card that can summon mythical beings! He decides to use it and summons a stunning warrior maiden. Now, Kaito has a chance to rise above his ordinary explorer life. Get ready for a modern fantasy story filled with battles!", + "posterPath": "/x64bUD0D2K5h5z5IKGHaMJlrZ0e.jpg", + "backdropPath": "/xBwizA3fc3eXRa2SVVsXNcRUgGa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.462, + "voteCount": 26, + "popularity": 1.7612 + }, + { + "id": 61287, + "title": "Blade Dance of Elementalers", + "originalTitle": "精霊使いの剣舞", + "overview": "Only a pure maiden can have the privilege to contract with a spirit. Priestesses, who can summon spirits from Astral Zero, the world of spirits, and have full command of their power, are called elementalists. Kamito Kazehaya is the only male with this privilege, and due to what happened in the past he comes to Areisha Spirit Academy where priestesses are trained to become elementalists. He is then told that he is to transfer to the school, form a team with priestesses to compete in Blade Dance where the most powerful elementalist is chosen, and win.", + "posterPath": "/wAzDvjpbFA29gIYlMibFUFqx4c3.jpg", + "backdropPath": "/1HcdKKEgzCa3l7AJg5daOSX15sN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-14", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 29, + "popularity": 1.76 + }, + { + "id": 68379, + "title": "Heaven's Memo Pad", + "originalTitle": "神様のメモ帳", + "overview": "Narumi Fujishima is an ordinary high school boy who remains isolated from his fellow classmates. One afternoon fellow classmate Ayaka Shinozaki invites Narumi to join the gardening club and introduces him to a reclusive detective named Alice. Alice hires Narumi as an assistant and puts him to work solving the strange mysteries of Angel fix, an illegal drug. Little does he know it could put him and Ayaka in serious trouble.", + "posterPath": "/XEJWiv541Tzmw14lWDUFhiZqps.jpg", + "backdropPath": "/cLkseGdKLAC8D3uIRUAO5dIAdPE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 80, + 18, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Crime", + "Drama", + "Mystery" + ], + "releaseDate": "2011-07-02", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.547, + "voteCount": 32, + "popularity": 1.7579 + }, + { + "id": 43066, + "title": "Detroit Metal City", + "originalTitle": "デトロイト・メタル・シティ", + "overview": "Dominating the world of indie music, Detroit Metal City (DMC) is a popular death metal band known for its captivatingly dark and crude style. Its extravagant lead singer, Johannes Krauser II, is especially infamous as a demonic being who has risen from the fiery pits of hell itself in order to bring the world to its knees and lord over all mortals—or at least that's what he's publicized to be.\n\nUnbeknownst to his many worshippers, Krauser II is just the alter ego of an average college graduate named Souichi Negishi. Although he is soft-spoken, peace-loving, and would rather listen to Swedish pop all day, he must participate in DMC's garish concerts in order to make ends meet. Detroit Metal City chronicles Negishi's hilarious misadventures as he attempts to juggle his hectic band life, a seemingly budding romance, and dealing with his incredibly obsessive and dedicated fans.", + "posterPath": "/kWPhuRsUdJWskvNUd1aCndjFZIl.jpg", + "backdropPath": "/x32lkbTZdjMyrmQ50YuuI3vUjee.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2008-08-08", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 89, + "popularity": 1.7573 + }, + { + "id": 99910, + "title": "Warlords of Sigrdrifa", + "originalTitle": "戦翼のシグルドリーヴァ", + "overview": "When the Pillars suddenly appear on Earth, threatening all life, it's only the act of the god Odin that offers humanity salvation. Providing a means of fighting back, he gives Earth the Valkyries, young female pilots with supernatural powers and spirit fighter planes. These skilled troublemakers, all young, risk their lives in a long-running war—but the final battle is fast approaching!", + "posterPath": "/uDeQsdZji4O6fGv3OJP00BI6AP9.jpg", + "backdropPath": "/fZgMQ8cmvCcDBwNdKuAhhdMKgwe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 7, + "popularity": 1.7568 + }, + { + "id": 114396, + "title": "Love of Kill", + "originalTitle": "殺し愛", + "overview": "Two assassins face off at a certain \"workplace.\" The cool bounty hunter Chateau and the mysterious and powerful Ryang-Ha. Chateau and Ryang-Ha become enemies after this fight—at least, they should have, but for some reason Ryang-Ha takes a liking to Chateau and begins following her around. Little by little, Chateau develops a cooperative partnership with Ryang-Ha, which gets her caught up in the struggle against the organizations hunting him down. Furthermore, that battle is related to her past as well. Why did Ryang-Ha approach Chateau? What is Chateau's secret past?", + "posterPath": "/7ObHLrX4fb9Rpk5FBcDng8In0cy.jpg", + "backdropPath": "/6Tt9D66i9QTQQ66F27PIgu2SPsq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2022-01-13", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 63, + "popularity": 1.7566 + }, + { + "id": 91278, + "title": "Marvel's Future Avengers", + "originalTitle": "マーベル フューチャー・アベンジャーズ", + "overview": "Makoto, Adi, and Chloe attend a special training school where they train to become the heroes of the next generation. Unfortunately for them they are actually science experiments for Hydra. When Adi and Chloe get captured by Hydra for learning the truth, Makoto seeks out the one group he believes could help them- The Avengers. After rescuing the kids The Avengers decide to take them in and train them to be the heroes of the future.", + "posterPath": "/buxBvftqx3g57FTYtdrfGSHlWfQ.jpg", + "backdropPath": "/y9FhwCVyIqonm2XqwGrFtmalnkv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-22", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.348, + "voteCount": 23, + "popularity": 1.7549 + }, + { + "id": 34664, + "title": "Tona-gura!", + "originalTitle": "となグラ!", + "overview": "Centers around four childhood friends and the romantic relationship between two of them.", + "posterPath": "/jQNpxTYxmhdxtS94MMPYcFZxooG.jpg", + "backdropPath": "/eAC2v3YggcTYyS01JcuQNgiwhdD.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2006-07-08", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.313, + "voteCount": 8, + "popularity": 1.7546 + }, + { + "id": 131366, + "title": "Ningen Fushin: Adventurers Who Don't Believe in Humanity Will Save the World", + "originalTitle": "人間不信の冒険者たちが世界を救うようです", + "overview": "Nick used to be a member of a veteran adventurer party, helping his undisciplined friends with the accounts whenever he could. But what was his reward? Getting accused of embezzlement and kicked out by the leader he respected. Before long, he finds a few other jaded adventurers and kindred spirits, and together, they form their own unstoppable party!", + "posterPath": "/tP9a3N8DHs1qK0ZoaVaL9PacgKk.jpg", + "backdropPath": "/7Y5Jnq89taomGJvDqy4VTbzuE0m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2023-01-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 38, + "popularity": 1.7534 + }, + { + "id": 95213, + "title": "Room Camp", + "originalTitle": "へやキャン△", + "overview": "The Outclub goes on a journey! The Outdoor Activities Club, AKA the Outclub, has 3 members. In the countryside of Yamanashi Prefecture, there's a high school named Motosu High School. Go even further to one of the school buildings and you'll find a very laid-back outdoor club that uses one corner of the classroom as their club room.", + "posterPath": "/qMzDCQ6Au3nlc0KrevYeQHFUzyE.jpg", + "backdropPath": "/3PPb8PlO8ssvEkLcczRWWoUYAVj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 33, + "popularity": 1.7521 + }, + { + "id": 99787, + "title": "Meiji Gekken: 1874", + "originalTitle": "明治撃剣-1874-", + "overview": "A former samurai, a yakuza bodyguard, a devious spy, and a geisha assassin try to find their place in the rapidly evolving Meiji-era while escaping the sins of their pasts.", + "posterPath": "/lInBrVMLWuG58Nmuuwz8eBcmRaa.jpg", + "backdropPath": "/6e9XTQeadQK4k0XmXLwJA5sK85l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-01-14", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 1.7506 + }, + { + "id": 101242, + "title": "Kiyo in Kyoto: From the Maiko House", + "originalTitle": "舞妓さんちのまかないさん", + "overview": "Kiyo and Sumire came to Kyoto from Aomori Prefecture, dreaming of becoming maiko. But after an unexpected turn of events, Kiyo starts working as the live-in cook at the Maiko House. Their story unfolds in Kagai, the Geiko and maiko district in Kyoto, alongside their housemate maikos. Kiyo nourishes them daily with her homecooked meals, and Sumire strives toward her promising future as the once-in-a-century maiko.", + "posterPath": "/gju01b35hWSBhYLhbqaX7awYsH8.jpg", + "backdropPath": "/sHzIaeRNfSXZfMbpFMYnxowUEqj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2021-02-25", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 9, + "popularity": 1.749 + }, + { + "id": 42778, + "title": "Shamanic Princess", + "originalTitle": "シャーマニックプリンセス", + "overview": "To retrieve the talisman stolen by her beloved, Tiara hunts the night, battling monsters with her awesome shamanic powers. Disguised as an ordinary schoolgirl by day, she arrives at his lair only to find her arch rival on the scene... protecting the thief. Dark secrets unravel as Tiara faces these powerful opponents, and her one hope for survival may be to betray her mission.", + "posterPath": "/jUCGoVhkXoBHNXu22O9ojnxc8h0.jpg", + "backdropPath": "/jvS8EVq8Dm78KmRzah4DeBFMkOh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-06-07", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 5.083, + "voteCount": 12, + "popularity": 1.7477 + }, + { + "id": 72028, + "title": "Katsugeki: Touken Ranbu", + "originalTitle": "活撃 刀剣乱舞", + "overview": "The year is 1863 as the tumultuous samurai era is coming to an end, Japan is split between the pro-shogunate and anti-shogunate factions. The fate of the world is threatened as an army of historical revisionists are sent from the future to alter the course of history. In order to bring these forces down and protect the real history, two sword warriors, spirits who are swords brought to life by Saniwa (sage), rush to Edo. The polite and thoughtful Horikawa Kunihiro and the short tempered yet skillful Izuminokami Kanesada, who served the same master, confront the invading army along with a lively gang of other warriors including Mutsunokami Yoshiyuki, Yagen Toushirou, Tombokiri, and Tsurumaru Kuninaga.\n\nAs the fate of history lies in these hero's hands, what meets the blade is yet to be uncovered...", + "posterPath": "/4eoy0JtNxlgdEn4NAPZfq9duIWL.jpg", + "backdropPath": "/yxnyO8ki81PTs0SbuffgvrvMJAo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-02", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 16, + "popularity": 1.7469 + }, + { + "id": 42963, + "title": "Ayakashi: Samurai Horror Tales", + "originalTitle": "怪 〜ayakashi〜", + "overview": "An anthology of three classic Japanese horror stories: \"Yotsuya Ghost Story\", the story of a wife betrayed by her husband who seeks vengeance even in death; \"Goddess of the Dark Tower\", the story of forbidden love between a goddess and a human; and \"Goblin Cat\", the story of a mysterious cat monster with a vendetta against a certain family.", + "posterPath": "/k2ZxUTQyCvqa3IIJ3oyqPZzKLLz.jpg", + "backdropPath": "/qupQSxhEP1ct0Ek1BzjFsvnbFjD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-01-13", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.294, + "voteCount": 17, + "popularity": 1.7462 + }, + { + "id": 105721, + "title": "Burning Kabaddi", + "originalTitle": "灼熱カバディ", + "overview": "Yoigoshi Tatsuya was a star soccer player known as \"Yoigoshi the Unstoppable,\" but when he entered high school, he severed all involvement with sports. Now, he has been invited to a certain sports team. In these matches, victory is achieved through teammates working together to catch and defeat the opponents invading their territory... You could call it a sort of running combat sport. And the name of this game is... Kabaddi.", + "posterPath": "/I1WPv4syO2X8lyOhH29oVH1zrI.jpg", + "backdropPath": "/nN4OVdex64ZeNV1DWmpfqC8MPGu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 72, + "popularity": 1.7452 + }, + { + "id": 62745, + "title": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "originalTitle": "ダンジョンに出会いを求めるのは間違っているだろうか", + "overview": "In Orario, fearless adventurers band together in search of fame and fortune within the underground labyrinth known as the Dungeon. But Bell Cranel, novice adventurer, has bigger plans than riches and glory; he fights monsters in the hope of having a fateful encounter with a girl. When this happens, it doesn't go exactly as he planned. Thus begins the story of an unlikely pair, a boy and a goddess, both trying to prove themselves, both eager to reach their goals.", + "posterPath": "/h97iHupymkJXBv0gyr4qlePhKAk.jpg", + "backdropPath": "/xCmdeEvJNxptR30bEVXXWLrt4iI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 273, + "popularity": 1.745 + }, + { + "id": 43951, + "title": "The Story of Perrine", + "originalTitle": "ペリーヌ物語", + "overview": "Perrine is a young girl who lives in Bosnia with her Indian mother and beloved father – that is, until her father passes away, leaving her mother with a single wish: travel to France to be with his father. The over 1,000 kilometer journey seems unfathomable, but Perrine and her mother have a plan: they will photograph people in the towns along the way to support themselves. With their hardy donkey Palikare and faithful dog Baron, the two set forth for Paris; along the way they encounter kind souls, barren villages, and a number of hardships; will Perrine and her mother survive the long journey to France?", + "posterPath": "/8U8Gc2xPS9b4AMNFuuIVEjg8ls5.jpg", + "backdropPath": "/u1jgB3gJoqlWKKIyJ6EhzU7HaRA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 18 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1978-01-01", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 12, + "popularity": 1.7434 + }, + { + "id": 91270, + "title": "No Guns Life", + "originalTitle": "ノー・ガンズ・ライフ", + "overview": "Humans that have been physically altered and turned into dangerous weapons are known as the Extended. Juuzou Inui awakens as one of these weapons — with amnesia. But his job as an agent investigating the Extended leads to a mysterious child with Extended ties showing up at his office. Now Inui must keep the child away from street gangs and the megacorporation Berühren, and it won't be easy.", + "posterPath": "/nENukoEKKY3IVm6riyR1fhazrcj.jpg", + "backdropPath": "/ogQuNcLHEL5Fe3gxhFVgfGBWJhd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.718, + "voteCount": 55, + "popularity": 1.7429 + }, + { + "id": 37392, + "title": "Arcadia of My Youth: Endless Orbit SSX", + "originalTitle": "わが青春のアルカディア・無限軌道 SSX", + "overview": "Arcadia of My Youth: Endless Orbit SSX is an animated television series created by Leiji Matsumoto. It's the sequel to the 1982 animated film Arcadia of My Youth. However, like many of the stories set in the Leijiverse, the continuity of the series does not necessarily agree with other Harlock series or films.", + "posterPath": "/fXwS0G7HO2FMIKzrHdemm5FHofb.jpg", + "backdropPath": "/9NfG2ih5gcp70AeUSc1k2YT7sl2.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1982-10-13", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 18, + "popularity": 1.7412 + }, + { + "id": 62157, + "title": "Maria the Virgin Witch", + "originalTitle": "純潔のマリア", + "overview": "During the Hundred Year's War between England and France in the Middle Ages, a powerful witch named Maria lives in a secret forest with her familiars. She hates the war around her, and will sometimes stir up trouble against the church that does nothing to stop it. Her interventions into the world, however, run against the plans of heaven, earning her the attention of the Archangel Michael.", + "posterPath": "/h5pPTsWVqtYUrScTydAhE2piAXa.jpg", + "backdropPath": "/cHrRSB5cfAvadLpS1zte2fn1DRr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-11", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 23, + "popularity": 1.7411 + }, + { + "id": 244625, + "title": "The Healer Who Was Banished from His Party, Is, in Fact, the Strongest", + "originalTitle": "パーティーから追放されたその治癒師、実は最強につき", + "overview": "Two centuries have passed since a hero defeated the evil Jaryu and saved the world. In one of the many dungeon cities, Raust, a healer scorned and cast out of his party for being too weak, struggles to find his place. Amidst despair, he meets martial artist Narsena, who invites him to form a new party together. With a fresh start and renewed motivation, the two begin their journey to greatness.", + "posterPath": "/mloJqPmcp7UggYWGeEpSoOjPosk.jpg", + "backdropPath": "/skP7TT721ZiGozU1QTByRYip8iY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 21, + "popularity": 1.7408 + }, + { + "id": 46344, + "title": "Kobato.", + "originalTitle": "こばと。", + "overview": "Kobato is a girl who came to earth to fulfill her wish, which is to go to a certain place. To fulfill that wish, she has to find a bottle and fill it with scarred hearts. Together with her \"teacher\", which is a stuffed animal, she search for the scarred hearts. However she may not fall in love with any person whom she cures the heart of.", + "posterPath": "/bzE0eksp2MpZh6UWjBBoSxW1Cth.jpg", + "backdropPath": "/k4sRP3AuKIqPmjEpxfp5qCCBhxX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2009-10-06", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 9.5, + "voteCount": 14, + "popularity": 1.7405 + }, + { + "id": 63495, + "title": "SCHOOL-LIVE!", + "originalTitle": "がっこうぐらし!", + "overview": "Yuki Takeya, Kurumi Ebisuzawa, Yuri Wakasa, and Miki Naoki decide to stay over at school. Along with the school adviser Megumi Sakura, they suddenly find themselves to be the final survivors of a zombie attack, and continue to live and survive at the school.", + "posterPath": "/46C5g7zAN4KHfZQBaJamyWia8l0.jpg", + "backdropPath": "/am20HBMkHcs2487Dl0n07Cb1gCO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.35, + "voteCount": 137, + "popularity": 1.7396 + }, + { + "id": 62566, + "title": "Ninja Slayer From Animation", + "originalTitle": "ニンジャスレイヤー フロムアニメイシヨン", + "overview": "Kenji Fujikido is a salaryman whose wife and child were killed in a ninja turf war. In a brush with his own death, Fujikido is possessed by an enigmatic ninja soul known as Naraku Ninja. Fujikido cheats death and becomes \"Ninja Slayer\" -a Grim Reaper destined to kill evil ninja, committed to a personal war of vengeance. Set in the dystopian underworld of Neo-Saitama, Ninja Slayer takes on Soukai Syndicate ninja in mortal combat.", + "posterPath": "/pJb3XGAl7XZSz8Dv9D14rNWPdja.jpg", + "backdropPath": "/4ZLWNbWnAbvIWZ4HEAMVryuTEC1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-04-16", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 7, + "popularity": 1.7395 + }, + { + "id": 24667, + "title": "Shadow Star Narutaru", + "originalTitle": "なるたる ~骸なる星・珠たる子~", + "overview": "A girl named Shiina Tamai bonds with a starfish-shaped \"dragonchild\" whom she calls Hoshimaru.", + "posterPath": "/8ixARvxzqc4COaJwf5kXJweS0Op.jpg", + "backdropPath": "/wClLWreoQRD5AMJgooNCtib6EYF.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10765 + ], + "genres": [ + "Drama", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-07-07", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 13, + "popularity": 1.7375 + }, + { + "id": 61534, + "title": "Love Stage!!", + "originalTitle": "LOVE STAGE!!", + "overview": "Izumi was born in a family of celebrities. His father is a singer, his mother an artist, his older brother the lead vocalist for the popular band Crashers. Izumi himself, however, is just a nerdy college student. He loves the manga \"Magical Girl Lala Lulu\" and dreams of becoming a manga writer himself. One day he is roped into filming a commercial where he wears a dress. Another actor on the set, Ryoma Ichijo, mistakes him for a woman and falls in love at first sight. As it turns out, though, they met ten years in the past. And Ryoma feelings don't change when he finds out Izumi is a boy.", + "posterPath": "/drudqRieOKYqv66EISTSpT1v1t4.jpg", + "backdropPath": "/wyiTVatTjFWSXmd5zCGUBuYYSoQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 37, + "popularity": 1.7374 + }, + { + "id": 206630, + "title": "Sasaki and Peeps", + "originalTitle": "佐々木とピーちゃん", + "overview": "Sasaki is a middle-aged office worker living in Japan. Feeling drained by the vapid corporate world, he heads to the pet shop in search of a new companion. There he finds an adorable bird named Peeps and takes him home. But Sasaki quickly learns that Peeps isn’t your average bird…he’s a powerful mage from another world! Together, they embark on a magical adventure filled with swords and sorcery.", + "posterPath": "/kVp4PsyB8V839mGQjkn6kevBwKV.jpg", + "backdropPath": "/xljpEwFQF6Rl1rU1w7SEs1pk3YE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.679, + "voteCount": 28, + "popularity": 1.7363 + }, + { + "id": 50071, + "title": "Ai-Mai-Mi", + "originalTitle": "あいまいみー", + "overview": "Ai, Mai, and Mi, are the three girls that make up the manga club. Although they possess ample imagination, their far-out fantasies and insane adventures usually distract them from actually drawing any manga. From rescuing an abandoned cat, to getting addicted to video games, these girls handle ordinary things in extraordinary ways.", + "posterPath": "/1hVJnWV0ghfhN3TLKFUxkYn9S2i.jpg", + "backdropPath": "/oPjJpo5dmipjeDGXmbBa9Hz5xJH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-01-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 10, + "popularity": 1.7358 + }, + { + "id": 65177, + "title": "Haruchika – Haruta & Chika", + "originalTitle": "ハルチカ ~ハルタとチカは青春する~", + "overview": "Haruta and Chika are members of their high school wind instrument club that is on the verge of being shut down. The two are childhood friends, and they spend their days practicing hard while also trying to recruit new members. When a certain incident happens within their school, they work together to solve it.", + "posterPath": "/8J9yrbDdqJJkIpsjhGXHsrkA4Il.jpg", + "backdropPath": "/AhnBONxIgq1jkOH8Afcg8cBPk3I.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2016-01-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 12, + "popularity": 1.7356 + }, + { + "id": 34166, + "title": "Kino's Journey", + "originalTitle": "キノの旅", + "overview": "In Kino's Journey, the protagonist, Kino, accompanied by a talking motorcycle named Hermes, travels through a mystical world of many different countries and forests, each unique in its customs and people. She only spends three days and two nights in every town, without exception, on the principle that three days is enough time to learn almost everything important about a place, while leaving time to explore new lands.", + "posterPath": "/FKUT397b6Z2P2raqw1CjGQGisZ.jpg", + "backdropPath": "/uHXZ5bUCiYZkjttnYIAYjghANRi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2003-04-08", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 43, + "popularity": 1.7329 + }, + { + "id": 71008, + "title": "The Royal Tutor", + "originalTitle": "王室教師ハイネ", + "overview": "Heine Wittgenstein is a pint-sized man given a monumental task. He's recently hired by the King of Grannzreich to whip four of his five sons into royalty material as their tutor. At first glance, the princes have all the allure and refinement Heine would expect but underneath their manicured exteriors are four potentially terrible tyrants.", + "posterPath": "/m5Xn14Rkqz21s8DbJUAWVDWyBGO.jpg", + "backdropPath": "/sWDC5IWXWLLYwZtkqAzCBUhboyl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-04-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 27, + "popularity": 1.7328 + }, + { + "id": 45005, + "title": "Hiiro no Kakera", + "originalTitle": "緋色の欠片", + "overview": "Believing she is to live with her grandmother because her parents are transferred abroad, Tamaki Kasuga travels to the town of Kifumura. There, she is told that she is actually to perform the role of sealing the sword Onikirimaru as the next 'Tamayori princess'. To protect her, she is also assigned young men from another family as guardians.", + "posterPath": "/p3G9usOaE4MZ2RS612cbCgFsI5a.jpg", + "backdropPath": "/3vyJrrvhyCJvUJNCvKz5IR4XnM7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 16 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2012-03-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 7, + "popularity": 1.7291 + }, + { + "id": 68074, + "title": "Tiger Mask W", + "originalTitle": "タイガーマスクW", + "overview": "Two young wrestlers face each other in a recently revived underground wrestling organization, the Tiger's Lair, which destroyed the wrestling dojo they grew up in. One took over the training facilities of Naoto Date at the foot of Mount Fuji, as well as the mask he left behind. The other dared to enter the Tiger's Lair and won a fierce competition, receiving a jet-black tiger mask. One tiger walks the path of light, while the other walks the path of shadows. Neither one knows the other's face. On the ring, they are natural enemies, but they have the same purpose—destroy the Tiger's Lair!", + "posterPath": "/yisqc1PDIHL3fHoJdS0yPqGuOEO.jpg", + "backdropPath": "/uYtBaOiO4SlTK5YIZYspa4hsKXm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2016-10-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 9, + "popularity": 1.7289 + }, + { + "id": 34806, + "title": "Needless", + "originalTitle": "NEEDLESS", + "overview": "Adam Blade is a \"Needless\", a person possessing amazing mutant abilities. To restore peace to a war ravaged Japan, he and his friends fight against a evil research group called Simeon.", + "posterPath": "/ZzH3D46034BJ7n2lfhN4jDn4FV.jpg", + "backdropPath": "/eC2gt1PZlO7CU8ZDCHVYeNegd2q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-07-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.643, + "voteCount": 14, + "popularity": 1.7265 + }, + { + "id": 42501, + "title": "Bodacious Space Pirates", + "originalTitle": "モーレツ宇宙海賊", + "overview": "Marika is a high school student living on a planet known as Uminoakeboshi. One day she finds out that her deceased father was the captain of the space pirate ship called the \"Bentenmaru\". More importantly, the one to inherit the captain's title has to be a direct descendant—meaning that Marika is now the captain of the ship.", + "posterPath": "/rqyWLgaCnhWNm6RMHYFrNviLWHU.jpg", + "backdropPath": "/bf240hi7rUvrxqem4Fd2lrtN2GO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-01-08", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.214, + "voteCount": 14, + "popularity": 1.724 + }, + { + "id": 88063, + "title": "BEM", + "originalTitle": "BEM", + "overview": "Libra City is a sprawling metropolis whose districts split the rich and the poor. Hiding among the populace are three humanoid monsters—Bem, Bela, and Belo—who protect humanity and hope to one day become humans themselves. However, when a Mysterious Lady threatens their way of life, Bem, Bela, and Belo are pulled into a plot unlike anything they’ve ever known.", + "posterPath": "/fUd4ejJ1LkqaSaHItHwXE4HVrGy.jpg", + "backdropPath": "/xylC1GvYqnMFSu8J5cjCTq3rrMa.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-14", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 22, + "popularity": 1.7235 + }, + { + "id": 71892, + "title": "Les Misérables: Shoujo Cosette", + "originalTitle": "レ・ミゼラブル 少女コゼット", + "overview": "Being a single mother is hard in early 19th Century France. When young Cosette was traveling with her mother trying to find a job and a place to live, they were always shunned away because very few employers hire single mothers. When she is promised with the prosperity of working in the big city, Cosette is separated from her mother in the hopes a caretaker will watch over her while her mother earns some money.", + "posterPath": "/df4Z9S3H7mZRjYI5kyYQioLF4pp.jpg", + "backdropPath": "/nw8nJCz2dsLct8GxPPOoA9yosdD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-01-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 7, + "popularity": 1.7235 + }, + { + "id": 80560, + "title": "Sirius the Jaeger", + "originalTitle": "天狼 Sirius the Jaeger", + "overview": "Imperial Capital, 1930. A strange group of people carrying musical instrument cases landed on Tokyo station. They are called the \"Jaegers\", who came to hunt vampires. Amongst them, there stood a young man with striking serenity and unusual aura. His name is Yuliy, a werewolf whose home village was destroyed by vampires. Yuliy and the Jaegers engage in deadly battle over a mysterious holy arc only known as \"The Arc of Sirius\". What truth awaits them at the end...?", + "posterPath": "/cUd3s6KOOFInJphLS6SFI27z2TA.jpg", + "backdropPath": "/2Zie5dP4Y9kehmGARB4Al6VDPIP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 9648, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Mystery", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2018-07-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.264, + "voteCount": 121, + "popularity": 1.7229 + }, + { + "id": 29616, + "title": "Desert Punk", + "originalTitle": "砂ぼうず", + "overview": "In the future, Japan is a wasteland. In the Great Kanto Desert, scattered humans eke out a living in the hot sand. Among them, a short-statured man they call \"Sunabozu\" makes a living as a bounty hunter. Like a demon of the sand, he seems unbeatable. Yet, like all men, he has a particular weakness for the opposite sex...", + "posterPath": "/mJ22FZbnULTrfohVbm0JEcYTTRo.jpg", + "backdropPath": "/9ubqJedkFPgW2apWFfXUqzWl9dM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.75, + "voteCount": 20, + "popularity": 1.7223 + }, + { + "id": 97009, + "title": "The Disastrous Life of Saiki K.: Reawakened", + "originalTitle": "斉木楠雄のΨ難 Ψ始動編", + "overview": "Kusuo and his gaggle of self-proclaimed friends are back for more psychic mishaps. If he didn't have enough problems before, he's got even more now.", + "posterPath": "/8dTgw94cx05DwUH2fZXM2gkY7MU.jpg", + "backdropPath": "/A4e4LG9kOXaQ8SYKoORGACKajSR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-12-30", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.425, + "voteCount": 60, + "popularity": 1.7221 + }, + { + "id": 117166, + "title": "Pui Pui Molcar", + "originalTitle": "PUI PUI モルカー", + "overview": "The setting is a world where people drive sentient vehicles that are hybrids between guinea pigs and cars – \"Molcars\"! Molcars have round eyes, big soft butts, and short arms and legs as they trot along. They run around with a silly look on their face, and even when you're stuck in traffic, you can be put at ease just by gazing at the guinea pig butt in front of you! Even if they cause a bit of trouble, it's easy to forgive them because they're so cute and fluffy! This is an animation focusing on various situations unique to cars, full of satisfaction, friendship, adventure, crazy action, and tons of guinea pigs!", + "posterPath": "/twIb0T5no8v8t8KIt143L8FKPvQ.jpg", + "backdropPath": "/t8rZs0AwxMiWZiATff6TtedIkcx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2021-01-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 24, + "popularity": 1.7218 + }, + { + "id": 249812, + "title": "The Grimm Variations", + "originalTitle": "グリム組曲", + "overview": "Inspired by the classic Brothers Grimm stories, this anthology features six fairy tales with a dark twist, exposing the shadowy side of human desire.", + "posterPath": "/jjk6nHiZGlRu2f6fWyjNWL0hp0k.jpg", + "backdropPath": "/nVnPoHsR7fo8qlA9fYUsrj701p.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Mystery" + ], + "releaseDate": "2024-04-17", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.926, + "voteCount": 47, + "popularity": 1.7206 + }, + { + "id": 97412, + "title": "Fight!! Iczer-One", + "originalTitle": "戦え!!イクサー1", + "overview": "The Earth has been targeted for invasion by the alien Cthuwulf. A young girl, Nagisa Kano, becomes the key to Earth's defense when she is forced to become the partner of Iczer-One, a lone rebel who is battling the alien invaders.", + "posterPath": "/wByD74JrSI1X5Zd5O5eeqXTBEpm.jpg", + "backdropPath": "/iIt19tIMHtSyeCHgLoZJLacz4ZE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1985-10-19", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 9, + "popularity": 1.7202 + }, + { + "id": 9319, + "title": "Kiddy Grade", + "originalTitle": "キディ・グレイド", + "overview": "In Star century Zero-One-Sixty-Five, the Global Union was born. The G.O.T.T. was simultaneously formed to settle disputes amongst the member planets. Existing in the shadows, the ES Force serves as the primary law enforcement organization, seeing that the Galactic Organization’s orders are enforced. ES Force members Éclair and Lumiere are on the front line, pursuing all manner of criminals and bringing them to justice. This is their story.", + "posterPath": "/zBxSa21fryHt85xIoT2QiTWCWBf.jpg", + "backdropPath": "/fH07cj64DKfp7351IA1kqz8Bu5.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 16, + 10759, + 10765 + ], + "genres": [ + "Mystery", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-10-08", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 16, + "popularity": 1.7201 + }, + { + "id": 11284, + "title": "Madlax", + "originalTitle": "マドラックス", + "overview": "In the country of Gazth-Sonika, civil war rages. There, a mercenary called Madlax plies her trade, with almost supernatural skill. In the seemingly peaceful country of Nafrece, Margaret Burton lives a tranquil life. As separate as their lives may seem, the two are connected by ties of mystery, and by a holy book that is also sought by the shadowy organisation, Enfant. As Margaret and Madlax follow the path of their destiny, they come ever closer to uncovering the truth - with no guarantee that it is a truth they can bear to learn.", + "posterPath": "/ddte9YjjrZzxAg3T6mnEgrMtQdG.jpg", + "backdropPath": "/6TKSH3AdqdbEQCx640pJO61FurE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2004-04-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 10, + "popularity": 1.7183 + }, + { + "id": 99099, + "title": "MARS RED", + "originalTitle": "MARS RED", + "overview": "It’s 1923, and the mysterious blood source Ascra has unleashed a horde of vampires across Japan. In response, the government spawns Code Zero. With S-rank vampire Defrott and the rookie Kurusu, this kill squad is made for one reason: to hunt the undead!", + "posterPath": "/z0AaUo0hCb2RF2JGr9AmaDyJj7d.jpg", + "backdropPath": "/gJnbyIQ3cAxeGo9NOtRr8O3ExaT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 41, + "popularity": 1.7175 + }, + { + "id": 22002, + "title": "King Arthur and the Knights of the Round Table", + "originalTitle": "円卓の騎士物語 燃えろアーサー", + "overview": "King Arthur and the Knights of the Round Table is a Japanese anime series based on the Arthurian legend.", + "posterPath": "/9c5wiIgkKRwQetmoIZXT8g0ECDs.jpg", + "backdropPath": "/sbxdeuT5Cl5yc0GfNuEVad2UApP.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1979-09-09", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 53, + "popularity": 1.7173 + }, + { + "id": 93988, + "title": "Battle Spirits: Heroes", + "originalTitle": "バトルスピリッツ 覇王", + "overview": "Hajime Hinobori is a grade 7 student who loves Battle Spirits. His parents leave him to research Battlefield Systems for the International Battle Spirits Association. Hajime is left under the care of their dear friend Dr. Denjiro. Then, Hajime finds a completed a Battlefield System demo machine. He will now fight as a Test Battler and is incredibly excited by the Spirits materialized in the Battlefield!", + "posterPath": "/4Ma0bfl0ZuuwwcMyj7DMuy8Uofc.jpg", + "backdropPath": "/jrKkSeO6RHHnSoVgouwvUSy4k6p.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2011-09-18", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 6, + "popularity": 1.7149 + }, + { + "id": 70943, + "title": "Onihei", + "originalTitle": "鬼平", + "overview": "The historical novel series depicts Heizou Hasegawa, who metes justice on wrongdoers and supervises the crackdown on arsonists and robbers in Japan's Edo period (1603-1868).", + "posterPath": "/4ZAvfpUzxhFheutfxEUjQxt0QmA.jpg", + "backdropPath": "/43WoRf8JChEF5lxvfe9QEwQLlq7.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 80 + ], + "genres": [ + "Drama", + "Animation", + "Crime" + ], + "releaseDate": "2017-01-10", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 23, + "popularity": 1.7145 + }, + { + "id": 44416, + "title": "Rascal the Raccoon", + "originalTitle": "あらいぐまラスカル", + "overview": "The story is set in 1914 in Breisford in Wisconsin, near Lake Koshgonong. One spring day the little Sterling finds in the forest a raccoon cub whose mother has just been killed by a hunter; He decides to treat him and keep him by giving him the name Rascal. The boy and the raccoon become inseparable friends from that day, although Sterling soon realizes, after a series of small disasters that Rascal causes in the gardens of neighbors, that cohabitation between men and wild animals can sometimes be very difficult . Thus began the last unforgettable year of Sterling childhood, punctuated by small and big adventures with its large Rascal friends, Oscar and Alice among the animals she loves so much, but marked by the death of the mother and the financial ruin of the father who lost almost all that he has to repay debts.", + "posterPath": "/c1DPCVBYAlJCExmS9lcYOyaXIYY.jpg", + "backdropPath": "/lGbpKC7MPMnp5QqpsdKl3l0fLno.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1977-01-02", + "releaseYear": "1977", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 7, + "popularity": 1.7142 + }, + { + "id": 45853, + "title": "The Ambition of Oda Nobuna", + "originalTitle": "織田信奈の野望", + "overview": "The historical romantic comedy follows 17-year-old high schooler Sagara Yoshiharu who one day time-travels to the Sengoku period, where all the major Samurai lords are cute girls. Yoshiharu meets Oda Nobuna, the girl counterpart of Oda Nobunaga, and begins to serve her as a substitute of Kinoshita Toukichirou, who has been dead in the world.", + "posterPath": "/o9iRjhIGG1LaEUTAQpeMkGTvXxb.jpg", + "backdropPath": "/iaDKfJaTXxt12LK4CEza4Qv8Ml9.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2012-07-09", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 32, + "popularity": 1.7141 + }, + { + "id": 130266, + "title": "Police in a Pod", + "originalTitle": "ハコヅメ~交番女子の逆襲~", + "overview": "Officer Mai Kawai has had enough! She’s sick of being a police officer—but just when she’s about to hand in her resignation, the arrival of a brilliant (and beautiful) ace detective named Seiko Fuji changes her mind. Will Fuji reignite Mai’s passion for policing? And will Mai uncover the mystery of why Fuji was transferred to this ordinary police box?", + "posterPath": "/bcTwjNfNdzNpsBqHbq9aaya9OOR.jpg", + "backdropPath": "/8zXKQPXB1b367mDf6VT9EJ6cXOa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2022-01-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 19, + "popularity": 1.7136 + }, + { + "id": 236930, + "title": "Snack Basue", + "originalTitle": "スナックバス江", + "overview": "In Sapporo's North 24th neighborhood, five stations away from the Susukino business district, a bar's proprietor, junior proprietor, odd regular customers, and its share of walk-ins recount their strange lives.", + "posterPath": "/tbm0JnKCIb1T0dqb8ikNCeUInP5.jpg", + "backdropPath": "/kvsmDwZxVt094tX5M9tqtGvNuT3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-01-13", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 8, + "popularity": 1.7131 + }, + { + "id": 70886, + "title": "Atom: The Beginning", + "originalTitle": "アトム ザ・ビギニング", + "overview": "Japan in the near future suffers an unexplained major disaster. Five years later, reconstruction is well underway. Two young researchers at a university are pinning all their hopes on robot development. Now their new interpretation of the eternal hero Astro Boy up until his birth is just about to start!", + "posterPath": "/AiAFZiPnqvDpMq38eU69Gi3AOUe.jpg", + "backdropPath": "/59uNq5BVRnSNgz9SQQZKzXV8muR.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "2017-04-15", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 10, + "popularity": 1.7128 + }, + { + "id": 43341, + "title": "Iria: Zeiram the Animation", + "originalTitle": "イ・リ・ア ゼイラム the Animation", + "overview": "Iria is the story of a girl and the Alien being she loves to hate. The series begins with her brother, Gren, taking a job. He is a bounty hunter, and one well known for his incredible skill. Iria, being a skilled apprentice bounty hunter herself, tags along. What is the job, one might ask. It is to find out what has happened to the crew and cargo of a Space Station. Needless to say, nothing is as it seems, and the war between Iria and Zeiram begins in earnest.", + "posterPath": "/j2qNFUKu6CjOnHakPlH4Ffq4UoZ.jpg", + "backdropPath": "/ho2i3OcCv9Neer9Nyy14FjrHgH4.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-06-23", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 10, + "popularity": 1.7116 + }, + { + "id": 34698, + "title": "Air Master", + "originalTitle": "エアマスター", + "overview": "Former gymnast Aikawa Maki has turned her skills to a different way of life - street fighting. The only thing that truly makes her feel alive is violence.", + "posterPath": "/zGzDKBByPb3AmIvqCbHBGCKtHBg.jpg", + "backdropPath": "/vinH3AyFTlpvLL0eS8gjct1stbG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2003-04-01", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 8.231, + "voteCount": 13, + "popularity": 1.7116 + }, + { + "id": 120241, + "title": "Akuma Kun", + "originalTitle": "悪魔くん", + "overview": "Akuma Kun, a boy raised by a demon, works with his half-human partner Mephisto III as paranormal investigators to solve various murder and mysteries.", + "posterPath": "/zPPYeLhEFbZjImIvGcfvZEIBFQl.jpg", + "backdropPath": "/v9LyHEsDKVi27OAjYIrL46Qsgc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648, + 80 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery", + "Crime" + ], + "releaseDate": "2023-11-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 30, + "popularity": 1.7109 + }, + { + "id": 67359, + "title": "Qualidea Code", + "originalTitle": "クオリディア・コード", + "overview": "The story takes place in a world where people continue their war against the \"unknown\"—the enemy of humanity. Children who have been evacuated to a cold sleep facility during the invasion by the \"unknown\" several decades ago wake up from their slumber and learn that their bodies developed some supernatural forces. In order to protect the country from the \"unknown\" emerging from the Tokyo bay gate, the boys and girls wage battles in the defense the cities of Tokyo, Kanagawa, and Chiba.", + "posterPath": "/ssMDIsGgo5AyDtrYCTsWURqQVeY.jpg", + "backdropPath": "/dTSm9XM6EWr0i7rhRjX6vMEP6tj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2016-07-10", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 16, + "popularity": 1.7108 + }, + { + "id": 46423, + "title": "Destiny of the Shrine Maiden", + "originalTitle": "神無月の巫女", + "overview": "There is a small town somewhere in Japan, which is surrounded by nature. In this town, there is a large and gorgeous school, Otobashi Gakuen; which was founded to make the students familiar with nature. This story starts off with Kurusugawa Himeko. She is a normal student who goes to Otobashi Gakuen. She leads bright and enjoyable school days with her two friends, Himekawa Chikane and Oogami Souma. Chikane is the only daughter of a distinguished family. She excels at both academics and sports. She is also kind and beautiful, making her very popular among the other students. Oogami Souma is Himeko’s childhood friend. He has problems expressing his emotions directly, but he is very sincere. On Himeko's 16th birthday, a dark moon blocks out the sun, and the Orochi come forth to destroy the world. But why are they targetting Himeko...?", + "posterPath": "/xUveLutu5d9nbJr94XyyF0QjOzh.jpg", + "backdropPath": "/cXgzwd0ORzZVjMRRcl9Ic3OVcJr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-10-01", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 12, + "popularity": 1.7099 + }, + { + "id": 13465, + "title": "Space Runaway Ideon", + "originalTitle": "伝説巨神イデオン", + "overview": "From the continuing reclamation of the ruins of the planet Solo, mysterious mechas are excavated. But suddenly, an alien called Baff Kuun attacks seeking the limitless energy “Ide.” The earthlings are backed into a corner, when the three mechas piloted by the earth boy Yuki Cosmo and others fuse together. Becoming the giant robot Ideon, they use their incredible power to fight back against Baff Kuun.", + "posterPath": "/oyMVD4MUmJBBW5IZt7anSTcBHQl.jpg", + "backdropPath": "/3br0qPMZ9AiFiGfiZNIfcDUUjNZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10768, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "War & Politics", + "Action & Adventure" + ], + "releaseDate": "1980-05-08", + "releaseYear": "1980", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 5, + "popularity": 1.7097 + }, + { + "id": 80448, + "title": "We Rent Tsukumogami", + "originalTitle": "つくもがみ貸します", + "overview": "A pair of adopted siblings run a rental shop in old Edo where fire and flooding is prevalent and everyday items are rented out to not impede when they flee. Mixed in the inventory are old objects that have turned into spirits after hundreds of years of existence called, Tsukumogami.", + "posterPath": "/w6k6UnWMvSWJmTcuGznCr8fG05M.jpg", + "backdropPath": "/7BuXqmbkj8b8dmg8Iya8p3HZtV3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-07-19", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 8, + "popularity": 1.7075 + }, + { + "id": 76131, + "title": "Kokkoku, Moment by Moment", + "originalTitle": "刻刻", + "overview": "In order to save her brother and nephew who have been kidnapped by a mysterious religious group known as the Genuine Love Society, Juri and her family cast a spell using a stone hidden by her grandfather to enter the world of stopped time known as Stasis. However, when they infiltrate the kidnapper's base, they're met by other people who can also move about freely. With grotesque creatures lurking about, will they be able to escape the parallel world and return to their normal lives?!", + "posterPath": "/dNqfchtJscTRd6Ar80zVHmIH4lI.jpg", + "backdropPath": "/aRMMgDFODPLZR9DBwRBD1j1j28I.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 52, + "popularity": 1.7068 + }, + { + "id": 93495, + "title": "Kandagawa Jet Girls", + "originalTitle": "神田川JET GIRLS", + "overview": "Jet Racing's wet-n-wild combo of PWC racing and watergun sharpshooting has become mega-popular across the world. Rin Namiki wants in on the action, and after meeting the cool and gorgeous Misa Aoi, it looks like Rin's dreams are finally in reach!", + "posterPath": "/qVUjq1VlKfZQPZMaSZnmPgkoRKG.jpg", + "backdropPath": "/fwAAVtwCr6UPKlVBBlSbvvtBbHW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2019-10-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.909, + "voteCount": 11, + "popularity": 1.7064 + }, + { + "id": 134581, + "title": "Kotaro Lives Alone", + "originalTitle": "コタローは1人暮らし", + "overview": "A lonely little boy moves into a ramshackle apartment building all on his own and makes friends with the broke manga artist who lives next door.", + "posterPath": "/8v2CVrPNC1pO0osxbia4FopGtLe.jpg", + "backdropPath": "/wZ7GS3eVx0I3EcpN8KNmM5vlHgS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-03-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.835, + "voteCount": 100, + "popularity": 1.7046 + }, + { + "id": 35461, + "title": "Sound of the Sky", + "originalTitle": "ソ・ラ・ノ・ヲ・ト", + "overview": "On the outskirts of the country of Helvetia rests the tranquil town of Seize. Upon its cobbled streets, citizens go about their daily lives, undisturbed by the increasingly tense military relations between Helvetia and the neighboring Roman Empire.\n\nIt is under these circumstances that the 1121st platoon of the Helvetian army, stationed at the Clocktower Fortress in Seize, receives a new recruit in the young and spirited Kanata Sorami. Having joined the military to fulfill her dream of learning to play the bugle, she excitedly accepts the tutelage of the Sergeant Major, Rio Kazumiya, who happens to be a skilled trumpeter. Working alongside them are the aloof mechanic, Noël Kannagi, the feisty gunner, Kureha Suminoya, and the compassionate Captain Felicia Heideman; together, they experience the beauty of life in Seize and the lasting joy of a community that has persevered in spite of the crumbling world around them.", + "posterPath": "/3pSFOc9nx5HFqIpNqlHdJ4AKQfh.jpg", + "backdropPath": "/iXmxu54xvgqn0oV4CXa9YkiVrXl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-01-05", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 19, + "popularity": 1.7035 + }, + { + "id": 61680, + "title": "Wizard Barristers", + "originalTitle": "ウィザード・バリスターズ~弁魔士セシル", + "overview": "In 2018, humans and wizards live together in Tokyo. Police continue to protect order in society, but wizards are tried according to magical law, in special courts defended by wizard barristers. At age seventeen, Cecile has just become the youngest wizard barrister, and begins work at the Butterfly Law Offices. While she hasn’t realized it yet, she has tremendous magical potential.", + "posterPath": "/nZ0Xs0lw54l7SQQfXW1rY8CNRCc.jpg", + "backdropPath": "/m0Ghz5pLz1klYLcfTZ3LaD6YQes.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2014-01-12", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.857, + "voteCount": 35, + "popularity": 1.7009 + }, + { + "id": 136841, + "title": "Salaryman's Club", + "originalTitle": "リーマンズクラブ", + "overview": "Shiratori Mikoto utilizes his keen observation skills as a badminton player. However, a traumatic incident at the Interhigh leaves him unable to play the way he wants. He's cut from Mitsuboshi Bank's powerhouse amateur team. In an attempt to make a comeback, he takes a job at Sunlight Beverages, where he finds waiting for him work with unfamiliar coworkers and a weak unaccomplished badminton team...", + "posterPath": "/ioJBOA9WycKCWRMlbW7BgZB4iOK.jpg", + "backdropPath": "/j10YzVgLHUDPl6U82v2LKDp9J2P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2022-01-30", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 17, + "popularity": 1.7006 + }, + { + "id": 34835, + "title": "009-1", + "originalTitle": "ゼロゼロナインワン", + "overview": "In an alternate world, the Cold War has continued to persist for 140 years. As a result, the world was divided into two factions: the West Block, and the East Block. As the Cold War drags on, the tension between the two factions, as well as the amount of nuclear weapons they have, rise. Mylene Hoffman is a female cyborg who is a spy for the West Block. Together with three other agents, Mylene partakes in various missions issued by her superiors.", + "posterPath": "/r1zbGhkKXmzZR8h5y7LQxiE8yW9.jpg", + "backdropPath": "/byuLWybI5Am5I6f7tGVr8H1k3Kn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10768, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "War & Politics", + "Drama" + ], + "releaseDate": "2006-10-06", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.625, + "voteCount": 16, + "popularity": 1.6985 + }, + { + "id": 108954, + "title": "With a Dog AND a Cat, Every Day Is Fun", + "originalTitle": "犬と猫どっちも飼ってると毎日たのしい", + "overview": "Matsumoto's daily life while raising both a sweet, innocent dog and a \"devilishly vicious yet adorable\" cat. Everyday, there is laughter and even a tear or two.", + "posterPath": "/gqmlFUpoQTQ8H6W9ipaCvI3Hv1e.jpg", + "backdropPath": "/gTZE94NgC8Bm2DySiKtoEYk7HUM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-10-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 8, + "popularity": 1.6983 + }, + { + "id": 80853, + "title": "Muhyo & Roji's Bureau of Supernatural Investigation", + "originalTitle": "ムヒョとロージーの魔法律相談事務所", + "overview": "Are you a victim of unwanted spirit possession? Is there a ghost you need sent up and away...or down to burn for all eternity? If the answer is yes, then you need Muhyo and Roji, experts in magic law. Serving justice to evil spirits is their specialty.", + "posterPath": "/eU1hhaIh62LUKyX3TrlDfX0Iuqk.jpg", + "backdropPath": "/pq0ud2uTIp6WTsgAaFmKCubqtmu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-08-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 14, + "popularity": 1.6972 + }, + { + "id": 34726, + "title": "Tokyo Majin", + "originalTitle": "東京魔人學園剣風帖 龖", + "overview": "A force of supernatural darkness is unleashing the walking dead on Tokyo, and five high school students with extraordinary powers - and nothing in common - must band together to fight the scourge.", + "posterPath": "/4fnbCDUzplQIVlEjPcRrl5PuVc9.jpg", + "backdropPath": "/kMrjSNau9ShyQrNkBHrzQQh5GQE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2007-01-19", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.133, + "voteCount": 15, + "popularity": 1.6964 + }, + { + "id": 114211, + "title": "Gintama: The Semi-Final", + "originalTitle": "銀魂 THE SEMI-FINAL", + "overview": "As the war temporarily calms down and Edo rebuilds, Gintoki finds Shinpachi—who is still unaware of his return—on a bridge. However, as a fight quickly breaks out between the Yorozuya and the Tenshouin Naraku, suspicion grows, forcing Gintoki to use what is nearest—a loincloth—to mask his identity. Saved for the time being, Gintoki enters the Yorozuya office, but unbeknownst to him, someone else is already waiting there...\n\nMeanwhile, Kondou departs Earth to marry Princess Bubbles in an attempt to improve diplomatic relations. After boarding the Gorilla Amanto mother ship, he realizes that he doesn't speak their language. Confused, Kondou tries conversing with them, only to inadvertently gain their support. However, someone associated with the princess crashes the ongoing ceremony. Will the wedding continue, or has Kondou just been saved from becoming the next Gorilla Prince?", + "posterPath": "/s3WpYtOnj6CXwDXz8oSOALdvUvk.jpg", + "backdropPath": "/x6FUozVILpH6AVfGGTdq3z4NRXf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2021-01-15", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 20, + "popularity": 1.6955 + }, + { + "id": 54933, + "title": "Devil Survivor 2: The Animation", + "originalTitle": "DEVIL SURVIVOR2 the ANIMATION", + "overview": "The countdown to extinction begins on Sunday with the arrival of the Septentriones, otherworldly invaders set on the eradication of mankind. Caught in the crossfire, Hibiki Kuze and his friends join in the war for humanity's survival by signing contracts with demons to become \"Devil Summoners.\" Soon, their abilities attract the attention of JP's, an underground agency led by Yamato Houtsuin. Once recruited into JP's, Hibiki and his friends fight and bond alongside other ordinary citizens who are Devil Summoners.\n\nHowever, with each new day, another Septentrione appears to wreak havoc upon Japan. Even if many lives are lost in the process, before that night ends, the young summoners must defeat the invaders at all costs.", + "posterPath": "/gK6fR3u7rMjjWwbsAqD8ShH4VoS.jpg", + "backdropPath": "/fuEUXiRsOUggj0CDoiaGGf6DMMS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2013-04-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 48, + "popularity": 1.6954 + }, + { + "id": 35472, + "title": "Good Luck! Ninomiya-kun", + "originalTitle": "ご愁傷さま二ノ宮くん", + "overview": "Ninomiya is an ordinary high school student who lives at home with his older sister Ryoko. However, Ninomiya's life ceases to be normal the moment a cute girl named Mayu descends into the middle of his school's campus in a military-grade helicopter. It turns out Ryoko sent this girl, along with her older brother Mikihiro, to live at the Ninomiya household.", + "posterPath": "/fPSXKKviDFFD2DD2cMvPaoCePRN.jpg", + "backdropPath": "/1i5LXR5LMCWokbioxCaCtcgHBTj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-10-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 9, + "popularity": 1.6948 + }, + { + "id": 55589, + "title": "Today's Asuka Show", + "originalTitle": "今日のあすかショー", + "overview": "Kyouno Asuka is a cute and clueless high school girl who habitually does things, in all innocence, that seem sexually suggestive to the men around her. Each chapter in \"Today's Asuka Show\" features a different awkward situation.", + "posterPath": "/bZTbircqckomsYUNvANKMNBxLnp.jpg", + "backdropPath": "/bzmC2F6BJan9vgLmY3gr3g0HJTI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-08-03", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 14, + "popularity": 1.6935 + }, + { + "id": 60810, + "title": "Dragonar Academy", + "originalTitle": "星刻の竜騎士", + "overview": "In a land of dragons, where citizens called breeders tame their dragon pals, races of dragons are born from breeders who are given a Seikoku: a dragon star-shape brand. Learning to ride and tame dragons comes easy to most students at Ansarivan Dragonar Academy — except for first-year student Ash Blake, who is known by his fellow classmates as the \"number one problem child\".", + "posterPath": "/1syOtvPuMq31RcuWfBOpyzDkeY9.jpg", + "backdropPath": "/aaAy3CGWCrLAIvNMNv7XXoXXmsG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2014-04-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.591, + "voteCount": 33, + "popularity": 1.6913 + }, + { + "id": 25115, + "title": "Magical Canan", + "originalTitle": "まじかるカナン", + "overview": "Chihaya is an average high school student whose life turns upside down when she comes across Natsuki, a cute, rabbit-like creature that she takes in as a pet before finding out he can take human form and is from Evergreen, a parallel world full of nature and magic. He has come to the human world to retrieve five special stolen Seeds, each with the power to possess people and turn them into the embodiment of their desire. Chihaya is drafted into becoming Magical Warrior Carmine, Natsuki’s souped-up (and suped-up) lead partner and together they begin the quest to recover the Seeds, a task made more difficult by the arrivals of arrogant rival Cerulean Blue and Septem, a Magical Warrior from Evergreen who is oddly jealous of Chihaya.", + "posterPath": "/5W4v16VWZOeIahYW0CMIBkRRUsb.jpg", + "backdropPath": "/i5UgJEvHoJa3sPlAxqLPwC5g2aQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2005-01-01", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 5, + "popularity": 1.6908 + }, + { + "id": 249964, + "title": "I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time", + "originalTitle": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "overview": "Alina thought she had found the perfect job as a guild receptionist. It’s stable, safe, and has a super cute uniform. But this dream gig turns into an overtime nightmare whenever adventurers get stuck clearing a dungeon. Tired of the long nights, Alina starts taking down the bosses herself! She even earns the name Executioner for her impressive skills. Can she keep her identity a secret?", + "posterPath": "/n9WZ97NUkT0Gc7ro6kVw1qe4ItR.jpg", + "backdropPath": "/8Ho5eJGtLelyRfkJBP6Lz7mXFdb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 41, + "popularity": 1.6901 + }, + { + "id": 153337, + "title": "Reign of the Seven Spellblades", + "originalTitle": "七つの魔剣が支配する", + "overview": "It’s springtime at Kimberly Magic Academy, and new students are beginning their first year. Among them are a skilled and studious boy, Oliver, and a headstrong samurai girl, Nanao. They soon form a unique bond in the halls of Kimberly, but this picturesque school isn’t what it seems. Dark secrets and endless danger lurk behind every corner. Can these wizards make it to graduation alive?!", + "posterPath": "/kqjLHtt539Sm6aasMvlJ7tuBr4i.jpg", + "backdropPath": "/cr3Ycy5JAcdK1eFU01ebOyBYEEN.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 35, + "popularity": 1.6901 + }, + { + "id": 128237, + "title": "Legend of Mana -The Teardrop Crystal-", + "originalTitle": "聖剣伝説 Legend of Mana -The Teardrop Crystal-", + "overview": "Not far from the town of Domina lives Shiloh, a boy who keeps hearing a voice in his dreams about a mission he must fulfill. But what mission could he be needed for remains unknown. That all changes when he meets two Jumi, a race that’s hunted for their unique gemstones, as a sudden outbreak of attacks against the Jumi occurs. His dream, his quest, becomes clear—help the Jumi and their gemstones!", + "posterPath": "/7ls6XvZQqrGgbaJRw6ulsJVzfi3.jpg", + "backdropPath": "/87WbN1Ia1L4p75gkOuwbOlU5MsB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-10-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 9, + "popularity": 1.6898 + }, + { + "id": 26815, + "title": "Hello Anne: Before Green Gables", + "originalTitle": "こんにちは アン ~Before Green Gables", + "overview": "Anne Shirley goes through many adventures before she ends up in Green Gables. After losing her parents, little Anne is taken in by the Thomas family, with whom she moves in and helps look after the children and do the housework. In the meantime, she discovers more about herself, including that her name is “Anne”, not “Ann”. She is simply adorable and her creativity brings joy to difficult days.", + "posterPath": "/lv5Wvw316Nh2PJr2tvbuoIcBnWv.jpg", + "backdropPath": "/8mLrIrvGpvE8V5uvu786w2D15P3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Drama", + "Family", + "Kids" + ], + "releaseDate": "2009-04-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 12, + "popularity": 1.6838 + }, + { + "id": 47134, + "title": "Agatha Christie's Great Detectives Poirot and Marple", + "originalTitle": "アガサ・クリスティーの名探偵ポワロとマープル", + "overview": "Young Mabel West is the daughter of mystery writer Raymond West, who wants her to lead a normal life. Rebelling against this, Mabel wants to be a great detective, and sets out for London to become assistant to none other than Hercule Poirot, the great Belgian detective who resides there. She finally wins the reluctant approval of her father, and embarks on an exciting life of mystery and suspense - his only demand being that she occasionally spend some time with her great-aunt, Jane Marple, in the small village of St. Mary Mead.", + "posterPath": "/7D19c9ndhrd0hpMIbIBbLC2q0Ya.jpg", + "backdropPath": "/jYUOokCpH12jI5Fe4nb48Erc3ik.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 16, + 80 + ], + "genres": [ + "Mystery", + "Animation", + "Crime" + ], + "releaseDate": "2004-07-04", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 11, + "popularity": 1.6823 + }, + { + "id": 34734, + "title": "Star Ocean EX", + "originalTitle": "スターオーシャンEX", + "overview": "Claude C. Kenni, a crewmember on the spaceship Calnus and son of the commander of the ship, is transported to Expel, a backwards planet with swords and magic. He teams up with Rena Lanford, who thinks he is the legendary Warrior of Light, and other characters to investigate the Sorcery Globe, a meteorite that has been causing problems all over the world.", + "posterPath": "/kt4tWny4T7vLlDwLxmZ34tW90nQ.jpg", + "backdropPath": "/rGkCyXhbZCtzrRvdwvfeXw3D1hz.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2001-04-02", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 1.6823 + }, + { + "id": 46387, + "title": "Shining Hearts", + "originalTitle": "シャイニング・ハーツ 〜幸せのパン〜", + "overview": "One day, a mysterious girl named Kaguya was washed ashore the island of Wyndaria after a great storm. She encounters Rick, a swordsman who wound up working at the island's bakery. Apparently, Kaguya is suffering from having lost her memories and emotions. In addition, the usually peaceful Wyndaria is now swarming with pirates who came seeking for the special spirit stone that is worn around Kaguya's neck. Knowing the situation, Rick and his co-workers, Nellis, Amyl, and Aerie decided to bring back peace to island and help Kaguya regain her lost memories and emotions.", + "posterPath": "/oeEneTqn0nxXNViOheziMkbI78P.jpg", + "backdropPath": "/1PfcriAafBHHzUNurKbIHjGYcUn.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2012-04-13", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 5, + "popularity": 1.6821 + }, + { + "id": 60827, + "title": "One Week Friends", + "originalTitle": "一週間フレンズ。", + "overview": "High school sophomore Yūki Hase noticed that Kaori Fujimiya, his classmate, was always alone. He tried to start a conversation with her but was turned down: \"My memories of friendship can last only a week,\" she said. Despite of knowing this shocking truth, Yūki keeps trying to be Kaori's \"new\" friend every week.", + "posterPath": "/9GUz9NEePmrEw0ULIKWBFmt6S4t.jpg", + "backdropPath": "/15IxvMDAkjXmsbrQB4OKtqlKLFE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 34, + "popularity": 1.6806 + }, + { + "id": 70875, + "title": "Grimoire of Zero", + "originalTitle": "ゼロから始める魔法の書", + "overview": "When a half-beast mercenary teams up with a witch who is in search of a magical tome that can destroy the world, a grand adventure ensues. Despite his hatred of witches, he enters an agreement that shewill make him human once she reaches her goal.", + "posterPath": "/hqjNMqv0Pj4idFHsr5wUQRyJ8rV.jpg", + "backdropPath": "/iMY4IctCOvBa4PtTetFQYTflbbv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2017-04-16", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 52, + "popularity": 1.6795 + }, + { + "id": 204412, + "title": "My Home Hero", + "originalTitle": "マイホームヒーロー", + "overview": "An unassuming father becomes a target when he kills his daughter's abusive boyfriend — who happens to be the son of a cold-blooded crime boss.", + "posterPath": "/1up064CIofoNlFsn9ve8CD9mntL.jpg", + "backdropPath": "/rHvVnMQ4OtcZl7ipJ8mBmAOe39c.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 9648 + ], + "genres": [ + "Animation", + "Crime", + "Mystery" + ], + "releaseDate": "2023-04-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.94, + "voteCount": 50, + "popularity": 1.6793 + }, + { + "id": 88041, + "title": "Astra Lost in Space", + "originalTitle": "彼方のアストラ", + "overview": "In the year 2063, eight high school students and a kid are flown out to Planet Camp, tasked with surviving on their own for a few days. But shortly after arriving, an ominous glowing orb warps them to an unknown quadrant of space, nearly 5,012 light years away. Now, the only way back home is a slow, dangerous trek across the universe—a journey that’ll test them in ways Planet Camp never could.", + "posterPath": "/bprvOBSMKxGdI4Egcy3dqMhKytS.jpg", + "backdropPath": "/axoN94TihHrVgmR0Xu9Bx7ETU0U.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2019-07-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.84, + "voteCount": 122, + "popularity": 1.6787 + }, + { + "id": 65711, + "title": "KanColle: Kantai Collection", + "originalTitle": "艦隊これくしょん -艦これ-", + "overview": "Set in a world where humanity has lost control of the oceans to the “deep sea fleet,” the only hope to counter this threat are the Kanmusu, a group of girls who possess the spirit of Japanese warships. The story revolves around Fubuki, a destroyer who comes to the Chinjufu base to train with other Kanmusu. Watch as their stories unfold!", + "posterPath": "/uaAFhipjK5NTukVZdBEpynGXopn.jpg", + "backdropPath": "/uSBF5KnGh19x7ewZodkfmEXX84X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-08", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 26, + "popularity": 1.6777 + }, + { + "id": 45967, + "title": "Yamada's First Time: B Gata H Kei", + "originalTitle": "B型H系", + "overview": "OMG! There’s this girl at school, Yamada, who wants to make like a hundred sex friends. She totally thinks she can devirginize one hundred different boys! Can you believe that? That’s like every boy in the school. Who does she think she is? I heard from my friend’s neighbor’s cousin’s lab partner that Yamada’s never even been kissed. Oh. My. God. I would totally die. That’s like burn all your makeup and shave off your eyebrows embarrassing. I can’t even think about it. Today at lunch I saw Yamada flirting, like for reals flirting, with that geek Kosuda. You know the guy. Photography club, no muscles, boring face, kind of reminds you of a black-and-white movie. Super lame. If Yamada can’t even make the sex with him, she’ll never score a hundred cherry boys. She needs to take like Sex Ed or something because I heard she can’t give it away!", + "posterPath": "/xLipDrHs43crcs9KIlCIC7gW0RQ.jpg", + "backdropPath": "/s3hGaO6mzaOKj0NMerZBlRSAaX9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2010-04-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.775, + "voteCount": 149, + "popularity": 1.6775 + }, + { + "id": 65851, + "title": "A Good Librarian Like a Good Shepherd", + "originalTitle": "大図書館の羊飼い", + "overview": "Kyotaro Kakei has always had an affinity towards books in hopes to find answers to his life. With a mentor's promise, he continues to search for a book with his absolute hope. However, this changes when he receives a foretelling message saying that \"Today, something will happen that will change your fate. --From the Shepherd.\" Due to this premonition, his normal school life at Shiomoi Academy becomes entangled due to the optimistic Tsugumi Shirasaki and the Shimoi Happy Project.", + "posterPath": "/aP3hk0nBcmtTMGDhvEodcueVOav.jpg", + "backdropPath": "/xaYUbmxISL4P9QAj3duCz6ElgUg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-10-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.843, + "voteCount": 51, + "popularity": 1.6774 + }, + { + "id": 46171, + "title": "Kemeko Deluxe!", + "originalTitle": "ケメコデラックス!", + "overview": "M.M. pilots the mech known as Kemeko to protect her fiancé from the efforts of the elusive Mishima Corporation who is deeply interested in a mysterious power that is hidden within his body.", + "posterPath": "/lUMWsoHaX27hHYpD4EzQLoZuIb5.jpg", + "backdropPath": "/5LAvoDHGfIDypqufMd0cgIe2yvp.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2008-10-04", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 6, + "popularity": 1.6747 + }, + { + "id": 94795, + "title": "Cagaster of an Insect Cage", + "originalTitle": "虫籠のカガステル", + "overview": "At the end of the 21st century, a rare disease called “Cagaster” broke out, turning humans into huge insects. Two-thirds of the earth‘s population was devoured by these insects before humanity made a decision: they must exterminate the infected people. In the year 2125 – thirty years after the discovery of Cagaster – at the edge of the desert close to the “cage” of the insects, a young pest exterminator named Kidou finds a man close to death due to the wounds by insects. The man entrusts his daughter Ilie to Kidou and asks him to search for the girl‘s mother…", + "posterPath": "/fGFjE5LNqkmF4xsPibBGi3K2KkW.jpg", + "backdropPath": "/rr9y35QCgeucPiFAraJvink5iWJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2020-02-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.926, + "voteCount": 203, + "popularity": 1.6744 + }, + { + "id": 65952, + "title": "The Great Passage", + "originalTitle": "舟を編む", + "overview": "The publication of a new dictionary titled The Great Passage progresses. Mitsuya Majime, originally from publisher Genbu Shobo's sales department, has been recruited by Kouhei Araki, a veteran editor of the dictionary department who is looking to retire soon. The dictionary department is known internally as the \"money-eating insect,\" but Mitsuya uses his perseverance and attachment to the words in order to become a great editor. Mitsuya, who has poor social skills, finds himself working with another man named Masashi Nishioka, who is able to express himself better.", + "posterPath": "/jy4mxxs57mSMuZJgjrUWoDXfWAN.jpg", + "backdropPath": "/gDTu65OUcvM4cdVWioRiWH8hdEk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2016-10-14", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 29, + "popularity": 1.6724 + }, + { + "id": 71511, + "title": "Rainbow Days", + "originalTitle": "虹色デイズ", + "overview": "Nijiiro Days follows the colorful lives and romantic relationships of four high school boys—Natsuki Hashiba, a dreamer with delusions of love; Tomoya Matsunaga, a narcissistic playboy who has multiple girlfriends; Keiichi Katakura, a kinky sadist who always carries a whip; and Tsuyoshi Naoe, an otaku who has a cosplaying girlfriend.\n\nWhen his girlfriend unceremoniously dumps him on Christmas Eve, Natsuki breaks down in tears in the middle of the street and is offered tissues by a girl in a Santa Claus suit. He instantly falls in love with this girl, Anna Kobayakawa, who fortunately attends the same school as him. Natsuki's pursuit of Anna should have been simple and uneventful; however, much to his dismay, his nosy friends constantly meddle in his relationship, as they strive to succeed in their own endeavors of love.", + "posterPath": "/yfs7K7MlT9iPtKaHPgctAqvaLoq.jpg", + "backdropPath": "/vhawQAa215m7tunBjmw9fdXSXPJ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2016-01-10", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.975, + "voteCount": 20, + "popularity": 1.6722 + }, + { + "id": 87457, + "title": "Afterlost", + "originalTitle": "消滅都市", + "overview": "One day, a city suddenly disappears. Takuya, a professional by-the-contract courier and lone wolf, meets Yuki, the only survivor from the city's extinction. The two rely on a message from Yuki's father, who was heard to be missing, and head toward the disappeared city, Lost. However, unexpected obstacles strike before the pair, with the reality especially shocking for Yuki. Before them are the feelings of those left behind, a mysterious group manipulating in the shadows, and unveiling the hidden conspiracy. Takuya and Yuki, who both were initially strangers, would deepen their bond during the journey and unravel the mystery of the Lost city.", + "posterPath": "/v7rHqk0UVHoRUcwJVFFMU1rW4Ab.jpg", + "backdropPath": "/qiRMypnA64rwDGjy3nBamB4eMAi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 4.818, + "voteCount": 11, + "popularity": 1.6718 + }, + { + "id": 222798, + "title": "KamiErabi GOD.app", + "originalTitle": "カミエラビ", + "overview": "The ultimate battle royale for divinity has begun. High schoolers must use their unique powers to compete against each other for the coveted title “God.” But as each brawl becomes more vicious than the last, alliances are formed and betrayals take place. Who will emerge victorious and claim their godly throne?", + "posterPath": "/kHpMEwId7hWp3sV7ISCIExfLiCW.jpg", + "backdropPath": "/fbjoixSRyfXYSieT98bKhlbKII9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2023-10-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 4.929, + "voteCount": 14, + "popularity": 1.6712 + }, + { + "id": 204148, + "title": "Saint Cecilia and Pastor Lawrence", + "originalTitle": "白聖女と黒牧師", + "overview": "Saint Cecilia is beloved by the townspeople—not only is she elegant and composed, she benevolently shares her wisdom with all who seek it. That is, until the last person has left—at which point she becomes totally hopeless! Only Pastor Lawrence, is keeping the Saint put together enough to do her duties...and though she may test him, it's all in a day's work!", + "posterPath": "/4Twu5WXhRfbBsJwSZEqqMKrwyvj.jpg", + "backdropPath": "/e2v5VheLqWA7arwfIcGkmuzipmd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-13", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.417, + "voteCount": 24, + "popularity": 1.6702 + }, + { + "id": 75864, + "title": "Katana Maidens: Toji no Miko", + "originalTitle": "刀使ノ巫女", + "overview": "There's an evil creature called Aratama that attacks people, and a group of Miko has been exorcising those creatures using swords since olden times. Those who wear uniforms and swords are called Toji, who are officially called Tokubetsu Saishi Kitoutai (Special Ritual Maneuver Team) in the police association. They are officially approved to wield the swords by the government officials. The government has established five training schools consisting of junior and senior high levels for the female students to attend. They spend their student life normally, and use special skills with the swords when they're doing missions to protect people. In the spring, these five schools are to take part in a competition. Among the girls who train for the competition, there's a girl who's a bit more passionate than any other girls. Where would the girl with the sword aim?", + "posterPath": "/9y7K58aKhAj8KWWqwRWm03oEeBA.jpg", + "backdropPath": "/kzWs6c4kEMEto1EXAb9s66i43vX.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2018-01-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 9, + "popularity": 1.6702 + }, + { + "id": 75986, + "title": "Servant x Service", + "originalTitle": "サーバント×サービス", + "overview": "Imagine if three people suddenly found themselves as civil servants of the city Mitsuba. What sort of personalities and drives would they have to push them to seek out such careers? Lucy Yamagami, a serious young woman assigned to the Welfare Administrative Section, intends to use the job as a means of settling a vendetta against another civil servant. Yutaka Hasebe, a flirtatious young man assigned to the First Section of the Welfare Department, intends to slack off whenever he can and have a good time. And Saya Miyoshi, a college graduate assigned to the Second Section of the Welfare Department, intends to simply get through the first job she's had in her life as best she can.\n\nServant x Service follows these three newcomers starting their jobs as government employees under their supervisor, Taishi Ichimiya, who is utterly clueless about how to direct them—despite having worked there for the last eight years. Nevertheless, he welcomes them as fellow civil servants and encourages them to work themselves like dogs for the sake of the citizens. We follow their day-to-day lives as they experience the rigors of government employment, including dealing with regulations, office romances, paperwork, and being the nearest punching bags when citizens need something to complain about.", + "posterPath": "/o8xU2PnuJlNJlo7krWgLMEVCF3y.jpg", + "backdropPath": "/zDnpmBoIflnwXpc4ibiwriumx4I.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-07-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 18, + "popularity": 1.6701 + }, + { + "id": 123250, + "title": "Don't Hurt Me, My Healer!", + "originalTitle": "このヒーラー、めんどくさい", + "overview": "The misadventures of a knight and a healer begin in this new fantasy comedy series!", + "posterPath": "/cevHZjtp3DRdNtPnOoqYdoPxOwz.jpg", + "backdropPath": "/uAQeQ123KrbJDqdxrrvFvI9kPLF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.222, + "voteCount": 18, + "popularity": 1.6696 + }, + { + "id": 96860, + "title": "A3!", + "originalTitle": "A3!", + "overview": "In Tokyo, there is a place called Velude Way. It is a district notorious for its performers and theatrical groups. Izumi Tachibana, who was previously a stage actress, arrives with a letter that reads, \"Full of debt! Zero customers! Only one actor!\" It describes the current state of the once-popular theater group Mankai Company. Her task is to rebuild the company to its former glory as the new owner and chief director.", + "posterPath": "/2QROy0rSIv3bbtPid79vagE6zBl.jpg", + "backdropPath": "/1RwbwBhEk1mj0Ov5brt2UcxJIKb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2020-01-13", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 9, + "popularity": 1.6676 + }, + { + "id": 250597, + "title": "Dungeon People", + "originalTitle": "ダンジョンの中のひと", + "overview": "An unexplored dungeon, filled with monsters and traps. An expert thief, searching for her lost father. When Clay delves into the dungeon deeper than any adventurer has ever gone, she is offered a job by the dungeon's caretaker! Now, instead of exploring, Clay must learn how to interview new monsters, set traps and position slimes around the dungeon. Will this new career path bring her any closer to finding her father?", + "posterPath": "/n3CEjyTUy6zKX8BCyUnSfYQazP8.jpg", + "backdropPath": "/fhuFYqbeIWo1ot3iXhVhNqVJ5LJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 12, + "popularity": 1.6652 + }, + { + "id": 34809, + "title": "Ghost Hunt", + "originalTitle": "ゴーストハント", + "overview": "Telling ghost stories is a favorite past time of Mai Taniyama and her friends—that is, until she meets 17-year-old Kazuya Shibuya, the man sent by Shibuya Psychic Research Center to investigate paranormal activity at a supposedly haunted school. When Mai gets caught in a dangerous situation, she is rescued by Kazuya's assistant. Saving her lands the assistant incapacitated, and Kazuya demands that Mai become his assistant, instead...", + "posterPath": "/c6NdT9BDcEfIYtL0CmJEtjhVi4.jpg", + "backdropPath": "/5EhDY6z8R2ZJENDcnwvwGmFOZ56.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2006-10-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 42, + "popularity": 1.665 + }, + { + "id": 27245, + "title": "My Wife is a High School Girl", + "originalTitle": "おくさまは女子高生", + "overview": "The 17-year-old Onohara Asami is a cute, second-year high school student. Nobody knows that she is actually already married to her 25-year-old physics teacher, Ichimaru Kyousuke (Danna-sama). Besides her responsibility as a student, she now has to take care of the household and keep the marriage a secret at school.\n\nJuggling these things on a daily basis is all but easy for Asami, especially with the complications introduced by her well-meaning but nosy best female friends; an overprotective very intrusive father Iwao; the kind teacher Iwasaki who of all men falls for Asami's husband; or the quite alluring next-door neighbour Sakura Mizunosaki. Against all these odds Asami tries to nurture her young love with Danna-sama.", + "posterPath": "/crjGXARJBVXnQzoKo9V90JXEBA6.jpg", + "backdropPath": "/48SZuHv32CrNi5TSZ6Ym0WCyslS.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2005-07-02", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.25, + "voteCount": 8, + "popularity": 1.6639 + }, + { + "id": 68637, + "title": "Okami-san and Her Seven Companions", + "originalTitle": "オオカミさんと七人の仲間たち", + "overview": "Ryōko Ōkami is a spunky high school girl who is a member of a \"fixer\" club called the Otogi High School Bank. She fixes the school's problems with her partner Ringo Akai (\"Akazukin-chan\").", + "posterPath": "/ikVewHWOnU7rZg1lluApogpjoM3.jpg", + "backdropPath": "/NSLaQ76PuFth3iVG6WCWNTiTc8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-07-01", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 21, + "popularity": 1.6636 + }, + { + "id": 217710, + "title": "MAKE MY DAY", + "originalTitle": "MAKE MY DAY", + "overview": "On an isolated icy planet promising a bright future, prisoners are forced to excavate a rare energy source that leads to a deadly, unwelcome discovery.", + "posterPath": "/eNVbP4T5Pjj0aWQKNeHBWhG9MZl.jpg", + "backdropPath": "/21wZ83vCQ6tzhmFQwspjO8x1ex5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2023-02-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.482, + "voteCount": 28, + "popularity": 1.6635 + }, + { + "id": 95560, + "title": "Stop!! Hibari-kun!", + "originalTitle": "ストップ!!ひばりくん!", + "overview": "A teenage boy has now moved in the home of his mother's friend, because she had died a while back. It just so happens that the Yakuza family has four beautiful daughters, but one daughter, Hibari, who is more beautiful then the rest of the daughters is male. Hibari just can't keep her hands off our hero and so their crazy yet happy lives go on.", + "posterPath": "/wzqd0MZYkff0rfk8QBdxs5Ty4I1.jpg", + "backdropPath": "/xb0uOUJsDI2z7DKVQoz7YuEjvcn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1983-05-20", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 5, + "popularity": 1.6625 + }, + { + "id": 244624, + "title": "The Do-Over Damsel Conquers the Dragon Emperor", + "originalTitle": "やり直し令嬢は竜帝陛下を攻略中", + "overview": "Jill Savelle—fiancée of the crown prince Gerald de Kleitos and known as the \"Lady Goddess of War\"—is being hunted down by the same country she swore to protect. Betrayed by her betrothed, she is framed as a traitor and imprisoned. In her last moments, Jill is filled with regret, but just as death approaches, she awakens six years in the past. This time, she will not be a mere pawn. Now as a 10-year-old girl, Jill resolves to escape her imminent engagement to the prince. To this end, she jokingly professes her love to the 19-year-old dragon emperor Hades Theos Rave, who will one day stain the land in blood due to madness. But against all expectations, he accepts! In contrast to the tyrant from Jill's memories, the Hades of this time is a kind albeit unfortunate emperor. Can Jill prevent Hades from descending down the same dark, villainous road, or is he bound to an inevitable future?", + "posterPath": "/vvpBGiUxOI7QwILqYisu0D4TmLI.jpg", + "backdropPath": "/orTfV410xi7BtGr8OCRiPLzKh2f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-09", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8.333, + "voteCount": 45, + "popularity": 1.6592 + }, + { + "id": 200750, + "title": "The Legendary Hero Is Dead!", + "originalTitle": "勇者が死んだ!", + "overview": "Touka is just your average (slightly perverted) farmer in the village of Cheza. While he daydreams about being a hero and getting the girl, the real hero, Sion, is out battling demons that threaten to invade the world! But one day, Touka accidentally kills the hero…?! With the Legendary Hero dead, who's going to save the world now?! Touka quickly buries Sion's body to hide the evidence, but wakes up the next day to discover he is no longer in his own body…!!", + "posterPath": "/lfROsNTtbheDWFrkzQiXm3kkcdo.jpg", + "backdropPath": "/dTw1gHrpoVP5mPFwm9KwKge2UQP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 36, + "popularity": 1.6591 + }, + { + "id": 71014, + "title": "Sagrada Reset", + "originalTitle": "サクラダリセット", + "overview": "Nearly half the population of Sakurada, a small town near the Pacific Ocean, has some sort of unique power. These powers range from being able to enter the mind of a cat, to resetting the world back to a certain point in time in the past. There is a group known as the \"Kanrikyoku\" that controls and monitors the use of these powers. Asai Kei and Haruki Misora work for their school’s club called \"Houshi\" club, which execute any missions received from the Kanrikyoku. Misora has the ability to reset the world 3 days. This means that all events and any memory of the past 3 days that \"could have\" happened, never happened. Kei has the ability to \"remember\" the past. Even after Misora uses her powers to reset the world back 3 days, Kei will retain those 3 days in his memory. Combining their powers, these two solve missions issued by the Kanrikyoku.", + "posterPath": "/ldEuPb5uFwDk1HQInurcUV2w7tD.jpg", + "backdropPath": "/fI4JIIEDQpptlFkBjTavqDjMFIF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 22, + "popularity": 1.6573 + }, + { + "id": 37155, + "title": "Graveyard Kitaro", + "originalTitle": "墓場鬼太郎", + "overview": "Kitarō is a yōkai boy born in a cemetery, and aside from his mostly-decayed father, the last living member of the Ghost tribe. He is missing his left eye, but his hair usually covers the empty socket. He fights for peace between humans and yōkai, which generally involves protecting the former from the wiles of the latter.", + "posterPath": "/lGMWgB4Rjk2jELgMOwaJgFcUGvz.jpg", + "backdropPath": "/df9nr5OQFRL61NQD4j0RH8Ofw6W.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-01-10", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 10, + "popularity": 1.6567 + }, + { + "id": 61791, + "title": "Hamatora", + "originalTitle": "ハマトラ", + "overview": "\"Minimum\"— Otherwise known as \"small miracles\", is a special power that only manifests within a few, select humans. Those who possess this ability are called \"Minimum Holders.\" 2014: Yokohama. The detective duo of Nice and Murasaki, otherwise known as \"Hamatora,\" wait again today for work with their friends at a table at Cafe Nowhere that they use as their agency. Suddenly, a job they receive seems to have a weird connection with the serial killer that their police friend, Art is searching for.", + "posterPath": "/8Z0ZI2ZSngF1nHvRVt9jnSGF026.jpg", + "backdropPath": "/bNNXcyNoNEOHSgx5wVQHHU3nY53.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2014-01-08", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 20, + "popularity": 1.6566 + }, + { + "id": 88061, + "title": "Hensuki: Are You Willing to Fall in Love With a Pervert, As Long As She's a Cutie?", + "originalTitle": "可愛ければ変態でも好きになってくれますか?", + "overview": "A high school student whose years of not having a girlfriend is his age, Keiki Kiryuu, suddenly receives a love letter. He is happy he can finally have a girlfriend, but is also surprised because not only is there no sender name but also included is white underwear…??? The cute girls who gather around him are all weird and with reasons!? Who is the Cinderella who sent the underwear?", + "posterPath": "/9pSKwAec9Z5cJQTBihg9BfbsDCe.jpg", + "backdropPath": "/cBCpiZZ8muGg4tOWINnrI7k8Ldz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "2019-07-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.706, + "voteCount": 531, + "popularity": 1.6562 + }, + { + "id": 61438, + "title": "Dramatical Murder", + "originalTitle": "DRAMAtical Murder", + "overview": "Aoba lives on Midorijima, a small island to the southwest of the main islands of Japan. He lives with his grandmother Tae while working part time at a junk shop. The popular pastimes on the island are the ongoing turf war called \"Libstease\" and an online game set in the virtual world of \"Rhyme.\" Aoba isn't involved in either, preferring to live peacefully, until one day he is forced into a Rhyme battle.", + "posterPath": "/nfyRtIFiqaIRFhyzEPKgLGCJDXw.jpg", + "backdropPath": "/pQa0O4eMWTk09iWdb70nSOIUcZg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 21, + "popularity": 1.6561 + }, + { + "id": 98867, + "title": "Ikebukuro West Gate Park", + "originalTitle": "池袋ウエストゲートパーク", + "overview": "The story revolves around 20-year-old Makoto, who frequently gets involved in highly dangerous situations, usually against his own judgment. Along for the ride are his best buddies Shun, Masa, and Takashi, the enigmatic leader of a local gang in Ikebukuro.", + "posterPath": "/kix66RNyfrE0bdQUjQal6vgaOV0.jpg", + "backdropPath": "/mxSR3rqiiwJGV6F0ds6qPlIr0jn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2020-10-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 28, + "popularity": 1.6535 + }, + { + "id": 71004, + "title": "Anonymous Noise", + "originalTitle": "覆面系ノイズ", + "overview": "Nino sings for one reason only: to be found. Blessed with a beautiful voice, she wishes to reunite with two childhood friends: Momo and Yuzu. Things start to change as she enters her first year of high school.", + "posterPath": "/nA36mSp08P9w9yr6HXY7j520AJR.jpg", + "backdropPath": "/yjkRAd9pjVgB0kpZSQXvMQB8yZC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-04-11", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 14, + "popularity": 1.6515 + }, + { + "id": 45615, + "title": "Ragnarok The Animation", + "originalTitle": "Ragnarok The Animation", + "overview": "A great evil sweeps across the realm, and the young swordsman Roan, along with his life-long companion Yufa, must face it.", + "posterPath": "/abB39KcMPQEIg7FA5IjYJsOqKVi.jpg", + "backdropPath": "/v8SzfCbHQjONondEN3anYU7KRwJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-07", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 7, + "popularity": 1.6515 + }, + { + "id": 42442, + "title": "Maburaho", + "originalTitle": "まぶらほ", + "overview": "High school student Kazuki Shikimori comes from a line of powerful magicians with extraordinary DNA and he attends the most prestigious school for wizards in all of Japan. It would seem that life is good for Kazuki. Unfortunately, that couldn’t be further from the truth. He’s not the most smooth when it comes to the ladies, his grades are poor, his athletic skill is next to none, and to top it all off, he can only use his magic eight times before he turns into dust! However, three magical hotties have learned of his genetic secret and are all after him! Suddenly he has become the most “popular” kid in class. Are all these girls out to romance him, or are they only after his DNA?", + "posterPath": "/hDV2FsIjNrKgAXe7GKis1eqKp6Z.jpg", + "backdropPath": "/jPlwOnhAHeSLoHyYGGI56Cbca6T.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10765, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2003-10-14", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 4.909, + "voteCount": 11, + "popularity": 1.6493 + }, + { + "id": 34802, + "title": "The Melody of Oblivion", + "originalTitle": "忘却の旋律", + "overview": "After a war occurred in the 20th century between humans and demons. Since that time, the monsters rule the world in fear but keep relatively hidden from public view. A boy named Bokka ponders the past and wonders what became of the Meros Warriors who defended the world so bravely against the demons.", + "posterPath": "/A5s2Z2y3PUm5qtwi9jE3ek9SPd.jpg", + "backdropPath": "/km5AHMstq5BVMwPw7dYd2dK744m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.429, + "voteCount": 7, + "popularity": 1.6488 + }, + { + "id": 77729, + "title": "Cutie Honey Universe", + "originalTitle": "Cutie Honey Universe", + "overview": "Honey Kisaragi is an amazingly humanlike and fashion conscious android with the unique ability to transform her body into a wide range of outrageous yet stylish disguises, each of which comes with its own dazzling super ability. After a run-in with a sinister secret criminal cabal organization, Panther Claw, the luscious and law-abiding Honey makes it her mission to bring them down.", + "posterPath": "/vs2vejPLKVpbbHcUmfqIMuA0Wj2.jpg", + "backdropPath": "/3bwrHHyUg1PLxEaEQX1vz0S2IJL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 12, + "popularity": 1.6482 + }, + { + "id": 65934, + "title": "Flying Witch", + "originalTitle": "ふらいんぐうぃっち", + "overview": "Makoto Kowata is a little flighty, in multiple ways. With no sense of direction, but the ability to fly on a broom, this witch-in-training has a lot to learn; about magic, her relatives, and the world around her.", + "posterPath": "/uSbsjjzMTZL5Bo3ATTs3XaLtSZO.jpg", + "backdropPath": "/iOlqvqTqKXVnBNoE0x5QJkyghYW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-10", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 52, + "popularity": 1.6479 + }, + { + "id": 85065, + "title": "Kyousougiga", + "originalTitle": "京騒戯画", + "overview": "Hidden within Kyoto is the \"mirror capital\" where youkai and humans live together and no one ever dies. It is protected by three people - Kurama, Yase, and Myoue - as they await the return of their parents, Myoue Jonin and Koto. One day a young girl named Koto (same name, different spelling) and her little brothers A and Un wander into the city from a different dimension looking for her mother. A mecha-geek with red eyes, it's not immediately clear whether she's human or youkai. Her arrival upsets the long peace that had ruled the city.", + "posterPath": "/8MM2mZzzeqh7Sl03q1DtRqHAxMN.jpg", + "backdropPath": "/4DTjUzcTgrz00HFqHeuzyTctOyu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2013-10-10", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 8, + "popularity": 1.6474 + }, + { + "id": 44616, + "title": "King of the Braves GaoGaiGar FINAL", + "originalTitle": "勇者王ガオガイガーFINAL", + "overview": "A new threat makes its appearance on Earth. GGG - with Guy Shishio and the newly-constructed GaoFighGar - team up with their French counterpart Chasseur to battle the Eleven Kings of Sol.", + "posterPath": "/vdxJ0d1HE6ODFANpVcZcDXXwQQD.jpg", + "backdropPath": "/dLCglqxmAJX9cP1t5ZNLAXGgU1B.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2000-01-21", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 9.2, + "voteCount": 5, + "popularity": 1.6461 + }, + { + "id": 68402, + "title": "Matoi the Sacred Slayer", + "originalTitle": "装神少女まとい", + "overview": "Matoi Sumeragi wishes for nothing more than to lead a normal life away from the spotlight. She is quite satisfied alternating between school and her part-time job at her best friend Yuma Kusanagi's family shrine. But this routine life is permanently disturbed when a Night—an evil extra-dimensional entity—attacks the shrine. Matoi is able to drive it off after unwittingly calling upon the powers of a god, the natural enemies of the Nights.\n\nMatoi and Yuma are soon joined by Claris Tonitolus, an experienced exorcist from the Vatican, and agent Haruka Luciela, who works for the secretive Night defense organization IATO. Despite not knowing the perpetrator behind these attacks nor their motive, Matoi must come to master this newfound power in order to protect both the people around her and the once normal life she holds so dear.", + "posterPath": "/zwwk7C4y4mQh5QSbMR6YBYpvd1r.jpg", + "backdropPath": "/zKItfoF4uNsokHjQBCbRfccsDV0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-10-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 8, + "popularity": 1.6456 + }, + { + "id": 261311, + "title": "I Want to Escape from Princess Lessons", + "originalTitle": "妃教育から逃げたい私", + "overview": "Leticia Dorman, daughter of a duke, is less than thrilled to be engaged to a crown prince. Betrothed since childhood and trained to be queen, she always hoped Prince Clarke would fall for someone else one day. So when he shows up at a ball with another woman, Lettie excitedly retreats to the countryside to start her new life—only for Clarke to appear, determined to win her heart.", + "posterPath": "/9i9V4kmO2jN6vRnnqQB4LpDHltD.jpg", + "backdropPath": "/zsrH7UpXF78wg3LMawl9hO7EV5S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.583, + "voteCount": 12, + "popularity": 1.6454 + }, + { + "id": 66990, + "title": "Sweetness & Lightning", + "originalTitle": "甘々と稲妻", + "overview": "Kohei is a single father and high school teacher who lives with his only daughter. A chance encounter brings him together with Kotori, one of his students. The three of them start to meet together to make meals. None of them know how to cook, but they all love delicious food!", + "posterPath": "/lo2koVLl9NbtGqnkmxCwUS5lseF.jpg", + "backdropPath": "/2u9mXc9x9UCCJEpN2NJtDyYNCVh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 47, + "popularity": 1.6447 + }, + { + "id": 70296, + "title": "Anti-Magic Academy: The 35th Test Platoon", + "originalTitle": "対魔導学園35試験小隊", + "overview": "Set in a world where witches run havoc, the military decides to shift from using sword to utilizing guns to neutralize magical threats. The Anti-Magic Academy is an institution that specializes in training witch hunters. Takeru Kusunagi, who can’t use guns and continues to fight with a sword, is relegated to the 35th Test Platoon, a motley group who can’t cooperate. One day, Ouka Ohtori, an elite pistol master who was forced into demotion, joins the platoon. Will they be able to gather their strengths and work together?", + "posterPath": "/8xbHgFPwQiWyf9mSj3cx9UD5xot.jpg", + "backdropPath": "/5rKXBXWwNxrXTNBEYqMZpVSL0u1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2015-10-08", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 90, + "popularity": 1.6442 + }, + { + "id": 9474, + "title": "GoShogun", + "originalTitle": "戦国魔神ゴーショーグン", + "overview": "GoShogun was a super robot anime series produced in 1981 and aired in 1982 in Japan. It is variously referred to in English as \"Demon God of the War-Torn Land GoShogun\", \"Warring Demon God GoShogun\", \"Civil War Devil-God GoShogun\" and \"Macron 1\".", + "posterPath": "/7REEgkWVh1jjbh6X17tMUIKqUwK.jpg", + "backdropPath": "/2yDXhXMAUXWmR1nsMsK7ArIHBKk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1981-07-03", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 5, + "popularity": 1.6442 + }, + { + "id": 120966, + "title": "AMAIM Warrior at the Borderline", + "originalTitle": "境界戦機", + "overview": "In 2061, Japan is under a state of occupation by multiple states. The world, including Japan, has been consolidated under the rule of four trade blocs. The entire archipelago is now the frontline of conflict. The Japanese people live under a state of constant occupation and oppression, with humanoid war machines called AMAIM patrolling its streets. A young introverted boy named Amō Shiiba has a chance meeting with the autonomous AI Gai, and his acquisition of the AMAIM Kenbu begins a story that will see him attempting to take back Japan. Gashin Tezuka is a reticent and frank 16-year-old member of the Japanese resistance who pilots the AMAIM Ghost to avenge his father.", + "posterPath": "/ciVI9scPYlAgvfA7PGFBtw9Os78.jpg", + "backdropPath": "/t5KMOhdsy0yR3C8N6WaJb5W4XFD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 12, + "popularity": 1.6426 + }, + { + "id": 121840, + "title": "Visual Prison", + "originalTitle": "ヴィジュアルプリズン", + "overview": "Beautiful immortals have gathered in Harajuku to compete for a grand prize: Immense power! For years now the artists behind worldly culture and music have secretly been vampires, including those who produce Visual Kei. Now, they perform their most beautiful songs in the hallowed grounds of the Prison under the Scarlet Moon.", + "posterPath": "/bMqLjdYSbfQVooNjcbavzNLiA32.jpg", + "backdropPath": "/5Q46p9M4XqnotQ6WQ587iQ2VdGg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 12, + "popularity": 1.642 + }, + { + "id": 36157, + "title": "Strawberry Panic!", + "originalTitle": "ストロベリー・パニック", + "overview": "Nagisa Aoi is a new transfer student into one of the three prestigious all-girls Catholic high schools on Astraea Hill: a school called St. Miator (the other two are St. Spica and St. Lelim (known in the anime as Le Rim, for some reason). While getting totally lost on her first day, she stumbles into a clearing with a tree, and also into a girl with long silver hair. Nagisa is immediately smitten with the girl, Shizuma Hanazono, otherwise known as the Etoile of the three schools (the most idolized girl). Shizuma, after picking up a figurine dropped by Nagisa, kisses her on the forehead, leading to Nagisa fainting. After waking up in the school's infirmary, Nagisa then meets her new roommate, Tamao Suzumi. Things, however, will be getting a lot more complicated for the new student than just that.", + "posterPath": "/by84rkK4b3jEDTpaXfs3riwYmdr.jpg", + "backdropPath": "/8wNnApquXIWkcdxpBGXgNXhTimu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2006-04-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.056, + "voteCount": 36, + "popularity": 1.6416 + }, + { + "id": 1102, + "title": "Simoun", + "originalTitle": "シムーン", + "overview": "In the world of Daikuuriku, everyone is born female, and chooses which sex they wish to become at age 17. In this world, the peaceful theocracy of Simulacrum is guarded by magical flying machines called \"Simoun\", which can only be piloted by young girls who haven't chosen a sex yet. The Simoun can activate a magical power known as \"Ri Maajon\" that can destroy large numbers of enemies at once. When the industrialized nation of Argentum decides that it needs to invade Simulacrum to acquire the secret of the Simoun, war breaks out, drawing the Simoun \"Sibyllae\" (priestesses who fly the Simoun) into a lopsided battle. Because the war is raging, the Sibyllae are granted an exemption from choosing a permanent sex for as long as they're willing to keep flying. Aaeru, a determined young Sibylla with a mysterious past, and Neviril, the leader of Chor Tempest, Simulacrum's most elite Simoun squadron, must lead their fellow priestesses through conflict both within their ranks and in the sky.", + "posterPath": "/wLWB1z3WazzQxReEpr4HbJHP1X2.jpg", + "backdropPath": "/zfjO1BTSb9XGH59Id3lUTrQSdwi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 4.9, + "voteCount": 8, + "popularity": 1.6403 + }, + { + "id": 77437, + "title": "The Pilot's Love Song", + "originalTitle": "とある飛空士への恋歌", + "overview": "In order to uncover the \"end of the sky,\" as spoken of in ancient mythology, Kal-el Albus is sent to Isla, an island in the sky. There he attends Cadoques High's Aerial Division, where he enjoys a carefree life with his schoolmates. That is...until a surprise attack by the air tribe drags Isla into a bloody war.", + "posterPath": "/9ctuZnRRYtzjjY6RL5yLrfQKigB.jpg", + "backdropPath": "/hhOFnIBUUVlX8W3VchikMf6wuq8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-01-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 12, + "popularity": 1.6396 + }, + { + "id": 34106, + "title": "Petite Princess Yucie", + "originalTitle": "ぷちぷり*ユーシィ", + "overview": "Yucie, is a 17-year-old who is trapped in a 10-year-old's body, her and her friends are all designated as Platinum Princess candidates and compete to receive the Eternal Tiara which grants any wish.", + "posterPath": "/64MGDzxzF7AKrKtIn2seCLX1Jcj.jpg", + "backdropPath": "/5QCwAW4eaydHCfOYQKBE4a9NmxS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-09-30", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 6, + "popularity": 1.6392 + }, + { + "id": 61424, + "title": "Survival Game Club", + "originalTitle": "さばげぶっ!", + "overview": "Momoka is a high school student who's mastered the art of blending in after transferring from one school to another several times. Despite her ability to fly under the radar, she finds herself recruited by her new school's survival game club. Most of the other girls in the club are a bit eccentric in one way or another: there's the wealthy gun nut, the cosplaying otaku, and the seemingly cute girl with a terrifying dark side. Momoka, however, is just as eccentric herself.", + "posterPath": "/5giOngzsnaTzSvyI7RQs9Q3ytdR.jpg", + "backdropPath": "/timf3aNyFxSRYQMNCjBNoL5vKbq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2014-07-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 26, + "popularity": 1.6387 + }, + { + "id": 220779, + "title": "The Great Cleric", + "originalTitle": "聖者無双~サラリーマン、異世界で生き残るために歩む道~", + "overview": "After his untimely death, this salaryman gets another shot at life! When Luciel is reborn into a magical new land, he becomes a healer in hopes of leading a peaceful life. However, he quickly learns that being a healer is much more challenging than he expected. With strict and strenuous training in store, this new life is turning out to be anything but peaceful.", + "posterPath": "/zkzYTYdhaNqRaGyKsBunt3y5vs0.jpg", + "backdropPath": "/mGpuHNcR7hTqHSDlMEhaiVrKzOP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-07-14", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 37, + "popularity": 1.6385 + }, + { + "id": 43926, + "title": "Wandering Son", + "originalTitle": "放浪息子", + "overview": "Shuichi Nitori transfers to a new elementary school, and there, meets Yoshino Takatsuki. The two children discover they share a similar secret.", + "posterPath": "/eh46V76Xn0aVJvc9i7l3ELSCQg1.jpg", + "backdropPath": "/58qlFb33nyvXyJdghSC04NaSZTO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2011-01-14", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 20, + "popularity": 1.638 + }, + { + "id": 72506, + "title": "A Centaur's Life", + "originalTitle": "セントールの悩み", + "overview": "Kimihara Himeno, also known as \"Hime,\" goes about her life, love, and studies just like any ordinary high school girl. The only difference is that she's a centaur. She enjoys her school life along with classmates of many unique shapes, including Nozomi the draconid, Kyoko the goatfolk, an angelfolk class representative, and Sassas-chan the Antarctican. Hime's younger cousin Shino-chan, her friend Maki-chan, and the class representative's four younger sisters also join the cast in this very cute slice-of-life story about girls who are human, yet aren't!", + "posterPath": "/m3WqZmeXgdjTu6ZieU4wFGjmjR8.jpg", + "backdropPath": "/gPf5EiSL6Cbx1qKCf0vLPBHgsWG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-09", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 20, + "popularity": 1.6379 + }, + { + "id": 45954, + "title": "C³ - CubexCursedxCurious", + "originalTitle": "C³ -シーキューブ-", + "overview": "A high school student named Yachi Haruaki receives a mysterious, super-heavy black cube from his father overseas. That night, Haruaki wakes up to a suspicious noise in the kitchen, and he discovers a fully naked female thief of rice crackers. The girl, Fear, is the first of several surprises that Haruaki receives.", + "posterPath": "/ykN5y5EMM35cXMTg4noiWIvK0ML.jpg", + "backdropPath": "/2toD6plrSbiloH9AHMlXRV0jo45.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2011-10-01", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 13, + "popularity": 1.6373 + }, + { + "id": 34147, + "title": "Gallery Fake", + "originalTitle": "ギャラリーフェイク", + "overview": "Gallery Fake is a Japanese manga by Fujihiko Hosono. In 1996, it received the Shogakukan Manga Award.", + "posterPath": "/rWLjX3YW65UThIF2jtiYZBjMHla.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2005-01-08", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 7, + "popularity": 1.6368 + }, + { + "id": 229612, + "title": "The Yuzuki Family's Four Sons", + "originalTitle": "柚木さんちの四兄弟。", + "overview": "The four Yuzuki brothers—Hayato, Mikoto, Minato, and young Gakuto—lost their parents two years ago and now work to raise themselves. Together they live, learn, fight, and forgive as brothers should.", + "posterPath": "/nGCldiTl1wfHdq8OtzTxikflxGm.jpg", + "backdropPath": "/hjjlL2dg7qguCiPrJQnUfuIBwKm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Family", + "Kids" + ], + "releaseDate": "2023-10-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 19, + "popularity": 1.6352 + }, + { + "id": 13511, + "title": "Genesis Climber MOSPEADA", + "originalTitle": "機甲創世記モスピーダ", + "overview": "In the year 2050, an alien race, invade and successfully conquer the Earth. Years later the inhabitants of Mars Colony send out a desperate Liberation Force to try and reclaim their lost home world. Stig Bernard, finds himself on Earth, gathering a handful of resistance fighters and attempting to beat them.", + "posterPath": "/qUIValr0RVGjKflidAN6W0X8WZU.jpg", + "backdropPath": "/ixDRE0aAJgSUAPH65xd4ijNckoK.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-10-02", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 1.6352 + }, + { + "id": 71003, + "title": "Starmyu", + "originalTitle": "高校星歌劇[スタミュ]", + "overview": "Hoshitani Yuta enters Ayanagi Academy, a school focusing on show business activities, specifically music. The academy has a group of the grade three students with the highest grades in the musical department, and they are known as the Kao Kai (Cherry Blossom Flower Association). This organization stands at the top of the pecking order within the academy. The shortcut to entering the musical department is to enter the Star Frame class, which is directly taught by the members, and to be recognized by them. Unfortunately, due to their own problems, students Nayuki Toru, Tsukigami Kaito, Tengenji Kakeru, Kuga Shu and Hoshitani Yuta are all struggling to even remain candidates for the musical department. By a stroke of luck, however, the five are spotted by Kao Kai member Otori, and they pique his interest.", + "posterPath": "/bZRYA5d7tyORZxMQwsrMbxCdLp0.jpg", + "backdropPath": "/9xHwJDTkyGdsMXDSSwokQSlp49q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-10-06", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 5, + "popularity": 1.6341 + }, + { + "id": 45275, + "title": "La Storia della Arcana Famiglia", + "originalTitle": "アルカナ・ファミリア", + "overview": "The story follows Arcana Famiglia, a self-appointed organization with mysterious powers that has protected a small Mediterranean island from pirates, foreign countries, and other threats. The only daughter of the family's Papa, Felicita, will be married to the next head of the family in two months — and the successor will be decided in a competition that Felicita herself will take part in.", + "posterPath": "/iAG03eJ32d6HaDdR7MnEvEyZpYr.jpg", + "backdropPath": "/o002wVtLqO1ZPBV3svRVvLqy8wc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Drama" + ], + "releaseDate": "2012-07-01", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 23, + "popularity": 1.634 + }, + { + "id": 76126, + "title": "Hakata Tonkotsu Ramens", + "originalTitle": "博多豚骨ラーメンズ", + "overview": "The city of Fukuoka houses a thriving criminal underbelly. It is here where Zenji Banba, a laid back detective crosses paths with Xianming Lin, a cross-dressing hit man.", + "posterPath": "/tScQkhR6nIhiWFGIjdK8BKt9WTd.jpg", + "backdropPath": "/sRMpzmcs1ARHbNjkj0sVFcYXOsp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 18 + ], + "genres": [ + "Animation", + "Crime", + "Drama" + ], + "releaseDate": "2018-01-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.147, + "voteCount": 34, + "popularity": 1.6331 + }, + { + "id": 64210, + "title": "Cyber City Oedo 808", + "originalTitle": "サイバーシティ OEDO 808", + "overview": "In the city of Oedo 2808 A.D., three Cyber criminals are given two choices, to either rot in jail or to join a special force of the Cyber Police to possibly get one more chance at freedom. For each criminal apprehended, and for each successful mission done, the state will agree to reduce their sentences. Lead by Hasegawa, the new recruits: Sengoku, Gogul, and Benton will bring some hard justice to Oedo, and possibly taste freedom once again.", + "posterPath": "/9TaiOqFMxVPEBGwpdRZbskRgCtY.jpg", + "backdropPath": "/a8grrhoCHVj0tXL7LiE8fVEDsTr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80 + ], + "genres": [ + "Animation", + "Crime" + ], + "releaseDate": "1990-06-21", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 14, + "popularity": 1.6327 + }, + { + "id": 74092, + "title": "A Sister's All You Need", + "originalTitle": "妹さえいればいい。", + "overview": "Itsuki Hashima is a light novelist obsessed with little sisters, strictly focusing on them when he writes his stories. Despite his personality, he's surrounded by a tight circle of friends, including a beautiful genius writer who loves him, a big-sisterly college classmate, a fellow male writer, a sadistic tax accountant, his editor, and Chihiro, his perfect younger step-brother who takes care of the housework and cooking. As the story progresses, the underlying conflicts of dreams and goals surface, as each character attempts to achieve their dreams, in their own way.", + "posterPath": "/hxRDq6TlaZSO1qZbtYI3N3karrm.jpg", + "backdropPath": "/Af0KluRhTrjeFNecmSWm9rakKom.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2017-10-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 65, + "popularity": 1.6312 + }, + { + "id": 68224, + "title": "Poco's Udon World", + "originalTitle": "うどんの国の金色毛鞠", + "overview": "On a visit to his hometown, Souta Tawara meets a strange child who loves udon and frogs... and has ears and a tail?! Although ordinary at first glance, it turns out that this little tyke is actually a tanuki in a human disguise! So begins the tale of a gentle, warm, and slightly weird family in Kagawa prefecture, better known as \"Udon Prefecture,\" where time passes at a less hurried pace than in the big city...", + "posterPath": "/jLVmlYJI7peZ0uU8KHo5aBPTf3S.jpg", + "backdropPath": "/6QWX5FZ6eMaAgaVMmxuKKHhR81w.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-10-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 73, + "popularity": 1.6302 + }, + { + "id": 95909, + "title": "Dropout Idol Fruit Tart", + "originalTitle": "おちこぼれフルーツタルト", + "overview": "Former showbiz stars Roko, Hayu, and Nina live together in a dormitory for dropout idol girls. As timing would have it, young dreamer Sakura happens to move in with the other girls just as an announcement is made to tear down the dorm due to a 100-million-yen debt! This leads to the unexpected formation of a new idol group called Fruit Tart. Their sole mission: earn some yen and stop the demolition.", + "posterPath": "/tddeiRl4Y6fb4mdpzd85r98dyTD.jpg", + "backdropPath": "/veeqsTPVKyRHeDfPdcpcW9Wz09V.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-10-12", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 13, + "popularity": 1.629 + }, + { + "id": 89664, + "title": "Shigofumi: Letters from the Departed", + "originalTitle": "シゴフミ", + "overview": "Fumika and Kanaka are mail carriers- but not the typical kind. For one, Kanaka is a talking staff and for two, Fumika delivers shigofumi: letters from the dead addressed to the living. These letters are a final, true, communication derived from hate, hope, and love. The story unfolds following this pair and their uncommon job as well as Fumika's unique 'situation'.", + "posterPath": "/jY6CkK0nAEg1uiUxeQMFlIRKbfp.jpg", + "backdropPath": "/1vBxkYnJHvDsXlJ8MBPtws8zNtK.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2008-01-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 12, + "popularity": 1.6279 + }, + { + "id": 131168, + "title": "Ganbare Doukichan", + "originalTitle": "がんばれ同期ちゃん", + "overview": "Douki-chan is an office lady who is working with Douki-kun in an office. Unbeknownst to Douki-kun, Douki-chan secretly has feelings for him. As Douki-chan struggles to confess her feelings, her rivals, both the kouhai and senpai, continue to vie for his affection.", + "posterPath": "/5r1QjDs9XgB7kqImNuFhLPnli8g.jpg", + "backdropPath": "/d9uJkES911LiLxRQ6alnKRYqdWG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2021-09-20", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.621, + "voteCount": 29, + "popularity": 1.6277 + }, + { + "id": 66730, + "title": "Divine Gate", + "originalTitle": "ディバインゲート", + "overview": "The Divine Gate ushered in an era of chaos. Now, a select few have gathered to attempt to reach the Gate and remake the world.", + "posterPath": "/fHjODQq2sOK9kGhO09XtBgToxzQ.jpg", + "backdropPath": "/rkh47tXNa0hmRE10mG5OxOuDhTe.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.463, + "voteCount": 27, + "popularity": 1.6268 + }, + { + "id": 71073, + "title": "The Laughing Salesman NEW", + "originalTitle": "笑ゥせぇるすまんNEW", + "overview": "Each episode follows Fukuzou Moguro, a traveling salesman, and his current customer. Moguro deals in things that give his customers their heart's desire, and once his deals are made and their unhealthy desires are satisfied, Moguro's customers are often left with terrible repercussions, especially if they break the rules of his deals...", + "posterPath": "/x9VShYkputkVCYsQTJuNjjVH7Wd.jpg", + "backdropPath": "/z9FFZjBG36loZYmYeTHHLdHftua.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-04-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 5, + "popularity": 1.6261 + }, + { + "id": 69453, + "title": "Koro Sensei Quest!", + "originalTitle": "殺せんせーQ[クエスト]!", + "overview": "A spin-off from Assassination Classroom and continuation of the anime film short. In this world, Koro-sensei is the Demon King while the students of class 3-E are cast as heroes who must defeat him. The students learn swordsmanship and sorcery at Kunugigaoka Magic School. Their strange adventure begins!", + "posterPath": "/dZlQUneXi0x5Fu8FvAVS1wi6sJ4.jpg", + "backdropPath": "/9td0wLOt5Figez8nYna9TrQfF4n.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-12-23", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 10, + "popularity": 1.6261 + }, + { + "id": 34861, + "title": "Kurozuka", + "originalTitle": "黒塚 KUROZUKA", + "overview": "In feudal Japan, Kurou and his servant Benkei are fleeing from Kurou's elder brother, who has recently ascended to the throne. In a forest, they come across a house and a strange woman by the name of Kuromitsu, who agrees to harbor them under one condition: that they do not peer into the inner chambers. Soon, they are attacked by the Red Army; they are searching for Kuromitsu, whose blood holds immortality. Fatally wounded, Kurou drinks some of Kuromitsu's blood and gains immortality along with strange abilities; but shortly after, Kurou is seemingly decapitated and wakes up centuries later in a ruined city. In this twisted future the Red Army is omnipresent and still searching for Kuromitsu’s blood, while a rebel army seeks to keep them from acquiring it. With threats at every turn and fueled by his obsession, Kurou sets forth to find Kuromitsu and seek his revenge on the Red Army.", + "posterPath": "/hez6h5LZxedDfzHHPu3iqj2Gm82.jpg", + "backdropPath": "/jgjxOvgY0czloGkQWaJ2EgDP7fk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2008-10-07", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 15, + "popularity": 1.6223 + }, + { + "id": 82859, + "title": "Hinomaru Sumo", + "originalTitle": "火ノ丸相撲", + "overview": "A “small” new student, Ushio Hinomaru, appears before the weak little sumo club of Oodachi High School! The words “big” and “heavy” are the rules to this sport, which does not fit this newbie any inch, but this guy goes and does what...!? Ushio and the small sumo club climbs its way to the top! The goal is Hinoshita Kaisan, a title for the highest rank in professional sumo, equivalent of Yokozuna.", + "posterPath": "/isIjEf54wvdAHNvFINN1osQ2w7Q.jpg", + "backdropPath": "/A01pEFOOFjtbAhWZcPy9peRhhzK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 24, + "popularity": 1.6217 + }, + { + "id": 21985, + "title": "Miss Critical Moment", + "originalTitle": "イッパツ危機娘", + "overview": "Kunyan lives her crazy life of misadventures from episode to episode. This comedy series is accompanied by a narrator who scientifically explains all that happens to her.", + "posterPath": "/4FYHES0NVvoUyNIZcIc9ea5sJri.jpg", + "backdropPath": "/1rSV7C25HPo7xfF3AapfVkH7qqb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-10-04", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 5, + "popularity": 1.6202 + }, + { + "id": 67143, + "title": "Inari Kon Kon", + "originalTitle": "いなり、こんこん、恋いろは。", + "overview": "Fushimi Inari is a shy, not-so-bright middle school girl living in Kyoto's Fushimi ward. She has a crush on her classmate Tanbabashi, but cannot express her feelings. One day, as thanks for helping a fox pup, the deity Uka no Mitama no Kami grants her the ability to change her form.", + "posterPath": "/9kloAe3nAy7BbXAKOv30vKDhyDZ.jpg", + "backdropPath": "/ddKVuvGeYTlBti0MQvahpbepIqT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-01-16", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 15, + "popularity": 1.6194 + }, + { + "id": 34214, + "title": "Sola", + "originalTitle": "sola", + "overview": "Yorito Morimiya is obsessed with photographing the sky-- sunrises, sunsets, and clouds. While trying to photograph a sunrise, he helps a girl who's fighting a vending machine to get her tomato juice. Then she disappears.\n\nThe story of a world of mystery and magic is narrated by Sola. An enigmatic girl comes and goes, withholding a dark secret and Yorito's sky becomes the battleground for love and solitude.", + "posterPath": "/jdM4NVmNRQB5NQ5Ic51hdQktgnK.jpg", + "backdropPath": "/puVJTVVM2xCIFeIECsZP6c2Eecv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 9, + "popularity": 1.6187 + }, + { + "id": 80767, + "title": "Angolmois: Record of Mongol Invasion", + "originalTitle": "アンゴルモア元寇合戦記", + "overview": "The story follows a group of samurai attempting to defend Japan from the first Mongol invasion in 1274.", + "posterPath": "/osDHL65kfdtwYLpB8mhyNenbcWL.jpg", + "backdropPath": "/2D5QUnIFqGvL7XRrnvPnkj7E3Sl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10768 + ], + "genres": [ + "Animation", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2018-07-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 1.6186 + }, + { + "id": 76127, + "title": "Hakumei and Mikochi", + "originalTitle": "ハクメイとミコチ", + "overview": "In a world inhabited by people only a few inches tall, young women Hakumei and Mikochi live together in a house built into a tree. Hakumei is an energetic and tomboyish carpenter, while Mikochi is a feminine and calm tailor. Despite their differences, they get along well and spend their days having fun living their lives in the woods.\n\nThe two of them spend their time working, going on sightseeing adventures, and taking shopping trips into Tsumiki Marketplace by the ocean. They make many friends along the way, be they sentient woodland creatures like Iwashi the Weasel or fellow miniature people such as the songstress Konju and the inventor Sen.\n\nThis is a relaxing look into the day-to-day lives of its titular characters as they explore and interact with their tiny world which seems to be straight out of a fairy tale.", + "posterPath": "/8kH6xVLC5si3VHn1nhrGL8rDyGX.jpg", + "backdropPath": "/wcC1rjNcVR0QMah2mwhkkuRurwD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2018-01-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 24, + "popularity": 1.6185 + }, + { + "id": 74189, + "title": "UQ Holder!", + "originalTitle": "UQ HOLDER!~魔法先生ネギま!", + "overview": "In the decade since the world became aware of the existence of magic, the world has undergone massive upheaval. However, a boy named Tōta lives in seclusion in a rural town far removed from these changes. His ordinary life is highlighted by his magic-using female teacher and his supportive friends.", + "posterPath": "/txTqQRczD1eEfbytKBYNw7Wak9e.jpg", + "backdropPath": "/yeN44FKUaQJ9EZcAakiw32gp7LN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-10-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 34, + "popularity": 1.6179 + }, + { + "id": 8908, + "title": "Flint: The Time Detective", + "originalTitle": "時空探偵ゲンシクン", + "overview": "Flint the Time Detective, known in Japan as Space-Time Detective Genshi-kun, is an animated Japanese television series directed by Hiroshi Fukutomi. It was based on a manga by Hideki Sonoda and Akira Yamauchi and was published by Kodansha in Japan. The anime aired from 1998 to 1999 in Japan and ran for 39 episodes. In USA Flint the Time Detective airs from March 5, 2000 until November 5, 2000. The series also aired in the Philippines via GMA 7 and dubbed in Filipino language which runs from late 2000 until mid-2001.\n\nEnoki Films and Sanrio hold the license to Flint the Time Detective.", + "posterPath": "/kBZnpYfoTQYwtYIcTUZDhaCvQO6.jpg", + "backdropPath": "/cLdFnsC2zzm1L7qNSXaP0uDipYe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 9648, + 10765, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "1998-10-01", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 5, + "popularity": 1.6176 + }, + { + "id": 19412, + "title": "Lightspeed Electroid Albegas", + "originalTitle": "光速電神アルベガス", + "overview": "Lightspeed Electroid Albegas was an anime series aired from 1983 to 1984 in Japan, Latin America, Spain and Italy. There were 45 episodes aired at 25 minutes each. Other loosely translated names are \"Arbegas\", \"Arebegas\", \"Lightspeed ElectroGod Arbegas\" and \"Arbegas: El Rayo Custodio\".", + "posterPath": "/vUAXh88zvhuiOARJ7AuQ8FT6J69.jpg", + "backdropPath": "/5ytjO63HUU9ILdtFCn4v8UgEKj8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1983-03-30", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 8, + "popularity": 1.6174 + }, + { + "id": 218563, + "title": "Rokudo's Bad Girls", + "originalTitle": "六道の悪女たち", + "overview": "The story follows Tо̄suke Rokudо̄, a timid high school boy who gets bullied by delinquents. He receives a scroll from his late grandfather, leaving a mark on his forehead. The mark's effect causes a delinquent girl named Ranna Himawari to fall in love with him.", + "posterPath": "/da63I7jrkJbyHfBGUdWbIUUAWJP.jpg", + "backdropPath": "/fqa6exmjfifYDVk0C82MbCP8kZv.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-04-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.167, + "voteCount": 9, + "popularity": 1.6171 + }, + { + "id": 34092, + "title": "Rune Soldier", + "originalTitle": "魔法戦士リウイ", + "overview": "Louie, a brawny student at the mage's guild, is reluctantly accepted by three girls (Merrill-thief, Genie-fighter, and Melissa-priestess) as a companion for their adventuring party. As the foursome explore ruins, battle dark creatures, and make new friends, they also uncover a sinister plot within the kingdom.", + "posterPath": "/c780uibsLFDajqJn2EoV4mKNlYJ.jpg", + "backdropPath": "/1d8ySNgfOCT5xz6lGKkqQxCyjkT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2001-04-01", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 1.6156 + }, + { + "id": 62484, + "title": "Punch Line", + "originalTitle": "パンチライン", + "overview": "High schooler Yūta Iridatsu has experienced “astral projection” i.e. his spirit has been separated from his body. He woke up in a mansion named Koraikan and met a cat spirit named Chiranosuke, who told him “You must find the Sacred Tome of Koraikan in order to return to your physical body.” While searching through corridors of Koraikan, Yūta bumped into underpants of its female residents, and doing so would, eh, create some big trouble for planet Earth.", + "posterPath": "/wj2Gx45z3pdcn6JBnVDGdMHW0PP.jpg", + "backdropPath": "/fylsrcsl59NhaPN3iyOWAtyng79.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-04-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 29, + "popularity": 1.6142 + }, + { + "id": 34836, + "title": "Princess Resurrection", + "originalTitle": "怪物王女", + "overview": "Princess Resurrection is a Japanese horror comedy manga by Yasunori Mitsunaga. The manga was serialized monthly in Monthly Shōnen Sirius magazine and published by Kodansha. A 26-episode anime series by Madhouse aired on TBS in 2007. Both the manga and anime are available in North America with the manga licensed by Del Rey Manga and the anime licensed by Sentai Filmworks and available on the Anime Network website. A new OVA series has been made by Tatsunoko Production with the first episode released in December 2010, along with the 13th volume of the manga, the second episode for the 14th volume, and the third episode for the 16th volume. A spin-off manga, Naqua-Den, which stars a side-character from Princess Resurrection as the main character, was released in 2012 currently with two volumes.", + "posterPath": "/qkGgg9my8ypx7D7pH9VwXyPiNGL.jpg", + "backdropPath": "/86EVJTz3Nxn0fo5WC6NzU2KNl6g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-04-13", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 7, + "popularity": 1.6141 + }, + { + "id": 30180, + "title": "DearS", + "originalTitle": "DearS", + "overview": "One year ago, a UFO containing 150 aliens crash-landed off the shores of Kasai. Because no one could fix their ship, the Japanese Government decided to bestow upon them the designation \"DearS\" and make them into Japanese citizens. One morning, a truck carrying a capsule that housed one of the aliens ends up dropping it into the riverbank, releasing her from her confinement. She is eventually found by a high school student named Takeya Ikuhara, who saves her, despite being extremely distrustful of their race and wanting nothing to do with them. Upon being named Ren, she imprints upon him as her \"Master\" and serves as his personal \"Slave,\" leaving him with a \"DearS\" who wants to remain with him no matter what.", + "posterPath": "/rqquMDIzWC1oAQ6XvKKF8OzBx8K.jpg", + "backdropPath": "/xtMhBn1RTKR7cYjAVZXvuZ88A4O.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-07-10", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.242, + "voteCount": 31, + "popularity": 1.614 + }, + { + "id": 25676, + "title": "D.N.Angel", + "originalTitle": "D・N・ANGEL", + "overview": "Niwa Daisuke is your average teenager, until his fourteenth birthday. He tries to declare his love to the girl of his dreams, but fails. Suddenly, whenever he thinks about this girl he turns into the legendary phantom thief known as Dark Mousy. Daisuke's mother, very much aware of this, makes him turn into Dark and steal valuable works of art for a purpose unknown to Daisuke. As the story unfolds, he learns why, and about his classmate who seems to have the same ability.", + "posterPath": "/3etrMwiRXgGLTrQeDv55Rps5Ryv.jpg", + "backdropPath": "/njlfogxo8zGNP5oXvotue64TxWw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2003-04-03", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 25, + "popularity": 1.6136 + }, + { + "id": 76645, + "title": "Ai Tenchi Muyo!", + "originalTitle": "愛・天地無用!", + "overview": "In this story, the world is in chaos, thanks to Washu. Now in order to save it, Tenchi Masaki must go undercover as a student teacher at an all-girls school. Unfortunately for him, trouble always comes his way as he has a hard time dealing with the hijinks of his new students.", + "posterPath": "/rfRVtVJtGzhg6v3mfR5qzspQdI7.jpg", + "backdropPath": "/sWRP7tYngmuH80dAVlAh8D0cAw7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 33, + "popularity": 1.6135 + }, + { + "id": 34724, + "title": "Kaze no Yojimbo", + "originalTitle": "旋風の用心棒", + "overview": "George Kodama is investigating an incident that occurred in the small town of Kimujuku over 15 years ago. George is soon caught up in the middle of a bloody gang fight for control of the town.", + "posterPath": "/o37Uc0FxQoQyA7mssn4TkWI6aa1.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 18, + 16 + ], + "genres": [ + "Drama", + "Animation" + ], + "releaseDate": "2001-10-02", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.375, + "voteCount": 8, + "popularity": 1.6119 + }, + { + "id": 28511, + "title": "Mythical Detective Loki Ragnarok", + "originalTitle": "魔探偵ロキRAGNAROK <ラグナロク>", + "overview": "Loki, the Norse god of mischief, has been exiled to the human world for what was apparently was a bad joke. Along with being exiled, he’s forced to take the form of a child. He’s told the only way he can get back to the world of the gods is if he can collect auras of evil that take over human hearts, and so to do this he runs a detective agency. Loki is soon joined by a human girl named Mayura who is a maniac for mysteries, and she soon helps out in her own way. However, soon other Norse gods begin to appear, and most have the intent to assassinate Loki for reasons unclear.", + "posterPath": "/iRksNs3PSDQaPPZOXDz4N2KwXYG.jpg", + "backdropPath": "/1TP1DqP8HQqfN0i0oFJ8cEsESiu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Drama" + ], + "releaseDate": "2003-04-05", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 9, + "popularity": 1.6118 + }, + { + "id": 42418, + "title": "Kiddy GiRL-AND", + "originalTitle": "キディ・ガーランド", + "overview": "Twenty-five years after Éclair and Lumière rescued the galaxy from destruction, the Galactic Trade Organization act on behalf of universal peace by combating criminal activity. Two trainees, Ascoeur and Q-feuille, work their way to membership.", + "posterPath": "/l20UYLJnSeecylMP8uQBFTE6upK.jpg", + "backdropPath": "/ksCfQCt8gOr69y4n9jSPbdtHzJY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2009-10-16", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 7, + "popularity": 1.6106 + }, + { + "id": 66112, + "title": "Shonen Maid", + "originalTitle": "少年メイド", + "overview": "After the loss of his mother, Chihiro is left alone. With no known family left, he has to find a way to move on. Things aren’t looking good until a chance encounter with the young and handsome Madoka—who turns out to be his wealthy uncle! Madoka offers him his home and all Chihiro has to do is clean up after the messy, irresponsible man. The problem? This job requires a uniform—a maid outfit!", + "posterPath": "/aq8sasxas00O4MOgvF99DTIFt6Y.jpg", + "backdropPath": "/tPDbZa0mO1ORl0PiWZA5AsfYnAH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 15, + "popularity": 1.6103 + }, + { + "id": 42698, + "title": "Earth Maiden Arjuna", + "originalTitle": "地球少女アルジュナ", + "overview": "When a girl named Ariyoshi Juna has a severe accident, her spirit turns to light and rises up out of her body into the night sky where she gets a glimpse of Earth a few months into the future. What she sees is the Earth on the brink of total destruction, ruled by the merciless demon forces called the Raajas. Then, a person named Chris Hawken gives Juna a \"power stone\" and tells her to use it to save the Earth. The power stone gives her the ability to call up an \"aura suit\", which activates and enhances a person's dormant special powers.", + "posterPath": "/d0YVzBZythvGrrSQlgDxFqWvR3t.jpg", + "backdropPath": "/9rny2ycbmlQsKncW3msL61cwEpt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-01-09", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.727, + "voteCount": 11, + "popularity": 1.6103 + }, + { + "id": 104852, + "title": "Hortensia SAGA", + "originalTitle": "オルタンシア・サーガ", + "overview": "Despite the constant threat of invasion by neighboring countries who covet Hortensia’s fertile lands, Hortensia has long managed to avoid the maelstrom of war thanks to its two main territories, the principalities of Olivier and Camelia, serving as its sword and shield. But on December 5, 767, Camelia suddenly rises in revolt against Hortensia...", + "posterPath": "/c5Mq1vBQflXZRUE3YIfxyLZYGXl.jpg", + "backdropPath": "/31K0B6Z8XMsuLGQSMXsNcFg2XXV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 10, + "popularity": 1.6081 + }, + { + "id": 57008, + "title": "Galilei Donna", + "originalTitle": "ガリレイドンナ", + "overview": "Hozuki, Hazaki, and Kazaki Ferrari, three descendents of Galileo, live in Tuscany. A mysterious organization is searching for the \"Galilei Donna,\" and put out an international arrest warrant for the three sisters. The sisters must put aside their differences to join forces in fighting the organization and learning their true destiny.", + "posterPath": "/mfqD96h6GlwYfK8IZBRGMOH9Fpg.jpg", + "backdropPath": "/gJo7Lz2WSHScclDZT10rj1bgisK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2013-10-10", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 7, + "popularity": 1.608 + }, + { + "id": 133197, + "title": "The Yakuza's Guide to Babysitting", + "originalTitle": "組長娘と世話係", + "overview": "Kirishima Tooru is as vicious a yakuza as they come, to the point where he's earned the nickname \"the Demon of Sakuragi.\" To get him under control, he's suddenly given a new mission straight from the boss—to babysit his daughter!", + "posterPath": "/csjnPW9Cs82ofUCbI8f6prwKKw8.jpg", + "backdropPath": "/Aih5qC3SlrCsCJsSpSSZp2GFDcU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 32, + "popularity": 1.6079 + }, + { + "id": 60817, + "title": "Daimidaler the Sound Robot", + "originalTitle": "Kenzen Robo Daimidaler", + "overview": "In order to stop the mysterious \"Penguin Empire\" from interfering with world peace, secret organization \"Prince Beauty Parlor\" has developed a giant robot that is powered by a rare special energy source called \"Hi-ERo particles.\" Organization member Kyōko Sonan has located an ordinary high school student, Kōichi Madanbashi, with high amounts of Hi-ERo particles, making him a suitable candidate to pilot of the giant robot. But there is only one way to release his particles: allow Madanbashi to persuade him with lewd behavior.", + "posterPath": "/7becJ8vETWWXH6p40efr44APCvo.jpg", + "backdropPath": "/7GF0kxyQE803X3LcsR5tgKrSyTu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.059, + "voteCount": 17, + "popularity": 1.6075 + }, + { + "id": 240576, + "title": "Magilumiere Magical Girls Inc.", + "originalTitle": "株式会社マジルミエ", + "overview": "Magical girls: strong, cool, the ultimate dream job. College student Kana Sakuragi is job hunting - without much luck! One day, she is caught up in an attack by a \"Kaii.\" Fiesty magical girl Hitomi Koshigaya flies to the rescue, and Kana uses her excellent memory to help her take it down. Hired as a magical girl by Magilumiere Magical Girls Inc., Kana takes her first step into the working world!", + "posterPath": "/rmQjrOxAc3kRMG78NuvN3UVVqds.jpg", + "backdropPath": "/6aicKBDCaK0KRpgd2eqN6aQ7Mak.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2024-10-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 6, + "popularity": 1.6074 + }, + { + "id": 67853, + "title": "Regalia: The Three Sacred Stars", + "originalTitle": "レガリア: The Three Sacred Stars", + "overview": "12 years ago, in the country of Rimguard, a big incident left an unsolved mystery that has begun to fade from people's memories. Time passes, and sisters Yui and Rena are living peacefully in the Enastria Empire. However, one day, a large mecha attacks Enastria. This day marks the turning point when the two girls get caught in the vortex of fate.", + "posterPath": "/y5xGOImOibD85UFNdYVNrNT93MW.jpg", + "backdropPath": "/r2w66HYqnSdyv8iebNKTwQDMQyU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 6, + "popularity": 1.6073 + }, + { + "id": 37537, + "title": "Dual! Parallel Trouble Adventure", + "originalTitle": "デュアル! ぱられルンルン物語", + "overview": "Kazuki experiences hallucinations of fighting robots that no one else can see, so he should have expected trouble when the most beautiful girl in school took an interest! But there's no way he could have expected to be waylaid by a mad scientist and thrown into a parallel world with robots, aliens, and a boarding house filled with beautiful girls! He may not make it home. He may get hurt. He may go insane. But at least he gets to drive the Robots!", + "posterPath": "/kDG9NKw8pk4xNlcN1b6BPvNLzb4.jpg", + "backdropPath": "/taeZQppADBzuPOA6MPwJWmwfBiJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-04-08", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 5, + "popularity": 1.6065 + }, + { + "id": 34081, + "title": "Daphne in the Brilliant Blue", + "originalTitle": "光と水のダフネ", + "overview": "In the future, water has covered much of the Earth due to the effects of global warming, leaving the human race to live on neighboring floating cities. The orphaned Maia Mizuki, 15, just graduated from middle school and has already applied for employment in the elite Ocean Agency, part of the futuristic world government. Only the best, most intelligent, and physically fit students are eligible for admission.", + "posterPath": "/8eNTpBzy1O966pdZAaYy9Dd0b3A.jpg", + "backdropPath": "/bfGJFmcf26xZ04NmEYi5tjkyMnB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 9648, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Mystery", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-01-15", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 10, + "popularity": 1.6048 + }, + { + "id": 102655, + "title": "D4DJ", + "originalTitle": "D4DJ", + "overview": "Rinku Aimoto, who has a habit of saying \"Happy Around!\", has returned to Japan from abroad and enrolls at Yoba Academy where DJing is popular. She is deeply moved by a DJ concert she sees there and decides to form a unit of her own with DJ Maho Akashi, VJ Muni Ohnaruto and keyboardist Rei Togetsu. While interacting with other DJ units like Peaky P-key and Photon Maiden, Rinku and her friends aim for the high stage!", + "posterPath": "/stpFNjCgjyQsUeYDmqAagmx6Iia.jpg", + "backdropPath": "/kANQdiIPfPOG970FG1eROltGeAZ.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2020-10-30", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 8, + "popularity": 1.6042 + }, + { + "id": 218684, + "title": "OVERTAKE!", + "originalTitle": "オーバーテイク!", + "overview": "Haruka Asahina is a high school teen racing in Formula 4. He crosses paths with a washed-up photographer, Kōya Madoka, who decides to help Haruka realize his dream and reach the podium. The heat is on, and competition is fierce. Racing for the family-run Komaki Motors team means Haruka must push the car, and himself, to the limits to catch the attention of top teams. Buckle up, it’s time to race!", + "posterPath": "/fnv09j3fUnu4YM569E3nrn7SSjD.jpg", + "backdropPath": "/aMfkRcw3GsawdoJnhFzqkRZ1LCG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2023-10-01", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 14, + "popularity": 1.6039 + }, + { + "id": 34699, + "title": "Fantastic Children", + "originalTitle": "ファンタジックチルドレン", + "overview": "A group of mysterious white-haired children has been spotted at different times and places in Europe for over 500 years. Always with the looks of 11 years old, they behave way more mature than they should be, never grow, and seem to have supernatural power. What they have kept being after is a girl, and all the connection they have is a picture with a crescent moon. Now, in the year of 2012, an athletic boy named Tohma is about to be involved in this centuries-long mystery.", + "posterPath": "/f1HH3HPYXSvlYnaw141l0nR4tiv.jpg", + "backdropPath": "/kQZlJ5UkafbpHgrDNDGMd5EXxzd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2004-10-04", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 5, + "popularity": 1.6031 + }, + { + "id": 42786, + "title": "Ah My Buddha!!", + "originalTitle": "あまえないでよっ!!", + "overview": "Sixteen-year-old Ikkou Satonaka has raging hormones that make every other boy's look simply weak in comparison. When he gets turned on, he's literally turned into a super-powerful Buddhist monk capable of vanquishing the most evil of spirits! Ikkou's parents send him to the Saienji Temple to train to become a proper monk under the watchful eye of his grandmother. One of his first challenges is to learn to control his lusty desires - but that's easier said than done when he's surrounded by a bevy of beautiful nun trainees who keep losing their clothes!", + "posterPath": "/fNT2SVbYfHQ1UyRIrHqbOUuXEWF.jpg", + "backdropPath": "/9BLLJLGaE0TFAVCLMbGN62OnnN3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-07-01", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 16, + "popularity": 1.6027 + }, + { + "id": 74098, + "title": "Konohana Kitan", + "originalTitle": "このはな綺譚", + "overview": "Konohana Kitan is the heartwarming story of a new apprentice named Yuzu, and the other fox girls who work at a hot spring hotel called Konohatei. The staff at Konohatei live by one belief: no matter who one may truly be, no matter what, anyone who is a guest is a god. Of course, that includes you. Let the hospitality of Yuzu and the Konohatei heal your tired soul.", + "posterPath": "/d6w9C9iReOHXSmXfNCPweURvCVa.jpg", + "backdropPath": "/cIDevIojDBpVEa50r4idwNThG9L.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-10-04", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 19, + "popularity": 1.6021 + }, + { + "id": 101668, + "title": "Umayon", + "originalTitle": "うまよん", + "overview": "The horse girls are back to charm you in this special, bite-size anime. Umayon comes alive as a cute and eye-catching anime! At a school-turned-training facility, the girls will race, perform, and train... but that's not all! Saddle up for a short-form anime that displays the laidback school days of the horse girls! Aaaaand, they're off!", + "posterPath": "/a3uWISwa0ChIKZrY0Vr1RnqZt2v.jpg", + "backdropPath": "/omfqodxKCub3vgLX59MZm46ectJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-07-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 5, + "popularity": 1.6011 + }, + { + "id": 69237, + "title": "Chain Chronicle: The Light of Haecceitas", + "originalTitle": "チェインクロニクル〜ヘクセイタスの閃〜", + "overview": "Set in the land of Yuguto, the people thought that the land they live is the size of the world, but it’s actually divided into several areas, each with a respective king. Even though there were small wars among areas, the kings had roundtable meetings to maintain peace and balance. It was until a dark group of dark monsters appeared...", + "posterPath": "/9wBEr3ZSPukbb2rS6lRauyeDv19.jpg", + "backdropPath": "/reF0kkW49jiNUpqI6Lw8JxCUP7I.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-01-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.413, + "voteCount": 23, + "popularity": 1.601 + }, + { + "id": 97421, + "title": "Dirty Pair Flash", + "originalTitle": "ダーティペアFLASH", + "overview": "Kei and Yuri were originally junior auxiliary agents in the Worlds Works and Welfare Agency (W.W.W.A. or 3WA for short) when the two were paired together under the codename \"Lovely Angels.\" Kei was coming off her fourth probation for something she had done, and Yuri's dating exploits were common knowledge, not to mention the two had an instant dislike for each other when they met. At first, Kei and Yuri refused to work with each other, and Kei even resigned from the 3WA. Afterwards, the two continued to work together, although they earned their nickname, \"the Dirty Pair\" because of all the collateral damage the two (unintentionally) cause in the completion of their cases. And even though the two now get along with one another, they continue to bicker and complain to each other.", + "posterPath": "/t4hB2CC1jzNRWiWauLvi75apFZn.jpg", + "backdropPath": "/m64ChUBCyeE4rAAIb9RlpMs4Ndr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1994-01-21", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7.325, + "voteCount": 40, + "popularity": 1.6008 + }, + { + "id": 82865, + "title": "Gakuen Basara: Samurai High School", + "originalTitle": "学園BASARA", + "overview": "The suspension of student council president, Toyotomi Hideyoshi, has created a power vacuum at Basara Academy. Now, Date Masamune and Sanada Yukimura find themselves vying for the top spot. But they aren’t the only ones with their eyes on the prize.", + "posterPath": "/f1Hj388B00W3h9BtwRdN4H5GSzg.jpg", + "backdropPath": "/75TRjmcAGlLi5uxxUu5EYv9bWUY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 5, + "popularity": 1.5998 + }, + { + "id": 66107, + "title": "Space Patrol Luluco", + "originalTitle": "宇宙パトロールルル子", + "overview": "The show takes place in Ogikubo, which is the name of the specially designated area in space in the Milky Way where Earthlings and aliens can live together. Luluco is a female middle school student who lives with her father, and no matter where she is, Luluco is a common, \"super normal\" girl. As she is living her normal life, one day the mysterious transfer student ΑΩ Nova abruptly appears before her. That meeting will change Luluco's fate.", + "posterPath": "/53e5gXs127DquTuoPsrYzfGDllQ.jpg", + "backdropPath": "/3vvCtHkoa1dC1QvB9LH7ECDodN3.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10759, + 10765 + ], + "genres": [ + "Comedy", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-01", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 60, + "popularity": 1.5982 + }, + { + "id": 230050, + "title": "A Returner's Magic Should Be Special", + "originalTitle": "帰還者の魔法は特別です", + "overview": "Another dimension that continues to taint our world, the Shadow World. Humanity is faced with the worst calamity, known as the Shadow Labyrinth. In spite of their desperate attacks, Desir Herrman and his friends lose their battle to the Destruction Dragon, Boromir Napolitan, and the world comes to an end. When Desir is convinced of his end, he opens his eyes... to find himself 13 years in the past. Desir has gone back in time to the enrollment ceremony of Hebrion Academy, the top school for mages in the Empire. To change the future of impending doom, Desir reassembles his friends once again to save the world!", + "posterPath": "/svwCvfLCUqc5tn85lijkKqTXQLF.jpg", + "backdropPath": "/2KKDIwALX3HJWCjeDnvLa3Ag6ki.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 36, + "popularity": 1.5953 + }, + { + "id": 137194, + "title": "SHINEPOST", + "originalTitle": "シャインポスト", + "overview": "Although the idol group TiNgS is chasing after big dreams, so far their accomplishments have only been small — and now, suddenly, they're facing a potential break up! Hope seems lost, but when a new manager with a special skillset takes them under his wing, the members of TiNgS find themselves shooting for the stars all over again.", + "posterPath": "/qz0CWswDNsSsBkHjkcT6a98zo2e.jpg", + "backdropPath": "/1r2FwN9jSpunRAaTWcBR381JNzy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2022-07-13", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 13, + "popularity": 1.5952 + }, + { + "id": 112463, + "title": "CUE!", + "originalTitle": "CUE!", + "overview": "The trials and tribulations of a group of sixteen young women who follow their dreams of becoming voice actors. But the voice acting world is highly competitive, and no matter how much someone practices, not everyone will make it past the audition process. Despite frustrations and setbacks, the story of a new generation of voice actors is about to begin.", + "posterPath": "/3lhAWA4eTLysJKa8zsGBbVYSxOK.jpg", + "backdropPath": "/hK4AmFEO5JBbvYxrreCpPiAxKg1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-01-08", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 12, + "popularity": 1.5952 + }, + { + "id": 66083, + "title": "Castle Town Dandelion", + "originalTitle": "城下町のダンデライオン", + "overview": "The everyday lives of the nine super-powered siblings of the royal family are monitored by more than 200 surveillance cameras and broadcast nationwide. The people of the nation who are watching the broadcast will have the ability to elect the next monarch. Akane is the third-oldest sister who can manipulate gravity. She is shy and desperately does not want to be caught on camera.", + "posterPath": "/irFZJaitAup1wEZmad0kFDR73ye.jpg", + "backdropPath": "/AfpkNfAAlIpy5ClbUxvivxUQ6Af.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 35 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 44, + "popularity": 1.595 + }, + { + "id": 36836, + "title": "Zakuro", + "originalTitle": "おとめ妖怪 ざくろ", + "overview": "The story takes place during the Westernization Movement in an alternate world where humans and spirits coexist. To solve the problems that arise between the two, human lieutenants are partnered with half-spirit girls to form the Ministry of Spirit Affairs.", + "posterPath": "/wzZwwIl9ICpMCk6ADhsJsAJKDHB.jpg", + "backdropPath": "/fw6Fd4yYka49hdJs53ig7gGuw04.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2010-10-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 12, + "popularity": 1.5947 + }, + { + "id": 115112, + "title": "Slow Loop", + "originalTitle": "スローループ", + "overview": "Nervous to meet her new stepdad, Hiyori heads to the place she always feels at home—the ocean. When a curious girl named Koharu shows up, Hiyori decides to teach her how to fish, just like her father did before he died. But after Koharu reveals she’s also meeting her new family that night, the girls come to a startling realization. Their friendship is about to reach a whole new level!", + "posterPath": "/uNO2UDttAiVZYe3EbfpFgmXpx64.jpg", + "backdropPath": "/jMJarIL2IV8wW5aw2LwzJCvDwrK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-01-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 17, + "popularity": 1.5943 + }, + { + "id": 230823, + "title": "The Demon Prince of Momochi House", + "originalTitle": "百千さん家のあやかし王子", + "overview": "Himari’s 16th birthday will be one she never forgets. Unexpectedly, she receives a will detailing her inheritance of a mysterious estate: the Momochi House. She arrives only to discover that the home was built on the cusp between the human world and the spiritual realm. There, she encounters Yukari, Ise, and a peculiar boy named Aoi, who seems to be concealing a shadowy secret.", + "posterPath": "/963GYlakUDBxnfMx2WINXcFKJgC.jpg", + "backdropPath": "/t8cAnsJATqol08i9kyKsXFy7PYH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-01-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.276, + "voteCount": 29, + "popularity": 1.5937 + }, + { + "id": 66105, + "title": "High School Fleet", + "originalTitle": "ハイスクール・フリート", + "overview": "Living by the sea, protecting the sea, and journeying across the sea... They're the Blue Mermaids! Because of a shift in tectonic plates around 100 years ago, Japan lost much of its area to submergence. To preserve Japan's territories, coastal cities sprung up, one after the other. Eventually, they became marine cities, and along with the expansion of sea-lanes to connect them, the need arose for a sizable staff to protect the seas. At the same time, maritime jobs were becoming more popular among women. Hence, the Blue Mermaids, tasked with keeping the seas safe, had become every female student's dream job. This is when childhood friends Akeno Misaki and Moeka China enroll in a marine high school in Yokosuka, along with other girls who share their goal of becoming a Blue Mermaid.", + "posterPath": "/1ZsbaElqwnxlJdNPKbB6beCmcup.jpg", + "backdropPath": "/cj8AXAbcgkAOdxfrB24EniY5QfP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10768 + ], + "genres": [ + "Animation", + "Comedy", + "War & Politics" + ], + "releaseDate": "2016-04-10", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 10, + "popularity": 1.5937 + }, + { + "id": 62911, + "title": "Nobunaga Concerto", + "originalTitle": "信長協奏曲(コンツェルト)", + "overview": "Saburo is a high school student good in sports, but not very good with his studies. One day, Saburo travels back in time and arrives in the Sengoku period of 1549. There, Saburo meets Nobunaga Oda who looks and sounds just like Saburo. Nobunaga Oda is the son of a warlord and magistrate of the lower Owari Province. Nobunaga Oda, though, is physically weak, and he asks Saburo to take his place. Then, Saburo as Nobunaga Oda attempts to unify the country of Japan.", + "posterPath": "/pWK0aJMgMRGOFU7qiqoBUMTF0hx.jpg", + "backdropPath": "/6Nls77iKuRKHkRb1OOMenXqKwoR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-12", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 11, + "popularity": 1.5927 + }, + { + "id": 36446, + "title": "The Adventures of Mini-Goddess", + "originalTitle": "ああっ女神さまっ 小っちゃいって事は便利だねっ", + "overview": "A large collection consisting of the adventures of the Goddesses featured in the anime and manga series Ah My Goddess. Parodies of other works, and a large number of jokes pervade this series of shorts in which the Goddesses torture and hang out with their friend Gan the rat.", + "posterPath": "/yoajxlGGsynh1oSsJCYSK4sFV1a.jpg", + "backdropPath": "/5L3MalNRm2NX04qHzIfh7NvUcaO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 35 + ], + "genres": [ + "Animation", + "Kids", + "Comedy" + ], + "releaseDate": "1998-04-06", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 8, + "popularity": 1.5926 + }, + { + "id": 46093, + "title": "Love, Election, & Chocolate", + "originalTitle": "恋と選挙とチョコレート", + "overview": "Love, Elections & Chocolate, is a Japanese adult visual novel developed by Sprite, and it was released in Japan on October 29, 2010 for Windows PCs. The gameplay in Love, Elections & Chocolate follows a branching plot line, which offers pre-determined scenarios with courses of interaction, and focuses on the appeal of the five female main characters by the player character. There have been two manga adaptations based on the game: one each serialized in ASCII Media Works' Dengeki G's Magazine and Dengeki Daioh. A 12-episode anime TV series adaptation produced by AIC Build and directed by Tōru Kitahata aired between July and September 2012. An additional episode was released on the series' final Blu-ray Disc and DVD volume in March 2013.", + "posterPath": "/1NGD9z9Zhq9wfOUF4pSOq0Blf5z.jpg", + "backdropPath": "/yjPXdokLCiGFS0QXtgbeUL0GKGM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2012-07-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 13, + "popularity": 1.5895 + }, + { + "id": 53594, + "title": "The Troubled Life of Miss Kotoura", + "originalTitle": "琴浦さん", + "overview": "Haruka, a girl who suffers during her childhood due to her ability to read people's mind, is starting her high-school life in a new school. When she transferred in, she feels that her life will be the same as ever, but then she meets Manabe, a guy who always think about erotic things, and a club consisting of people who aren't afraid of her ability. With Manabe and her clubmates around, her gloomy life slowly start to bloom and enjoyable.", + "posterPath": "/y8MilDlX3hTWh7qRNwb746prBjL.jpg", + "backdropPath": "/g3y9HIEsXSi2pSyhfbUFkS8HSKn.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 16 + ], + "genres": [ + "Comedy", + "Drama", + "Animation" + ], + "releaseDate": "2013-01-11", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.929, + "voteCount": 28, + "popularity": 1.5888 + }, + { + "id": 21326, + "title": "Fireball", + "originalTitle": "ファイアボール", + "overview": "Fireball is a series of CGI anime shorts created by Jinni's Animation Studios in conjunction with Disney. The designer is Hitoshi Fukuchi. It is animated entirely in 3D with no cel-shading of any sort, as would be typical for the medium.\n\nThe show takes place in the distant future of the 49th millennium, and revolves around the happenings inside a giant manor inhabited by two robots; the gynoid duchess Drossel von Flügel and her massive cyclopian arachnoid servant, Gedächtnis. The episodes are usually nonsensical in nature, normally showing the two characters making idle conversation in the midst of a war with humanity. A third character, a monkey-robot named \"Schadenfreude\", joins them later.", + "posterPath": "/mDkMD7HF35VGSv0E6kkZ7EbbnM2.jpg", + "backdropPath": "/zhPnOj0uX0N5gc4tGuP5ZXy3vQL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-04-07", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 7, + "popularity": 1.5886 + }, + { + "id": 60816, + "title": "Selector Infected WIXOSS", + "originalTitle": "セレクター インフェクテッド ウィクロス", + "overview": "WIXOSS is a card game that's popular with teenagers. Supposedly there exist \"LRIG Cards,\" female character cards with wills of their own. Special girls can hear the voices of the LRIGs, and those who possess them are called \"Selectors.\" These Selectors have card battles in a dimension that other humans cannot access. It's said that whoever triumphs in these battles will have their wish granted. Ruko Kominato is the latest girl to find a LRIG card. She names hers Tama, and without any further explanation is thrown into her life as a Selector.", + "posterPath": "/fZ3pPGNts57Ygi2FM7sQb6PUyoM.jpg", + "backdropPath": "/f7OXN4qXVRDYDg7XCzxdSSqvMKi.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 16, + 18 + ], + "genres": [ + "Mystery", + "Animation", + "Drama" + ], + "releaseDate": "2014-04-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.545, + "voteCount": 22, + "popularity": 1.5866 + }, + { + "id": 156013, + "title": "Kaina of the Great Snow Sea", + "originalTitle": "大雪海のカイナ", + "overview": "In another world, an ever-growing Sea of Snow has engulfed the planet surface. The people struggle to survive living around the routes of a massive Orbital Tree, whose branches spread into the Celestial Membrane high above the ground. Change comes to this dying world after Kaina, a boy from the Celestial Membrane, encounters a girl from the surface called Ririha.", + "posterPath": "/49p6TsjsuwZy3FwpsCjVByaOCvK.jpg", + "backdropPath": "/6e3Hi3CXWRUK81iqkorlAAHLOtg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-12", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 17, + "popularity": 1.5863 + }, + { + "id": 36067, + "title": "Haruka Nogizaka's Secret", + "originalTitle": "乃木坂春香の秘密", + "overview": "Haruka Nogizaka is beautiful, intelligent, and talented at the piano. A true idol of Hakujo Academy. Yuuto Ayase on the other hand is an ordinary guy who, thanks to his hard-drinking older sister and her lecherous friend corrupting his life, has reportedly given up on women. However, one day in the school library, Yuuto stumbles into a rare issue of a magazine catering to anime and nerd culture--or rather, the girl holding it, who turns out to be none other than Haruka Nogizaka herself! Terrified of others realizing that she isn’t as “perfect” as she claims to be, Haruka runs away from Yuuto... but this is one woman that Yuuto just can’t give up on!", + "posterPath": "/f6l9KeO4dERvwXevC2QjNRHVqIX.jpg", + "backdropPath": "/4CkNDI52T3YCmdrA7cJE9JKkW7Z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2008-07-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 1.5847 + }, + { + "id": 90378, + "title": "Hakone-chan", + "originalTitle": "温泉幼精ハコネちゃん", + "overview": "Hakone, the spirit of the hot springs, has descended into the hot spring town. However, she had been sleeping for a long time, and she looked like a little girl! Toya, a high school student who happened to be there, will cooperate to regain her original power.\n\nA slapstick hot spring comedy created by the residents of the hot spring town and Hakone ! Finally decided to animate! !!", + "posterPath": "/gXA8pAqm1TOzH5I40ukwgXtgFqz.jpg", + "backdropPath": "/iGG99d3CB7X0jqgjgG03RMyEXKK.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-10-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 10, + "popularity": 1.5842 + }, + { + "id": 64049, + "title": "Fight! Kickers", + "originalTitle": "がんばれ!キッカーズ", + "overview": "The Kitahara Kickers are a soccer who struggle to win a game, with a run of 22 consecutive losses. But then a newcomer joins the team whose attitude brings back the passion for soccer that his teammates have forgotten.", + "posterPath": "/7NjsEwjdP2TiScGDr2vDujC2F8T.jpg", + "backdropPath": "/gdGudhFpDN9btbP5ONi8uotm2g8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1986-10-15", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 27, + "popularity": 1.5829 + }, + { + "id": 68101, + "title": "Trickster", + "originalTitle": "Trickster -江戸川乱歩「少年探偵団」より-", + "overview": "It is the 2030s. The Boy Detectives Club gathers under Kogorō Akechi, the mysterious detective. The group solves cases great and small using their unique skills. One day, a member of the club, Kensuke Hanazaki, meets the boy Yoshio Kobayashi. Kobayashi's body cannot die due to the effects of the \"Unidentifiable Mist,\" but he yearns for death, and shirks from contact with other people. Taking an interest in him, Hanazaki invites him to join the Boy Detectives Club. Their meeting is connected to the fate tying together Kogorō Akechi, and the era's greatest villain, the Fiend With Twenty Faces.", + "posterPath": "/qPosMKw0qUryfNtVA8AHjj3CFpB.jpg", + "backdropPath": "/qSl3su7eKXg76qoX0iyG20y58c8.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Mystery" + ], + "releaseDate": "2016-10-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 10, + "popularity": 1.5815 + }, + { + "id": 65983, + "title": "The Cockpit", + "originalTitle": "ザ・コクピット", + "overview": "A World War II anthology based on Leiji Matsumoto's Battlefield manga.", + "posterPath": "/1KzboHoiSJqtYL2EGBwAEMdDx2M.jpg", + "backdropPath": "/bP9mG3hBeTxgdlbUtc5Bl7AElhj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10768 + ], + "genres": [ + "Animation", + "Drama", + "War & Politics" + ], + "releaseDate": "1993-10-22", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 9, + "popularity": 1.58 + }, + { + "id": 225168, + "title": "BARTENDER Glass of God", + "originalTitle": "バーテンダー 神のグラス", + "overview": "At Eden Hall, each glass has a story. A quiet bar lies tucked away in the streets of Tokyo, and it seems only the most desperate souls burdened by their own troubles manage to find its doors. But after a glass of God poured by the brilliant bartender Ryu, they leave renewed. Ryu has a gift—he knows how to soothe the soul with the perfect drink. Who will he meet next?", + "posterPath": "/aefIsbDvm2kDkZGEllkYWoMONrl.jpg", + "backdropPath": "/oQnO22u20g3wAH3vM3dbzYaZPFe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-04-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.98, + "voteCount": 25, + "popularity": 1.5799 + }, + { + "id": 19697, + "title": "Cyber Team in Akihabara", + "originalTitle": "アキハバラ電脳組", + "overview": "Patapis are cute cyber pets that eat, sleep, play, and help their owners. When Hibari Hanakoganei receives a patapi from the prince of her dreams, mysterious forces try to steal it. Hibari discovers it's not an ordinary patapi. It can transform into a powerful cyber-fighter who looks like Hibari. Hibari's friends also receive similar patapis, and together they form the Cyber Team in Akihabara.\n\nCreated by Tsukasa Kotobuki and Satoru Akahori.", + "posterPath": "/1arVR878h1gK4MaAIXE24UUXNoj.jpg", + "backdropPath": "/5zQdmqHErnpPRo8WZCDlF0wVmMR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-04-04", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 6, + "popularity": 1.579 + }, + { + "id": 89086, + "title": "Pani Poni Dash!", + "originalTitle": "ぱにぽにだっしゅ!", + "overview": "The girls of Class 1-C are starting their tenth-grade year with a new teacher: Becky Miyamoto, an 11-year-old MIT grad! She’s an intellectual titan—but can she handle the temperamental teens and idiotic aliens that await her instruction?", + "posterPath": "/fVxyoXXK4PiJVnQzaPJhENZzbbD.jpg", + "backdropPath": "/hgMrjpO2JKY0AaHiUd8Je9u4h6T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-07-04", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 1.5762 + }, + { + "id": 55018, + "title": "Guin Saga", + "originalTitle": "グイン・サーガ", + "overview": "\"The seal will be broken after many years\". In the land of Nospherus, four heroes embark on a patch of destiny that will weave a new legend. The story follows Guin, a powerful swordsman with a leopard head, the adolescent royal twins Remus and Rinda, and the young and ambitious mercenary named Istvan.", + "posterPath": "/4bipHVo1teci5N8dc0pe0VO5UHm.jpg", + "backdropPath": "/njGP3uy9eMwT9Iju0LsJpKA3Xfs.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2009-05-04", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 10, + "popularity": 1.5762 + }, + { + "id": 26107, + "title": "Gilgamesh", + "originalTitle": "ギルガメッシュ", + "overview": "Set in a future where the sky has been changed into a giant mirror, two teenage children are caught in a struggle between a group of super-powered beings and a mysterious woman's team of children aiming to stop them.", + "posterPath": "/ub3XhOLioxmxcCRwCf35SGdOlg9.jpg", + "backdropPath": "/v5EAFkohAZkKJ0IbvRUGxePjnvY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-02", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 18, + "popularity": 1.5753 + }, + { + "id": 218291, + "title": "Whisper Me a Love Song", + "originalTitle": "ささやくように恋を唄う", + "overview": "Bubbly, energetic first-year high school student Himari falls head over heels for her senpai, Yori, after hearing her band perform on the first day of school. Himari tells Yori she just loves her, and, to Himari's surprise, Yori says she loves Himari back! But when Himari realizes that she and her senpai are feeling two different kinds of love, she begins to ask herself what \"love\" really means.", + "posterPath": "/3rxfd5kFRMjU0YWeSAKyyH48dbt.jpg", + "backdropPath": "/zrqnyKPzKhGHRw9GB6F6zL9R1v5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-04-14", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 10, + "popularity": 1.5737 + }, + { + "id": 21738, + "title": "Patlabor: The Mobile Police", + "originalTitle": "機動警察パトレイバー", + "overview": "In the future, rapidly advancing technology gives birth to giant robots known as \"Labors,\" so named for their usefulness in heavy industry. However, this also gives rise to \"Labor crimes,\" resulting the the need for a new branch of law enforcement equipped with and dedicated to the policing of Labors. When Izumi Noa, a female police officer, becomes the newest recruit of Special Vehicles Division 2, she and her top of the line \"Patrol Labor\" (or \"Patlabor\") Alphonse are swept into a series of adventures featuring crazed construction workers, eco-terrorists, and sea monsters.", + "posterPath": "/rOEKup7wS5bXeOS0CntxQPjhND3.jpg", + "backdropPath": "/adn3fJ4aGGB2vwS6dNaOLZEg7Fi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1988-04-25", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 23, + "popularity": 1.5731 + }, + { + "id": 69286, + "title": "Hand Shakers", + "originalTitle": "ハンドシェイカー", + "overview": "Tazuna is a high school student, living in Osaka, who loves to fiddle around with machines. One day, he receives a repair request from an university laboratory. He accepts the request and ends up meeting a girl named Koyori, who has been bedridden for a very long time. Suddenly, Tazuna and Koyori get pulled into a whole different world called “Ziggurat”. In this world, there are Hand Shakers, two people who touch hands and create the Nimrod. Their goal is to defeat other Hand Shakers in order to gain an audience with “God”, who will grant them wishes. Protect with your own Hands!", + "posterPath": "/5JJFZ4xXpkA40Vvnp0frYBgqf7b.jpg", + "backdropPath": "/qiVQj2IoD2ANzz0alkbesUEAgIE.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-11", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 17, + "popularity": 1.573 + }, + { + "id": 71016, + "title": "KADO: The Right Answer", + "originalTitle": "正解するカド", + "overview": "Kōjiro Shindō is a highly-skilled negotiator working for the Ministry of Foreign Affairs. As his plane at Haneda airport prepares to take off, a huge mysterious cube appears from the sky. 'It' expands rapidly, and absorbs the passenger plane and its 252 passengers. The cube's name is \"Kado\". A strange being called Yaha-kui zaShunina appears from within Kado and tries to make contact with humanity. Shindō, who was been absorbed by Kado, ends up taking on the role of mediator between Yaha-kui zaShunina and humanity. The Japanese government sends its own negotiator, Saraka Tsukai.", + "posterPath": "/qCKBJzeQgkINkxvMEfMqZobm4dA.jpg", + "backdropPath": "/hjaPuDkJpUHcLNDaPUJHaym9uCy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-04-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 45, + "popularity": 1.5729 + }, + { + "id": 107840, + "title": "Otona nya Koi no Shikata ga Wakaranee!", + "originalTitle": "大人にゃ恋の仕方がわからねぇ!", + "overview": "Mio Sudou, a 30-year-old office lady has gone five years without a boyfriend and has forgotten all about love. Shuuji Mashima, a foreign-affiliated consultant has not had a girlfriend in seven years and has lost almost all interest in women. Meeting at a matchmaking party, Mio is disgusted by Shuuji as he states, \"I am not into women.\" However, when Mio makes a provocative comment toward Shuuji, things take an unexpected direction.", + "posterPath": "/wx2HeVJCwtNZoRL8E6Cfj86HDzT.jpg", + "backdropPath": "/fY2XGjOdnrz9kUjObQIwsBS6TFj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-10-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 7, + "popularity": 1.5723 + }, + { + "id": 42860, + "title": "Bartender", + "originalTitle": "バーテンダー", + "overview": "Genius bartender, Sasakura Ryuu makes the most incredible cocktails anyone has ever tasted. Seeking his \"Glass of God\", individuals from all different walks of life visit his bar. With both a compassionate ear and a godly drink, Ryuu helps people with their problems.", + "posterPath": "/fAxOuYLkIVANATE5sEGO2dKz5MF.jpg", + "backdropPath": "/dVWr0KiW3Q3LK2wK4ladsLoRvzb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2006-10-15", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.143, + "voteCount": 21, + "popularity": 1.5722 + }, + { + "id": 68098, + "title": "Monster Hunter Stories: Ride On", + "originalTitle": "モンスターハンター ストーリーズ RIDE ON", + "overview": "In a world where both men and monsters exist. Those who hunt the monsters are called Hunters. But in a small corner of the Hunter's world, there are those called Riders who bond with and coexist with monsters. With their Kizuna Ishi (Bonding Stones) that allow them to awaken the hidden power inside monsters, Riders live in secrecy together with their Otomon, the monsters they formed a connection with. Ryuto, a young boy living in the Rider village of Hakum, dreams of becoming the world's best Rider. Having just turned 12, he sets out to find his own Otomon for himself before the ceremony where he is given his own Kizuna Ishi. Together with his kind-hearted childhood friend Cheval, his inquisitive childhood friend Lilia, and his partner Naville, he sets out deep into the forest, and has a miraculous encounter with a Rathalos.", + "posterPath": "/8WVq0KdNn6IT5Z6mgttKL5ja9JG.jpg", + "backdropPath": "/cXL8E3dC20ZZfmDOwJrrbS0cSnC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2016-10-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 45, + "popularity": 1.5719 + }, + { + "id": 50087, + "title": "Amnesia", + "originalTitle": "AMNESIA", + "overview": "This story takes place in a fictional town, in a fictional country, in a fictional world. One morning, a young lady awakens to find that she has lost all her memories prior to that morning. Her life, her relationships, her very name—all gone. All that's left is a cell phone with numbers and names she doesn't recognize and Orion, a young boy that only she appears to be able to see. With Orion's guidance, she struggles to make sense of herself, a boyfriend she doesn't know and the thousand and one little things that make up a daily life. But with no memories left, the only alternative is to forge new ones, even if that means leaving old loves behind.", + "posterPath": "/x7KUzl5hXPmLXK3MgWIxjr5gLwQ.jpg", + "backdropPath": "/99TWular59CoD2P7Be4S203q0U7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2013-01-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 25, + "popularity": 1.5715 + }, + { + "id": 91584, + "title": "Kemono Michi: Rise Up", + "originalTitle": "旗揚!けものみち", + "overview": "Professional wrestler and animal lover Shibata Genzo is suddenly summoned to another world. Greeted by a princess, she requests to get rid of the evil beasts roaming in this world. Outraged that he was asked to kill monsters, Genzo German suplexes the princess. Unable back to get back to Earth, he decides to live a peaceful life and manage a \"monster\" pet shop.", + "posterPath": "/g916Xx2kh0FZUIVDbyptxvNMFW7.jpg", + "backdropPath": "/r7GP9WcYseo8pjqfBqvgIOT5RxH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-09-29", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.31, + "voteCount": 29, + "popularity": 1.5694 + }, + { + "id": 34735, + "title": "Zegapain", + "originalTitle": "ゼーガペイン", + "overview": "Reality and fantasy seem to be breaking down for student Kyo Sogoru. Is he really a smart but unpopular swim enthusiast at Maihama High School, or is he a pilot of a giant robot in a war-devastated world? Which life is real and which is fantasy?", + "posterPath": "/mnPegDCJ3WtKl7rOjQit9buj19v.jpg", + "backdropPath": "/yAiiRPfEEMcO7xfw6aTCv7HLgrQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-06", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 8, + "popularity": 1.5693 + }, + { + "id": 20451, + "title": "Tenchi Universe", + "originalTitle": "天地無用!", + "overview": "Tenchi Masaki may be a 17-year-old young man in rural Japan, but little does he know how bad his day will be getting. When a space pirate chased by a pair of Galaxy Police officers crash-lands at his grandfather's temple, Tenchi is sucked into a new adventure that will literally blast him off into outer space and beyond.", + "posterPath": "/xAO2jn2c3JyYn19B9uvVa7Xrp4W.jpg", + "backdropPath": "/lkXPZx5XI8KnPbAQ9GQ3hRYbZh2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-04-02", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 6.921, + "voteCount": 19, + "popularity": 1.5687 + }, + { + "id": 52889, + "title": "Wooser's Hand-to-Mouth Life", + "originalTitle": "うーさーのその日暮らし", + "overview": "Wooser's Hand-to-Mouth Life is a Japanese short CG anime series based on a short journal column created by Supercell member Yoshiki Usa and illustrator Tomoko Fujinoki.", + "posterPath": "/kTJcvUc6MdsMlCI4aqEjJS3tiah.jpg", + "backdropPath": "/ipEZQcAa6LUdH4YvoKoBIcqomOy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-10-03", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 5, + "popularity": 1.5685 + }, + { + "id": 65948, + "title": "And You Thought There Is Never a Girl Online?", + "originalTitle": "ネトゲの嫁は女の子じゃないと思った?", + "overview": "Our naïve protagonist proposes to a female character in an online game, only to find out that the player is actually a guy. Traumatized by that, he decides to never trust a girl online, but now, two years later, a female player is proposing to him. What will happen?", + "posterPath": "/wOfBbIglS8dqbH9gTgCJYIb2CA4.jpg", + "backdropPath": "/wS0LoTEk7UKmqOqeOge43jJYoM4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 96, + "popularity": 1.5681 + }, + { + "id": 42141, + "title": "Kamisama Dolls", + "originalTitle": "神様ドォルズ", + "overview": "One night, Kyouhei and Hibino discover a dead body and coincidentally Kyouhei’s sister appears with the doll called Kamisama she controls.", + "posterPath": "/hZpwUx3JNifxHUWhCVCydwPUTJh.jpg", + "backdropPath": "/qEw4MXLoajtLa54y9ivoTR0Mpa8.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35, + 10759 + ], + "genres": [ + "Drama", + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2011-07-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 8, + "popularity": 1.5679 + }, + { + "id": 27757, + "title": "Boys Over Flowers", + "originalTitle": "花より男子", + "overview": "Makino Tsukushi, a girl who comes from a poor family, just wants to get through her two last years at Eitoku Gakuen quietly. But once she makes herself known by standing up for her friend to the F4, the four most popular, powerful, and rich boys at the school, she gets the red card: F4's way of a \"Declaration of War.\" But when she doesn't let herself be beaten by them and is starting to fall for one of the F4, Hanazawa Rui, she starts to see that there is more than meets the eye...", + "posterPath": "/5NPMesGiATZtFNaPGpueEL2hp7T.jpg", + "backdropPath": "/pjpv1FB084Nxi59JXrQTZ0LEnpu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1996-09-08", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 12, + "popularity": 1.5679 + }, + { + "id": 223251, + "title": "Umamusume: Pretty Derby – Road to the Top", + "originalTitle": "ウマ娘 プリティーダービー ROAD TO THE TOP", + "overview": "The new anime will depict T.M. Opera O, Admire Vega, Narita Top Road, and other Uma Musume (Horse Girls) going head-to-head to win Classic competitions.", + "posterPath": "/i2P4Y1coOJdQ5yRC8JGPWP8siV8.jpg", + "backdropPath": "/ewcsPaMdGjf2HnH5B1VcF0UV1kN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2023-04-16", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 10, + "popularity": 1.5677 + }, + { + "id": 5594, + "title": "Battle B-Daman", + "originalTitle": "B-伝説! バトルビーダマン", + "overview": "The people of the B-Daworld have been using B-DAMAN marble-shooters in sport since ancient times. Yamato is a headstrong boy who has been given Cobalt Blade, the most powerful B-Daman. Yamato must use Cobalt Blade to fend off the members of the evil Shadow Alliance in his quest to become the B-Daman champion.", + "posterPath": "/tfZvZ71KdBMdfa9SaDlxWMQqedn.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 18, + 10751, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Drama", + "Family", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-04-02", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 4.9, + "voteCount": 8, + "popularity": 1.566 + }, + { + "id": 46439, + "title": "Aria the Scarlet Ammo", + "originalTitle": "緋弾のアリア", + "overview": "In response to the worsening crime rate, Japan creates Tokyo Butei High, an elite academy where \"Butei\" or armed detectives hone their deadly skills in hopes of becoming mercenary-like agents of justice. One particular Butei is Kinji Tooyama, an anti-social and curt sophomore dropout who was once a student of the combat-centric Assault Division. Kinji now lives a life of leisure studying logistics in order to cover up his powerful but embarrassing special ability. However, his peaceful days soon come to an end when he becomes the target of the infamous \"Butei Killer,\" and runs into an emotional hurricane and outspoken prodigy of the highest rank, Aria Holmes Kanzaki, who saves Kinji's life and demands that he become her partner after seeing what he is truly capable of.", + "posterPath": "/9w91TB5NQRPLUcRTwyNX2rjmyGw.jpg", + "backdropPath": "/jHXUJNyfwIOnRmqHlWz3FGp4XMS.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-15", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 58, + "popularity": 1.5654 + }, + { + "id": 24318, + "title": "Karin: Chibi Vampire", + "originalTitle": "かりん", + "overview": "Karin Maaka leads an ordinary life in spite of the fact that she is from a family of vampires. Unlike the rest of her family, she has no problem with bright lights, sleeps in a bed instead of a coffin, and loves to eat garlic. She is such an abnormal vampire that she doesn't even suck blood - she makes it!", + "posterPath": "/tkE6HGXcFMgCXWhyBXot4XXhvXG.jpg", + "backdropPath": "/mje3hRTc7jGd38TX5q6DgQN9Ehy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-11-03", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 9, + "popularity": 1.5653 + }, + { + "id": 14338, + "title": "The Legend of Ninja Kamui", + "originalTitle": "忍風カムイ外伝", + "overview": "Kamui is a ninja from the Edo period who has decided to leave his clan. After doing so he is pursued relentlessly by the members of his former clan; who consider him to be a traitor and therefore wish to kill him. Kamui then wanders around Japan to escape from them by using his intelligence and great abilities to survive. In the course of the series Kamui begins to suffer from paranoia because of his status as a persecuted man. Kamui then started to believe that everybody wished to murder him and became distrusting of everyone he came across.", + "posterPath": "/qnLjTOvjJckO0wFAzLiI6fTlugc.jpg", + "backdropPath": "/uUOLHSsfpnxh74pLGOdwKnRsprS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1969-04-06", + "releaseYear": "1969", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 7, + "popularity": 1.5651 + }, + { + "id": 62691, + "title": "Outbreak Company", + "originalTitle": "アウトブレイク・カンパニー", + "overview": "What starts out as a simple job soon becomes an adventure in an alternate world when otaku-expert Shinichi Kanou is unknowingly sent as an otaku-culture ambassador to the land of the Holy Eldant Empire.", + "posterPath": "/iiMG41ewNxmJGfL3yzbT9JpQ414.jpg", + "backdropPath": "/6kJmNpMi56KCeJGYx96WXNUzUmt.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Comedy" + ], + "releaseDate": "2013-10-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 51, + "popularity": 1.5643 + }, + { + "id": 10108, + "title": "Belle and Sebastian", + "originalTitle": "名犬ジョリィ", + "overview": "Belle and Sebastian is an anime adaption of a series of French novels called Belle et Sébastien by Cécile Aubry. The series ran on the Japanese network NHK from April 7, 1981 – June 22, 1982. It consists of 52 episodes and was a co-production of MK Company, Visual 80 Productions and Toho Company, Ltd.. Toshiyuki Kashiwakura was the head writer and character designs were by Shuichi Seki. The show was broadcast on French and Japanese television in 1981, with American cable network Nickelodeon picking it up in 1984. In the United Kingdom, it aired on Children's BBC in 1989 and 1990.\n\nThis anime used many staffers from Nippon Animation's World Masterpiece Theater franchise, thus the look and feel is similar to that of a WMT production even though Nippon Animation itself was not involved with this series.\n\nThe series has been aired in many countries outside Japan and has been dubbed and subtitled in English and numerous other languages.", + "posterPath": "/yJ0xM73STVS0H81zdWEhfFKEvJm.jpg", + "backdropPath": "/r5c7zggJZ55BbQzYRnvwArXRS5i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10751 + ], + "genres": [ + "Animation", + "Drama", + "Family" + ], + "releaseDate": "1981-04-07", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 27, + "popularity": 1.5634 + }, + { + "id": 76138, + "title": "The Seven Heavenly Virtues", + "originalTitle": "七つの美徳", + "overview": "Heaven has been thrown into chaos, and in the ashes, seven angels known as the Seven Heavenly Virtues, are sent to Earth to search for a candidate who can become the \"true messiah\".", + "posterPath": "/qUt1elM2MzRQeuQFpCFi7zATDbA.jpg", + "backdropPath": "/qlkt53GBwglO2gQIRmFWfRJjZbX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-27", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 19, + "popularity": 1.5629 + }, + { + "id": 24856, + "title": "Jinki: Extend", + "originalTitle": "Jinki: Extend", + "overview": "In 13-year-old Aoba Tsuzaki's world, everything seems normal. An over-the-top modeling fanatic, she spends her days locked in her room, happily building plastic robots. But rumbling beneath the surface, an evil enemy of mankind (the Ancient Jinki) threatens to destroy the Earth.", + "posterPath": "/pVvG79hkZp11aLgzoK5SRhv28Gx.jpg", + "backdropPath": "/zOp5VrB445xaS75Ee1hIpqYwVXi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2005-01-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 8, + "popularity": 1.5605 + }, + { + "id": 23375, + "title": "Gakuen Alice", + "originalTitle": "学園アリス", + "overview": "Mikan Sakura is a normal 10-year-old girl. Optimistic, energetic, and overall a very sweet child, Mikan is the complete opposite of the aloof, intelligent, and somewhat cold-hearted, Hotaru Imai. Despite their glaring differences, the two girls have been best friends for a very long time. So when Hotaru suddenly transfers to Alice Academy, a prestigious school in the city, her best friend is devastated—especially when she hears of the horrible rumors regarding the academy's harsh treatment of students. Beset with worry, Mikan runs away to see her best friend!\n\nUpon her arrival, Mikan learns of \"Alices,\" individuals gifted with various supernatural abilities, and that the school is an institution built by the government to train and protect them. Discovering that she has her own unique powers, Mikan enrolls in the academy, and, after a lot of trouble, finally reunites with Hotaru.", + "posterPath": "/vy8Fq5R1KE4qTCPw0O5pVrcshlA.jpg", + "backdropPath": "/oCnVslQxyg0H5tWERFEQkDnqC4w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-10-30", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 11, + "popularity": 1.5581 + }, + { + "id": 68080, + "title": "Izetta: The Last Witch", + "originalTitle": "終末のイゼッタ", + "overview": "If I am promised to the princess, then I will fight for her sake.\n\nIn 1939 C.E., the imperialist nation of Germania invaded a neighboring country. All at once, that war spread throughout Europe, and the era was dragged into a spiral of a great war.\n\nThen, in 1940, Germania's attack turned towards the Principality of Eylstadt, a small Alps country abundant with beautiful water and greenery.", + "posterPath": "/odwgkywwzbl9fC0moPCbnvTw6iz.jpg", + "backdropPath": "/7ZoUMc2C7c93g6ki3e5RyE1JmCc.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2016-10-01", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.328, + "voteCount": 58, + "popularity": 1.557 + }, + { + "id": 43947, + "title": "Usagi-chan de Cue!!", + "originalTitle": "うさぎちゃんでCue!!", + "overview": "Mikami Inaba was fighting a person from another school on her school's rooftop. As they fought, her friend Haru appeared. Seeing Mikami distracted, the man charged at her, causing both of them to break the nearby rabbit cages & fall off the roof. As Mikami fell, she desperately grabbed the rabbit. Suddenly, a flash or pink light appeared. Mikami fused with the rabbit, and gained another personality, called Mimika. Now, Mikami only appears when various people threaten her and her friends. Otherwise, she takes on the form of Mimika.", + "posterPath": "/kRj9QK1ZwpZhU4CGck8uuzmaYbz.jpg", + "backdropPath": "/sAr4a4zaMF0h8zFDnaqCU2U1AI7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-11-09", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 8, + "popularity": 1.5568 + }, + { + "id": 211034, + "title": "Too Cute Crisis", + "originalTitle": "カワイスギクライシス", + "overview": "Invading alien Liza Luna wants nothing more than to destroy planet Earth... after she gets in a little sightseeing, first. But her travels soon take her into a cat café, where the furry felines inside invade her heart just as surely as Liza invaded Earth! Destroying the world won't be so easy now that she's discovered the joys of kitty cats...", + "posterPath": "/yKXHIh4G2CoWvJsS207JYkgxfQO.jpg", + "backdropPath": "/qaXOQV7YxKEW1pyR67zhMbJvsvC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 4.9, + "voteCount": 7, + "popularity": 1.5567 + }, + { + "id": 67340, + "title": "Magi: Adventure of Sinbad (OVA)", + "originalTitle": "マギ シンドバッドの冒険", + "overview": "The story takes place 30 years before the events of Magi. In this age will focus on the journey that Sinbad have to make to become king and many adventure more.", + "posterPath": "/dmNFk9TeB8YoKEhrn2n8tWkBSVO.jpg", + "backdropPath": "/xOntAOzyMY43wLFpKyRj92BFsQG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2014-05-16", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 22, + "popularity": 1.5557 + }, + { + "id": 29577, + "title": "Magician's Academy", + "originalTitle": "まかでみWAっしょい!", + "overview": "Magician's Academy revolves around Takuto Hasegawa, who attends a magic academy that is not marked on any map. During a summoning spell exam, he accidentally creates a girl named Tanarot, who happends to hold enough magical power to destroy his country, but fortunately Tanarot professes undying loyalty to her \"creator.\"", + "posterPath": "/28z2e5zwM6g9B437fRh0FRS0PXI.jpg", + "backdropPath": "/1jIbmAt7FrMZyQtJHdtI3yH6I02.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2008-10-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 7, + "popularity": 1.5548 + }, + { + "id": 128826, + "title": "Miss Kuroitsu From the Monster Development Department", + "originalTitle": "怪人開発部の黒井津さん", + "overview": "Touka Kuroitsu is a research assistant who belongs to the Monster Development Department of the evil organization Agastia. However, the enemy she has to fight right now isn't the heroes of justice, but her boss.\n\nSo long justice exists, evil too, will exist. This is the story of those who fight secretly in the shadows of justice and evil's confrontation.", + "posterPath": "/yP0gRkxo9puHGAc9PgwUj9Ym0h.jpg", + "backdropPath": "/zYJqj1bnINvbqBwxAEFiMZ78XrS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.056, + "voteCount": 18, + "popularity": 1.5535 + }, + { + "id": 31682, + "title": "El Cazador de la Bruja", + "originalTitle": "エル・カザド", + "overview": "Nadie is a bounty hunter targeting Ellis, a young amnesiac girl who is a suspect in the murder of a famous scientist. Nadie manages to apprehend Ellis, but on a whim, decides to help unlock Ellis's memories.", + "posterPath": "/oSXss9t1LucDtcnctL24xULJ5n3.jpg", + "backdropPath": "/3vP7KmYQNMwcFWWdYLFf6Q47dtO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 37, + 10759, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Western", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2007-04-02", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.917, + "voteCount": 18, + "popularity": 1.5521 + }, + { + "id": 64831, + "title": "ISUCA", + "originalTitle": "ISUCA", + "overview": "Shinichirou decides to look for a job in order to pay his rent, and his teacher suggests that he work for someone at their house doing housekeeping; however, the person who hired him was Sakuya, a girl who is the 37th head of the Shimazu family, and her job is to exorcise and eliminate unwanted creatures. Shinichirou accidentally releases one of the creatures that Sakuya captures and they cooperate to catch it.", + "posterPath": "/8lDM5XTL7n9MB9vniEg2QuMdrpF.jpg", + "backdropPath": "/aSsYx6QUx57Pn9SdMqJNbwd076Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-24", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.318, + "voteCount": 22, + "popularity": 1.5511 + }, + { + "id": 66863, + "title": "Unlimited Fafnir", + "originalTitle": "銃皇無尽のファフニール", + "overview": "Twenty-five years ago, the world suddenly changed when monsters called “Dragons” appeared; seeking to ravage the earth and find mates. Over time, superhuman girls possessing the powers of the dragons, called “D girls” were born. Yuu Mononobe is the only male “D” in existence and is forced to enroll at Midgar - an academy for D girls. At the academy, he accidentally runs into Iris, a delinquent D girl, while she’s naked, and even reunites with this long lost sister, Mitsuki, whom he was separated with at birth. Will Iris and Yuu, the boy who is supposed to become the strongest assassin, be able to challenge the seven dragons that threaten to destroy the world?", + "posterPath": "/zY7vcsQsoQqY8zcmjkCeeUBeTAV.jpg", + "backdropPath": "/9vVpaxamUN9aED2kGItcTTRFUZj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2015-01-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.75, + "voteCount": 8, + "popularity": 1.5509 + }, + { + "id": 60807, + "title": "M3: The Dark Metal", + "originalTitle": "M3 ~ソノ黒キ鋼~", + "overview": "In a dark void known as the Lightless Realm, a group of children meet and bond, but are then separated and returned to their own dimension. Years later, these children reunite to fight \"Admonitions,\" monsters that originate from the same void, using robots known as \"Vess.\" However, their efforts only slow the ever-encroaching and expanding Lightless Realm from infecting their world.\n\nTheir lives take a drastic turn when a new foe appears in the form of a \"Corpse,\" whose song is rumored to kill any who hear it within nine days. The \"Corpse Song\" is heard by the group, and with this, they each begin to pull away and become caught up in their own personal problems—ultimately threatening the fate of humanity.", + "posterPath": "/14GDH4WEXa6tmwxea10pxZl4eoH.jpg", + "backdropPath": "/cDaGTqEw9SlbozVt1sqWliS3OBs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2014-04-22", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 1.5502 + }, + { + "id": 65383, + "title": "Love Live! Sunshine!!", + "originalTitle": "ラブライブ!サンシャイン!!", + "overview": "Uranohoshi Girls’ High School, a private school in the seaside neighborhood of Uchiura at Numazu city, Shizuoka prefecture. A small high school in a corner of Suruga Bay, it is home to nine teens, led by second-year student Chika Takami, driven by one seriously big dream: To become the next generation of bright, sparkling “school idols”! As long as we don’t give up, any dream can come true... All we have to do now is keep pushing hard for fame and glory! Now their “School Idol Project” begins to make their dreams come true!", + "posterPath": "/bur79VHvAZKFzeDGeEfpoPtTQFi.jpg", + "backdropPath": "/nCEastc2t3njgwTLnLE7YkBjuLJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2016-07-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 47, + "popularity": 1.549 + }, + { + "id": 94388, + "title": "Gibiate", + "originalTitle": "ジビエート", + "overview": "In 2030, Japan. A virus has infected humans throughout the world. Infected people turn into different forms of monsters based on their ages, sexes and races. The virus is named 'Gibia' - after being rich in variety like gibia. Just then, a pair of samurai and ninja appeared in such a blighted wasteland of Japan. They both traveled from the early Edo period, fighting together with help from a doctor who tries to find cure for Gibia. Facing ceaseless attacks from Gibias, and outlaws that attack travelers for food, they start the dangerous journey with enemies all around.", + "posterPath": "/6AaCfEMkJlKxiFLchVmhJi7eDzb.jpg", + "backdropPath": "/ykK9VfewaHyzqUSbiSPKFKfPfk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2020-07-15", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 53, + "popularity": 1.5481 + }, + { + "id": 1065, + "title": "Mirage of Blaze", + "originalTitle": "炎の蜃気楼", + "overview": "Takaya, an ordinary high school boy, gets drawn into an ancient war of darkness and tragedy when he discovers that he is the reincarnation of a feudal lord from Japan's Warring States Period", + "posterPath": "/gwKtIw83V7Qt8ylHrhaYLHq0k4.jpg", + "backdropPath": "/ifMaJY0ysDhIhmi6fbma0wh7dQQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-01-07", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 8, + "popularity": 1.5465 + }, + { + "id": 233523, + "title": "Dahlia in Bloom: Crafting a Fresh Start with Magical Tools", + "originalTitle": "魔導具師ダリヤはうつむかない", + "overview": "After a workaholic life in Japan, Dahlia is reborn as a magical maven in a new world, but her afterlife takes an unexpected turn. Engaged, betrayed, and orphaned—all before the honeymoon? Talk about a plot twist! Watch as Dahlia turns heartbreak into wand-making brilliance and declares her independence. In this story, the real magic is self-discovery, and Dahlia’s the sorceress of her own destiny.", + "posterPath": "/nH9oIoex0CeefWG1HXfOrLRvN7R.jpg", + "backdropPath": "/jFzhOfySHlYXHltt3wjd6A9mEpX.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2024-07-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.261, + "voteCount": 23, + "popularity": 1.5461 + }, + { + "id": 98309, + "title": "Koikimo", + "originalTitle": "恋と呼ぶには気持ち悪い", + "overview": "One rainy day, salaryman Amakusa Ryo is saved by a high school girl he doesn't know at the station. He later finds out that the girl is Arima Ichika. Ryo is somewhat of a womanizer and to repay her for saving him, he suggests giving her a kiss or going out on a date with her, in which Ichika tells him he's creepy. This, however, opens a new door for Ryo and he falls madly in love with her. Ever since then, Ryo tries to overly express his feelings to Ichika. Ichika just keeps insulting him and says he's being creepy, but he just seems to take it as her way of showing affection towards him...", + "posterPath": "/gPS6ip5T0W823Z0rlDhopXI6i1h.jpg", + "backdropPath": "/lURZio8KWkZ9qUixiopFTqOXix.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-03-29", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.782, + "voteCount": 56, + "popularity": 1.546 + }, + { + "id": 19237, + "title": "Transformers: The Headmasters", + "originalTitle": "トランスフォーマー ザ★ヘッドマスターズ", + "overview": "Following on The Return of Optimus Prime (and in place of The Rebirth), The Headmasters is the first Japanese-exclusive Transformers franchise.", + "posterPath": "/vWt6Zvej0a88KR1DiHE8P3UgEnt.jpg", + "backdropPath": "/szlTSHBirFKC8vnBIxgcJQDsqPY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1987-07-02", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 14, + "popularity": 1.5458 + }, + { + "id": 23475, + "title": "IGPX: Immortal Grand Prix", + "originalTitle": "IGPX インモータル・グランプリ", + "overview": "In the year 2048, people are raving about a fighting race called “Immortal Grand Prix”, or IGPX in short, which is faster and more exciting than any of the existing motor sports. The phenomenon is so big that an entire city was built for the racing industry where competitions take place on a huge track. In the “Immortal Grand Prix,” two teams of three IG machines, high-tech humanoid mechs driven by humans, race at speeds greater than 400km/h. The teams make three laps of a 60 km course while intercepting the opponent as they vie for a first place finish. The best machine performance, the best pilots and the best teamwork are the only factors that can make them the winners.", + "posterPath": "/mVjBbM1TUkq3r1Bq0wlo3ZG5xfC.jpg", + "backdropPath": "/w8BZhJOqDeXzwQNYQPbCNsq04p7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2005-10-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 6, + "popularity": 1.5456 + }, + { + "id": 124572, + "title": "Healer Girl", + "originalTitle": "ヒーラー・ガール", + "overview": "The world can be healed through music, and these three girls want to make it happen. Meet Kana Fujii, Reimi Itsushiro, and Hibiki Morishima—three healers-in-training at the Karasuma Phoniatric Clinic learning the art of healing patients’ illnesses and injuries by singing. Join them on this musical adventure of kindhearted, powerful miracles sung to heal the world.", + "posterPath": "/r4gQyPckOuxVUQTrlXXnuMzDdKQ.jpg", + "backdropPath": "/dvVvzd6XZDOIThJJmsxzg8h2Zd5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-04", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 8, + "popularity": 1.5454 + }, + { + "id": 80462, + "title": "Chio's School Road", + "originalTitle": "ちおちゃんの通学路", + "overview": "This is a story of a nerdy bookworm girl on her way to school, and yes, that's the entire premise, as she's not getting to school any time soon. Taking her \"usual\" route to school, it becomes an increasingly unusual adventure, and all the more ridiculous as it carries on. It takes an unpleasant sentiment many can empathize with, the feeling of tardiness, and brings humor to it—making it a hilarious situation to look back upon.", + "posterPath": "/taElEb8RT6CTTTlj1eYiGPzro9X.jpg", + "backdropPath": "/eKgbzuMVitCbNS3PwFB7ihSRls1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-07-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 33, + "popularity": 1.5453 + }, + { + "id": 43634, + "title": "Akikan!", + "originalTitle": "アキカン!", + "overview": "Daichi Kakeru is a high school student who has never had a girlfriend. Little did he know that everything was about to change when he bought a melon soda on his way home from school as the can came to life in the form of a girl, whom he calls \"Melon\".", + "posterPath": "/lo2WdY9x0dm3Q5Qs3Lc3Zyj0DWp.jpg", + "backdropPath": "/hhSTQI4ubGK6WwhogdXyyBOkZNA.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2009-01-03", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.224, + "voteCount": 38, + "popularity": 1.5437 + }, + { + "id": 95736, + "title": "Re: Cutie Honey", + "originalTitle": "Re:キューティーハニー", + "overview": "A mysterious organization known as Panther Claw make their presence known by terrorizing Tokyo and giving the cops a run for their money. Police are further baffled by the appearance of a lone cosplaying vigilante who thwarts all of Panther Claw's evil schemes before disappearing. That cosplayer is Honey Kisaragi, the result of the late Professor Kisaragi's prize experiment. A master of disguise, Honey can instantly alter her physical appearance and outfits. But with a push of the heart-shaped button on her choker, she transforms herself into Cutie Honey, the scantily clad, sword-wielding warrior of love and justice.", + "posterPath": "/gn3oEmUnYcPHqjfdurJXcVQ4h80.jpg", + "backdropPath": "/4DwHiJ901TtJ5DyvHZ0t2Z37tAB.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10759, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-07-24", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 19, + "popularity": 1.5416 + }, + { + "id": 65739, + "title": "Perman", + "originalTitle": "パーマン", + "overview": "After Mitsuo receives a mask from a retiring superhero, he becomes Perman.", + "posterPath": "/gIYb3boKJ7QScJwzmcUs2ztb84U.jpg", + "backdropPath": "/c7mEIDPaZu9HbUZEZdMDObvMM0d.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1967-04-02", + "releaseYear": "1967", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 9, + "popularity": 1.5413 + }, + { + "id": 26563, + "title": "Step Up Love Story", + "originalTitle": "ふたりエッチ", + "overview": "Makoto and Yura Onoda are a newly-wed couple with zero sexual experience. Yura is a shy and naive 25-year-old woman whose good looks grab men's attention, something that she dislikes because she gets embarrassed very easily. Her husband Makoto is of the same age, but as opposed to his wife, he loves having dirty thoughts about other women. Physically though, Makoto is truly faithful to Yura.\n\nBoth of them may be virgins, but now that they are married, they are ready to dive into the world of sex, \"practicing\" as often as possible. However, the world of sex is complex, so they need all the help they can get to find their way through it. Thankfully, their friends, acquaintances, and porn media lend them a helping hand.", + "posterPath": "/i8GMPDxEsn8ANkz3VXlIsGHVawW.jpg", + "backdropPath": "/1uRsaPaGVhJZzjSl5GJpLr0HaMN.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Comedy" + ], + "releaseDate": "2002-07-26", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 10, + "popularity": 1.5399 + }, + { + "id": 21320, + "title": "Carried by the Wind: Tsukikage Ran", + "originalTitle": "風まかせ月影蘭", + "overview": "Wandering the lands of Japan - Ran is a master swordsman with a strong sense of honor combined with the courage and strength to right wrongs and battle injustice.​ But that doesn't stop her from having a good time!\n\nStuck with an unwanted traveling companion,​ Myao,​ the two will bring law and order to the countryside.​.. if they don't kill each other first.​ A comedic,​ action drama from start to finish - the way of the Samurai will never be the same!", + "posterPath": "/eL7rnpy322XRT7aG1K56BddGwD5.jpg", + "backdropPath": "/yAGkdyePWyIrWUQ0LxogJlRgMor.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2000-01-26", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 5, + "popularity": 1.5396 + }, + { + "id": 44966, + "title": "The Many Dream Journeys of Meme", + "originalTitle": "ミームいろいろ夢の旅", + "overview": "The Many Dream Journeys of Meme is a Japanese anime television show created by Nippon Animation. The show originally aired from 1983 to 1985 and was primarily educational. Episodes usually dealt with scientific discoveries and inventions, though there were also a few futuristic and science fiction stories and situations.\n\nThe series has been translated into many languages, including Spanish, French, Portuguese, Hebrew, and Arabic and Serbo-Croatian.", + "posterPath": "/vVz4QV7cjNqBaKFdia3J5w7n1HO.jpg", + "backdropPath": "/erKcsv6Oe9i9ARWmZitICUEhLtJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1983-04-03", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 7, + "popularity": 1.5381 + }, + { + "id": 78461, + "title": "Space Battleship Tiramisu", + "originalTitle": "宇宙戦艦ティラミス", + "overview": "The Earth Union is locked in a massive galactic war. Aboard the Space Battleship Tiramisu, ace pilot Subaru Ichinose carries the fate of humanity on his shoulders. Life for Subaru is tough. But nothing relieves tension quite like launching an all-out food-based assault on his own face. Snug as a bug in a rug, Subaru soothingly unwinds in his personal mecha, “Durandal F,” as bliss overtakes him.", + "posterPath": "/yzrqm68L1QPjBsc2CgZxsPwrYve.jpg", + "backdropPath": "/jxqQaUIcNYWFdoDsfd0xZCl19oP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2018-04-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 7, + "popularity": 1.5378 + }, + { + "id": 67524, + "title": "Mobile Suit Gundam Unicorn RE:0096", + "originalTitle": "機動戦士ガンダムUC RE:0096", + "overview": "U.C. 0096. Three years after Char's rebellion, Banagher Links, a boy living at the manufacturing colony Industrial 7, meets a mysterious girl who calls herself Audrey Burne. Audrey claims that she is trying to stop the Vist Foundation from handing over Laplace's Box to the Neo Zeon remnants known as the Sleeves, an act which could spark another war, and Banagher decides to help her. But the colony becomes a battlefield as fighting breaks out between the Sleeves and the Earth Federation Forces, who have also come to stop the handover...\n\nThe seven-episode OVA series, re-edited into a TV series with new opening and ending sequences.", + "posterPath": "/unGyvP0EGK1LMkDOJRHFUOHKO3p.jpg", + "backdropPath": "/u79w2TSTlsGNUZ1Tou337B9cio2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2016-04-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 22, + "popularity": 1.5378 + }, + { + "id": 229108, + "title": "The Banished Former Hero Lives as He Pleases", + "originalTitle": "出来損ないと呼ばれた元英雄は、実家から追放されたので好き勝手に生きることにした", + "overview": "Allen is banished from the Duchy of Westfeldt on account of his low level and lack of a god-given Gift, and all seems lost. But with his memories of a past life as a hero intact, Allen sees this twist of fate as a blessing—he can finally live his life as he pleases! That momentary peace is cut short when Allen saves his ex-fiancée, beginning a new saga for the banished former hero.", + "posterPath": "/gUDkHsNzkjTBQ55fS9pUO1ng7vk.jpg", + "backdropPath": "/ulPhuyAA6Yd0k372vQhhj5BmyVM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.22, + "voteCount": 25, + "popularity": 1.5377 + }, + { + "id": 8859, + "title": "Negima!", + "originalTitle": "魔法先生ネギま!", + "overview": "Vampires, robots, sorcery… And that’s all before Gym Class! Welcome to Mahora Academy, an all-girls school where the impossible and the enchanting are a part of the curriculum. It’s the start of the new school year and emotions run rampant as the girls of Class 2-A meet the newest staff addition – Negi Springfield. A ten-year-old Welsh born prodigy, Negi has more problems than he has students. As a wizard-in-training, this academic appointment is the final requirement in his quest to become a Magister Magorum. But if he messes things up and the girls find out, existence as an exotic ermine will be his fate!", + "posterPath": "/pfEiIQQ1n3LgSRznpoDWpniCnfo.jpg", + "backdropPath": "/9KJTPglkgWXbyzTkqIOgA6y8Dv6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-01-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 20, + "popularity": 1.5352 + }, + { + "id": 80463, + "title": "Mr. TONEGAWA Middle Management Blues", + "originalTitle": "中間管理録トネガワ", + "overview": "Nobody knows what it's like to be the bad man… except the bad man's right-hand man, who has to take the boss' deranged ideas and turn them into functioning plans. So, when the sadistic president of the Teiai Group decides he's bored with the routine leg breaking and widow/orphan evicting, he assigns the task of coming up with something \"special\" to his ruthless Number Two, Yukio Tonegawa. But how do you amuse someone who destroys a dozen lives before breakfast?\n\nThere's a huge pool of potential victims in the form of TFO's swollen roster of defaulting borrowers, but if Tonegawa and his team of nearly identical men in black look-alikes can't create a \"game of death\" that tickles the boss' demented funny bones, they may end up playing the game themselves!", + "posterPath": "/4wSWVBPK6SYnUMjKjXPKN79aFFJ.jpg", + "backdropPath": "/oCN0hCqhu0QQgPRiTy7elZdhW2U.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-07-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 13, + "popularity": 1.5336 + }, + { + "id": 34126, + "title": "Innocent Venus", + "originalTitle": "イノセント・ヴィーナス", + "overview": "In the year 2010, world-wide Hyper Hurricanes have wiped out five billion people. In the wake of the devastation, a group known as Logos rises to power, taking control of most of Earths now-precious resources. To ensure their dominant position, Logos creates Phantom, an elite force called on to suppress renegades and rebellions. Now, Joe and Jin, two of Phantoms best agents, have escaped with a mysterious girl who may hold the key to the planets future.", + "posterPath": "/vZwfZVgTV8XFjJXdqCFg4txIxmR.jpg", + "backdropPath": "/cPq930MFbk5eX3w3YWo9owpYgoH.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 18 + ], + "genres": [ + "Drama", + "Animation", + "Drama" + ], + "releaseDate": "2006-07-26", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 1.5333 + }, + { + "id": 60937, + "title": "Time of Eve", + "originalTitle": "イヴの時間", + "overview": "The future, probably Japan. Robots have long been put into practical use, and androids have just come into use. Influenced by the Robot Ethics Committee, it's become common sense for people to treat androids like household appliances. Their appearance – indistinguishable from humans except for the ring over each android's head – has led some people to empathize unnecessarily with androids. Known as \"android-holics\", such people have become a social problem. Rikuo, a high school student, has been taught from childhood that androids are not to be viewed as humans, and has always used them as convenient tools. One day, Rikuo discovers some strange data in the behavior records of his family's household android, Sammy. Rikuo and his friend Masaki trace Sammy's movements, only to discover a mysterious café that features a house rule that \"humans and robots are to be treated the same\".", + "posterPath": "/z5lduPCqsghIsrpebfiunU4hp0s.jpg", + "backdropPath": "/lBNrI9aqQUZwAmHCsPQvE9MSKMG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2008-08-01", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 42, + "popularity": 1.5312 + }, + { + "id": 31700, + "title": "Jyu-Oh-Sei", + "originalTitle": "獣王星", + "overview": "After their parents are murdered, young twin brothers Thor and Rai are abandoned on Chimaera, a hostile planet where criminals are sent to die. With extreme temperatures and carnivorous plants, it is a brutal world where mankind has been reduced to a savage state. The only hope of escape lies in conquering the planet and its inhabitants, rising above them all as the Beast King.", + "posterPath": "/KYbZeKkpWHPWl2oHC7NWHEOjNe.jpg", + "backdropPath": "/mmakJAJfK4m5DWM6LSW2WuCdKTp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-04-13", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.647, + "voteCount": 17, + "popularity": 1.5309 + }, + { + "id": 31692, + "title": "Kurau Phantom Memory", + "originalTitle": "KURAU Phantom Memory", + "overview": "It’s the year 2100, and the moon is now home to a colony of scientists and pioneers. It’s also host to dangerous experiments into strange new forms of energy, and it isn’t long before one of them goes terribly wrong. In a freak accident young Kurau, the daughter of chief scientist Amami So, is struck by mysterious twin bolts of light. Rather than taking her life, the accident leaves her playing host to two mysterious entities that give her fantastic powers…and little love for the human race.", + "posterPath": "/mtZKQK4IyAdzHXMwwU81bxl989s.jpg", + "backdropPath": "/1knz9XzHEnqmLVhA9yzRe8gplqL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2004-06-24", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.273, + "voteCount": 11, + "popularity": 1.5308 + }, + { + "id": 260523, + "title": "Rock Is a Lady's Modesty", + "originalTitle": "ロックは淑女の嗜みでして", + "overview": "Forced to give up playing guitar when her mother remarried a rich real estate tycoon, Lilisa Suzunomiya's passion for music reawakens when she meets Otoha Kurogane, her seemingly perfect classmate who is secretly a heavy metal drummer!", + "posterPath": "/q7C7JLiqGTQEx0U7FjpngrPgxeK.jpg", + "backdropPath": "/i9E2lwBBJGuVEIwl1LZckC4isKz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2025-04-03", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 12, + "popularity": 1.5299 + }, + { + "id": 52850, + "title": "The Severing Crime Edge", + "originalTitle": "断裁分離のクライムエッジ", + "overview": "Killing Goods are murder weapons handed down from generation to generation within the families of their owners. They are cursed to compel their current owners to repeat the original murders. The curse also makes them indestructible. Kiri Haimura is the current owner of a pair of shears that can cut seemingly anything, although the only thing he wants to cut is hair. One day he meets Iwai Mushanokoji, a girl of whom he has only heard rumors that her hair cannot be cut, a girl who can grant one wish, any wish, but only to the person who murders her. Every morning he cuts her hair, which grows back every night; and every day he helps protect her from people who know about her curse and who want a wish granted.", + "posterPath": "/aJIQ63qHGlb1iuUhLWUrwpkgoyY.jpg", + "backdropPath": "/bzw5oLGnVmrYxuXSqJE3CUZ5E5l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Crime" + ], + "releaseDate": "2013-04-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.256, + "voteCount": 41, + "popularity": 1.5279 + }, + { + "id": 243452, + "title": "Frozen Mahjong Tiles: Underground Mahjong Battle Record", + "originalTitle": "凍牌~裏レート麻雀闘牌録~", + "overview": "Not a lot of people know that one of the most talented and ruthless Mahjong players in the city is a young high school boy. Kei is a teenager of few words, but his observation skills, unwavering will and experience in the game allows him to survive in a world full of powerful, rich and dangerous characters. Kei is currently hiding a girl named Amina who has entered the country illegally and protecting her from being deported. He spends his days sleeping through class and his nights playing high stakes Mahjong, waiting for when a worthy opponent arrives.", + "posterPath": "/k7EEVI5SkseCR2ocxrS4QzdSU1h.jpg", + "backdropPath": "/5sB6tSr5ZorVjdXTV4SoNZ9qgeN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-10-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 5, + "popularity": 1.5276 + }, + { + "id": 34814, + "title": "Samurai Deeper Kyo", + "originalTitle": "サムライ ディーパー キョウ", + "overview": "Demon Eyes Kyo, a feared samurai seeking to regain his body after his soul is sealed inside the body of his rival, Mibu Kyoshiro. Kyo is joined in his search by the bounty-hunter Shiina Yuya, the heir to the Tokugawa shogunate Benitora; and Sanada Yukimura, a known rival of the Tokugawa.", + "posterPath": "/s7vke0CDL6wiERoXdQ9UEN9IuR9.jpg", + "backdropPath": "/5fFnW4PrtShAcGz3geMwfCiJBko.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2002-07-02", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 9, + "popularity": 1.5262 + }, + { + "id": 222784, + "title": "Mr. Villain's Day Off", + "originalTitle": "休日のわるものさん", + "overview": "As a member of a malevolent organization, the General is tasked with invading Earth and wiping out humanity. Even an extraterrestrial being like him, however, needs a chance to rest. Not even the Rangers—a team solely dedicated to defeating the General and his colleagues—will stand in the way of him visiting pandas at the zoo, buying ice cream at the convenience store, and enjoying his well-deserved day off from committing evil deeds.", + "posterPath": "/mHxmVSEjuvf7hJf7ds2edmPldYD.jpg", + "backdropPath": "/dieAKtr4AuTaANZ9B54dt38RKyi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-01-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.524, + "voteCount": 21, + "popularity": 1.5251 + }, + { + "id": 42870, + "title": "Bludgeoning Angel Dokuro-chan", + "originalTitle": "撲殺天使ドクロちゃん", + "overview": "In the future, a man named Sakura is destined to create the technology for eternal life, which (due to Sakura's lolicon tendencies) freezes all women's aging once they turn twelve. God refuses to allow this, so he sends his angels to the past to kill Sakura before he can do this. But one angel, Dokuro-chan, decides to try to change the future without killing him. Problem is, Dokuro is very temperamental, and is constantly killing Sakura (and lots of other people too) in incredibly bloody ways with her giant spiked club. Good thing she can bring people back to life - if only to gruesomely kill them again the next time she loses her temper.", + "posterPath": "/hJOKiT6BCfmiP1qpnJj0oy3b3lD.jpg", + "backdropPath": "/sYi6THlw18Z05AuYXjFkpX5x72U.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-03-13", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 30, + "popularity": 1.5231 + }, + { + "id": 34717, + "title": "Nagasarete Airanto", + "originalTitle": "ながされて藍蘭島", + "overview": "Following an argument with his father, Ikuto runs away from home. Along the way he boards a cruise ship and is knocked overboard in the ensuing storm. After drifting away out to sea, he eventually washes ashore on an island named \"Airantou\" by the locals. The island is surrounded by whirlpools making any attempt at escape impossible, and likely life-threatening. Only women reside on this island, putting Ikuto in the unique position where nearly every person around sees him as prime husband material. Will Ikuto be able to adapt to life on this island with women fighting over him at every turn?", + "posterPath": "/rZEwvdIZGYkPYoRlMTXhtcHm8j3.jpg", + "backdropPath": "/1fPsGvVfMH9gP2p1Rhb9619R5Pm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-04-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 11, + "popularity": 1.5225 + }, + { + "id": 60825, + "title": "Chaika - The Coffin Princess", + "originalTitle": "棺姫のチャイカ", + "overview": "Toru Acura is a 20-year-old retired soldier meandering through life now that the war has ended. He encounters Chaika Trabant, a 14-year-old sorceress carrying a coffin, and follows her in hopes of finding meaning to his life again. The two travel with Toru's adopted sister, Akari, the employed member of the group and thus Toru's source of income.", + "posterPath": "/eh02y67ge1J6ThiTH3zPVprri2o.jpg", + "backdropPath": "/egdbcY7bMUCBSXVkcDASB6gCc2.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 47, + "popularity": 1.5223 + }, + { + "id": 65955, + "title": "This Art Club Has a Problem!", + "originalTitle": "この美術部には問題がある!", + "overview": "An art club in a certain middle school, and its members: Subaru Uchimaki, who is a genius at drawing faces, but only wants to draw the perfect 2D wife; Colette, a rich troublemaker who never stops making mischief; and the club president, who sleeps through sessions and collects sleeping aids. Mizuki Usami is the only person in the club who wants to do art club-like activities, and constantly struggles to do so.", + "posterPath": "/gCLhgNtu6rMWYAQIxMbgA47jWgW.jpg", + "backdropPath": "/jUqD8IsTrzfUufmmOVq99e8DiuA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2016-07-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 26, + "popularity": 1.5212 + }, + { + "id": 68136, + "title": "Mahou Shoujo Nante Mouiidesukara", + "originalTitle": "魔法少女なんてもういいですから。", + "overview": "Yuzuka Hanami is an average girl, with a few friends until one day she finds a strange creature named Miton digging through the garbage. Miton suspiciously tells Yuzuka that she has the makings of a magical girl. However, much to her dismay, when she transforms, Yuzuka is wearing a bathing suit.", + "posterPath": "/6AyrMs4D32ICN6nbiDMgIgg2gII.jpg", + "backdropPath": "/4VGk0j3xtCpg1E0hdXvW6694TcB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-01-12", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 8, + "popularity": 1.5201 + }, + { + "id": 88865, + "title": "Mobile Suit Gundam: The Origin - Advent of the Red Comet", + "originalTitle": "機動戦士ガンダム THE ORIGIN 前夜 赤い彗星", + "overview": "This is the story of how Char Aznable, the Red Comet, came to be. Zeon Zum Deikun suddenly dies, in the middle of declaring the Autonomous Republic of Munzo’s independence, and the republic falls into turmoil. His children, Casval and Artesia, escape to Earth while the House of Zabi rises to power. Living in secret, the siblings must find their place in a world preparing for war.", + "posterPath": "/kdt4G11wKDJBI8UFIFSxsm2PNb6.jpg", + "backdropPath": "/dQHIGYkSCYgmJgAAHr0QaBOoKDZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 10768, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "War & Politics", + "Drama" + ], + "releaseDate": "2019-04-29", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 11, + "popularity": 1.5191 + }, + { + "id": 45418, + "title": "Iron Man", + "originalTitle": "アイアンマン", + "overview": "When Tony Stark branches his company into Japan, he is opposed by the nefarious Zodiac organization. It's up to Stark's Iron Man to defeat the Zodiac, and defend Japan.", + "posterPath": "/zOTJT7JbzSrMBX2OCGPqUnkQA4y.jpg", + "backdropPath": "/zXM9V1MUbSYh7MCMtmbJbXwnbUX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-10-01", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 89, + "popularity": 1.5185 + }, + { + "id": 34838, + "title": "Sweet Blue Flowers", + "originalTitle": "青い花", + "overview": "Fumi Manjoume enters Kamakura's accelerated high school - Matsuoka All-Girls High School. While waiting at the Kamakura station on the day of her entrance ceremony, she runs into an old childhood friend whom she had not seen in 10 years: Akira Okudaira. As their friendship is rekindled and they start falling back into the rhythm of friends again, it starts a delicate love story...", + "posterPath": "/5kNmRZGQk1YlxDWwT0uVK8UqrC8.jpg", + "backdropPath": "/Ab1iaTfaLBpkBbiuWJriBzm273a.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2009-07-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.278, + "voteCount": 27, + "popularity": 1.5185 + }, + { + "id": 105044, + "title": "Heaven's Design Team", + "originalTitle": "天地創造デザイン部", + "overview": "I made the light, the water, and the earth below. Now it's time to make the life that dwells upon it. Actually... that sounds like a giant headache, so I'll contract it out! Heaven's Design Team is an agency that creates made-to-order life forms for their client, God. Why does this life form look like that? Why does this life form live this way? Watch the trials and successes of the designers and engineers forced to breathe life into God's absurd requests!", + "posterPath": "/pssa27KHi9GwQAn3BebhwoAlaIr.jpg", + "backdropPath": "/9SpwXvVWyGPjUBWvfDCjhUBjGiq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 15, + "popularity": 1.5181 + }, + { + "id": 22577, + "title": "Bokura ga ita", + "originalTitle": "僕等がいた", + "overview": "Nanami Takahashi is a high school student entering her first year. Immediately on her first day however, she becomes the victim of a practical joke by the school's most popular guy, Motoharu Yano, who coincidentally also ends up in her class. While the two get off to a rocky start, they soon find themselves falling in love with one another and begin dating. But their relationship is marred by Yano's past which includes the death of Yano's previous girlfriend, Nana Yamamoto, and the betrayal surrounding her death. To make matters more complicated her younger sister, Yuri, is in the same class as Yano and Nanami. As Yano struggles to come to grips with Nana's death and his unresolved feelings for her, so too must Nanami learn to understand Yano if the two hope to continue their relationship with one another.", + "posterPath": "/duvWwPEO8vdGO1Y6iarPw4DScCM.jpg", + "backdropPath": "/rG2ekGICObDCEsxbZep9RxkFxrc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2006-07-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.778, + "voteCount": 18, + "popularity": 1.5176 + }, + { + "id": 34727, + "title": "Rental Magica", + "originalTitle": "レンタルマギカ", + "overview": "In a world where magical organizations - staffed by specialists wielding both Eastern and Western disciplines - vie for work, prestige and power. Destroying supernatural monsters... dispelling dark magic... It's all in a day's work for the mages of Astral.", + "posterPath": "/mR4KOg5ki92XHDvt0jBG5BM1BlH.jpg", + "backdropPath": "/kpPzvoMhW7RNSEoMMe1bgcitgzN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Mystery" + ], + "releaseDate": "2007-10-08", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 9, + "popularity": 1.5152 + }, + { + "id": 74191, + "title": "Wake Up, Girls!", + "originalTitle": "Wake Up, Girls!", + "overview": "The gateway to Idol stardom might have opened for the newly formed singing group Wake Up, Girls, but the path to fame is full of perils and pitfalls. And for Mayu, Airi, Minami, Yoshino, Nanami, Kaya and Miyu, it's going to be especially difficult knowing who to trust, as their manager Matsuda's lack of experience could give other, less scrupulous, individuals a chance to take advantage.", + "posterPath": "/wTsQZNDcMxrmHwN2TGa0pQJKQGt.jpg", + "backdropPath": "/oykJJVnMozUEAhFbWK0LfSMAHU2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-01-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 9, + "popularity": 1.5148 + }, + { + "id": 43142, + "title": "Mobile Suit Gundam SEED C.E. 73: Stargazer", + "originalTitle": "机动戦士ガンダムSEED C.E.73 STARGAZER", + "overview": "Mobile Suit Gundam SEED C.E.73 -STARGAZER- is a side story to the anime TV series, Mobile Suit Gundam SEED Destiny. As of July 2006, it is being streamed on Bandai Channel as an original net animation. The show is directed by Susumu Nishizawa and written by Shigeru Morita, both staff members of Gundam SEED Destiny.\n\nThe series consists of three episodes, each running at 15-minutes long. The web broadcast began in July 2006, with a new episode showing monthly. A DVD containing all three episodes as well as the two 5-minute long Mobile Suit Gundam SEED Astray animated shorts was released on November 24, 2006. This DVD also contained a different ending for Stage 3 in which several scenes after the Phantom Pain attack are shown.\n\nA manga adaptation of the series has been released in 2007. Authored by Naoki Moriya, it features an epilogue reveals the previously uncertain fate of Selene and Sven as they are shown to be alive and mostly unharmed from their ordeal. Sven joins the DSSD.", + "posterPath": "/fSgCjcw6tOMQy1Sghj3A7YV3LIi.jpg", + "backdropPath": "/reolfY7OnIxxRhiPMgndH6RLK6B.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10765, + 10759, + 10768 + ], + "genres": [ + "Drama", + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "War & Politics" + ], + "releaseDate": "2006-07-14", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 11, + "popularity": 1.5122 + }, + { + "id": 91848, + "title": "number24", + "originalTitle": "number24", + "overview": "Natsusa Yuzuki entered university expecting to be the rugby club's ace, but he can no longer play rugby due to certain circumstances. Ibuki Ueoka is a senior who also quit playing rugby. There is also Yasunari Tsuru, Natsusa's junior who finds him disagreeable. On the other hand, another junior, Yuu Mashiro looks up to Natsusa and follows in his footsteps. Last, there is Seiichirou Shingyouji, Natsusa's childhood best friend. This is an original rugby anime of former teammates who fight together in matches of Kansai's university rugby league.", + "posterPath": "/yQEZnhGsHZEl3ZclXjLAxFeLGqe.jpg", + "backdropPath": "/rzUFo6rVe7tiqZPrW8N3dJdpmEd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2020-01-08", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.231, + "voteCount": 13, + "popularity": 1.512 + }, + { + "id": 103944, + "title": "Drug Store in Another World: The Slow Life of a Cheat Pharmacist", + "originalTitle": "チート薬師のスローライフ~異世界に作ろうドラッグストア~", + "overview": "Reiji Kirio was a corporate wage slave, who did nothing but work all day, every day. On a typical day of walking to work with a hollow look on his face, he suddenly found himself in the forest of another world. \"Oh, this must be one of those isekai reincarnations people keep talking about.\" The two skills he has are \"Appraise\" and \"Drug Discovery.\" Those don't sound too impressive... well, whatever. Except these turn out to be particularly overpowered skills! And so, a story about following the slow life philosophy while running a drugstore in another world begins.", + "posterPath": "/37ENGudqofAjZzI884xPMM9umn4.jpg", + "backdropPath": "/nI6iyRv7iLK4cgPQA58XdPI1MF2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.538, + "voteCount": 39, + "popularity": 1.5116 + }, + { + "id": 37100, + "title": "The Hill Dyed Rose Madder", + "originalTitle": "あかね色に染まる坂", + "overview": "Junichi Nagase was a real delinquent in middle school, one nasty enough that he earned the nickame \"Geno Killer,\" and it's by this less than flattering epithet that Yuuhi Katagiri first comes to know him when he rescues her from two thugs one evening. Needless to say, both are stunned when not only does Yuuhi find herself transferred into the same high school class as \"the Killer,\" but that shock grows into outright stupefaction when Yuuhi shows up at Junichi's house with the mind-blowing announcement that she's supposed to move in with him! It seems that they're engaged, and since this is the first that Junichi and his younger sister Minato have first heard of the arranged marriage set up by their parents, it's an idea that's going to take a little getting used to. Get ready for ties that bind and gag as bad boy and good girl collide cohabitationally while the entire school gets to watch!", + "posterPath": "/14wvZEk52mRSiV6sK0ohaAzhtEk.jpg", + "backdropPath": "/85FgYTtX3ccV4eE2swiV0tNeqix.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Comedy" + ], + "releaseDate": "2008-10-01", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 39, + "popularity": 1.5106 + }, + { + "id": 96371, + "title": "Sakura Wars the Animation", + "originalTitle": "新サクラ大戦 the Animation", + "overview": "Ten years after the demon war, the new Imperial Combat Revue’s Flower Division is assigned a new captain, Seijuro Kamiyama. Now, Sakura and the rest of the troupe must adjust to the change, face a demon invasion, and prepare for an upcoming tournament. They’ll have to juggle all this while keeping up with their training and continuing to put on shows at their home, the Imperial Theater.", + "posterPath": "/zQSP2rUuhSTs0eXF4V4Rqkxzl4T.jpg", + "backdropPath": "/ndGMPeBGgfbHW5GsEx2SyNrv3Wt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-03", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 11, + "popularity": 1.5103 + }, + { + "id": 22831, + "title": "Gunsmith Cats", + "originalTitle": "ガンスミスキャッツ", + "overview": "Rally Vincent knows her weapons well, while her partner Minne May Hopkins loves to play with explosives. The pair run a gun-shop illegally and one day Bill Collins of the ATF, blackmails Rally and Minnie May into working for the ATF. Little do they know, that they are getting involved in a mission larger than they could imagine.", + "posterPath": "/nl0JH0b5JfJDaN1KuS0YbSfOxPX.jpg", + "backdropPath": "/uwgtqwQ1gJkniMPHEK3ib4zXS63.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1995-11-01", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 14, + "popularity": 1.5091 + }, + { + "id": 16950, + "title": "Negima!? Magister Negi Magi", + "originalTitle": "ネギま!?", + "overview": "Wizard Negi Springfield may be a boy, but he has a man-sized job to do! Fresh from the Academy of Magic, Negi continues his training as an instructor at Mahora Academy in Japan. But before he can get his Master’s in magic, the 31 schoolgirls of Class 3-A are gonna keep him up all night cramming for a final exam in will power. Temptation aside, Negi has more on his syllabus than flirting and spells. Darkness is closing in, and Negi is gonna need help from his student bodies to drive the ghouls from their school. These girls want to prove that they’re best in class, and extra credit is available to the cuties that aren’t afraid of after hours phantom fighting – especially if it means more time with their favorite professor.", + "posterPath": "/9S2i3Ocbb7WGt94N2m64re5Sh8Q.jpg", + "backdropPath": "/vdoJh2xCQVEjbmb8Q3NwYFKFDr1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2006-10-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 16, + "popularity": 1.5065 + }, + { + "id": 130456, + "title": "My Master Has No Tail", + "originalTitle": "うちの師匠はしっぽがない", + "overview": "Mameda is a tanuki who was born in the wrong era - all she wants is to trick humans, but that age of tanuki shenanigans is over. But one woman, a rakugo master named Bunko, shows Mameda it's still possible to cast magic on humans...only with words, not illusions. Mameda is determined to become Bunko's apprentice, but can she convince the stoic master to take her on...?", + "posterPath": "/88ccdyBEYrel6rMQyAR9EbxFk06.jpg", + "backdropPath": "/buvtC33f53NogKdPIH7EeZlrn5w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-09-30", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 11, + "popularity": 1.505 + }, + { + "id": 245876, + "title": "Sorairo Utility", + "originalTitle": "空色ユーティリティ", + "overview": "High schooler Minami, ready to become the protagonist in her own story, runs away from school and finds golf at a driving range.", + "posterPath": "/urwkLwOCg1QBFc17wVB60Rbw5yF.jpg", + "backdropPath": "/1eWI1oR4LexG8PUMXVA1GAIHkKo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-01-04", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 7, + "popularity": 1.5046 + }, + { + "id": 76099, + "title": "Slow Start", + "originalTitle": "スロウスタート", + "overview": "Hana Ichinose is a normal 16-year-old high school student. However, there is something different about her: She enrolled in high school one year late! Her classmates are unaware of this, and Hana will have to work hard to catch up with everyone else.", + "posterPath": "/Apwvryh8vaN6KEdAcfdcw32ibJ.jpg", + "backdropPath": "/aO57GlKHOLTVut9rP1YcUYveUY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 10, + "popularity": 1.5044 + }, + { + "id": 236530, + "title": "How I Attended an All-Guy's Mixer", + "originalTitle": "合コンに行ったら女がいなかった話", + "overview": "Three guys meet three cute boys who are actually women in drag! They soon find themselves getting closer in unexpected ways.", + "posterPath": "/bikz9SIilfe4Pf2klDtwcwgQ6ff.jpg", + "backdropPath": "/53Zyazr2j7VXDljRUQMqiPu9hFr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-10-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.385, + "voteCount": 13, + "popularity": 1.5034 + }, + { + "id": 217512, + "title": "16bit Sensation: Another Layer", + "originalTitle": "16bitセンセーション ANOTHER LAYER", + "overview": "Konoha Akisato is an illustrator that loves beautiful girls and bishojo games. Her dream is to become a super-popular illustrator, so she is working hard at a bishojo game production company, but reality isn't that kind... With the golden age of social network games in full force, Konoha's company isn't doing well, and she works as a sub illustrator, spending her days painting the backs of random background characters.\n\nOne day, the owner of a game shop gives her a classic bishojo game. With all her excitement over the golden age of bishojo games, she opens the package to \"Dokyusei,\" and is enveloped by a bright light. Konoha then realizes that she just traveled back in time!\n\nShe ends up in the year 1992! It's the dawn of the bishojo game era! Konoha ends up working at a company called Alcohol Soft. Will she be able to think about, draw, and create all the beautiful girls she’s ever wanted?!\n\nA story about a girl and her overwhelming love for beautiful girls—\"Now, let's begin!\"", + "posterPath": "/zgjZsuLBwOGgUaIyLkpVPxl8Ii0.jpg", + "backdropPath": "/y6X0TZq0dV0vvXK1AKD6zzAByvi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-05", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 26, + "popularity": 1.5024 + }, + { + "id": 34738, + "title": "Amatsuki", + "originalTitle": "あまつき", + "overview": "Ordinary high school student, Rikugou Tokidoki, has to take supplementary History classes, to boost his failing grade, at a state-of-the-art museum. This museum allows the visitor to use high-tech virtual reality to reconstruct a realistic Edo of the Bakumatsu period. However, once the simulation begins, Tokidoki is attacked by a strange creature. After something happens to his left eye, he realizes that he is not wearing the VR goggles - it is no longer a simulation; he's trapped in the virtual world and has no way of getting back.", + "posterPath": "/nyZAQg9wofVugv1Lw5PJLghmXC7.jpg", + "backdropPath": "/e7yQ3Iv3tkZ1eftZFwdQuYYLA73.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2008-04-04", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 7, + "popularity": 1.5017 + }, + { + "id": 96042, + "title": "Skate-Leading Stars", + "originalTitle": "スケートリーディング☆スターズ", + "overview": "Kensei Maeshima quit figure skating a few years ago, but when his rival moves to the team sport of skate-leading, Kensei returns to the ice.", + "posterPath": "/fM79SzsBWtFrMBlUszjjfeTz2Oi.jpg", + "backdropPath": "/xBLmMc7b1alduvPe7U52nQaeBWK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 7, + "popularity": 1.5015 + }, + { + "id": 65957, + "title": "Battery", + "originalTitle": "バッテリー", + "overview": "Takumi Harada is an extremely gifted baseball pitcher. Upon entering junior high school, Takumi moves to a town situated in the mountains due to his father's job transfer. There, he meets a new classmate Go Nagakura, a catcher who is able to get Takumi's most powerful pitches. Takumi and Go both join the school's baseball team where they develop a firm friendship and grow as individuals through their battery.", + "posterPath": "/g97x8EbKyCcCgY64mL0enBouXfX.jpg", + "backdropPath": "/Hqpm62h1f51dyyy4dm3fwHbs7k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2016-07-15", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 1.5014 + }, + { + "id": 34138, + "title": "Monochrome Factor", + "originalTitle": "モノクローム・ファクター", + "overview": "The story revolves around high school student Akira Nikaido, a typical slacker living a normal life. That is, until he meets the mysterious Shirogane, a man who suddenly appears and tells him that they have a destiny together. When Akira hears this, he is shocked and doesn't believe a word of it. Aya, a friend of Akira, forgets something in the school one night, and asks Akira to help her and go find it. He agrees, and while there, he gets attacked by a shadow monster. Shirogane convinces him that the balance between the human world and the shadow world has been distorted and that Akira must become a \"shin\"- a creature of the shadow world- in order to help restore the balance.", + "posterPath": "/i88IrRPCd25jMMrFUtNlnUO6UY.jpg", + "backdropPath": "/n3WY6e0FBJwwcpzgAZ6PsbFLNK4.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2008-04-07", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 6, + "popularity": 1.5012 + }, + { + "id": 46338, + "title": "Silent Möbius", + "originalTitle": "サイレントメビウス", + "overview": "The year is 2023 and Alien Beings known as \"Lucifer Hawks\" have begun invading earth from another dimension. All that stands between them and the enslavement of the human race is the Attacked Mystification Police Department - a special division of the Tokyo Police staffed by women with amazing paranormal abilities.", + "posterPath": "/xgcWmpOAdbEjxzrtSN25v6mKCBb.jpg", + "backdropPath": "/x9VeHGJ1Hv7RbbPDAJsxsK0o2QS.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 16 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1998-04-07", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 1.5005 + }, + { + "id": 87465, + "title": "Cinderella Nine", + "originalTitle": "八月のシンデレラナイン", + "overview": "When Arihara Tsubasa enters Rigahama Municipal High School and learns that it has no baseball club, she starts up the Girls' Baseball Club on her own. Drawn to the club are girls who have never played baseball before, girls who once played it but quit, and girls who are constantly tackling great challenges. The Rigahama Girls' Baseball Club races through the trials of youth, periodically clashing and quarreling, but supporting each other all the way! And so begins the hottest summer the world has ever known...", + "posterPath": "/6L0gcYvfeXtAs45GlR1K638yUnj.jpg", + "backdropPath": "/khVnRBGdhZnlD51QqWmnqfj9I4X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 8, + "popularity": 1.5 + }, + { + "id": 34855, + "title": "Ristorante Paradiso", + "originalTitle": "リストランテ・パラディーゾ", + "overview": "When she was a child, Nicoletta was taken in by her grandmother so that her mother could remarry. Now grown up, she leaves everything in the countryside behind to visit her mother and her mother's second husband, a ristorante owner. To her surprise, her stepfather did not know his wife had a daughter! Delicious food and dreamy gentlemen await at the ristorante, casetta dell'orso. For everyone who works there, a tender connection to the hearts of each visitor is spun, and the curtain raises on a story about these first-rate Italian gentlemen in spectacles.", + "posterPath": "/vB0geaRyL3Or4ereDl1VoJOxN9G.jpg", + "backdropPath": "/tBwSh6XbxjE9LQzFNsKooMSrahD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2009-04-09", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.714, + "voteCount": 7, + "popularity": 1.4982 + }, + { + "id": 71999, + "title": "Battle Angel", + "originalTitle": "銃夢 Gunnm", + "overview": "Doc Ido, a doctor and mechanic who lives and works in the postapocalyptic \"Scrapyard\", finds the remains of a female cyborg in a junk heap.\n\nAfter he revives and rebuilds her, the amnesiac \"Gally\" begins a life for herself in a world where every day can bring a new fight.", + "posterPath": "/w8wxHzbVzd6Qcq3qectKbkC5HYf.jpg", + "backdropPath": "/c7URdp095eLspLjEqR57w4mIvJc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1993-06-21", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 20, + "popularity": 1.4967 + }, + { + "id": 42407, + "title": "Whispered Words", + "originalTitle": "ささめきこと", + "overview": "Murasame Sumika is popular in the high school for her excellence in the marks and sports. However, she has a secret: she is in love with her classmate Kazama Ushio, but she hasn't noticed Sumika's feelings.\n\nOn the other hand Ushio also has a liking to the love between girls but she only shows any interest in cutesy girls. Sumika, a card-carrying badass who helps run her family's dojo, does not fit this bill even a little. Cue angst, as she is forced to watch from the sidelines as Ushio falls for girl after girl, none of them her. Ushio is always eager to share news about her latest crush. With the duo's knack for attracting trouble, it looks like Sumika's trials have only just begun.", + "posterPath": "/ilxH4QQFrxtTiU1XMF6moQftVW0.jpg", + "backdropPath": "/iNzAGkzYGvL3AJd5Wp9541Ckw2k.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2009-10-08", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.636, + "voteCount": 22, + "popularity": 1.496 + }, + { + "id": 35554, + "title": "Zipang", + "originalTitle": "ジパング", + "overview": "Based on the manga by Kaiji Kawaguchi. A modern detachment of the Japan Self-Defense Forces finds itself transported back in time to 1942. The JSDF force must decide whether or not to change the course of history by involving itself in WWII.", + "posterPath": "/8rLfrkhxG91Q659gD7m1jDqKeKv.jpg", + "backdropPath": "/xvpgFru5yt0hcvInCQQAdyNN5VI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2004-10-07", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 9, + "popularity": 1.4955 + }, + { + "id": 93845, + "title": "Blessing of the Campanella", + "originalTitle": "祝福のカンパネラ", + "overview": "In a busy trade city, item engineer Leicester Maycraft’s guild of adventurers—Oasis—gathers to watch a meteor shower. After one of the falling stars crashes into the cathedral, Maycraft discovers a sleeping girl who carries a mysterious message. When she wakes up—his life takes an adventurous turn!", + "posterPath": "/jUSdBrEMHmYRhEMNOvWnMA4K7BI.jpg", + "backdropPath": "/hh2l6H6F3mdw84cqBPyI9zhWGsJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2010-07-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 6, + "popularity": 1.4952 + }, + { + "id": 116907, + "title": "Violence Jack", + "originalTitle": "バイオレンスジャック", + "overview": "After a devastating natural disaster, the Kanto region in Japan is now a wasteland of lawlessness, where the weak are playthings of the strong. Ruled with an iron fist by the Slum King, the people of Kanto have no hope left to them, living at the whims of raiders and bandits. In this hellish world, there is only one man with the power to stand up for the powerless, and his name alone strikes terror into evil hearts -- Violence Jack! Whether he’s saving women from sex camps, protecting the models of Zone C from those who covet their beauty, or exterminating a biker gang bent on destruction; if you oppress the weak, the only thing you can look forward to is a swift death from Jack’s knife!", + "posterPath": "/cNjyoS0jGCtqvtURw36qtdlXoaK.jpg", + "backdropPath": "/o5xMDyXB9yPAn3TMmQ71LYEd7FQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80 + ], + "genres": [ + "Animation", + "Crime" + ], + "releaseDate": "1986-06-05", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 9, + "popularity": 1.4931 + }, + { + "id": 66987, + "title": "Brotherhood: Final Fantasy XV", + "originalTitle": "ブラザーフッド ファイナルファンタジーXV", + "overview": "A story set alongside the video game Final Fantasy XV, starring one of its main characters, Noctis, and his friends.", + "posterPath": "/oBnVTXHvlVXpfHE5Lp0tzNxMDwf.jpg", + "backdropPath": "/6mCyW0xDmM67CWApKVWFEVcsDgJ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-03-30", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 50, + "popularity": 1.4923 + }, + { + "id": 42833, + "title": "Intrigue in the Bakumatsu – Irohanihoheto", + "originalTitle": "幕末機関説 いろはにほへと", + "overview": "The Shogunate is in its final years, and war is fast approaching. When Yojiro Akizuki, a dark and mysterious mercenary, nears something supernatural with some kind of importance to him, the ornament on the end of his sword hilt waves in its direction, his eyes glow mysteriously, and he is driven to go after it. He comes across a traveling theater group who is out for revenge for the killing of the parents of the group's leader, and whose mysterious playwright likes to secretly help along events of history. Yojiro joins them to lend them his skill against their enemies, while dark conspiracy continues to follow behind him.", + "posterPath": "/nmqOcWwY3mxPcyNsIlHxH9UsiP8.jpg", + "backdropPath": "/eSf2moBoE4YdX7AgKLpZXamPkrW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2006-10-06", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 8, + "popularity": 1.4913 + }, + { + "id": 46314, + "title": "Zombie-Loan", + "originalTitle": "ゾンビローン", + "overview": "Based on the manga by PEACH-PIT, serialised in G-Fantasy. When a human is marked to die, a faint gray line that is invisible to most appears around their neck. As time passes, that ring becomes darker and darker, until it is eventually black, and that person dies. Kita Michiru has an unusual gift - she posses \"Shinigami eyes,\" which allow her to see these rings. When Michiru notices that two of the boys in her Class, Akatsuki Chika and Tachibana Shito not only have rings, but that they`re jet black, they reveal to her that the were supposed to die in a tragic accident six months ago. With the help of the Zombie Loan loan office, they were given a second chance at life, should they be able to pay for their debt by doing the work of Shinigami and killing malicious zombies. They petition Michiru to assist them in their efforts, and she finds her everyday life changing dramatically.", + "posterPath": "/9A8cVFEYvO1OwrGjezunFMc5o66.jpg", + "backdropPath": "/sMfNR2TXb0ECIh7y6IDLorPOfND.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 18, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "2007-07-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.722, + "voteCount": 9, + "popularity": 1.4912 + }, + { + "id": 202770, + "title": "Smile of the Arsnotoria the Animation", + "originalTitle": "咲う アルスノトリア すんっ!", + "overview": "Here in this magic academy city of Ashram, where everyone is required to live in dormitories, a close-knit group of girls known as “Pentagrams” pursue their studies, including training in manners and magic, to become “true ladies.”\n\nArsnotoria, one of the students in Ashram, lives in Dorm 5 and is always with her dormmate friends: Mel, who’s the life of the party, Petit Albert, who’s quiet and does things at her own pace, Picatrix, who wants to be the class president, and Abramelin, who’s always cool. They take classes and work on their school duties together, and they throw tea parties after school in “that room”…", + "posterPath": "/ye8FMo4GmsfkN1f1CS0UUYFAOzR.jpg", + "backdropPath": "/n4Z9I4caIhTPd6MVvNVxfADvJPR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-06", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 4.727, + "voteCount": 11, + "popularity": 1.4909 + }, + { + "id": 87476, + "title": "Mr. Nobunaga's Young Bride", + "originalTitle": "ノブナガ先生の幼な妻", + "overview": "Nobunaga was a teacher who was waiting for that kind of dating sim event to happen in real life. One day, a 14 year old girl named Kicho appears in front of him, saying that she's his wife?! Apparently she came from the Warring States era and seems to have mistaken Nobunaga for the Oda Nobunaga and tells him that she wants to have his children. An age-gap love comedy featuring a teacher with a dating sims brain and a princess with a warring states era brain!!", + "posterPath": "/byIhpjSgkstYINYRd1D7cPkYS08.jpg", + "backdropPath": "/x7RriD6B7KBxvsPAICtbwKzh8TJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 90, + "popularity": 1.4902 + }, + { + "id": 89506, + "title": "The Brave of Legend Da-Garn", + "originalTitle": "伝説の勇者ダ・ガーン", + "overview": "Seiji Takasugi obtained a jewel called \"Aurin\" which is the earth's alter ego and it has elected him to be the commander of eight brave robots. The Brave robots are sleeping in many parts of the world as \"Brave Stones\". However, they become super robots by fusing with modern people and machines once Seiji awakens them and they soon follow his instructions. Their enemy is Lord OhBoss who is an invader who aims at stealing the planet's energy with the aid of his subordinates that Da-Garn and the other brave robots must stop in order to save the world.", + "posterPath": "/w7lb8O67wDt1WInNaxWu9AJiQPN.jpg", + "backdropPath": "/7iJkM9BoiVpomUqKveFFsSXrWp2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-02-08", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 6, + "popularity": 1.4892 + }, + { + "id": 26045, + "title": "Blue Drop", + "originalTitle": "BLUE DROP ~天使達の戯曲~", + "overview": "Mari Wakatake has been living with her Grandmother for the past 5 years after a tragedy caused the loss of her home, friends and family, as well as her memories. Fearing for her future, her Grandmother admits her into Kaihou Academy, for her to make friends, instead of home studying. Although reluctant to go, she does and meets Hagino Sekonji. At first appearance, this girl appears like a normal student but inside her lies a deep secret that relates to the tragedy of 5 years ago.", + "posterPath": "/xb2Zbo3O5rciDApvvDeiCRthDKr.jpg", + "backdropPath": "/wCATYQyQGwoeY5KNKs0TL1H0w3r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-10-02", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 8, + "popularity": 1.4887 + }, + { + "id": 57778, + "title": "Red Data Girl", + "originalTitle": "RDG レッドデータガール", + "overview": "Izumiko Suzuhara (15) was born and raised at Tamakura Shrine, and always destroys any electrical device she touches. She decides to try living in the city, and enrolls in Houjou High School in Tokyo. With her are her guardians son and Izumiko's childhood friend Miyuki Sagara. While she's there, an entity called \"Himegami\" appears. She learns she is something called a \"kami\" a vessel for a shinto spirit, while Miyuki is a \"yamabushi\", a warrior meant to protect the \"kami.\"", + "posterPath": "/kYq76MlEark6BQoU3BRKaJwOpl3.jpg", + "backdropPath": "/nzmxsZpd2jVke0jeAmCwu9O9iup.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-04-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 13, + "popularity": 1.4869 + }, + { + "id": 122827, + "title": "Getter Robo Arc", + "originalTitle": "ゲッターロボ アーク", + "overview": "Taking place several years after Getter Robo Go, Earth is now a post-apocalyptic world. Hayato, now an aging scientist, has completed Professor Saotome's masterpiece, Getter Robo Arc. Piloting it are Ryoma's son Takuma, the human-dinosaur Kamui, and the younger brother of Tayel, Baku. Alongside the reformed Dinosaur Empire, they fight the insectoid Andromeda Flow Country attacking from across time and space.", + "posterPath": "/3pGB810uRe46w97UeQP7eob8NXp.jpg", + "backdropPath": "/r6lkQxjpfdHJAlfBirs9yerLonn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 6, + "popularity": 1.4863 + }, + { + "id": 77175, + "title": "Soni-Ani: Super Sonico The Animation", + "originalTitle": "そにアニ -SUPER SONICO THE ANIMATION-", + "overview": "\"Super Sonico\" debuted as Nitro+'s live mascot girl, and her world will be brought to life in the anime, \"SoniAni - SUPER SONICO THE ANIMATION -\"!", + "posterPath": "/dOPrKofNEryFCTuJ5Zl61wfMyHi.jpg", + "backdropPath": "/gtBlMaiFnD3iYZRmkcWgFRYXJFP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 22, + "popularity": 1.4845 + }, + { + "id": 34755, + "title": "Astro Fighter Sunred", + "originalTitle": "天体戦士サンレッド", + "overview": "Astro Fighter Sunred is a Japanese manga created by Makoto Kubota. It started serialization on Square Enix's seinen manga magazine Young Gangan on August 25, 2005. An anime adaptation produced by AIC A.S.T.A. aired from October 3, 2008 to March 27, 2009 in Japan. The second season of the anime started airing on October 3, 2009. Each manga chapter and anime episode is referred to as a FIGHT.", + "posterPath": "/iFH1tkrw8kb3ZhVHnBWBU2Xbg2O.jpg", + "backdropPath": "/vk22mRjiEXWSEFrQEKRviKlSi0J.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2008-10-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 8, + "popularity": 1.4836 + }, + { + "id": 27885, + "title": "Sakura Wars", + "originalTitle": "サクラ大戦", + "overview": "At the beginning of 1900's, Sakura Shinguji received the mission of defending imperial capital Tokyo and came from Sendai to Tokyo. But, the post which she was assigned was the floral unit of the popular opera group at that time. She tries to become familiar with her new companions while she is perplexed as to what the relationship is between the fight and the opera group. But...", + "posterPath": "/u9zKd1rMK4uZLw0kiV0BaqDB8q1.jpg", + "backdropPath": "/w5saeYxA80eO4wh1ADWob6753ic.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2000-04-08", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 10, + "popularity": 1.4829 + }, + { + "id": 80670, + "title": "The Master of Ragnarok & Blesser of Einherjar", + "originalTitle": "百錬の覇王と聖約の戦乙女", + "overview": "Yuuto Suoh gets more than he bargained for when he joins his childhood friend Mitsuki Shimoya in testing out an urban legend. When he uses his phone to take a picture of himself with the local shrine's divine mirror, he is whisked off into another world – one heavily steeped in the lore of the old Norse myths. Using his knowledge gained from school and from his solar-powered smartphone, he has the chance to bring the Wolf Clan, the same people who cared for him, to prominence, all while earning the adoration of a group of magic-wielding warrior maidens known as the Einherjar.", + "posterPath": "/OVaM55ub5iIEZxLzGdOvFnhk3O.jpg", + "backdropPath": "/qczivxLT0a79usrpb9xKlXLuPeO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-07-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 4.824, + "voteCount": 34, + "popularity": 1.4825 + }, + { + "id": 95346, + "title": "Hatena Illusion", + "originalTitle": "はてな☆イリュージョン", + "overview": "Years ago, many magical \"Artifacts\" were stolen and scattered throughout the world. They fell into the hands of people who were not supposed to know of their existence. The Hoshisato family of magicians has special access to the Artifacts, and they take it upon themselves to return them to their rightful place.\n\nDespite her inexperience, Kana wishes to aid her parents, doing her best to improve. Meanwhile, her childhood friend Makoto has come to their mansion to study magic under her father's tutelage. Hatena is excited to see her friend again, only to be utterly disappointed when the person she thought to be a girl all these years turns out to be a boy.\n\nBefore long, Makoto comes to know of the Artifacts. Unfazed, he continues to strive to fulfill his promises and stay true to why he learns magic - to ease the sadness of people around him and, most importantly, to become a person worthy of being Hatena's partner.", + "posterPath": "/qrvwYey5VUAiYW1jhkv4q85wj40.jpg", + "backdropPath": "/cz7kzp4jfWh3Ac4K8GztqKaxX8j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 7, + "popularity": 1.4821 + }, + { + "id": 27067, + "title": "Soul Hunter", + "originalTitle": "仙界伝 封神演義", + "overview": "Thousands of years ago, it was a time of witchcraft and dark magic. An evil sorceress has bewitched the emperor of the mighty dynasty and he has become a mindless puppet. The country is in shambles and evil spirits lurk everywhere. The human world is on the verge of utter destruction. A bold mission is planned by the Confederation of the Immortal Masters. They send a young master wizard to hung down the villains and evil warlocks in the devastated lands.", + "posterPath": "/dcdYJ0rQ8P2WyeWmj7E6073sFq4.jpg", + "backdropPath": "/rukmA3rGSwYRgvQZ4Vzd5tLRBiO.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 35, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Comedy", + "Animation" + ], + "releaseDate": "1999-07-03", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.571, + "voteCount": 7, + "popularity": 1.4818 + }, + { + "id": 42409, + "title": "Chu-Bra!!", + "originalTitle": "ちゅーぶら!!", + "overview": "The story revolves around Nayu Hayama, who embarrasses herself on the first day of middle school by accidentally showing her adult panties. As two other students, Yako Jingūji and Haruka Shiraishi, hear rumors of her engaging in \"enjo kōsai\", or compensated dating (which often is viewed as being close to or the same as prostitution), they investigate. They soon learn that Nayu is an 'underwear monitor' who tests new underwear products, and has great insight on what underwear people should wear. Nayu hopes to help everyone get through the vital stage of their life by opening an underwear club.", + "posterPath": "/kohcTdLivBh53qJ8OLifcUta1np.jpg", + "backdropPath": "/dnIdH4B7RSbk5vmsEnFIegR0DKS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-01-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 13, + "popularity": 1.4794 + }, + { + "id": 44741, + "title": "Combattler V", + "originalTitle": "超電磁ロボ コンバトラーV", + "overview": "Earth is under attack by the ruthless Campbellian army, and humanity's only hope is five plucky youths. Recruited from all corners of Japan, these young heroes each come with their own specialty, as well as their own priorities... but if they want to save the planet, they'll have to set aside their squabbles (and egos) and unite their hearts. It's the only way to form the invincible robot, Combattler V!", + "posterPath": "/1llRZXpjwVwn3Lgma6qN8hmZUbl.jpg", + "backdropPath": "/7BhXQX6mflX3B3ODAPDGm53WgbT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1976-04-17", + "releaseYear": "1976", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 1.4788 + }, + { + "id": 82864, + "title": "UzaMaid!", + "originalTitle": "うちのメイドがウザすぎる!", + "overview": "Misha is a little girl who lost her mother at an early age, and now lives with her father. Her father employs a maid named Tsubame, who was a former Self-Defense Force official, and is also a lolicon.", + "posterPath": "/cLbPjLiKeszHq66FzdpT5dqdsav.jpg", + "backdropPath": "/5gaVTN4N8mrvZLLx4QqP5BgEKOT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 14, + "popularity": 1.4783 + }, + { + "id": 273051, + "title": "Babanba Banban Vampire", + "originalTitle": "ババンババンバンバンパイア", + "overview": "When 15-year-old Rihito falls in love, an ancient vampire who craves 18-year-old virgin blood must protect the teen's virginity at all costs.", + "posterPath": "/78lgjWEb89leZX5FHmlLCblkDKM.jpg", + "backdropPath": "/hsc1ty2zhCRGowoDNu0zCrxwdIc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2025-01-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 22, + "popularity": 1.4773 + }, + { + "id": 232865, + "title": "SHAMAN KING FLOWERS", + "originalTitle": "SHAMAN KING FLOWERS", + "overview": "Asakura Hana finds that being the son of Asakura You & Anna isn't all it's cracked up to be, and his boredom has him itching for any kind of excitement. But when a fight comes straight to his doorstep, it's from a place he least expects—his own family? The battle for Asakura supremacy begins!", + "posterPath": "/rMViGZqSsj58BEWdGkYWvgKF9Mm.jpg", + "backdropPath": "/eD0eKzDkdvoThLvqaS0Z7RGtC8L.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2024-01-10", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.87, + "voteCount": 27, + "popularity": 1.4758 + }, + { + "id": 64139, + "title": "Garo: Crimson Moon", + "originalTitle": "牙狼 –紅蓮ノ月", + "overview": "Heian-kyō, capital and the center of elegant, aristocratic culture, is heavily guarded by a spiritual force field -- or so it seems. In reality, onmyōji (court magi who create the spiritual force field) can only defend the palace located in the northern part of the city; in downtown, monsters known as \"horror\" that feast upon human souls roam after sunset. There are, however, a group of heroes protecting commoners from \"horrors\" in darkness.", + "posterPath": "/cmBQH3VDPMHrFGuNHXDEJgAawfW.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 8, + "popularity": 1.4749 + }, + { + "id": 42881, + "title": "Tenchi Muyo! GXP", + "originalTitle": "天地無用!GXP", + "overview": "Seina is unlucky, so unlucky that when he stumbles upon a recruiter looking for his senpai Tenchi he gets taken instead. Forced into the Galaxy police, his luck begins to change. A natural to randomly jumping near pirates, he is assigned his own decoy to draw out pirates. His luck brings him into the lives of four women who have a habit of cancelling out his bad luck, turning it into good. Armed with this luck, they pilot the most powerful ships in the Tenchi Universe to defeat the Barta pirates. Now the only uncertainty is whether the sexy Kaunaq, a former model turned GXP officer, sturdy Kiriko, who has known Seina for years, the mysterious Ryoko, a former pirate named after the legendary one, or the childish Neiju, a powerful witch, will win Seina.", + "posterPath": "/bOvUNvTnASUNM8SjZAEorNZ5nwi.jpg", + "backdropPath": "/9tfG0WM9azqdOlJEu46DwONA1Ba.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2002-04-03", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 14, + "popularity": 1.4738 + }, + { + "id": 19855, + "title": "Blue Gender", + "originalTitle": "BLUE GENDER", + "overview": "In the 2030s Earth has been overrun by the Blue, which are mutated insect-like creatures that kill and harvest humans for food. Most of the surviving human race has moved to Second Earth, a huge spaceship that orbits the planet. Yuji and Marlene must work together to reach Second Earth and fight against the Blue.", + "posterPath": "/e1fkIjgSiFvW3edqtG9sSaurcFI.jpg", + "backdropPath": "/iewxJpcc0ecumxqwNGSYQ49EL1X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1999-10-08", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 23, + "popularity": 1.4736 + }, + { + "id": 35184, + "title": "Windy Tales", + "originalTitle": "風人物語", + "overview": "While hanging out on the roof of her school, Nao Ueshima discovers a flock of flying cats. In her haste to snap a picture, Nao tumbles over the side of the building. But instead of plummeting to her doom, Nao is guided by an unseen force that allows her to land safely on her feet. Determined to unlock the secrets of the flying cats and the identity of her rescuer, Nao soon learns that not only is one of her teachers able to control the wind, but he can also teach others to control it, too!", + "posterPath": "/aTnEA0XRZ2l9JnFFlShsY4SEYR.jpg", + "backdropPath": "/xsAAjK5pVdSFlGcOzwKh7gNIu88.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-09-11", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 10, + "popularity": 1.473 + }, + { + "id": 282666, + "title": "GUILTY GEAR STRIVE: DUAL RULERS", + "originalTitle": "GUILTY GEAR STRIVE: DUAL RULERS", + "overview": "Sin Kiske, the forbidden child of a human and a magically crafted biological weapon called a Gear, lives in a world where magic has replaced science, and scars from the Gear rebellion remain. Attending his parents’ taboo-breaking wedding, he encounters a mysterious girl with deep hatred for Gears, and their fateful meeting threatens to upend the world once again.", + "posterPath": "/tpRogsdGkXhog9q80I0XrOuEA4K.jpg", + "backdropPath": "/7EDiFma8CrnbT9F05xNd50CZZrr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2025-04-05", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 8, + "popularity": 1.4716 + }, + { + "id": 72507, + "title": "Clean Freak! Aoyama-kun", + "originalTitle": "潔癖男子!青山くん", + "overview": "He is charming, cool, athletic, a good cook, but more importantly, he's a clean freak. Aoyama is idolized and respected by everyone, but they can only admire him from afar due to his mysophobia. Despite that, he plays soccer—a rather dirty sport!\n\nAs the playmaker for Fujimi High School's soccer club, Aoyama avoids physical contact at all cost and cleanly dribbles toward victory. However, the path to Nationals will not be easy for Fujimi's underdog team. But alongside striker Kaoru Zaizen, Aoyama will show everyone that even as a clean freak, there are things he's willing to get dirty for.", + "posterPath": "/dN6aCJdkJHk5Sj81befvlGQcDVP.jpg", + "backdropPath": "/bmZVQJDprVZ98CF2VKchuxJWYqi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-02", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 20, + "popularity": 1.4713 + }, + { + "id": 34161, + "title": "Seven of Seven", + "originalTitle": "七人のナナ", + "overview": "Nana Suzuki winds up being split into seven copies of herself. Besides the original Nana, there's also a smart Nana, a happy Nana, an angry Nana, a sensitive Nana, a sad Nana, and a slow Nana.", + "posterPath": "/pYLS84odmAvvLt19EAyLvjdWxIl.jpg", + "backdropPath": "/AfhmOdKGhLRebi3Z3aGEgf0Wxcp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2002-01-10", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 5, + "popularity": 1.4711 + }, + { + "id": 72511, + "title": "7O3X Fastest Finger First", + "originalTitle": "ナナマル サンバツ", + "overview": "As soon as he entered high school, the first year student Koshiyama Shiki was invited to the mysterious Quiz Study Group led by his senpai. What will Shiki run into when being dragged along by his class mate Mari into the dazzling world of competitive quizzes?!", + "posterPath": "/qNyNSLQUS3D81iu00PmJaYTvkiW.jpg", + "backdropPath": "/s1Fqzoi6PgESKXOsT8r5T9ggOcS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 1.4708 + }, + { + "id": 12352, + "title": "Divergence Eve", + "originalTitle": "ダイバージェンス・イヴ", + "overview": "In the 24th Century, Intergalactic Space Travel has become a reality. One of the first outposts in the far reaches of space is Watcher's Nest - an inflation hole drive portal - which has recently come under attack by a mysterious force known simply as Ghoul... A group of young female cadets assigned to the portal are unexpectedly thrown into a hornet's nest of trouble as they finalize their training to become an elite pilot in the Seraphim Squadron.", + "posterPath": "/vAWqCiFJHGT1nrdxUk3ganRDUjp.jpg", + "backdropPath": "/it6ct1t65nLf9Lc1dxcjDSdtwkt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-07-02", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 6, + "popularity": 1.4696 + }, + { + "id": 71376, + "title": "Hori-san and Miyamura-kun", + "originalTitle": "堀さんと宮村くん", + "overview": "Within everyone there exists a side preferably kept hidden, even from close friends. For the smart and popular Kyouko Hori, it’s the fact that she has to do all the housework and care for her little brother, Souta, because of her parents' busy work schedules. For the gentle Izumi Miyamura, whom everybody sees as an otaku, it's his nine hidden piercings and large body tattoo.\n\nSo what happens when they accidentally discover each other's hidden sides? Sharing parts of themselves that they couldn't with anyone else, strong bonds of friendship soon begin to form between Miyamura and Hori, as well as those around them. As their hidden personas start to dissipate, they slowly learn how to open up to others.", + "posterPath": "/oTiNcs7Rfu2AzfexlSNl7VTxHiM.jpg", + "backdropPath": "/3ztUIm3r1iCLiYv35AeNjTvli7m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-09-26", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 12, + "popularity": 1.4694 + }, + { + "id": 73005, + "title": "Terra Formars: Bugs-2", + "originalTitle": "テラフォーマーズ バグズ2号編", + "overview": "In the late 26th century, overpopulation on Earth is reaching the breaking point, and humanity must find new frontiers. The terraforming of Mars has taken centuries but is now complete. The colonization of Mars by humanity is an epoch-making event, but an unintended side effect of the terraforming process unleashes a horror no one could ever have imagined...", + "posterPath": "/xhNSKyHXCqDrdg4HI49hRG9DiSF.jpg", + "backdropPath": "/d3laJtPbrfbYbOJflIeAlTMa5ZQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-08-20", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 9, + "popularity": 1.4677 + }, + { + "id": 83022, + "title": "As Miss Beelzebub Likes It.", + "originalTitle": "ベルゼブブ嬢のお気に召すまま。", + "overview": "Banished from Heaven, Beelzebub rules over Pandemonium where former angels that turned into demons work. One day, Beelzebub gets a new attendant named Mullin. Beelzebub seems wise and cool... but she's actually a girl that loves fluffy things! Mullin is shocked at this revelation but still tries to get closer to Beelzebub every day. They are surrounded by various other unique and clumsy demons, and in this story might be about the demons giving a certain emotion a name... maybe.", + "posterPath": "/cF4Q2Q0Q5XR9AV0gpnRzsq9mjgR.jpg", + "backdropPath": "/r8QEfgBhQIxuIHKsv7boL7HI74m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 14, + "popularity": 1.4671 + }, + { + "id": 80823, + "title": "Lord of Vermilion: The Crimson King", + "originalTitle": "ロード オブ ヴァーミリオン 紅蓮の王", + "overview": "Tokyo, 2030. A high-frequency resonance is suddenly heard in a suburban area, and at the same time, the entire town is shrouded in a red mist. All living things that hear the sounds, human and animal alike, lose consciousness. The phenomenon is assumed to be an unidentified virus, so due to fear of a spreading epidemic, Tokyo is blocked off from the rest of the country. About six months later, all the people who had lost consciousness awaken as if nothing ever happened. However, strange incidents start happening on that same day, and the city becomes engulfed by a chain of cruel destinies.", + "posterPath": "/xbSXFgo7nfLWflG4wacQpyIxRgY.jpg", + "backdropPath": "/21FRVpan31r9RlF3Ycg9cOBq6fi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2018-07-14", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 5, + "popularity": 1.4655 + }, + { + "id": 45968, + "title": "Good Luck Girl!", + "originalTitle": "貧乏神が!", + "overview": "Ichiko unwittingly absorbs happiness energy from everyone around her. It’s up to the poverty god Momiji to end Ichiko’s positivity consumption and restore the world’s balance.", + "posterPath": "/s3Ldkrr6wNOwhGW8qR6UKIECKzx.jpg", + "backdropPath": "/fvmP260GyJyejGXvoSGHmTAnDv0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-07-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 33, + "popularity": 1.464 + }, + { + "id": 213233, + "title": "AYAKA", + "originalTitle": "AYAKA ‐あやか‐", + "overview": "The story follows Yukito Yanagi, an orphan who one day encounters an eccentric disciple of his father's. The strange man takes him to his birthplace on Ayakajima, made up of seven islands where mysterious beings called \"Mitama\" and dragons are rumored to reside. There, Yukito meets his father's two other disciples, who protect the harmony of Ayakajima… which soon threatens to collapse.", + "posterPath": "/8v6p3nkSVW5p1UIpoaTIGHCz6hO.jpg", + "backdropPath": "/g5o5GiRepRY5Mfaa05aaV29Ma2n.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 16, + "popularity": 1.4639 + }, + { + "id": 214592, + "title": "GAMERA -Rebirth-", + "originalTitle": "GAMERA -Rebirth-", + "overview": "In the summer of 1989, four kids in Tokyo witness the emergence of the turtle kaiju Gamera, who bravely stands up against giant human-eating monsters.", + "posterPath": "/152TW3nHykWjpinW7WVUSYQQD8y.jpg", + "backdropPath": "/d0KslrOuQk6asXCGxzbCa8A3dZU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-09-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 44, + "popularity": 1.4637 + }, + { + "id": 42930, + "title": "Prétear", + "originalTitle": "新白雪姫伝説プリーティア", + "overview": "Prétear is the story of a girl, Himeno Awayuki, who must overcome her fears to become the White Prétear and protect the life essence on Earth called Leafe, with the help of the Leafe Knights, Hayate (wind), Sasame (sound), Kei (light), Go (fire), Mannen (ice), Hajime (water), and Shin (grass). In order for Himeno to fight off the Princess of Disaster and the demon larva, she must become one with one of the Leafe Knights in order for her to become Prétear. Will Himeno be confident enough in order to fulfill her destiny when the time comes?", + "posterPath": "/9cXgVjrfqwDqWO3Kz2SxoYt3Aoy.jpg", + "backdropPath": "/ogmsbPrpXX34UgBqNuxno7BwC0P.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2001-04-04", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 8, + "popularity": 1.4629 + }, + { + "id": 60682, + "title": "Macross Zero", + "originalTitle": "マクロス ゼロ", + "overview": "Taking place one year before the events of the original Macross series, Macross Zero chronicles the final days of the war between the U.N. Spacy and anti-U.N. factions. After being shot down by the anti-U.N.'s newest fighter plane, ace pilot Shin Kudo finds himself on the remote island of Mayan, where technology is almost non-existent. While Shin stays on the island to heal his wounds, the tranquility of the island is shattered by a battle that involves the UN's newest fighter - the VF-0.", + "posterPath": "/pGEIhZSwpy7nqQTIJu5nmGD66pc.jpg", + "backdropPath": "/jyxBfLODDUCB1OKbajMKuEi5uSR.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 10768 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2002-12-21", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 32, + "popularity": 1.4621 + }, + { + "id": 131681, + "title": "Fanfare of Adolescence", + "originalTitle": "群青のファンファーレ", + "overview": "The jockey curriculum at the Horse Racing School... A school with incredibly difficult entrance requirements, where only one out of every ten to twenty applicants is accepted, and students need not just book smarts, but also physical and athletic abilities. There, a boy who is a popular idol meets his real dream for the first time. A boy who grew up on an island dreams of spending his days racing with horses. A boy from England is unsure of the path his parents have chosen for him, but still chooses to follow his dreams. This is a story about boys who pursue their dream of becoming a jockey.", + "posterPath": "/r8P5k3DJPXsxYmEECGEB0gWdbnX.jpg", + "backdropPath": "/8r3SdNxKTLAQZVqSeru8i1wIDZ8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2022-04-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 8, + "popularity": 1.462 + }, + { + "id": 72452, + "title": "My Big Sister Arrived", + "originalTitle": "お姉ちゃんが来た", + "overview": "Tomoya’s father remarries to another woman, giving him a stepsister, Ichika. However Ichika is 17-years old and has completely fallen in love with her stepbrother who is only 13!! Families will collide in the most unusual fashion this season, in the new anime short: ONEE-CHAN GA KITA!", + "posterPath": "/jEDeJhl39ryjIKqVthmFN1ZJWFZ.jpg", + "backdropPath": "/996SZsMPTnm0JADuuUKO5fTEQg3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.9, + "voteCount": 18, + "popularity": 1.4604 + }, + { + "id": 43979, + "title": "Dino Mech Gaiking", + "originalTitle": "大空魔竜ガイキング", + "overview": "This story chronicles the crew of the transformable carrier Daikū Maryū and the Super Robot Gaiking's battle against an invading race of aliens called the Dark Horror Army, whose home planet is facing destruction by a black hole. Notable aspects of the series include the dinosaur-based designs of the Daikū Maryū and its support machines and the use of part of the carrier to form the main robot. The Gaiking robot is helmed by former baseball star Sanshiro Tsuwabuki, whose latent psychic powers make him the only one capable of piloting the giant robot.", + "posterPath": "/cFYefUBBP9PnuVZvQdWJ8312oW7.jpg", + "backdropPath": "/yz3HsJGO7CWwKwWtDbbMLdiunzW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1976-04-01", + "releaseYear": "1976", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 40, + "popularity": 1.4565 + }, + { + "id": 67882, + "title": "Pokémon Generations", + "originalTitle": "ポケモンジェネレーションズ", + "overview": "The miniseries revisits each generation of the Pokémon video game series to shed new light on some timeless moments. From the earliest days in the Kanto region to the splendor of the Kalos region, go behind the scenes and witness Pokémon history with new eyes!", + "posterPath": "/4aRQRC16sFFOzoPWQju0OKHJrd5.jpg", + "backdropPath": "/3bGiEf4xJED7XbeiSthS2zl0sMc.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2016-12-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.451, + "voteCount": 51, + "popularity": 1.4558 + }, + { + "id": 44595, + "title": "Kuttsukiboshi", + "originalTitle": "くっつきぼし", + "overview": "Kuttsukiboshi centers around two girls' \"risky\" summer vacation together. Kiiko is your normal girl, besides her secret of being able to move objects with her mind. When a new student named Aaya moves in, Kiiko starts to develop feelings toward her. The two will eventually then start their romantic relationship. Although everything seems fine, Kiiko does not know that Aaya has another secret, a secret that could ruin Kiiko's feelings and trust for Aaya.", + "posterPath": "/6Lcj7evUYaulijMpIqC3nnDRUnE.jpg", + "backdropPath": "/h71WTduvSOTl5f0K9kh7gvZGQZ8.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "2010-08-16", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 6, + "popularity": 1.4557 + }, + { + "id": 70594, + "title": "Alice & Zoroku", + "originalTitle": "アリスと蔵六", + "overview": "The story centers on a little girl called Sana, who is one of the children that holds the power of \"Alice's Dream,\" an ability that enables her to materialize anything she imagines. After escaping a lab where she was a test subject, Sana ends up in a normal world where she encounters an old man named Zouroku, but will he help her?", + "posterPath": "/aHYmjLTc5niV7uuTBmIz4oTrSx6.jpg", + "backdropPath": "/4OZwDoCjVLtwayU5voUuJuPSH36.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2017-04-02", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 30, + "popularity": 1.4553 + }, + { + "id": 88048, + "title": "The Ones Within", + "originalTitle": "ナカノヒトゲノム【実況中】", + "overview": "Iride Akatsuki and seven other charismatic game streamers wake up in the world of a mysterious free-to-play game called Naka no Hito Genome. Now they are competing in real-life games with life-or-death stakes, but clearing several game tasks could earn them 100 million lives.", + "posterPath": "/o5coas41QmNuFj3kInF33gMl1Vl.jpg", + "backdropPath": "/p2fo0eurXUgNALMBnyXMduXlsO9.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-07-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 9, + "popularity": 1.4551 + }, + { + "id": 87692, + "title": "Amazing Stranger", + "originalTitle": "超可動ガール1/6", + "overview": "Bouida Haruto, a hardcore otaku with no interest in 3D (real) women, once appreciated figures from afar, accepting that \"if you get into them, there's no turning back.\" However, when Nona, a character he loved from an anime called \"Girls→Planetary Investigation\" had a figure of her released, he ended up purchasing it. And then that night, the figure of Nona somehow came to life, and a couple-like lifestyle between man and toy began.", + "posterPath": "/pPxakEs1TP6JhclPceGxHBoE8Ey.jpg", + "backdropPath": "/yl4Ltag61cTv0XtwbwMpvzxt7ov.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 12, + "popularity": 1.4549 + }, + { + "id": 74163, + "title": "Recovery of an MMO Junkie", + "originalTitle": "ネト充のススメ", + "overview": "Moriko Morioka is a 30-year-old single NEET woman. After dropping out from reality, she has taken off in search for a fulfilling life and ended up in a net game or \"netoge.\" In the netoge world, she began her new life as a refreshing and handsome character named Hayashi. While starting out as a beginner, a pretty character named Lily reached out to help her. Meanwhile, in the real world, awaits a shocking encounter with a good-looking elite company employee, a mysterious blue-eyed blonde.", + "posterPath": "/kl3Jv6KPiIeveZNvh8jg0UerxRt.jpg", + "backdropPath": "/vJ8Fl3j3oNcuUglhAD0fJohBfgj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2017-10-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 135, + "popularity": 1.4549 + }, + { + "id": 92401, + "title": "Ex-Arm", + "originalTitle": "EX-ARM エクスアーム", + "overview": "2014: Akira Natsume seems to almost have a phobia of electrical devices while also being very good at diagnosing them. He resolves to change himself for the better and get a girlfriend like his older brother did. …But then Akira suddenly dies in an accident. 16 years later a special policewoman and her android partner retrieve and activate a highly advanced AI and superweapon called EX-ARM and put it into full control of their ship as a last resort. Turns out the AI is actually just Akira’s brain!", + "posterPath": "/cjsebpk01OZBGuVKhJm68oYxM4t.jpg", + "backdropPath": "/yqYcI8Es2egQIIcrujhrmT2P1Eu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Crime" + ], + "releaseDate": "2021-01-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 3.6, + "voteCount": 13, + "popularity": 1.4532 + }, + { + "id": 56783, + "title": "Student Council's Discretion", + "originalTitle": "生徒会の一存", + "overview": "At Hekiyo Academy, all but one of the Student Council members are elected via popularity contests, and those seats are filled by the school's most beautiful girls! The lines between fact and fiction disappear at the STUDENT COUNCIL'S DISCRETION!", + "posterPath": "/hIMIiuE2cN3AUlxYVDh5eq07jqM.jpg", + "backdropPath": "/q7lCDChv5xXZ5rhRanm0zEawHo2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-10-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 42, + "popularity": 1.4516 + }, + { + "id": 12609, + "title": "Dragon Ball", + "originalTitle": "ドラゴンボール", + "overview": "Young Goku sets off on a quest with his teenage friend Bulma to find the seven Dragon Balls, which grant whoever possesses them a single wish.", + "posterPath": "/onCLyCOgszTIyyVs2XKYSkKPOPG.jpg", + "backdropPath": "/30L49n4Dhn7dzuGG50GV3ybMhC3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1986-02-26", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 8.26, + "voteCount": 3269, + "popularity": 1.4492 + }, + { + "id": 95710, + "title": "The Melancholy of Haruhi-chan Suzumiya", + "originalTitle": "涼宮ハルヒちゃんの憂鬱", + "overview": "A parody series featuring the entire cast of The Melancholy of Haruhi Suzumiya in a smaller form factor. Among the changes are: Yuki plays eroge, Haruhi is even more obnoxiuous and loud, Mikuru is even more emotional and Koizumi harbors a deep love for Kyon. Kyon, on the other hand, is generally the same as ever.", + "posterPath": "/dbnhIbwrBrjzBtH2RLHUc6TQ9WH.jpg", + "backdropPath": "/cK8S9hZe0B8GVrKbTmv5kjysdL7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-02-14", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 18, + "popularity": 1.4484 + }, + { + "id": 54930, + "title": "Dusk Maiden of Amnesia", + "originalTitle": "黄昏乙女×アムネジア", + "overview": "The story revolves around a first-year high school student, Teiichi Niiya who had just enrolled at Seikyou Private Academy. When he gets lost in one of the school's old building, he meets a girl named Yuuko Kanoe who reveals herself as a ghost with no memories. Teiichi then decides to investigate her death by delving deep into the infamous Seven Mysteries of the storied school along with Kirie Kanoe, Yuuko's relative, and the oblivious second year Momoe Okonogi. Throughout the story, Teiichi and Yuuko discover the truth about these ghost stories and help those who are troubled all the while inching closer to the truth behind Yuuko's death.", + "posterPath": "/v2xEALi1U4foXfLUXB2FkAqo4qC.jpg", + "backdropPath": "/zsBnRVthjKXgZaXSCPohR6JefP0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-09", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 105, + "popularity": 1.4479 + }, + { + "id": 88044, + "title": "Demon Lord, Retry!", + "originalTitle": "魔王様、リトライ!", + "overview": "Akira Oono awakens in the body of his online character: Demon Lord Hakuto Kunai. With powerful game mechanics and abilities on his side, this gamer turned badass plots his course through a new world filled with saints, demons, and charming companions!", + "posterPath": "/d5hXGaqit05qhYP4cqZs0BUrLG.jpg", + "backdropPath": "/fHd0sO7jgwSqYkzsUXcWTDeMFSn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-04", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 116, + "popularity": 1.4475 + }, + { + "id": 70801, + "title": "Marvel Disk Wars: The Avengers", + "originalTitle": "ディスク・ウォーズ:アベンジャーズ", + "overview": "A group of teenagers join forces with the Avengers, Earth's mightiest heroes, to fight against the tyrannical Loki and his mighty empire.", + "posterPath": "/6wQAZaWSvBJOIIt68cqmC0KJjeE.jpg", + "backdropPath": "/gVnxTA3FT4G2M2j6wyAZkWpRKn5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-04-02", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.313, + "voteCount": 16, + "popularity": 1.4475 + }, + { + "id": 43598, + "title": "Gregory Horror Show", + "originalTitle": "GREGORY HORROR SHOW", + "overview": "Gregory Horror Show is a 3D CGI animated television series created by Naomi Iwata and televised by the Asahi National Broadcasting Co.", + "posterPath": "/xdy252rf4JpcMyf0BqJxK1GU0rQ.jpg", + "backdropPath": "/97ISGjkQVlfwjlD6g8cvihjK35C.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1999-10-01", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 6, + "popularity": 1.4466 + }, + { + "id": 72698, + "title": "Busou Shinki: Armored War Goddess", + "originalTitle": "武装神姫", + "overview": "High school student Masato has been living abroad and only now returning to Japan. On his first day at school, he is awoken by Ann, his Arnval model Shinki. As he hurriedly prepares to depart, Ines, an Altines model, and Lene, an Altlene model, both make their way out of the boxes they have been to neatly packed into.\n\nFor the sake of their Master, they enthusiastically go about cleaning and squaring away Masato's belongings. In the midst of this, they come across a box labeled Valuable. What could be inside?", + "posterPath": "/6bMwmmBBsRdpo8iNgBp7RdZD1zP.jpg", + "backdropPath": "/rYisXkvIEFRJeSKCz3VPmciGBqy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.714, + "voteCount": 7, + "popularity": 1.4464 + }, + { + "id": 105249, + "title": "The World Ends with You: The Animation", + "originalTitle": "すばらしきこのせかい The Animation", + "overview": "Neku awakens in the middle of Shibuya's bustling Scramble Crossing with no memory of how he got there. Little does he know, he's been transported to an alternate plane of existence known as the Underground. Now an unwilling participant in the mysterious \"Reapers' Game,\" Neku must partner up with a girl named Shiki in order to survive...", + "posterPath": "/6qbkiUDUkJIcb5Jgc6kYIfBKE1i.jpg", + "backdropPath": "/mjyRFPrJ8SPF77STsbkR0X0rE6C.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Action & Adventure" + ], + "releaseDate": "2021-04-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 45, + "popularity": 1.4462 + }, + { + "id": 88038, + "title": "GRANBELM", + "originalTitle": "グランベルム", + "overview": "The anime takes place in a world that long ago featured the existence of magic, but has long since lost that ability. The story begins when the very normal high school student Mangetsu Kohinata meets Shingetsu Ernesta Fukami, who has migrated back to Japan from Germany, on a night with a full moon.", + "posterPath": "/yCx4bLMXsvb8WzMNfIPTwQq2GUM.jpg", + "backdropPath": "/g1dbyg7tqjJlUk0bcxh6rs7jWIK.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-07-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 13, + "popularity": 1.4434 + }, + { + "id": 34058, + "title": "Hyakko", + "originalTitle": "ヒャッコ", + "overview": "Hyakko is a Japanese manga created by Haruaki Katō. It started serialization on Flex Comix's free web comic FlexComix Blood on January 16, 2007. An anime adaptation produced by Nippon Animation was first aired in October 2008 in Japan. An OVA was released on October 17, 2009.", + "posterPath": "/y0pAdIdU85PEDEtt7lJX2y6gUjO.jpg", + "backdropPath": "/e4tw74gSlZf4rmp8jNcIXmLJ3Sm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2008-10-01", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 1.4432 + }, + { + "id": 60871, + "title": "Soul Eater Not!", + "originalTitle": "ソウルイーターノット!", + "overview": "Ding-dong! Dead-dong! Class is about to begin, and you don't want to be late on your first day of school! Join Tsugumi Harudori in the \"NOT\" class at Death Weapon Meister Academy, a school dedicated to training transforming weapons like Tsugumi and the meisters who will wield them. Many \"NOT\" (Normally Overcome Target) students aspire to join the elite \"EAT\" (Especially Advantaged Talent) class. But it may take Tsugumi some time to find her confidence-- and a partner -- at this crazy school!", + "posterPath": "/1NsTn71nxSWb3JBfhuddNRdwgWv.jpg", + "backdropPath": "/swEdAGXN2YgwyQaPAocaZbPCTyn.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-08", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.71, + "voteCount": 31, + "popularity": 1.4428 + }, + { + "id": 80878, + "title": "Seiyu's Life!", + "originalTitle": "それが声優!", + "overview": "The series is centered on three friends who are all rookie voice actresses; Futaba Ichinose, Ichigo Moesaki and Rin Kohana. As the girls go through their individual troubles of working in voice acting, they end up hosting a web radio show together and form the unit, Earphones.", + "posterPath": "/1dHP1La2G4vaPzaSznQzs0bmYbi.jpg", + "backdropPath": "/dTHV1d2mkD63yLI1OvaUsq7uyLA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 1.4423 + }, + { + "id": 78485, + "title": "Isekai Izakaya: Japanese Food from Another World", + "originalTitle": "異世界居酒屋〜古都アイテーリアの居酒屋のぶ〜", + "overview": "Experienced head chef Nobuyuki Yazawa and friendly waitress Shinobu Senke run a traditional Japanese izakaya called Nobu—a bar known for serving a tasty array of food and drink. Welcoming any and all customers, the pair strive to showcase Nobu's exclusive menu and provide the best possible experience. However, despite its ordinary appearance, the establishment opens to the heart of Aitheria, a city from a parallel universe. As news of the restaurant's exquisite dishes spreads throughout the lands, Aitherian citizens from various social backgrounds travel to Nobu in search of new and delicious cuisine, bringing with them an empty stomach and riveting stories to tell.", + "posterPath": "/d1MPZO4DTmgVdsndnXZvD5Uhjnd.jpg", + "backdropPath": "/akB0PAdTTP7DVZui16JDwcTzVgs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 12, + "popularity": 1.4422 + }, + { + "id": 45235, + "title": "We, Without Wings - Under the innocent sky", + "originalTitle": "俺たちに翼はない -under the innocent sky.", + "overview": "In the big city of Yanagihara, the masses of people and buildings make it a bustling place to exist, and yet, people will meet and fall in love here in this city.", + "posterPath": "/aIEvEzBEXD7ZBGHypOh8M1d1eoC.jpg", + "backdropPath": "/9UVE0WEYZTQEhDnGGfMshFKjTIs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Drama" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.333, + "voteCount": 9, + "popularity": 1.4408 + }, + { + "id": 70292, + "title": "The Perfect Insider", + "originalTitle": "すべてがFになる THE PERFECT INSIDER", + "overview": "Souhei Saikawa is a college professor who is obsessed with genius Shiki Magata’s work. He, Moe Nishinosono, and a group of his other students plan a retreat to the remote island where Magata currently resides, which may put them in danger’s way...", + "posterPath": "/32j3Kh8v2ahzSZza773nDFYXsxX.jpg", + "backdropPath": "/mLaZDC56BEx0RRgC0lY41ca2dtA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2015-10-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 37, + "popularity": 1.4406 + }, + { + "id": 210945, + "title": "Onimusha", + "originalTitle": "鬼武者", + "overview": "With a demonic, soul-consuming weapon in hand, can a legendary swordsman and a samurai brotherhood defeat a bloodthirsty zombie uprising?", + "posterPath": "/lfRmDHegR8OpU3859lBz9YHgD79.jpg", + "backdropPath": "/7HNkjJlC3Vk6hQ4zMAJC2CcGqMO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-11-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 75, + "popularity": 1.4398 + }, + { + "id": 257603, + "title": "TsumaSho", + "originalTitle": "妻、小学生になる。", + "overview": "Keisuke Niijima has lived in grief since his wife, Takae, passed away 10 years ago. But when a young girl visits, claiming to be Takae reincarnated, Keisuke and his daughter, Mai, are drawn into a miraculous reunion. As the girl reveals intimate details only they could know, the Niijima family slowly begins to heal, rediscovering love and warmth in the most unexpected way.", + "posterPath": "/aWXFAo8ua0T5fSVQNNU31g7cx2c.jpg", + "backdropPath": "/6K2lRARVa4N9DwU6tAud9PcTQt2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.056, + "voteCount": 18, + "popularity": 1.4386 + }, + { + "id": 156450, + "title": "Prima Doll", + "originalTitle": "プリマドール", + "overview": "Just a few years prior, automata served as weapons in the great war. Now that the war has ended, these machines with human hearts search for their place in an unfamiliar, peaceful world — and their search begins at the Kuronekotei café.", + "posterPath": "/z8DjN9RlcMy4WIQpgtbFqp9dLtM.jpg", + "backdropPath": "/7UM7DjoQSR6HxfDUb1SVZIuIOx6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 12, + "popularity": 1.4386 + }, + { + "id": 70718, + "title": "Himegoto", + "originalTitle": "ひめゴト", + "overview": "The story follows Hime Arikawa, whose absent parents have left him saddled with a huge debt. After being saved from debt collectors by three girls on the student council, in exchange for paying off his debt, he agrees to spend the rest of his high school career dressed as a girl.", + "posterPath": "/cfNgyiz8bX6GxpiH9rP66h5n2Gp.jpg", + "backdropPath": "/yyykOdzn2oRbkhImAX0fRfeLv7q.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2014-07-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 28, + "popularity": 1.4376 + }, + { + "id": 207521, + "title": "Sweet Reincarnation", + "originalTitle": "おかしな転生", + "overview": "Pastry Mille Morteln, age 9, is both his father's heir and the reincarnation of an unfulfilled pastry chef. While he dreams of a land filled with sweet treats, there's a lot to be done first! From learning how to fight, to controlling his new magical talents and doing his best to defend his village from bandits, and yet all he really wants to do is bake the perfect apple pie... Pastry Mille Morteln has his work cut out for him in Sweet Reincarnation.", + "posterPath": "/51CKhQNOvH3cxjljRize0oPfPyR.jpg", + "backdropPath": "/yN4AQG4iuC4fMCm5zAxsbm3ZPcN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 36, + "popularity": 1.4374 + }, + { + "id": 76758, + "title": "Hinamatsuri", + "originalTitle": "ヒナまつり", + "overview": "One night, a strange object falls on the head of Nitta, a member of the yakuza. Inside the box is a strange young girl named Hina. She has tremendous supernatural powers, and Nitta finds himself reluctantly taking her in. Her powers can come in handy for his yakuza business, but he also runs the risk of her using them on him! Not to mention, if she doesn't use her powers, she will eventually go berserk and destroy everything around her. Nitta and Hina's strange life together is just beginning...", + "posterPath": "/c6cULnkJ0NoePjcwpH576LrGNdK.jpg", + "backdropPath": "/phrFU1DPna3u8WkbKZi9UH7sQd9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 124, + "popularity": 1.4355 + }, + { + "id": 44687, + "title": "Natsu no Arashi!", + "originalTitle": "夏のあらし!", + "overview": "Thirteen-year-old Yasaka is a boy staying at his grandfather's house during his summer vacation. One day he entered a store and met Arashi, a beautiful sixteen-year-old girl working there. After trying to protect her from a man who claims to have been hired by her family to take her back by force, Yasaka ran away with her and now she stays at his grandpa's place with him. It didn't take much time for Yasaka to figure out that his new friend is far from an ordinary girl, as she possesses mysterious powers. The plot thickens when he finds a sixty-year-old picture of Arashi and another girl named Kaja, and to the surprise of all Kaja suddenly appears, and just like Arashi, her appearance hasn't changed at all since then.", + "posterPath": "/liTIEsWXwYU7ixxSGCZCFeRJ9uK.jpg", + "backdropPath": "/rul2HsvXLX0SnUms8qfOLa7lhNZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-06", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 8, + "popularity": 1.4355 + }, + { + "id": 82770, + "title": "Jingai-san no Yome", + "originalTitle": "人外さんの嫁", + "overview": "Tomari Hinowa is a normal high schooler, until one day he's told that he has to become the wife of a mysterious creature called Kanenogi. This is the start of their newly married life.", + "posterPath": "/v8Da1DESf9BFiuXmPdabLDpfeeI.jpg", + "backdropPath": "/xQ6YMudk6DvbDzVYg2l8R7eLVz3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.875, + "voteCount": 12, + "popularity": 1.4346 + }, + { + "id": 83454, + "title": "The Magnificent KOTOBUKI", + "originalTitle": "荒野のコトブキ飛行隊", + "overview": "The story will take place in a barren frontier where people trade goods with each other in order to help each other survive. The Kotobuki Squadron are bodyguards for hire, led by a strict but beautiful squadron leader, an unreliable commanding officer, and a true artisan of a crew chief. Alongside pilots who don't lack for personality, they take to the air in dogfights, letting the engine noise of their Hayabusa fighters ring out in the skies.", + "posterPath": "/2N3aZe9lBnhH9jTIsgavX2TNcK2.jpg", + "backdropPath": "/6tA9W3BFanbXHyp7XlzyxsUOCMp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2019-01-13", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 6, + "popularity": 1.4322 + }, + { + "id": 34209, + "title": "EAT-MAN", + "originalTitle": "EAT-MAN", + "overview": "Bolt Crank is an \"explorer\"--a mercenary who only accepts jobs that fits his moral standards. Even so, explorers like him are rarely trusted, and employment both in getting and also doing the job is hazardous. However, despite the fact Bolt says it's the only job he's any good at, he's also the best explorer around. Moreover, he has a unique ability. He's able to eat anything at all, and later can reproduce it wholly intact and functional! As an enigmatic man of few words, it's hard to understand someone who can do something so strange, and who despite it all, just wants to be normal.", + "posterPath": "/1VReN6457bUoyE9uyAsoSFdhZcG.jpg", + "backdropPath": "/kUIvABWW388vNmDhvfUdxIedp5P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1997-01-10", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 6, + "popularity": 1.4322 + }, + { + "id": 34170, + "title": "Nazca", + "originalTitle": "時空転抄ナスカ", + "overview": "Nazca is an anime series created by Yoshihiko Inamoto. It is about a group of people who are reincarnations of ancient Inca warriors who have returned to re-enact a civil war that resulted in the fall of the Inca Empire.\n\nMiura Kyoji, a dedicated kendo student, discovers that his instructor, Tate Masanari, is a reincarnated Inca warrior named Yawaru who wishes to destroy the world to purify it. Kyoji himself is the warrior Bilka, who foiled Yawaru's plans in their previous lives. As Yawaru gathers other awakened spirits to give him ever more power, Kyoji faces conflicting loyalties; he must decide if he is merely a vessel for the reincarnated soul, destined to fulfill a role given to him and destroy a person he liked and respected in order to save the world, or if he is a free individual who can bring Masanari to his senses and break the cycle of rebirth and human possession.", + "posterPath": "/dTqiKoyJNJwKxBdPyEbKQ2LO7EM.jpg", + "backdropPath": "/jH20qors4wsbhsPwqL4DzBxdEOx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-04-06", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 6, + "popularity": 1.4312 + }, + { + "id": 34087, + "title": "The Super Milk-Chan Show", + "originalTitle": "OH! スーパーミルクチャン", + "overview": "The Super Milk Chan Show, known in Japan as OH! Super Milk Chan, is an anime comedy about a foul-mouthed girl named Milk P. Chan, who is entrusted by the President of Everything to defend the world, even though she can do very little besides making popular culture references. Its American slogan, as a result, became \"Wholesome? Probably not. Good for you? Definitely.\"\n\nSuper Milk Chan is produced in Japan by Studio Pierrot. The North American DVD release by A.D. Vision features two different English-dubbed versions: a straight translation of the Japanese version and an Americanized version with western pop culture references and short live-action skits featuring ADV voice cast members.", + "posterPath": "/b0MLxN9GcmBelwvoPwFQnRyVTKj.jpg", + "backdropPath": "/9ogk7c4swE7jz6RkaHUFWA2zWkm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1998-06-18", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 6, + "popularity": 1.4308 + }, + { + "id": 45154, + "title": "Mazinkaiser", + "originalTitle": "マジンカイザー", + "overview": "Dr. Hell has resurrected an ancient army of mechanical monsters to conquer the world, but first he has to destroy the photon power lab and the one thing standing in his way: Mazinger! But it's going to take more than defeating Mazinger for Dr. Hell and his evil henchman Baron Ashura to clear their way for world domination, because there's a new kid in town, and he packs quite the atomic punch!\n\nCan Young Koji Kabuto, as the runner behidn the amazin Mazinkaiser, deal out the thunder faster than Dr. Hell's army can take it?", + "posterPath": "/n5YDvG88bKcfTnzlUwuWBsiCxE8.jpg", + "backdropPath": "/wTbeBbqbRvUKLs2cYwbqXiTOpHW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2001-09-25", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 7, + "popularity": 1.4305 + }, + { + "id": 61742, + "title": "Laughing Under the Clouds", + "originalTitle": "曇天に笑う", + "overview": "When swords were outlawed in the eleventh year of the Meiji era, the mighty samurai population began to dwindle. Those who rejected the ban on blades rebelled, causing violent unrest to erupt throughout the countryside. To combat the rise in criminal activity, an inescapable lake prison was constructed. Three young men, born of the Kumo line, were given the duty of delivering criminals to their place of confinement – but could there be more to their mission than meets the eye?", + "posterPath": "/8SXZUWqBS2nPMAzHC3LYVVMaLtd.jpg", + "backdropPath": "/spoFEU3Myk7AOtjaIn3FCGEHK1z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2014-10-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 20, + "popularity": 1.4292 + }, + { + "id": 104155, + "title": "LBX Girls", + "originalTitle": "装甲娘戦機", + "overview": "In an unplanned field trip, Riko is transported to an alternate Japan where metal-based life forms known as Mimesis ravage the world. Only girls equipped with LBX armored weaponry can stand up to this scourge. Joined by four other displaced young women, Riko will have to adapt to save humanity. The hope of a planet now rests on these heavy metal soldiers who desire one wish—to return home again!", + "posterPath": "/rMyUgCTuKoKiuU96l9Z2b3LdXSG.jpg", + "backdropPath": "/xum47fwIQFgaheELTUPq4GxPA1j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-01-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 6, + "popularity": 1.428 + }, + { + "id": 258228, + "title": "Momentary Lily", + "originalTitle": "もめんたりー・リリィ", + "overview": "Robotic invaders wiped out all life, but Renge fights to survive using her powers. With no memories, she roams the city until she meets five other young women, each with unique abilities. Together, they make the most of their lives, cooking delicious meals between battles with mechanical monstrosities. As they uncover the secrets of their powers and pasts, they find strength in their friendship.", + "posterPath": "/cH83QODjpx3nwHBHkNYnXigMHb1.jpg", + "backdropPath": "/4hrpiVt6m5ZGVzVjqESfoDHwFoJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-02", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 6, + "popularity": 1.427 + }, + { + "id": 82988, + "title": "Conception", + "originalTitle": "CONCEPTION", + "overview": "On his high school graduation day, Itsuki's cousin, Mahiru, tells him that she's pregnant. Just then, a gate of light emerges and transports the two into the world of Granvania. In this land, \"Impurities\" have been causing a disturbance to the Stars, ultimately plunging Granvania into chaos and disorder. And Itsuki, now revealed to be one who is fated to meet with the \"Star Maidens\", is seen as Granvania's last hope and was thus given the task to produce \"Star Children\" and combat the \"impurities\". And unless the task is complete, Itsuki may never be able to return home.", + "posterPath": "/utuOBLomLO63df6c28A7fppwl6c.jpg", + "backdropPath": "/9Ty7FpA93iI7gJEZPkMUDUKItkZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-10", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.619, + "voteCount": 21, + "popularity": 1.4264 + }, + { + "id": 91765, + "title": "Z/X: Code Reunion", + "originalTitle": "Z/X Code reunion", + "overview": "The story is set in the future where humanity and the Z/X have entered a treaty and headed towards a moment of peace. Azumi Kagamihara—a girl affiliated with the Blue World—is chosen together with her Partner Z/X Rigel to enroll in Fujimisaki Academy, a school established to gather girls that are partnered with Z/X from all over Japan.", + "posterPath": "/2imEsUJyIkT41obdZ2mSIP2iErR.jpg", + "backdropPath": "/uJ0JV4VYTT23MFkvABb0VYAjOMb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-10-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 9, + "popularity": 1.4259 + }, + { + "id": 85935, + "title": "Midnight Occult Civil Servants", + "originalTitle": "真夜中のオカルト公務員", + "overview": "Miyako Arata is newly assigned to the Shinjuku Ward Office's Nighttime Regional Relations Department. Each of Tokyo's 23 wards has one such department, established to mitigate paranormal and occult-related events. Arata's special skill is the understanding of non-human speech, and the story begins with him encountering a youkai at Shinjuku Gyoen park who refers to him as the legendary Heian-era exorcist, Abe no Seimei.", + "posterPath": "/cFCPAtDwiL3zrysqxGeVH5MsMW0.jpg", + "backdropPath": "/gYwERM20es5TQ2bRGbOkQJ5bQb2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2019-04-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 25, + "popularity": 1.4245 + }, + { + "id": 93899, + "title": "Levius", + "originalTitle": "Levius -レビウス-", + "overview": "With the casualties of war still haunting him, young Levius uses his prosthetic arm to take his fight into the brutal world of Mecha Boxing.", + "posterPath": "/7Ixmfw1vDwQy0xa7xAnW0uQukIc.jpg", + "backdropPath": "/iO04pxGGLU8PYQGaru2kEbmM71s.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-11-28", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.588, + "voteCount": 57, + "popularity": 1.4227 + }, + { + "id": 35460, + "title": "Cobra the Animation", + "originalTitle": "COBRA THE ANIMATION", + "overview": "Cobra is a well known space pirate, but decides to change his face and to clear all his memories. He becomes a average guy, with a common job, and a very boring life, but suddenly he starts remembering his true identity and new adventures begin.", + "posterPath": "/pZvcc1PxU5TbwYAjCy4mmWl3SZx.jpg", + "backdropPath": "/eb2YQpJcqvirCt7iT23OsRl8MBM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2010-01-02", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 18, + "popularity": 1.421 + }, + { + "id": 223121, + "title": "Ōoku: The Inner Chambers", + "originalTitle": "大奥", + "overview": "In an alternate history where the male population is nearly decimated, eligible men serve as concubines to the woman shogun inside the walls of the Ooku.", + "posterPath": "/elhdgeFlJ4jvUGzaVEMweGY9vFS.jpg", + "backdropPath": "/1fCFFQyUl29WiVVPW1IUw5QLMxu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-06-29", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.378, + "voteCount": 45, + "popularity": 1.4205 + }, + { + "id": 71386, + "title": "Danchigai", + "originalTitle": "だんちがい", + "overview": "Based on a four-panel manga by Kazusa Yoneda, Danchigai focuses on the life of Haruki Nakano and his four sisters, all of whom live together in the same apartment complex. The only boy of five siblings, Haruki lives with his older sister Mutsuki, difficult younger sister Yayoi, and mischievous twins Uzuki and Satsuki.", + "posterPath": "/upCe1lboYysrt8SANIhaHjuEtXQ.jpg", + "backdropPath": "/wrcFv22sV4W3khBTluQOkogsEKc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-07-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 40, + "popularity": 1.4198 + }, + { + "id": 30431, + "title": "Blue Submarine No. 6", + "originalTitle": "青の6号", + "overview": "The once famous and well respected scientist Zorndyke has bred a new genre of living being, one that thrives on the oceans and lives to destroy humans. Zorndyke believes it is time that the humans were relieved of their rule of the earth. It is up to Blue Submarine No. 6 and the rest of the Blue fleet to put an end to Zorndyke's madness and creations.", + "posterPath": "/7sw3ou88XsMWhxalSvWUYl7tMzq.jpg", + "backdropPath": "/bBEvO1p1LKZWL4Rc3dTNGJWP7Kc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-10-25", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 5.915, + "voteCount": 41, + "popularity": 1.4181 + }, + { + "id": 68088, + "title": "Gakuen Handsome", + "originalTitle": "学園ハンサム", + "overview": "The school love story is set at Baramon High School, a private boys' school for the prefecture's most elite. The protagonist is a seventeen year old boy who transfers into the school and meets various major players on campus, such as the outlaw teacher, the soccer captain, and a childhood friend whom the protagonist has not seen for seven years. The school presents opportunities for friendship, love and conflict, and changes are now bound to happen in the main character's life.", + "posterPath": "/jm5DfcGYqZBcipamOzbfT0GIO3a.jpg", + "backdropPath": "/AsVpkjsK1IUxLPQYnbk2SWEW1Yl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 7, + "popularity": 1.418 + }, + { + "id": 135292, + "title": "Tribe Nine", + "originalTitle": "TRIBE NINE", + "overview": "In Neo Tokyo, disillusioned youth form tribes that battle each other in an intense game called Extreme Baseball. One night, two kids – Haru Shirogane and Taiga – meet the strongest XB Player Shun Kamiya. Haru and Taiga join Shun's group, the Minato Tribe, to play this cutthroat game against a mysterious man who has begun taking control of all the tribes. Can they defeat him before it’s too late?", + "posterPath": "/fH9wo23VGzWIK0rHkEEbidWpK12.jpg", + "backdropPath": "/gK0IbSwk0HdLzZKwkunfqoKBek9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 14, + "popularity": 1.4175 + }, + { + "id": 36877, + "title": "Shuffle!", + "originalTitle": "SHUFFLE!", + "overview": "Rin Tsuchimi, a normal seventeen-year-old second-year high school student finds himself sought after by a variety of girls. Eight years prior, he lost his parents in a car accident that also took the life of Kaede Fuyou's mother. From that point onwards, he began living with her. At around the same time he lost his parents, he met Lisianthus and Nerine at different times who each were accompanying their fathers on a diplomatic business in the human world. Each girl became lost after wandering through the human world. During that time, Rin befriended each girl after playing with them for a day. As a result of his kindness, Rin finds himself as the potential marriage candidate for both Lisianthus and Nerine, the daughters of the king of the gods and king of the demon worlds, who recently transfer to Rin's school.", + "posterPath": "/aYU16TFrHjBnOnADp2idqusvtGX.jpg", + "backdropPath": "/m3T4B883ltsskfL1772Elj1HVjC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-07-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.455, + "voteCount": 11, + "popularity": 1.4166 + }, + { + "id": 42861, + "title": "Koi Kaze", + "originalTitle": "恋風", + "overview": "Koshiro and Nanoka fall deeply in love, then discover they are the children of their divorced estranged parents... making them brother and sister. How will their relationship turn out?", + "posterPath": "/sHeRXtmlcoOnJRO70hvZNLsKBgU.jpg", + "backdropPath": "/tOqtZpvYn7cxELuBU8Qy8uZWQhJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2004-04-01", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.063, + "voteCount": 16, + "popularity": 1.4144 + }, + { + "id": 69891, + "title": "Rampo Kitan: Game of Laplace", + "originalTitle": "乱歩奇譚 Game of Laplace", + "overview": "The story takes place at a certain middle school where several murder cases take place. Kobayashi, a boy who goes to this school, meets genius detective Akechi, who comes to the school to investigate. Kobayashi takes an interest in Akechi and, in spite of his friend Hashiba's worries, he volunteers to be Akechi's assistant.", + "posterPath": "/7L2tSZt6SNwOjqwLn43QeNZ9SBM.jpg", + "backdropPath": "/rSDv2x1LRheZd27mDrj94hU3bs1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 80 + ], + "genres": [ + "Animation", + "Mystery", + "Crime" + ], + "releaseDate": "2015-07-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 14, + "popularity": 1.4142 + }, + { + "id": 65209, + "title": "Phantasy Star Online 2: The Animation", + "originalTitle": "ファンタシースターオンライン2 ジ アニメーション", + "overview": "Itsuki Tachibana is a student of Seiga Academy, a co-ed boarding high school with excellent reputation, located in a suburb outside the city center. On a day of second semester, he was summoned by Rina Izumi, the most esteemed and praised chairperson, to the student council room, without knowing what awaits him.", + "posterPath": "/dvDAs3ajXJdd8IaVMkjrjRhRmKi.jpg", + "backdropPath": "/iTUAHkwnGMPEozqNWFNB958kd9A.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 13, + "popularity": 1.4138 + }, + { + "id": 34716, + "title": "The Cosmopolitan Prayers", + "originalTitle": "超変身コス∞プレイヤー", + "overview": "Koto unknowingly seals away the Sun Goddess Amaterasu, and now she is in a different world and can't return. Meeting priestesses who combat the evil in this strange place she learns that Black Towers throughout the land keep Amatersu sealed away and are guarded by evil monsters. Koto must now find a way to help defeat these monsters and return the world to the way it was.", + "posterPath": "/707Pi4q2FryQLAvLM8wtHeGiZrt.jpg", + "backdropPath": "/cNEnD2Z8xaS1qchdVbhKQdLcdOw.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2004-01-13", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 2, + "voteCount": 5, + "popularity": 1.4123 + }, + { + "id": 67553, + "title": "Sky Wizards Academy", + "originalTitle": "空戦魔導士候補生の教官", + "overview": "Humanity was driven off the land by the threat of magical armored insects and now live in aerial floating cities. Its defenses lie in wizards who fight the insects with magic in mid-air. Kanata Age is a young man who lives on the floating wizard academy city of \"Misutogan.\" He was once celebrated as the \"Black Master Swordsman,\" the elite ace of the S128 special team. However, he is now despised as the \"traitor of the special team.\" One day, he is assigned as the instructor of E601, a team that has suffered 10 consecutive defeats. E601 has three girls — Misora Whitale, Lecty Eisenach, and Rico Flamel — with one or two peculiar quirks.", + "posterPath": "/1fBWnFW5qXEMX6Fs7lyjAdcghV0.jpg", + "backdropPath": "/8DPjMoUE000g9NxnePUKa5FQYe1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 33, + "popularity": 1.4119 + }, + { + "id": 108952, + "title": "Dr. Ramune: Mysterious Disease Specialist", + "originalTitle": "怪病医ラムネ", + "overview": "So long as people have hearts, there will be those with worries and concerns. Those hearts are then invaded by something strange, causing them to show strange physical symptoms. These ailments, called \"mysterious diseases\", exist unseen to most people. Modern medicine offers no cure, but there is one doctor who fights these diseases along with his pupils. His name is Ramune. He looks nothing like a doctor, is foul-mouthed, and does whatever he pleases, but he has the ability to pinpoint the cause of the troubles hidden deep within his patients' hearts and cure their mysterious diseases.", + "posterPath": "/tjo8oPb6lE8mLUm5oFDwI0OQa7H.jpg", + "backdropPath": "/m3FukCUFSGdlrcD218wcIDMqhZX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 10, + "popularity": 1.4118 + }, + { + "id": 28853, + "title": "Girl's High", + "originalTitle": "女子高生 GIRL'S-HIGH", + "overview": "Eriko and her friends Yuma and Ayano are excited about entering high school. Their excitement leads to their breaking of the rules when they toured the school before the opening ceremony. They find out their preconceptions about the all female school may not be as true as they had first thought. Despite that, Eriko and her friends are joined by new friends. They aim to get through high school life together.", + "posterPath": "/3UCmPslDGsMZkul7rFXZUDTjHTR.jpg", + "backdropPath": "/8eOiOrxD3ZGyhnQ3FpAZvcX7Dvl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2006-04-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 18, + "popularity": 1.4092 + }, + { + "id": 82252, + "title": "Kekko Kamen", + "originalTitle": "けっこう仮面", + "overview": "No,​ that's not a skin-tight pink costume - it's her skin! She's Kekko Kamen,​ the dynamic denuded damsel who fights injustice in the altogether.​ Her mission?​ To expose rampant classroom corruption at the Big Toenail of Satan's Spartan Institute of Higher Education - all while repeatedly rescuing everyone's favorite victim,​ the beautiful (and often naked) Mayumi Takahashi,​ from the Institute's terrifying torture chamber!", + "posterPath": "/fanuyyTyptfeM5FtK0skCBxmm9j.jpg", + "backdropPath": "/524amZpqKKaCbKuzzlMzWla6L5V.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 80, + 10759, + 16 + ], + "genres": [ + "Comedy", + "Crime", + "Action & Adventure", + "Animation" + ], + "releaseDate": "1991-08-01", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 8, + "popularity": 1.4086 + }, + { + "id": 44300, + "title": "A Bridge to the Starry Skies", + "originalTitle": "星空へ架かる橋", + "overview": "Kazuma Hoshino moves to the beautiful countryside to take care of his little brother, Ayumu Hoshino. They ended up they getting lost on their way to the Japanese Inn.", + "posterPath": "/dSUsT4JKMLN31XZFJ8ibSb4t0Q3.jpg", + "backdropPath": "/e7W6OX3tPkdazhhgnzB2pLeXXQh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-11", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 17, + "popularity": 1.4062 + }, + { + "id": 46170, + "title": "Because I Don't Like My Big Brother At-All--!!", + "originalTitle": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "overview": "Nao Takanashi loves her brother Shūsuke despite the incest taboo. Nao thinks that Shūsuke is her blood relative, but in fact she is an adopted daughter, whose parents have died. After Nao learns the fact, she wants to fall in love normally with Shūsuke because siblings by adoption can marry under the family law in Japan. However, she finds herself competing with Shūsuke's childhood friend, Iroha Tsuchiura, and his class president and yaoi lover, Mayuka Kondō.", + "posterPath": "/94NSjNHU9fOfoUXSYG2nzKafYww.jpg", + "backdropPath": "/6MExinoNk2qL3hdBIYonrtN6wWe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-01-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.75, + "voteCount": 12, + "popularity": 1.4053 + }, + { + "id": 74182, + "title": "Love Is Like a Cocktail", + "originalTitle": "お酒は夫婦になってから", + "overview": "Chisato Mizusawa is a reserved but excellent and pretty assistant manager in her company. She has a secret that only her husband Sora knows, which is that she likes drinking alcohol, and she can become very cute when she is drunk! Even tonight, she gets relaxed (with the phrase \"Shifuku~\") and drunk with the cocktail Sora makes♥. It's a \"Yoidere (Drunken Dere)\" cocktail comedy of Japan's closest husband and wife.", + "posterPath": "/aKou5JGxvVY5fdHbVNbhjyhUG97.jpg", + "backdropPath": "/xoiSMpmmxFzX4GjC1wCS8mqrqoq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-10-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.146, + "voteCount": 24, + "popularity": 1.4048 + }, + { + "id": 65954, + "title": "Alderamin on the Sky", + "originalTitle": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "overview": "At war with the adjacent Kioka Republic, the Katjvarna Empire. In that region, due to certain circumstances, there was a certain youth unwillingly preparing to take the High Grade Military Officer Exam. His name, Ikta. Disliker of war, lazy, admirer of women. No one predicted that that kind of Ikta would later on become a soldier referred to even as a great commander... He who survived a world embroiled in war with his superior genius, Ikta. Illustrating his dynamic, dramatic life, a splendid fantasy military history, the curtain is raised at last!", + "posterPath": "/sO6DDaOpJH9ONVvgtvwLDM3l7JY.jpg", + "backdropPath": "/7GLpckCzkLnpBwMMyx9P815vpcY.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 42, + "popularity": 1.4008 + }, + { + "id": 28326, + "title": "Ninja Nonsense", + "originalTitle": "ニニンがシノブ伝", + "overview": "Shinobu is a naive ninja-in-training. In order to test her ninja abilites, she must steal the panties of all the high school girls. The first house she stops at is the abode of one Kaede Shiranui, who happens to catch Shinobu in the act. Kaeda is the voice of reason and the two girls become quick friends, despite a round yellow ball-thing who claims to be a ninja master and tries to get in the way of their friendship.", + "posterPath": "/tBKUGyqiHC5dRwMxVQgqUHkmuJT.jpg", + "backdropPath": "/jXd2v6D6DiBtKBRUVwLNi159rUG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-07-08", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.81, + "voteCount": 21, + "popularity": 1.4005 + }, + { + "id": 42960, + "title": "Box of Goblins", + "originalTitle": "魍魎の匣", + "overview": "Between August and October, 1952, a series of unusual crimes takes place in Musashino and Mitaka: the attempted murder of 14-year-old Kanako Yuzuki, Kanako's abduction from the strange research \"hospital\" where she was recovering, then abductions of other girls, followed by their severed limbs in custom-fitted boxes being placed in surrounding towns. News editor Morihiko Toriguchi and crime fiction writer Tatsumi Sekiguchi investigate with the help of onmyōji Akihiko Chūzenji.", + "posterPath": "/iNpdxX6mmogeJJJ6vDpuFwYTtCJ.jpg", + "backdropPath": "/g324bUINw4MzphlBBpMBskWTkUB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 9648 + ], + "genres": [ + "Animation", + "Crime", + "Mystery" + ], + "releaseDate": "2008-10-08", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 15, + "popularity": 1.4001 + }, + { + "id": 74943, + "title": "The Daughter of Twenty Faces", + "originalTitle": "二十面相の娘", + "overview": "Eleven-year-old Chizuko Mikamo is a victim; she is aware that her cruel relatives have been slowly poisoning her, but she can't do anything to escape her fate except starve herself. Luckily for her, the infamous thief, Twenty Faces, has arrived to steal her household's most valuable treasure: Chizuko herself. Alongside Twenty Faces, Ken, Skipper and the rest of the gang, Chizuko travels to exotic lands and strange places in search of valuable treasure. But, as she soon discovers, there's much more to the mysterious Twenty Faces than she could ever have bargained for.", + "posterPath": "/6jWGDta9y453CPzq1VsSkOhCHXH.jpg", + "backdropPath": "/idcoTHkMBPoQUxMnERc7RuuRCGO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2008-04-12", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 3.6, + "voteCount": 5, + "popularity": 1.3985 + }, + { + "id": 112940, + "title": "Battle Game in 5 Seconds", + "originalTitle": "出会って5秒でバトル", + "overview": "It was just a usual morning.\n\nAkira Shiroyanagi, a high schooler who loves games and Konpeito (Japanese sweets), has suddenly been dragged into a battlefield by a mysterious girl who calls herself Mion. The participants are told that they are \"erased from the family register, involved in an experiment, and gained certain powers.\"\n\nAkira is determined to win the game with his newfound powers and destroy the organization. Armed with a power no one expects and his \"brain\" skills, the new period of intelligence battle begins!", + "posterPath": "/nGuTtEc5q3pO6Kl2Pmszc9IwEe.jpg", + "backdropPath": "/xOi6lRbJh3fBFur8QuxTyGzOqiH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-07-13", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 118, + "popularity": 1.3978 + }, + { + "id": 258229, + "title": "Tasokare Hotel", + "originalTitle": "誰ソ彼ホテル", + "overview": "Who is the real you? The \"Tasokare Hotel\" exists in a state of twilight limbo, allowing souls caught between the afterlife and the world of the living to rest. Neko Tsukahara arrives with no memory of who she is or how she came to be there, and is shown to a room filled with items relating to her past. As she searches for a way to remember who she was, a certain incident confronts her.", + "posterPath": "/nyVDj8ZZShrrTdPTiPsl9jMDNgK.jpg", + "backdropPath": "/fuI0RtDLLxjDAfhf0eUcIF54F5Z.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2025-01-08", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 7, + "popularity": 1.3973 + }, + { + "id": 73598, + "title": "Kill Me Baby", + "originalTitle": "キルミーベイベー", + "overview": "Kill Me Baby is the touching story of Yasuna, a normal (?) high school girl, and Sonya, her best friend who happens to be an assassin. Unfortunately, little Sonya's trained assassin instincts often work against her and others in her daily high school life, as Yasuna's often-broken wrist can attest to. She just wanted a hug, but she ended up with a broken neck. Isn't it sad? No, it's hilarious.", + "posterPath": "/roi29pllxcLud3wVAky4msljKE.jpg", + "backdropPath": "/iai8JGhWpvQaWytQAmpizaw9eDP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-01-05", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 29, + "popularity": 1.3955 + }, + { + "id": 43086, + "title": "Alien Nine", + "originalTitle": "エイリアン9", + "overview": "Yuri Otani, much to her disgust, has been elected by her class for alien fighting duty. Together with Kasumi Tonime, who joined the alien fighter simply for the sake of doing so, and Kumi Kawamura, who became and alien fighter to avoid the responsibility of yet another year of class presidency, she must defend her school from periodic alien attacks. Introspection, fear, anxiety and friendship await Yuri as she is forced to stare life itself in the mouth in her chaotic coming of age.", + "posterPath": "/aBxNIWTnMSfFxHdpukkN9q0PQAA.jpg", + "backdropPath": "/ehldiijyYTwPYBaQOtzFlyaS9TL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-06-25", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7.222, + "voteCount": 18, + "popularity": 1.3948 + }, + { + "id": 34808, + "title": "Inukami!", + "originalTitle": "いぬかみっ!", + "overview": "Inukami are benevolent, dog-like beasts with great spiritual powers that can also take human form. Together with a clan of \"Inukami Users,\" they fight to vanquish evil. One such clan member, Keita Kawahira, is seen as a total loser. He doesn't take his job seriously, flirts with every woman he sees, and can't find a single Inukami willing to form a contract with him. Then, one day, he meets the Inukami \"Yoko.\" She is beautiful, fearless, and powerful beyond compare, but also self-centered and uncontrollable.", + "posterPath": "/fYJelXjN5DSJewfkfLb5sskcPYA.jpg", + "backdropPath": "/ooWXz0wOvy4XfynVe9AO7xYATEZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 7, + "popularity": 1.3933 + }, + { + "id": 204849, + "title": "YOHANE THE PARHELION -SUNSHINE in the MIRROR", + "originalTitle": "幻日のヨハネ -SUNSHINE in the MIRROR-", + "overview": "The story reimagines Yoshiko Tsushima, the school idol afflicted with chuunibyou (adolescent delusions of grandeur), as a magical girl. The story is set in Numazu, a scenic harbor town surrounded by the sea and mountains. Ever since she was little, the girl Yohane has never fit in, and has always felt apart from everyone in town. Her aspirations and true place in this world lie elsewhere. The story follows this girl who can't follow rules as she journeys into the mysterious world.", + "posterPath": "/tTRf5CCxXdPcqO4nCC0O4gwbhqg.jpg", + "backdropPath": "/3HE2KEKDAkFF6oTKtdpzGGU9WJZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 6, + "popularity": 1.393 + }, + { + "id": 84646, + "title": "Hero Mask", + "originalTitle": "ヒーローマスク", + "overview": "After a rash of mysterious deaths, Crown prosecutor Sarah Sinclair and SSC agent James Blood discover a conspiracy surrounding uncanny new bio-masks.", + "posterPath": "/lvmNXKPxwIVXoo2JbzmEWqJlcGb.jpg", + "backdropPath": "/40Q3wc47cxgrAKsxj0iJBS2mq57.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-12-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.893, + "voteCount": 28, + "popularity": 1.3928 + }, + { + "id": 128118, + "title": "Deep Insanity: The Lost Child", + "originalTitle": "ディープインサニティ ザ・ロストチャイルド", + "overview": "Madness and unawakening sleep, Randolph syndrome. This new illness is slowly but steadily approaching humanity, caused by the huge underground world Asylum that appeared in Antarctica. There are strange creatures different from the earth, and unknown resources. People bet their lives on the depths of the mysterious new world to get huge wealth, organizational plots, or their own ambitions. And here alone, a young man with a wish in his heart is trying to challenge the front line of Asylum.", + "posterPath": "/msYpjVD5wLRfZDdBTbnSej4tvTC.jpg", + "backdropPath": "/9SwK30KhUYlr4ReFM84NYv3sPVs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-10-13", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 11, + "popularity": 1.3905 + }, + { + "id": 25408, + "title": "F-Zero: GP Legend", + "originalTitle": "F-ZERO ファルコン伝説", + "overview": "Ryu Suzaku (Rick Wheeler) was a police detective who got into a near-fatal car accident while pursuing the criminal Zoda. He was placed into artificial coldsleep for 150 years. Ryu is brought back to life by Jody Summer and Dr. Stewart, who work with a group of good racers who try to keep prize money out of the hands of unsavory people like the Dark Million Organization run by Black Shadow and Deathborn, including a revived Zoda.", + "posterPath": "/KpSzQXImvUwNUN9rxubgIkrOQZ.jpg", + "backdropPath": "/yGq0cawKci9MuVTI6rjXj66dWc1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-07", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 7, + "popularity": 1.3899 + }, + { + "id": 73017, + "title": "Children of the Whales", + "originalTitle": "クジラの子らは砂上に歌う", + "overview": "As a magic wielder, young archivist Chakuro knows his time is short, but everything changes when a girl from the outside appears on his island.", + "posterPath": "/726IYhNnYkoCXCgqjUouqeixyfm.jpg", + "backdropPath": "/1EcKzdQXrofasR2ifI2MX7zKj5V.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-10-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.338, + "voteCount": 74, + "popularity": 1.3888 + }, + { + "id": 76142, + "title": "Magical Girl Ore", + "originalTitle": "魔法少女 俺", + "overview": "\"Love makes a girl stronger.\" Saki Uno is working hard as part of the new idol unit, Magical Twin. The one she admires most is Mohiro Mikage, who’s the older brother of her idol unit partner Sakuyo, and he’s also a member of the top idol unit STAR☆PRINCE. She would be willing to do anything for him, and one day, those feelings brought on a miracle. Saki ended up turning into a magical girl when she strongly wished to protect someone... But what she turned into wasn’t exactly what she was expecting...", + "posterPath": "/rZRPZ3304WByopmP0K4zVDar0Lx.jpg", + "backdropPath": "/rmTK4QYFFDwWoDqTMWzLlrQ7K6J.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-03-25", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 75, + "popularity": 1.3883 + }, + { + "id": 8819, + "title": "Hurricane Polymar", + "originalTitle": "破裏拳ポリマー", + "overview": "Onigawara, the director of the International Secret Police Agency, looked forward to making Takeshi a top-notch criminal investigator. Takeshi was given training, which turned him into an all-around sportsman as well as martial arts expert. However, Takeshi's attitude toward crime-fighting was so incompatible with Onigawara's, that he disowned him. For a while Takeshi investigated crime alone; then he became a private detective's assistant and general handyman. Secretly, however, Takeshi obtained from a scientist a new artificial polymer, polymet, that was far stronger than steel. With this polymet Takeshi transformed himself into Hurricane Polymar, an invincible costumed hero.", + "posterPath": "/yLWm1sNEeCgcmo1BpHpxuXW5eyy.jpg", + "backdropPath": "/3C76zopkjvDQDbLne29oDeT4LJi.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1974-10-04", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 6, + "popularity": 1.3883 + }, + { + "id": 96326, + "title": "R.O.D: Read or Die", + "originalTitle": "R.O.D リード・オア・ダイ", + "overview": "Yomiko Readman is a lovable, near-sighted bibliomaniac working as a substitute teacher at a Japanese high school. Her real identity, however, is that of a secret agent for the British Library Special Operations Division. Her codename: \"The Paper.\" The moniker denotes her supernatural ability to freely manipulate paper into any object she can imagine, including tools and weapons in her fight against the powerful and self-serving IJIN (Great Historical Figure) Army! Along with her partner, the enigmatic \"Ms. Deep,\" Yomiko travels across the world in attempt to solve the mystery behind the reincarnation of historical figures and their attempt to control the world.", + "posterPath": "/gKKOh21An8q51b1XBaveoqzlAZC.jpg", + "backdropPath": "/a0J4nKB4E8b3ttWdbw0RuTtHox4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2001-05-23", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 10, + "popularity": 1.3878 + }, + { + "id": 74096, + "title": "Just Because!", + "originalTitle": "Just Because!", + "overview": "At the end of the second semester of third year of high school, four students are prepared for graduation and feel the ending to their high school life. But that changes a little with the arrival of a transfer student.", + "posterPath": "/ui3wsXyiRZCc2ONQhKPMHXYQ8sF.jpg", + "backdropPath": "/wwrJIvrQx87WYmp3AMCoqAHR8qn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-10-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 50, + "popularity": 1.3874 + }, + { + "id": 26340, + "title": "Now and Then, Here and There", + "originalTitle": "今、そこにいる僕", + "overview": "Shu is a typical Japanese boy, but has an unbeatable, optimistic and determined attitude. However, when he sees a mysterious girl with strange eyes named Lala-Ru up on a smokestack, he is soon pulled into a strange desert world. Shu soon discovers the true terrors of war, which includes genocide, brutal torture, hunger, thirst, and child explotation. Now Shu is trying to save Lala-Ru, as well as his hard earned, and often relunctant, new friends from the insane dictator, Hamdo. Whether Shu can possibly accomplish saving those he cares about while still holding up to his values remains to be seen.", + "posterPath": "/vjw3X2Tv1C9zT2StFTdgPEJkxnB.jpg", + "backdropPath": "/tlhYSV24frn3XLQHyySW2fhp5Xf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "1999-10-14", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 45, + "popularity": 1.3871 + }, + { + "id": 42508, + "title": "Astarotte's Toy", + "originalTitle": "アスタロッテのおもちゃ!", + "overview": "While job hunting, Naoya is taken by a mysterious girl to a magical land where he is installed in the harem of the succubus Princess Lotte. Thanks to trauma from her childhood, Lotte hates men and surrounds herself with lots of other women, who all have quirks of their own. In spite of her selfishness, when Naoya learns that Lotte is really quite lonely he agrees to stay in her world...if he can bring his daughter Asuha with him.", + "posterPath": "/4ZmANWHQHRchkLdNJcgcZhbhqCC.jpg", + "backdropPath": "/a7zU79JLuSrr5qxJLnzrjykguM7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-10", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.219, + "voteCount": 32, + "popularity": 1.3869 + }, + { + "id": 66949, + "title": "First Love Monster", + "originalTitle": "初恋モンスター", + "overview": "When fifteen-year-old Kaho Nikaidou leaves her sheltered home to start life anew in a Tokyo high school dormitory, the last thing she expects is to nearly get hit by a truck! Saved in the nick of time by a handsome stranger, Kaho falls head over heels for him and, after finally tracking him down, boldly confesses her feelings. Turns out Kaho's mystery savior, Kanade, is the son of Kaho's new landlord! The handsome object of Kaho's affection agrees to go out with her, but her newfound bliss is short-lived when it turns out that her new boyfriend...is a fifth-grader?!", + "posterPath": "/4yXU5I8ZtYh7aNE6mZBGT4BLsiH.jpg", + "backdropPath": "/1ONYcGvKeRlJoweNNRJVBaVUXkN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.954, + "voteCount": 87, + "popularity": 1.3854 + }, + { + "id": 68100, + "title": "Touken Ranbu: Hanamaru", + "originalTitle": "刀剣乱舞-花丸-", + "overview": "The year is 2205. The \"historical revisionists\" have begun attacks on the past in their plot to change history. The Saniwa, who have been charged with protecting history, can imbue life into objects. Strongest among these are the Tōken Danshi. The story centers around their cheerful lives.", + "posterPath": "/riYgCndvjjx7QYnbOQOv3EXO4TJ.jpg", + "backdropPath": "/4lvvTsr6AavS909SXSQQmc2wXVo.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2016-10-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 15, + "popularity": 1.3842 + }, + { + "id": 256324, + "title": "Tokyo Override", + "originalTitle": "Tokyo Override", + "overview": "When a lonely hacker gets entangled with a group of underground couriers, they uncover the dark truth lurking beneath Tokyo's seemingly perfect facade.", + "posterPath": "/3MvNTEbOAgNsXPkzcYvBw6gJNzo.jpg", + "backdropPath": "/tugaJ46tP8r8aqnv4ORq1rDqQMY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-11-21", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.375, + "voteCount": 20, + "popularity": 1.383 + }, + { + "id": 96398, + "title": "SAKUGAN", + "originalTitle": "サクガン", + "overview": "One day in the distant future. Humans live shoulder to shoulder in “colonies” separated by rock. Outside the colonies, a dangerous undeveloped area called “the Labyrinth” is expanding. Those who risk their lives to develop “the Labyrinth”, who mark out the undeveloped areas, are known as “Markers”. A young girl, Memempu, who wants to be a Marker one day, and a man, Gagumber, who used to be one. This mismatched father and daughter now take on the Labyrinth! “If there’s no path, dig one!”", + "posterPath": "/j5qKYDIc9FHXtij3NaolOWOiK1I.jpg", + "backdropPath": "/wV08VrILSe4pPS5CiBzPy0TLzeN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-07", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 26, + "popularity": 1.3824 + }, + { + "id": 118151, + "title": "Seven Knights Revolution: Hero Successor", + "originalTitle": "セブンナイツ レボリューション -英雄の継承者-", + "overview": "Long ago, Heroes had saved this world. Many Heroes fought against the powers of Destruction and protected the world. Years in the future… The Heroes had disappeared as the years passed and those possessing their powers called Successors now have the fate of the world in their hands. One of the elite Successors known as the Seven Knights is fighting an army of the Destruction when she saves a boy named Nemo. During the battle, Nemo awakens the powers of a Hero even he didn't know about and displays his powers as a Successor. But his Hero is someone who no one knew and no one ever spoke of.", + "posterPath": "/dg5uxhusJlfJSq9ZtiPi4FRj0Gn.jpg", + "backdropPath": "/7QhJ9s0543p7ssTYAG6kKRrmj5F.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 10, + "popularity": 1.3812 + }, + { + "id": 73396, + "title": "Kanamemo", + "originalTitle": "かなめも", + "overview": "The story centers on Kana Nakamichi, a middle-school girl who had already lost her parents and just recently lost her only remaining relative, her grandmother. As a result, she ends up living and working at a newspaper delivery office. Everyone else living at the office are all charming, self-assertive bishōjo. The show follows Kana’s daily life in the fast-paced yet joyous environment.", + "posterPath": "/7wgVQQR65ZpuPzoLDmLleV54imw.jpg", + "backdropPath": "/sQXYko77XSNSDjk0MezXhRJBWIK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-07-05", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.444, + "voteCount": 9, + "popularity": 1.3812 + }, + { + "id": 22401, + "title": "Gate Keepers", + "originalTitle": "ゲートキーパーズ", + "overview": "Tokyo, 1969. Earth is under attack from the \"Invaders.\" The public is unaware of this but to the secret organization, A.E.G.I.S., the threat is known, and it is up them and their special powered \"Gate Keepers\" to stop this invasion.", + "posterPath": "/x7qKnc8j2sTPO1j51lvd5KYtv2s.jpg", + "backdropPath": "/cJ3qe6fdpPcz6ku9ArmabHPnxm9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-04-03", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 7, + "popularity": 1.3805 + }, + { + "id": 247367, + "title": "Übel Blatt", + "originalTitle": "Übel Blatt~ユーベルブラット~", + "overview": "Fourteen warriors set out to prevent an invasion, but only seven return. Three died along the way, and four were slain for betraying the empire. In truth, it is the Seven Heroes who turned on their allies so they could take all the glory. Ascheriit was their victim, but now, 20 years later, he is back to get revenge.", + "posterPath": "/2LuObyUIr1YlqbcwmypJT4tO6Bv.jpg", + "backdropPath": "/rtFYv6dXv3tiM3I0P2BBPML3Ch.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2025-01-11", + "releaseYear": "2025", + "originalLanguage": "ja", + "voteAverage": 6.907, + "voteCount": 27, + "popularity": 1.3804 + }, + { + "id": 105211, + "title": "Rail Romanesque", + "originalTitle": "レヱル・ロマネスク", + "overview": "In an alternate reality in Japan, railroads were the most popular form of travel and transportation. But the difference with these railways is that the trains were paired up with humanoid modules called “Railords.” Due to a popular new form of travel, the railroads were practically forgotten about and eventually, railways were discontinued…", + "posterPath": "/vZrbce5iXcyPkwZnrOLUZbTPnzW.jpg", + "backdropPath": "/ofOSjkiS5cIwkWhGviYNUO2WcbQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.889, + "voteCount": 9, + "popularity": 1.3801 + }, + { + "id": 70545, + "title": "World Conquest Zvezda Plot", + "originalTitle": "世界征服~謀略のズヴィズダー~", + "overview": "Tells the story of how a little girl was able to achieve world conquest with the use of her magical powers and faithful followers.", + "posterPath": "/4HDPhATzKdLklNAe4gy1CvUWPTh.jpg", + "backdropPath": "/5AyQ561JjiKzLGuyTkW04uVz6SD.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-01-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 1.38 + }, + { + "id": 42506, + "title": "The Mystic Archives of Dantalian", + "originalTitle": "ダンタリアンの書架", + "overview": "Six months ago, Lord Hugh Disward (Huey), lost his eccentric grandfather, Wes. To inherit Wes's estate, Huey must take guardianship over the 'Mystic Archives of Dantalian' that contains forbidden knowledge and a mysterious girl called Dalian. Dalian and Huey begin an unlikely partnership as they solve mysteries caused by Phantom Books.", + "posterPath": "/toIOVNIwyiGA4TBZavgDJnLwaKd.jpg", + "backdropPath": "/l4ZbEzBRz5Rwcj6HvDStqx6wSw5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2011-07-16", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 27, + "popularity": 1.3797 + }, + { + "id": 105902, + "title": "The iDOLM@STER Million Live!", + "originalTitle": "アイドルマスター ミリオンライブ!", + "overview": "Mirai Kasuga, who wants to carry on a dream she has yet to see. Shizuka Mogami, who yearns to be an idol and is shaken. Tsubasa Ibuki, who does not know what she can be serious about.\n\nAt 765 Production new idols gather and everyone's \"dreams\" will brought into brilliance at the theater! The long-awaited anime of \"The IDOLM@STER Million Live!!", + "posterPath": "/2QXWC8GdhyOOT6ILI7LUzrcuiPM.jpg", + "backdropPath": "/599NlZCBY0xET73HH18DcyGZtoX.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 1.3794 + }, + { + "id": 236142, + "title": "Delusional Monthly Magazine", + "originalTitle": "月刊モー想科学", + "overview": "In the town of Most City, a publishing house resides in the second story of an old building. The staff prints a monthly science magazine about the most shocking phenomena that even scientists find impossible. The handsome editor-in-chief, Taro, is assisted by grade-schooler Jiro and his dog, Saburo. But when scientist Goro Sato seeks their help, it sparks the beginning of a bizarre new tale...", + "posterPath": "/jheWhgrMYXb9mvbnKwlQ83c2Skm.jpg", + "backdropPath": "/rkFpE2TWbOwwgF7TYsXPduGC80h.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-01-11", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 4.2, + "voteCount": 6, + "popularity": 1.3783 + }, + { + "id": 68634, + "title": "D-Frag!", + "originalTitle": "ディーふらぐ!", + "overview": "Kazama Kenji likes to believe he is something of a delinquent. Moreover, others seem to like to agree that he is. Of course, Kenji's gang finds their way to a group of four not-so-normal girls—Chitose, Sakura, Minami and Roka—and all at once, whatever reputation he may have is nothing compared to the outrageous behavior of the girls. Shanghaied into joining their club, what will happen to his everyday life from that point on?", + "posterPath": "/fLk0HqJw43bke7ImcaYNQjoUeEP.jpg", + "backdropPath": "/c98kQqMBpDe3VDoHCwcboG1Qxbb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-01-07", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.761, + "voteCount": 46, + "popularity": 1.3775 + }, + { + "id": 254198, + "title": "Black Lagoon: Roberta's Blood Trail", + "originalTitle": "Black Lagoon: Roberta's Blood Trail", + "overview": "The 'bloodhound' awakens when her master, and head of the Lovelace family is assassinated.", + "posterPath": "/kdLLOA72JDVs1pLeBN95rRQY91b.jpg", + "backdropPath": "/95Vot3A7D3njNdOpiCsSaygpygb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 80, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Crime", + "Animation", + "Drama" + ], + "releaseDate": "2010-07-07", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 21, + "popularity": 1.3772 + }, + { + "id": 84660, + "title": "My Roommate is a Cat", + "originalTitle": "同居人はひざ、時々、頭のうえ。", + "overview": "Getting a roommate is the last thing an eccentric author like Mikazuki would do, until a stray cat sparks an idea for his next novel. After plucking the little killer off the streets, Mikazuki is inspired in ways he would have never expected", + "posterPath": "/8LCpZRIzPEDnr0kBBayavqjMYo5.jpg", + "backdropPath": "/jGAkSHs3saH4HGBHVQ808DHUzXK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2019-01-09", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 40, + "popularity": 1.3771 + }, + { + "id": 65926, + "title": "Bakuon!!", + "originalTitle": "ばくおん!!", + "overview": "The story revolves around high school girls who discover the appeal of motorcycles. Sakura Hane is a high school student who looks a little bit like an airhead. On the way to her all-female high school one day, she is worn-out climbing a hilly road with a bicycle, but she sees a girl named Onsa Amano who is riding a motorcycle. Sakura immediately becomes interested in motorcycles, and she and Onsa join the motorcycle club at the school. Then, Sakura sets out to get her license.", + "posterPath": "/nCnI1xttsX9Yf3cT25lM7WsBPy.jpg", + "backdropPath": "/m3xoJjTDaAfigLU7YtCGYMb9uvX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.905, + "voteCount": 21, + "popularity": 1.3758 + }, + { + "id": 34790, + "title": "Starship Operators", + "originalTitle": "スターシップ・オペレーターズ", + "overview": "For the 73rd class of cadets of the Defense University of the small planet Kibi, a maiden voyage on the new warship Amaterasu is a fitting event just before graduation. As they are returning home, however, they are shocked to hear news of a declaration of war by the aggressive Kingdom of Henrietta against Kibi.\n\nWhen the Kibi government surrenders without a struggle, the cadets decide to fight back using the Amaterasu, with funding from the Galaxy News Network. The only stipulation? Exclusive airing rights to the action and good ratings. So, the cadets find themselves the \"stars\" of their own reality show.", + "posterPath": "/v21ilHIRtt6LYyxox7G3I0HoWrt.jpg", + "backdropPath": "/4hfibq0JTmC7SGbkXsI3kEd3Tiy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2005-01-05", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.333, + "voteCount": 6, + "popularity": 1.3752 + }, + { + "id": 94294, + "title": "Africa Salaryman", + "originalTitle": "アフリカのサラリーマン", + "overview": "The comedy follows a lion, toucan, and lizard as they live the lives of office workers in a capitalist society in Japan, while also dealing with their unique situations as animals living beyond the savanna and the food chain.", + "posterPath": "/tbFQtlcg04fKo54vGQnqy5PEvJP.jpg", + "backdropPath": "/p62CSi9kLUaPmzI8bXB7ATrMWvb.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-10-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 11, + "popularity": 1.3744 + }, + { + "id": 69607, + "title": "Rail Wars!", + "originalTitle": "レールウォーズ", + "overview": "Takayama enters the training program of JNR with the ambition of becoming one of the venerable train company's engineers. As a trainee he is teamed up with fight-ready Sakurai and stolid Iwaizumi and fellow Haruka Kōmi who has encyclopedic knowledge of trains. Together they learn how security officers for the train line work and get involved in more than one tricky situation.", + "posterPath": "/atlRfopvtMPdu4eLuh4kIXXODXF.jpg", + "backdropPath": "/vH8NqN2LMcmtBv037iHGwcPOgCZ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.737, + "voteCount": 19, + "popularity": 1.3744 + }, + { + "id": 71922, + "title": "Invincible Steel Man Daitarn 3", + "originalTitle": "無敵鋼人ダイターン3", + "overview": "Brilliant scientist Sōzō Haran was conducting research on Mars when he created the Meganoids, a new form of cyborg life capable of metacognition. Suddenly Dr. Haran lost control of his creation as the Meganoids slaughtered him and his entire family, save his youngest son, the 16-year-old Banjō Haran. Banjō escaped from Mars on a rocket ship with Daitarn 3, a solar-powered super robot. Now 18 years old and living on Earth, Banjō fights against the Meganoids and their leader, Don Zauser. Banjō must gather allies to help him stop the Meganoid threat, which aspires to turn all humans into cyborgs and \"improve\" the human race.", + "posterPath": "/jEr2olEf7ypfKafHrAM9HMYMDHL.jpg", + "backdropPath": "/yG5ZuJ2FVusXR6v6oCNnRoMUPzQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1978-06-03", + "releaseYear": "1978", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 13, + "popularity": 1.3735 + }, + { + "id": 70805, + "title": "Invaders of the Rokujouma!?", + "originalTitle": "六畳間の侵略者!?", + "overview": "Kōtarō Satomi decided to live on his own when he began high school, and chose Room 106 of Corona House because it was cheap. Unfortunately, Kōtarō soon discovers that numerous otherworldly and supernatural girls also want his room for various reasons of their own, and aren't about to back down. As a result, Kōtarō and the girls find themselves forced to live together as they try to settle just who ends up with the room.", + "posterPath": "/8i6QjMLZPPUVv8XGWyelGCCBBmS.jpg", + "backdropPath": "/6ZsaoUHOTI51exUfszv96CrRY2j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.444, + "voteCount": 18, + "popularity": 1.3725 + }, + { + "id": 240633, + "title": "A Journey Through Another World: Raising Kids While Adventuring", + "originalTitle": "異世界ゆるり紀行 ~子育てしながら冒険者します~", + "overview": "After a god accidentally slays him, Takumi’s reborn with new skills in a monster-filled forest where he stumbles upon twins. They’re sweet, adorable, and super strong! Won over instantly, he names them Alan and Elena, becomes their guardian, and joins an adventurers’ guild to provide for his new family. And so starts his chill life of adventure, watching over Alan and Elena’s growth!", + "posterPath": "/xvFV6ADOmUZfK28aLrPAXmxrEZO.jpg", + "backdropPath": "/1MoXMLA1pEQNh9l61f9NsxndVM7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2024-07-08", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.235, + "voteCount": 34, + "popularity": 1.3702 + }, + { + "id": 75992, + "title": "Engaged to the Unidentified", + "originalTitle": "未確認で進行形", + "overview": "Just an ordinary teenager, Kobeni Yonomori receives quite the surprise on her 16th birthday—a fiancé and a sister-in-law she never even knew she had. As a result of an arrangement that her late grandfather made, Hakuya Mitsumine and his younger sister Mashiro have moved from their countryside home to the Yonomori household in order to deepen their relationship with their new family members.\n\nThis story follows Kobeni's \"love life\" with Hakuya as she tries her best to adjust to the abrupt changes forced upon her. However, as some extraordinary secrets regarding the siblings come to light, Kobeni will find her life changed forever.", + "posterPath": "/uAIQS35hGd4uGP6pKaPiWvMwi5m.jpg", + "backdropPath": "/nOg3ROXoQHGpqntuyS3MI5nx3Vb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2014-01-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 36, + "popularity": 1.37 + }, + { + "id": 42504, + "title": "No. 6", + "originalTitle": "NO.6", + "overview": "In the near future, most of mankind now lives in a handful of city states. There, for the privileged elite, life should be perfect. But for young Sion, life has become a nightmare since letting a strange boy spend the night in his apartment. Banished to the outskirts of the city, Sion now finds himself in worse danger as his inquiry into a new series of mysterious deaths results in his being arrested on suspicion of murder! Now, on the run, the two young men have only one chance at survival.", + "posterPath": "/fQl45oYuu0N4gkdW4fbstqqOozh.jpg", + "backdropPath": "/ec5TBIOvmXG6lPppdf0NjDgZMk3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-07-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 64, + "popularity": 1.3694 + }, + { + "id": 61155, + "title": "Space Pirate Captain Herlock: Outside Legend - The Endless Odyssey", + "originalTitle": "Space Pirate Captain Herlock: Outside Legend - The Endless Odyssey", + "overview": "On an archaeological mission to the end of the known universe, Professor Daiba unwitting unleashes an ancient horror from its confines. Five years later the malevolent alien force sets in motion a plan which reunites the various crewmembers of the Arcadia to sail the stars once more as well as bring Tadashi Daiba to meet Harlock for the first time (again).", + "posterPath": "/mVvC1B72AAlHX4g6Sh02MTylNiD.jpg", + "backdropPath": "/kpY6iMfKkssuD1WObzoGSIeMguY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-12-21", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 12, + "popularity": 1.3679 + }, + { + "id": 117945, + "title": "Joran: The Princess of Snow and Blood", + "originalTitle": "擾乱 THE PRINCESS OF SNOW AND BLOOD", + "overview": "The year is 1931. Prince Tokugawa Yoshinobu holds absolute control over Japan. Remnants of the Meiji era’s culture can be seen around the city, but scientific technology and Japanese esoteric cosmology Onmyodo are also developing. Yet lurking behind the glitz is Kuchinawa, a dissident group planning the assassination of the prince. Tasked to extinguish these dissidents is Nue, the government’s secret executioner group. Sawa Yukimura, who works for this organization, suffered at the hands of the Kuchinawa boss. Her entire family was murdered and she dedicated her life to avenging their death.", + "posterPath": "/tvM2DRD7QXMb15VM5HTcPj81o2C.jpg", + "backdropPath": "/jyOLGAkO53ium777usyAmpJUe1E.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-03-31", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 41, + "popularity": 1.3674 + }, + { + "id": 55065, + "title": "Unlimited Psychic Squad", + "originalTitle": "THE UNLIMITED 兵部京介", + "overview": "You don't have to be psychic to know that Hyobu Kyosuke is trouble waiting to happen, but having psychic powers of your own may be your only chance if you want to stand against him. One of the most powerful espers on the planet, Hyobu's incredible range of abilities extends as far as controlling his own aging process, and the potential strength of all his talents combined is so terrifying that he wears a device that limits their use except in cases of extreme emergency. The time is coming, however, when Hyobu will need to unleash everything he has.\n\nSometimes it takes a villain to do what heroes can't, and as the leader of the secret organization P.A.N.D.R.A., Hyobu's dedicated his life to fighting those who would entrap, enslave, or kill anyone with psychic powers. Now P.A.N.D.R.A. itself is in danger and, to combat that deadly threat, the gloves and limiter are coming off!", + "posterPath": "/rq8JOQgLfZ9LIC9FmcRrA1nWlyr.jpg", + "backdropPath": "/gNclYHhYcMBm5UOBpfFl45xTrq7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-01-08", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 12, + "popularity": 1.3662 + }, + { + "id": 229610, + "title": "A Playthrough of a Certain Dude's VRMMO Life", + "originalTitle": "とあるおっさんのVRMMO活動記", + "overview": "Taichi Tanaka is just an ordinary 38-year-old who enjoys video games. He starts a new virtual reality multiplayer game called One More Free Life Online, naming his character Earth. Unlike his fellow players, he decides to master the most menial of skills in the game. He cooks the finest meals, overbrews complicated potions, and hunts monsters with handmade weapons. His fantasy life begins!", + "posterPath": "/ukCu3TQCTUFTZMf4QNMpxwf3ufO.jpg", + "backdropPath": "/sIycem5xR9OFoC3qVHRDuSpspIZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-03", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 34, + "popularity": 1.3654 + }, + { + "id": 110911, + "title": "BURN THE WITCH", + "originalTitle": "BURN THE WITCH", + "overview": "Historically 72% of all the deaths in London are related to dragons, fantastical beings invisible to the majority of the people. While unknown to most, some people have been standing up to these dragons. Only inhabitants of Reverse London who live in the hidden “reverse” side of London can see the dragons. Even then, only a selected few become qualified enough as witches or wizards to make direct contact with them. The protagonists of the story are witch duo Noel Niihashi and Ninny Spangcole. They are protection agents for Wing Bind (WB), an organization for dragon conservation and management. Their mission is to protect and manage the dragons within London on behalf of the people.", + "posterPath": "/eNq68NjT1KOdorphIqYeZF0BM9b.jpg", + "backdropPath": "/7R7BxbHz4RMId5YHEA3NqgZWXde.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-02", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 56, + "popularity": 1.3652 + }, + { + "id": 65616, + "title": "Nobunaga the Fool", + "originalTitle": "ノブナガ・ザ・フール", + "overview": "Many years ago the world was divided into two stars, the Eastern and the Western, that were connected by a bond known as the Dragon Pulse. On the Western Star, Jeanne D’Arc is shunned as a heretic for her visions of a champion who will save the planets that have become embroiled in war. Now the fate of two worlds hangs in the balance as, at the order of King Arthur, Jeanne travels from the West to the East with Leonardo Da’Vinci at her side, in search of their long awaited savior- Nobunaga!", + "posterPath": "/f8ilqAHCenHIrZpMOVATp57LZll.jpg", + "backdropPath": "/6O0lKgcqQBfzuaWUjcLZZU5rklh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2014-01-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 7, + "popularity": 1.3634 + }, + { + "id": 65932, + "title": "Concrete Revolutio", + "originalTitle": "コンクリート・レボルティオ~超人幻想~", + "overview": "What if every fabled superhuman existed at the same time, in the same place? Titans from outer space, life forms from a mystical world, phantoms and goblins from ancient times. In another Japan, it’s not just a question of \"what if\"—it's a reality.", + "posterPath": "/nxem8mWfpT1LD7GZ1wKEKRDlLqp.jpg", + "backdropPath": "/rYLyiKiRlRCtQb22Me9LJfCPTP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 16, + "popularity": 1.3633 + }, + { + "id": 113042, + "title": "Pretty Boy Detective Club", + "originalTitle": "美少年探偵団", + "overview": "Mayumi Dojima, a second-year student at the exclusive Yubiwa Academy middle school, has lost something—a star she glimpsed just once, ten long years ago. But help is on the way, in the form of the unofficial, secretive, and thoroughly mysterious Pretty Boy Detective Club! Rumored to solve problems within the school (most of which they themselves might as well created) for reasons aesthetic rather than financial, these five gorgeous boys sweep Mayumi into their world of excitement, danger, and overwhelming beauty.", + "posterPath": "/yriQ3nib4eJyHBviaw7nm5hzIpO.jpg", + "backdropPath": "/fL81d6le3QQNLEcoNtN6h95YqGa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "2021-04-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 19, + "popularity": 1.3632 + }, + { + "id": 76117, + "title": "Re-Kan!", + "originalTitle": "レーカン!", + "overview": "Amami Hibiki is a girl who can see ghosts and other supernatural phenomena in her surroundings. The stories follow her daily life with both her friends and the otherworldly.", + "posterPath": "/oNYaH3aDGg0jjTf1nzymQJfV6x.jpg", + "backdropPath": "/733ddvtLEi0YVFCmfmD1f7KaaM9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-04-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 11, + "popularity": 1.3619 + }, + { + "id": 213044, + "title": "LUPIN ZERO", + "originalTitle": "LUPIN ZERO", + "overview": "Lupin III, a bored junior high schooler in Tokyo, takes an interest in a young Daisuke Jigen, a mysterious and impressive marksman. After striking up a conversation with Jigen at a nightclub, the latter concludes that Lupin is simply a privileged and naïve boy from a well-to-do family and doesn’t want anything to do with him. However, while helping the nightclub singer Yoko, who is being pursued by the yakuza, Jigen learns that Lupin is the grandson of a legendary thief…", + "posterPath": "/zbUyE5Lc70yi88LHalRM7KFj89a.jpg", + "backdropPath": "/cEcjyE8UwVdnneTmbqDvRhlY6Np.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 80, + 10759, + 35 + ], + "genres": [ + "Animation", + "Mystery", + "Crime", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2022-12-16", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.174, + "voteCount": 23, + "popularity": 1.3616 + }, + { + "id": 75776, + "title": "Märchen Mädchen", + "originalTitle": "メルヘン・メドヘン", + "overview": "When the two girls meet, magic begins. Hazuki Kagimura loves stories, an orthodox girl who is overly imaginative. Because her relationship with her new family does not go well, the environment sends her toward the stories in which she spends her days. One day after school, Hazuki gets lost among the bookcases of the library, leading her to a mysterious school where meets Shizuka Tsuchimikado. It is a magic school where girls (called \"mädchen\") are selected by the magical texts from which the world's stories are born. Hazuki herself is said to be chosen by the book of Cinderella. In order to become a true magician, Hazuki becomes friends with Shizuka and begins her new life at the school.", + "posterPath": "/iU1wKwSKYb2uMyVZ1a7pJDnQf7V.jpg", + "backdropPath": "/hSRorUSU8DIXuW5gGyUAQ5J8bre.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 12, + "popularity": 1.3606 + }, + { + "id": 34139, + "title": "Earl and Fairy", + "originalTitle": "伯爵と妖精", + "overview": "In 19th century England, 17-year-old Lydia Carlton ekes out a living as a fairy doctor. She is one of the rare humans who can see and communicate with fairies, although almost no one believes her in this day and age. But Lydia s quiet country life is turned upside down when Edgar J. C. Ashenbert, who claims to be royalty, hires her for her fairy expertise. She joins his quest for an invaluable magic sword, traveling from the United Kingdom to the Fairy World in this adventurous romantic fantasy.", + "posterPath": "/8amrQqfqoApwp3H2ceizpcz0iIV.jpg", + "backdropPath": "/HVnGgGDBV2ojAkoG8UCbxJtNlP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2008-09-28", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 7, + "popularity": 1.3589 + }, + { + "id": 23713, + "title": "Over Drive", + "originalTitle": "オーバードライヴ", + "overview": "Mikoto Shinozaki is a high school student lacking in social awareness. In addition, due to his untidy appearance and low self-esteem, he is an easy target for bullies. Regardless, any misfortune that falls upon Mikoto is partly his own fault—at least, that is what Yuki Fukuzawa, the most popular girl in class, believes. With this assumption, Yuki invites Mikoto to join the school's bicycle club, in hopes he can improve himself and gain new friends. Motivated by feelings he has for Yuki, Mikoto has no reason to decline her offer—except for the fact that he does not know how to ride a bicycle.\n\nDespite his lack of even the fundamentals, Mikoto cannot get over the image of himself on a bicycle. Eventually, he succumbs to his curiosity and sneaks into the school grounds at night to practice. This begins Mikoto's journey as he pedals his way through the vast world of cycling, where the scenery of his life changes in ways he never thought possible.", + "posterPath": "/6SctfcGZx47SlLjxB3032KTPn0B.jpg", + "backdropPath": "/aaUbdIwaJcJT2tC6Lxf4RiSCG6s.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2007-04-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 9.2, + "voteCount": 5, + "popularity": 1.3584 + }, + { + "id": 45348, + "title": "Appleseed XIII", + "originalTitle": "アップルシードXIII", + "overview": "Following World War V, a global-scale conflict fought with non-nuclear weapons that almost halved the earth's population, the city-nation of Olympus stands as a beacon of hope in a world of chaos. The utopian metropolis is governed by Gaia, a vast artificial intelligence, and administered by genetically engineered humanoids known as bioroids. Although Olympus seems like a peaceful city on the surface, racial (human vs. bioroids vs. cyborgs), religious, and political conflicts lurk underneath -threatening to overturn the delicately balanced peace of this so-called utopia.", + "posterPath": "/5vd5X3LvKBZmN65SrqkwiV1xx96.jpg", + "backdropPath": "/dnLaooZ9upokQ3jk9I1G9OlYlm6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-07-06", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 15, + "popularity": 1.3569 + }, + { + "id": 87055, + "title": "Robot Carnival", + "originalTitle": "Robot Carnival", + "overview": "An anthology of various tales with robots being the one common element among them. It consists of nine shorts by different well-known directors, many of whom started out as animators with little to no directing experience. Each has a distinctive animation style and story ranging from comedic to dramatic story lines.", + "posterPath": "/4IFyW7E8tyWbR76xymkbniknI0T.jpg", + "backdropPath": "/qFRvBgN3kA2uKnOJ2BagM2CR8w3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 35, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Animation" + ], + "releaseDate": "1987-07-21", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 11, + "popularity": 1.3557 + }, + { + "id": 8799, + "title": "Gakuen Heaven", + "originalTitle": "学園ヘヴン", + "overview": "Gakuen Heaven is a media franchise originating from the PC game Gakuen Heaven: Boy's Love Scramble, originally released by the company SPRAY. The franchise gradually expanded to include more games, drama CDs, manga, and anime.", + "posterPath": "/9O3bMjnB82h3EjyfooMCFGNNTSV.jpg", + "backdropPath": "/w1atmfYHMwjp3Zqj38PlGhh9mVU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2006-04-01", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 8, + "popularity": 1.3549 + }, + { + "id": 38790, + "title": "Red Garden", + "originalTitle": "RED GARDEN", + "overview": "Four students of the same age have nothing in common except that they attend the same elite New York City school. Kate, Rose, Claire and Rachel all belong to different cliques and hardly notice each other's existence. Then one day they gain something in common, something very important, something mysterious. They find themselves drawn together by the death of a fellow student and the secret of their own missing memories. Suddenly they are thrown into a world of hidden warfare on the city streets and are caught up in secrets which would not be believed by others. These four all have their own problems to struggle with, things that seem more important than such strange conflicts. Can they escape from this fate? The only thing they know is that despite coming from four different worlds they now have to rely on each other or die without a hope.", + "posterPath": "/8hVUMzed0rnH347oY9kPJ6zeOAe.jpg", + "backdropPath": "/yosi9kyoF0uxrApTWnRaICPTVku.jpg", + "mediaType": "tv", + "genreIds": [ + 9648, + 16 + ], + "genres": [ + "Mystery", + "Animation" + ], + "releaseDate": "2006-10-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 7, + "popularity": 1.3547 + }, + { + "id": 74381, + "title": "Pingu in the City", + "originalTitle": "Pingu in the City", + "overview": "Pingu and his family move from their small village to the big city; in which there are many people with many different occupations. The ever-curious Pingu tries to join them at their jobs, but his mischievous side gets the better of him and he ends up messing things up.", + "posterPath": "/w64h379kW9IcsVuO1VUNJkHGAoz.jpg", + "backdropPath": "/8XPbO9dG9EbOBhx7hVV66NOhQ9V.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "2017-10-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 8, + "popularity": 1.3546 + }, + { + "id": 74087, + "title": "Dies Irae", + "originalTitle": "ディエス・イレ", + "overview": "On May 1, 1945 in Berlin, as the Red Army raises the Soviet flag over the Reichskanzlei, a group of Nazi officers conduct a ritual. For them, the slaughter in the city is nothing but the perfect ritual sacrifice in order to bring back the Order of the 13 Lances, a group of supermen whose coming would bring the world's destruction. Years later, no one knows if this group of officers succeeded, or whether they lived or died. Few know of their existence, and even those who knew began to pass away as the decades passed. Now in December in the present day in Suwahara City, Ren Fujii spends his days at the hospital. Every night he sees the same dream: A guillotine. Murderers who hunt people, and the black clothed knights who pursue the murderers. He is desperate to return to his normal, everyday life, but even now he hears his friend Shirō's words: \"Everyone who remains in this city eventually loses their minds.\"", + "posterPath": "/2BBcjIigr2CVnx7NiLsXeZVWmvR.jpg", + "backdropPath": "/7heDtXZGMWyKn1ptu8EofNWwjAW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-10-14", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.846, + "voteCount": 13, + "popularity": 1.3529 + }, + { + "id": 38270, + "title": "Fractale", + "originalTitle": "フラクタル", + "overview": "Clain lives quietly amongst doppels—holograms that replace his parents and friends. Alone on a typical day, he saves a shrine maiden from pursuers and treats her wounds. He’s mystified by her worldly charms, but she disappears—leaving only a pendant behind. When a curious girl emerges from the amulet, Clain’s life takes a chaotic turn as he seeks to unlock the secrets his new friend holds.", + "posterPath": "/mCP1WkiHSJCagxspLrMjI6xz4Y0.jpg", + "backdropPath": "/gIV7RvCgl2Y6WCqa2fkGBf6vpqt.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-01-14", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 15, + "popularity": 1.352 + }, + { + "id": 94412, + "title": "The Case Files of Jeweler Richard", + "originalTitle": "宝石商リチャード氏の謎鑑定", + "overview": "One night, a college student with a strong sense of justice, Seigi Nakata, saved a gorgeous foreigner, Richard, who was being harassed by some drunks. When Seigi found out that Richard was a jeweler, he asked for an appraisal on a ring with a shady history; one which his grandmother had kept secret until she died. The appraisal had revealed her past, truth, and desire. It led Seigi to work as a part-time employee for Richard's jewelry store, the \"Jewelry Etranger\" in Ginza. While solving various \"mysteries\", the relationship between Richard and Seigi gradually changes.", + "posterPath": "/vrWt8p1ua12108HQvAD6DxDHO94.jpg", + "backdropPath": "/20pyHqkc9tdlJxiTK4ymz8wibuS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 16, + "popularity": 1.3516 + }, + { + "id": 46669, + "title": "Skip Beat!", + "originalTitle": "スキップ・ビート!", + "overview": "Kyoko followed her true love and childhood friend Sho to Tokyo so she could help him reach his dream of becoming an idol. She cleans, cooks, works three jobs and does nothing for herself because she loves him so much, but gets nothing in return. Still, she remains by his side. But then one day she goes unannounced to his agency with a delivery, and overhears him talking about her; he reveals to his manager that he only took her with him as a maid, and that he doesn't care for her at all. Upon hearing this, Kyoko doesn't just sit around and cry. She cuts and dyes her hair, changes her clothes and attitude and thus begins her journey to join showbiz and have her revenge against Sho", + "posterPath": "/swcwu5M0xoquONxobt57hWK7U9M.jpg", + "backdropPath": "/jVPIY05Fmweb6xjMSQqbjfWg379.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2008-10-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 23, + "popularity": 1.3482 + }, + { + "id": 80461, + "title": "Music Girls", + "originalTitle": "音楽少女", + "overview": "Haru Chitose, Eri Kumagai, Sarasa Ryuuouh, Kiri Mukae, Uori Mukae, Sasame Mitsukuri, Miku Nishio, Hiyo Yukino, Shupe Gushiken, Kotoko Kintoki, and Roro Morooka are the eleven members of \"Music Girls,\" an idol group produced by Pine Records. However, they're a third-rate idol group that can't seem to sell CDs at all. But even though they're obscure and constantly in debt, the members and their producer, Ikehashi, are all trying their hardest. Ikehashi gets the idea that Music Girls needs a new member—an idol who can light a fire under them so that they can grasp success!", + "posterPath": "/q8TmLDjJfWThF7zQDegIRHR6dd9.jpg", + "backdropPath": "/y7nBMKj27JHVbuy3KcLFn89Sb1P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-07-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 14, + "popularity": 1.3474 + }, + { + "id": 34064, + "title": "Useless Animals", + "originalTitle": "だめっこどうぶつ", + "overview": "One day, Uruno, a useless Wolf, is looking for a new home. He finds a forest full of animals that don't quite fit their parts. A bunny that is ill tempered, a clumsy cheetah and a near-sighted eagle.", + "posterPath": "/4OmfYgueeaKkcHsSF6j9woUMEST.jpg", + "backdropPath": "/xNXELhOzPv59D6umSx5YQNpWuWL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-01-17", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 5, + "popularity": 1.3469 + }, + { + "id": 70636, + "title": "Clockwork Planet", + "originalTitle": "クロックワーク・プラネット", + "overview": "One day, a black box suddenly crashed into the house of the high school dropout Naoto Miura. Inside it was a female automaton. The endless cycle of failure and success.\n\nThe world that does change and the mankind that does not change. At a time where reality and fantasy are screaming, the encounters of these two make the gears of fate move!", + "posterPath": "/ztrVDB4G7L0zq9Geeh7FLPFWMwO.jpg", + "backdropPath": "/lDPjEomHROm0N6goQbT68i5HhIG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.327, + "voteCount": 26, + "popularity": 1.3465 + }, + { + "id": 3240, + "title": "Deltora Quest", + "originalTitle": "デルトラ・クエスト", + "overview": "The evil Shadow Lord has taken control of the kingdom of Deltora and has driven the land and its people into misfortune and suffering. Lief, the son of a blacksmith, has just turned sixteen and is entrusted, along with his two companions Barda and Jasmine, with an important mission: to retrieve the stolen seven magical stones that once reunited within the Belt of Deltora, will bring power to the true heir of Deltora and give him the power to free the kingdom from the tyranny of the Shadow Lord. There is just one problem; the seven stones have been scattered all across Deltora and currently reside in the hands of seven wicked men who are not easily willing to give them up.", + "posterPath": "/yNPeSzSAitFBNae4KkZnLX94CKV.jpg", + "backdropPath": "/4zh4BxuIbvEBIOMSZJD2wxo4QHT.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 16, + 10751 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Animation", + "Family" + ], + "releaseDate": "2007-01-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 8, + "popularity": 1.3435 + }, + { + "id": 53356, + "title": "Humanity Has Declined", + "originalTitle": "人類は衰退しました", + "overview": "It has been several centuries since human population has declined. Food has become harder to find and what little sources the humans have are considered highly valuable. The most prosperous species on the Earth are \"Fairies\", 10 cm tall creatures with high intelligence and a great love for sweets. A nameless girl, the main character, became a UN arbitrator between the humans and the fairies and had returned to her hometown to help her grandfather. One day, the village is sent some strange products made by a company called FairyCo. Since the villagers are wary of using the products, the girl, her grandfather, and a nameless boy decide to go to the factory to find out about the mysterious products and who is behind making them.", + "posterPath": "/qIjgpu5TNLmCW6Xy5PEEMaKm9s3.jpg", + "backdropPath": "/5sb5LaaS89yLzTH1wj5gdfxUjbV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-07-02", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 22, + "popularity": 1.3421 + }, + { + "id": 69038, + "title": "Saki Episode of Side A", + "originalTitle": "咲-Saki-阿知賀編 episode of side-A", + "overview": "Nodoka Haramura's appearance on television playing in a high school mahjong tournament inspires her old Jr. high school friends to reform their schools club so they can meet and play her in the National High School Mahjong Tournament.", + "posterPath": "/tcaaNgqC5cVgFpj1Zo00LMFYbIV.jpg", + "backdropPath": "/kyTlqmEvxS3a7HJWRPR2IIzpgtP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-04-09", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 7, + "popularity": 1.3412 + }, + { + "id": 78589, + "title": "Kinmoza!", + "originalTitle": "きんいろモザイク", + "overview": "The story begins with Oomiya Shinobu, a 15-year-old, seemingly pure Japanese girl who actually did a homestay in Great Britain. Even after coming back to Japan, she still misses her time overseas. One day, an airmail letter arrives from Alice, the girl in Shinobu's host family in Great Britain. The letter reads: Shinobu, I'm coming to Japan! The Japanese/British girls' mixed comedy follows the lives of Shinobu, Alice, and other girls from both Japan and Great Britain.", + "posterPath": "/uMIbQh40ahkj24qEUGVl8QbXqVC.jpg", + "backdropPath": "/8MsyMRW2wNT6TGdWG2zQuXukQty.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-07-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 20, + "popularity": 1.3409 + }, + { + "id": 222625, + "title": "Atelier Ryza: Ever Darkness & the Secret Hideout the Animation", + "originalTitle": "ライザのアトリエ 〜常闇の女王と秘密の隠れ家〜", + "overview": "Ryza is an ordinary girl. Tired of boring village life, she escapes the village to gather with her good friends in a secret location to talk of their dreams and plan thrilling adventures. One day, the determined Ryza and company decide to head for the forbidden \"island across the shore\" as their first exploration trip. Together with the alchemist and other friends they meet there, they have a \"summer adventure\" that they will never forget.", + "posterPath": "/q7YTLFyK61mV5bequiI3b5uDLlm.jpg", + "backdropPath": "/vIjgy3WvXWT1xTFZYrzANYUXTQH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-07-02", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 26, + "popularity": 1.3405 + }, + { + "id": 46419, + "title": "Aim for the Ace!", + "originalTitle": "エースをねらえ!", + "overview": "Hiromi Oka, a first-year student at West High School, joins the tennis club admiring Reika Ryuzaki, aka Mrs. Butterfly, and senior Todo. She is a complete beginner, but as soon as she joins the club, the devilish coach, Munekata, sees her talent.", + "posterPath": "/m51oSLHGKKFrtQPoNSKyWWdvwDW.jpg", + "backdropPath": "/5kwOJBhBYxOWafm5yxeZdkb8SpI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1973-10-05", + "releaseYear": "1973", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 6, + "popularity": 1.3402 + }, + { + "id": 20046, + "title": "Casshan", + "originalTitle": "新造人間キャシャーン", + "overview": "Dr. Azuma creates robots to benefit mankind, but they unexpectedly rebel and begin to destroy everything in their paths. To deal with the catastrophe, Dr. Azuma's son volunteers to become a human robot, even though he knows he will never be able to return to human form again. He confronts this grave situation to ensure a bright future for all humans.", + "posterPath": "/5P7NFuAqGyh1ohKKCba008ZRB52.jpg", + "backdropPath": "/AiStDwvVMjw2uLm9dcMuxiRV1MZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1973-10-02", + "releaseYear": "1973", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 8, + "popularity": 1.3399 + }, + { + "id": 120471, + "title": "The Ancient Magus' Bride: The Boy from the West and the Knight of the Blue Storm", + "originalTitle": "魔法使いの嫁 西の少年と青嵐の騎士", + "overview": "Gabriel, an ordinary boy who has just moved from London to the countryside, is bored and misses the friends he left behind. He gazed out the window, as if wanting to escape from it all... until something strange caught his attention: mysterious smoke rising from the woods near his house. As he follows it to investigate, his world becomes intertwined with the hidden world of mages.", + "posterPath": "/dVBxPJVLLcYOKVdHWYj5lPsKrGv.jpg", + "backdropPath": "/wsaiduIOtyhlySRp3tg5tCYcw3m.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2021-09-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 20, + "popularity": 1.3396 + }, + { + "id": 52890, + "title": "Yuyushiki", + "originalTitle": "ゆゆ式", + "overview": "The daily school life of three girls, Yuzuko, Yukari, and Yui, who join their high school's Data Processing Club. The odd friendship between the three make for wacky humor in even the most mundane of events.", + "posterPath": "/7ET1aeziApwAzeT7JG4mGAGaKEQ.jpg", + "backdropPath": "/8FGfHN11p8rX9DYoGkG1PmlAX1H.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-04-09", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 37, + "popularity": 1.3384 + }, + { + "id": 201363, + "title": "My Unique Skill Makes Me OP Even at Level 1", + "originalTitle": "レベル1だけどユニークスキルで最強です", + "overview": "Ryota Sato gets the surprise of his life when he's suddenly transported into another world and nearly clobbered at the hands of the young, pretty adventurer Emily Brown. This new world revolves around defeating monsters and profiting on whatever they drop—food, money, items, etc. Unfortunately for Ryota, he has no skills to speak of...until he learns he has the ability to get rare drops! Suddenly his luck turns around...or does it?", + "posterPath": "/cIrptxkpf3SNcPty3JaywvWRJ5w.jpg", + "backdropPath": "/glsypl8RS4mbKAOxhtgc4p4YDEz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 54, + "popularity": 1.3381 + }, + { + "id": 62283, + "title": "Ultimate Otaku Teacher", + "originalTitle": "電波教師", + "overview": "Kagami Junichirou was known as a physics genius when he was a teenager, and he was even published in \"Nature.\" However, after college, he suddenly lost all interest in science. As a NEET, he's devoted himself to his anime blog and nerdy collecting habits. He claims he has a serious illness called \"I can't do anything I don't want to do.\" Desperate to get him to do something with his life, his little sister manages to get him a job teaching physics at his old high school. He's certainly an unconventional teacher, but he becomes fairly popular with the students. After helping a girl who's being ruthlessly bullied, Kagami finds that he actually likes teaching. Will he continue his career as a weird teacher? Will he go back into physics? Or will he end up back where he started?", + "posterPath": "/sviWdbsLRWrI2tLpBe8ubVP1Cza.jpg", + "backdropPath": "/d8d2un3pQbBoBgZ3c67XplBBy9g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 41, + "popularity": 1.3375 + }, + { + "id": 95916, + "title": "Birdy the Mighty", + "originalTitle": "鉄腕バーディー", + "overview": "Tsutomu, an average middle school kid busy studying for the final exams to enter high school runs into a man running from someone and gets caught up in the chase. In all the confusion he gets accidentally killed. Luckily Birdy (an interplanetary agent) knows a way to save him, unfortunately that means joining bodies to become one. So now he is stuck with this officer and along for the ride capturing criminals and saving lives.", + "posterPath": "/b6a6wcA8DVnD9GRnHrgjz0R4S48.jpg", + "backdropPath": "/gR2Km25XL6cUKT4hgb0N9qKpLcT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-07-25", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.643, + "voteCount": 14, + "popularity": 1.3368 + }, + { + "id": 94405, + "title": "Wave, Listen to Me!", + "originalTitle": "波よ聞いてくれ", + "overview": "The stage is Sapporo, Hokkaido. One night, our heroine, Minare Koda, spills her heartbroken woes to a radio station worker she meets while out drinking one night. The next day, she hears a recording of her pitiful grumbling being played live over the air. Minare storms into the station in a rage, only to then be duped by the station director into doing an impromptu talk show explaining her harsh dialogue. With just one recording, the many eccentric facets of Minare's life begin to pull every which direction as she falls ever deeper into the world of radio.", + "posterPath": "/g2wTROLPbCCX1ekBItjTmotfpYy.jpg", + "backdropPath": "/lQN63vBWPlkaqL6bDtHcisau1hM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2020-04-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.886, + "voteCount": 22, + "popularity": 1.3365 + }, + { + "id": 20485, + "title": "Tenchi in Tokyo", + "originalTitle": "新・天地無用!", + "overview": "When Tenchi sets out for the bright lights of Tokyo, his harem of scandalous space vixens won’t take their abandonment lying down! The jilted lovers use an inter-dimensional tunnel to keep tabs on Tenchi and visit him—in bed—any time they please! The claws come out when the girls find out Tenchi has a super cute new girlfriend—and her intentions are anything but honorable!", + "posterPath": "/4IrO5vNH7UVvMWVbJSe4L2Afhee.jpg", + "backdropPath": "/5hWwHMCln3N7APZOajZ6cTe4llG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1997-04-01", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 5, + "popularity": 1.3351 + }, + { + "id": 82509, + "title": "Sumomomo Momomo - The Strongest Bride on Earth", + "originalTitle": "すもももももも ~地上最強のヨメ~", + "overview": "Koushi is in high school, oblivious to the marriage arranged for him at his birth. Enter Momoko Kuzuryuu: airhead martial artist and Koushi's self-proclaimed bride. Her wish for sexual intercourse meets with Koushi's square refusal as he has absolutely no desire to get it on with someone who looks like she could be his little sister, not to mention that he doesn't have the foggiest idea who she actually is.\n\nMeanwhile, a war has broken out between the martial arts families. For Koushi, this means that numerous fighters are out to challenge/assassinate him.", + "posterPath": "/dqTGGbhb5fgsWP3hZsgpi0b8EXD.jpg", + "backdropPath": "/qATlpHOMgIWfrdTrGiW9S2DT0zK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2006-10-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 10, + "popularity": 1.3336 + }, + { + "id": 39025, + "title": "Mouse", + "originalTitle": "マウス", + "overview": "Sorata is an art instructor at Yamanoue School. At the young age of 20 he is already a full-fledged teacher with a meek and nerd-like disposition. Yet Sorata has a secret: he's Mouse, the internationally infamous thief.", + "posterPath": "/r5RJRhGPop5PwOF3xBHeM07wkhf.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2003-01-05", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 1.3334 + }, + { + "id": 34857, + "title": "Project Arms", + "originalTitle": "プロジェクトアームズ", + "overview": "ARMS is an manga series that is heavily influenced by Alice's Adventures in Wonderland. The series is created by Kyoichi Nanatsuki and Ryoji Minagawa. In 1999, the manga received the Shogakukan Manga Award for shōnen.\n\nThe manga was adapted as an anime series called Project ARMS.\n\nIt stars a young man named Ryo Takatsuki, who at the beginning of the series believes that he was in an accident causing his right arm to be severed from his body. However, as the story progresses, it is revealed that he was actually a test subject for experiments involving genetics and an \"ARMS\" nanomachine implant, along with 3 other youths: Kei Karuma, Takeshi Tomoe, and Hayato Shingu. They all meet under strange circumstances and after many battles they set off on a journey to rescue Ryo's girlfriend Katsumi Akagi who is kidnapped by the Egrigori. The Egrigori are the creators of the ARMS technology.", + "posterPath": "/AvVVjZGDuzs7swZ1FFk5FuHQuUF.jpg", + "backdropPath": "/2ppLvpFfCSU2nAzgmOmljkRvK4P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2001-04-07", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 6, + "popularity": 1.3318 + }, + { + "id": 22098, + "title": "El-Hazard: The Wanderers", + "originalTitle": "神秘の世界エルハザード", + "overview": "Makoto Mizuhara is working on his latest experiment in the school science lab, but when he takes a break his lifelong rival Katsuhiko Jinnai shows up and attempts to destroy the device and discredit Makoto. This overloads the experiment and transports Makoto, Jinnai, his sister Nanami, and their teacher Mr. Fujisawa to the strange and magnificent world El Hazard. Makoto and Fujisawa land squarely in the Kingdom of Roshtaria, and quickly befriend the princess Rune Venus. Jinnai allies himself with the Bugrom, a race of giant insects bent on taking over El Hazard, while his sister tries to eke out her own living in the desert. Makoto searches desperately for a way to return home, all the while fighting off the Bugrom, enlisting the help of the Holy Priestesses, and stopping the demon god Ifurita from destroying everything.", + "posterPath": "/1HpjsoNmLdQRzZX3F3PLSES0JKk.jpg", + "backdropPath": "/jdV7tTcuS6cS0OeVB4fDvhgwn2P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1995-10-06", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 11, + "popularity": 1.3317 + }, + { + "id": 26328, + "title": "Ga-Rei-Zero", + "originalTitle": "喰霊-零-", + "overview": "In Japan, there exists a government agency known as the Supernatural Disaster Countermeasures Division (SDCD), whose duty is to protect the citizens from creatures unseen. They are able to dispatch these monsters swiftly and without alerting the general public. But currently, they face a different challenge: the betrayal of one of their own.", + "posterPath": "/2EVMtqOkdqYRNUmSROhT6ulpMS3.jpg", + "backdropPath": "/9Hc3us4JDo0VXvnbvzVh2BZlcgP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2008-10-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 53, + "popularity": 1.3311 + }, + { + "id": 68070, + "title": "WWW.WAGNARIA!!", + "originalTitle": "WWW.WORKING!!", + "overview": "Daisuke Higashida gets a job at a restaurant because of family financial difficulties, but no one who works there is normal.", + "posterPath": "/4DLznAYyNCGcU5CTi6O8F4qFHeI.jpg", + "backdropPath": "/iHSLkPqGmEc20DbygmjrNMivqEF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-01", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 35, + "popularity": 1.3299 + }, + { + "id": 53808, + "title": "Muromi-san", + "originalTitle": "波打際のむろみさん", + "overview": "Mukoujima Takurou is a lonely teenager who spends his time fishing at the pier and, to his incredible surprise, fishes up Muromi, a mermaid. Muromi first off doesn't realize she's a mermaid until she meets Takurou. Not only that, she is incredibly dense and crazy and has a drinking problem to top it off. Now every time Takurou goes fishing, Muromi appears and makes life interesting for him.", + "posterPath": "/oqRP005iL9tfyHyoNCWPSgVFQHE.jpg", + "backdropPath": "/iWW7A17Js672Df0ZUCIg7KtFCqH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 16 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2013-04-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 1.3293 + }, + { + "id": 43417, + "title": "Burn-Up Excess", + "originalTitle": "BURN-UP EXCESS", + "overview": "Follows the exploits of Team Warrior, a special anti-terror wing of the Neo-Tokyo Police force. Team Warrior is comprised of the habitually broke Rio, gun-crazy Maya, computer specialist Lillica, tech-expert Nanvel, pilot/voyeur Yuji, and is led by the enigmatic Maki. The team faces a number of missions, ranging from bodyguard duty, breaking up robbery and arms rackets, and providing security for a very powerful tank. Rio and company continually thwart the terrorist aims of Ruby, an operative for a shadowy cabal of powerful men. Before the final showdown, the circumstances behind the formation of Team Warrior, how the precocious Rio came to join it, and Maki's painful past will be revealed.", + "posterPath": "/rNENtyLLQD7NwdwpI50470pZxQt.jpg", + "backdropPath": "/4nSfaJQLbUDTctXoHEEMR6wfRTo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1997-12-12", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 7, + "popularity": 1.3281 + }, + { + "id": 244435, + "title": "TOUKEN RANBU KAI KYODEN", + "originalTitle": "刀剣乱舞 廻 -虚伝 燃ゆる本能寺-", + "overview": "In 2205 A.D., evil forces attack the past, threatening to alter the course of history. The judge calls on four swordsmen, with blades blessed by a Shinto priest, to protect the past and save the future. Loyal to their former master, the demon king Oda Nobunaga, they travel back to the Honnoji Temple where he was murdered. Can they stop evil in its tracks and preserve the past? Only time will tell.", + "posterPath": "/9hIzzqnQD94EE2SPiZs6da1XSIn.jpg", + "backdropPath": "/lvndABJgYFihAGocI1hPgqv7yxu.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2024-04-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 1.3277 + }, + { + "id": 20531, + "title": "Magnet Robot Gakeen", + "originalTitle": "マグネロボ ガ・キーン", + "overview": "Dr. Kazuki, who perceived of an invasion of Earth by the Izaru people builds a robot based on the science of magnetism and sphere joint theory. Undergoing a dangerous augmentation process, Dr. Kazuki's daughter Mai becomes the pilot of \"Mighty\" or \"Magnetman Minus\". Takeshi Houjou becomes the pilot of \"Puraiza\" or \"Magnetman Plus\".\n\nThe pilots would hold each other and then physically trasform their joint bodies in a metallic plate locking itself on the Gakeen (Short for \"Gathering Keen\") robot's frame thus enabling the super robot to move and fight. This sequence was notable, to an adult's eye, for its almost-sexual connotation.", + "posterPath": "/y4oOSfy0TMyPq1PuDqIgA9Ow8f9.jpg", + "backdropPath": "/vr5lwweNYyHLrkIqn7d8UTbYs8D.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1976-09-05", + "releaseYear": "1976", + "originalLanguage": "ja", + "voteAverage": 8.9, + "voteCount": 17, + "popularity": 1.3277 + }, + { + "id": 65661, + "title": "Girls Beyond the Wasteland", + "originalTitle": "少女たちは荒野を目指す", + "overview": "Buntarou doesn't know what he wants to do in the future. He does not have any kind of dream that he wants to pursue, so currently he just spends his days hanging around with his friends. One day, his classmate Sayuki asks him if he wants to help with development of a gal game. She says that she had become interested in his help after she read one of his works intended for the drama club. Buntarou doesn't know anything about gal games, but Sayuki claims that she has the ability to make it a success. Can they make the game, and will it be a success like she claims it will be? This is the story of youths taking a daring step into the unknown...", + "posterPath": "/aJLi6OVKefgr6rVihfXx7zOi28U.jpg", + "backdropPath": "/dDWNOyqHMrBJXNiCG8Py2f6LE64.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2016-01-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 45, + "popularity": 1.3265 + }, + { + "id": 34094, + "title": "Virus Buster Serge", + "originalTitle": "ウイルス", + "overview": "Neo Hong Kong, 2097: The world has changed. Advances in genetic engineering and cybernetics have created an environment full of artificially enhanced humans and intelligent super-computers that operate using biological software. But the same technology that has allowed man & machine to merge has made both susceptible to a new kind of threat - digital viruses capable of controlling their hosts.\n\nThe last line of defense against this insidious foe is an elite task force known as STAND. Equipped with state-of-the-art armored cybernetic suits known as \"variable gears,\" only this special law-enforcement arm can deal with virus-infected war machines on their own terms.", + "posterPath": "/5DrAYbnIppJ1wI34gSOMBONRxy0.jpg", + "backdropPath": "/8KpY3vrGrFoWlYnbqet4J5I3ftM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-10-02", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 4.4, + "voteCount": 5, + "popularity": 1.3258 + }, + { + "id": 65837, + "title": "Schwarzes Marken", + "originalTitle": "シュヴァルツェスマーケン", + "overview": "Germany was divided into East and West after WWII, where citizens of either treated the other side as enemies. In the midst of Cold War, however, the Earth was invaded by an alien life form landed on Kashgar, Xinjiang Uyghur Autonomous Region, known as \"Beta.\" Now, ten years after the first contact, East Germany, formally German Democratic Republic, has become the front line.", + "posterPath": "/1aADz1Xa4XEJ9RSElgxRMtUuAbe.jpg", + "backdropPath": "/71crbYqR8MsPBQ6oWSDBnYjFXOa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-11", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.793, + "voteCount": 58, + "popularity": 1.3257 + }, + { + "id": 68460, + "title": "Kubikiri Cycle - Aoiro Savant to Zaregoto Tsukai", + "originalTitle": "クビキリサイクル 青色サヴァンと戯言遣い", + "overview": "The story revolves around the protagonist \"I\" and the murders and mysteries he encounters. He tries in vain to stay out of the story, but instead he always gets dragged into the center of everything. Even though it seems that he contributes a lot, he always finds out that whatever he did was meaningless in the end.", + "posterPath": "/2YyJiH3MsLWocO2KSysT2pALD98.jpg", + "backdropPath": "/kyFvVVzgh6FBNU886ewYNF57tpM.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Mystery" + ], + "releaseDate": "2016-10-26", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 15, + "popularity": 1.3255 + }, + { + "id": 21298, + "title": "Dororo and Hyakkimaru", + "originalTitle": "どろろと百鬼丸", + "overview": "Hyakkimaru is a young man who lacks 48 body parts because they were taken from him by demons before birth, as payment by his father, Kagemitsu Daigo, to obtain his wish to take over the country. When the baby boy was born he was missing 48 parts of his body, and thus was abandoned—thrown into a river. Hyakkimaru has grown up and now has obtained fake body parts so he can eliminate the 48 demons that were made from his body, and to retrieve his missing parts. Along for the adventure is the boy thief, Dororo, with whom he becomes friends.", + "posterPath": "/kFFRiNaQJub24cgiNmDfLjZj9oT.jpg", + "backdropPath": "/g2Llw7WKRIXXAzyUbNwl786Klio.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1969-04-06", + "releaseYear": "1969", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 9, + "popularity": 1.3253 + }, + { + "id": 68055, + "title": "Landlord Is in Puberty!", + "originalTitle": "大家さんは思春期!", + "overview": "Maeda-san is living alone in rented accommodations for the first time after finding employment. In his tiny, no-bath apartment he is visited by Chie Satonaka, who looks like the little sister he never had, but turns out to be the landlord of this apartment building. Chie's high degree of competence when it comes to cooking and housework, sometimes makes her appear very much older than the middle school girl she actually is. Maeda-san's other neighbour, Reiko Shirai, quite jealously tries to guard the cute landlord for herself though. And so Maeda-san's otherwise uneventful life, supposedly living alone, suddenly becomes quite lively...", + "posterPath": "/75N0s3k2ffZCtzramXGOa8qSo77.jpg", + "backdropPath": "/a0QongjOG6ZTvZ8Ily7Dk6BjxXJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-08-28", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 11, + "popularity": 1.3233 + }, + { + "id": 34733, + "title": "Doki Doki School Hours", + "originalTitle": "せんせいのお時間", + "overview": "With a class full of \"energetic kids\" teacher Mike Susuki has her hands full. the kids don't take her seriously because she looks like little kid herself.", + "posterPath": "/t9JtbV5TIS6wEAh9n1QBqz3yPpV.jpg", + "backdropPath": "/qzyVBoBn2dApgjxATP4Xhm9FQxm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-04-04", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 3.8, + "voteCount": 5, + "popularity": 1.3229 + }, + { + "id": 67052, + "title": "Handa-kun", + "originalTitle": "はんだくん", + "overview": "Set six years prior to the events of Barakamon, detailing the life of Seishuu Handa as a high school student—and a very interesting life it is. In Handa-kun, Seishuu Handa is admired by his peers as a calligraphy genius and given the utmost respect, but Handa-kun himself is under the mistaken impression that the deference and attention he receives from the other students is actually bullying. Handa just wants to live a quiet life, but hilarity ensues as one character after another challenges his position as the school idol, and somehow comes away as a fan all while Handa is horrified and clueless.", + "posterPath": "/mSDLhlkEWGLKqGc5aR0RlYPGtZB.jpg", + "backdropPath": "/vm6hpGMLXNBU2YuvfZy9Armn2Jm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 127, + "popularity": 1.3217 + }, + { + "id": 78469, + "title": "Dances with the Dragons", + "originalTitle": "されど罪人は竜と踊る", + "overview": "Gayus and the beautiful but cruel sword-wielder Gigina are \"special equationists,\" individuals that manipulate the equations that govern world's laws thus allowing fantastic and deadly results. These two bounty hunters are caught up in a battle with dragons in the city of Eridana and in the intrigue of great nations.", + "posterPath": "/fZNWiAHJG4lJNdjoGrUpG4r15eM.jpg", + "backdropPath": "/rPixfbK1Od2StvB0f9R9Z5KHJWV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 7, + "popularity": 1.3206 + }, + { + "id": 30631, + "title": "H2O: Footprints in the Sand", + "originalTitle": "H2O ~Footprints in the Sand~", + "overview": "Takuma Hirose, an emotionally wounded boy becomes blind after his mother died in his childhood. For medical treatment, he moves to his mother’s home village where he enters a new school.", + "posterPath": "/tlAhXf8ZctUQvobvH4mo4jR365B.jpg", + "backdropPath": "/iT6q5HWJFWITSTVDN7eoCn82Sif.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2008-01-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.909, + "voteCount": 11, + "popularity": 1.3184 + }, + { + "id": 61432, + "title": "Gugure! Kokkuri-san", + "originalTitle": "繰繰れ!コックリさん", + "overview": "A little girl named Kohina ends up summoning a Kokkuri-san, a lower-ranking ghost in Japanese folklore. The Kokkuri-san she calls ends up being a white-haired handsome, young man. Although he had intended to merely haunt her at first, he becomes worried about her terrible eating habit of cup ramen for every meal, so he decides to haunt her in order to protect her.", + "posterPath": "/4rH8BMJ9mrOtGRxz106gBZULVIW.jpg", + "backdropPath": "/TaKz8E7D3I7ah6Ww2f81mNuhrV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 12, + "popularity": 1.3183 + }, + { + "id": 93647, + "title": "Special 7: Special Crime Investigation Unit", + "originalTitle": "警視庁 特務部 特殊凶悪犯対策室 第七課 -トクナナ-", + "overview": "Set in a different Tokyo on a different world than ours, the story follows Tokunana, a unit of assembled misfits in the Metropolitan Police Department. Tokunana battles against \"Nine\" — an organization commiting crimes in their zealous worship of the dragons that once roamed the world.", + "posterPath": "/9mOQ5aM5tLHJcszNcuwBQXHOiSq.jpg", + "backdropPath": "/tmUbD5YkBarXBmJqfLC3v8zeWUq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 80 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Crime" + ], + "releaseDate": "2019-10-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 16, + "popularity": 1.3182 + }, + { + "id": 66113, + "title": "Anne Happy♪", + "originalTitle": "あんハピ♪", + "overview": "The story centers around class 1-7 of Tennomifune Academy, where all the students with \"bad karma\" or misfortune seem to have been gathered. Hibari, a student in this class, meets the unlucky Hanako and the perennially unhealthy Botan on her first day of school, and together they try to find a way to turn their school life into a happy one.", + "posterPath": "/gm6UdY8GZU5RNEBjn71MmKT31A9.jpg", + "backdropPath": "/sZHNzz5KzIeg4dFj755StgcN27B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 55, + "popularity": 1.3171 + }, + { + "id": 34787, + "title": "Futakoi Alternative", + "originalTitle": "フタコイ オルタナティブ", + "overview": "Futakoi Alternative is a Japanese anime series by ufotable. The series ran for 13 episodes from 7 April 2005 to 30 June 2005. The show features many of the characters from the original Futakoi, though the story and settings are completely different. A manga adaptation of the show is illustrated by Kanao Araki.", + "posterPath": "/5tqj3vSDmLAasj6Xktq2cyDpDRX.jpg", + "backdropPath": "/yFrAuojlFsyrziBP22mBunjpX7W.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2005-04-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.563, + "voteCount": 8, + "popularity": 1.3153 + }, + { + "id": 11147, + "title": "Colorful", + "originalTitle": "カラフル", + "overview": "The adventures (and mis-adventures) of Men, staring, peeking, glancing, looking, glaring at women and their efforts to get that extra eyeful of harmlessly exposed panties, bra, and occasional cleavage. Following at most, a few regular males and the outrageous consequences of their actions.", + "posterPath": "/wlzH3HvDFI19xRR54VasQDubqFc.jpg", + "backdropPath": "/6qyTdO0xhL8oB6HQyP8ehW2zO3x.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-09-06", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 8, + "popularity": 1.3143 + }, + { + "id": 69055, + "title": "Karas", + "originalTitle": "鴉 -KARAS-", + "overview": "In the city of Shinjuku, a conflict between a rouge Karas by the name of Eko and the \"will of the city\" rage in a conflict for dominance. A Karas brought about to fight the rouge has fallen, leaving the city and its inhabitants defenseless. Soon after, Otoha, a comatose patient, is chosen to become a new Karas to face off the rouge Karas Eko to decide the fate of the city and its inhabitants.", + "posterPath": "/v5PIkmbGrRYRN1MRt7wFDGD9kcu.jpg", + "backdropPath": "/qHfHAriBtjs52pyHEcXhTweDaRv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-03-25", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 23, + "popularity": 1.314 + }, + { + "id": 69297, + "title": "Nyanko Days", + "originalTitle": "にゃんこデイズ", + "overview": "Tomoko Konagai is a first-year in high school and a shy girl. Tomoko owns three cats. The cheerful and live Munchkin Maa, the smart and responsible Russian Blue Rou, and the gentle crybaby Singapura Shii. Tomoko, whose only friends were her cats, one day becomes friends with Azumi Shiratori, who also loves cats.", + "posterPath": "/eWzuLnqjKD7q4j570OCkyASKJ65.jpg", + "backdropPath": "/peCKHjkiR11ldCzhrmpoh4XDaik.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 15, + "popularity": 1.3137 + }, + { + "id": 72513, + "title": "Nora, Princess, and Stray Cat", + "originalTitle": "ノラと皇女と野良猫ハート", + "overview": "Nora Handa is a high school boy who meets a girl named Patricia in a park who claims to be a princess of the underworld. Patricia and Nora accidentally kiss, and this act turns Nora into a black cat. Patricia takes Nora to her home, and a few days later Nora turns back into a human. However, Nora keeps turning into a cat and back into a human.", + "posterPath": "/8pPSM4Vq3z7bw0MBRAXb8b841Tk.jpg", + "backdropPath": "/zKBZmGyWqOT01yBdwNRrN7DiIqf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-07-01", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 6, + "popularity": 1.3136 + }, + { + "id": 8654, + "title": "The SoulTaker", + "originalTitle": "The Soul Taker 〜魂狩〜", + "overview": "Kyosuke Date who was killed by his mother afterwards gained the ability to turn into a monster known as \"The SoulTaker\".", + "posterPath": "/7iRdBPcSOO3gcdl5vKvdvjEGoVN.jpg", + "backdropPath": "/8PnKwrvc1VLUcx1wPVRnDfHEMXT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2001-04-04", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 22, + "popularity": 1.3126 + }, + { + "id": 60826, + "title": "Dai Shogun - Great Revolution", + "originalTitle": "風雲維新ダイ☆ショーグン", + "overview": "In the late Edo period, Japan had experienced an unprecedented crisis by Kurofune (Black Ships), the ships from foreign countries. But a giant robot called Onigami, which has existed since ancient time, dispelled the Kurofune ships and the exclusion of foreigners was accomplished. The story begins in Japan where Meiji restoration in 1868 didn't happen.", + "posterPath": "/tsDz74RVqwvwpK8IdS5n4CpuWnA.jpg", + "backdropPath": "/lhxVRXZgLig07jXDiiCB6zUepIx.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2014-04-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 10, + "popularity": 1.3102 + }, + { + "id": 72091, + "title": "Magical Warfare", + "originalTitle": "魔法戦争", + "overview": "Takeshi Nanase is an ordinary high school boy who has a somewhat dark past. One day, he comes across a girl named Mui Aiba, in a uniform he has never seen before, collapsed on the school campus. This encounter changes his destiny completely. She tells Takeshi that she is a magician, and she apologizes, for she turned Takeshi into a magician, too. What Takeshi once knew as one world is actually two — the world where magicians live and the world where humans live.", + "posterPath": "/wZPRKxcCO2jHt9yCBr9Rb9uuHdC.jpg", + "backdropPath": "/14BLE7V596Sso8zWQEZa2iAF0G9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-01-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 108, + "popularity": 1.31 + }, + { + "id": 45264, + "title": "The Guyver: Bio-Booster Armor", + "originalTitle": "強殖装甲ガイバー", + "overview": "The Guyver: Bio-Booster Armor is a 12 part anime OVA loosely based on Yoshiki Takaya's manga, Bio-Booster Armor Guyver. It was released in Japan from 1989 to 1992. It is the second animated adaptation, following the 1986 OVA Guyver: Out of Control.", + "posterPath": "/8LTyxMzMnN0zifWMBpJUwepslL.jpg", + "backdropPath": "/wYBwNQjst1KRDFrhRiezunwKe8y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1989-09-25", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 11, + "popularity": 1.3094 + }, + { + "id": 34072, + "title": "Aishiteruze Baby", + "originalTitle": "愛してるぜ ベイベ★★", + "overview": "Kippei is a ladies man. Always in trouble for flirting in class, after class, anytime he can. So it is some big surprise to him when he gets saddled with watching Yuzuyu, a cute little girl.Yuzuyu`s mother has gone missing, and so Kippei`s family is watching her until her mother can be found. Of course, since Kippei could use a few lessons in responsibility, he is the \"best\" choice for the job.This story is working out to be very cute. Kippei`s natural \"mother\" instinct is really brought to the front while trying to to his best for Yuzuyu, but he is a boy. His ineptitude regarding the smallest things a mother would need to know [like packing a lunch for school] are endearing rather than hokey, and the character of Yuzuyu is cute, without being overly so.", + "posterPath": "/koaA73QpO8KD33DeHcn55Lnhm6x.jpg", + "backdropPath": "/pnufjO10SdkCNRFsnnseStrow8b.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2004-04-03", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 15, + "popularity": 1.3092 + }, + { + "id": 83019, + "title": "My Sister, My Writer", + "originalTitle": "俺が好きなのは妹だけど妹じゃない", + "overview": "Suzuka Nagami is a beautiful third-year middle school student who has excellent grades and is the student council president. She wrote a novel about a little sister who dotes on her older brother, and the novel wins a light novel award. After they discuss the matter, Yuu is the one who debuts as a proxy light novel author instead of Suzuka, under the pen name Chikai Towano.", + "posterPath": "/GjPwaeQ7vnABC69OQPJPcZ27F2.jpg", + "backdropPath": "/zhum3Kx2g62BRPvjlaYaajT8sdw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-10", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 3.955, + "voteCount": 22, + "popularity": 1.3091 + }, + { + "id": 61485, + "title": "Girl Friend BETA", + "originalTitle": "ガールフレンド(仮)", + "overview": "Shiina Kokomi is a hard working but even tempered high school girl who is the lead performer in her school's rhythmic gymnastics club. The story follows her and her growing circle of friends as they support each other through the various trials and situations that comprise high school life.", + "posterPath": "/45AsWSHZEnJYaSS3nIIYuOwn1sZ.jpg", + "backdropPath": "/vwU33m22nhhYDlCPI6PtKXwbUka.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2014-10-12", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 5, + "popularity": 1.308 + }, + { + "id": 20112, + "title": "Brain Powerd", + "originalTitle": "ブレンパワード", + "overview": "In a future, decimated Earth after the discovery of a mysterious, alien spacecraft dubbed \"Orphan\". A group of researchers scour the planet for Orphan's disc plates using mecha called \"Antibodies\" in order to revive the craft, an event that would result in the utter destruction of all lifeforms on Earth. The protagonists Yu Isami and Hime Utsumiya must utilize a special Antibody called \"Brain Powerd\" to counter the Orphan plans and save humanity.", + "posterPath": "/a8IICj6Bl2xnLmfA8hLhWEfl2bd.jpg", + "backdropPath": "/wNYoFeayV3v4zu2FUYudEElgT31.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1998-04-08", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 1.3071 + }, + { + "id": 210946, + "title": "Onmyoji", + "originalTitle": "陰陽師", + "overview": "In the gilded enclave of the imperial court, Minamoto Hiromasa befriends the mystic Abe Seimei, solving tricky cases rising from the demonic realm.", + "posterPath": "/cRMdU69ZbPzZNU5p6yEhtoNcj6O.jpg", + "backdropPath": "/vJYAOcccsGLkKmuVx5qgqw3CgG7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2023-11-28", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.267, + "voteCount": 15, + "popularity": 1.3059 + }, + { + "id": 216760, + "title": "The Many Sides of Voice Actor Radio", + "originalTitle": "声優ラジオのウラオモテ", + "overview": "Yuhi Yugure and Yasumi Utatane, high school classmates and co-hosts of a weekly radio program, paint a picture-perfect friendship for their listeners. Yet, in reality, they couldn’t be more different. Their off-air dynamic is a whirlwind of chaos and insults. As their tumultuous relationship unfolds, they navigate the turbulent waters of friendship and rivalry in the cutthroat realm of showbiz.", + "posterPath": "/733lDek9YYMfxplg0ELoi3mkRuH.jpg", + "backdropPath": "/ru90WIA2Hs6Fq2u0zGragBYGODO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-04-10", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 8, + "popularity": 1.2999 + }, + { + "id": 99769, + "title": "Dragon's Dogma", + "originalTitle": "ドラゴンズドグマ", + "overview": "Ethan sets out to vanquish the Dragon that took his heart, but with every demon he battles, the more he loses his humanity.", + "posterPath": "/m8VA5fudLl3jXywxxSsE4g5ltYS.jpg", + "backdropPath": "/aF1uXRZPzlQz9N892QRq0MmjcVf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-09-17", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.941, + "voteCount": 187, + "popularity": 1.2984 + }, + { + "id": 96420, + "title": "Pokémon: Twilight Wings", + "originalTitle": "薄明の翼", + "overview": "This series focuses on the residents of the Galar Region. It is set to focus on their dreams, realities, challenges they must face and conflicts they must overcome. This is all linked through the Galar Taxi Driver.", + "posterPath": "/olQwMktOpZLelpey4vOTZCxpZ4c.jpg", + "backdropPath": "/JRHUynzGfL2FSxDhJ1UpNj0FDc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 18, + 10765 + ], + "genres": [ + "Animation", + "Family", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-01-15", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.769, + "voteCount": 67, + "popularity": 1.2983 + }, + { + "id": 88065, + "title": "Gorgeous Butterfly: Young Nobunaga", + "originalTitle": "胡蝶綺 ~若き信長~", + "overview": "The series is a historical drama aesthetically and boldly adapting the life of Oda Nobunaga in his teens up to his time as a warlord against his brother, Nobuyuki.", + "posterPath": "/f3mWYaS2p0EAriPPHpZh0qW1yFC.jpg", + "backdropPath": "/5aV7thYVUazxUcajQUDR47dG9PL.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-07-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 5, + "popularity": 1.2973 + }, + { + "id": 73395, + "title": "Gokujo", + "originalTitle": "ゴクジョッ。〜極楽院女子高寮物語〜", + "overview": "Aya Akabane is anything but typical. She's arrogant, believes her bra is a fashion accessory that's meant to be worn in public, and takes out her aggression on her closest friends – especially poor Konatsu, who is frequently picked up and spun around by her ponytail. Together with her friends, Aya enjoys an action-packed, event-filled high school life, whether she's trying to steal the panties her friends are wearing or secretly trying to film her classmates' underwater!", + "posterPath": "/nuSlKeZjdxixwmAcf2h41FTrHva.jpg", + "backdropPath": "/aEauxQGPgougEblaLppmgXSlM5O.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2012-01-23", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.167, + "voteCount": 6, + "popularity": 1.2952 + }, + { + "id": 69345, + "title": "Urara Meirocho", + "originalTitle": "うらら迷路帖", + "overview": "This is Meiro-machi (Labyrinth Town), the town of fortune-telling. In town, there is a fortune-telling shop called Urara, where girls aspiring to be fortune-tellers come from all over the country. Chiya, who was raised in the mountains, comes to the town with a purpose, but what is it exactly? There, she meets Kon who is always serious, Koume who loves all things western, and the shy Nono. Their fun days of living together as apprentice fortune-tellers are about to begin.", + "posterPath": "/yjfwp2gErEwHJaA7U93aQMYSKqA.jpg", + "backdropPath": "/lVTAsBRP4D4lnGSL9yNeGXNftEQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-06", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 14, + "popularity": 1.2945 + }, + { + "id": 34813, + "title": "Angel Links", + "originalTitle": "星方天使エンジェルリンクス", + "overview": "Li Meifon is the head of a free, no expenses paid protection/security agency for escorting ships across outer space. Though only 16, she posesses great skill and leadership qualities while commanding her crew aboard their ship, the \"Angel Links.\" However, some unpleasant memories begin to trouble her and she starts questioning her own past and reason for existence. Join Li Meifon and the rest of the Angel Links crew on their adventures through the Oracion star system as they battle pirates, government organizations, and a Tao master, all while finally uncovering Meifon's dark and mysterious past.", + "posterPath": "/r7SWiW9GamCnMM4bmTArCxB1azc.jpg", + "backdropPath": "/tF9zNKxkVEoPAhczhClsabHgQcz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-04-07", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 3.7, + "voteCount": 6, + "popularity": 1.2945 + }, + { + "id": 69189, + "title": "A-Channel", + "originalTitle": "Aチャンネル", + "overview": "Tooru and Run have been best friends forever, so when Tooru learns that she's managed to get into the same high school as Run, she runs to tell her... only to find Run in a compromising position with yet another girl, Yuko. Needless to say, that makes things a bit awkward at school, with Tooru fending off those who might be interested in Run while Yuko and their other girlfriend, Nagi, have to deal with Run's own penchant for drama.", + "posterPath": "/8v5DNnmMgFpjSw4RPrEDP86Isxr.jpg", + "backdropPath": "/1odIANpFgDSMJWLSh1wpImiB3K6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-04-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.257, + "voteCount": 35, + "popularity": 1.2935 + }, + { + "id": 63088, + "title": "Aoharu x Machinegun", + "originalTitle": "青春×機関銃", + "overview": "When Hotaru moves into a new apartment alone, there's a mysterious man standing nearby the apartment. Hotaru decides to confront the man, who turns out to live in the neighboring apartment. The next day at school, Hotaru's best friend Kanae tells Hotaru that a host tricked her out of her money. When Hotaru goes to confront the host, he happens to be none other than Hotaru's neighbor, Masamune?!", + "posterPath": "/8PNOj3WJ91rgBnLTe7UeSsAYTjL.jpg", + "backdropPath": "/qKgOxKuZANWLU8jHnf7cmm7R9mf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-07-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 35, + "popularity": 1.2933 + }, + { + "id": 45190, + "title": "Upotte!!", + "originalTitle": "うぽって!!", + "overview": "At Seishou Academy, girls don’t just wield guns— they ARE guns! In a school where every girl is a lethal weapon gunning for the chance to get their own personal serviceman, more than a few shots are about to be fired between Funko and her classmates. And when their newly recruited human instructor, Genkoku, arrives, he’ll have to learn how to deal with this living arsenal of high caliber cuties if he doesn’t want to get caught in the crossfire of their hair trigger tempers!", + "posterPath": "/bI5XaF763yD2ZY1zrpDIfpUKhFA.jpg", + "backdropPath": "/rEVIaM7FzHSIMJdUDIYisfJ7Wrp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-04-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 11, + "popularity": 1.2929 + }, + { + "id": 84663, + "title": "Bermuda Triangle ~ Colorful Pastorale", + "originalTitle": "バミューダトライアングル ~カラフル・パストラーレ~", + "overview": "Mermaids are known worldwide as bewitching mythological creatures of the sea. Despite their charms and otherworldly powers, daily life for these beings comes with everyday problems. But there’s nothing that can’t be overcome with the support of friends. Follow the adventures of five young mermaids as they explore their town and the world around them in this delightful slice-of-life series that takes viewers to an enchanting world beneath the waves.", + "posterPath": "/ai73nCipJiOS6QJFCmAjGoNnjKP.jpg", + "backdropPath": "/7918p1NTG4Qi6FNNhPipGXVtGB7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2019-01-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 5, + "popularity": 1.2912 + }, + { + "id": 11841, + "title": "Transformers: Super-God Masterforce", + "originalTitle": "トランスフォーマー 超神マスターフォース", + "overview": "Transformers: Super-God Masterforce aired on Japanese television from 1988 to 1989. Taking place after Transformers: Headmasters, it is the story of how Metalhawk and his small team of Autobots must protect Earth from the mysterious Devil Z and his Decepticon forces. Humans play many prominent roles in Masterforce, from the Decepticon husband-wife team of Giga and Mega to the Autobot's Junior Headmasters and the reluctantly-recruited Ginrai. Masterforce is often considered second only to Transformers: Victory as a fan favorite.", + "posterPath": "/9FZN0h7GIxZbaKRZ2b6tMqIsacp.jpg", + "backdropPath": "/dbkN1Nmj0pbL9sjjL0ePHzBtDZB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1988-04-12", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 6, + "popularity": 1.2912 + }, + { + "id": 65602, + "title": "Love Lab", + "originalTitle": "恋愛ラボ", + "overview": "Love Lab is set in Fujisaki Girls Academy, which is known for their school body being composed of very proper students. The most prominent one of them is Natsuo Maki, the student president who is admired by her classmates for her calm and polite demeanor. On the other hand, Riko Kurahashi is also admired but for having a very forward and boyish personality. Riko accidentally walks into Maki when she is kissing a body pillow with a picture of a guy for practice, and learns that she is not as collected as everyone thinks she is. Riko is forced into keeping Maki's secret and joins her in practicing romance activities such as holding hands and more.", + "posterPath": "/iDGK0HJl9dmCb80mQwidKhUiy4r.jpg", + "backdropPath": "/6l2SkedKeMFKGYccxhyShDQrAAz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-07-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 13, + "popularity": 1.291 + }, + { + "id": 78422, + "title": "Sonic the Hedgehog", + "originalTitle": "ソニック・ザ・ヘッジホッグ", + "overview": "Sonic's nemesis Dr. Robotnik has been banished from the Land of Darkness by an evil Metal Robotnik. And if that wasn't bad enough, the devious doctor tells Sonic that the Robot Generator has been sabotaged and will blow Planet Freedom to kingdom come. What should possibly make Sonic trust his worst enemy?", + "posterPath": "/iB7rNFPDkJGTo9QdyWuBaEzYUzt.jpg", + "backdropPath": "/hdjpNQ1ndLx0Tz8hmo7IoROjJml.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1996-01-26", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.8, + "voteCount": 8, + "popularity": 1.2901 + }, + { + "id": 70178, + "title": "Cyborg 009: Call of Justice", + "originalTitle": "CYBORG009 CALL OF JUSTICE", + "overview": "Years after taking up normal lives incognito, the cyborgs are forced to fight again when the superhumans known as the Blessed appear with a plan for humanity.", + "posterPath": "/8t5yepzi0zTi2l38P6iNIz2bgnq.jpg", + "backdropPath": "/96B9Ai0cnGpoffXtEY6OKsKs7ax.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-02-10", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 7, + "popularity": 1.2894 + }, + { + "id": 214211, + "title": "THE MARGINAL SERVICE", + "originalTitle": "THE MARGINAL SERVICE", + "overview": "After being fired from his detective job, Brian receives a strange letter. He heads to the address written on the envelope and finds himself among the Marginal Service! This motley crew of fearless men and a woman (and a squirrel) are tasked with hunting down aliens. And Brian just became their newest member.", + "posterPath": "/yOvIcB0RKEt603FfFSMxEUja8AZ.jpg", + "backdropPath": "/aPqYR3E7AXtGdkGRMytQhh38bCR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2023-04-12", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 2.8, + "voteCount": 6, + "popularity": 1.2892 + }, + { + "id": 72838, + "title": "Pandora in the Crimson Shell: Ghost Urn", + "originalTitle": "紅殻のパンドラ", + "overview": "In an age when large-scale natural disasters frequently happen all over the world, when cyborgs and autonomous robots are beginning to appear on the market in technologically advanced nations, and major world powers compete for technology and resources, the divide between rich and poor grows and the future for the poor looks bleak. In this transitional stage, everyone wanders around in a self-indulgent daze and the way out isn't clear... This is the story of how two cybernetically enhanced girls meet.", + "posterPath": "/ytpIB5O3yYFJe1R6K3JCjq2Q074.jpg", + "backdropPath": "/cl02js42cItpcdZ2KhErG4eefEd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.143, + "voteCount": 7, + "popularity": 1.2886 + }, + { + "id": 61528, + "title": "HaNaYaMaTa", + "originalTitle": "ハナヤマタ", + "overview": "Naru is a high school girl who is average in every way. She loves fairy tale heroines, though she’s never had the courage to escape her ordinary life. One day, she sees Hannah, a transfer student, dancing in the moonlit and becomes inspired to learn Yosakoi dancing.", + "posterPath": "/ynQxABPuTw10kYhQkkk1n0dtimD.jpg", + "backdropPath": "/2IEtlEyG2LgRd2kzH7TYTnNDaES.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-08", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.773, + "voteCount": 11, + "popularity": 1.2872 + }, + { + "id": 34148, + "title": "This Ugly Yet Beautiful World", + "originalTitle": "この醜くも美しい世界", + "overview": "High school student Takeru works part time as a motorbike courier. During one of his deliveries, he sees a mysterious light passing him and fall into a forest. What he had found was a girl coming out from a glowing cocoon, calling herself \"Hikari.\" A strange monster suddenly appears attacking them, but Takeru quickly discovers he can transform into a powerful superhero.", + "posterPath": "/fk7X26y0n7BXlm0BbI2NYQHVl3C.jpg", + "backdropPath": "/qBfldtvxqDVoY9ZCyyMksFZ3dAG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2004-04-01", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 13, + "popularity": 1.2871 + }, + { + "id": 21897, + "title": "Green Green", + "originalTitle": "グリーングリーン", + "overview": "At the isolated all-male boarding school of Kanenone Gakuen there are no females for miles but the school board has begun talks to merge with an all-girl boarding school, in hopes of becoming a co-ed boarding school.", + "posterPath": "/7laA27Rs299B5lxq1OBBiB7uIKs.jpg", + "backdropPath": "/w0WkvliRFFmTqFRTQYKQYOY9vcK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2003-07-14", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 13, + "popularity": 1.2869 + }, + { + "id": 204112, + "title": "Otaku Elf", + "originalTitle": "江戸前エルフ", + "overview": "Koito Koganei works as the teenage shrine maiden at the Takamimi Shrine, catering to the whims of its resident: a centuries-old elf who loves video games as much as she hates going outside! Line up your offerings for the otaku elf—some energy drinks, chips and video games will do nicely—and watch her new friends scramble to keep up!", + "posterPath": "/88gro99hKLdiS4b8QqOK2AFE6ac.jpg", + "backdropPath": "/6LxY37d5Agc0KX4k4VQtEPFjOLv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.733, + "voteCount": 15, + "popularity": 1.2864 + }, + { + "id": 65615, + "title": "Nobunagun", + "originalTitle": "ノブナガン", + "overview": "During a field trip, Shio is revealed to be an \"E-Gene Holders\", a person who wield weapons infused with the spirits of historical figures. The soul of Oda Nobunaga awakens after she tries to rescue a friend.", + "posterPath": "/1K59IokVPggX57dQd6guQXHv8kv.jpg", + "backdropPath": "/8z98Ox7HVIh7eMXCDt3e0RuZts6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2014-01-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 7, + "popularity": 1.2842 + }, + { + "id": 60845, + "title": "Riddle Story of Devil", + "originalTitle": "悪魔のリドル", + "overview": "The \"Class Black,\" 10th Grade of Myōjō Academy is composed of 12 assassins disguised as students and one target: Haru Ichinose. Fully aware of being the prey, Ichinose vows to survive assassination attempts and graduate from the school alive. One of the assassins, Tokaku Azuma, has started building up feelings for Ichinose and switched side to become her protector. Together they have to face the onslaught from their classmates of 11 assassins.", + "posterPath": "/rfmsXihfuUodPTB4lirJtTcYkKN.jpg", + "backdropPath": "/euy9FQ6BOB3rcg2AE7YVAo16kaa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2014-04-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 89, + "popularity": 1.2839 + }, + { + "id": 61919, + "title": "Yatterman Night", + "originalTitle": "夜ノヤッターマン", + "overview": "A girl is looking at a remote island on the ocean named The Yatter Kingdom, a country that is said to be ruled by the hero Yatterman. The girl wants to ask the Yattermans for some help to cure her sick mother and decides to venture to the kingdom. She gets kicked out from the kingdom though and her mother dies without receiving any help.\n\nUnder Dokurobei, the boss of the Dorombo thieves that existed, lies a beauty named Doronjo. The two men, Boyacky and Tonzura, worked under Doronjo but got kicked out from the Yatter Kingdom along with the Doronbo thieves as they lost a fight against the Yatterman. This is the new generation of Dorombo—Doronjo, Boyacky, Tonzura, and new Yatterman—a story of the birth of Gan-chan and Ai-chan.", + "posterPath": "/1WlcVJeidNe2d3EL6fQHetM3BQK.jpg", + "backdropPath": "/3mDaQnAelcx1gncES2FeRQ0O6SB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-01-11", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 9, + "popularity": 1.2826 + }, + { + "id": 67922, + "title": "A Thirty-Year Old's Health and Physical Education", + "originalTitle": "30歳の保健体育", + "overview": "Hayao Imagawa is a 30 year-old virgin bachelor. One day, a cupid descends from heaven with the express purpose of forcing him to graduate from virginity. Thus unfolds a pure love story between a 30 year-old bachelor and a 30 year-old bachelorette.", + "posterPath": "/izvmVfsgwUjxbEBLhM4UL5agJSZ.jpg", + "backdropPath": "/3jDhbBpJSh85uHsuSt6VLIp3cj9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-05-06", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 37, + "popularity": 1.2817 + }, + { + "id": 37552, + "title": "GA: Geijutsuka Art Design Class", + "originalTitle": "GA 芸術科アートデザインクラス", + "overview": "GA is a class that specializes in the arts at Ayanoi High School. Kisaragi, Nodamiki, Kyoju, Tomokane and Namiko are five students who learn about art.", + "posterPath": "/eRwx5rGMhxlo8lef3GFnL2bT3JT.jpg", + "backdropPath": "/jWh193OgC2FAoYvqoOxakFwJx8t.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-07-06", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 1.2811 + }, + { + "id": 156098, + "title": "Alice Gear Aegis Expansion", + "originalTitle": "アリス・ギア・アイギス Expansion", + "overview": "The far future, when humanity is forced to flee Earth after an attack from mechanical lifeforms known as Weiss. These beings can be combated by Actresses: young women adept at using high-dimensional weapons known as Alice Gear. Under the supervision of AEGiS, private companies of Actresses head out into the universe to exterminate Weiss and save the human race from being doomed to wander the universe forever.", + "posterPath": "/zzEI9afGHbcN5DGEyR4ULoEj34j.jpg", + "backdropPath": "/2riEkMnnZDUr4QWgfBaE54FJOEa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 9, + "popularity": 1.281 + }, + { + "id": 43416, + "title": "Burn-Up W", + "originalTitle": "BURN-UP W", + "overview": "Burn Up W is an anime OVA directed by Hiroshi Negishi and released in 1996. It was soon followed by a series version called Burn Up Excess though it occasionally lacks continuity with the series. The OVA consists of four episodes, chronicling Team Warrior through more missions. Like the original series, there is still a large amount of fan service.", + "posterPath": "/2q4HCIUNhcrEobjNHp5CczChSZm.jpg", + "backdropPath": "/zYRuREId8ECynEvNPJ8HSk7Lt1T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-04-10", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 8, + "popularity": 1.2789 + }, + { + "id": 79208, + "title": "Magimoji Rurumo", + "originalTitle": "まじもじるるも", + "overview": "Shibaki is a high school boy only interested in girls. However, he has been branded as the most perverted boy at school, and the girls go out of their way to avoid him. When he finds a book in the library about how to summon witches, he tries it as a joke; unexpectedly, though, the book works, and a cute witch named Rurumo appears to grant him a wish. Shibaki helps Rurumo and she in return refuses to take his soul.\n\nAfter some time, he thinks about his meeting with Rurumo, and wishes he could see her again. His wish is granted immediately, as Rurumo falls from the sky and crash-lands in front of him, tasked with getting him to use up 666 magic tickets that grant wishes before she can become a witch again. However, according to Rurumo's familiar, what she does not know is that each ticket he uses will shorten his life span, and, when the last ticket is used, he will die.", + "posterPath": "/yeTec1XPD05dnunlFtbarSfKgU3.jpg", + "backdropPath": "/z5tNF9IC6Lr17dpHIq3xq7mcTH9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 38, + "popularity": 1.2786 + }, + { + "id": 42673, + "title": "Shadow Skill", + "originalTitle": "SHADOW SKILL ~影技~", + "overview": "Sevalle, an elite breed whose mastery of martial arts has made them legendary. But for the 59th Sevalle, Elle Ragu, a.k.a. Shadow Skill, being a legend is shaping up to be something of a drag. After all, adventure alone doesn't pay the rent, and living check to check takes its toll on even the fiercest warrior.\n\nStrong as an ox and stubborn as a mule she may be, but it's drinking like a fish that usually gets Elle in trouble. And as she travels alongside her brother Gau, leaving property damage and unpaid bar-tabs in their wake, a new threat looms on the horizon: spies from the kingdom of Solfan have entered the picture, and Kuruda seems to be headed for war...", + "posterPath": "/iBHz9ABqQR7fFfBoppl1WiQf29B.jpg", + "backdropPath": "/6gCaa1A01Djtp1OgXfochCodsCy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-07-02", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 5, + "popularity": 1.2778 + }, + { + "id": 84869, + "title": "Mysteria Friends", + "originalTitle": "マナリアフレンズ", + "overview": "Anne, the honor student princess, and Grea, a princess born from a dragon and a human are students at the Mysteria Academy, a prestigious magic school that teaches magic without discrimination to the three factions (men, gods, demons), who usually are engaged in battle with each other.", + "posterPath": "/nmiwfWF2Vc5ALcibb7G09VIBe8d.jpg", + "backdropPath": "/dPFWFVz2YeGIkdiF0NRzbunF5xc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-01-21", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 40, + "popularity": 1.2765 + }, + { + "id": 49473, + "title": "Sunday Without God", + "originalTitle": "神さまのいない日曜日", + "overview": "Since 15 years ago, no new lives are born... and no one can die. Then, \"gravekeepers\" appeared in the world, with the ability to give rest to the living dead. Therefore the people said, \"God abandoned the World\". Ai who is 12 years old, one of \"gravekeepers\". Her life changes, when an immortal gunman named Hampnie Hambart murders the residents of her small village. She learns the \"truth of the world\" from him, and decides to travel in order to save the world.", + "posterPath": "/mvJOxuu7BT6fSq5zsGlW3JNNalX.jpg", + "backdropPath": "/5Pik7LI4nVctrIi3qKpQGbT3tws.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-07-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 20, + "popularity": 1.2751 + }, + { + "id": 229906, + "title": "Gundam: Requiem for Vengeance", + "originalTitle": "機動戦士ガンダム 復讐のレクイエム", + "overview": "Eleven months into the One Year War in U.C.0079, top Zaku II pilot Captain Solari faces the Earth Federation's new lethal weapon: the mobile suit Gundam.", + "posterPath": "/ybJkwgv63Ht3bZNOrKsbTwYmaFC.jpg", + "backdropPath": "/jYq8uw7vRIDoptXMFqQblE903xn.jpg", + "mediaType": "tv", + "genreIds": [ + 10768, + 10765, + 16 + ], + "genres": [ + "War & Politics", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2024-10-17", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.992, + "voteCount": 62, + "popularity": 1.2749 + }, + { + "id": 52270, + "title": "Monarch: The Big Bear of Tallac", + "originalTitle": "シートン動物記 くまの子ジャッキー", + "overview": "Monarch: The Big Bear of Tallac is a Japanese anime TV series consisting in 26 episodes. It was directed by Yoshio Kuroda and was first broadcast on Asahi Broadcasting Corporation in 1977.", + "posterPath": "/tV86q906ujvJNH3e1Fca1WGfH3I.jpg", + "backdropPath": "/gvuvboVnUMY8yYPKJCZVBGmIg9c.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1977-06-07", + "releaseYear": "1977", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 18, + "popularity": 1.2744 + }, + { + "id": 79041, + "title": "Kenkou Zenrakei Suieibu Umishou", + "originalTitle": "ケンコー全裸系水泳部 ウミショー", + "overview": "Kaname Okiura, a student of Umineko Shougyou High (\"Umishou\" for short), joined the school’s swimming club in order to learn how to swim, but the club is filled with weirdos. Then, a sunny, happy-go-lucky girl named Amuro Ninagawa who transferred from Okinawa joined the club. Her extraordinary underwater speed and unorthodox swimming style surprised every club member, especially Okiura, because she reminds him of a mermaid he saw only once in his early childhood.", + "posterPath": "/cWJlUIDU27NtDrvirW4eQEV34Wc.jpg", + "backdropPath": "/ols3ohwhalPPMe2KKEDRPJ7stuI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-07-04", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 12, + "popularity": 1.2739 + }, + { + "id": 12174, + "title": "Mezzo DSA", + "originalTitle": "MEZZO -メゾ-", + "overview": "Her name is Mikura, and she’s all about service with a smile. So what if that service is cracking skulls and the smile happens to be on the other end of a loaded gun? Get ready for this chick with a killer body and vicious skills to wreak havoc and mayhem all in the name of the Danger Service Agency!", + "posterPath": "/ivI7ISS407kA7QgvAxTFe8l83Lh.jpg", + "backdropPath": "/z7wxPKpX9Q28hBQaWWeCWYh6QHA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 35 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2004-01-04", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 18, + "popularity": 1.2737 + }, + { + "id": 44872, + "title": "Idaten Jump", + "originalTitle": "韋駄天翔", + "overview": "The show follows the exciting adventures of Sho Yamato, a boy who loves to race his Idaten bike and ends up getting lost, along with his friends, in a mysterious place called the X-Zone. The kids get involved in many action-packed racing adventures as they try to unlock the secret to getting home.", + "posterPath": "/2qPKd3mrEKWtHAMy6Nl40k7Mwm7.jpg", + "backdropPath": "/tKzKmkWV4nJw5056gezjXJD8f0J.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2005-10-01", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 5, + "popularity": 1.2715 + }, + { + "id": 35129, + "title": "Popotan", + "originalTitle": "ぽぽたん", + "overview": "Beautiful sisters Ai, Mai, Mii, their android maid Mea and slippery pet ferret Unagi make an amazing journey together through time and space without ever leaving their beloved mansion behind! Following the clues of the strange dandelion-like \"Popotan,\" the girls are theoretically seeking the person who has the answers to their most personal questions, but they seem to have more than enough time to take side trips, meet new friends, visit hot springs and occasionally operate the X-mas shop they keep in the house along the way!\n\nYet, the girls' ultimate destiny holds more than a few surprises of its own, and not every moment is filled with hilarity, as moving through time means having to leave friends behind as well.", + "posterPath": "/jD0P5NmedXCT9mODoICKW32ugzu.jpg", + "backdropPath": "/62wRuujkJl95pggW6647DrMC6uE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-07-17", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 5.875, + "voteCount": 8, + "popularity": 1.2714 + }, + { + "id": 117450, + "title": "TOKYO TRIBE 2", + "originalTitle": "TOKYO TRIBE 2", + "overview": "This is the other side of Tokyo, a Tokyo of a different color. There, various tribes are living. The SARU from Japan's Musashino, WU-RONZE of Bukuro, and HANDS of Shindyuku - Young men living in the city...the public of modern times builds a home out of corruption, these young men of the sordid side of life, a side called \"reality,\" are depicted here. (Source: AnimeNfo)", + "posterPath": "/7RkMeaM3NlnF9N15Z7WuOxpV4Hu.jpg", + "backdropPath": "/xySM2agoDzTV0yU8DJ2ovabgCcq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2006-11-11", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 4.5, + "voteCount": 6, + "popularity": 1.2708 + }, + { + "id": 83105, + "title": "revisions", + "originalTitle": "revisions リヴィジョンズ", + "overview": "When Shibuya time-warps to 2388, high schooler Daisuke and his friends are conscripted by AHRV agent Milo to fight the hostile cyborg race, revisions.", + "posterPath": "/iN1ht9ZP9qEsbkpYPwI2OGK4bb6.jpg", + "backdropPath": "/voxiLBEppNm8WYntQoWcAHfbtJz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-01-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.174, + "voteCount": 43, + "popularity": 1.2703 + }, + { + "id": 83099, + "title": "W'z", + "originalTitle": "W'z", + "overview": "Inspired by house music from a young age, Yukiya spends his free time as a DJ for a crowd of one and uploads his videos online. Like any young teenager, he yearns for something greater than his current life. He wants recognition and importance, but breaking out of his comfort zone means he runs the risk of getting hurt, so the cycle continues. That is, until the day he finally crosses the line of no return and live streams a performance that will change his world forever.", + "posterPath": "/3s3N01PW9TtDl36OEmNcGHsJYNg.jpg", + "backdropPath": "/wD3wR0qgP0ql4aVjzu6NbRO6PZI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2019-01-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 6, + "popularity": 1.2702 + }, + { + "id": 52883, + "title": "Senyu.", + "originalTitle": "戦勇。", + "overview": "In the story, a gigantic hole suddenly opened up in the world one day, and demons appeared. The king thinks that this portends the return of the demon king Rukimedesu, who was sealed away by the hero Kureashion a millenium ago. The king decreed that the descendants of the hero must take on the threat, and 75 people showed up. Hero No. 45 (Aruba) and a sadistic palace warrior (Ross) team up, and their adventure begins.", + "posterPath": "/gwxPMiH4SefD0yNKDfwgLsCGpQz.jpg", + "backdropPath": "/bVPn7dOUruCTqJFjZEADtfA2iKp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-01-09", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 21, + "popularity": 1.2687 + }, + { + "id": 31091, + "title": "A.D. Police", + "originalTitle": "A.D. Police", + "overview": "MegaTokyo 2038: A.D. Police Officer Kenji Sasaki loses another partner to a rabid boomer.\n\nA day after he's sent off-duty, he receives a new partner: German cop Hans Kleif.", + "posterPath": "/xh895Mq6cSxdlA5UFqPbNcaF7kJ.jpg", + "backdropPath": "/suWT4Dk3osHoUP4kh1HGAgFIyFa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-04-08", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.211, + "voteCount": 19, + "popularity": 1.2682 + }, + { + "id": 30237, + "title": "Toward the Terra", + "originalTitle": "地球へ…", + "overview": "In the future, mankind's seemingly utopian society is strictly controlled by the government, and anything that threatens to disrupt the status quo is ruthlessly suppressed. When 14-year-old Jomy begins to question the way the society is run, he suddenly becomes a target for both the government and the Mu, an outcast race with extra-sensory abilities who have been fighting against the government for generations. Now, each is determined to hunt him down - one to kill him and the other to save him.", + "posterPath": "/sfjRacOOwHUAwXQqFJ7rsKxvRwa.jpg", + "backdropPath": "/xuFBKZm4IZiCdIcC05gGbX7b82j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 10, + "popularity": 1.2681 + }, + { + "id": 100536, + "title": "Hikarian - Great Railroad Protector", + "originalTitle": "超特急ヒカリアン", + "overview": "", + "posterPath": "/bBUfVZP9KPqVIE6IjhNJmRJgdo6.jpg", + "backdropPath": "/ikhY5S5EJwL3lIODBm3cajo6jIp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762 + ], + "genres": [ + "Animation", + "Kids" + ], + "releaseDate": "1997-04-02", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 1.2669 + }, + { + "id": 82905, + "title": "Release the Spyce", + "originalTitle": "RELEASE THE SPYCE", + "overview": "The series is about a girl named Momo who attends high school at the city of Sorasaki. However, she is secretly a member of Tsukikage, an intelligence agency that protects people. As a new member of the agency, she works alongside her colleagues including her senior Yuki and friends. Together, they work to establish peace in the city.", + "posterPath": "/8EUKo0F94PdaRkzXWNxzjNF1yrB.jpg", + "backdropPath": "/wDlf7rOF6ptT34ObfMlwGbOs1WZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 22, + "popularity": 1.2664 + }, + { + "id": 282464, + "title": "Cardcaptor Sakura: Clear Card", + "originalTitle": "カードキャプターさくら クリアカード編", + "overview": "The story describes the story of the heroine Sakura (Kinomoto Sakura), her boyfriend Syaoran (Li Syaoran) and other classmates who graduated from elementary school and went to junior high school.\n\nOnce Sakura dreamed that the patterns on the 53 Sakura Cards disappeared, and after a mysterious person appeared, the Clow Cards broke.\n\nSakura woke up from this dream and opened the Sealed Book to find that the Clow Cards had become transparent!\n\nAfter discussing with Tomoyo, Syaoran and Elio, Sakura embarked on the story of collecting transparent cards again.", + "posterPath": "/xk0Nr59nEiYVChBXGy9MrkJsa9h.jpg", + "backdropPath": "/zRiGmAvVBm5Nmb2kVDQ6U7tnqQd.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-01-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 6, + "popularity": 1.2662 + }, + { + "id": 93819, + "title": "ACTORS: Songs Connection", + "originalTitle": "ACTORS -Songs Connection-", + "overview": "A VOCALOID x voice actors collaboration, featuring songs from EXIT TUNES. Within a sprawling academic metropolis lies an exclusive academy where students are encouraged to join clubs such as singing and archaeology to earn points for recognition. The most important of these is the big singing contest where all contestants have to sing in front of the entire school!", + "posterPath": "/sJE6mPzWx39OqyhTQ2xoedaoXwC.jpg", + "backdropPath": "/fx5FuLm2IWvi9qkQZhUcGTUCzul.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-10-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.222, + "voteCount": 9, + "popularity": 1.2649 + }, + { + "id": 53725, + "title": "Mangirl!", + "originalTitle": "まんがーる!", + "overview": "A team of girls with zero experience in manga editing are off and running toward their dream of creating the biggest manga magazine in Japan! They seem to do nothing but run into problems and failures... But still they're working hard every day!", + "posterPath": "/zgKoLseRKWiIi5lfdP9WaXdobY3.jpg", + "backdropPath": "/vzTJRmZhg1otwwS6tNsukNF1AcB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-01-03", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 6, + "popularity": 1.2647 + }, + { + "id": 45438, + "title": "Psychic Detective Yakumo", + "originalTitle": "心霊探偵 八雲", + "overview": "College student Haruka’s life takes a disturbing turn when a night of innocent fun turns horrific. After one friend commits suicide and another becomes possessed, Haruka reaches out to the enigmatic Yakumo Saito, a fellow student who is rumored to have psychic powers. But beneath the dubious claims surrounding Yakumo is a dark secret concerning his mysterious red eye and the souls of the dead.", + "posterPath": "/ac3ww6R0OKwEUMwoHQumdrM9GD.jpg", + "backdropPath": "/pBC2aVGVC6NPr9HTa9pw6o75vPR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10759, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2010-10-03", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 9, + "popularity": 1.2636 + }, + { + "id": 261135, + "title": "Lockdown Zone: Level X", + "originalTitle": "監禁区域レベルX", + "overview": "Ryoka is awakened by flurry of text messages from her mother! Panicked and rushed, Mom is clearly concerned for Ryoka's safety, but she is not too keen on letting her daughter know why. Her reasoning being that nothing could really properly describe what is happening!\n\nThe world might be ending! And there might be a massive new life-form on the roof of their apartment building!", + "posterPath": "/1LTTYkxSPe3MgYvX70rJKedolaZ.jpg", + "backdropPath": "/msygZSNumlJSk5XMil5twgSKenY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2024-09-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 6, + "popularity": 1.2621 + }, + { + "id": 80613, + "title": "Back Street Girls -GOKUDOLS-", + "originalTitle": "Back Street Girls -ゴクドルズ-", + "overview": "A group of 3 yakuza failed their boss for the last time. After messing up an important job, the boss gave them 2 choices: honorably commit suicide, or go to Thailand to get a sex reassignment surgery in order to become \"female\" idols. After a gruesome year training to become idols, they successfully debut, with overwhelming popularity, much to their dismay. This is where their tragedy truly begins.", + "posterPath": "/j1MtPZ0zq3aE2NiASGVgXRUhDCK.jpg", + "backdropPath": "/cwUsP3Krqjq98N099SlUaZ2AGZ1.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-07-03", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.093, + "voteCount": 54, + "popularity": 1.2621 + }, + { + "id": 65951, + "title": "The Lost Village", + "originalTitle": "迷家-マヨイガ-", + "overview": "A shady bus tour of young men and women are headed to an elusive village called Nanakimura. A destination where people can partake in an utopian existence, free of the world's obstacles... or so goes the rumor. Heading deep into the mountains, the bus is carrying 30 different individuals, each harboring their own expectations and troubled hearts... What they had arrived to was an uninhabited village with lingering, faint scents of life and it was falling apart. Just what is the secret of Nanakimura?", + "posterPath": "/ljuQCMPBHCWO2eiZY6k08xgYFfb.jpg", + "backdropPath": "/iqd8haK2P8lRF1ulvGxxDO9A9Np.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy", + "Drama" + ], + "releaseDate": "2016-04-01", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 35, + "popularity": 1.2621 + }, + { + "id": 24411, + "title": "He Is My Master", + "originalTitle": "これが私の御主人様", + "overview": "A 14-year-old millionaire named Yoshitaka receives an enormous inheritance as a result of his parents’ death in an accident. Later, after firing the original maids, he needs to be looked after—so he decides to hire new live-in maids. Though he originally expects an elderly woman to take the job, two runaway girls, Izumi, 14, and Mitsuki, 13, end up accepting the job in exchange for a home and income. Another girl, Anna, later becomes a maid as well, and all three live in the mansion with Yoshitaka.", + "posterPath": "/i1R4F4XOY8Tyu2r4kfzZXNSgRdR.jpg", + "backdropPath": "/vauTj05XNjSz8hwA2gGHWce0UDp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-04-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 1.2598 + }, + { + "id": 78481, + "title": "Last Period: the journey to the end of the despair", + "originalTitle": "ラストピリオド -終わりなき螺旋の物語-", + "overview": "There is a world where fantastic beasts called \"Spirals\" are born from isolation. Those who can defeat the beasts are called \"Periods.\" Haru is an apprentice Period who belongs to the Arc End 8th Branch. However, after a mysterious theft incident, there is an economic collapse, and the Arc End headquarters abandons the 8th Division, leaving only three Periods left, including Haru. Haru and the other two Periods start their work to rebuild the 8th Division.", + "posterPath": "/mGVLU23WFUOMXt9CFlwMrIaQbnZ.jpg", + "backdropPath": "/iakqCCNSxrpvnJXul94whmWXG5H.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2018-04-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 6, + "popularity": 1.2595 + }, + { + "id": 35584, + "title": "Super Dimension Cavalry Southern Cross", + "originalTitle": "超時空騎団サザンクロス", + "overview": "By 2120, humans have successfully colonized other planets following the devastation of Earth from the last great world war. One such colony is surprised at the arrival of The Zor, coming to reclaim their former home world. A relentless war erupts between both races.", + "posterPath": "/eBPilmrgf5q7T3RO3H57O56VLAH.jpg", + "backdropPath": "/oApKV9UThq3HLEwtiAvhuUzjoqr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1984-04-12", + "releaseYear": "1984", + "originalLanguage": "ja", + "voteAverage": 5.333, + "voteCount": 6, + "popularity": 1.259 + }, + { + "id": 44163, + "title": "Broken Blade", + "originalTitle": "ブレイク ブレイド", + "overview": "In the continent of Cruzon, an impending war between the Kingdom of Krisna and the nation of Athens is brimming. The people of this land are able to use quartz for whatever purpose they desire. Yet one person, Rygart Arrow, is not. He is an \"un-sorcerer,\" a person unable to use quartz. But this characteristic will enable him to pilot an ancient Golem, one strong enough to put up a fight against the invading army of Athens.", + "posterPath": "/1bUEwEjjVXVICjKwtwDd48wIzZJ.jpg", + "backdropPath": "/hsQr8gZl2CrIMhWhNgwd2sqVFPl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 51, + "popularity": 1.2585 + }, + { + "id": 63089, + "title": "Chaos Dragon: Sekiryuu Sen'eki", + "originalTitle": "ケイオスドラゴン 赤竜戦役", + "overview": "The story takes place in Huanli (the Year of Dazzling) 3015. Donatia and Kouran, two countries fighting for supremacy, are causing the world to be torn apart due to the constant war. Amidst the strife is the island country Nil Kamui, which has lost its independence. Red Dragon, the guardian god of Nil Kamui, goes out of control. Will the island country be able to regain its independence?", + "posterPath": "/43N8CQpjwTStpWyael57Xhs7nH1.jpg", + "backdropPath": "/2BqnTNccU5Kfgv5nCrSTBYDdiL5.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-07-02", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 33, + "popularity": 1.2582 + }, + { + "id": 21315, + "title": "Nightwalker: The Midnight Detective", + "originalTitle": "Night Walker -真夜中の探偵-", + "overview": "Shido's a midnight detective, half human and half vampire with no real memory of his past, who specializes in solving supernatural murders.Joined by Yayoi Matsunaga, a female government agent, Riho Yamazaki, an orphaned teenage girl working as his secretary and Guni, a little green imp, Shido must face demonic creatures known as Nightbreed.", + "posterPath": "/7bzMKHMO3b07aR5R1xeoLydV2UK.jpg", + "backdropPath": "/fkoecpWQFfFEKph13p8r4TmErUD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759, + 80, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Crime", + "Mystery" + ], + "releaseDate": "1998-07-08", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 17, + "popularity": 1.2576 + }, + { + "id": 124576, + "title": "Can I Make Your Ears Happy in 180 Seconds?", + "originalTitle": "180秒で君の耳を幸せにできるか?", + "overview": "ASMR or Autonomous Sensory Meridian Response is the nerve-tingling or relaxing response and sensation one gets to stimuli such as certain sounds or sights. As the title indicates, the anime will let viewers experience ASMR in 180 seconds. In the story, the heroine challenges her classmates to share in her hobby of recording ASMR works.", + "posterPath": "/t2PMWSyGD3GEYaTHqMAFWAx6b6p.jpg", + "backdropPath": "/yXy8LRJPHSJcyPUZ1AntSyojcyM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-10-14", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 9, + "popularity": 1.2568 + }, + { + "id": 39369, + "title": "Getter Robo G", + "originalTitle": "ゲッターロボG", + "overview": "Getter Robo G is a super robot anime series created by Go Nagai and Ken Ishikawa and produced by Toei Animation. This direct sequel to Getter Robo was broadcast on Fuji TV from May 15, 1975 to March 25, 1976, with a total of 39 episodes.\n\nPeople familiar with Mattel's popular Shogun Warriors toy collection will remember all three of Getter Robo G's robot formations in that toy line: Getter Dragon, Getter Liger and Getter Poseidon. As a result of the popularity of these toys in the US, Jim Terry included this series in his Force Five anime lineup under the title of Starvengers. Some Starvengers episodes were redubbed and released by FB Productions under the Robo Formers title. The original Getter Robo series, however, has yet to appear in the US. In the UK, Starvengers episodes were released on video by Krypton Force under the name Formators.", + "posterPath": "/9JvfWmL34CGzMvJy7SfMTRaTE7E.jpg", + "backdropPath": "/h0jJfhvRGiY4EADZ9YPGLRYlyLT.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1975-05-15", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 6, + "popularity": 1.2561 + }, + { + "id": 60835, + "title": "If Her Flag Breaks", + "originalTitle": "彼女がフラグをおられたら", + "overview": "Sota Hatate is a boy who has the unique ability to see \"Flags\" above the heads of other people. The \"Flags\" mark critical crossroads in people's lives — when the choices they make will determine love, friendship, victory, and even death. He transfers into Tokyo's elite Hatagaya Academy, but instead of living by himself in the boys' dormitory, he ends up living with many beautiful girls under one roof.", + "posterPath": "/i79igYeMCZ6UZsNFNBe3w2ms7sp.jpg", + "backdropPath": "/4gxDm7pR8uIfQIhlc3Cndo1yVSA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 11, + "popularity": 1.2558 + }, + { + "id": 20213, + "title": "Trider G7", + "originalTitle": "無敵ロボ トライダーG7", + "overview": "Trider G7, known in Japan as Invincible Robo Trider G7, was a Japanese anime television series which aired from 1980 to 1981. There were 50 episodes. It was also referred to as \"Trider G7\", \"Unchallengeable Trider G7\" and \"Tryder G7\", \"Bird Attack Tryder G7\", \"Unrivaled Robot Trider G7\".", + "posterPath": "/78cvdpfAbb2Y5JzanVcGn23TJYw.jpg", + "backdropPath": "/h01A95FstbNynIk0mIzj9P3eFTy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1980-02-02", + "releaseYear": "1980", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 7, + "popularity": 1.2556 + }, + { + "id": 38247, + "title": "Wolverine", + "originalTitle": "ウルヴァリン", + "overview": "Wolverine is a mutant, possessing animal-keen senses, enhanced physical capabilities, three retracting bone claws on each hand and a healing factor that allows him to recover from virtually any wound, disease or toxin at a accelerated rate.", + "posterPath": "/wgN8YRBtof55H2Glza256kzJ300.jpg", + "backdropPath": "/b4wRDmy0tqad6JC7GybUu1dzLxF.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-01-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 87, + "popularity": 1.2538 + }, + { + "id": 122517, + "title": "The Abashiri Family", + "originalTitle": "あばしり一家", + "overview": "The infamous and most terrifying Mafia family in the world, the Abashiri family, is about to disband after years of murders and robbing banks. Along with the disbanding of the family a well guarded secret will be revealed and Kikunosuke, the strongest family member, is in the middle of it all.", + "posterPath": "/v4qVM7gLew4DtFXD4NDW8Mc969K.jpg", + "backdropPath": "/rT84sFrhHbb6XAYxgkU8FSykU5I.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1991-05-21", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 5.188, + "voteCount": 8, + "popularity": 1.2536 + }, + { + "id": 56996, + "title": "ChäoS;HEAd", + "originalTitle": "カオスヘッド", + "overview": "Takumi Nishijou, a high school student at the Private Suimei Academy, one day hears about the 'New Gen' murders that have been occurring around the city. Although dismissing the subject because it doesn't involve him, Takumi begins to experience strange mishaps around him, from a horrific picture he received while on his PC, to a mysterious Pink-Haired girl standing at a murder scene.\n\nFrom there on Takumi struggles to cope with the events unfolding around him, and is soon unaware of what is real or a delusion. As his fate opens up before him, the perpetrator behind the 'New Gen' events attempts to find him, leading him into a world where nothing is as it seems.", + "posterPath": "/lewQtkay1zX2VeedVLAbOoSzzBp.jpg", + "backdropPath": "/ubn8RJ81iTTOtGM9EiV7ss5JdyB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-10-09", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.095, + "voteCount": 21, + "popularity": 1.2529 + }, + { + "id": 42885, + "title": "Myself; Yourself", + "originalTitle": "Myself ; Yourself", + "overview": "Hikada Sana returns to his home town after living away in Tokyo for five years. Although some time has passed the town has not changed much. On a detour to his apartment, he notices that a shrine maiden is watching him as he visits the shrine. The following day at school, Sana is surprised to find out that this girl is actually Yatsushiro Nanaka, a good childhood friend, whom he gave a bracelet before he left so many years ago. And even to this day, she is still wearing it...", + "posterPath": "/b0o3pHbrE0iJnDXotoWeVvul5EQ.jpg", + "backdropPath": "/bv5folS3FAuyFfc6f7O3xNAhacY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-10-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 10, + "popularity": 1.2492 + }, + { + "id": 57757, + "title": "Brothers Conflict", + "originalTitle": "ブラザーズ コンフリクト", + "overview": "Imagine being the only child your whole life, and then suddenly finding yourself gaining 13 step-brothers!\n\nEma Hinata's lonely life takes a new and exciting turn when her single father Rintarou Hinata, a famous adventurer, falls in love and marries Miwa Asahina, an apparel maker. In order to give the newly-wed couple space, Ema starts living with her new step-brothers in a mansion called Sunrise Residence and for the first time, experiences being part of a lively and big family. She finally feels safe and content.\n\nEach brother has his own unique personality, and Ema soon realizes that it is not only family love that grows between them, but romance as well. Which brother will be the one to steal her heart in the end?", + "posterPath": "/bkngCjl9v9ierjyuGcPI1Ubp20m.jpg", + "backdropPath": "/wfesjHF7JEsJ0dQVqPwydm3T2r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-07-02", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 72, + "popularity": 1.2484 + }, + { + "id": 72919, + "title": "Croisée in a Foreign Labyrinth", + "originalTitle": "異国迷路のクロワーゼ The Animation", + "overview": "The story takes place in the second half of the 19th century, as Japanese culture gains popularity in the West. A young Japanese girl, Yune, accompanies a French traveler, Oscar, on his journey back to France, and offers to help at the family's ironwork shop in Paris. Oscar's nephew and shop-owner Claude reluctantly accepts to take care of Yune, and we learn how those two, who have so little in common, get to understand each other and live together in the Paris of the 1800s.", + "posterPath": "/wIDf4vPBb77HzFlTy6wMKX0qSvP.jpg", + "backdropPath": "/y35lIRnGc38H76nhuPEkbgSrhLE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2011-07-04", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 8, + "popularity": 1.2474 + }, + { + "id": 82737, + "title": "Ulysses: Jeanne d'Arc and the Alchemist Knight", + "originalTitle": "ユリシーズ ジャンヌ・ダルクと錬金の騎士", + "overview": "The story is set in the 15th century, during the Hundred Years' War between France and England over the succession to the French throne. Montmorency, the son of a noble, immerses himself in the studies of magic and alchemy at a royal knight training school. However, following France's crushing defeat at Agincourt, the school is dissolved. Having lost everything and now a wanted man, Montmorency, who had just become an alchemist, encounters a mysterious village girl named Jehanne.", + "posterPath": "/pUO8GCYbKCJgFgFDP27XS7AFCxE.jpg", + "backdropPath": "/hcGc7ktykKFT8qPsBhBSe219hvj.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2018-10-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 73, + "popularity": 1.2467 + }, + { + "id": 111450, + "title": "The Secret Garden", + "originalTitle": "アニメ ひみつの花園", + "overview": "Mary Lennox recently became an orphan because her parents died from a cholera epidemic in India so she was sent to live in England with her uncle. However, her uncle is a very distant man who talks to noone so she is left alone in the mansion with nobody to play with. Soon she meets a friendly servant boy named Dicon and his older sister Martha and they soon become good friends. Later on she discovers a secret garden and hopes it will bring happiness to her new family, including her cousin Collin who is crippled.", + "posterPath": "/lcBX5OyFxzp5dj5gWttmAhRnQcA.jpg", + "backdropPath": "/81otfke01bMqmTjyGxfJutiUlNC.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1991-04-19", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 5, + "popularity": 1.2466 + }, + { + "id": 45100, + "title": "No Money", + "originalTitle": "お金がないっ", + "overview": "Yukiya Ayase is a gentle, kindhearted, and innocent university student. The only relative he has left, his cousin Tetsuo, betrays Ayase with hopes of making an enormous profit to be able to pay off his debts. Somuku Kanou, a bad-tempered (though very rich) loan shark, comes to Ayase's rescue. Kanou apparently knows Ayase from something that happened between them in the past, but Ayase cannot remember who Kanou is, nor does he understand why he \"saved\" him. Love soon begins to grow between them.", + "posterPath": "/vga3Ee86tA7y43c7WkGevPTdaQz.jpg", + "backdropPath": "/gIszAHv1zKzl7Ntmx516Rjou69Y.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Comedy" + ], + "releaseDate": "2007-02-09", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 6, + "popularity": 1.2466 + }, + { + "id": 76140, + "title": "Sanrio Boys", + "originalTitle": "サンリオ男子", + "overview": "Hasegawa Kouta, 17 years old, is a second-year high school student.\n\nHis days are unremarkable and average when Kouta meets Mizuno Yuu, Yoshino Shunsuke, Nishimiya Ryo, and Minamoto Seiichiro, who are fellow students attending Hijirikawa High School.\n\nIn an instant, Kouta's average life begins to be awash with sparkling light.\n\nA tale of a sparkling youth and his encounter with the Sanrio Boys.\n\nOur story begins.", + "posterPath": "/2Po0rXazSixCJtj3XU19Dv7XjkW.jpg", + "backdropPath": "/u3MIBrVnXbqVFyh16awHtlnvMUJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2018-01-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 9, + "popularity": 1.2456 + }, + { + "id": 102285, + "title": "Mr Love: Queen's Choice", + "originalTitle": "恋とプロデューサー~EVOL×LOVE~", + "overview": "A girl inherits a company that is almost bankrupt from her late father. Lacking the funds, she must now become the producer herself in order to save the company from collapse. During her work, she meets four boys—financial expert Zen, the idol Kira, police officer Haku, and leading neuroscientist Simon—and is suddenly involved with the conspiracies and mysteries over the existence of special powers known as \"Evol.\"", + "posterPath": "/yD5qZROewqdFDD38y9wJrLbJjYU.jpg", + "backdropPath": "/fTrWCKXtjYptV1ckMQ2xYp3GhcL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2020-07-16", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 11, + "popularity": 1.2446 + }, + { + "id": 26769, + "title": "Cat Soup Theater", + "originalTitle": "ねこぢる劇場 ぢるぢるORIGINAL", + "overview": "23 animated shorts based on Nekojiru, aired as part of \"Bokusho Mondai Boss Chara Ou\"", + "posterPath": "/5V6o4IO3APP0I4DLMLuv0glMf7.jpg", + "backdropPath": "/skx6l08hp69o17ypMU7EXs6AKeA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-07-09", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 8, + "popularity": 1.2443 + }, + { + "id": 50093, + "title": "Arata: The Legend", + "originalTitle": "アラタカンガタリ 〜革神語〜", + "overview": "Every 30 years, a new princess is chosen from the Hime family to serve the Hayagami. The time has come again, but over these past years, records state not a single female has been born, save for one, the 15 year old Arata. The only problem is, Arata is actually a male! Forced to disguise himself and take the place of the princess candidate until a formal one can be found, he attends the festival only to witness the current princess, Kokuri-hime, murdered, and his own life is forfeit as well, by the hands of the princess' personal guard, the 12 Shinshou. As he runs for his life, Kannagi of the 12 convinces everyone that Arata is the one who has murdered the princess instead, and now everyone in the Imperial Court is after his head!", + "posterPath": "/c2AbUc6fXqUhDGmjJnHNA7NzH88.jpg", + "backdropPath": "/pIA4uPscjSlKacJrr95gVyFBif4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2013-04-09", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 7, + "popularity": 1.2434 + }, + { + "id": 55013, + "title": "Ghastly Prince Enma Burning Up", + "originalTitle": "Dororonえん魔くん メ~ラめら", + "overview": "Tokyo in the 1970s. Evil spirits are threatening the human world and the only ones who can stop them are a group known as the Spirit Patrol. Sent from the underworld the team consists of the hot-headed Enma, the stuck-up Yukiko, the half-water sprite Kapael and Chapeau-jii — the old man spirit in the form of a hat, who guides the group. This may not bode well... though.", + "posterPath": "/gfk71ua2ntncDjiHqWv7JDLQIHc.jpg", + "backdropPath": "/5J5hWQHsV7Zq09mRSEh0ylcDIFc.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-04-07", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.273, + "voteCount": 11, + "popularity": 1.2431 + }, + { + "id": 77159, + "title": "Violinist of Hamelin", + "originalTitle": "ハーメルンのバイオリン弾き", + "overview": "Flute is a young girl living in the small Staccato village of the kingdom of Sforzend, till the day when Queen Horn's barrier is destroyed, and that Flute learns she is the queen's daughter... Now to protect the world from the menacing army of demons, she must travel to the capital with her mysterious childhood friend Hamel, who has still to learn the truth about his own heritage.", + "posterPath": "/r8WKLSwl0ztxVzoWpwinYnQoKjd.jpg", + "backdropPath": "/gG4lE36wdkfd9maqmJk531trhIy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1996-10-02", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 3.2, + "voteCount": 5, + "popularity": 1.2408 + }, + { + "id": 25015, + "title": "Gun Frontier", + "originalTitle": "ガンフロンティア", + "overview": "Sea Pirate Captain Harlock and the errant samurai, Tochiro arrive in the United States on the Western Frontier. Along with a mysterious woman they meet along the way, the two friends challenge sex rings, bandits, and a corrupt sheriff. They are searching for a lost clan of Japanese immigrants, and they will tear Gun Frontier from end to end until they find it.", + "posterPath": "/j5XULSmXXK9DMbN07E9h1FjYJTg.jpg", + "backdropPath": "/iYwlpX1hhsZsxduWajJAJ2XQxhf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 37 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Western" + ], + "releaseDate": "2002-03-28", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 13, + "popularity": 1.2395 + }, + { + "id": 78456, + "title": "Alice or Alice", + "originalTitle": "ありすorありす", + "overview": "This story gives a look at the daily life of a pair or Alice twins and their older brother who has a sister complex. Them eating meals, getting into fights, playing with friends... Would you like to peek at the heart-full daily life of the cute Alices?", + "posterPath": "/6ZnRVm38i0lGynbBlDZrm4JWlHS.jpg", + "backdropPath": "/6PKQdrmU5CCFpFgQaRkHfUkZz28.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-04-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 3.5, + "voteCount": 11, + "popularity": 1.2384 + }, + { + "id": 42954, + "title": "Welcome to Irabu's Office", + "originalTitle": "空中ブランコ", + "overview": "Welcome to Irabu's Office, where you may be greeted by a man in a bear mask, holding a giant needle, who’s ready to cure your ills. Get to know the eccentric Dr. Ichirou Irabu who has a fetish for injections, and a rather strange methodology. Despite his weird approach, Dr. Irabu (who changes his appearance more than Madonna), does succeed in helping each of his patients... eventually.", + "posterPath": "/g2ywT0f5CBQGAetctsTz1nWKqMm.jpg", + "backdropPath": "/6kI6qQZkO7ler4zjLKVlBYwtSSj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2009-10-16", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 14, + "popularity": 1.2369 + }, + { + "id": 65774, + "title": "Sekko Boys", + "originalTitle": "石膏ボーイズ", + "overview": "Miki Ishimoto, a recent college graduate, is so excited to have landed her first job! Although she's inexperienced, she's to be the manager for a new boy band. Miki thinks life couldn't be going more smoothly, until she finds out that her new boy band members are all... Greco-Roman stone busts?", + "posterPath": "/ruQvcCxapfJ4hcL56eFmq1UdAyb.jpg", + "backdropPath": "/jcT8CUqhV72z7HvLRlJTk8WFlGd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 6, + "popularity": 1.2366 + }, + { + "id": 68079, + "title": "Magical Girl Raising Project", + "originalTitle": "魔法少女育成計画", + "overview": "A social game called The Magical Girl Raising Project allows one in tens of thousands of people to be a \"magical girl\" — possessing extraordinary physical capabilities and looks, as well as special magical powers that set them apart from the rest of the human race. But one day, in a district containing 16 magical girls, the administration announces that it must halve the number of magical girls to solve the problem of magical energy. At first, the 16 magical girls race to collect more \"magical candy\" than their competitors, but the rules quickly become twisted, and it quickly becomes a murderous battle for survival among them.", + "posterPath": "/ePcR0YP2VOMsqcsiMyTEr3Fovop.jpg", + "backdropPath": "/upIaC4KJO2GZTo1axxX5WLKBAVH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-10-01", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.85, + "voteCount": 20, + "popularity": 1.2362 + }, + { + "id": 229858, + "title": "Fate/strange Fake", + "originalTitle": "Fate/strange Fake", + "overview": "In a Holy Grail War, Mages (Masters) and their Heroic Spirits (Servants) fight for the control of the Holy Grail—an omnipotent wish-granting device said to fulfill any desire. Years have passed since the end of the Fifth Holy Grail War in Japan. Now, signs portend the emergence of a new Holy Grail in the western American city of Snowfield", + "posterPath": "/2r5MEaLYl5lZxzgfSmrDybipngl.jpg", + "backdropPath": "/kJVYs2p9SlU6YRZ7pJ0fE5mog2S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-12-31", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 9, + "popularity": 1.2346 + }, + { + "id": 93593, + "title": "Pet", + "originalTitle": "pet", + "overview": "The psychic suspense story revolves around people who possess the ability to infiltrate people's minds and manipulate memories. Their powers have been used in the underworld for covering up incidents, assassinations, and other deeds. These powers can not only destroy other people's spirits, but also corrupt the users' own hearts at the same time. The users had to protect their fragile and insecure hearts, as if chained to each other. They are called \"pets\" out of fear and despising.", + "posterPath": "/hXW7A2FXTvUdtzEtIlPRA6tS9qU.jpg", + "backdropPath": "/y9KZJNGAa7yuY2sJfE5tLSuc6Sz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 18 + ], + "genres": [ + "Animation", + "Mystery", + "Drama" + ], + "releaseDate": "2020-01-06", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 23, + "popularity": 1.2294 + }, + { + "id": 217404, + "title": "Stardust Telepath", + "originalTitle": "星屑テレパス", + "overview": "Umika is a sweet yet shy high school girl. She has trouble speaking to others and dreams of having a friend from another planet. But her lonely school life takes a cosmic turn when she meets transfer student Yu, an alien with telepathic powers! The two become close and promise to go to space one day. So, they decide to build a rocket and shoot for the stars, making new friends along the way.", + "posterPath": "/axZH2f5yrJAhpSn2UX0LkI6zlNE.jpg", + "backdropPath": "/fwyZMW98Zf8w10oXn7KNIDmJ7qU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 12, + "popularity": 1.2278 + }, + { + "id": 75431, + "title": "Komori-san Can't Decline!", + "originalTitle": "小森さんは断れない!", + "overview": "Fourteen-year-old Komori Shuri is a junior high school girl who is too nice to decline requests. Constantly doing favors for other people has given her incredible strength?! But even so, she is also an adolescent junior high school girl.", + "posterPath": "/5x4zSfPGabmtTzgGBIdvGk9gi5L.jpg", + "backdropPath": "/ofsymSzq1jG4g1td59YWdNspSzo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2015-10-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 6, + "popularity": 1.2278 + }, + { + "id": 13411, + "title": "Triton of the Sea", + "originalTitle": "海のトリトン", + "overview": "5000 years ago, the Triton Family was living peacefully in Atlantis until the Poseidon Family destroyed them all. Triton, of the Triton Family line, embarks on an adventurous life in the sea fighting the Poseidon Family.", + "posterPath": "/rvTFaseaHRLWR9sWycki8EGgFmB.jpg", + "backdropPath": "/uAGTzuseqO1uyXQXfsqxNnaHPwt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1972-04-01", + "releaseYear": "1972", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 7, + "popularity": 1.2278 + }, + { + "id": 1096, + "title": "Kamichu!", + "originalTitle": "かみちゅ!", + "overview": "Yurie is just an ordinary middle school girl in the 1980's - until overnight she finds out that she is a Kami, or God, in the Shinto sense. When Yurie announces this fact to her best friend Mitsue, their classmate Mitsuri takes advantage of Yurie's new divinity to revitalize her family's dying shrine. Yurie is nicknamed Kamichu and now must go on with her godly duties while going to school and winning the heart of her crush, Kenji, while Mitsuri tries to replace her old shrine god Yashima with her.", + "posterPath": "/mKPSSO9Y8YfFrH6ZzXi1RTWjw6x.jpg", + "backdropPath": "/kihdx2PQvBTmq33QGaPMnYmpwoe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2005-06-29", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 8, + "popularity": 1.2273 + }, + { + "id": 71007, + "title": "ID-0", + "originalTitle": "ID-0", + "overview": "I-Machines are the general term for robots that operate in extreme environments. While Alliance Academy student Maya Mikuri is in the middle of operating an I-Machine, she gets involved in an incident with pirates, and ends up serving as a crew member on an excavation company's spaceship.", + "posterPath": "/26LXBxfhqj0GeukmXXdJ2xpBh85.jpg", + "backdropPath": "/J8bGgABUyzhGbaY8vmFLEsXsrR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-09", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 18, + "popularity": 1.2271 + }, + { + "id": 65206, + "title": "Spirit Blade Mountain", + "originalTitle": "霊剣山 星屑たちの宴", + "overview": "A comet falling will bring about a great calamity, and in order to choose a child fated by the falling comet, the family of the \"Reiken\" clan with a long storied history is once again resuming its entrance examination process to find disciples. The protagonist Wang Lu, who possesses a special soul that is only available once in a thousand years, decides to take the exam, and he starts down the path toward becoming an exceptional sage.", + "posterPath": "/moQ6vnO8QEd9wSmQuj1Uf8mrnrf.jpg", + "backdropPath": "/5z9hXqyRUVgDWi5hAUDh4elPaML.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 12, + "popularity": 1.2269 + }, + { + "id": 77415, + "title": "Yotsuiro Biyori", + "originalTitle": "鹿楓堂よついろ日和", + "overview": "Four men—Gure, Sui, Tokitaka, and Tsubaki—each help run a Japanese tea shop together called Rokuhoudou. When one visits the shop, they are greeted warmly, is served with tea, and are often helped with any problems they may have.", + "posterPath": "/xiVuWPbW4ceLdT5rDph3UslReBC.jpg", + "backdropPath": "/foBn1IIOUKeXxEt25XKRQwISZdR.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 16 + ], + "genres": [ + "Comedy", + "Drama", + "Animation" + ], + "releaseDate": "2018-04-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 11, + "popularity": 1.2266 + }, + { + "id": 76494, + "title": "ETOTAMA", + "originalTitle": "えとたま 干支魂", + "overview": "Since ancient times, Japan has upheld the tradition of the 12 Zodiac signs. Eto-musumes (Zodiac girls), who have the appearance and behavior of the animals of the Zodiac, are pure hearted messengers who act as a bridge between humans and the gods. Every 60 years, the “ETM 12” tournament takes place in Tokyo’s Akihabara district, where aspiring girls from all over Japan gather for the chance to become the next zodiac sign.", + "posterPath": "/xhl5Igq6fl5eqm5W9ByxRHOkl5L.jpg", + "backdropPath": "/jw8CN2hgq3ckvHxgKTqhFwEBBcl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-04-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 8, + "popularity": 1.2251 + }, + { + "id": 71006, + "title": "Hinako Note", + "originalTitle": "ひなこのーと", + "overview": "Born and raised in the countryside of Japan, Hinako \"Hina\" Sakuragi gets anxious easily when she talks to new people—so much so that she resembles a stiff scarecrow. To overcome this, Hina hopes to get involved in theater, inspired by a play she saw during her school's field trip. So, Hina moves into the Hitotose Manor in the bustling city of Tokyo to study at Fujiyama High School, aspiring to join the school's renowned theatre club.\n\nBut to Hina's dismay, she learns that Fujiyama High's theatre club has been on a lengthy hiatus. Having already come to Tokyo and enrolled in the school, Hina is at a loss for what to do next. Sensing her disappointment and eagerness to learn theatre, Chiaki Hagino, the landlady of Hitotose Manor, encourages Hina to create a troupe with the residents of Hitotose Manor as its members.\n\nThis story follows Hina as she begins a new life in Tokyo attending Fujiyama High while learning the ropes of theatre with the support of her friends along the way.", + "posterPath": "/4ps8bLuLeTS2FVjErYTsaWPGz4u.jpg", + "backdropPath": "/jPXnW9emZ0tvuL0GbqVLv7YHQTJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-04-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 10, + "popularity": 1.2248 + }, + { + "id": 68736, + "title": "Getter Robo: Armageddon", + "originalTitle": "真ゲッターロボ 世界最後の日", + "overview": "Dr. Saotome returns from the dead after being seemingly murdered by Getter pilot Nagare Ryoma and threatens the world with his ultimate creation: the Shin Dragon. Ryoma reluctantly teams up with his former co-pilots Jin Hayato and Tomoe Mushashi to combat Dr. Saotome. The pilots must also deal with the mysterious Invaders, aliens that have the ability to possess humans and warp their flesh to form hideous creatures.", + "posterPath": "/hvLnxlnNIr1lCTz3KAm1HjJKjte.jpg", + "backdropPath": "/qoLIInnDf9FJxJcVgZyvqQyDxz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-08-25", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.571, + "voteCount": 7, + "popularity": 1.2229 + }, + { + "id": 203124, + "title": "Me & Roboco", + "originalTitle": "僕とロボコ", + "overview": "In a world where most families own a cute maid robot, average elementary kid Bondo hopes for one of his own. But the robot who shows up is anything but average! Meet Roboco—the wackiest, most powerful maid imaginable!", + "posterPath": "/lJOWstbqMTXicRlbfUT2qIhXTI5.jpg", + "backdropPath": "/aoYiYpC66jtwxn4TXofu4ArCymb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-12-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 6, + "popularity": 1.2228 + }, + { + "id": 67818, + "title": "A.D. Police Files", + "originalTitle": "ADポリス", + "overview": "MegaTokyo 2027: Relentless technological development has resulted in the creation of Boomers.\n\nThese are artificially intelligent androids with the potential to free mankind from physical labor; but anything that can be used can also be misused.", + "posterPath": "/cnoxaByiINVuvb20bR5LmkHgzJX.jpg", + "backdropPath": "/uOqZrqNIvvP2mNoeCaSpDjUe52w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1990-05-25", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 36, + "popularity": 1.222 + }, + { + "id": 88506, + "title": "Night Warriors: Darkstalkers' Revenge", + "originalTitle": "ヴァンパイアハンター THE ANIMATED SERIES", + "overview": "In the midst of a war between the families of Demitri Maximoff and Morrigan Aensland for control of the Demon World, alien invader Pyron arrives on Earth and plans to take it over by taking out those who stand a chance of stopping him, namely the Darkstalkers. Meanwhile, dhampir Donovan Baine seeks to rid himself of the cursed blood which runs through his veins.", + "posterPath": "/yUGSIb2kqvOyOBMw0zwEA2IK0xc.jpg", + "backdropPath": "/ac8RcZnRkLMdycGTpPQNavsk8AK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1997-03-21", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 14, + "popularity": 1.2218 + }, + { + "id": 239478, + "title": "SAND LAND: THE SERIES", + "originalTitle": "SAND LAND: THE SERIES", + "overview": "Sand Land is a mysterious world where demons and humans eke out an existence in a barren desert wasteland. In hopes of replenishing their water supply, Fiend Prince Beelzebub, a demon named Thief, and a human named Sheriff Rao team up and embark on a journey in search of the Legendary Spring.", + "posterPath": "/fxBu818TRNHjHkUwGQctH775Ro3.jpg", + "backdropPath": "/tMt8J6w3z9H2CPboV5vf3eL9GN7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2024-03-20", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 59, + "popularity": 1.2215 + }, + { + "id": 10085, + "title": "Transformers: Cybertron", + "originalTitle": "トランスフォーマー ギャラクシーフォース", + "overview": "Transformers: Cybertron, known in Japan originally as Transformers: Galaxy Force, is the 2005-2007 Transformers toy line and animated series, another co-production between Hasbro and Takara. It was aired in Japan as a separate rebooted transformers series, though in America, the English dub was presented as a sequel to the previous series, Transformers: Armada and Transformers: Energon by adding dialogue and reusing a number of screens to link elements of the Armada and Energon series to the show, giving the impression that it is a sequel. In the anime, all of the Transformers are computer-generated, while the humans and backgrounds are rendered in traditional 2D animation. It is the last series in the Transformers franchise to be produced in Japan.", + "posterPath": "/ul8l6uP1nUeFKQXiElI6pHzMeat.jpg", + "backdropPath": "/pkw62mS7iKDbZpBs3mu7VT2zqNo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids" + ], + "releaseDate": "2005-01-08", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 17, + "popularity": 1.2192 + }, + { + "id": 36873, + "title": "Fortune Arterial: Red Promise", + "originalTitle": "FORTUNE ARTERIAL -赤い約束-", + "overview": "Fortune Arterial's story revolves around the male protagonist Kohei Hasekura, who transfers into a prestigious public school in the style of an English six-year school encompassing junior-high and high school students. The school is on an island named Tamatsu Island off-shore from mainland Japan, and the only way to get there is by boat. Soon after transferring, he discovers that one of the student in the class next door to his, Sendo Erika, is in fact a type of vampire.", + "posterPath": "/7wxnGW0X6tgPSprYUi61axveZAh.jpg", + "backdropPath": "/nq8pEnOQTK840VqZxY4QDzNXH3F.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2010-10-09", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 4.958, + "voteCount": 12, + "popularity": 1.2182 + }, + { + "id": 70468, + "title": "The Dragon Dentist", + "originalTitle": "龍の歯医者", + "overview": "The story takes place in Dragon Country. Nonoko is a newly appointed dentist and her mission is to protect the dragon, the guardian of the country, from tooth-cavity bacteria.\n\nOne day, amid increasingly fierce battles with the neighboring country, Nonoko finds on the dragon's tooth an unconscious boy soldier from the enemy country. His name is Bell, and he has been resurrected from inside the tooth by the dragon—a supernatural phenomenon that legend says occurs before a major disaster. As Nonoko and Bell go through a series of fierce battles, they eventually learn to accept their fate.", + "posterPath": "/xnN2C6kud4T54AaF2bqAqW5IoWd.jpg", + "backdropPath": "/7pZZEXgjfIzy6iPNJkJeXVvgmDN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-02-18", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.75, + "voteCount": 20, + "popularity": 1.218 + }, + { + "id": 52895, + "title": "Vividred Operation", + "originalTitle": "ビビッドレッド・オペレーション", + "overview": "On an artificial island, Akane Isshiki, an innocent 14-year-old girl, lives a simple but happy life with her level-headed little sister Momo and their genius inventor grandfather. On clear days just over the water, everyone on the island can see the revolutionary invention that solved all the world's energy problems, the Manifestation Engine. Thanks to the Manifestation Engine, the peaceful days that everyone had dreamed of had arrived. But suddenly, a mysterious enemy called the \"Alone\" appear out of nowhere aiming to attack the Manifestation Engine, jeopardizing their quiet way of life. Equipped with incredibly powerful Palette Suits designed by her grandfather, Akane and her friends must rise up together in this desperate situation. Their friendship is the only hope to save the world.", + "posterPath": "/igq0TWyOgty7iy2DAauSIUwX0tZ.jpg", + "backdropPath": "/u2HUw3P1lMuEZxZ0TAKAViScvG2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-01-11", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 30, + "popularity": 1.2167 + }, + { + "id": 77294, + "title": "In Search of the Lost Future", + "originalTitle": "失われた未来を求めて", + "overview": "Kaori Sasaki—a member of Uchihama Academy's Astronomy Club—confesses to Sou Akiyama, but later that evening, she dies in a tragic road accident. Her friends and fellow club members mourn her death in a local hospital. Yet she shows up to school the following day, and no one senses anything amiss.\n\nThe day finishes without any unusual incidents, and the group of friends plans for the upcoming cultural festival. Suddenly, the room is shaken by an unnatural earthquake. Everyone splits up to investigate—except for Nagisa Hanamiya, who stays behind. As everyone leaves, Nagisa notices that the odd relic-like cube that she was toying with starts emitting a strange blue light. Meanwhile, Sou stumbles upon an unconscious, naked girl lying in a pool of water.", + "posterPath": "/55zUMkvDKR54AhmvlxtdMQYYSHw.jpg", + "backdropPath": "/drYkEtfyisUXqGMXHKMkldkphQS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.571, + "voteCount": 7, + "popularity": 1.2147 + }, + { + "id": 38671, + "title": "Dream Eater Merry", + "originalTitle": "夢喰いメリー", + "overview": "Yumeji has the ability to see the dreams of other people around him. When Yumeji meets Nightmare Merry, a dream demon seeking to return to her own world he uses his power to assist her.", + "posterPath": "/eZmRlmzzIjLqkAQeZF3aybsJWC5.jpg", + "backdropPath": "/cpAbfOxjOnagr09f24yZgbxWT7G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2011-01-06", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.575, + "voteCount": 53, + "popularity": 1.2137 + }, + { + "id": 65713, + "title": "AOKANA: Four Rhythm Across the Blue", + "originalTitle": "蒼の彼方のフォーリズム", + "overview": "In the Four Islands Archipelago, people can use Grav-Shoes to fly around! This is the story of Asuka Kurashina, a transfer student that arrives at Kunahama Academy from outside the Four Islands. After seeing the ability of wearers to soar in the sky, she quickly develops an interest in flying with the Grav-Shoes and also joins the school's FC (Flying Circus) club to further her passion.", + "posterPath": "/p7qJXTAoA3ITA8yf7lyLJSXwEgX.jpg", + "backdropPath": "/e3jEyz16CjrDafVYeiSb7buqleR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-12", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 24, + "popularity": 1.2136 + }, + { + "id": 20870, + "title": "Dinosaur War Izenborg", + "originalTitle": "恐竜大戦争アイゼンボーグ", + "overview": "Dinosaur War Izenborg was a Japanese television program produced by Tsuburaya Productions that aired from 1977 to 1978 on Tokyo 12 Channel. It combined Tsuburaya's trademark suitmation tokusatsu techniques with Japanese Animation, so this program can be categorized anime or Daikaiju tokusatsu. The show runs for about 39 episodes.", + "posterPath": "/mviSnDTCCwBdIoRaK5pJRAOGEki.jpg", + "backdropPath": "/emadSvOQiJQknfO2Z0uZUDMENbm.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1977-10-07", + "releaseYear": "1977", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 5, + "popularity": 1.2129 + }, + { + "id": 89742, + "title": "Library War", + "originalTitle": "図書館戦争", + "overview": "Iku Kasahara wants more than anything to be an ally of justice--just like her prince. In the current age, the Media Betterment Act has allowed the Japanese government to impose heavy censorship on the expression of ideas, particularly those from books. When her favorite childhood book was marked for censorship, Iku felt that oppression firsthand, but she (and the book) was saved by a man from the Kanto Library Defense Force... her prince! Inspired by his example, Iku joined the Kanto library to safeguard expression of freedom, all while searching for the man she idolizes.", + "posterPath": "/d9CXYp5s5nJMlHF03bJlQlhkvxb.jpg", + "backdropPath": "/qY5pmNt7eQTq6i4h501w4ZazjeJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2008-04-10", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 13, + "popularity": 1.2109 + }, + { + "id": 86123, + "title": "PERSONA -trinity soul-", + "originalTitle": "PERSONA -trinity soul-", + "overview": "Brothers Shin & Jun Kanzato return to their hometown of Ayanagi City to reunite with their older sibling & police chief Ryo. Shin grows suspicious when Ryo, knee-deep in a grisly murder case with impossible victims, tells the two to turn back. This suspicion deepens when Shin develops a mysterious ability called \"Persona\", and finds himself under assault by those with the same power.\n\nNow Shin must uncover what exactly his brother is trying to protect him from. Who is the cause of the murders? And how does it relate to the incident 10 years ago that separated the brothers to begin with? Something sinister is afoot in Ayanagi City, and Shin is going to find out what... before it finds him first.", + "posterPath": "/swbe9407OIOdkEBkamu7CR8klMw.jpg", + "backdropPath": "/16yEEXD6TK3b91WQe6Iicvaj8t1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 9648, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery", + "Drama" + ], + "releaseDate": "2008-01-05", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 8, + "popularity": 1.2106 + }, + { + "id": 68768, + "title": "Dance with Devils", + "originalTitle": "ダンス・ウィズ・デビルス", + "overview": "Ritsuka Tachibana is a female second-year high school student who attends Shiko Academy in Shiko Town. She enjoyed her school life while living with her mother Maria, but one day, that balance fell into ruin when she discovers several of her attractive, male classmate are demons.", + "posterPath": "/zO5qNYWmA4lFwxuBJCc6P1mIHfo.jpg", + "backdropPath": "/2INGZOca8FQnhhjHr58JoXuEW5g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2015-10-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 18, + "popularity": 1.2095 + }, + { + "id": 121800, + "title": "Battle Spirits: Shounen Gekiha Dan", + "originalTitle": "バトルスピリッツ 少年激覇ダン", + "overview": "Dan Bashin is a young Card Battler who dreams of winning the championship tournament of the trading card game Battle Spirits. One day, he follows a strange girl he meets at the championship. Suddenly he is flung into the Otherworld Grand Rolo ruled by Ikaiou. It is a world where Card Battles with Battle Spirits are the ultimate form of combat.", + "posterPath": "/8PNcgkUVfC5aye3BxXjJ8tbp8T1.jpg", + "backdropPath": "/xKP8niBIr8P1zyh1Dj0gryfkGHs.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10762 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2009-09-13", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 5, + "popularity": 1.2091 + }, + { + "id": 34826, + "title": "Futakoi", + "originalTitle": "双恋", + "overview": "With his mother dead and his father working abroad, Futami Nozomu returns alone to the town where he lived as a child, to attend high school and work at a local shrine. He soon finds himself caught up in a local legend of twin girls loving the same man.", + "posterPath": "/nnU6IXTxDC4QKNbO2jFMYCA7mvn.jpg", + "backdropPath": "/iRkCFPbJBqrqOEigrZmi0McfKPx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2004-10-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 8, + "popularity": 1.2083 + }, + { + "id": 138882, + "title": "Shoot! Goal to the Future", + "originalTitle": "シュート!Goal to the Future", + "overview": "Atsushi Kamiya is a former captain at Kakegawa High School and the world-renowned \"courageous captain\" for a famous Italian soccer team. Hideto Tsuji, a student at Kakegawa High School seems uninterested in the now-weakened soccer team. Their meeting is the start of a new legend.", + "posterPath": "/3jMImKHLU9zoB2K2hDEe6fu1Emn.jpg", + "backdropPath": "/pTVauqRiwGx0gqRwwwqOalTrbLd.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2022-07-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.938, + "voteCount": 8, + "popularity": 1.2074 + }, + { + "id": 35465, + "title": "Figure 17: Tsubasa & Hikaru", + "originalTitle": "フィギュア17 つばさ&ヒカル", + "overview": "Tsubasa Shiina witnesses a UFO crash in the forest near her home. She rushes to the scene and there an alien lifeform fuses with her body to form the battle armor Figure 17.", + "posterPath": "/plWzlmrP0u5FYiV5hLwHQUjEUGF.jpg", + "backdropPath": "/49L4AMmw8w4edK9jrACimYMChEY.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18, + 10759 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2001-05-27", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.25, + "voteCount": 8, + "popularity": 1.2073 + }, + { + "id": 74411, + "title": "Abnormal Physiology Seminar", + "originalTitle": "変ゼミ", + "overview": "Nanako Matsutaka is a normal university student, who happens to enroll in the Abnormal Physiology Seminar. She tries to keep her mental state sound, but other abnormal classmates start to influence her personality...", + "posterPath": "/q5DB7uEfZIiBkgkkMyulB7KLx1Y.jpg", + "backdropPath": "/siNSWJF2kO5CSzQNRKXsQvFCTJn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-04-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.1, + "voteCount": 7, + "popularity": 1.2072 + }, + { + "id": 21733, + "title": "Macross Plus", + "originalTitle": "マクロスプラス", + "overview": "The year is 2040 and the galaxy is flourishing with several colonies and advanced technology. AI is near perfection and the current top idol is the near-completed Virturoid Idol Sharon Apple. All that is missing are her actual feelings, which instead are supplied by Myung Fang Lone. Sharon's debut concert is on planet Eden, where at the same time, fighter pilots Isamu Dyson and Guld Bowman battle over air superiority for the Supernova Project. Isamu, Guld and Myung were once childhood friends, but after an accident seven years ago, they went their own separate ways. With Myung back in the picture, the old disputes are once again awakened. And when an unstable and illegal AI technique is installed in Sharon, the situation is worsened.", + "posterPath": "/1Rf4IQzzpkaoS94Dho9t1bpJJ4Q.jpg", + "backdropPath": "/y1AujrKyOXeRamjKaKw0WC44fgd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1994-08-25", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 49, + "popularity": 1.2069 + }, + { + "id": 126065, + "title": "Gatchaman", + "originalTitle": "ガッチャマン", + "overview": "In the year 2066, the Republic of Hontworl, a charter member of the United Nations, leaves the organization without explaining its motives. This causes an outrage within the U.N. and places the security of the world on edge. Soon after this incident, Myori, the capital of the Republic of Triad, is attacked by a bird-like, flying fortress known as the Turtle King. The International Science Organization, which is headed by Dr. Kouzaburou Nanbu, is tasked to deal with this mysterious enemy. At the same time, the leading scientists of the ISO are disappearing. The five members of the Science Ninja Team, the Gatchaman warriors, are called upon to get to the bottom of things.", + "posterPath": "/spkxdKAVpY2QEW5u0VzZlUlAIyf.jpg", + "backdropPath": "/kWoaGpww6PPzEWhuPpRni26bgmW.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1994-09-30", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 8.3, + "voteCount": 7, + "popularity": 1.2014 + }, + { + "id": 44485, + "title": "Tokyo Babylon", + "originalTitle": "東京BABYLON", + "overview": "Psychic investigator Subaru Sumeragi is hot on the tail of a serial killer who seems to have some supernatural powers of his own. When Subaru encounters a young girl placing a curse on his suspect, the mystery deepens. The body count continues to rise, and Subaru must solve the case quickly, or he may become the killer’s next target!", + "posterPath": "/ieYl3kVOzC7lQ9jNwkvG1nwkADh.jpg", + "backdropPath": "/hHivQc16A9ppgU1kGOWIoRutzsR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 9648, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Mystery", + "Crime" + ], + "releaseDate": "1992-10-21", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 5.25, + "voteCount": 16, + "popularity": 1.2011 + }, + { + "id": 42505, + "title": "Sacred Seven", + "originalTitle": "セイクリッドセブン", + "overview": "Sacred Seven, is a 2011 Japanese science fiction anime television series produced by Sunrise under the direction of Yoshimitsu Ohashi. Script supervisor is Shin Yoshida with mechanical designs by Ippei Gyōbu. The series began broadcasting in Japan starting July 3, 2011 on the Mainichi Broadcasting System and later will be rebroadcast by TV Kanagawa, TV Aichi, Tokyo MX, and Teletama. The anime was originally licensed by Bandai Entertainment for streaming, but they shut down in 2012. At Otakon 2013, Sunrise had announced that Sacred Seven will be licensed by Sentai Filmworks.", + "posterPath": "/kTYUHmTcH5UdmBhOr9Ry85C9GUw.jpg", + "backdropPath": "/gzK3QYpE4UWpQexNyElHSjn2bfY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2011-07-03", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7.167, + "voteCount": 6, + "popularity": 1.2001 + }, + { + "id": 158131, + "title": "YUREI DECO", + "originalTitle": "ユーレイデコ", + "overview": "The story begins when Berry, an average girl from an average home, meets Hack, a girl who looks like a boy. Charmed by Hack, Berry meets up with the team Hack leads, the Ghost Detectives Club. Members of this club are “socially dead,” working invisibly within the digitally controlled society of Tom Sawyer. As she works with the group, Berry learns about Zero, a mysterious figure who lurks within Tom Sawyer’s underground. She and Hack decide to chase down this figure, and in time, the truth behind the city is revealed...", + "posterPath": "/oNfXL2jZBZCuSjrdHoDlBWOLCpa.jpg", + "backdropPath": "/112P7OA36akZrbEAecMGGRBmYeC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2022-07-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.143, + "voteCount": 7, + "popularity": 1.1991 + }, + { + "id": 99639, + "title": "Petit Eva: Evangelion@School", + "originalTitle": "ぷちえゔぁ", + "overview": "The series is a parody of Neon Genesis Evangelion, in which the entire cast of the original series are now everyday students going to junior high school together at Tokyo-3. The series features three Rei sisters: one is a child younger than the rest based on Rei 1, the second is based on Rei 2 (the Rei seen for most of the normal series), and the third Rei is actually based on the hyperactive and klutzy Alternate Rei (seen in the alternate-reality dream sequence from the final episode of the original series). Further, Evangelion Unit 01 itself is one of their classmates, but this time as a human-sized robot who acts as something of a class bully. Even the Jet Alone robot is re-imagined as a character on the series.", + "posterPath": "/sJ4q31GJIA6B9h4U1MgxlbF3z50.jpg", + "backdropPath": "/2yKVIQ9xVKkvsmF4qYjXZPXntAX.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2007-03-20", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 11, + "popularity": 1.1968 + }, + { + "id": 66115, + "title": "Kagewani", + "originalTitle": "影鰐-KAGEWANI-", + "overview": "Mysterious monsters that appear and attack in present time. The people can only be played with by them in this extreme situation. Why do these monsters appear to attack people...? Sousuke Banba, a scientist, searches for the truth with the keyword \"Kagewani\" A new feeling of panic suspense animation begins.", + "posterPath": "/hMtij8Vmy6vYRZqOAOsPmjDgtKc.jpg", + "backdropPath": "/pNtbdxI7R7LdonOCwycg8JizXX1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-02", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 8, + "popularity": 1.1949 + }, + { + "id": 68484, + "title": "Crane Game Girls", + "originalTitle": "美少女遊戯ユニットクレーンゲール Crane Game Girls", + "overview": "Crange Game Girls follows the adventures of three girls who save the world by playing Crane Games.", + "posterPath": "/y4MiFFG5cmWnYO19nsRIQEjjrz1.jpg", + "backdropPath": "/wBqVx6PmUJFvXUFlnQdbZ0bcyhN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2016-04-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 9, + "popularity": 1.1916 + }, + { + "id": 58232, + "title": "Sasami-san@Ganbaranai", + "originalTitle": "ささみさん@がんばらない", + "overview": "The Japanese call them hikikomori-people who've become so withdrawn socially that they refuse to leave their homes for weeks and even months at a time. For Sasami Tsukuyomi, who's attempting to pass her first year of high school despite being a shut in, it's more than just a word. Fortunately though, she lives with her older brother Kamiomi, who just happens to be a teacher at the school Sasami is supposed to attend. Not to mention, her \"Brother Surveillance Tool\" which lets her view the outside world via her computer and will, theoretically, allow her to readjust to interfacing with people again. What it mainly does, however, is let her view her brother's interactions with the three very odd Yagami sisters, who inexplicably seem to have had their ages reversed and have various types of \"interest\" in Kamiomi. And then things start to get really weird... Magical powers? Everything turning into chocolate? Is life via the web warping Sasami's brain, or is it the universe that's going ...", + "posterPath": "/vkhhb5lQhQ9k8wMZGNM8qwQnq4Y.jpg", + "backdropPath": "/bN5lkkKTxvSbRWbQzi299gKwPbl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-01-11", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 4.4, + "voteCount": 7, + "popularity": 1.1914 + }, + { + "id": 78467, + "title": "Crossing Time", + "originalTitle": "踏切時間", + "overview": "“Clank, clank, clank, clank...”\n\nToday, the railroad crossing bar goes down again, stopping someone on their way somewhere. The various stories of youth, eros, art, first love, etc that occur during the time spent waiting at a railroad crossing... All railroad crossings, all the time. Bringing you a variety of short stories about railroad crossings!", + "posterPath": "/8F8Y6Usd5DSGTCdgEogFOMNf5wU.jpg", + "backdropPath": "/6KtkF2KTIJMYqsmgnX7DROWlkDo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-04-10", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 13, + "popularity": 1.1906 + }, + { + "id": 82937, + "title": "Skull-face Bookseller Honda-san", + "originalTitle": "ガイコツ書店員本田さん", + "overview": "Honda-san is at war - with business, with out-of-print books, and with people who love manga! Who knew there were so many laughs to be found at the manga counter of a bookstore?! These are the day-to-day happenings that take place at a certain bookstore where the love of manga is abundant.", + "posterPath": "/9aKzJUkC7r9UTlDpNjUnQh9CjPf.jpg", + "backdropPath": "/v4gs3NoRSoVWlS1kA0c9BqkTIJn.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-10-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.391, + "voteCount": 23, + "popularity": 1.1903 + }, + { + "id": 37195, + "title": "Special A", + "originalTitle": "S・A〜スペシャル・エー〜", + "overview": "When Hikari was little, she and her father liked to watch professional wrestling, and she became very good at it. She is the pride of her family until she is introduced to Kei, the son of her father's friend.", + "posterPath": "/3U8ku4H36yH0IzfR3C3yfxiEdyX.jpg", + "backdropPath": "/vw5SEngkJvSTXbr1A5QXCr4rWIA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2008-04-06", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 18, + "popularity": 1.1903 + }, + { + "id": 72528, + "title": "Chronos Ruler", + "originalTitle": "時間の支配者", + "overview": "The story centers on \"Chronos Rulers,\" those who fight the time-eating demons that appear when people wish they could turn back time. The Chronos Rulers fight a time-manipulation battle against these demons.", + "posterPath": "/eU0CaUJk4q1Ms81SrF90EP9bbEK.jpg", + "backdropPath": "/6aLO9RLfAy9DwRDDCSKoEEfwron.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 12, + "popularity": 1.1902 + }, + { + "id": 71216, + "title": "Weather Report Girl", + "originalTitle": "お天気お姉さん", + "overview": "A two-part anime series about a weather anchor who becomes famous after flashing her underwear live on TV.", + "posterPath": "/ujLxRB3DTztUbN3YdxwD2VBh4Jk.jpg", + "backdropPath": "/8UGpOe05z554inSfYR0SiRqXgln.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1995-06-01", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 3.889, + "voteCount": 9, + "popularity": 1.1892 + }, + { + "id": 96196, + "title": "True Cooking Master Boy", + "originalTitle": "真・中華一番!", + "overview": "After the death of Mao's mother - Pai - who was called the Goddess of Cuisine, Mao wants to be the Master Chef of his mother's restaurant. However, before Mao takes his mother's place as Master Chef, he travels to China in order to learn more of the many ways of cooking, in the hopes of becoming a legendary chef just like his mother.", + "posterPath": "/mg2fUxfH3ktaWqbSq4oL3g3yyCm.jpg", + "backdropPath": "/61n9djOnRSAWzip84WkzYOhtsNd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-10-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 11, + "popularity": 1.1877 + }, + { + "id": 68485, + "title": "BlazBlue Alter Memory", + "originalTitle": "ブレイブルー オルターメモリー", + "overview": "In the year 2199, humanity eagerly waits for the dawn of the new century, following the end of a series of devastating magic wars. When the world's most wanted man, Ragna the Bloodedge (also known as the Grim Reaper) make a move to destroy society, a group of ragtag fighters come together to stop him.", + "posterPath": "/z7c0u3685hh5ESCTrZZNkATqYm5.jpg", + "backdropPath": "/eOVfklmUzGdYB18XwMVXXxiqpFX.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 9648 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2013-10-09", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.455, + "voteCount": 22, + "popularity": 1.1851 + }, + { + "id": 34678, + "title": "Basquash!", + "originalTitle": "バスカッシュ!", + "overview": "Moving to the moon means a new life — one with fame, fortune, and medical treatments for his sister. When he crashes a Bigfoot Basketball game and revolutionizes the sport, has he finally found his chance?", + "posterPath": "/oMbRy3pEvb6xYWSQKHKDI9y9OeI.jpg", + "backdropPath": "/7G0tUp2UiAzNauYS1KGH3nviCA9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2009-04-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.5, + "voteCount": 6, + "popularity": 1.1851 + }, + { + "id": 34760, + "title": "Yomigaeru Sora – Rescue Wings", + "originalTitle": "よみがえる空 -RESCUE WINGS-", + "overview": "Yomigaeru Sora - Rescue Wings - is a Japanese anime series produced by J.C. STAFF which aired on TV Tokyo in 2006. The main character is 2nd Lieutenant Uchida Kazuhiro, a helicopter pilot in a search and rescue wing of the Japan Air Self Defense Force.", + "posterPath": "/9EeCGWqEEZYCx5fYvOi3ae2NJYU.jpg", + "backdropPath": "/8sneuWGzzWgY39YA4dipmCnDXju.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2006-01-09", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 1.1832 + }, + { + "id": 63499, + "title": "Classroom Crisis", + "originalTitle": "Classroom☆Crisis", + "overview": "Humanity has successfully colonized all the planets in the Solar System, with intentions to continue into new frontiers. Individuals live stable lives in these colonies, including young high school students living in 4th Tokyo on Mars. Two of these students are Iris Shirazaki and Mizuki Sera. Iris is finishing her last year of high school while studying to be a test pilot while her friend Mizuki also works as a mechanic on the aircraft. Her own brother, Kaito, oversees Mizuki and Iris as their homeroom teacher and program director.", + "posterPath": "/12vvTklZaXHSvfyuQMoi8HuHbh4.jpg", + "backdropPath": "/irTjTz2LOsK64yeo8nQasS6aTKK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2015-07-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 28, + "popularity": 1.1829 + }, + { + "id": 78375, + "title": "Lost Song", + "originalTitle": "LOST SONG", + "overview": "War looms over the kingdom of Neunatia, where two young women are both burdened and blessed by the power of song.", + "posterPath": "/jRdgOMB3FxTYfP7CVJzYc4kg8eN.jpg", + "backdropPath": "/qV1ssIhW3mnoBOM90MC3Zxvn3Mz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 22, + "popularity": 1.1825 + }, + { + "id": 93890, + "title": "TAMAYOMI: The Baseball Girls", + "originalTitle": "球詠", + "overview": "In her Junior High years, the pitcher Yomi Takeda was not able to get very far in a cross-school baseball tournament. Since the catcher on her team wasn't at her level, she couldn't use her signature move, the \"Magic Throw,\" and eventually regretted not being able to use it. After Junior High, she decided to stop playing baseball and went to Shin Koshigaya High School, a school without a baseball club. There, she found her long lost childhood friend, Tamaki Yamazaki, who used to play catchball with her when they were kids. Tamaki also played baseball during her Junior High years as a catcher, and could even catch Yomi's \"Magic Throw!\" Their promise with each other during their childhood could now be fulfilled! Walking together on the road of baseball once again... The story of the girls who love baseball will begin!", + "posterPath": "/aoTY6IXfNYxWBJyNPI792y6CpYW.jpg", + "backdropPath": "/oEYvOKvy28kDa7jNYg2yLscZwFI.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2020-04-01", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.25, + "voteCount": 12, + "popularity": 1.1824 + }, + { + "id": 93319, + "title": "Monster Strike The Animation", + "originalTitle": "モンスターストライク- 反逆の堕天使", + "overview": "The Angelic Guard, who call the heavens their home, have been tasked with collecting the orbs scattered across the world. Lucifer—a leader of the Angelic Guard with a rebellious streak, said to wield power rivaling the Almighty—carries out her duty along with Uriel, also a leader of the guard. Together, they go about executing their mission, until Holy Magistrate Keter—the one who leads the heavens under the Almighty's will—tells Uriel of Lucifer's planned rebellion. Initially in disbelief, Uriel then learns that the accusations against Lucifer may be connected to an event that once threatened to shatter the heavens.", + "posterPath": "/r5Nx9gLn6VcXHNUPqLgM7Wa3Kk2.jpg", + "backdropPath": "/kBQuOP1Mdl5HcvtULXCtuXyA2Lc.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-07-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 9, + "popularity": 1.1815 + }, + { + "id": 196042, + "title": "Opus.COLORs", + "originalTitle": "Opus.COLORs", + "overview": "At the prestigious art school, Eisen High, friends Yamanashi Kazuya and Tsuzuki Jun aspire to be Perception Artists—a unique digital painting style. Beyond artistic dreams, Kazuya has another goal—win back his friendship with another childhood friend he hasn’t heard from in 10 years, Takise Kyo, who attends as well. Welcome to the world of this youthful art story about to be drawn.", + "posterPath": "/wsW75lAl53zlaIh2gQO4Kebraw4.jpg", + "backdropPath": "/hMmRxlw9GsF3eGoJSo3Yw3H1GWn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-04-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 5, + "popularity": 1.1799 + }, + { + "id": 39383, + "title": "Photon: The Idiot Adventures", + "originalTitle": "フォトン", + "overview": "Photon, a young man with a kind heart and superhuman strength, leaves his village on Sandy Planet (a desert world) in search of a runaway friend. During this heroic quest, he is accidentally engaged to a renegade space pilot! Now they're on the run from the evil emperor of the galaxy and his bumbling henchmen. But even worse than the incompetent bad guys are the disastrous cooking contests, exploding spas and cheer-leading aliens!", + "posterPath": "/mZibCOrGoSCPA7MQ7MGDdj3morh.jpg", + "backdropPath": "/q3Q17ursfzuBYS5b6J8BG9ucjis.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1997-11-21", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 10, + "popularity": 1.1798 + }, + { + "id": 69606, + "title": "Glasslip", + "originalTitle": "グラスリップ", + "overview": "What if you hold the power to hear the voices or see fragments of images from the future? Would that be a good thing or a bad thing? Glasslip follows the life of Touko Fukami, an aspiring glass artist born from a glass artisan family. She enjoys her worry-free life in Fukui, save for the fragments of images that she sees on occasion.\n\nOn her 18th summer, she meets the transfer student Kakeru Okikura at her school, and then again at her favorite café called Kazemichi together with all four of her friends. The voices from the future lead Kakeru to Touko, and his arrival disrupts her mediocre existence. All six of the friends must face their most unforgettable summer full of hope, affection, and heartache.", + "posterPath": "/A1EOJveSrU2zUyA0bReOBrXJ46r.jpg", + "backdropPath": "/5sWH6EuRdmfr9TKY1HdxTphKLXr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2014-07-03", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 15, + "popularity": 1.1792 + }, + { + "id": 121301, + "title": "Hetalia: World Stars", + "originalTitle": "ヘタリア World★Stars", + "overview": "After six years of waiting, Hetalia is back! The countries of the world change into/become beautiful boys and take you through the most important events in history. Follow Italy, Germany and Japan in their crazy adventures!", + "posterPath": "/fPzMa1HRYfPOwLa2LRteJsAk6gQ.jpg", + "backdropPath": "/tlAydeoBnQ7zmzw8qjJMS6Ng47v.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-04-01", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 11, + "popularity": 1.1775 + }, + { + "id": 20467, + "title": "Casshan: Robot Hunter", + "originalTitle": "キャシャーン", + "overview": "Far in the future, ecological disaster on Earth led humans to create a race of androids called Neoroids to clean up the mess but they promptly turned on their human masters and enslaved them. Enter a lone fighter named Casshan with a mission to free humanity ... and restore his family's honor.", + "posterPath": "/6F7VKm3Mftr0udMqRy9m9MRiy2M.jpg", + "backdropPath": "/8NclqwvfZiZ9233QBOwC7L7c2qk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1993-08-21", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 13, + "popularity": 1.1743 + }, + { + "id": 68417, + "title": "AIKa R-16 Virgin Mission", + "originalTitle": "AIKa R-16:VIRGIN MISSION", + "overview": "Aika is an intelligent and athletic high school girl. Competently she successfully passes the salvager's license test, obtaining a C-class license. Yet, she is young and hot-headed, so much so that Gozo still treats her like a child. Due to this personality, no one is willing to hire her for salvaging jobs.\n\nEager to get started with salvaging, though, she decides to post an ad in her school to attract potential clients. She manages to get the attention of Eri, a daughter of a rich family and head of the school's treasure hunting club. She asks Aika to salvage something from the sea floor and Aika accepts the assignment.\n\nHowever, upon seeing the state-of-the-art submarine loaded onto Eri's private cruiser and discovering their destination, Aika realizes the dangerous nature of this mission, culminating in a clash with a group of armed high school girls on the southern islands.", + "posterPath": "/cUdRWc50BpSfhyN57NpA90vPmMO.jpg", + "backdropPath": "/qpf1mr6RU74iTP4RBh2c6AoRwWk.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2007-04-25", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.756, + "voteCount": 119, + "popularity": 1.1741 + }, + { + "id": 60832, + "title": "Nanana's Buried Treasure", + "originalTitle": "龍ヶ嬢七々々の埋蔵金", + "overview": "Disowned by his father, Jugo Yama has run away from home to the island of Nanae. He begins to live by himself, only to discover his room is haunted by the ghost of Nanana Ryugajo. She was murdered ten years ago, and her killer must be found before she can rest in peace. Before her death, Nanana collected things from all over the world and hid them throughout the island. Using the mysterious powers of these hidden items, they should be able to find the culprit. As Jugo begins his hunt for her collection, however, he discovers he's not the only person searching.", + "posterPath": "/qGYn9NrX7176XT5ll2fmJWFI6qZ.jpg", + "backdropPath": "/xOCt7AWQLwYu6FLJKt7r6miFAXf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2014-04-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.818, + "voteCount": 11, + "popularity": 1.172 + }, + { + "id": 28037, + "title": "Ryu the Primitive Boy", + "originalTitle": "原始少年リュウ", + "overview": "When Ryuu is born his tribe tries to sacrifice him to a Tyrannosaurus named Shirano because of the color of his skin. He is however saved by a monkey who raises him as her own son. Meanwhile Ryuu's mother has left the tribe and is out on a quest to find Ryuu.\n\n16 years later Ryuu meets a girl named Ran who was sold to the tribe Ryuu originaly came from. The tribe is not happy to see Ryuu alive and tries to sacrifice him again, this time by burning him alive. Before they can get the deed done the tribe is massacred along with Ryuu's adoptive mother by Shirano. Ryuu then sets out on a quest together with Ran to find his mother and Ran's brother Don.", + "posterPath": "/xHRzdyZ7q0V5cmBnvix2FlpSrzV.jpg", + "backdropPath": "/gbjUA4TcVa8eLs4IWieuyidj259.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "1971-10-30", + "releaseYear": "1971", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 6, + "popularity": 1.1703 + }, + { + "id": 45278, + "title": "Natsuyuki Rendezvous", + "originalTitle": "夏雪ランデブー", + "overview": "Ryousuke Hazuki is a young man whose heart has been stolen away, stopping by the local floral shop daily in order to catch a glimpse of the beautiful Rokka Shimao, the shop's owner. In hopes of getting close to her, he decides to get a part-time job at the shop, but before he is able to make his move, he runs into a major roadblock: in her apartment dwells a ghost who claims to be Rokka's deceased husband.\n\nAtsushi Shimao has quietly watched over his widowed wife ever since he passed three years ago. However, Hazuki is the first person to ever notice him, and the two quickly find themselves at odds: the jealous Shimao attempts to thwart the suitor's advances and possess his body, while Hazuki simply wants the ghost to pass on for good, allowing Rokka to move on from the past and him to be with the one he loves. As both men refuse to let go of their desires, an unusual relationship forms between a troubled woman, an unrelenting ghost, and a stubborn man in love.", + "posterPath": "/wxMdyZGTifTpG61ib4TTiL2xRvP.jpg", + "backdropPath": "/acX1AYoJHAquABodgtZOlxoWmOQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2012-07-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.438, + "voteCount": 16, + "popularity": 1.1695 + }, + { + "id": 25365, + "title": "Kimi Kiss Pure Rouge", + "originalTitle": "キミキス pure rouge", + "overview": "Kouichi Sanada and Kazuki Aihara's childhood friend Mao Mizusawa has returned after living in France for a couple of years. Kouichi is surprised to learn that, since her parents are remaining overseas for the time being, his mother has agreed to let Mao stay with them. The three friends help each other deal with the ups and downs of high school romance.", + "posterPath": "/upHeJXPHXZa0L0fg62bbNccPDL6.jpg", + "backdropPath": "/wUPrTlfXd5J3nap7HoTo9VmZe0f.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-10-06", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 9, + "popularity": 1.1695 + }, + { + "id": 115176, + "title": "Hellsing: The Dawn", + "originalTitle": "ヘルシング外伝 THE DAWN", + "overview": "Hellsing agents Alucard and young Walter, the resourceful Hellsing family butler, are sent to Nazi-occupied Europe in 1944 to stop the Nazis' attempt to create a vampire army.", + "posterPath": "/uaDTdKXV9PGyqcZMpmf6D8VtLO8.jpg", + "backdropPath": "/zfiMmXmRwatlcZbp7P5HJGBzjAw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2011-11-27", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 97, + "popularity": 1.1692 + }, + { + "id": 9651, + "title": "Hakugei: Legend of the Moby Dick", + "originalTitle": "白鯨伝説", + "overview": "Hakugei: Legend of the Moby Dick is an animated Japanese television series, based on Herman Melville's original novel Moby-Dick. However, this adaptation used futuristic outer space as the setting, with \"whales\" being large abandoned spaceships instead. It aired from 1997 to 1999, albeit with a suspension of new episodes from November 1997 to October 1998. The series ran for 26 episodes, which have been released on DVD in the USA by ADV Films, spread across six discs.", + "posterPath": "/adA67GtEByZjhYMweZeF7ZPQ1fi.jpg", + "backdropPath": "/cOMvcIeDZsd1L2TQsddKgtpXZgi.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1997-04-09", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 5, + "popularity": 1.1688 + }, + { + "id": 45047, + "title": "Flag", + "originalTitle": "FLAG", + "overview": "Saeko Shirasu is a 25-year-old war front-line photo-journalist who became a celebrity after taking a picture of civilians raising a makeshift UN flag in war-torn Uddiyana. The image then became an instant symbol for peace. However, just before the peace agreement is achieved, the flag was stolen by an armed extremist group in order to obstruct the truce. The UN peacekeepers decide to covertly send in a SDC (pronounced as \"Seedac\"—Special Development Command) unit to retrieve the flag. Because of her connection with the \"Flag\" photo, Saeko Shirasu was offered the job of following the SDC unit as a front line journalist. Among the SDC unit's equipment is the HAVWC (High Agility Versatile Weapon Carrier—pronounced \"havoc\") mecha armored vehicle.", + "posterPath": "/ePsvzcZXaYr1nJwQpbHTSsAbpq2.jpg", + "backdropPath": "/dKnnGDWbcjh2N4l7Q2GDonpjwZk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759, + 10765 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-06-16", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 6, + "popularity": 1.1687 + }, + { + "id": 96556, + "title": "Lapis Re:LiGHTs", + "originalTitle": "ラピスリライツ ~この世界のアイドルは魔法が使える~", + "overview": "Based on a mixed media project that blends fantasy, magical girl, and idol elements, Lapis Re:LiGHTs will follow a group of students as they train to become idols. Together, they'll use the magic of music and the magic of... well, literal magic... in their performances.", + "posterPath": "/q2mKvwgymywTe7nSzMRaw1AWDff.jpg", + "backdropPath": "/AdCJ98diyno0y4VOtEod5kQ7WQ9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2020-07-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.833, + "voteCount": 12, + "popularity": 1.1681 + }, + { + "id": 103249, + "title": "Dragon Goes House-Hunting", + "originalTitle": "ドラゴン、家を買う。", + "overview": "When a dragon fails to live up to the fearsome standards set for him, his family kicks him out. He embarks on a quest to find a new home but soon finds that life on the road is no place for a cowardly beast of legend. In a fantasy world full of elves, dwarves, and other mythical creatures, the frustrations of house-hunting reach a whole new level.", + "posterPath": "/5hQ3Dn0UAqX8Xunu5eK8jc5pDv6.jpg", + "backdropPath": "/hgnasnsNwakZmkqmvXbTbn1661s.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-04", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 20, + "popularity": 1.1674 + }, + { + "id": 80535, + "title": "Island", + "originalTitle": "ISLAND", + "overview": "Urashima, an island far from the mainland. The people who live there lead carefree lives. But five years ago, the island's three great families suffered a series of misfortunes, and succumbed to suspicion. The people of the island cut off all contact with the mainland, and began a slow decline. The key to saving the island lies in three girls who belong to the three families. But they are bound by old traditions, and are conflicted. On that island, a lone man washes ashore. The man claims to be from the future, and he begins a solitary struggle to change the island's fate.", + "posterPath": "/1jgcZ0GiHdxgokWY0GAA4PnFzrb.jpg", + "backdropPath": "/moNxkq5yKDTYusfVzb4SNlaBltW.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 9648, + 16 + ], + "genres": [ + "Comedy", + "Drama", + "Mystery", + "Animation" + ], + "releaseDate": "2018-07-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 18, + "popularity": 1.1644 + }, + { + "id": 8907, + "title": "Burn-Up Scramble", + "originalTitle": "BURN-UP SCRAMBLE", + "overview": "Rio Kinezono, who just wants to find love in her life... so much so that she often changes around her living arrangements just to attract the right man. So far, the only man she was able to attract is her perverted superior, Yuji Naruo... and he's being protected by Matsuri Tamagawa, his overly-zealous girlfriend.\n\nRio is also a member of a super-secret squad known as \"the Warriors\". Her teammates are Maya Jingu, a quiet girl but an extreme gun-nut, and Lilica Evett, a shy and insecure telepath.", + "posterPath": "/jHvmqOLabrzZg7xg7DjLoFGFOlg.jpg", + "backdropPath": "/4LN7KRoeghR1kmr9ygid8W9sspm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-01-12", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 4.2, + "voteCount": 6, + "popularity": 1.1644 + }, + { + "id": 99088, + "title": "The Stories of Girls Who Couldn't Be Magicians", + "originalTitle": "魔法使いになれなかった女の子の話", + "overview": "At Letran Magic Academy, two unlikely friends share one dream: to become magicians. Kurumi is an average girl who’s a bit naive, while Yuzu is the distinguished daughter of a noble magician family. They need to get into a special magician training class, but they fail the entrance exam! All hope seems lost until mysterious homeroom teacher Minami Suzuki arrives, and their luck takes a sudden turn.", + "posterPath": "/2cJUYKXocRLtpcqK2hzbluXuwqy.jpg", + "backdropPath": "/ij6Zu7RGrWsU66SGay3ieKlZgJZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2024-10-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 8, + "popularity": 1.1639 + }, + { + "id": 79040, + "title": "Joshiraku", + "originalTitle": "じょしらく", + "overview": "Joshiraku, abbreviation of joshi rakugo, is a satirical comedy that follows the everyday life of a group of rakugoka girls. A group of girls discuss random things and usually reach an unusual or humorous conclusion that's far from the initial discussion topic.", + "posterPath": "/67zsN2RRa187v8fwYxlN8c8T19X.jpg", + "backdropPath": "/oid51idba72DqvuyqGfXqxMZfz8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-07-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 20, + "popularity": 1.1631 + }, + { + "id": 74184, + "title": "Sengoku Night Blood", + "originalTitle": "戦刻ナイトブラッド", + "overview": "The game centers around different warlords from Japan's Warring States (Sengoku) period, who are all involved with the player character. The game is described as a \"Warring States romance fantasy.\" (Source: ANN)", + "posterPath": "/A9C5XrvuNxWI8qh48ytOCGGsXAO.jpg", + "backdropPath": "/olfYV0NG21DffIh1A45Df2dvX64.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2017-10-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 5, + "popularity": 1.1604 + }, + { + "id": 60842, + "title": "Mekakucity Actors", + "originalTitle": "メカクシティアクターズ", + "overview": "The incidents which occurred on August 14th and 15th bring a group of young boys and girls together… They are members of a group they call themselves the \"Mekakushi Dan\" (Blindfold Organization) and each member possesses a strange power involving their eyes.", + "posterPath": "/4fYd1cBnv2CEYW3bdQvcWCOwXhK.jpg", + "backdropPath": "/lWFBgk4BsHB8OjRUCCgK6o4Qylx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10749 + ], + "genres": [ + "Animation", + "Comedy", + "Romance" + ], + "releaseDate": "2014-04-13", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 28, + "popularity": 1.1593 + }, + { + "id": 68077, + "title": "Magic-Kyun! Renaissance", + "originalTitle": "マジきゅんっ!ルネッサンス", + "overview": "A world where art becomes magic. In this world, people who can inspire passion with their Magic Arts are called Artistas, and are employed in show business. In Hoshinomori Private Magical Arts High School, where Artistas are taught, a strange new student named Ohana Aigasaki transfers into the school. Ohana is placed on the planning committee for the school's yearly Hoshinomori Summer Festa cultural festival. She spends her romantic school life with six other boys who aim to become entertainers in the future and alongside Ohana, to be the school's Artista Prince and Princess, only chosen once a year.", + "posterPath": "/v30kqHcOrFiShnOdNdNSWaEDW93.jpg", + "backdropPath": "/8zN2gxhhIBatWXLhkxq96nfPbRx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 10, + "popularity": 1.1578 + }, + { + "id": 65211, + "title": "Luck & Logic", + "originalTitle": "ラクエンロジック", + "overview": "In the year L.C. 922, people faced a sudden crisis. In Tetra Heaven, the land of legend, a hundred years of war had come to a close. The gods who lost the war searched for a new place to live, and found it in Septpia, the human world, which they proceeded to attack. The Logicalists attached to ALCA, a special police agency whose duty it was to protect cities from assaults by foreigners (angels), were compelled to act in defense of cities, whether they wished to or not. Depending on their ability, Logicalists could initiate trance with goddesses from the other world, and stand a fighting chance on the battlefield. A civilian named Yoshichika Tsurugi, who lacked \"Logic\" and lived happily with his family, was caught up in an attack, and took shelter along with many people. He meets a beautiful goddess named Athena. In her hands, she had the \"Logic\" that Yoshichika lacked. Now both Yoshichika and Athena head to their destiny.", + "posterPath": "/gm4DP629PHLDVZl9X7lysAw4QdQ.jpg", + "backdropPath": "/siih6CUF5EntxGTxekL9M11vpLP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2016-01-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 10, + "popularity": 1.1542 + }, + { + "id": 153336, + "title": "Butareba -The Story of a Man Turned Into a Pig-", + "originalTitle": "豚のレバーは加熱しろ", + "overview": "I am a dull otaku who lost consciousness after eating raw pork liver. When I awoke, it seemed that I had been reincarnated into another world... but I had also become a pig! As I was rolling around in a pigsty covered in mud, Jess, a kind, angelic, beautiful girl, came to my rescue. \"Oink!!\" \"Um, you don't have to force yourself to talk. I'm able to... understand you.\" This girl who was devotedly caring after my pig-self was a member of the Yethma, and her people have the ability to read minds. \"This is bad! That means she can see through all of my lustful delusions!\" Now in Mesteria, a world run by swords and magic, a pig and a mind-reading beauty set off on their lovey-dovey fantasy adventure! ... Or do they?", + "posterPath": "/qEyV0cNIjjRuu8kTmjWu5N9cU5r.jpg", + "backdropPath": "/yWAzma6RqwOKg349s87lLQskx4S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 4.857, + "voteCount": 14, + "popularity": 1.1541 + }, + { + "id": 42395, + "title": "Golgo 13", + "originalTitle": "ゴルゴ13", + "overview": "Golgo 13 is not his real name. Then again, neither is Duke Togo, Tadashi Togo, or any number of the aliases he goes by. A man of mystery, not even the world’s most prominent intelligence agencies can determine who Golgo really is, or just where he came from. But all agree that his skills are nothing short of legendary.\n\nArmed with a custom M16, Golgo is willing to take any job for any agency, from the FBI to the KGB. He has completed every contract he has ever taken and will work for anyone who can meet his price. He is both the greatest weapon and the greatest threat to any nation; no one is safe once they are in Golgo’s sights.", + "posterPath": "/6VNV4pgsFNhXDccqP2jQkdnC51I.jpg", + "backdropPath": "/2CqVBoEirSvUgO9EHW1ngdyt9K1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2008-04-11", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 21, + "popularity": 1.1538 + }, + { + "id": 67009, + "title": "Saiyuki Reload: Burial", + "originalTitle": "最遊記 RELOAD - burial -", + "overview": "Taking place before Gensomaden Saiyuki, this story offers a view of the Genjō Sanzō, Son Goku, Sha Gojyo, and Cho Hakkai before they met up.", + "posterPath": "/fvTHcRVy77XQXGP0bze7mic33hT.jpg", + "backdropPath": "/gNY3HMk99LbOdhZEUv7efL2p0xY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-04-27", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.571, + "voteCount": 7, + "popularity": 1.1526 + }, + { + "id": 112667, + "title": "I★Chu: Halfway Through the Idol", + "originalTitle": "アイ★チュウ HALFWAY THROUGH THE IDOL", + "overview": "Youths aiming to become full-fledged idols enroll in the Étoile Vio School where the students are called IChu. But soon after they begin, Kuma Kocho gets them off to a rocky start with a single phrase...?! As they each work toward their individual goals, their activities as idols make the IChu begin to wonder... \"What is an idol?\" In their struggle to find an answer, the springtime of the IChu's lives is whittled out in glittering moments and flashes of brilliance. Their story begins now!", + "posterPath": "/qiHi7A3ffLA4wzzlV0cpUJd7qba.jpg", + "backdropPath": "/ofw482PXwueS0odWyk6NtIwWzRi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-01-06", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.667, + "voteCount": 6, + "popularity": 1.1518 + }, + { + "id": 72632, + "title": "Fox Spirit Matchmaker", + "originalTitle": "縁結びの妖狐ちゃん", + "overview": "In a world where Spirits and Humans coexist and can fall in love with each other, the Spirits’s life expectancy being far superior to the Human’s one can only see their loved one dying before them.\n\nEven when that human is reborn, the previous memories of his past life is erased from his memory. However, it is said among Spirits that a certain “service” is spreading. This“service” is provided by the “Fox Spirit Matchmakers” who can revive the lost memories of their former lover.\n\nWhen the Spirits lose their lover, they can purchase the “service” of the “Fox Spirit Matchmakers” so that they could attempt to regain their former lover memories and start over a new love story.\n\nThis story follows a young Fox Spirit Matchmaker who tries her best to restore lost memories and spread love.", + "posterPath": "/x47eoppdComtCOMrM4RickCwhy4.jpg", + "backdropPath": "/j7OIkU3cn7978oyPDpHFfuhl4Yg.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2017-07-01", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.875, + "voteCount": 32, + "popularity": 1.1516 + }, + { + "id": 71010, + "title": "Kenka Banchou Otome: Girl Beats Boys", + "originalTitle": "喧嘩番長 乙女-Girl Beats Boys-", + "overview": "Kenka Banchou Otome - Girl Beats Boys, Hinako Nakayama has spent all of her life being raised in state-run orphanages, without ever knowing her family. As she's about to enter high school, Hinako is approached by Hikaru, a boy who claims to be her twin brother.\n\nAccording to Hikaru, Hikaru and Hinako are the children of the head of the powerful Onigashima yakuza family, and Hikaru wants Hinako to switches places with him at Shishiku Academy, an all-boys school overrun with the nation's toughest delinquents. Can Hinako save her brother, find romance, and become the new boss of the school?", + "posterPath": "/mHu1XbwBCZfGcPzLuGlvVkjKqJA.jpg", + "backdropPath": "/tLk6EVRT3KyccnaWmFCWCKnmFzt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-04-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.868, + "voteCount": 19, + "popularity": 1.1484 + }, + { + "id": 66110, + "title": "Pan de Peace!", + "originalTitle": "パンでPeace!", + "overview": "The \"cute and soft bread four-panel manga\" centers around Minami, an air-headed girl who is starting high school and who loves eating bread for breakfast. Baked goods bring happiness everyday to her and her classmates the reliable Yuu, the pastry-baking Fuyumi, and the independent Noa.", + "posterPath": "/eC5Uf6FvirpGZzbza1XUPbZh78z.jpg", + "backdropPath": "/3rNtYDKs6dCgswiZM1CANpEruUo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 3.9, + "voteCount": 9, + "popularity": 1.1448 + }, + { + "id": 45137, + "title": "Dominion Tank Police", + "originalTitle": "ドミニオン", + "overview": "Leona Ozaki joins Newport City's infamous Tank Police division. With aid of Al and her newly built mini-tank, Bonaparte, she wages war on Buaku and his cohorts, the Puma Sisters.", + "posterPath": "/xPSNUPKQG79Rk2jWzuCgYPEe6sA.jpg", + "backdropPath": "/w9yLEqXd0pnxiBSLZecxQXpDLoj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1988-05-27", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 31, + "popularity": 1.1436 + }, + { + "id": 46026, + "title": "Moetan", + "originalTitle": "もえたん", + "overview": "Ink Nijihara is a girl in high school. Unfortunately her crush Nao Tezuka barely recognizes her. To make matters worse, she is very short. Now Ink meets a talking duck and becomes a magical girl that teaches Nao english in disguise.", + "posterPath": "/zyJPEW86sqy0SMNEPRmXlCPc7gP.jpg", + "backdropPath": "/vX40U4TNqlGR60PUkrnfBNJvuAF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-07-09", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 5, + "popularity": 1.1432 + }, + { + "id": 100019, + "title": "Yo-kai Watch!", + "originalTitle": "妖怪ウォッチ!", + "overview": "A new season of Yo-kai Watch focusing on elementary schooler Keita Amano again. The events take place right after the original season; but still chronologically occur before the now complete Shadow Side events as they take place 30 years in the future.", + "posterPath": "/7DG3cKqzdrEmdheVsMnICqVkRvd.jpg", + "backdropPath": "/nTG4hwa7PyJaQdFOlj4swjRc2MZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 7, + "popularity": 1.1416 + }, + { + "id": 73839, + "title": "Hacka Doll", + "originalTitle": "ハッカドール", + "overview": "In 2xxx, amidst a highly-developed information society, human beings are drowning in a sea of information. This leads to a situation where people cannot find the necessary information. The only hope to solve this problem is a navigator program... Hacka Doll.", + "posterPath": "/3Kgl1jFYTaYK3JcRo5ko7H8wPK8.jpg", + "backdropPath": "/e9skWU3OllcYjB7dCETV7JEva6u.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-02", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 3.889, + "voteCount": 9, + "popularity": 1.1416 + }, + { + "id": 69241, + "title": "Misha the Bearcub", + "originalTitle": "こぐまのミーシャ", + "overview": "", + "posterPath": "/1CxdmYgfzjuGFmgLhXCJLMUPRta.jpg", + "backdropPath": "/22QHIhZjgV0xygtEZW7EvL4VOt7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10751, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Family", + "Kids" + ], + "releaseDate": "1979-10-06", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 10, + "popularity": 1.1409 + }, + { + "id": 62369, + "title": "Mikagura School Suite", + "originalTitle": "ミカグラ学園組曲", + "overview": "High school student Eruna Ichinomiya enters the Mikagura Academy dreaming of a boarding school life filled with beauty. However, Eruna finds out that in the culture clubs, there is a rule that battles that are fought with special powers decide a club representative's treatment. Through various circumstances, Eruna becomes a representative of a club, and is thrown into the fray.", + "posterPath": "/gmQtiPckDeAlLFuZYGf4kru1Blo.jpg", + "backdropPath": "/9TQ9G6pYfTFayjCjFTk5Pf3XbL6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2015-04-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 10, + "popularity": 1.1402 + }, + { + "id": 66120, + "title": "Norn9", + "originalTitle": "NORN9 ノルン+ノネット", + "overview": "Guided by a strange, haunting song, elementary-schooler Sorata Suzuhara from the Heisei Era is warped back in time to 1919, in a high-tech ship called Norn9. This ship, flying above towns resembling that of the Meiji or Taishō period, harbours The Gifted, a group of three girls and eight boys with special abilities. As he tries to find a way to return to his time, he discovers incredible secrets about the world and spacetime itself.", + "posterPath": "/huhcKz75jx5kqs3W5AGQNTfxUd2.jpg", + "backdropPath": "/3oAEMFGCpGIP8gkT30yzBWrs3Qw.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18, + 10765 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-01-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.393, + "voteCount": 13, + "popularity": 1.1395 + }, + { + "id": 236520, + "title": "Dragons of Wonderhatch", + "originalTitle": "ワンダーハッチ -空飛ぶ竜の島-", + "overview": "Upananta's greatest dragonrider disappears in the middle of a crucial battle. Without him, the world is doomed. The rookie dragonrider, Thaim, goes to find him in another world: a place where flying dragons and adventure only exist in high school student Nagi's dreams.", + "posterPath": "/jeTtRHQxR3Zf8jARChWZMGgyavP.jpg", + "backdropPath": "/466SGNW1uW11RWwqWJMKFPmlOft.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2023-12-20", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 13, + "popularity": 1.1347 + }, + { + "id": 72035, + "title": "Vatican Miracle Examiner", + "originalTitle": "バチカン奇跡調査官", + "overview": "Vatican City—Holy Land of the Catholics. Amidst the land, there is an organization that conducts rigorous investigations on \"claims of miracles\" from all over the world to ascertain their credibility. The organization is referred to as \"Seito no Za\" (Assembly of Saints) and the priests that belong there are called miracle investigators. Robert Nicholas, an ancient archive and cryptanalysis expert is partnered and good friends with Hiraga Josef Kou, a genius scientist. Together, the brilliant duo investigates the \"miracles\" and uncovers the incidents and conspiracies hidden behind them.", + "posterPath": "/tGKgOhxMyq1dISr1hJaiugDuE61.jpg", + "backdropPath": "/7evV05vcqKvcICq0jdnCQkOcNam.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 1.1333 + }, + { + "id": 91024, + "title": "If My Favorite Pop Idol Made It to the Budokan, I Would Die", + "originalTitle": "推しが武道館いってくれたら死ぬ", + "overview": "Passionate music-lover Eripiyo only wants to see her favorite underground pop group, ChamJam, make it to the big stage at Budokan. Because they've enriched her life by their very existence, Eri is willing to dedicate everything she has to see this dream fulfilled—even her health. At their last performance she got a crazy nosebleed. Hey, no one said being a super-fan was easy!", + "posterPath": "/n8tBDlRzWOA8ywyQNv3t9EokHVx.jpg", + "backdropPath": "/kos8QXOgFQS89j9cR7SoEJtCjhB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 15, + "popularity": 1.1314 + }, + { + "id": 34688, + "title": "Puni Puni Poemy", + "originalTitle": "ぷにぷに☆ぽえみぃ", + "overview": "When evil aliens kill Poemi Watanabe’s parents, she doesn’t get mad, she gets even… but first she moves in with the seven crazy Aasu sisters, discovers the magic power of dead fish, develops a serious crush on a local octopus, experiences the bizarre and varied wonders and joys of fighting terrorists, S&M, giant robots and becoming a super hero… all while pursuing her REAL ambition of becoming a professional voice actress!", + "posterPath": "/60XmQzsKOZlkN7Is6m0byPNWNSE.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2001-03-07", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 16, + "popularity": 1.1313 + }, + { + "id": 98584, + "title": "Shachibato! President, It's Time for Battle!", + "originalTitle": "社長、バトルの時間です!", + "overview": "Based on the popular strategy game, Minato has become the new president of the Kibou Company. In order to be a good president and help the company grow, he must lead his party of adventurers through the Gate and collect Kirakuri — a type of energy that is extremely valuable and fundamental to the city of Gatepia. However, there are other companies vying for the chance to gather the Kirakuri.", + "posterPath": "/yPct2dcnBvGuS1prYtNyiI1TTgj.jpg", + "backdropPath": "/o0AeKGvb5hcRaza1NewITmlwGpQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 17, + "popularity": 1.1308 + }, + { + "id": 112169, + "title": "Thermae Romae Novae", + "originalTitle": "テルマエ・ロマエ ノヴァエ", + "overview": "A proud bath architect in ancient Rome starts randomly surfacing in present-day Japan, where he's inspired by the many bathing innovations he finds.", + "posterPath": "/vHBI6uDKqI1w0PUt8y1y0yetaq0.jpg", + "backdropPath": "/aRAm1DQhfxrxuWG2SNCCVEev7gi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-03-28", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 27, + "popularity": 1.1295 + }, + { + "id": 21998, + "title": "Loveless", + "originalTitle": "LOVELESS", + "overview": "Twelve-year old Aoyagi Ritsuka is left with his insane mother as his only family when his brother, Seimei, is killed suddenly. After moving to a new school, he meets Agatsuma Soubi, who claims to have known his brother. Ritsuka eventually discovers that Soubi and Seimei used to be a fighting pair, whereby Soubi was the \"Fighter\" and Seimei was the \"Sacrifice\". Now that Seimei is gone, Ritsuka has inherited Soubi, who will become his \"Fighter\". After learning that Seimei was killed by an organisation known as the \"Seven Moons\", Ritsuka decides to investigate into his brother's death, with the sometimes useless help of Soubi, along the way.", + "posterPath": "/tyVjSxK1DNJcartGLY0pbiPtBtN.jpg", + "backdropPath": "/knWjxJOTs966MmTi45UGSpAz3fF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2005-04-06", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 5.188, + "voteCount": 16, + "popularity": 1.1294 + }, + { + "id": 69797, + "title": "Yukikaze", + "originalTitle": "戦闘妖精雪風", + "overview": "Thirty-three years ago, an alien force known as the \"JAM\" invaded Earth through a dimensional portal over Antarctica. Earth’s forces managed to drive the JAM away to a distant planet designated as \"Fairy.\" While the majority of Earth’s population is unaware of the JAM’s presence, the war continues on Fairy, where Rei Fukai is an SAF (Special Air Force) pilot assigned to pilot \"Yukikaze\"—an advanced reconnaissance fighter plane equipped with a near-sentient A.I. that detects the presence of the JAM within its path.", + "posterPath": "/qBwbPqDD79lYm6orQ2knOpnNVxi.jpg", + "backdropPath": "/lMWFuZxCkggbUyJ69XALb58Yw23.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2002-08-25", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6.864, + "voteCount": 10, + "popularity": 1.128 + }, + { + "id": 105072, + "title": "Cleopatra D.C.", + "originalTitle": "クレオパトラD.C.", + "overview": "Controlling the U.S. economy and just as powerful as the federal government, the Corns Group is a corporation headed by Ms. Cleo, the smart, brave and radiant teen CEO. All that changes when a plane crashes into her bedroom. What follows is a high-speed, high-risk adventure full of stolen treasure, kidnappings and rogue corporate cyborgs. Cleo's wits and stamina are tested to the limit as her sudden fate sweeps her up in a whirlwind of intrigue.", + "posterPath": "/wHlQenWNdT4PiFx8QL5kZ1tNgsr.jpg", + "backdropPath": "/m8ymbs0zndEgC2rdbdzO3JTMplO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1989-04-28", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 5, + "popularity": 1.1276 + }, + { + "id": 45226, + "title": "The Tyrant Falls in Love", + "originalTitle": "恋する暴君", + "overview": "A first year doctorate student in the agricultural science department at a university in Nagoya. Extremely hot-headed and violent, he has a reputation of being a tyrant to other students at the University and is not very social in result. After almost being raped by a gay professor and other bad experiences with homosexual men, he becomes extremely homophobic. Despite this, he unconsciously becomes deeply emotionally attached to his research assistant and friend, Morinaga, whom he is aware is homosexual but allows by his side on the agreement that his sexual orientation not be an issue. He tries to rationalize his dependency on Morinaga by convincing himself that having sex with him from time to time is essential to keep him in his life, although refusing to admit why he needs him in his life in the first place.", + "posterPath": "/zbHKl6PSpVLgWcqfmgigXrDRFqP.jpg", + "backdropPath": "/8I31KMyyFCgzzt3QG3PCeMqDNiz.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Comedy" + ], + "releaseDate": "2010-06-25", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 14, + "popularity": 1.1252 + }, + { + "id": 240125, + "title": "TRILLION GAME", + "originalTitle": "トリリオンゲーム", + "overview": "Old schoolmates Haru and Gaku will do anything to achieve success. And success to them means earning a trillion dollars! But to do so, they’ll need to take full advantage of their own unique skills. Haru is a persuasive and confident speaker who can connect with anyone, while Gaku, although awkward, is an expert programmer. Will their combined talents be enough to make their dream a reality?", + "posterPath": "/pL4nFHx4lChRXLrJzRX0sAl8SfG.jpg", + "backdropPath": "/zaxmjuukpaqLiMW4EOp2ArdO7xH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2024-10-04", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 5.864, + "voteCount": 11, + "popularity": 1.1249 + }, + { + "id": 77724, + "title": "Love To-LIE-Angle", + "originalTitle": "立花館To Lieあんぐる", + "overview": "When Natsuno Hanabi went back to her hometown to study in high school, she thought that she will have a new wonderful life. But Tachibanakan, the dormitory she was going to live in, was not what she expected.", + "posterPath": "/b9wRyJibE3SqqQUuw2o044Y3kaJ.jpg", + "backdropPath": "/xOLh2GtY0IHaCbPFQ0C9HKnEbtp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-04-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 13, + "popularity": 1.1234 + }, + { + "id": 29788, + "title": "Ground Defense Force! Mao-chan", + "originalTitle": "陸上防衛隊まおちゃん", + "overview": "Three eight-year-old girls, Mao, Misora and Sylvia, try to defend the earth against invading aliens. The world's defense has fallen to unlikely straits because the aliens are excessively cute, of which combat engagements are televised: if the forces battling the aliens were not cute themselves, the general public would revolt, as it would be seen as \"bullying\". Consequently, three military leaders chose their granddaughters to be the defenders, fittingly, becoming a team even cuter than the aliens. They each have a clover-shaped badge that enables them to transform.", + "posterPath": "/hxh39fEZFL7YXlxF5ZCmXXxnppW.jpg", + "backdropPath": "/wijT08uoWpgJRKYEBfP9b9IFOQx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Kids" + ], + "releaseDate": "2002-07-03", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 5, + "popularity": 1.1213 + }, + { + "id": 113780, + "title": "WAVE!! -Let's go surfing!!-", + "originalTitle": "WAVE!!~サーフィンやっぺ!!~", + "overview": "Follow the story of these beach boys who learned to love the ultimate sport of surfing!", + "posterPath": "/ojIICjgH0ZH4aYPhXersZ02mVeH.jpg", + "backdropPath": "/uk4CCY322KMDdUejdMdygv45iGR.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2021-01-11", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 7, + "popularity": 1.1211 + }, + { + "id": 122626, + "title": "Tesla Note", + "originalTitle": "テスラノート", + "overview": "Genius Nikola Tesla preserved records of all his inventions inside crystals known as Tesla Shards. After an inexplicable incident in Norway, Botan Negoro, a descendant of ninjas raised to be the ultimate agent, is recruited on a mission to recover the crystals. Her partner through this is self-proclaimed No. 1 agent, Kuruma. With the fate of the world at stake, the fight for the shards begins.", + "posterPath": "/nTOWbyAIh1ZU9OIF3BpIRYfW6hE.jpg", + "backdropPath": "/kJblp88ipmFMiRr7xlW5KlXmlEj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 5, + "popularity": 1.12 + }, + { + "id": 28764, + "title": "Kashimashi - Girl Meets Girl", + "originalTitle": "かしまし ~ガール・ミーツ・ガール~", + "overview": "Hazumu confessed his love to Yasuna, but she turned him down. To ease his heartbreak, he went to Mt. Kashimayama where he had met her for the first time. He loses his way in the mountains, and it starts to get dark. Seeing a big shooting star in the sky, he begins to formulate a wish, but quickly notes that something is very wrong. For the shooting star is actually a space ship about to crash into him. And then he died. Only with the help of the aliens could his live be saved. However, he became a girl, due to an accident during the reconstruction of his body.", + "posterPath": "/hdwARvKyJ2DmKLBXiZBEjuIT1aB.jpg", + "backdropPath": "/35IaghRQMnVfeAfhbfNH0iczCN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-01-11", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 13, + "popularity": 1.1178 + }, + { + "id": 20565, + "title": "Tekkaman Blade II", + "originalTitle": "宇宙の騎士テッカマンブレード II", + "overview": "Ten years have passed since the end of Tekkaman Blade, and a new generation of Tekkaman must confront a powerful new enemy while rebuilding their forces. The main character this time is Yumi Francois, a young and bumbling mechanic who proves the unlikely third candidate for the elite Tekkaman fighting trio. Thrust into battle with very little training, she must earn the trust and confidence of her teammates if she is to succeed and survive.", + "posterPath": "/zqryz2UWzwIbz8LKQINx01gjJAo.jpg", + "backdropPath": "/n5zE4MZ71pTGwMFnn4YtCfNfEnx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1994-07-21", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 7, + "popularity": 1.1176 + }, + { + "id": 61538, + "title": "Wonder Momo", + "originalTitle": "Wonder Momo", + "overview": "One day, a group of aliens planning to take over Earth invade Tokyo. Momoko, who aspires to be an idol, gets involved in the fight in an unexpected form. Warudemon, king of the alien empire, uses various tactics to hunt down Momoko and the people around her. Momoko then decides to stand up to the Warudemon, plain and simple.", + "posterPath": "/oj1aiarK3Y95k1YvdG5IfD9qD0B.jpg", + "backdropPath": "/ue2x6LpkwhmoA1MfBbljNJ8Ahlh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-02-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 7, + "popularity": 1.117 + }, + { + "id": 69239, + "title": "ChäoS;Child", + "originalTitle": "カオスチャイルド", + "overview": "ChäoS;Child takes place in October 2015, six years after the events of ChäoS;HEAd. Abnormal events begin to occur in Shibuya district, including mysterious deaths.", + "posterPath": "/p726IZ7VFmUYvxoEEhqCTO3JngQ.jpg", + "backdropPath": "/9wzUsWSeFQcZHfHJVfvHOVJBUQ6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2017-01-11", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 17, + "popularity": 1.1167 + }, + { + "id": 153175, + "title": "Dirty Pair OVA", + "originalTitle": "ダーティペア(OVAシリーズ)", + "overview": "Set in the future Kei and Yuri are Trouble Consultants for The 3WA. Code Named \"Lovely Angels\", but, they are known throughout the galaxy as The Dirty Pair. They always solve their case, but, not without causing collateral damage and mayhem.", + "posterPath": "/4kMcigAEeVJcqcX49oOjURq4bAP.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1987-12-21", + "releaseYear": "1987", + "originalLanguage": "ja", + "voteAverage": 6.625, + "voteCount": 8, + "popularity": 1.1162 + }, + { + "id": 899, + "title": "The Wallflower", + "originalTitle": "ヤマトナデシコ七変化♥", + "overview": "It's a gorgeous, spacious mansion, and four handsome, fifteen-year-old friends are allowed to live in it for free! There's only one condition—that within three years the guys must transform the owner's wallflower niece into a lady befitting the palace in which they all live! How hard can it be? Enter Sunako Nakahara, the agoraphobic, horror-movie-loving, pockmark-faced, frizzy-haired, fashion-illiterate recluse who tends to break into explosive nosebleeds whenever she sees anyone attractive. This project is going to take more than our four heroes ever expected: it needs a miracle!", + "posterPath": "/zlcuBwbCHki0oWplNQhHhStYwFn.jpg", + "backdropPath": "/aJcyY1F1oUhsQiA7fuDDzTyIDzf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-10-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 32, + "popularity": 1.116 + }, + { + "id": 83042, + "title": "Merc Storia: The Apathetic Boy and the Girl in a Bottle", + "originalTitle": "メルクストーリア -無気力少年と瓶の中の少女-", + "overview": "Merc Storia takes places in a world where humans and monsters coexist. The protagonist, Yuu, is a healer apprentice and possesses the ability to tame monsters. In a quest to regain the memories of Merc, a girl confined in a bottle, the pair embarks on a journey.", + "posterPath": "/5EQiGTTsetziulBftJTD82xWAS7.jpg", + "backdropPath": "/wPVWZLMLgXrJHLenlrHJLowbnYi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-11", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 6, + "popularity": 1.1136 + }, + { + "id": 67534, + "title": "She and Her Cat: Everything Flows", + "originalTitle": "彼女と彼女の猫 -Everything Flows-", + "overview": "The simple, charming series follows Kanojo as she job hunts and experiences various changes in her life, all while her cat Daru remains the supportive constant.", + "posterPath": "/cCBEORZpoB3Q8jzsNs9nLwxAvlq.jpg", + "backdropPath": "/twTEgB381HVcoXPy9MNgK9Rvr1k.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-03-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 25, + "popularity": 1.1135 + }, + { + "id": 68256, + "title": "Comet Lucifer", + "originalTitle": "コメット・ルシファー", + "overview": "On the planet Gift there are precious crystals called Giftjium buried in the earth. A young man named Sougo Amagi lives in Garden Indigo, a prosperous mining town. Sougo, whose hobby is collecting rare crystals, one day becomes involved in a dispute between classmates Kaon, Roman and Otto. He wanders deep into the ruins of a mine and discovers an underground lake. There, he meets a mysterious girl named Felia with blue hair and red eyes. Who is this girl, and what will their meeting bring?", + "posterPath": "/3Ts4fCTVnGPkd5KNdga3srZk8oG.jpg", + "backdropPath": "/9SzNNYYHBeujYYreNeNojTaVtvm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2015-10-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 31, + "popularity": 1.1113 + }, + { + "id": 72540, + "title": "Kanon", + "originalTitle": "カノン", + "overview": "7 years since Yuuichi Aizawa visited his aunt Akiko in her little northern town, he returns to uncover memories and secrets that have vanished from his head. He soon realises that something supernatural is happening, and that all of his new female acquaintances have links to his forgotten past.", + "posterPath": "/TRbcf5Ga3r06f158Q3VwLwnIOJ.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2002-01-31", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 9, + "popularity": 1.1105 + }, + { + "id": 44009, + "title": "Ellcia", + "originalTitle": "幻想叙譚エルシア", + "overview": "The Sacred Book of the land of Eija has been rediscovered and with it the legends of a mysterious and all powerful ship. Now Princess Crystal of Megaronia has set forth on a quest to recover the ship and its ultimate weaponry. All that stands between her and total domination of the world is a small group of piratical misfits. Swords, sorcery and technology blend to form a mesmerizing tale of Good vs. Evil in Ellcia.", + "posterPath": "/5VVmsBycxX5jJQ69lKBf3c0fgGN.jpg", + "backdropPath": "/20gwaRym667J4dfoBRE3vW1ZfzD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1992-10-23", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 5, + "popularity": 1.1081 + }, + { + "id": 132848, + "title": "Fate/Grand Carnival", + "originalTitle": "Fate/Grand Carnival", + "overview": "Series focused on parodies and stories based on Fate/Grand Order.", + "posterPath": "/y0LQrrCYFg18QKvM16FHcAnMQq.jpg", + "backdropPath": "/usmbzZexo0rGdS8JEYrrSObHU3J.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-06-02", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 5, + "popularity": 1.1079 + }, + { + "id": 68165, + "title": "Miss Bernard Said.", + "originalTitle": "バーナード嬢曰く。", + "overview": "\"Miss Bernard\" herself, Machida Sawako, and her book-loving friends live their literary days in the library. This gag series glorifying famous literature is filled with love for books of all sorts, as well as the kinds of things that all readers experience!", + "posterPath": "/e885TPsX1PnvDNK5WMTlnPiGc7D.jpg", + "backdropPath": "/oTadZG8jqXvEF0V3OrAZORu6yMg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 11, + "popularity": 1.106 + }, + { + "id": 38605, + "title": "Koe de Oshigoto", + "originalTitle": "こえでおしごと! The ANIMATION", + "overview": "Koe de Oshigoto!, also known by the short title KoeGoto, is a 2008–2013 manga series by Azure Konno, about a girl working as a voice actress for an eroge development company. It was serialized in Wani Books' monthly Comic Gum magazine. A two-episode anime adptation was produced by Studio Gokumi and released in 2010 and 2011.", + "posterPath": "/tNi4YrVEyscDIytxI8w85X7O5PQ.jpg", + "backdropPath": "/aWZZuZTnT17lwa3REpIvlRpK4er.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2010-11-17", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 14, + "popularity": 1.1058 + }, + { + "id": 31729, + "title": "Peach Girl", + "originalTitle": "ピーチガール", + "overview": "Momo, a high school student, is torn between two love interests, each of whom possess great qualities.", + "posterPath": "/9CU1aOw5OWdSn30IbVKUyroSOg2.jpg", + "backdropPath": "/4pLyYzec3cKFxsabEE55TWDTEBn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2005-01-08", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 92, + "popularity": 1.1055 + }, + { + "id": 60819, + "title": "Atelier Escha & Logy: Alchemists of the Dusk Sky", + "originalTitle": "エスカ&ロジーのアトリエ 〜黄昏の空の錬金術士〜", + "overview": "In order to survive the eventual arrival of the \"Dusk End,\" people of the western reaches of the \"Land of Dusk\" devoted their efforts to rediscover and recreate lost alchemic technologies. Those technologies were then gathered in the alchemy city known as \"Central,\" where research was conducted on how to halt the advance of the twilight. Having learned the newest alchemic techniques in Central, young alchemist Logy requested a transfer to an understaffed town of Colseit on the frontier to make use of his abilities. There he meets Escha, an apprentice girl assigned to the Development Department. Together, the two make a promise to use their alchemic techniques to bring success to the Development Department.", + "posterPath": "/pShJY1Ex8r8RkmPSgPrdTDBdXJa.jpg", + "backdropPath": "/jWwvHG1To1MwyVVM2Jt0NxU51PY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2014-04-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 39, + "popularity": 1.1051 + }, + { + "id": 76076, + "title": "Takunomi", + "originalTitle": "たくのみ。", + "overview": "20-year-old Michiru Amatsuki moved to Tokyo due to a change of career. She decided to live in a woman-only share house Stella House Haruno with people of different age and occupations. It's always fun when there's delicious alcohol and meal!!", + "posterPath": "/8e0dy4ynwfUEhdYu8XFD5X1SyS5.jpg", + "backdropPath": "/izOYjLIDBM57ONRLzt40Nr2NxjF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-13", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 7, + "popularity": 1.104 + }, + { + "id": 34060, + "title": "Demon Lord Dante", + "originalTitle": "魔王ダンテ", + "overview": "Ryo Utsugi has been disturbed by nightmares of being attacked by a gigantic, demonic creature with blood dribbling from its teeth. One day, he develops a mysterious power to hear voices and foresee horrifying images of females being killed. At a cottage in the wintry mountains, he hears the same voice... Ryo runs out of the cottage, jumps off a cliff following the voice, and gets transported to the Himalayas in a blink. There, he encounters the monster from his nightmare: Demon Lord Dante, who has been sealed in ice by God for 2000 years.", + "posterPath": "/daEvBIngkrnCHNNKQp7gaMdZcrF.jpg", + "backdropPath": "/gw0IW5MkJp9Jq7D3QrmZWzmsQKp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2002-08-31", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 9, + "popularity": 1.1016 + }, + { + "id": 80188, + "title": "Ruin Explorers Fam & Ihrie", + "originalTitle": "秘境探検ファム&イーリー", + "overview": "Fam and Ihrie are two Ruin Explorers, trying to make a living by salvaging old relics hidden in the ruins of a long lost era when magic ruled the world. Although Ihrie is a powerful sorceress, she has been cursed and everytime she casts a spell she turns into a fluffy little rodent. In order to remove the curse she is looking for the Ultimate Power that is sealed by three relics they must find. However, Ihrie soon finds out they are not the only ones who desire this power and while some of the competitors may be friendly, others seek this power to spread evil across the land.", + "posterPath": "/2U4W1JZzld3yjl0epCyyeJBbw5Z.jpg", + "backdropPath": "/mGXP6NwFJBb5DKw1mCW1ArSXknX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-06-25", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 6.375, + "voteCount": 8, + "popularity": 1.101 + }, + { + "id": 68963, + "title": "Rozen Maiden - Zurückspulen", + "originalTitle": "ローゼンメイデン", + "overview": "During the events of the original Rozen Maiden, after circling \"yes\" on a paper and agreeing to wind an unknown \"something,\" a traumatized Jun Sakurada fights alongside the lifelike dolls known as the Rozen Maidens. But what would have happened if Jun had circled \"no\"?\n\nJun, having gotten over his school trauma from his younger days, spends his time attending college and working in a bookstore. However, he does not feel as though he belongs anywhere. One day, he finds a book containing instructions on how to make a Rozen Maiden. Mysteriously, when he arrives home that night, the second volume in the book series has been delivered to his house, along with some pieces of a doll. But as suddenly as they started arriving, the books stop coming, and Jun gets a notice that says that the books have ceased being published. With an incomplete doll in hand, and a message from his other self in another world, this Jun also finds his way into the world of the Rozen Maidens.", + "posterPath": "/pHYMi2FAhMg0msTxF4LgGMiJoy1.jpg", + "backdropPath": "/fSNT5AwlTd4wAqCKH3CSkgzp4JP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "2013-07-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 12, + "popularity": 1.1003 + }, + { + "id": 37522, + "title": "Nyan Koi!", + "originalTitle": "にゃんこい!", + "overview": "High school student Junpei Kousaka is allergic to cats—unfortunately for him he is surrounded by cat lovers and is cursed with an ability to understand cat speech.", + "posterPath": "/2fEuoBU5AjJzozwWpA6nqAwKoHP.jpg", + "backdropPath": "/qaC0Fpaujsgwj3oHtZpiBjysEMV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-10-02", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 17, + "popularity": 1.0995 + }, + { + "id": 24438, + "title": "Spiral: The Bonds of Reasoning", + "originalTitle": "スパイラル ~推理の絆~", + "overview": "Ayumu Narumi has lived all his life in the shadow of his famous detective brother, Kiyotaka. However, Kiyotaka disappeared two years ago, leaving behind his wife Madoka and Ayumu himself, along with a cryptic message about the \"Blade Children.\"\n\nOne day, a girl at Ayumu's school suddenly dies. What seemed like a suicide at first glance turns out to be a murder, and Ayumu is the prime suspect. While investigating the person responsible for framing him, he discovers that the mysterious Blade Children are involved—and they somehow know Kiyotaka personally. Ayumu soon finds out just how dangerous the Blade Children are and learns that, in reality, he and Kiyotaka are intertwined more closely than he had ever believed.", + "posterPath": "/3Bpo40FzWMFCFcmx66AEPGR42kF.jpg", + "backdropPath": "/iaEzuoejmA3ntu3oGT9cUYwnuEO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2002-10-01", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.625, + "voteCount": 8, + "popularity": 1.0989 + }, + { + "id": 72526, + "title": "Hitorijime My Hero", + "originalTitle": "ひとりじめマイヒーロー", + "overview": "High schooler Masahiro Setagawa is a fairly helpless delinquent, so much so that the neighborhood bullies use him to run their errands. His life changes when he meets high school teacher Kosuke Oshiba.", + "posterPath": "/rAs2WpzAERZcT4gzRRSd6a6Ld2m.jpg", + "backdropPath": "/58txXsHENN8gBXVG0EAYSq9Vnt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 30, + "popularity": 1.0953 + }, + { + "id": 64078, + "title": "Lance N' Masques", + "originalTitle": "ランス・アンド・マスクス", + "overview": "Yotaro Hanafusa is a descendent of the “Knights of the World.” With the Knight’s Code of Chivalry hammered into him since childhood, Yotaro cannot stop himself from saving damsels in distress. He wears a mask, and is known on the street as “Knight Lancer” but he has always kept his identity a secret. While on an outing, Yotaro saves a 6-year-old girl, Makio Kidoin, the only child of a powerful business tycoon. When Yotaro discovers that Makio leads a lonely life in a huge estate, he resolves to protect her. He and his friends disguise themselves as lodgers and move into her mansion.", + "posterPath": "/bk35ArMdP1giITGafGGTdTYk0kM.jpg", + "backdropPath": "/8CIEPTNY3YtwbN2WlNLEPqkHCEQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2015-10-01", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 6, + "popularity": 1.0949 + }, + { + "id": 44275, + "title": "Earthian", + "originalTitle": "アーシアン", + "overview": "Chihaya and Kagetsuya, two polar-opposite angels from the planet Eden, travel to Earth to track the positive and negative actions of its inhabitants, Earthians. Once 10,000 minus checks are gathered against Earth, the planet will be destroyed. One of many pairs of angels judging the planet, Chihaya and Kagetsuya quarrel vigorously at first but gradually develop a special relationship with each other.", + "posterPath": "/gB5WR3JPoPGPUXQSELYTvr5Rh0U.jpg", + "backdropPath": "/6kLPbM5GVnH56C3XANBygKzy1bR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1989-07-26", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 3.8, + "voteCount": 5, + "popularity": 1.0942 + }, + { + "id": 63627, + "title": "Wakaba Girl", + "originalTitle": "わかば*ガール", + "overview": "Wakaba Kohashi, a sheltered rich girl, dreams of becoming a fashionable and trendy gyaru because she admires their outgoing and carefree nature. With this goal in mind, Wakaba begins the school year hoping to make her high school debut as a gyaru. On the first day of class, she meets the pure Moeko Tokita, the serious Nao Mashiba, and the eccentric Mao Kurokawa, and the four of them quickly become friends as they learn about and imitate each other's lifestyles.\n\nWakaba*Girl follows the adventures of these four friends while they experience events like school festivals, waterpark trips, and gym class tests. Along the way, Wakaba discovers what it is like to live as a regular student while Nao, Moeka, and Mao catch a glimpse into the life of a rich family. With never a dull moment in their lives, the four girls make sure to live each day to the fullest.", + "posterPath": "/eRM31G29OiOfHjf04Ramzuzhaca.jpg", + "backdropPath": "/rzW1gH5oe339KwGGXx86PVDhE1C.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-07-03", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 12, + "popularity": 1.0939 + }, + { + "id": 86835, + "title": "Fairy Gone", + "originalTitle": "フェアリーゴーン", + "overview": "Able to summon fairies as alter-ego weapons, former soldiers become government dogs, mafia members, and even terrorists in search of purpose beyond the battlefield. Who will maintain the peace they all fought for nine years ago?", + "posterPath": "/rTgHQcJW6Coq997kfHatwrzd7Vm.jpg", + "backdropPath": "/lOSFLs9dQZcIP30IJW3K2pfXSZA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-04-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 26, + "popularity": 1.0928 + }, + { + "id": 82736, + "title": "Ms. Vampire Who Lives in My Neighborhood.", + "originalTitle": "となりの吸血鬼さん", + "overview": "The modern-day vampire comedy centers on high school girl Amano, who was saved from a strange incident by a vampire girl named Sophie Twilight, and has been interested in her ever since. Akari arrives at her house uninvited and the two start to live together. Although a vampire, Sophie never attacks humans, but purchases blood and anime goods via mail and lives a modern life.", + "posterPath": "/An76xFiqgurA6rYDU5j0bvQZxyH.jpg", + "backdropPath": "/vhEioeZWXwDRh3ifeYrKD7DROvU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-05", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.563, + "voteCount": 24, + "popularity": 1.0924 + }, + { + "id": 44134, + "title": "All Purpose Cultural Cat Girl Nuku Nuku Dash!", + "originalTitle": "万能文化猫娘DASH!", + "overview": "Ryunosuke Natsume has no idea his household helper is really the super sexy hero Cat Girl Nuku Nuku, he just feels lucky to have the lovely girl so close. Nuku, on the other hand, while trying to take care of her newly adopted family, battles with the temper of Ryunosuke's mother, Nuku's lost memories and the evil that lurks inside Mishima, the most powerful company in Maneki City!\n\nAs Mishima unleashes new and more terrorizing weapons in an attempt to take down Nuku, placing Maneki City in a clear and present danger, Nuku faces the ultimate choice: save herself or the people she loves!", + "posterPath": "/76in8AAsOOnOR94Ha7c9CWLWe2q.jpg", + "backdropPath": "/huSXZw6c4ef5M6h8emVgwWGwhrO.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-09-23", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 6, + "popularity": 1.0897 + }, + { + "id": 21277, + "title": "Avenger", + "originalTitle": "Avenger", + "overview": "Avenger is an anime series, produced by Bandai Visual, Bee Train and Xebec, and directed by Koichi Mashimo. It is set on post-apocalyptic colonized Mars. The series premiered across Japan between 1 October 2003 and 24 December 2003 on the TV Tokyo network. It was later licensed for North American distribution by Bandai's distributive unit across the region, Bandai Entertainment.", + "posterPath": "/8XIFRGmB552O23GZGTNKAoe9tYo.jpg", + "backdropPath": "/lEd00bUs8GBEH6y24FpcCmZCOWf.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 10759, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2003-10-01", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 6, + "popularity": 1.0893 + }, + { + "id": 25708, + "title": "Cosmo Warrior Zero", + "originalTitle": "コスモウォーリアー零", + "overview": "The time of oppression and lawlessness in deep space has begun. In order to preserve itself, humanity has reluctantly accepted peace with the invading force of mechanical people. Warrius Zero, a mercenary armada captain, has lost his immediate family during the war for Earth. Reduced to serving the mechanized victors, Zero carries out his orders without the will to resist. Now he has received a mission unlike any other. Zero has been commanded to travel to the farthest reaches of the universe to hunt down a single wanted man known to all as Space Pirate Harlock.", + "posterPath": "/gwasRZKCE11hS5FT1uTlRXYQxG9.jpg", + "backdropPath": "/bzvSLmHctSiYpPydfsjgsRHWlf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-07-06", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 9, + "popularity": 1.0885 + }, + { + "id": 23436, + "title": "Legends of the Dark King: A Fist of the North Star Story", + "originalTitle": "北斗の拳 ラオウ外伝 天の覇王", + "overview": "In the wastelands following the great nuclear war, a legend grew of a man. “Hokuto No Ken.” The Fist of the North Star. Master of a legendary fighting technique. A man of impossible strength and endurance. Yet before Ken claimed the title of the Fist, there was another master, trained in the art of Hokuto Shinken, the King of the Fist, the Divine Fist of Heaven. Raoh: the ultimate assassin, the ultimate warrior. This is the story of the world before Fist of the North Star, and how one man took the future of a savage world into his deadly hands and reshaped its destiny. Not as a hero but as a conqueror. For in the mind of the man called Raoh, the only way to save Mankind is to grind it under his giant heel! The greatest battle is about to begin in Legends of the Dark King ~ Fist of the North Star!", + "posterPath": "/qdMuK4tcJ3iKbYS3THyqtFh0fxC.jpg", + "backdropPath": "/grQ1rFm6QWYClrJxNxk3fJlpUWr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2008-10-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 15, + "popularity": 1.0877 + }, + { + "id": 94004, + "title": "Obsolete", + "originalTitle": "OBSOLETE", + "overview": "In 2014, aliens revealed themselves to request trade with humanity. In exchange for limestone, they would provide a consciousness-controlled general-use robot known as an \"Exoframe.\" Cheaper than an aircraft, tank, or firearm, and easy enough for anyone to operate, the \"Exoframe\" spreads change throughout the world in the blink of an eye...", + "posterPath": "/eFdA5yRK2gUC9OYqTgA8mvVz21y.jpg", + "backdropPath": "/rtN0ysmVYYmf6JNDybCeAJp4eMp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-12-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 7, + "popularity": 1.0871 + }, + { + "id": 82958, + "title": "Armor Shop for Ladies & Gentlemen", + "originalTitle": "おとなの防具屋さん", + "overview": "In a world of sword and sorcery a young villager named Kautsu comes upon a unique armor shop that only deals with a certain kind of equipment for female adventurers.", + "posterPath": "/g5KMAzCF6IA9sH9QhkA47pTCJWU.jpg", + "backdropPath": "/reuGtDd96g5LaR2uXiME5rsgorQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-09", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 20, + "popularity": 1.0827 + }, + { + "id": 46348, + "title": "Attack Number One", + "originalTitle": "アタックNo.1", + "overview": "The story is about Kozue Ayuhara, a girl who transferred to Fujimi College and tried out for the school volleyball team. She develops a friendship with her teammate Midori Hayakawa, and her talents impress coach Hongō more and more each day. Though she showcases extraordinary volleyball skills, she makes enemies with Yoshimura, the star of the current team. Kozue discovers that being at the top would bring stress, incompatibilities and other dilemmas into her life. Her high expectations of becoming the best volleyball player in the school, Japan and eventually the world, set the tone for the drama to follow.", + "posterPath": "/ubdlKL4ejScebWB6dmLpwCtXQUH.jpg", + "backdropPath": "/wni5nJzWRW4bZQYNMTlP98nujcD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "1969-12-07", + "releaseYear": "1969", + "originalLanguage": "ja", + "voteAverage": 5.639, + "voteCount": 18, + "popularity": 1.0812 + }, + { + "id": 54310, + "title": "Plastic Elder Sister", + "originalTitle": "+チック姉さん", + "overview": "Iroe Genma is a high school student often referred to as the \"Elder Sister\" despite her short height. She is the president of the school Model Club, which is dedicated to building plastic models of various things such as cars, boats, and robots.\n\nWith her two classmates, Hazuki \"Okappa\" Okamoto and Makina \"Makimaki\" Sakamaki, the small group are often sidetracked.", + "posterPath": "/vH9JBLZzvhFXjYFSoiPWowiIZc9.jpg", + "backdropPath": "/vqZ8oWlr6Ufcn4T6A1kNj3roHMq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-05-16", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.941, + "voteCount": 17, + "popularity": 1.0805 + }, + { + "id": 118610, + "title": "Blue Reflection Ray", + "originalTitle": "BLUE REFLECTION RAY/澪", + "overview": "Optimistic Hiori can’t turn away anyone in need. Awkward Ruka can’t make friends, even when she tries. But they have one thing in common: they’re magical girls, Reflectors! Now this pair will use powers to help resolve emotional struggles and protect Fragments of people’s hearts.", + "posterPath": "/e8prrax8LxG2EqBV8mS2ewuJkBx.jpg", + "backdropPath": "/lpiXgj9fWz75RsarxiGwcUURLzH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-04-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 3.9, + "voteCount": 7, + "popularity": 1.0797 + }, + { + "id": 78475, + "title": "Libra of Nil Admirari", + "originalTitle": "ニル・アドミラリの天秤 帝都幻惑綺譚", + "overview": "It's the 25th year of the Taisho Era in Imperial Tokyo. Kuze Tsugumi, daughter of aristocrats, agrees to be married to save her family from decline. But before she goes through with it, her younger brother Hitaki gets her involved in an incident caused by a \"maremono,\" a type of book that casts a great influence on whoever reads it. As a result, Tsugumi gains the power to see \"aura,\" a light that represents the emotions that dwell within a maremono. This is the story of a woman whose destiny seems to sway up and down, as if on the delicate balance of a scale.", + "posterPath": "/h3TbESt7LvCmLlb1dGb5Coo6avu.jpg", + "backdropPath": "/bEqPGVma0Q17bLPVK2x5r7Rb4bk.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 8, + "popularity": 1.0779 + }, + { + "id": 76581, + "title": "Aggressive Retsuko", + "originalTitle": "アグレッシブ烈子", + "overview": "Series of 100 one-minute anime shorts that centers on Retsuko, a 25-year old red panda who works in her dream company's accounting department. But it turns out that she is forced to keep doing more and more impossible tasks by her superiors and co-workers. She doesn't talk back to them, but she still has to let off steam, so she ends up going to karaoke by herself and singing death metal.", + "posterPath": "/bOGx0ySGwkRrwYetoIScvB90RxQ.jpg", + "backdropPath": "/esOaAFUquImPCRToa5hMwHqFqB6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-02", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.368, + "voteCount": 19, + "popularity": 1.0764 + }, + { + "id": 12423, + "title": "Bottle Fairy", + "originalTitle": "瓶詰妖精", + "overview": "Bottle Fairy follows a quartet of cute fairies as they play, study, and learn (often incorrect) lessons about the human world.", + "posterPath": "/jgimkNaV0GAsYMlqWoDsnwWFYWg.jpg", + "backdropPath": "/xmCldvBh9YMkCdSSCZ8UTr0UhqH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2003-10-04", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 16, + "popularity": 1.0752 + }, + { + "id": 46342, + "title": "Okamikakushi: Masque of the Wolf", + "originalTitle": "おおかみかくし", + "overview": "Kuzumi Hiroshi moves with his crippled sister and his father to the remote city of Jouga, which is famous for its hassaku citrus and the rumors that a species of enormous wolves once lived in the area. While some of the residents are more than friendly, when people begin to vanish suddenly, it becomes apparent that something sinister is afoot...", + "posterPath": "/bH6m58wqVYpeDkar8zp2pw4RN8o.jpg", + "backdropPath": "/nqmWVA0rP7zTrGQtCZKLqbJVXxy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery" + ], + "releaseDate": "2010-01-07", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.7, + "voteCount": 9, + "popularity": 1.0746 + }, + { + "id": 93822, + "title": "A Destructive God Sits Next to Me", + "originalTitle": "ぼくのとなりに暗黒破壊神がいます。", + "overview": "Koyuki Seri is just trying to have a normal school life, but instead he ends up acting as the straight man to his odd classmate, Hanatori Kabuto. Kabuto is is a delusional high school student, whose fantasies range from believing he is a knight on a journey, to claiming that removing his eyepatch will release a darker alter-ego who he refers to as Michael Offenbarung Dunkelheit. Seri is determined not to let himself get pushed around by Kabuto, but it seems that this will be easier said than done!", + "posterPath": "/A0ChBtZltGBkUWgzoCJzknwGFcw.jpg", + "backdropPath": "/lvw2l15qiS3MT5kLKaGL95eZkWA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.188, + "voteCount": 16, + "popularity": 1.0738 + }, + { + "id": 44618, + "title": "I Dream of Mimi", + "originalTitle": "ぶっとび!! CPU", + "overview": "For three long years, Akira has been saving to buy his very own computer. So when the Model 9821 finally goes on sale, he races to the store only to discover that it sold out in just 5 minutes! Yet, as luck would have it, Akira also manages to stumble across a man who just happens to be willing to sell him the exact model he was looking for! Unfortunately, Akira doesn't look close enough at the packaging. Instead of the 9821, he ends up with a Model 2198 - a super-advanced, biomechanical computer girl named Mimi!", + "posterPath": "/A17BCb2yDrj5biBLEADG4bFOgdQ.jpg", + "backdropPath": "/MoKEe6WHF5kU7nP64z58130sT9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1997-04-25", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 9, + "popularity": 1.0737 + }, + { + "id": 196967, + "title": "You're Under Arrest", + "originalTitle": "逮捕しちゃうぞ", + "overview": "Running late on her first day as a patrol woman for the Bokuto Police Department, spunky moped rider Natsumi Tsujimoto decides to take several shortcuts, only to be chased down and cited by mechanical genius and expert police driver Miyuki Kobayakawa. Upon arrival at the precinct, Natsumi finds out that her new partner is the same woman who ticketed her earlier. At first, she doesn't trust Miyuki, but in a short period of time, they develop an unbreakable friendship that overcomes traffic accidents, reckless drivers and even the strongest typhoons to hit Tokyo.", + "posterPath": "/a6dRj1vSIIsMmrxByMacJiunRZT.jpg", + "backdropPath": "/mCR169pBOyzBpllbFuCCB7nL38l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80, + 35 + ], + "genres": [ + "Animation", + "Crime", + "Comedy" + ], + "releaseDate": "1994-09-24", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 6, + "popularity": 1.0733 + }, + { + "id": 20494, + "title": "The Adventures of Hutch the Honeybee", + "originalTitle": "昆虫物語みなしごハッチ", + "overview": "Raised since his birth by his aunt, the little Hutchi will learn one day that he is actually the son of the queen of bees, who disappeared shortly before giving birth. The orphaned Prince then sets out to find his mother, wherever she is, and goes on an adventure. He will take notice of a hostile and dangerous environment and face many joys and sorrows, and face a thousand dangers while discovering the life around him.", + "posterPath": "/sBkZOj7ZUjvP2pwqzp2REVqWkYC.jpg", + "backdropPath": "/i0HZ2FIxZJdf7PIm7CbntWMTRIY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1970-04-07", + "releaseYear": "1970", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 7, + "popularity": 1.0715 + }, + { + "id": 223119, + "title": "Yakitori: Soldiers of Misfortune", + "originalTitle": "ヤキトリ", + "overview": "With Earth colonized by a superior alien civilization, Akira's only chance at a better future is to enlist as an expendable Yakitori foot soldier.", + "posterPath": "/tZCvtTOZEHuXs8ChoxUbp60L9gE.jpg", + "backdropPath": "/h03Ueqe0OnrCmzImEaeYD9QW09c.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-05-18", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 26, + "popularity": 1.0703 + }, + { + "id": 72911, + "title": "Gingitsune: Messenger Fox of the Gods", + "originalTitle": "ぎんぎつね", + "overview": "Gintarou is a fox spirit that has been protecting the small Inari temple since the Edo era. Saeki Makoto's family possesses the power to see the gods' agent, but the ability is limited to one living relative at a time. When Makoto's mother passed away while she was still young, Makoto inherited the ability as the sole remaining family member. With the help of fox spirit's power, Makoto and Gintarou help the people of their community, in spite of their many differences.", + "posterPath": "/oYH2yRCdnvZAFVhGdoAUVCKq8uv.jpg", + "backdropPath": "/bprWynwFTI2TGsFDLGLSSGvuVZ3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.722, + "voteCount": 9, + "popularity": 1.0679 + }, + { + "id": 69602, + "title": "Young Black Jack", + "originalTitle": "ヤング ブラック・ジャック", + "overview": "The year is 1968, and the world is swept up in the Vietnam War and student protests. In this time of turmoil, a mysterious young man with white and black hair and a scar on his face is enrolled in medical school. His genius skills with a surgical knife achieve many a medical miracle and are getting noticed. This hero origin story reveals how this young man earned his medical degree and the name of Black Jack.", + "posterPath": "/yDB0E2WCSva2G0l9uHtubqu3M1G.jpg", + "backdropPath": "/8xwrByinFpS1NIIoUmI6CMcRRy2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2015-10-02", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 70, + "popularity": 1.0676 + }, + { + "id": 63102, + "title": "Shin Captain Tsubasa", + "originalTitle": "新・キャプテン翼", + "overview": "Shin CT takes place at the U-16 word cup in France. After some friendly matches in Germany, Japan defeats one opponent after another and finally reaches the final round against Germany. After hard matches against Italian and French top players, the German team seems to be even more supreme. The giant goal keeper Moeller, the all round ace Kalz and Europe's best player and forward Schneider offer the Japanese team an extremely hard match, but in the end Japan wins 3:2.", + "posterPath": "/pdJFjI7OFcNrUuQoslGKSKtUpZU.jpg", + "backdropPath": "/wIq3EmyGZ7GuWQSxfB9JBwGU8wN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1989-07-01", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 7.441, + "voteCount": 17, + "popularity": 1.0673 + }, + { + "id": 30987, + "title": "Ride Back", + "originalTitle": "RIDEBACK -ライドバック-", + "overview": "After ex-dancer Rin trades her stage career for college life, she forms an unusual connection with a robotic RideBack motorcycle—Fuego. As a tyrannical new government oppresses the population and crushes civil liberties, Rin may have no choice but to gun Fuego’s engines and speed directly into the heart of the fight for freedom.", + "posterPath": "/c3xPlnsN8nP9VGaHfOK8jVSDOxw.jpg", + "backdropPath": "/yNMpoLtCdD9lyQ88FhwqdieUrkx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-01-11", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 11, + "popularity": 1.0646 + }, + { + "id": 53352, + "title": "House of Five Leaves", + "originalTitle": "さらい屋 五葉", + "overview": "Rônin Akitsu Masanosuke is a skilled swordsman, but his personality often causes him to be let go from his job. One day he encounters Yaichi, the leader of a group calling itself \"Five Leaves\" and takes a job from him as a bodyguard. Though he is worried about their intentions, he feels there is something more to the group and agrees to work with them.", + "posterPath": "/yBH1v416DRMY8ZFAtYp9PC7cNOi.jpg", + "backdropPath": "/fReRituFiToJoXPoQtDJ7lGT6NN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648, + 80 + ], + "genres": [ + "Animation", + "Drama", + "Mystery", + "Crime" + ], + "releaseDate": "2010-04-16", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 22, + "popularity": 1.0616 + }, + { + "id": 68137, + "title": "Ao Oni The Blue Monster", + "originalTitle": "あおおに ~じ・あにめぇしょん~", + "overview": "In most ordinary high schools, many stories and rumors float around—some scandalous, some happy and some...more macabre. One such example is of monsters lurking in an abandoned mansion outside of town. Such tales, however, prove too tempting to resist for Hiroshi and his friends Mika, Takeshi, and Takurou. They decide to brave the rumored dangers in order to investigate the manor and complete a test of courage. Each of them approaches the mansion with an overwhelming sense of dread. And when they enter, they come upon a blue monster named Ao Oni who attacks them.\n\nAs Hiroshi and his friends try to solve the various puzzles in the mansion and escape their new blue nemesis, they find themselves meeting several horrible endings as they fail miserably.", + "posterPath": "/cKuDLJ1mHXn1ZFHPwAvYxO0h9Az.jpg", + "backdropPath": "/g75sIFKgkqog0XtsdHtuMwCnFAM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 11, + "popularity": 1.0588 + }, + { + "id": 35508, + "title": "Reign: The Conqueror", + "originalTitle": "アレクサンダー戦記", + "overview": "In the 4th century B.C., a pagan shaman prophesies that Olympias, Queen of Macedonia, wife of King Phillip II will give birth to a baby who will grow up to destroy the world, and the baby named Alexander.\n\nYears later, Alexander with many successful campaigns unifies Persia and Macedonia, so great that it makes Aristotle worry that the world can be destroyed by Alexander's advance toward the East...", + "posterPath": "/3ojGaczms0oztjf0xuOY1pEqxkk.jpg", + "backdropPath": "/vU9rfdMb1TmmcehryRQAkahKogw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-09-14", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.133, + "voteCount": 15, + "popularity": 1.0579 + }, + { + "id": 53085, + "title": "Cuticle Detective Inaba", + "originalTitle": "キューティクル探偵因幡", + "overview": "The story revolves around Hiroshi Inaba, a private detective, and part-wolf-part-human being who was created artificially. Hiroshi runs his own detective agency and solves cases with the help of his cross-dressing secretary Yuuta, and Kei, a \"relatively normal\" teenager. The plot centres on Hiroshi and the gang trying to arrest his arch-nemesis Don Valentino, a mastermind goat with a taste for money (literally).", + "posterPath": "/pl3vAVJHBXr3ZtCQAHqWvAb3alX.jpg", + "backdropPath": "/fghUeMbPbpoIF1fDQ0l4DOpbGpl.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2013-01-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 7, + "popularity": 1.0577 + }, + { + "id": 66716, + "title": "Celestial Method", + "originalTitle": "天体のメソッド", + "overview": "The story begins one winter day when the wish of a few girls was realized with a miracle, changing the landscape of a town. \"In the skies above this town, a disc is always there.\"", + "posterPath": "/4XuJtgmoIafSOjQY6ULswfwOoma.jpg", + "backdropPath": "/igc9fZkqE65teFzbQKFAtAy6G1B.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 18 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Drama" + ], + "releaseDate": "2014-10-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 10, + "popularity": 1.0566 + }, + { + "id": 112615, + "title": "CESTVS -The Roman Fighter-", + "originalTitle": "セスタス -The Roman Fighter-", + "overview": "Cestvs enters his first match at the slave gladiator training school. Though he's bewildered to discover that his opponent is his best friend, he wins the match, and his opponent is killed on the spot. According to his instructor Zafar, losers have no future. \"Every time you win, your opponent will die. You're practically a murderer!\" With all his sorrow and rage clenched in his fists, Cestvs survives, as one after another powerful opponents stand in his way, as well as the shadow of Nero, fifth emperor of the Roman Empire. With no other way to secure his freedom, can Cestvs seize his future?!", + "posterPath": "/2teSdenh9YQOaNGRlg7XCgKXwj2.jpg", + "backdropPath": "/6ZuekxpWPZBogIr5dIk9t6VWc56.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Action & Adventure" + ], + "releaseDate": "2021-04-15", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 45, + "popularity": 1.056 + }, + { + "id": 67037, + "title": "Final Fantasy: Legend of the Crystals", + "originalTitle": "ファイナルファンタジー", + "overview": "200 years after Bartz and his friends saved two worlds from Exdeath, a threat arises and seeks to take the Crystals for itself. Linaly, a descendant of Bartz, and her friend/protector Prettz journey to the Temple of Wind to seek the source of this new danger.", + "posterPath": "/uMNcK4LogNwJBE5ceTwt6i3uzL1.jpg", + "backdropPath": "/bzvvxQBREY0aXAkn1BhQhSwoxyG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-03-21", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 10, + "popularity": 1.053 + }, + { + "id": 115109, + "title": "Hataraki Man", + "originalTitle": "働きマン", + "overview": "Hiroko Matsukata’s determined to work her way to the top, and at only 28, she’s now an editor at Jidai Weekly. But she’s had to dedicate her life to work while suppressing her feminine character traits to blend in with her uncouth male coworkers.", + "posterPath": "/z4kX4yuiNbWLNXoAQ7mXONXaste.jpg", + "backdropPath": "/3yf1sPpDb3xDofZ02hENvyGrAHi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-10-13", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 5, + "popularity": 1.0522 + }, + { + "id": 110371, + "title": "WIXOSS DIVA(A)LIVE", + "originalTitle": "WIXOSS DIVA(A)LIVE", + "overview": "In the world of Wixoss, the card game, players are invited to play as avatar versions of themselves; in this well-known game, the most popular way to play is participating in \"Diva Battles,\" where players compete to gain fans.", + "posterPath": "/mqilzrLx8FRq10UvVrkI1cZJGVC.jpg", + "backdropPath": "/edl2vLPzj9RNmHrmOhobLNrXei4.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2021-01-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 9, + "popularity": 1.0507 + }, + { + "id": 215429, + "title": "Acro Trip", + "originalTitle": "アクロトリップ", + "overview": "Chizuko is a normal otaku girl in Niigata Prefecture. She’s obsessed with Berry Blossom, a magical heroine who protects the city. But the battles with her inept nemesis, Chroma, have become so lackluster that they’re not even worth watching. Chizuko wants to see Berry’s full power, a desire that quickly leads this seemingly timid girl down a path of evil.", + "posterPath": "/m5rKz6sVlku4uEG53jwb01chs6O.jpg", + "backdropPath": "/mjN8Pi1kXJ3IpAiCL4fmsbL1ZG7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-10-02", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.083, + "voteCount": 12, + "popularity": 1.0493 + }, + { + "id": 43927, + "title": "Ai no Kusabi", + "originalTitle": "間の楔", + "overview": "This futuristic tale is set in a world where men are assigned various social classes based on their hair color. Iason Mink, a high-class Blondie, runs into Riki, a black-haired Mongrel, and makes him his \"Pet.\" As Riki learns of the dangers Iason faces by keeping him, he finds himself developing feelings for his master.\n\nThis is a remake of the 1992 OVA of the same name.", + "posterPath": "/uJUVBxZKzCBa55g0OhJ3j2hgLqY.jpg", + "backdropPath": "/8b48rEhcKbpQ9pfaUMh0BWZHipX.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10765 + ], + "genres": [ + "Drama", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-01-18", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.091, + "voteCount": 11, + "popularity": 1.0491 + }, + { + "id": 80474, + "title": "Samurai Warriors", + "originalTitle": "戦国無双", + "overview": "In late 16th century, the era of civil war that tore Japan over two centuries is nearing its end and the regional warlords who survived the bloodsheds are ready for a final showdown. In the battlefield where your best ally turns out to be your worst enemy, only the shrewdest can come out alive.", + "posterPath": "/ny2Lg6afSKMEXbZSZ6Ghj1I84Bb.jpg", + "backdropPath": "/ayMSUizyZ6s0JVGMaFbMda3xtGV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10768, + 10759 + ], + "genres": [ + "Animation", + "War & Politics", + "Action & Adventure" + ], + "releaseDate": "2015-01-12", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 8, + "popularity": 1.048 + }, + { + "id": 60790, + "title": "Time of Shura: Age of Chaos", + "originalTitle": "陸奥圓明流外伝 修羅の刻", + "overview": "Legends tell of an invincible martial art known as Mutsu Enmei-Ryu, an unarmed style that allows the user to defeat any number of armed opponents using incredible speed and strength. This is the story of three generations of those who bear the name Mutsu, and their encounters and battles with the strongest fighters of the Heian period.", + "posterPath": "/fuIjr0WYJW3YTGLXsWqZKWZCATa.jpg", + "backdropPath": "/r0aNo27XbIWq18aRMJ0COrH3MC7.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2004-04-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 6, + "popularity": 1.0453 + }, + { + "id": 22974, + "title": "Umi Monogatari", + "originalTitle": "うみものがたり ~あなたがいてくれたコト~", + "overview": "Marin and Urin are sea folk, people who live in a peaceful underwater world surrounded by bright fish and colorful coral. But one day, a beautiful ring falls from the \"sky\" - that dangerous place above the water - and the two girls decide to return the lovely trinket to its owner.\n\nWhile the surface world holds amazing wonders for the pair, it also hides a great darkness... a darkness that Urin accidentally unleashes when she opens a stone box at a local shrine. Now it's up to Marin, Urin, and their new friend Kanon to set things right again before that darkness swallows the entire world!", + "posterPath": "/77c1TnNUMCGnHz9ZIApCmgoeQ3R.jpg", + "backdropPath": "/iVqDHEb5wkIl86lUgU9SB7Zg8KK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2009-06-25", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 4.571, + "voteCount": 7, + "popularity": 1.0444 + }, + { + "id": 44219, + "title": "Winter Cicada", + "originalTitle": "冬の蝉", + "overview": "Fuyu no Semi is a Japanese anime OVA loosely based on the manga series, Embracing Love, which also aired on the Logo cable channel in the US.\n\nThe story, set in historical Japan, follows two samurai from opposing political groups, one protectionist and the other globalist, who fall in love with each other.", + "posterPath": "/q2NlOCSxUx0tpu6yobtSWWo5T4Q.jpg", + "backdropPath": "/2kXefgohbSuIXbROKqMZXO6NWFB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10768 + ], + "genres": [ + "Animation", + "Drama", + "War & Politics" + ], + "releaseDate": "2007-02-23", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.143, + "voteCount": 7, + "popularity": 1.0438 + }, + { + "id": 44546, + "title": "Bubblegum Crash", + "originalTitle": "バブルガムクラッシュ", + "overview": "MegaTokyo 2034: The saga of the Knight Sabers continues.\n\nThe group tries to find out who or what is behind the recent string of robberies, murders, and Boomer malfunctions which are somehow related to the creation of an advanced artificial intelligence.\n\nFurthermore, it seems that the Knight Sabers may be breaking up.", + "posterPath": "/5CAaUWHOqBfPjdk3wQ87iZbZ5vG.jpg", + "backdropPath": "/xSdmKYU9qskeAxIQvwqUu6XBi10.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1991-03-25", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 5.769, + "voteCount": 13, + "popularity": 1.0428 + }, + { + "id": 70228, + "title": "A Town Where You Live", + "originalTitle": "君のいる町", + "overview": "Haruto Kirishima lived a calm life out in the countryside, away from the fast-paced life of the city. Then Yuzuki Eba appeared in his life out of nowhere, having come from Tokyo to briefly live with her family. Their time together left him enamored with the memories of that short period before she just as abruptly disappeared from his life, and left him full of questions.Kimi no Iru Machi begins some time later, after Haruto moves to Tokyo to live with his sister, in order to pursue a career as a cook. In reality though he wishes to be with Yuzuki. Things don't start good though. When he arrives he is mistaken for a burglar and attacked by his sister's neighbour Mishima Asuka. After the misunderstand is cleared his feelings begin to waver though. Is Eba, who keeps avoiding him for seemingly no reason, the one for him or is it Asuka?", + "posterPath": "/vYrzfIc4tBAnm2Q0CPRLTWvNmbd.jpg", + "backdropPath": "/taurn6tdwGn4p9jajmjpnmVYroS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2013-07-13", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 16, + "popularity": 1.0389 + }, + { + "id": 127325, + "title": "exception", + "originalTitle": "exception", + "overview": "In a distant future where humans are forced to leave Earth, a spacecraft carrying a 3D-printed crew of specialists is sent to terraform a new planet.", + "posterPath": "/5NnrjWKuHnsgKZMAdXeBOLq6CbW.jpg", + "backdropPath": "/4sMLQ0EdAthgggrg8Rvy1drd4jn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2022-10-13", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 48, + "popularity": 1.0387 + }, + { + "id": 91950, + "title": "The Mischievous Twins", + "originalTitle": "おちゃめなふたご クレア学院物語", + "overview": "", + "posterPath": "/mEuk3G3cx0kZbWhKQwlVohoQNTg.jpg", + "backdropPath": "/qMAktjdAEdXpeQwpYoxPzZ21TSO.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1991-01-05", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 5, + "popularity": 1.0384 + }, + { + "id": 34741, + "title": "Antique Bakery", + "originalTitle": "西洋骨董洋菓子店 ~アンティーク~", + "overview": "Antique Bakery is a small bakery that's run by four handsome men. Tachibana the owner, Chikage the one who was sent to watch over his childhood friend, Ono the \"demonically charming\" master pastry chef, and Kanda a former boxer.", + "posterPath": "/cQ4Le3uxECGfdrNosxjlWJmB7yl.jpg", + "backdropPath": "/px61Ocl1lxfB54HpPyNmyIhJmqI.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2008-07-04", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 9, + "popularity": 1.0357 + }, + { + "id": 26539, + "title": "Apocalypse Zero", + "originalTitle": "覚悟のススメ", + "overview": "Kakugo and Harara are two siblings who have been trained to fight demons, monsters, and other creatures that are now roaming about in the post-apocalyptic 21st century. Along with their superior fighting techniques and specialized skills, they were also given special suits called Zero armor, which were made from the souls of dead warriors. Unfortunately Harara succumbs to evil within the Zero armor, and Kakugo is the only human alive that has the skills and equipment to defeat his sibling.", + "posterPath": "/llRS9RAQ4ffmcreGzy4HBMEc26s.jpg", + "backdropPath": "/8YwtUpfP0t1zYFptW8gu5Z3B2fK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-10-18", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 10, + "popularity": 1.0355 + }, + { + "id": 77723, + "title": "My Sweet Tyrant", + "originalTitle": "あっくんとカノジョ", + "overview": "The romantic comedy follows the everyday life of an extremely tsundere boy named Atsuhiro \"Akkun\" Kagari and his girlfriend Non \"Nontan\" Katagiri. Akkun's behavior is harsh towards Nontan with verbal abuse and neglect, but he actually is head-over-heels for her and habitually acts like a stalker by tailing her or eavesdropping. Nontan is oblivious to Akkun's stalker ways, and thinks his actions are cute.", + "posterPath": "/eG8r71D9CfRvHCVick2HObofIxn.jpg", + "backdropPath": "/661Np9eUOWAtVx8jvowND9krp9j.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-04-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.089, + "voteCount": 28, + "popularity": 1.032 + }, + { + "id": 76899, + "title": "Day Break Illusion", + "originalTitle": "幻影ヲ駆ケル太陽", + "overview": "In a world plagued by the Daemonia, creatures that take advantage of the negative emotions of people and transform them into monsters, girls from 22 special bloodlines are chosen to wield the power of the Elemental Tarot and confront them. The story follows Akari Taiyo, a 12-year-girl who becomes the wielder of card \"The Sun\" and joins the mysterious organization \"Sefiro Fiore\" to confront the Daemonia along other card wielders. However, it does not take long for Akari to learn that with their duty comes an unbearable guilt, as to defeat the Daemonia, the humans afflicted by them must perish as well.", + "posterPath": "/mWXHgibOZJh50uK70eNTeRSA1Jx.jpg", + "backdropPath": "/hnfpm2t83MLYD6tMqDtOJXQsPkb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2013-07-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 5, + "popularity": 1.0303 + }, + { + "id": 74084, + "title": "Code:Realize", + "originalTitle": "Code:Realize ~創世の姫君~", + "overview": "", + "posterPath": "/qoQQ1jnCNBzcIl1VO0XgC4yhL3N.jpg", + "backdropPath": "/5gQQxSIB5IhdWxrCk7hGRtahgk.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10765 + ], + "genres": [ + "Drama", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-10-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 15, + "popularity": 1.0286 + }, + { + "id": 71842, + "title": "Miyuki", + "originalTitle": "みゆき", + "overview": "Wakamatsu Masato lives with his step-sister (not blood-related), Miyuki. Their father is always working overseas, leaving them to live by themselves in Toukyou. Miyuki is cute, nice, sensitive and very popular among Masato's friends and peers. Masato has a girlfriend at school whose name is Kajima Miyuki, who is pretty and gentle, the ideal dream of every highschool boy.", + "posterPath": "/3ehVGzTXJOmgZHo7j0yANqu2X5P.jpg", + "backdropPath": "/gKf1Fn6fKDmCBxUc0wxFoYYPEeJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 18 + ], + "genres": [ + "Animation", + "Family", + "Drama" + ], + "releaseDate": "1983-03-31", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 5, + "popularity": 1.0275 + }, + { + "id": 42507, + "title": "Parasite Dolls", + "originalTitle": "Parasite Dolls", + "overview": "MegaTokyo 2034: Beauty is only skin deep, but when you can’t see beneath the skin, how can you know what you’re really dealing with?\n\nIn a world where perfect androids called Boomers have infiltrated every aspect of society, it’s the job of Branch to maintain peace between the people and the plastic.\n\nUnfortunately, not all boomers are created perfect, and when boomers go bad, people die.\n\nThe thin blue line that separates man from machine is about to meet its most horrifying test.", + "posterPath": "/opXYjjZRfsExo4IyQElEg1R3Jdj.jpg", + "backdropPath": "/cKXl5GVk6o5P8LHKFa7hbwYFLv6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-05-22", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 15, + "popularity": 1.0269 + }, + { + "id": 82522, + "title": "RErideD – Derrida, who leaps through time –", + "originalTitle": "RErideD-刻越えのデリダ-", + "overview": "In 2050 engineer Derrida Yvain is famous for his contribution to \"Autonomous Machine DZ,\" at his father's company, Rebuild. But when he and his colleague Nathan discover a dangerous flaw in their creation, their warnings go ignored. The next day after Nathan's daughter Mage's birthday party, the group barely escapes an attack by unknown forces, leading to Derrida's unwitting captivity in cryogenic stasis. Ten years later, he emerges in a world at war with the mechanical lifeforms he helped create. Now, he fights to survive his nightmare future to make good his promise to \"Take care of Mage.\"", + "posterPath": "/iDsIr8aLDulZnzHNzUJRtsYNjr2.jpg", + "backdropPath": "/c3mqlWNadaRYKyfZicLMxAIhftX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 9648 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Mystery" + ], + "releaseDate": "2018-09-22", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.625, + "voteCount": 8, + "popularity": 1.0268 + }, + { + "id": 38532, + "title": "Rio: Rainbow Gate!", + "originalTitle": "Rio RainbowGate!", + "overview": "The \"Howard Resort Hotel\" is an entertainment destination where people gather from around the world to grab huge fortunes. In the casino is a beautiful female dealer named Rio Rollins, known far and wide as the \"Goddess of Victory\".", + "posterPath": "/wcwqmoc8jmxj3xVDIvt9lpw0gGE.jpg", + "backdropPath": "/w9EmtEwpiNV347pNMgISvzX1Z1c.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-01-04", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 5, + "popularity": 1.0265 + }, + { + "id": 79334, + "title": "Starship Troopers", + "originalTitle": "宇宙の戦士", + "overview": "Juan \"Johnny\" Rico, a high school student living in Buenos Aires, joins the Federation military in the hope of following his love, Carmen, into space. He has to undergo harsh training to become a soldier, harsher than he expected, but despite several setbacks and traumatic experiences, Johnny perseveres and finishes his training. However, a war is brewing on the outer planets with a strange alien enemy and Johnny is thrust into the conflict.", + "posterPath": "/sHDTI3LZyn1EsOjsvhGgQ9T16bP.jpg", + "backdropPath": "/6ANU2dshKEftslmJNgNxbgUpWrM.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10768, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "War & Politics", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1988-10-25", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 5.625, + "voteCount": 8, + "popularity": 1.0264 + }, + { + "id": 46668, + "title": "Giant Killing", + "originalTitle": "GIANT KILLING", + "overview": "Giant Killing follows a ragtag bunch from East Tokyo who are struggling in Japan's top football league. Nearing the bottom, they have lost 5 matches in a row which hasn't done much to team morale. Even with the fan's turning their backs on the team, it seems as if the end is near. East Tokyo United can only blame their coach right now. However, their Coach is going to do something drastic to prove to his team and fans, that against the biggest club in the nation, he can make this team win...", + "posterPath": "/nnzTdetoQt6S9KblPcSWqeaxjXn.jpg", + "backdropPath": "/oSYjv8wHZAUxAQ0e71SkPHTLjX1.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16 + ], + "genres": [ + "Drama", + "Animation" + ], + "releaseDate": "2010-04-04", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 8.294, + "voteCount": 17, + "popularity": 1.0251 + }, + { + "id": 83477, + "title": "The Price of Smiles", + "originalTitle": "エガオノダイカ", + "overview": "On a planet far from Earth, there is a kingdom full of smiling faces. Princess Yuuki is 12 years old, and about to enter a sensitive age in a person's life. Everyday, she cries, laughs, and sometimes, her heart throbs with excitement. All the while, she lives merrily in the royal palace. Filling her days with color are her loyal vassals: her tutor Reira, Izana who assists in political affairs, the leader of the chivalry Harold and then, there is her childhood friend and aide Joshua. Stella is 17 years old and a capable, reserved soldier. However, she is always smiling for smiling is essential to living.", + "posterPath": "/pB9ToRW9x4TZRgIdmRXjqvqfNjk.jpg", + "backdropPath": "/yZjRxpzOF90aPBZSxhjQGHbpFFa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-01-04", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 10, + "popularity": 1.0248 + }, + { + "id": 1295, + "title": "X-Bomber", + "originalTitle": "Xボンバー", + "overview": "As the year 3000 approaches, a war-torn Solar System is invaded by the Imperial Alliance in search of a supreme being, the F-01. The experimental X Bomber spacecraft with its young crew must discover the secret of F-01 and turn it against the Imperial Alliance or all will be lost.", + "posterPath": "/pntjyWaiSwtoad7yGIJrgYNXokM.jpg", + "backdropPath": "/ySf7lp6HQFfH43DMu3lRMpPuYup.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1980-10-11", + "releaseYear": "1980", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 8, + "popularity": 1.024 + }, + { + "id": 68102, + "title": "Brave Witches", + "originalTitle": "ブレイブウィッチーズ", + "overview": "The Neuroi, an enemy of mankind, suddenly appeared mainly in Europe in the 1930s. Only girls with special magical powers called Witches could confront the Neuroi who were difficult to destroy with ordinary weapons. In 1944, the Neuroi nest above the republic of Gallia was eradicated, and safety of western Europe has been ensured. The allied forces earnestly began planning for an oppositional operation towards central and eastern Europe. An order to scramble is given to the 502nd Joint Fighter Wing \"Brave Witches\" whose base is in Peterburg within the Orussian Empire.", + "posterPath": "/tBhdfjoT8Co0ogfjuKSQgLrcaTy.jpg", + "backdropPath": "/tm9SWCnozojGuHHIysXVfFcUoE1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-10-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 23, + "popularity": 1.0232 + }, + { + "id": 86762, + "title": "Wish Upon the Pleiades", + "originalTitle": "放課後のプレアデス", + "overview": "Subaru is a young girl who discovers that her best friend Aoi is part of magical group trying to gather engine fragments so that a little being from Pleiades can return to his home. Subaru considers joining them as she was chosen by the Pleiadian, president of this afterschool club.", + "posterPath": "/jVwbzpvf2zxgvfbaRFgQv4RDb87.jpg", + "backdropPath": "/7zbxfoyDxHVMBDvkMjozycBIWcM.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-04-09", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 5, + "popularity": 1.0221 + }, + { + "id": 79034, + "title": "Top Secret: The Revelation", + "originalTitle": "秘密(トップ・シークレット)~The Revelation~", + "overview": "The story takes place five decades from now, when brain scanners have been perfected to the point that the government can retrieve up to five years' worth of memories from people's minds — even if they are dead. The investigators of the National Research Institute of Police Science's 9th Forensics Laboratory must weigh the ethical choices in the ultimate invasion of privacy as they delve into people's minds to solve crimes.\n\nEveryone has a secret in his mind. Following Maki, the leader of the group, and Aoki, a newcomer, the anime shows the agonies of the investigators who have to know these secrets unwillingly.", + "posterPath": "/bmwMILhhuSeUh8Co9ksgykLcyfi.jpg", + "backdropPath": "/rqsNQX4tR33NaQsK8A1OZjjjCgh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80 + ], + "genres": [ + "Animation", + "Crime" + ], + "releaseDate": "2008-04-09", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 4.375, + "voteCount": 8, + "popularity": 1.0197 + }, + { + "id": 70722, + "title": "Momokyun Sword", + "originalTitle": "モモキュンソード", + "overview": "Momoko is a beautiful young sword fighter who was born inside a peach. She lives with her constant companions—the dog god Inugami, the monkey god Sarugami, and the pheasant god Kijigami—in a peaceful paradise. However, a demon army led by devil king invades the paradise and steals the precious treasure that protects Momoko's land. To retrieve the treasure and save the people, Momoko embarks on a great adventure with her three companions.", + "posterPath": "/tg6HZ5SKGv7ezXxjwXn24MHYlnr.jpg", + "backdropPath": "/vfE3gd2VoWbJ2h5E1IOialJawgv.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-09", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.583, + "voteCount": 12, + "popularity": 1.0191 + }, + { + "id": 36803, + "title": "Tsuyokiss", + "originalTitle": "つよきす Cool×Sweet", + "overview": "Sunao Konoe is very lively high school student who dreams of becoming a professional actress. After changing schools, she wants to establish a drama club in order to follow the path of acting, but she is constantly denied by the student council president.", + "posterPath": "/a3bksFhLU451v5m3AZ3PGPQ42RJ.jpg", + "backdropPath": "/ySK5FOW9VqngoHql0nrfOQQHLd3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2006-07-02", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 11, + "popularity": 1.0185 + }, + { + "id": 107257, + "title": "Grand Blues!", + "originalTitle": "ぐらぶるっ!", + "overview": "The four-panel gag manga based on Cygames’ celebrated RPG series Granblue Fantasy is getting a short anime adaptation! Journey back into the vast blue skies to join Vyrn, Lyria, Katalina, Rackam, and many others and see a different side to the beloved characters and world of Granblue Fantasy!", + "posterPath": "/vhVukPmVYhEs2R3TomA709poaJl.jpg", + "backdropPath": "/mirI0pXbkyZkZhRc70koVCnqemP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-08", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 9, + "popularity": 1.017 + }, + { + "id": 125515, + "title": "Artiswitch", + "originalTitle": "Artiswitch", + "overview": "Nina is a witch who works at one of the street shops of Harajuku. With her magical powers and supernatural abilities, Nina is able to satisfy the needs of her artsy customers. Although, these customers are only allowed to meet Nina when their true desire is well known to her.", + "posterPath": "/pN3a13CEXYh6Ala1xtG72zEf1Vr.jpg", + "backdropPath": "/5PffgVBHEwZC4zaSVHs7BcKcQ6w.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-05-28", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 8.571, + "voteCount": 7, + "popularity": 1.0167 + }, + { + "id": 120968, + "title": "D_Cide Traumerei the Animation", + "originalTitle": "D_CIDE TRAUMEREI THE ANIMATION", + "overview": "The story takes place in Shibuya. Ryuhei had always looked up to his older brother as a child. Even after witnessing his mysterious death, Ryuhei grows up to be a cheerful high school student. One day after his daily kickboxing practice, he is bitten by a strange creature calling itself Tris. That night, an unusual dream bothers his sleep. As the rumored \"Drops\" circulate around the city, Ryuhei is confronted with a force of twisted desire. What is it that awaits him beyond that?", + "posterPath": "/qLRVeEZrjd966Vxh7W7mXwgXp5u.jpg", + "backdropPath": "/d6gnJNnev8Wop9388tD2vvylFLT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2021-07-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 42, + "popularity": 1.0166 + }, + { + "id": 222925, + "title": "Quality Assurance in Another World", + "originalTitle": "この世界は不完全すぎる", + "overview": "When a dragon attacks a peaceful village, it’s not the beast that perplexes resident Nikola, but the man who comes to their aid. Haga, member of a secret royal team of investigators, intrigues her with his eccentric ways. It may be due to the fact he’s a real-life QA debugger and this world is a VR game! With Haga by her side, Nikola’s inspired to venture out and learn her world’s true nature.", + "posterPath": "/toNVPhr8BpCbJ4LUGdiOGJpcy80.jpg", + "backdropPath": "/hrX0xZNEN4E9klCSDYS5xpZRuFm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2024-07-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 10, + "popularity": 1.0146 + }, + { + "id": 71465, + "title": "Robot Girls Z", + "originalTitle": "ロボットガールズZ", + "overview": "The story revolves around a new team of \"Toei robot girls\" named \"Team Z\" that is made up of three girls based on Toei's Mazinger Z franchise: Mazinger Z, Great Mazinger, and UFO Robot Grendizer. Usually they perform in activities around Nerima ward in Tokyo to raise the awareness of the promising future energy source \"Photon Power\" (koushiryoku). However, there are times when \"Mechanical Beast\" team of girls emerge from the \"Subterranean Empire\" and attempt to steal the energy. Thus \"Team Z\" has to battle them to prevent this, though sometimes they just go and beat up the \"bad girls\" to relieve stress.", + "posterPath": "/tnR8ZaiYtPhoLVulTQmN5Iw8SS5.jpg", + "backdropPath": "/3b4TtFBaaEtjARbr96HuHNJWJVe.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2014-01-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 6, + "popularity": 1.011 + }, + { + "id": 209217, + "title": "The Human Crazy University", + "originalTitle": "ヒューマンバグ大学", + "overview": "Satake Hirofumi's just your ordinary guy...on death row for killing his fiancée with an odd luck of surviving dangerous situations. As he awaits execution, a research institute studying miraculous phenomena, Human Crazy University, has taken interest in the immortal. Now a subject of their research, he shares his memories and sheds light on a much bigger conspiracy with his fiancée's murder.", + "posterPath": "/tiyHx3Pu1TBiO95MNUC6Vbl7WwS.jpg", + "backdropPath": "/xi5aMibFBXBFdo1PYJcFylPhWFd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-10-05", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 3.8, + "voteCount": 7, + "popularity": 1.0094 + }, + { + "id": 26173, + "title": "Angel Sanctuary", + "originalTitle": "天使禁猟区", + "overview": "Setsuna, a High School student, not only has to deal with bullies and more then appropiate feelings for his own sister, but also must come to terms with the fact that he is the reincarnation of the Organic Angel Alexiel who rebelled against God. Being thrust into a world he never knew existed he must believe that angels and demons exist for the sake of Heaven, Earth and even Hell.", + "posterPath": "/zkWgHLlS2cJbJHTIrjVz6P1fXZZ.jpg", + "backdropPath": "/qu2Wr1qsIVlzsb4554Wkis7NqDX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-05-25", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 9, + "popularity": 1.0091 + }, + { + "id": 68138, + "title": "Kiitaro's Yokai Picture Diary", + "originalTitle": "奇異太郎少年の妖怪絵日記", + "overview": "Kiitarou is a boy with a strong sixth sense who is always surrounded by demons. He gets talked to by yukionna, gets his bath licked clean by akaname (licking demons), and lives with the zashiki-warashi Suzu, whom he just can't come to dislike.", + "posterPath": "/y2kXAKcEUQAtM8RtbXFaQ74wmjC.jpg", + "backdropPath": "/1fcO0uDsPM49lk18og8YRCAEOPt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-10-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 11, + "popularity": 1.0085 + }, + { + "id": 82846, + "title": "Bakumatsu", + "originalTitle": "BAKUMATSU ~恋愛幕末カレシ 外伝~", + "overview": "Kyoto, Japan. The heroine meets a man who gives her a pocket watch somehow leading to a Torii in a shrine, and suddenly it warps her into the Bakumatsu period. In the world of where there is such a difference in importance of value, she tries to find a way to go back. When she meets a man who has crossed time and says, \"I will live for you,\" a love story between the two blossoms.", + "posterPath": "/qtVtTnMe4neHuWtMuRITU2Bd0K1.jpg", + "backdropPath": "/ce9FfcCekyEnXx3nuScrUu1Ug2X.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 9.2, + "voteCount": 5, + "popularity": 1.0079 + }, + { + "id": 35195, + "title": "801 T.T.S Airbats", + "originalTitle": "青空少女隊", + "overview": "Meet the fighter pilots of the 801 Tactical Training Squadron, codenamed Airbats. With their sleek curves and lightning fast moves, they give new meaning to the term \"the friendly skies\" - and I'm not talking about their jets! The Airbats are the hottest, wildest team of female flyers you'll ever meet, and when they climb into the cockpit, the clear blue skies of Japan aren't big enough to contain all the aerial action these ladies get into! Whether it's ghostbusting the spirit of a dead kamikaze Zero pilot, facing off against a team of world famous American aeronautical acrobats, or winning a year's supply of noodles in a ramen-noodle-eating contest, you'd better believe the Airbats have the \"right stuff\" to get the job done!", + "posterPath": "/bPq5zzehzRu0APoGIhzJ3Mi0yTD.jpg", + "backdropPath": "/fgr8j33mCiwXtRL54K9Lk4qwDKX.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1994-10-21", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 4.714, + "voteCount": 7, + "popularity": 1.0067 + }, + { + "id": 26868, + "title": "Nerima Daikon Brothers", + "originalTitle": "おろしたてミュージカル 練馬大根ブラザーズ", + "overview": "What's a band to do with no fame and especially no sold-out arena to perform in? How can they grab the cash they need to build the Concert Dome of their DREAMS?! Well they can't. But the NERIMA DAIKON BROTHERS sure as hell are going to try! WATCH as Hideki Ichiro and Mako (yeah one of them's a chick!) farm daikon by day and battle slimy record producers, pachinko-mad hags, monstrous nurses, flatulent hospital administrators and hot police babes by night. LISTEN as the band AND the evil villains sing hilarious songs all along the bumpy daikon-studded road! TUNE IN AND SEE!!! (What's daikon? Is it a vegetable? Is it a fruit? A weapon? A girl's best friend? All of the above?! )", + "posterPath": "/dbdAvDmXyqcbteh0WU32FTqqNZx.jpg", + "backdropPath": "/rtYjBcMyCXD20wczF2AnFrrt8EP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2006-01-09", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 1.0064 + }, + { + "id": 154901, + "title": "Teppen!!!!!!!!!!!!!!! Laughing 'til You Cry", + "originalTitle": "てっぺんっ!!!!!!!!!!!!!!!", + "overview": "Yayoi Sakamoto, a diehard fan of comedians and comedy acts, enrolls in the private Kazuki High School in Nanba (Osaka's entertainment district famous as the starting point for many comedians). She reunites with Yomogi Takahashi, a childhood friend who once formed the comedy duo \"Konamonzu\" with her when they were little. Before long, they find themselves putting together a routine at a park like they did before, in order to enter a local shopping area's contest. At that moment, a mysterious girl calls out to them.", + "posterPath": "/hNW84lHzhJPLS7N95NvetIrdnjV.jpg", + "backdropPath": "/npmWi3hufXRIXfHtviyaCxNfRP8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 9, + "popularity": 1.0033 + }, + { + "id": 9284, + "title": "Battle Programmer Shirase", + "originalTitle": "BPS バトルプログラマーシラセ", + "overview": "Battle Programmer Shirase, also known as BPS, is a free programmer with super hacking abilities who doesn't work for money. What he does work for is certainly something that only people like him would appreciate. But, his demeanor certainly doesn't suit the jobs he is hired for. With the evil King of America causing trouble via the internet, Shirase is nothing but busy as each new adventure brings even more interesting people into the picture.", + "posterPath": "/8HH2QyNk9SdpvwynbNjtoQ9PLWr.jpg", + "backdropPath": "/ix5YRSbr1M1hIeAqbbM75AXHerP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-04", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 6, + "popularity": 1.0009 + }, + { + "id": 54928, + "title": "Ebiten", + "originalTitle": "えびてん -公立海老栖川高校天悶部-", + "overview": "A school club anime full of dreams and populated by nothing but cute girls. It won't grant any wishes, though!", + "posterPath": "/wsUe2n4aDeQeUaX3lgtHpv54aQr.jpg", + "backdropPath": "/uCz3OtNqBY9AHJPfWlRXzIzrquy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2012-07-14", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 3.4, + "voteCount": 5, + "popularity": 0.9999 + }, + { + "id": 29663, + "title": "The Skull Man", + "originalTitle": "スカルマン", + "overview": "Otomo City: where freedom and justice have atrophied to the bone; where conspiracy rules the day and death stalks the night... Death in the form of the Skull Man, a literal Grim Reaper whose skeletal grin presages grisly mayhem and murder, even to the monstrous mutants that haunt the city's underworlds! \n\nTo investigate a bizarre slaying, journalist Minagami Hayato and photographer Kiriko Mamiya must stalk this ultimate predator, through a festering cadaver of a city where the corruption flows in rivers as deep and foul as the sins of the reigning elite, and unearth a secret so shocking that an entire city has been turned into a tomb to contain! In a nightmarish necropolis where nothing is as it seems, vengeance comes in the form of a living Death's-Head!", + "posterPath": "/A8hz1CD7EUavnb1owXfUB1GHalP.jpg", + "backdropPath": "/aT7mAMGoEvqviByQr6OtuGaVw5x.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2007-04-28", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 8, + "popularity": 0.999 + }, + { + "id": 43778, + "title": "Tales of Phantasia: The Animation", + "originalTitle": "テイルズ オブ ファンタジア THE ANIMATION", + "overview": "In the land of Midgard a bloodthirsty conqueror breaks the seal holding Dhaos, the Demon King whose goal is to eradicate all mankind. A few survivors of this destructive event have banded together in an effort to fight against the impending darkness and chaos. A warrior, cleric, witch, summoner, archer, and ninja make up the Heroes of Space and Time as they relentlessly pursue Dhaos in order to end his conquest of death.", + "posterPath": "/90SSIDzzZPv6H9t5FMYEpR2Blh5.jpg", + "backdropPath": "/kvil38l4Cg5seX98zt944LQ6Lp9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2004-11-25", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 0.9971 + }, + { + "id": 100935, + "title": "Idoly Pride", + "originalTitle": "Idoly Pride", + "overview": "After a successful audition, high school student Kotono Nagase and her best friend move into a dorm with eight other aspiring idols. They quickly realize it takes more than cute choreography and cute outfits to reach the top—it will take blood, sweat, and tears to advance in the idol-ranking VENUS program, where the top spot is held by superstar Mana Nagase... who happens to be Kotono’s older sister.", + "posterPath": "/kL7qWjUimxUiZkdmzKjcXepVd4r.jpg", + "backdropPath": "/2UohhhySbyW8ykTLLaNzSpWir6L.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2021-01-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 16, + "popularity": 0.9966 + }, + { + "id": 24260, + "title": "Karakuri Zoushi Ayatsuri Sakon", + "originalTitle": "人形草紙あやつり左近", + "overview": "The dark-haired bishounen is Sakon Tachibana, a puppeteer, and the other is Ukon, his favorite puppet and best friend. Sakon is the (only) grandson of Saemon Tachibana, a national treasure of Japan famous for his manipulation of Bunraku puppets. Ukon is a child doll puppet made in the early Meiji era by the famous female dollmaker Unosuke. Together they run into murders and solve them.", + "posterPath": "/aWegijMzh1kt4CMHASWPxSZMls.jpg", + "backdropPath": "/fAxOKey3jH6k4S0R9cGtqW69hEJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1999-10-08", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 5, + "popularity": 0.9962 + }, + { + "id": 44440, + "title": "Dotto! Koni-chan", + "originalTitle": "ドッとKONIちゃん", + "overview": "Dotto! Koni-chan is a Japanese anime television series, which premiered in Japan on Animax between November 26, 2000 and May 29, 2001. It was animated by Shaft and produced by Animax and Genco. It had a wide fan base in Latin America, especially in México, Guatemala, Chile, Colombia and Argentina.", + "posterPath": "/5hqkXG0auicA2NXOpDfsgftOBHn.jpg", + "backdropPath": "/1nvQIKGeY4nY672DvIrKbk1RYRg.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2000-11-26", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.4, + "voteCount": 58, + "popularity": 0.996 + }, + { + "id": 66102, + "title": "Cerberus", + "originalTitle": "聖戦ケルベロス 竜刻のファタリテ", + "overview": "Sword and magic rule in the continent of Kuna'ahn. In this continent are three powerful nations: the Holy Kingdom of Amoria, the Kingdom of Ishilfen, and the Kingdom of Vanrodis, which share a delicate balance of power. Should disaster befall any one of the three nations, war would spread throughout the continent. Also residing there is the feared \"Evil Dragon\" Daganzord, an unstoppable force that leaves nothing but scorched land and destruction wherever he goes. Hiiro's parents, Bairo and Kismitete, joined other sorcerers in a magic ritual ten years ago in an attempt to seal Daganzord, but failed when someone interfered. The ritual would later become known as the \"Balbagoa Tragedy.\" After being rescued by Giruu, young Hiiro set out to learn swordsmanship so that he could avenge his parents.", + "posterPath": "/dFKUmHIeT2Ezjbdgi3oZK1oEJJP.jpg", + "backdropPath": "/2K6nmJM2HeZJ51Xc8ZoILw4T77P.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 32, + "popularity": 0.9954 + }, + { + "id": 114307, + "title": "The Night Beyond the Tricornered Window", + "originalTitle": "さんかく窓の外側は夜", + "overview": "Shy bookstore clerk Kosuke Mikado has the ability to see ghosts and spirits, an ability he wishes he didn't have, since what he sees usually terrifies him. Rihito Hiyakawa, an exorcist whose supernatural powers are as strong as his social graces are weak, doesn't seem to fear anything, mortal or otherwise. When this odd couple gets together to solve the bizarre cases that come their way, their work methods may not be entirely safe for work!", + "posterPath": "/quwMdtlHcqNATTuofOq8Cvd6Pbf.jpg", + "backdropPath": "/cBTgPiZ4yaqszGKiuqkUXlSDnYn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Mystery" + ], + "releaseDate": "2021-10-03", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 16, + "popularity": 0.9946 + }, + { + "id": 27647, + "title": "Read or Die the TV", + "originalTitle": "R.O.D -THE TV-", + "overview": "Five years have passed since the occurrence of the incident known as the \"Human Annihilation Mission.\" In Japan, a novelist is dealing with writer's block after her friend has gone missing. In Hong Kong, three sisters, masters in the use of paper, run their own detective agency to solve cases that involve books. When these people are brought together, a bond greater than blood is formed - a bond that will be sorely tested by the evil powers intent on taking over the world. Join Anita, Maggie, Michelle, and Nenene as they travel the globe in order to save the world from the evil mastermind, Mr. Carpenter! Of course, that's if they can find the time to put down the books they're reading...", + "posterPath": "/d0oPRXZznnP3B9sovtlbaxU6veK.jpg", + "backdropPath": "/wnjsP6SuyJRPr1OwhwDXLFw3cv8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-09-01", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 20, + "popularity": 0.9943 + }, + { + "id": 66106, + "title": "Three Leaves, Three Colors", + "originalTitle": "三者三葉", + "overview": "Futaba Odagiri is incredibly energetic but is also a glutton. Teru Hayama looks like an angel but she is really a demonic class president. Yoko Nishikawa is the daughter of family that used to be a member of the upper class, but after her father's company went bankrupt, they became poor. All three high school girls have the kanji for \"leaf\" in their name but could not be any different from one another.", + "posterPath": "/v67a20gp1TfuCaJMUUIy1J0q1ni.jpg", + "backdropPath": "/7bkdadqFAb0peuP7pZqbtwa1fm9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-11", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 24, + "popularity": 0.9938 + }, + { + "id": 139551, + "title": "Phantom of the Idol", + "originalTitle": "神クズ☆アイドル", + "overview": "Yuya is part of the idol duo ZINGS, but his laziness and disdain for fans puts him in danger of getting blacklisted. That is, until he meets Asahi, the ghost of a former idol who’s eager to stage her own comeback by possessing Yuya's willing body!", + "posterPath": "/vMQ8jntqin9IEv6Y2FXS9Z8zO8c.jpg", + "backdropPath": "/yI7ryGLFfbE1b5yerR6KKG7hO3q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-02", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 8.333, + "voteCount": 9, + "popularity": 0.9935 + }, + { + "id": 57287, + "title": "Code:Breaker", + "originalTitle": "CØDE:BREAKER", + "overview": "Sakurakouji Sakura is a girl who appears modest and graceful but in reality is skilled in martial arts. After witnessing a boy burning people with his blue flame, she is startled to see that the same boy is a transfer student, Oogami Rei. Oogami is a Code Breaker, one who does not exist. He is a seemingly cold-blooded killer who follows the principle of an eye for an eye, to use evil against evil. Convinced that killing is not right, Sakurakouji sets out to stop him and penetrate his icy heart.", + "posterPath": "/iwUWYgItga8EdVkqgS5R1q0V5md.jpg", + "backdropPath": "/ojPOhLsAKqTfhbGvtcWp8ScqqBT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-10-07", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 42, + "popularity": 0.9934 + }, + { + "id": 9407, + "title": "Battle Athletes", + "originalTitle": "バトルアスリーテス 大運動会 OVA", + "overview": "In the year 4999 - mankind has long abandoned war in favor of intergalactic competition through athletic events. One of which is an all-female contest for the coveted \"Cosmo Beauty\" title. Akari Kanzaki has just entered the University Satellite in hopes of becoming the latest Cosmic Beauty - a title held by her mother long ago. On her first few days in the university, she meets new friends, encounters fierce rivals, and struggles to become the best of all the Battle Athletes.", + "posterPath": "/631yPxFikRie7UmaiptZ7D1Oacv.jpg", + "backdropPath": "/jgT2vZvgS4GXs1KOe6FHZozzodD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "1997-05-25", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 6, + "popularity": 0.993 + }, + { + "id": 65675, + "title": "Karneval", + "originalTitle": "カーニヴァル", + "overview": "Nai searches for someone important to him, with only an abandoned bracelet as a clue. Gareki steals and pick-pockets to get by from day to day. The two meet in a strange mansion where they are set-up, and soon become wanted criminals by military security operatives. When Nai and Gareki find themselves desperate in a hopeless predicament, they encounter none other than the country's most powerful defense organization - \"Circus\"!!", + "posterPath": "/ae2EWiX9FnkAnAFRz7txRRJ9SQm.jpg", + "backdropPath": "/rNYynel9OT0tihfQPTGHdXGzo3o.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-04-04", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 9, + "popularity": 0.9918 + }, + { + "id": 76132, + "title": "How to Keep a Mummy", + "originalTitle": "ミイラの飼い方", + "overview": "When high school student Sora Kashiwagi finds himself staring down a mysterious oversized package sent to him by his self-proclaimed \"adventurer\" father, the last thing he expects is for it to be opened from the inside... by a little mummy so small it can fit in the palm of his hand!", + "posterPath": "/1h3CIQcCKKxVGvfp2FC4YXp0Hjl.jpg", + "backdropPath": "/pQcsTe0qIBq1lev0nlfkxTyK9yC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-01-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8.494, + "voteCount": 180, + "popularity": 0.9914 + }, + { + "id": 36084, + "title": "Tears to Tiara", + "originalTitle": "ティアーズ・トゥ・ティアラ", + "overview": "Set in a fictitious land during a medieval-like era of magic and fantasy, Tears to Tiara unfolds with the Divine Empire’s rise to power as it conquers and rules lands far and wide. On the island of Erin, still ruled by the Ancient Kingdom, the Goidelic people are attempting to sacrifice priestess Riannon to revive protagonist and demon king Arawn to lead the resistance against the Empire. Although the ritual fails and Riannon survives, the seal imprisoning the demon king is broken and Arawn is resurrected. Armed with mysterious and devastating powers and a human’s demeanour, Arawn joins Riannon, her brother and battalion commander, Arthur, as well as their team of fighters comprising a swordsman, an archer and a quintet of magical pixies, in the epic struggle against the Divine Empire.", + "posterPath": "/eCmJvHVuS6N7ZUTFltQSwPF31O5.jpg", + "backdropPath": "/odSX42tmpQH5xk4eWAKpO2mgZor.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2009-04-06", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 5, + "popularity": 0.9904 + }, + { + "id": 196287, + "title": "Tonari no Yokai-san", + "originalTitle": "となりの妖怪さん", + "overview": "Welcome to Engamori, the cozy town where supernatural beings are your friendly neighbors. For generations and to this day, the otherworldly Yokai and humans have continued to protect their easygoing way of life. Enjoy the mountain breeze and uncover the mysterious bonds that lie within.", + "posterPath": "/23DRKb4JlytHeOn8newtFUKjqrU.jpg", + "backdropPath": "/rNKcsqiMvu2CXH5ShsXGlYK8clp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-07", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 5, + "popularity": 0.9902 + }, + { + "id": 90546, + "title": "A Certain Scientific Accelerator", + "originalTitle": "とある科学の一方通行[アクセラレータ]", + "overview": "After rescuing Last Order and subsequently taking a bullet to the head, Academy City’s top-ranked esper rests in the hospital. But Accelerator’s recovery is cut short when a mysterious girl carrying a photo of his little clone companion asks for help. Now they’re taking on Disciplinary Action—an anti-evil coalition whose sinister plans threaten Last Order, Academy City, and even the entire world!", + "posterPath": "/10KGPY9ihuI5v9an0VF1eU5cxOs.jpg", + "backdropPath": "/zbBfn2qoKjC70sDSNByrTOdsVMw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-12", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.412, + "voteCount": 102, + "popularity": 0.9901 + }, + { + "id": 94313, + "title": "Aikatsu on Parade!", + "originalTitle": "アイカツオンパレード!", + "overview": "Raki Kiseki is a second-year middle school student who transfers to Star Harmony Academy to become an idol. However, when she uses an Aikatsu Pass she received from her big sister (an Aikatsu engineer), something mysterious happens. Lots of doors appeared before her, and when she opens them, she meets Aikatsu idols she never knew before, such as Yume Nijino (Aikatsu Stars!). Raki vows to design her own premium dress and perform in it on stage.", + "posterPath": "/oiguenkd9z3XLXHcq37dA8By6Ts.jpg", + "backdropPath": "/sb7bBvr9pRlTkDBI8zPkyuRRNk8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35, + 18, + 10762, + 10751 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy", + "Drama", + "Kids", + "Family" + ], + "releaseDate": "2019-10-05", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 6, + "popularity": 0.9879 + }, + { + "id": 194733, + "title": "Chimimo", + "originalTitle": "ちみも", + "overview": "Meet hell's most adorable messenger. Chimimo might be an average demon, but he and his horde of minions have big dreams of unleashing hell on earth! Too bad a portal to the human realm drops him into the middle of the Onigami household, where the family’s three unflappable sisters rule the roost with iron fists. Now Chimimo is stuck as their freeloading roommate, and his ambitions of unleashing the apocalypse will have to wait until he can summon the willpower to get off the couch!", + "posterPath": "/E8HX0g52oqL29buDCazk2WCJjB.jpg", + "backdropPath": "/qbpqRyypPb0KYYiMcSx1avaXl0e.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-07-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 0.9877 + }, + { + "id": 232214, + "title": "Pokémon: Paldean Winds", + "originalTitle": "放課後のブレス", + "overview": "Follow several academy students as they come into their own, growing and learning as they attend school.", + "posterPath": "/8ZWJVE1ZsiJDujI7cUT4z3d0z24.jpg", + "backdropPath": "/eQ7fWpSrE0xJd5sCgFUEEsr5sB6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2023-09-06", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 12, + "popularity": 0.9872 + }, + { + "id": 50076, + "title": "Aiura", + "originalTitle": "あいうら", + "overview": "They don't always see eye-to-eye, but that just makes these high school girls' daily lives more fun. \"Their lives happen when nothing is happening\".", + "posterPath": "/7jghz8BJVYNbrMeQPRGicgiPZvn.jpg", + "backdropPath": "/8yCVrJwh52slzeo0gx8kFJN5i8g.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-04-10", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 25, + "popularity": 0.9848 + }, + { + "id": 34725, + "title": "The Ping Pong Club", + "originalTitle": "行け!稲中卓球部", + "overview": "Inaho Jr. High's Boys Ping Pong Club has only 6 members, the club minimum. Takeda is your average nice guy. Kinoshita is good looking and popular with girls. Unfortunately, the rest are branded as losers. Tanabe is too foreign, while Tanaka is petite and perverse. Maena and Izawa are truly deviant, and their crazed antics have earned the team some powerful enemies. In spite of their differences, the team needs to work together to retain their practice room and club status.", + "posterPath": "/52VAQsn9Ly4f1LAu3XHrnEGnPwn.jpg", + "backdropPath": "/j1PTSC6vzN51JGulihh7HCTruCx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1995-04-06", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 5, + "popularity": 0.9834 + }, + { + "id": 71001, + "title": "Frame Arms Girl", + "originalTitle": "フレームアームズ・ガール", + "overview": "Based on Kotobukiya's Frame Arms Girl model kit line. The anime will focus on Gourai, the first model released for the line, as well as Stylet and Baselard.", + "posterPath": "/3AfO1jD6Ahignxzgvfy0NzxInU9.jpg", + "backdropPath": "/ohSfUU5cnYyLSLOY4BGcEOgJn1q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.833, + "voteCount": 6, + "popularity": 0.9811 + }, + { + "id": 78617, + "title": "Mermaid's Forest", + "originalTitle": "高橋留美子劇場 人魚の森", + "overview": "According to an ancient Japanese legend, mermaid flesh may grant immortality if eaten. However, there is a much greater chance that consumption will lead to death or transformation into a damned creature known as a Lost Soul. Mermaid Saga tells the tale of Yuta, an immortal who has been alive for five hundred years. Throughout the series, he wanders across Japan searching for a cure and meets others whose lives have also been ruined by mermaid flesh.", + "posterPath": "/fPZ8FSIoqdUsoM9MWqR3ahlIrPX.jpg", + "backdropPath": "/cOAXTcFM99zH901UxDqdarZalKB.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2003-10-05", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 5.125, + "voteCount": 8, + "popularity": 0.9795 + }, + { + "id": 234176, + "title": "Pon no Michi", + "originalTitle": "ぽんのみち", + "overview": "The story is set in Hiroshima Prefecture's Onomichi City, where a high school student Nashiko Jippensha was kicked out of her house. Without a place to play with her friends, she learns that the mahjong parlor that her father used to run is now vacant. She fixes the mahjong parlor and turns it into a place where she and her friends can have fun, cook, have tea, and sometimes play mahjong.", + "posterPath": "/hsja4RPWImc7taUfW2e3CHOk711.jpg", + "backdropPath": "/aFsD7BGCwwOYrfd1CWEE1COE7uO.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2024-01-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 7, + "popularity": 0.9794 + }, + { + "id": 65980, + "title": "Prince of Stride: Alternative", + "originalTitle": "プリンス・オブ・ストライド オルタナティブ", + "overview": "\"Stride,\" is an extreme sport that involves six people on one team who run relay races through towns. Hōnan Academy and other schools compete to win eastern Japan's top Stride competition, \"End of Summer.\" However, Hōnan's team has shut down. First-year high school students Takeru Fujiwara and Nana Sakurai attempt to restart the club, but they must recruit six members for the team. They ask Riku Yagami to join, but he turns them down by saying that Stride is the one thing he doesn't want to do.", + "posterPath": "/8UqixEjQpCxGXqPpqDiEsae7JoM.jpg", + "backdropPath": "/gGvwD29yi7y6mQMHpjaZkSOUwhh.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-01-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 9, + "popularity": 0.9771 + }, + { + "id": 94756, + "title": "Nozo x Kimi", + "originalTitle": "ノゾxキミ", + "overview": "A young man discovers a tiny hole in a wall of his new room, and looks through it to see a girl on the other side.", + "posterPath": "/kctF7r5bOa5TshSomflxuBADo2y.jpg", + "backdropPath": "/wljycu4UYrcIU49m6hPSOvmXPGT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-08-18", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.4, + "voteCount": 5, + "popularity": 0.9757 + }, + { + "id": 84655, + "title": "Rilakkuma and Kaoru", + "originalTitle": "リラックマとカオルさん", + "overview": "Kaoru's unexpected new roommate is Rilakkuma, a bear with a zipper on its back that spends each day just lazing around -- but is impossible to hate.", + "posterPath": "/lzohWj8xtowSXJVN9PsJjZAf1B2.jpg", + "backdropPath": "/jLIEjHrxzFmCMwqW4qjafgDHCm6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10762 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Kids" + ], + "releaseDate": "2019-04-19", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.379, + "voteCount": 58, + "popularity": 0.975 + }, + { + "id": 84638, + "title": "Welcome, Chitose-chan", + "originalTitle": "おこしやす、ちとせちゃん", + "overview": "Chitose-chan is a penguin who lives in Kyoto. Getting in touch with people and getting fed delicious food as she curiously walks around Kyoto streets is her favourite thing to do. The story features popular places in Kyoto like Kiyomizu Temple, Ginkaku Temple, and Gion from the Penguin's point of view. This is a short story about a penguin that is nostalgic and warm, curing and relieving the heart.", + "posterPath": "/w18OKZq4jrirw2g1eVVDx0jSrRA.jpg", + "backdropPath": "/IYTuMPTjyM6VshlkWZqpMIabQd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 5, + "popularity": 0.974 + }, + { + "id": 71307, + "title": "Pupa", + "originalTitle": "Pupa", + "overview": "Growing up with an abusive father, Utsutsu is highly protective of his younger sister Yume. One day, she contracts the strange Pupa virus and begins to sprout grotesque wings and attack both animals and humans.", + "posterPath": "/gkWQ6jL596SKLlLI3BkIV1KAegD.jpg", + "backdropPath": "/yMFLx4AXRM8ewfLPxny5HoGbMnp.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2014-01-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 3.72, + "voteCount": 41, + "popularity": 0.9733 + }, + { + "id": 37577, + "title": "Madam is a Magical Girl", + "originalTitle": "奥さまは魔法少女", + "overview": "Ureshiko Asaba, 26 years old, married. Few people know the fact that she is a magical girl named \"Agnes\", and she is actually the guardian of the town where she lives. One day she meets Sayaka Kurenai, aka \"Cruje\", another magical girl appointed by the magic realm as the legitimate sucessor to her position, but Agnes is reluctant in letting her assume because she knows that Cruje has orders to erase the whole place, including its human inhabitants with the purpose of creating a new one. To complicate matters, Ureshiko must deal with the growing distance between her and her husband, Tamotsu, her crescent feelings for Tatsumi Kagura, a young man who is now living as a tenant in her home, and the fact that in the moment she ever kisses a common human, she would lose her powers forever.", + "posterPath": "/tlE9GYAw7qEJXT9KagE1JpV4iIH.jpg", + "backdropPath": "/iIdPalv9ijGnrryiDOizYyzVXga.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-07-03", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.357, + "voteCount": 7, + "popularity": 0.9728 + }, + { + "id": 67078, + "title": "Planetarian: The Reverie of a Little Planet", + "originalTitle": "planetarian 〜ちいさなほしのゆめ〜", + "overview": "It is thirty years after the failure of the Space Colonization Program. Humanity is nearly extinct. A perpetual and deadly Rain falls on the Earth. Men known as \"Junkers\" plunder goods and artifacts from the ruins of civilization. One such Junker sneaks alone into the most dangerous of all ruins—a \"Sarcophagus City.\" In the center of this dead city, he discovers a pre-War planetarium. And as he enters he is greeted by Hoshino Yumemi, a companion robot. Without a single shred of doubt, she assumes he is the first customer she's had in 30 years. She attempts to show him the stars at once, but the planetarium projector is broken. Unable to make heads or tails of her conversation, he ends up agreeing to try and repair the projector...", + "posterPath": "/9XIwicpQCDqj44uyomlxJe017MI.jpg", + "backdropPath": "/fvUqaKNw9pJGx5VmtLF4VQSp6eH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-07-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.875, + "voteCount": 24, + "popularity": 0.9716 + }, + { + "id": 54950, + "title": "Chronicles of the Going Home Club", + "originalTitle": "帰宅部活動記録", + "overview": "The story follows a group of high school girls who are in the 'Going-Home Club'. Instead of doing regular club activities, the 'Going-Home Club' is dedicated to having as much fun as possible, by doing such things as playing video games or even simply feeding pigeons in the park.", + "posterPath": "/yAtz5X7e1yTCNI6vMKwWMSTF8jj.jpg", + "backdropPath": "/8s5VjPODuoqatCnclMROBCAHbTg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-07-05", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 5, + "popularity": 0.9697 + }, + { + "id": 60733, + "title": "No-Rin", + "originalTitle": "のうりん", + "overview": "Teenager Hata Kosaku is crushed when his favorite singing idol, Kusakabe Yuka, stuns the world by retiring from show business. Kosaku’s friends try to cheer him up, but nothing can chase away his gloomy mood until Yuka herself transfers into his class at Tamo Agriculture School!", + "posterPath": "/yWwv1GqtxYk6FWUeEEmFyVrCRXr.jpg", + "backdropPath": "/IZtCBI21CSdbFeKFb95ZIGOGlS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10749 + ], + "genres": [ + "Animation", + "Comedy", + "Romance" + ], + "releaseDate": "2014-01-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 21, + "popularity": 0.9688 + }, + { + "id": 61202, + "title": "Tokyo ESP", + "originalTitle": "東京ESP", + "overview": "Rinka Urushiba is a normal high school girl, until she encounters a penguin and shoals of glowing fish swimming through the sky. She looses consciousness only to awaken with the power to move through inanimate objects. At first she thought it was a hallucination if it were not for Kyotaro Azuma who witnessed the event and who, incidentally, has the ability to teleport. They decide to use their powers to combat people who might use their powers for evil.", + "posterPath": "/p8eqfHkrRF1pviqFEyKw3LeLeEA.jpg", + "backdropPath": "/zIa9wN16XylP9Zt1RJ5SoAklTs4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-07-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 21, + "popularity": 0.9653 + }, + { + "id": 75793, + "title": "Ms. Koizumi Loves Ramen Noodles", + "originalTitle": "ラーメン大好き小泉さん", + "overview": "Koizumi is a mysterious and attractive high school student. But what most people don't know about her is that she's a ramen master who is always on the lookout for great ramen restaurants. Everyday, she goes hunting for real-life places serving the best ramen dishes and delightfully eats the delicious noodles. The way Koizumi downs a giant bowl of ramen–more adeptly than any large man–will amaze and delight you!", + "posterPath": "/sg1vYwdCLBrBrcwwQIWwFD52qlX.jpg", + "backdropPath": "/cybtvybUytUtoiK68dtWGhG4aYY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-01-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.233, + "voteCount": 30, + "popularity": 0.9646 + }, + { + "id": 100353, + "title": "Bungo and Alchemist -Gears of Judgement-", + "originalTitle": "文豪とアルケミスト 〜審判ノ歯車〜", + "overview": "Based on the popular mobile game of the same name. Bungo and Alchemist -Gears of Judgement- is set in a fantasy world with famous and handsome historical figures from the field of literature, who must call upon their magical abilities to save books that have been tainted by evil forces.", + "posterPath": "/rdyxjRbAgdpvDVSBAdTDgiLkPlL.jpg", + "backdropPath": "/AnL4Ph1pcPjGWb9jT1aoYmSzi6T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-04-04", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 12, + "popularity": 0.9633 + }, + { + "id": 8676, + "title": "Wowser", + "originalTitle": "どんどんドメルとロン", + "overview": "Wowser is an anime based on the Belgian comic strip Cubitus. It consisted of 52 two-part episodes.", + "posterPath": "/mzKKuG7mOH8gC74ZpETZcJy60c4.jpg", + "backdropPath": "/u5KjARDwgJowDLhEK8AzjLdPMNz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1988-04-05", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 7, + "popularity": 0.9623 + }, + { + "id": 27838, + "title": "Hanaukyou Maid Team: La Verite", + "originalTitle": "花右京メイド隊 LaVerite", + "overview": "Hanaukyou Tarou, a high school student whose parents have died, is forced to move to Tokyo into his grandfather's residence. However he does not know that his grandfather is very rich and that he left the residence (with all the staff) to Tarou.\n\nThe staff is composed only of professional maids and there are many of them in the house! Unfortunately Tarou is allergic to women and changes colour whenever they touch him (and because they were used to their previous master's habits they touch Tarou a lot!). But there is one maid named Mariel whose touch has an opposite effect on Tarou.", + "posterPath": "/6WUWND5DwVSe3862kqwxqFek7ZF.jpg", + "backdropPath": "/2h5OWnZherOotXWW3zG70pesqoN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2004-04-05", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 8, + "popularity": 0.9622 + }, + { + "id": 236392, + "title": "A Salad Bowl of Eccentrics", + "originalTitle": "変人のサラダボウル", + "overview": "Sosuke Kaburaya is a detective struggling to make ends meet. While on a case, he happens upon Sara da Odin, a princess from another world who wields magical powers. Sara quickly adjusts to modern Japanese life as Livia de Udis, a knight from Sara’s kingdom, arrives to find her. Soon enough, both Sara and Livia’s positivity begins to rub off on Sōsuke and the neighborhood’s cast of characters.", + "posterPath": "/6dumHhfa0BMzjwEZpj9o4uVcGpP.jpg", + "backdropPath": "/qa2MZGPOBoeCnr1AMj9zzg7E3h.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-04-05", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 17, + "popularity": 0.9612 + }, + { + "id": 37450, + "title": "Flaming Rugby Boy: Dodge Danpei", + "originalTitle": "炎の闘球児・ドッジ弾平", + "overview": "", + "posterPath": "/sXi2AzHsWuxN6Wf6FzPM8HrVIoS.jpg", + "backdropPath": "/7cPed3VVqJYgt6mLMiLoVC8IlZ0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure" + ], + "releaseDate": "1991-10-14", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 12, + "popularity": 0.9612 + }, + { + "id": 34191, + "title": "Magikano", + "originalTitle": "マジカノ", + "overview": "Magikano is a manga series by Takeaki Momose, which was later adapted into an anime series, directed by Seiji Kishi and written by Hideki Mitsui.\n\nThe anime series was also broadcast by Animax, who adapted and dubbed the series into English for broadcast across its English language networks in Southeast Asia and South Asia from February 2007, where the series received its English language premiere.\n\nADV Films has licensed the rights for the North American release of Magikano on DVD for $65,000, and released the first volume on December 4, 2007. ADV Films' Anime Network began airing the anime on January 3, 2008 on their Subscription On Demand platform. On March 6, 2008 the anime began airing on their Free On Demand platform. In July 2008, the series became one of over 30 ADV titles to be transferred to Funimation.", + "posterPath": "/xlqOHVoZPm8RVRXCYQOtbtsMEXA.jpg", + "backdropPath": "/xGS2YmACt4aHWNOBWB9QfBvnRvr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2006-01-01", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 8, + "popularity": 0.9612 + }, + { + "id": 22432, + "title": "Video Girl Ai", + "originalTitle": "電影少女 VIDEO・GIRL・AI", + "overview": "High-school student Yota Moteuchi is so unpopular that his classmates have given him the nickname \"Dateless.\" So it's no surprise when the love of his life, Moemi, is not interested in Yota but instead is in love with Yota's best friend, Takashi. Yota turns to a video rental shop for comfort, but little did he suspect that the shop was magical and that the cute girl on his rented tape would pop out of the television and try to fix his ruined love life!", + "posterPath": "/55kGXYm6oC2WULfhmipJvTAOqsx.jpg", + "backdropPath": "/yMDy90i3QdWtx4z1TYEUuABfOiD.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1992-03-27", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 28, + "popularity": 0.9594 + }, + { + "id": 45462, + "title": "Pet Shop of Horrors", + "originalTitle": "ペットショップ・オブ・ホラーズ / ペットショップ オブ ホラーズ", + "overview": "Welcome to the most magnificent pet shop in Chinatown! Operated by the shadowy Count D, the shop specializes in rare and hard to come by pets... but with each sale comes a contract. And if that contract is broken, watch out! Detective Orcott has linked many odd and unexplained deaths to Count D's shop. Will he solve the mystery or fall prey to it?", + "posterPath": "/teGe8ztT8hqhOkaQDXKPcL0uMGS.jpg", + "backdropPath": "/o2GhUjnwiqCdt292256dpKRON44.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 16, + 9648 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Animation", + "Mystery" + ], + "releaseDate": "1999-03-01", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 43, + "popularity": 0.9592 + }, + { + "id": 157345, + "title": "Extreme Hearts", + "originalTitle": "Extreme Hearts", + "overview": "The story is set in the future, not long after the present day. Hyper Sports, which use extreme gear as support items, have become popular hobby competitions among both children and adults. Hiyori Hayama is a high school singer who has nothing to do with Hyper Sports, but a certain incident sets the story in motion.", + "posterPath": "/ojB7dVv0YOFvWEbnQuk3hG0S7RZ.jpg", + "backdropPath": "/vIJNNMH07Q4enSSamFZxv1QX8B3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-10", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 4.1, + "voteCount": 7, + "popularity": 0.9583 + }, + { + "id": 138688, + "title": "Spirit Warrior", + "originalTitle": "孔雀王", + "overview": "A young mystic without a past, Kujaku was born under a dark omen possessed of incredible supernatural powers. Raised by priests, he has learned to use these powers for good. But the evil Siegfried von Mittgard seeks to steal his birthright, and rule the world as the Regent of Darkness. He has dispatched bloodthirsty minions to destroy Kujaku before he can awaken to his destiny. Now, Kujaku must unravel the riddle of his past, before the power within consumes him!", + "posterPath": "/p8YS5EzVLZaWy9m9TVFoaoebdJ5.jpg", + "backdropPath": "/3rsHvq7lt9ErxfHUNkVAMXYFmob.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1988-04-29", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 0.956 + }, + { + "id": 34195, + "title": "Rec", + "originalTitle": "レック", + "overview": "Rec is a Japanese manga about an aspiring voice actress by Q-Tarō Hanamizawa. A nine-episode anime adaptation by Shaft aired between February and March 2006; an original video animation episode was also produced.", + "posterPath": "/eoNfmHW656JCIdfxKuW3MyG20u7.jpg", + "backdropPath": "/6hdwhhTLt2eWdrdCdPyuU2wRiUa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-02-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 13, + "popularity": 0.9539 + }, + { + "id": 80226, + "title": "Otaku no Video", + "originalTitle": "おたくのビデオ", + "overview": "A mockumentary featuring an animated tale of an average person who slowly becomes an otaku (obsessive fanatic) and eventually becomes the \"Otaking\"! Between story segments, live action interviews with fictional die-hard otakus take place.", + "posterPath": "/bKYxDaMxOcZMb0dzuAUKAqUy7wX.jpg", + "backdropPath": "/aOSGOT5wkhkrmGTGdnWX9PjhTca.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1991-09-27", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 0.9512 + }, + { + "id": 203949, + "title": "Gudetama: An Eggcellent Adventure", + "originalTitle": "ぐでたま 〜母をたずねてどんくらい〜", + "overview": "Gudetama, the lazy egg, reluctantly embarks on an adventure of a lifetime with Shakipiyo, a newly hatched chick, who is determined to find their mother.", + "posterPath": "/irE2cdrnicp8w9Y65hw8Gpx0pWC.jpg", + "backdropPath": "/g20g2iWGWbJXVxZ16eYMTIRX8GU.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10751, + 16 + ], + "genres": [ + "Action & Adventure", + "Family", + "Animation" + ], + "releaseDate": "2022-12-13", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.927, + "voteCount": 89, + "popularity": 0.9487 + }, + { + "id": 78458, + "title": "Butlers x Battlers", + "originalTitle": "Butlers~千年百年物語~", + "overview": "Jinguuji Kouma is the smart and handsome student council president. His elegant smile captures the hearts of women. Hayakawa Tsubasa is a multi-talented and gentle shop assistant at a café. His cafe latte with owl latte art is very popular with female customers. The two men travel through time to fight their archenemy. The charming \"Butlers,\" as they are called, fight supernatural battles and also experience a slapstick comedic life at their academy.", + "posterPath": "/VKdYEpfoEUQ5bDvX957SwV9Dx2.jpg", + "backdropPath": "/9CnZrjBIGuRmam7ClB8SDczwQtc.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2018-04-12", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 9, + "popularity": 0.9479 + }, + { + "id": 94295, + "title": "Futsal Boys!!!!!", + "originalTitle": "フットサルボーイズ!!!!!", + "overview": "Haru Yamato watches the championship of the U-18 world cup and is inspired by a Japanese player Tokinari Tenōji. He joins the Koyo Academy High School's futsal team with the goal of becoming a player like Tenōji. There, he finds friends, and together they face their rivals.", + "posterPath": "/mGJi3pu20DXorvo08SNSzwyH9qf.jpg", + "backdropPath": "/gOGfffw1plbm5Epcsb5anwxOwFk.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2022-01-09", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 13, + "popularity": 0.9457 + }, + { + "id": 60828, + "title": "Mischief of the Gods", + "originalTitle": "神々の悪戯", + "overview": "Yui Kusanagi is ordered by Zeus, a god and the headmaster of a school he created, to teach the meaning of love to young and handsome gods. The reason he has for doing this is to cancel the negative effects of the weakening bond between the world of the divine and the world of the humans.", + "posterPath": "/eGyHddc7V6DRrnMg55RYAirIZDC.jpg", + "backdropPath": "/nmIyCUcrXulpOz7ZmCQUDm76Aqx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2014-04-05", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 16, + "popularity": 0.9447 + }, + { + "id": 34746, + "title": "Looking Up at the Half-Moon", + "originalTitle": "半分の月がのぼる空", + "overview": "Even though Yuuichi Ezaki is in the hospital recovering from an illness, he's constantly sneaking out. One day he's caught by the head nurse, who makes a deal with him: she'll overlook his future excursions if he's willing to befriend a new patient, Rika Akiba. Due to a serious heart condition, Rika has spent most of her life in the hospital, and doesn't really have any friends. As Yuuichi and Rika spend time together and learn more about each other, their relationship soon blossoms into romance...", + "posterPath": "/A7yBH8ugvrRC45xJJF2SQwWF4PK.jpg", + "backdropPath": "/7WsUs20KCsrDhUOKrDjc6LWfb4Y.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 35 + ], + "genres": [ + "Drama", + "Animation", + "Comedy" + ], + "releaseDate": "2006-01-12", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 9, + "popularity": 0.9409 + }, + { + "id": 45286, + "title": "Magical Witch Punie-chan", + "originalTitle": "大魔法峠", + "overview": "In order for the princess of Magical Land, Punie Tanaka, to become queen she must become a transfer student in a Japanese high school. Due to her potential to become the next ruler, she has many enemies that wish to assassinate her. This proves difficult to them because Punie is both skilled at martial arts and possesses magic powers which she uses to quickly defeat her enemies.", + "posterPath": "/y0AGALFyVU557EK8Mm2h5IEfAB1.jpg", + "backdropPath": "/nDCDXM7Yv9g58b6P5mnzdPFVXPK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-03-03", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 7, + "popularity": 0.9407 + }, + { + "id": 17772, + "title": "Shin Jeeg", + "originalTitle": "鋼鉄神ジーグ", + "overview": "Kenji Kusanagi, a high school student, becomes Kotetsushin Jeeg to fight the sudden reappearance of Haniwa Genjin from the Jamada Empire ruled by Queen Himika.", + "posterPath": "/yo3XBGmezNd6DdwjIVTP5sDZid6.jpg", + "backdropPath": "/4YvBgHKnLRynJl4N3B8LeeJU5ow.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2007-04-05", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 6, + "popularity": 0.9403 + }, + { + "id": 8805, + "title": "Ray the Animation", + "originalTitle": "RAY THE ANIMATION", + "overview": "If you have enough money, you can buy anything. So why wait for an organ you need to become available? Raised to be harvested for parts, Ray had already lost her eyes when renegade surgeon Black Jack rescued her. Now, ten years later, she has grown up to be a surgeon herself. And thanks to the unique artificial eyes she received as replacements, she has a reputation for performing incredible medical operations that no one else could even attempt. But unknown to any but a select few, her surgical endeavors are only part of a greater mission: to discover what happened to the other children she was raised with, and to find the men who stole the eyes she was born with and to bring them to justice.", + "posterPath": "/91FlffJhsXMX5my4tOSv4elJ4D0.jpg", + "backdropPath": "/97WD9x8jx3r0yEO2M7I70OYCzAx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2006-04-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 3.7, + "voteCount": 6, + "popularity": 0.9403 + }, + { + "id": 80464, + "title": "Holmes of Kyoto", + "originalTitle": "京都寺町三条のホームズ", + "overview": "Holmes, a young man whose family runs an antique shop in Kyoto, has the unique ability to read people and instantly distinguish genuine and high value antiques. When a local high school student, Aoi Maki, starts working alongside Holmes, together they begin to unravel the many mysteries surrounding the antiques brought to the shop.", + "posterPath": "/a8yXXdwaA09ybatErlrMKfyXJOd.jpg", + "backdropPath": "/juSdnxGR64fma152dE5DGXt0FVS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2018-07-10", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 12, + "popularity": 0.94 + }, + { + "id": 120470, + "title": "The Legend of Heroes: Trails of Cold Steel - Northern War", + "originalTitle": "The Legend of Heroes 閃の軌跡 Northern War", + "overview": "To protect her hometown from the Erebonian Empire and to distinguish herself from her grandfather’s disloyalty, Lavie enlists in the Northern Jaegers where she’ll do whatever it takes to carry out the mission. Now this rule breaker must form a platoon to embark on a dangerous recon mission into enemy lines—will her mission be a success?", + "posterPath": "/cAtZjluWUGDHXSTrnLFOKkkIYHi.jpg", + "backdropPath": "/A0638X8DojupL7zGof212Y0EyYa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-01-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 11, + "popularity": 0.9398 + }, + { + "id": 12483, + "title": "Descendants of Darkness", + "originalTitle": "闇の末裔", + "overview": "Asato Tsuzuki, a powerful yet troubled Shinigami, guides souls to the afterlife while solving strange cases—and wrestling with emotions both dark and tender.", + "posterPath": "/6JfFZ59IafP1Yu7KISrxwGbARBq.jpg", + "backdropPath": "/3DNmdeoTCfm9lfsLu2q0194SyHZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-10-02", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 12, + "popularity": 0.9379 + }, + { + "id": 82046, + "title": "Double Decker! Doug & Kirill", + "originalTitle": "DOUBLE DECKER! ダグ&キリル", + "overview": "The city state of Lisvalletta. Two suns rise above this city, and the people here live peaceful lives, but in the shadows, crime and illegal drugs run rampant. Among them is the dangerous, highly lethal drug \"Anthem\" which casts a dark shadow over the city. The SEVEN-O Special Crime Investigation Unit specializes in cracking down on Anthem. This unit operates in two-man \"buddy\" teams in what's called the \"Double Decker System\" to tackle the problem. Doug Billingham is a seasoned investigator, and joining him is Kirill Vrubel, whose abilities are mysterious and unknown.", + "posterPath": "/4d8fa9HcmHqFaHuuD813Ty2dgyb.jpg", + "backdropPath": "/wdYK6hre67NzWMXFQfLU0c1DsNi.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 35, + 9648, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2018-09-30", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 10, + "popularity": 0.9378 + }, + { + "id": 229801, + "title": "AMAIM: Warrior at the Borderline UltraSteel Ogre-Gear", + "originalTitle": "境界戦機 極鋼ノ装鬼", + "overview": "New entry in the Kyoukai Senki franchise.", + "posterPath": "/dciNrZQcYppzjv6bZzFbBx6Px4c.jpg", + "backdropPath": "/jzTZT4dExa8vjfWI0nt1kDAQUjh.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10768, + 10759, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "War & Politics", + "Action & Adventure", + "Animation" + ], + "releaseDate": "2023-08-10", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 5, + "popularity": 0.9359 + }, + { + "id": 25917, + "title": "Final Approach", + "originalTitle": "φなる・あぷろーち", + "overview": "Ryou Mizuhara is a normal high school student, living alone with his younger sister Akane. They were very happy together, at least until a mysterious girl crashes into their lives who introduces herself as Ryou's new fiancée.", + "posterPath": "/cdOVk6FhLdxB8SZ8BEl1ndhVgvC.jpg", + "backdropPath": "/sGdJzjqBaMLUwzOcsz9Qe6y3D5O.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2004-10-03", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.45, + "voteCount": 10, + "popularity": 0.9354 + }, + { + "id": 95073, + "title": "Maesetsu! Opening Act", + "originalTitle": "まえせつ!", + "overview": "The anime centers on four girls at the full bloom of their youth, working hard to achieve their dreams as they struggle valiantly. In Japanese entertainment, Maesetsu! refers to an introductory talk or explanation addressed to the audience before the broadcast of television programs, usually performed by assistant directors and particularly comedians in variety or comedy shows.", + "posterPath": "/3K4fMl8gycbpFvYACXxqTz3qYSb.jpg", + "backdropPath": "/9sxXwoUbUarEBRBu3w86wZLhqw2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-10-11", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 8, + "popularity": 0.9353 + }, + { + "id": 82929, + "title": "Anima Yell!", + "originalTitle": "アニマエール!", + "overview": "Hatogaya Kohane falls in love with cheerleading at the end of middle school, and begins a cheerleading club in high school with Arima Hizume and Saruwatari Uki. The positive, hard-working girls will be sure to cheer you up!", + "posterPath": "/hQvYGWgVMe5GS4OonlKUUPyhJWL.jpg", + "backdropPath": "/kiP8qpYI2n8C3bzmrMAYxbkela8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2018-10-07", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 8, + "popularity": 0.9349 + }, + { + "id": 80546, + "title": "Harukana Receive", + "originalTitle": "はるかなレシーブ", + "overview": "Oozora Haruka, who's just moved to Okinawa, is generally cheerful and optimistic, but there's one thing she feels insecure about: she's taller than most other girls. Her cousin Higa Kanata also has one hang-up: she had to quit her beach volleyball because she was too short. The mismatched cousins find themselves paired up as a beach volleyball team.", + "posterPath": "/gW0dFlGV6kkdKbnQjSeYXtwQZq.jpg", + "backdropPath": "/t2ptu22mA130rcnzqun2wCPT901.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-07-06", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.515, + "voteCount": 197, + "popularity": 0.9337 + }, + { + "id": 69980, + "title": "Armitage III", + "originalTitle": "アミテージ・ザ・サード", + "overview": "In the year 2046, a cop and his female android partner called Armitage, part of the latest android line known as \"class III\" models that look, act and feel human, investigate illegal manufacture of class III androids on colonized Mars.", + "posterPath": "/tUSuhszUrM6ffR1MRBphnpRtsyX.jpg", + "backdropPath": "/hHPaDCJe1NOMzuqTzKbrmmD9asf.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1995-02-25", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 40, + "popularity": 0.9316 + }, + { + "id": 25091, + "title": "Binchou-tan", + "originalTitle": "びんちょうタン", + "overview": "", + "posterPath": "/aomKEJOmlqfWlF6T0w2YftUFRW8.jpg", + "backdropPath": "/6oe7ZqOHFCZgSLB15le6XbrOheg.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2006-02-02", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 5, + "popularity": 0.9316 + }, + { + "id": 84667, + "title": "Endro!", + "originalTitle": "えんどろ~!", + "overview": "Naral Island, a continent with swords and magic in which humans and monsters coexist. The terrible Demon King lives there. In ancient times, the first-generation hero defeated the Demon King. Over the many successive generations since then, the Demon King has been resurrected, and the hero who opposes him has likewise reappeared. Girls attend a school for adventurers in order to defeat the Demon King when he appears again.\n\nThough a bit absent-minded, Yusha has the body of a hero. The holy elf Seyla's trouble never ends because she is too serious. The cheerful warrior Fai loves to eat. Mei is a quiet otaku magician. As the four girls aim to be in the hero party, they live relaxed fantasy lives and show no sign of defeating the Demon King no matter how much time passes.", + "posterPath": "/Auabukpp3CfMZ0UdTDHsRGkw3iW.jpg", + "backdropPath": "/jAm1E49a1n7yc5L1jpTxpH28MrF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2019-01-13", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.222, + "voteCount": 18, + "popularity": 0.9276 + }, + { + "id": 84665, + "title": "Grimms Notes: The Animation", + "originalTitle": "グリムノーツ The Animation", + "overview": "The story takes place in a world created by a beings known as \"Story Tellers.\" At birth, all inhabitants of this world are bestowed with a \"book of fate\" where all their lives are written in advance. However, rogue Story Tellers known as Chaos Tellers are writing bad events into people's books without them knowing. It is up to the holders of blank books of fate to seek out the Chaos Tellers and restore the world.", + "posterPath": "/2maz7RReUStEmwXV1svJhCwd8MW.jpg", + "backdropPath": "/GFFHKILaaNkcqzgvtK6WjKLsVt.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2019-01-11", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8.1, + "voteCount": 16, + "popularity": 0.9273 + }, + { + "id": 82182, + "title": "Queen Emeraldas", + "originalTitle": "クィーン・エメラルダス", + "overview": "In a far distant future a would-be master race seeks to dominate the galaxy. Against these merciless Afressians, mankind has just one hope: the mysterious female warrior know as Emeraldas. Driven by the tortured memory of her lost love, Emeraldas sails the Sea of Stars like a privateer of old, blasting forces of tyranny into atoms with an amazing array of futuristic weapons.\n\nBut when the devious Commander Eldomain kidnaps a group of innocent civilians, Emeraldas is drawn into a deadly trap from which even she may not escape! State of the art computer animation techniques bring Leiji Matsumoto’s famous creation to stunning life in Queen Emeraldas!", + "posterPath": "/9wiPnZ4VAQj3peLhl6KE6w7RNEE.jpg", + "backdropPath": "/akYY3Ijt4oSPpXShwJg3mNg8QF0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 37 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Western" + ], + "releaseDate": "1998-06-05", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 4.4, + "voteCount": 5, + "popularity": 0.9273 + }, + { + "id": 65053, + "title": "Bakumatsu Rock", + "originalTitle": "幕末Rock", + "overview": "Ryouma Sakamoto wants everyone to know about his passion for rock 'n' roll, so he roams around town with his electric guitar willing to show anyone he encounters that he's just as skilled as the famous Shinsengumi stars they admire. Unfortunately, Japan doesn't allow anything other than that group's Heaven's Songs, for writing or performing different types of music is forbidden and can lead to harsh consequences.\n\nAgitated by these strict rules and brainwashing, Ryouma does everything he can to show people that the music he loves will bring them the freedom they deserve. Along with his bandmates Shinsaku Takasugi and Kogoru Katsura, Ryouma works hard to find places for his rock 'n' roll group to perform. Refusing to back down until their music is accepted in Japan, the trio begin to realize that there's more to their passion than they had thought.", + "posterPath": "/kKe6peST0jMPtboflQUIJNhCwXx.jpg", + "backdropPath": "/s1eXUcyjzzU7BjC5I6HMH1rRpq5.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2014-07-02", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 0.9261 + }, + { + "id": 87445, + "title": "Senryu Girl", + "originalTitle": "川柳少女", + "overview": "At first glance Yukishiro Nanako seems like a normal high school girl, but she has a notable eccentricity: instead of speaking, she communicates only through written senryu poetry! This means she expresses herself only in 5-7-5 syllables. To most this might seem like an inconvenience, but for Nanako and her ex-delinquent bestie, Busujima Eiji, it adds to the experience of their high school lives as they run the Literature Club.", + "posterPath": "/4W2mdiVE6vKnSumIQyD3g2S7Mw0.jpg", + "backdropPath": "/oUjYTgiMwRRqNBpr9O6u9a0DdaN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 42, + "popularity": 0.9257 + }, + { + "id": 93818, + "title": "Stand My Heroes: Piece of Truth", + "originalTitle": "スタンドマイヒーローズ PIECE OF TRUTH", + "overview": "Newcomer Rei Izumi is joining the narcotics investigation unit of the Ministry of Health, Labour and Welfare. As a scout for the newly created STAND, she’s going to recruit the most unique of agents, investigators, and informants to make up a specialized team to safeguard the country. And their first mission is to discover the hazardous drug destroying the lives of innocent Tokyo citizens.", + "posterPath": "/v6t3OIRMdWJ1w26Cwkv2uJIRODE.jpg", + "backdropPath": "/oOJqI76MxOQvxMrVQYWemwitlaX.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-10-07", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.367, + "voteCount": 15, + "popularity": 0.9245 + }, + { + "id": 199966, + "title": "Pokémon: Hisuian Snow", + "originalTitle": "雪ほどきし二藍", + "overview": "The story of a boy named Alec and his encounter with a Hisuian Zorua. When he was younger, Alec's father taught him that people and Pokémon cannot live together. But Alec's interactions with the Zorua might offer a different lesson.", + "posterPath": "/oZPZWOTwNBkPLupIAA4JXDLFGH4.jpg", + "backdropPath": "/oT3WRNCnJ8dC2j0UmVU80lXRPik.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10759 + ], + "genres": [ + "Animation", + "Family", + "Action & Adventure" + ], + "releaseDate": "2022-05-18", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 11, + "popularity": 0.9236 + }, + { + "id": 60659, + "title": "Coppelion", + "originalTitle": "COPPELION", + "overview": "Many years after a great tragedy killed 90% of the people in Japan, three girls arrive in the ruins of Tokyo. In the devastated capital, their unusually clean clothes set them apart. But that's not the only strange thing about them - they also each wield supernatural powers. They call themselves “Coppelion,” and are on a mission to save the people of Tokyo.", + "posterPath": "/mPQuea0bhoh4oV9nRmJpisHUiZ0.jpg", + "backdropPath": "/rpqZ0W5FOJx6H1967bEb0x5x9CA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-10-02", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 38, + "popularity": 0.9213 + }, + { + "id": 15124, + "title": "Arc the Lad", + "originalTitle": "アークザラッド", + "overview": "For years, a clandestine organization known as White House has experimented in transforming adults and children into mutants known as Chimeras. Young Elk, master of the spirit of flame, has managed to escape and transform himself into an up-and-coming member of the Hunter's Guild, tracking down targets for money. Following a hunt involving a crazed hijacker on the run from White House, Elk meets Lieza, herself an escapee from a village attacked by White House and master of the docile dog-monster Pandit. Following the incident, Elk devotes himself to uncovering the motive behind it, and exacting revenge on the rouge known as Arc, who ostensibly led the attack on Elk's village and killed the young man's parents.", + "posterPath": "/jBGsAzjumIMpb1RVKFsCWLWXI4B.jpg", + "backdropPath": "/2XuLx1hWMMkYKXrHAevK70MwioU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Action & Adventure" + ], + "releaseDate": "1999-04-05", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 14, + "popularity": 0.9204 + }, + { + "id": 83102, + "title": "Girly Air Force", + "originalTitle": "ガーリー・エアフォース", + "overview": "The mysterious flying creatures known as Zai suddenly appear, and in order to fight the creatures, mankind creates fighter aircraft called \"Daughters,\" as well as the automatic fighting mechanism \"Anima,\" which are shaped like human girls. The story centers on a young man named Narutani Kei, who yearns to fly in the sky, and an Anima considered to be humanity's trump card, a girl name Guripen.", + "posterPath": "/15m3bZQaAEiTY24JcAAUqIBjE1Z.jpg", + "backdropPath": "/42uexLdi5OlKu4WYfENQJA8cvmo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-01-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 11, + "popularity": 0.9201 + }, + { + "id": 123200, + "title": "Lupin Shanshei", + "originalTitle": "ルパンしゃんしぇい", + "overview": "Lupin Shanshei (ルパンしゃんしぇい Rupan Shanshei) is a parody web animation done by FROGMAN with episodes that last for 3 and a half minutes. It was originally released online but then had a DVD/Blu-ray release with an exclusive pilot episode.", + "posterPath": "/gK6Kclnp1oRcQLZaOnbSWVjzECT.jpg", + "backdropPath": "/dnUTzMrash3TEA7zwqMw04xJx85.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Crime" + ], + "releaseDate": "2012-12-19", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.25, + "voteCount": 5, + "popularity": 0.9196 + }, + { + "id": 114936, + "title": "The Brave of the Sun Fighbird", + "originalTitle": "太陽の勇者ファイバード", + "overview": "Draias, the self-declared ruler of the universe decided to make Earth his base. Together with his ever-loyal subjects Zol and Shura, he carries out his misdeeds through the evil scientist Jango. To stop them, Fighbird and his team follow him to Earth. Fighbird disguises himself as Prof. Amano's assistant, Yuutaro Katori, and in doing so, is in for a culture shock as he learns how to live with his human hosts. It's the good, old, cliched battle of good-versus-evil on a mainly human scale as Prof. Amano settles a lifelong grudge match against his former colleague Dr. Jango, while Fighbird squares off with Draias and his men.", + "posterPath": "/fI8b4B6su8ddBYFvtYMFfg6HXkS.jpg", + "backdropPath": "/5s09yRAEFYZSGjmUg2gC3YYR40H.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10762, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Kids", + "Action & Adventure" + ], + "releaseDate": "1991-02-02", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 5, + "popularity": 0.9175 + }, + { + "id": 77237, + "title": "Wakakozake", + "originalTitle": "ワカコ酒", + "overview": "Murasaki Wakako is a 26-year-old OL that loves nothing more than delicious food and drink. Wakako's favorite thing to do for relaxation is to go off by herself after work and go to various places to eat and drink, even if she's never been there before. The moment Wakako is able to taste the pairing between the food she wants to eat and the perfect accompanying drink, the happy sound of \"Pshuuu\" leaves her lips. Now, then. Where shall we drink tonight?", + "posterPath": "/7gy2HIckhoTf67FbKVWClL4ihKj.jpg", + "backdropPath": "/7oHXdbso6p7xuNAjAKp5xHyjB7y.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-07-05", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 11, + "popularity": 0.9174 + }, + { + "id": 83238, + "title": "Ingress: The Animation", + "originalTitle": "イングレス", + "overview": "After scientists discover a mysterious substance that can influence human minds, two factions wage an all-out battle to control its awesome power.", + "posterPath": "/yaubBjPlDCkFLCreyg2migPBpcl.jpg", + "backdropPath": "/zQOjsBkOaK2qV9GCVWyh2Pug3EF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-18", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.406, + "voteCount": 32, + "popularity": 0.9154 + }, + { + "id": 45003, + "title": "Reporter Blues", + "originalTitle": "Reporter Blues", + "overview": "Reporter Blues is an Italian-Japanese cartoon/anime television series created by Marco Pagot and Gi Pagot and directed by Kenji Kodama. It consists of 52 half-hour episodes. The first season was aired in France in 1991. The second season was aired in 1996.\n\nThe show was co-produced by RAI and TMS Entertainment.", + "posterPath": "/7jQ9yRP16AyIJigxQnbUh20skEi.jpg", + "backdropPath": "/8GQDIbWhPQ2BJX52iT83D9NBMYJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 9648, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Mystery", + "Crime" + ], + "releaseDate": "1991-10-03", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 5, + "popularity": 0.9153 + }, + { + "id": 79328, + "title": "Dallos", + "originalTitle": "ダロス", + "overview": "In a near future, mankind has moved from a drained Earth to the Moon. Rebel acts of terrorism lead to conflicts with the Earth Federal Government. A mysterious entity called Dallos appears to restore hope.", + "posterPath": "/AchZOC2uR6lzo2R4dA5ThMTfhE7.jpg", + "backdropPath": "/omwXSDI932gI6yzf84ja0XdBbTv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1983-12-21", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 0.915 + }, + { + "id": 88045, + "title": "How Heavy Are the Dumbbells You Lift?", + "originalTitle": "ダンベル何キロ持てる?", + "overview": "Hibiki Sakura is your average high school girl, with a voracious appetite. Noticing her clothes tightening in lieu of her slowly expanding waistline she decides to look into enrolling in the nearby gym. There she runs into a girl from her grade named Souryuuin Akemi.\n\nAkemi, who has a muscle fetish tries to get Hibiki to enroll in the gym despite its high ratio of macho men. Thankfully a beautiful trainer, Machio, appears and unknowingly convinces her to enroll and start her quest to a great body.", + "posterPath": "/2P9UCxm8KYowc3phznLLhh40whJ.jpg", + "backdropPath": "/mKSx9ihTXCsJSzwxEAYjA7vIQuH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-07-03", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 265, + "popularity": 0.9141 + }, + { + "id": 71742, + "title": "Henkei Shoujo", + "originalTitle": "変形少女", + "overview": "Shorts about girls who transform into machines. The first episode focuses on Haru, a girl who transforms into a fighter jet while trying to catch a hat blowing away in the wind.", + "posterPath": "/jI1uUlw4BeLdHVEeVZ79oTTlghC.jpg", + "backdropPath": "/24GNBoS62UM09XyKKKt6ZA4FI4V.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2017-03-26", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 5, + "popularity": 0.9131 + }, + { + "id": 87364, + "title": "Nyanpire The Animation", + "originalTitle": "にゃんぱいあ The Animation", + "overview": "A poor little black kitten has been abandoned. It's so hungry that it can't even stand anymore. As one small life was about to perish, a vampire appeared from the darkness. The vampire gently picked up the kitten and gave it some of their own blood. The kitten suddenly began to change. It grew fangs and a pair of wings. This was the birth of Nyanpire.\n\n\"You've gained eternal life, but now you must live as a vampire forever. You'll have to find your own blood from now on.\"\n\nNyanpire was then taken in by a girl and her family and has been living a fun life as a house cat. But it still thirsts for blood...\n\n\"Give me-ow blood.\"", + "posterPath": "/5umA8KnzDs9EScroV6ovBI3VgCO.jpg", + "backdropPath": "/eUJGKgF5iU5JUMcF3R5ARRCLPam.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-07-06", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 7, + "popularity": 0.9121 + }, + { + "id": 214649, + "title": "BULLBUSTER", + "originalTitle": "ブルバスター", + "overview": "Mysterious creatures have been terrorizing an island, forcing locals to flee their once-thriving home. With government funds lacking for monster eradication, Tajima purchases the only construction company left and transforms it for the task. Thankfully, the brilliant Testuro Okino and his new robot, Bullbuster, come to their aid. But the team is on a tight budget. Can they save the island?", + "posterPath": "/diBx2Rlbjyy85DQ4n8eUZUwRebc.jpg", + "backdropPath": "/huggbyw2Mw31ofJZhEF5pQIbp9S.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2023-10-04", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 6, + "popularity": 0.9097 + }, + { + "id": 44887, + "title": "Tetsujin 28", + "originalTitle": "鉄人28号", + "overview": "In post-WWII Japan, Dr. Shikishima has built up Shikishima Industries to be a technological powerhouse, working on developing robots. However, at the heart of their success lurks a dark secret from the war, something that cost the life of Dr. Kaneda, Shikishima's mentor. Now Kaneda's son, Shoutarou, is about to learn the truth, and it will change him forever.", + "posterPath": "/2s4dxdgYBXinDTSK2XPOWz9nxVB.jpg", + "backdropPath": "/2PLK5n5Mvkf3aG2kGFVFZlOc905.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16, + 10759 + ], + "genres": [ + "Drama", + "Animation", + "Action & Adventure" + ], + "releaseDate": "2004-04-08", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 0.9072 + }, + { + "id": 215956, + "title": "The Gene of AI", + "originalTitle": "AIの遺電子", + "overview": "The future is here, and a new species lives among people: humanoids. These robotic beings are highly sentient like man and suffer from unique ailments. Thankfully, Dr. Hikaru Sudo can help. He vows to treat the humanoids even by means that may be considered illegal, causing him to lead a double life. But when strange diseases emerge due to this coexistence, ethical lines become blurred.", + "posterPath": "/eugTSmFETFdYJdZpgFDBAbCBXG3.jpg", + "backdropPath": "/eK2qIiZRgrtj7LLRRyxYCeNmnm2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 18, + "popularity": 0.9059 + }, + { + "id": 87463, + "title": "Joshi Kausei", + "originalTitle": "女子かう生", + "overview": "A silent high school girl anime that's still cute, even if no one talks! This is a story about three girls and their fun high school life, centering around the unfortunate beauty, Momoko, the cool girl with glasses, Shibumi, and the gentle little Mayumi. Fun alone, fun with all. The daily lives of slightly dumb yet cute high school girls.", + "posterPath": "/hXoquJVPVojqBi78eecr2jLWXaM.jpg", + "backdropPath": "/78pA8Pwar1IOJTEBl9z4s4uJRmH.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-04-06", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 12, + "popularity": 0.9059 + }, + { + "id": 74956, + "title": "Thermae Romae", + "originalTitle": "テルマエ・ロマエ", + "overview": "The story is a comedy about Lucius, an architect of public bath houses in ancient Rome, who time-travels to various modern-day baths in Japan. The author explores the two cultures in the world \"that have loved baths the most: the Japanese and the Romans.\"", + "posterPath": "/jat9rzHYLc0PRfKBCbh8yJPRP5l.jpg", + "backdropPath": "/bU8cXuPvTqw0uqm1HbyZwVI1fY5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-01-12", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 6, + "popularity": 0.905 + }, + { + "id": 72500, + "title": "Action Heroine Cheer Fruits", + "originalTitle": "アクションヒロイン チアフルーツ", + "overview": "The \"local heroine fighter\" of a certain city became popular and a national star. Because of this, \"local heroines\" debuted in various other places, and their action live events became a hit trend nationally. In Hinano City, high school girl Misaki Shirogane and other girls become local heroines (at the urging of Misaki's aunt, the prefectural governor) and vow to produce action live events.", + "posterPath": "/zt0VKLhzbTCUHESBvo6RXOgtvVS.jpg", + "backdropPath": "/v7od0Tzsing9Dm1fD4giGVn9syK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-15", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 9, + "popularity": 0.9032 + }, + { + "id": 22131, + "title": "Prism Ark", + "originalTitle": "プリズムアーク", + "overview": "The Sablum Empire has been attempting to take over the kingdom of Windland for many years, and are now plotting with the mercenaries Sister Hell and Darkness Knight to start a new offensive using powerful magical beings called Angels.\n\nHyaweh, a carefree yet talented swordsman, and Priecia, who just might be the lost princess of Windland, are enrolled at the Knight's Academy in Windland to hone their skill at swords and sorcery. There they meet many friends and allies who can help them protect their homeland from the impending invasion.", + "posterPath": "/lL86HOpgMm7UVTOVPblsJpVG84a.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama", + "Comedy" + ], + "releaseDate": "2007-10-08", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 3.8, + "voteCount": 5, + "popularity": 0.9027 + }, + { + "id": 13629, + "title": "The Legend of Stars", + "originalTitle": "光の伝説", + "overview": "Schoolgirl Hikari has two loves: rhythmic gymnastics and Ohishi, a schoolmate who is one of the best gymnasts in his league. Natsukawa, Hikari's childhood friend, plays in a band called Mr.D. Over the years, he has come to love Hikari very deeply. Will Hikari gain Ohishi's love? Or will Natsukawa win her over?", + "posterPath": "/y43mpTrUmYvhAKu57Az0GXkFUza.jpg", + "backdropPath": "/bOKEoWhZfYNye0UntrFGVUx3mDy.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1986-05-03", + "releaseYear": "1986", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 5, + "popularity": 0.9024 + }, + { + "id": 73842, + "title": "Manabi Straight!", + "originalTitle": "がくえんゆーとぴあ まなびストレート!", + "overview": "The year is 2035 and schools have been suffering due to declining birthrate, having forced many of them to close. An energetic girl named Manami Amamiya transfers to a new school where she quickly becomes the student council president and starts to bring back vigor in the students' lives.", + "posterPath": "/kfbfOuMTiNPepY6WkSyOsR8rx76.jpg", + "backdropPath": "/g1mwDFCo9WElVDYcwY8cpiHBI4Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-01-08", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 0.9019 + }, + { + "id": 83621, + "title": "Tamayura", + "originalTitle": "たまゆら", + "overview": "As a little girl, Fuu Sawatari’s father taught her to love photography. They took pictures everywhere they went. But after he passed away, seeing those photographs only served as a reminder of her loss, so she locked them away to be forgotten. Years later, the pictures remind Fuu of all the happy memories of her father that she will carry with her forever.", + "posterPath": "/9q4V0FVwoVK9qo7d3aKLAzMNXk.jpg", + "backdropPath": "/vIE8OuvqHU1TAKRRKZ0dWhZfPGP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2010-09-06", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 5, + "popularity": 0.9018 + }, + { + "id": 68089, + "title": "Scorching Ping Pong Girls", + "originalTitle": "灼熱の卓球娘", + "overview": "Ever since their champion was defeated, the world of girls' junior high ping pong has been in turmoil. Koyori is the new smirking transfer student at her junior high and she's ready to shake up girls' ping pong.", + "posterPath": "/uUJKEN2OmhsYzMjb1YBosOG7R3s.jpg", + "backdropPath": "/z7TMSyyxJllOW8ecZXYl3DmbsJy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-04", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.313, + "voteCount": 8, + "popularity": 0.9018 + }, + { + "id": 44519, + "title": "Happiness!", + "originalTitle": "はぴねす!", + "overview": "", + "posterPath": "/ApoHToGH8nsRirNh7pqSGL99bfr.jpg", + "backdropPath": "/uZswzhdvBQlkbli8mycASE328BC.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 10765, + 16, + 35 + ], + "genres": [ + "Drama", + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2006-10-05", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 5, + "popularity": 0.9016 + }, + { + "id": 43180, + "title": "I\"s Pure", + "originalTitle": "アイズピュア", + "overview": "Seto Ichitaka has a crush on Yoshizuki Iori, a girl in his class who has become so popular she now has her own fan club at school. But only a miracle could make him be with her, since the day he first saw Iori-chan, Ichitaka has been too shy to even talk to her. This miracle happened and now he and Iori are working together on the Freshmen Welcoming Party. It seems that things start to look bright for Seto, but then a special childhood friend is coming for a visit...", + "posterPath": "/i09Z0FDPNH9G4bMGJ4v59Wib90l.jpg", + "backdropPath": "/fTDX8bjUuykMf8z28BDoxUOK6TA.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2005-12-09", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 5, + "popularity": 0.8994 + }, + { + "id": 38057, + "title": "Togainu no Chi: Bloody Curs", + "originalTitle": "咎狗の血", + "overview": "After being devastated in the third World War (known as The Third Division), Japan was divided in two. Several years after the end of the war, a crime organization called Vischio has taken control of the destroyed city of Toshima (formerly Tokyo, Japan's capital city), where they are holding a battle game known as Igura.", + "posterPath": "/8JFSAM614jSDSn3v5k35Hcidbce.jpg", + "backdropPath": "/atuFMe8NIas4ZKmwutpTE541l3b.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2010-10-07", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 6, + "popularity": 0.8993 + }, + { + "id": 35409, + "title": "Tekkaman: The Space Knight", + "originalTitle": "宇宙の騎士テッカマン", + "overview": "Tekkaman: The Space Knight is an anime produced by Tatsunoko Productions in 1975. A short-lived English adaptation aired in the US in 1984.\n\nTwo decades later, it was followed by the much more popular Tekkaman Blade, which was dubbed in the U.S. by Saban as Teknoman. The original series is currently streaming in North America via Yomiura Group's planned Anime Sols video service, as of spring 2013. However, due to the failure to successfully crowd-fund it for DVD, the show will soon be removed from the site, with the possibility of considering a crowd-funding opportunity in the future.", + "posterPath": "/twjSOqGAfnkh3Z1JflsBQkPv1Qk.jpg", + "backdropPath": "/hPxT3ligqXhkeoeTi8SohhvvGUi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1975-07-01", + "releaseYear": "1975", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 5, + "popularity": 0.8981 + }, + { + "id": 60993, + "title": "JINSEI - Life Consulting", + "originalTitle": "人生相談テレビアニメーション「人生」", + "overview": "When bespectacled Yuki Akamatsu joins his school’s 2nd Newspaper Club, he finds himself caught in the crossfire between three pretty panelists assigned to the Life Advice column. Rino Endo has a mind for science, Fumi Kujo loves literature, and Izumi Suzuki covers the world of sports. If students have questions that need answers, these are the girls to ask, but cute as they may be, these panelists never seem to agree on anything! Needless to say, navigating life in the 2nd Newspaper Club is gonna be more than poor Yuki bargained for!", + "posterPath": "/qqLOaOxGI3L8InijYL44FXjjsIP.jpg", + "backdropPath": "/5iuH6AwlIqD9Fg2vpsVrWNftqCi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 8, + "popularity": 0.898 + }, + { + "id": 69296, + "title": "Minami Kamakura High School Girls Cycling Club", + "originalTitle": "南鎌倉高校女子自転車部", + "overview": "Hiromi Maiharu has moved from Nagasaki to Kamakura to attend high school. Her new residence means a new school and new friends, and all of her exciting new encounters from day to day happen when she's on her bicycle! Kamakura is the stage for these high school girls who have devoted their youth to cycling!", + "posterPath": "/mGCq3vxMkWN3FyTnoqVzE3jGK2F.jpg", + "backdropPath": "/nMbbvJFOCeNEnGvOR5mzjrQyIbn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-01-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 7, + "popularity": 0.8972 + }, + { + "id": 24913, + "title": "The Gokusen", + "originalTitle": "ごくせん", + "overview": "Kumiko \"Yankumi\" Yamaguchi enters Shirokin Gakuen Private School to become a math teacher. She's assigned as the homeroom teacher for class 2-4, populated by a gang of delinquents. At first, the class tries everything to rattle her cage, but to no avail. In a short period of time, Yankumi gains the respect of the class. But what the school doesn't know is that she's the heir to the Oedo Group, a powerful Yakuza clan. So while Yankumi struggles to excel in her career as a teacher, she must also keep her Yakuza background a secret.", + "posterPath": "/gjkXdEvuQmV7fjSuB0EddS7hw7Z.jpg", + "backdropPath": "/2yVRSkOfEVBxzDdJqsMYUwgaLJj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "2004-01-06", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 10, + "popularity": 0.8969 + }, + { + "id": 89811, + "title": "Otona Joshi no Anime Time", + "originalTitle": "大人女子のアニメタイム", + "overview": "A series of animations based on prize-winning short stories for women.", + "posterPath": "/ocliC72vdFMP8m84K08AC3Z5rVb.jpg", + "backdropPath": "/oHGSCiBNI2U8PfERq9u5A3ibom3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2013-03-10", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 5, + "popularity": 0.8929 + }, + { + "id": 87053, + "title": "The Heroic Legend of Arslan: Age of Heroes", + "originalTitle": "アルスラーン戦記", + "overview": "As an unnaturally heavy mist descends on the battlefield, King Andragoras and his most valued officers confer among the bodies of dead and dying soldiers. When Daryoon, a young but highly skilled officer, voices his reluctance to send men into battle under these conditions, the king, unstable and enraged, banishes him.\n\nNow, Daryoon's new mission is to insure the safety of the King's only son, Prince Arislan. Daryoon and Prince Arislan set off on a quest of their own, but they can't succeed alone. They must convince both the Lord Narsus and his companion, the archer Elam, to join them in their quest to somehow help the soldiers win the war.\n\nNow a group of only six they must somehow overcome an enemy of 300,000 soldiers! These unlikely soldiers have fate on their side, so anything can happen!", + "posterPath": "/vhSV1vHO84TVXmEnu80qGhQnuuh.jpg", + "backdropPath": "/pPG0anTMy67kswaA6Razqo82A9H.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1991-08-17", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 9, + "popularity": 0.8925 + }, + { + "id": 46040, + "title": "Natsuiro Kiseki", + "originalTitle": "夏色キセキ", + "overview": "Waking up in the morning, going to school, spending time with friends. These make up the days of four friends. They experience fun and sad things as well, and these days seem to go on forever, until one summer, a wonder happens. This is a story of four girls: Natsumi, a cheerful and frank girl, Saki, who is perfect in both studying and sports, Yuka, who is a fan of the idol group Four Seasons, and Rinko, who loves music. This warm yet refreshing summer-coloured wonder will surely carry you along...", + "posterPath": "/aeqQIiKgdFNzggddnPgS1xF22ir.jpg", + "backdropPath": "/tzY2E2k7ObbN5OkgzkrQY5pkgn5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-06", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 8.6, + "voteCount": 5, + "popularity": 0.8905 + }, + { + "id": 66229, + "title": "Z/X: Ignition", + "originalTitle": "ゼクス", + "overview": "The story is set in the not-so-distant future. Five \"Black Points\" suddenly appeared around the world as portals to parallel worlds. Immediately after, strange creatures began their invasion from these portals. These creatures are the inhabitants of five worlds—the same worlds in different timeframes. In order to ensure their own future timeframe survives, each of the five invasion forces battle to wipe the other future timeframes out. The key is one card-shaped device.", + "posterPath": "/oeUCXn41raVtge7wT3BAw0gN3El.jpg", + "backdropPath": "/m0pHPdxiyjHxsR2YUppqntSVUVa.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2014-01-10", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 19, + "popularity": 0.8897 + }, + { + "id": 29241, + "title": "Arcade Gamer Fubuki", + "originalTitle": "アーケードゲーマーふぶき", + "overview": "Fubuki is a girl whose only goal in life is to be the best...at arcade games! She's not much good at sports, but when it comes to arcades, Fubuki's a whiz with special super-powers. When an evil organization steals her powers to gain world domination, Fubuki's dream of winning the World Championship is in danger! She and her friends must battle the wackiest bunch of video game villains ever in a quest to make playing games fun again.", + "posterPath": "/hjMuJYL2Bjga73Sv3hGjCRI4WZJ.jpg", + "backdropPath": "/kRTvHI7DLHkufXS9RjMRKlgY8TT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2002-02-25", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 7, + "popularity": 0.8875 + }, + { + "id": 72300, + "title": "Hina Logic: From Luck & Logic", + "originalTitle": "ひなろじ~from Luck & Logic~", + "overview": "On a spring day when the cherry blossoms have started to fall, the naïve princess of a small country, Lion begins her days at a school in Hokkaido. The school houses a special facility run by ALCA that trains Logicalists who protect the peace of the world. Lion has a lot of unique classmates in Class 1-S, including Nina, a Logicalist. This is the story of the energetic and adorable days the Logicalists-in-training spend together. It’s time to Trance!", + "posterPath": "/4fG6EUkCu7tDRmwZsWVreSjiWHm.jpg", + "backdropPath": "/q7hYONloVCG0AVvzDpzrfpc5C5p.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-06-24", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 0.8866 + }, + { + "id": 70643, + "title": "A Foreign Love Affair", + "originalTitle": "異国色恋浪漫譚", + "overview": "The young leader of the Oomi group, Ranmaru, was forced to marry Kaoru, the daughter from another group. The couple went to Italy, and had their wedding on a ship. However, neither of them actually liked the marriage, and Ranmaru was kicked out by his newlywed wife Kaoru on their first night. Al (Alberto), an Italian man on the ship, took an interest in Ranmaru, and the story revolves around the romance between the two men, Ranmaru and Al.", + "posterPath": "/tM0Pb9Xb7Sqa7IgyXvJBJaqgqVd.jpg", + "backdropPath": "/fNOXo7aYTXkFp2erAo9XgBgORux.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-12-21", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 9, + "popularity": 0.8866 + }, + { + "id": 51476, + "title": "Leviathan: The Last Defense", + "originalTitle": "絶対防衛レヴィアタン", + "overview": "The fantasy world of Aquafall is abound with water and greenery, and populated by dragons and fairies. Meteorites of evil creatures threaten all living things on the planet. The fairy Syrup assembles the Aquafall Defense Force, with three girls of the dragon clans as recruits. The story follows Syrup and the dragon girls Leviathan, Bahamut, and Jörmungandr as they work together to battle enemies and grow up.", + "posterPath": "/1kNKmSR9BJUpjrGMcgG3coIGwkp.jpg", + "backdropPath": "/ppakb03zOIqblmyz979yjkKfYfK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2013-04-06", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 46, + "popularity": 0.8845 + }, + { + "id": 66298, + "title": "Wagamama High Spec", + "originalTitle": "ワガママハイスペック", + "overview": "Protagonist Kouki Narumi is a high school student who also writes a manga serialized in a certain weekly publication. Kaoruko Rokuonji is the student council president and illustrator for a popular manga. One day, just as Kaoruko happens to be trying to recruit a male student council member, she learns Kouki's true identity and the fact that it's his manga she has been illustrating. Kouki agrees to join the student council under the condition that she keeps his identity secret. Then his younger sister, Toa Narumi, and her friend Mihiro Miyase also join the student council...", + "posterPath": "/2pBQMEGVzHrA5Hg4d9qXyY72V0F.jpg", + "backdropPath": "/zYDbfxi2fPPxmZoO9wZWZx8ybY2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-12", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 8, + "popularity": 0.8812 + }, + { + "id": 72514, + "title": "Elegant Yokai Apartment Life", + "originalTitle": "妖怪アパートの幽雅な日常", + "overview": "The high school freshman Yūshi Inaba has to look for new place to live after his high school dormitory burnt down. Having no parents and wanting to live independently from his uncle, he eventually finds a cheap apartment for 25,000 yen called Kotobuki-sō, only to find out that the place has human and supernatural creatures such as ghosts, yōkai, and mononoke living together. There, Yūshi's new daily life begins.", + "posterPath": "/burzxb0f8wwDAL9nzPa4BMlX7Id.jpg", + "backdropPath": "/39xdrSdEiMQhVYSR3AjmZgzRBj7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-07-03", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 6, + "popularity": 0.8783 + }, + { + "id": 223565, + "title": "Power of Hope ~Precure Full Bloom~", + "originalTitle": "キボウノチカラ~オトナプリキュア‘23~", + "overview": "One of the anime projects to commemorate the 20th anniversary of the Precure franchise, this sequel will show Nozomi Yumehara and other characters from Yes! Precure 5 GoGo! and Precure Splash Star as grown-ups.", + "posterPath": "/gc4RWy87vSo1wX8h4quCUqk0n1K.jpg", + "backdropPath": "/rs6yv56ysFJM3CnaTi37keBonvT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765, + 35, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Comedy", + "Drama" + ], + "releaseDate": "2023-10-07", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 8, + "popularity": 0.8753 + }, + { + "id": 22824, + "title": "If I See You in my Dreams", + "originalTitle": "夢で逢えたら", + "overview": "Virgin 24 year-old Fuguno Masuo is desperately in love with Shiozaki Nagisa, a 22 year-old kindergarten teacher. He is popular among the women, but he truly only has eyes for Nagisa. However, he is a clumsy, thickheaded and gentle man and gets into trouble a lot. He ends up in situations where it is easy for poor Nagisa to misinterpret what really happened.", + "posterPath": "/A3lIh4SoN1aKN1Sl4Oy7fLTUZ3Z.jpg", + "backdropPath": "/8MUf35hI6KONTnUah7adZ2lDwkw.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1998-11-30", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.444, + "voteCount": 27, + "popularity": 0.8746 + }, + { + "id": 131899, + "title": "Labyrinth of Flames", + "originalTitle": "炎のらびりんす", + "overview": "Meet Galan, a Russian spastic geek who`d do anything to be a real, live samurai. But that`s just an impossible dream... or is it? When his friend Natsu, who is a successor of Japanese emigrants family, gives him the gift of an ancient sword, strange events unfold, and even stranger people drop out of the sky to attack. Now Galan must overcome his ineptitude and join a bunch of beautiful women in a wacky romp through a kingdom that time forgot. Hey, what could be better?", + "posterPath": "/7V6jJXiVe2lUd7YzZRLckUkR27q.jpg", + "backdropPath": "/qB2jCMRZdgbyMUWj7O13ICTfHMC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2000-09-25", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 9, + "popularity": 0.8736 + }, + { + "id": 113384, + "title": "Hareluya II Boy", + "originalTitle": "HARELUYA II BØY", + "overview": "Hareluya Hibino has one ambition in life: to conquer the entire world! Despite his tough exterior, he’s not a bad person, and when push comes to shove, he’ll do his best to help those in need. Together with aspiring painter Kiyoshiro, Hareluya will take on whatever curveballs life may throw his way.", + "posterPath": "/nl2ruU95EZAIvAvNRssXMVgwBvl.jpg", + "backdropPath": "/oVP8WPgCoYihaJPuLw7mWJHlAmd.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1997-04-08", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 5, + "popularity": 0.8731 + }, + { + "id": 44621, + "title": "Sakura Diaries", + "originalTitle": "桜通信", + "overview": "A Keio University (one of the top three colleges in Japan) exam candidate, Touma Inaba, is interrupted when a cute young girl, Urara Kasuga, arrives at his hotel room door. She later turns out to be his cousin who he barely remembers from his childhood. Urara, who had felt something special for him (an other-than-cousinly-love), invites Touma to live with her since he has no place to stay other than the hotel room. Before taking the test, Touma meets Meiko Yotsuba, a beautiful, sophisticated woman also trying to get into Keio. Meiko gets into Keio but Touma does not, due to a cold Urara had given him shortly before. Although he did not make it, he pretends he does to earn the respect of Meiko. Touma is caught up in a love triangle with Urara and Meiko, while struggling to keep Meiko believing he's really a Keio student and still be there for Urara at the same time.", + "posterPath": "/mVwiaBMrvHHe8G9iGoz437gihud.jpg", + "backdropPath": "/oA26Or2eS5Usqgyebib4dMqkfH6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "1997-05-21", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 9, + "popularity": 0.8714 + }, + { + "id": 43191, + "title": "Sorcerer on the Rocks", + "originalTitle": "シーバス1-2-3", + "overview": "Sorcerer on the Rocks A.K.A. Chivas 1-2-3 is a spin-off of Sorcerer Hunters. As to why the name was change from Chivas 1-2-3, ADV Films didn't want to get into a legal fight with the Whiskey company of the same name. So, the name of the OVAs and the first name of the hero has been changed for the English Dub. The Original Story by Satoru Akahori and Miku Yuki, and was published in Media Works' MONTHLY DENGEKI COMIC GAO!", + "posterPath": "/bQ3g3iSTP6KYQLyW6hfTSYayW0Z.jpg", + "backdropPath": "/iyJ2qLThjYwf8HqRNE6JB4ar0pl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-08-21", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 5, + "popularity": 0.8713 + }, + { + "id": 110207, + "title": "Gekidol", + "originalTitle": "ゲキドル", + "overview": "Five years after a mystifying disaster decimates cities across the globe, Seria Morino receives an invitation to join Alice in Theater, a small stage troupe that takes it upon themselves to brighten the world through their performances.", + "posterPath": "/jXEGDekOfGsDpGWj29FkTzC5lgE.jpg", + "backdropPath": "/kMhir3hB3dFw7zkNRtvgXaeMqdH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2021-01-05", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 2.8, + "voteCount": 6, + "popularity": 0.8708 + }, + { + "id": 101562, + "title": "CARDFIGHT!! VANGUARD EXTRA STORY -if-", + "originalTitle": "カードファイト!! ヴァンガード外伝 イフ-if-", + "overview": "The series will explore an alternate universe to the main series, and will focus on Kouji Ibuki, an antagonist in the Cardfight!! Vanguard Movie: Neon Messiah, and Suiko Tatsunagi.", + "posterPath": "/835gezzJ0OV5LnJ3NErjb04gCkU.jpg", + "backdropPath": "/9FItL66bSKD1JMcZXAxzBnXaMAn.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16 + ], + "genres": [ + "Drama", + "Animation" + ], + "releaseDate": "2020-04-30", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 5, + "popularity": 0.8672 + }, + { + "id": 22553, + "title": "Emily of New Moon", + "originalTitle": "風の少女エミリー", + "overview": "Based on the Emily of New Moon novel by Lucy Maud Montgomery. Emily is an orphan who gets sent to live with her relatives on Prince Edward Island, after her father dies. In New Moon she lives with her Aunt Elizabeth, Aunt Laura, and Cousin Jimmy, and learns to adapt with the help of her imagination and new friends.", + "posterPath": "/zcyUkWxrdASVfveu6mFfcUhRrb6.jpg", + "backdropPath": "/2cX752soL8tcah7AsjjuaqNOqry.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2007-04-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 8, + "popularity": 0.8654 + }, + { + "id": 36523, + "title": "Poor Sisters Story", + "originalTitle": "貧乏姉妹物語", + "overview": "Binbō Shimai Monogatari is a manga series by Izumi Kazuto. It has been adapted into an anime series by Toei Animation and was aired in Japan from June 2006 until September 2006.", + "posterPath": "/vgzRbyaUkemyndhyouWRmrf8TeE.jpg", + "backdropPath": "/bnAHD5JRY1RmOIMYojd9X0q4Y6Q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2006-06-30", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 6, + "popularity": 0.8639 + }, + { + "id": 73501, + "title": "Le Portrait de Petite Cossette", + "originalTitle": "コゼットの肖像", + "overview": "Eiri works at his uncle's antique shop, and one day stumbles across a glass. Upon touching the glass, he receives visions from what he finds out to be a girl, Cossette, haunting the glass. She's been searching for over 250 years for someone who could see her, and now she needs his help.", + "posterPath": "/auZdNEDCeHfSfVXX971WH4M70a6.jpg", + "backdropPath": "/ph1e3qNgEU83AheixqslnKGhuQS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2004-04-11", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 5.525, + "voteCount": 20, + "popularity": 0.8627 + }, + { + "id": 83770, + "title": "Hey, Class President!", + "originalTitle": "生徒会長に忠告", + "overview": "High-strung Chiga finds himself questioning the results when his judo team partner, Kokusai, is elected class president of their all-boys school. A president, of course, needs a running mate - and just like that, Kokusai appoints Chiga to be his vice-president! How did a slowpoke like Kokusai win an election, anyway?! It quickly becomes clear that Chiga's major vice-presidential duty will be to keep Kokusai out of harm's way, but is he up to the task?", + "posterPath": "/hipGYurGLtUcAM9PTogQAxtqtDN.jpg", + "backdropPath": "/1sm2VSDtHEPKYaKibn94EkoJVgI.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 18, + 16 + ], + "genres": [ + "Comedy", + "Drama", + "Animation" + ], + "releaseDate": "2009-11-27", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 4.4, + "voteCount": 7, + "popularity": 0.8606 + }, + { + "id": 12697, + "title": "Dragon Ball GT", + "originalTitle": "ドラゴンボールGT", + "overview": "Ten years have passed since Goku left his friends and family to hone his skills. But Goku soon finds himself helpless against the mystical power of the Dragon Balls and an accidental wish made by the devious Emperor Pilaf. The wish; that Goku once again become a child! Goku, together with Trunks, and his own granddaughter Pan, blast off into the outer reaches of space in search of the mysterious Black Star Dragon Balls. But these Dragon Balls have a fatal secret: if not collected within one year Earth will be destroyed.", + "posterPath": "/rLHhDpv6rrhuzBjNzaMRNv2fng.jpg", + "backdropPath": "/aJOlYXjxb5IvnTsO4I1tmFpC7GH.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-02-07", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.689, + "voteCount": 2009, + "popularity": 0.8601 + }, + { + "id": 44971, + "title": "Hitsuji no Uta", + "originalTitle": "羊のうた", + "overview": "Kazuna’s family has a history of suffering from a disease that creates an uncontrollable vampire-like thirst for blood. Knowing none of this, Kazuna was sent to live with the Eda couple as a child. As the sickness begins to show signs of being present within himself, he comes into contact with his older sister, Chizuna, who has been suffering from it since early childhood. Knowing that the sickness incurs a heavy weight upon those that suffer from it, Chizuna tries to ease her brother’s burden, to help him learn to control his urges, but…", + "posterPath": "/rMRIKJEeqsYaWrcmUZ6iR4IMPLo.jpg", + "backdropPath": "/b3Epjgs5BVJr0bTbTtwYofg1JGO.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16 + ], + "genres": [ + "Drama", + "Animation" + ], + "releaseDate": "2003-05-25", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 4.643, + "voteCount": 7, + "popularity": 0.8571 + }, + { + "id": 99042, + "title": "Digimon Adventure 20th Memorial Story", + "originalTitle": "デジモンアドベンチャー20th メモリアルストーリー", + "overview": "A crowdfunding campaign opened for the \"Digimon Adventure Memorial Story Project.\" It was for 5 shorts that included a prequel of the upcoming film and side stories about the daily lives of the Digimon characters and their partners, which are stories that did not make it into the film.", + "posterPath": "/gsKlxSkuiLGCL9tq6SE7q1IAaxM.jpg", + "backdropPath": "/gKj4eSnVXITKoGJDm5mTX8OmuRc.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-11-22", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 6, + "popularity": 0.8567 + }, + { + "id": 45070, + "title": "Pure Love Gang of Shonan", + "originalTitle": "湘南純愛組!", + "overview": "Follows the adventures of Eikichi Onizuka and Ryuji Danma together known as Oni-Baku, Shonan's strongest fighting duo as they try to lose their virginities, while trying to survive through high-school. The series is considered the prequel to GTO showing Onizuka as a teenager before he became the world's greatest teacher", + "posterPath": "/oMfKwbeL5Qm1r0gqWEo3F0qbp8s.jpg", + "backdropPath": "/ipes7WoMKixBiOvhGNQAcQ8XhyG.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1994-01-21", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 5.611, + "voteCount": 18, + "popularity": 0.8564 + }, + { + "id": 96740, + "title": "Super Dimension Century Orguss 02", + "originalTitle": "超時空世紀オーガス02", + "overview": "ORGUSS 02 is a six-part anime series made in 1993-94 as a sequel to \"Super Dimension Century Orguss\"", + "posterPath": "/y6T4e3sqaAkCjFLCdk6ZG3ZMZCq.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "1993-12-05", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 0.8555 + }, + { + "id": 101848, + "title": "Babel II: Beyond Infinity", + "originalTitle": "バビル2世", + "overview": "Koichi is an ordinary youth given extraordinary powers to fight a shadowy underworld of renegade psychics. Hidden in a forgotten desert lies the tower of Babel, created by an unknown force. As its successor, Koichi summons three psychic guardians and challenges Yomi, Leon and any other renegades brave enough to stand in his path.", + "posterPath": "/fKmPCyafoZrmbD12WUhqLP47sdq.jpg", + "backdropPath": "/6vmOcE4F0Vn7lz8YS7DSqIfze5r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-10-05", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 0.8553 + }, + { + "id": 58606, + "title": "Bannertail: The Story of Gray Squirrel", + "originalTitle": "シートン動物記 りすのバナー", + "overview": "The story of Banner, a young orphaned squirrel raised by a kindly mother cat, and his adventures in the forest.", + "posterPath": "/lNuq5gPw41xRMzfyl6y9CMB1Fsx.jpg", + "backdropPath": "/cxgK46zRMi1DKfVTwRFSaNbDrbz.jpg", + "mediaType": "tv", + "genreIds": [ + 10762, + 10751, + 16 + ], + "genres": [ + "Kids", + "Family", + "Animation" + ], + "releaseDate": "1979-04-07", + "releaseYear": "1979", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 9, + "popularity": 0.8521 + }, + { + "id": 74090, + "title": "Ghost Talker's Daydream", + "originalTitle": "低俗霊DAYDREAM", + "overview": "Ever since she can remember, Saiki Misaki has had the ability to talk to ghosts. She works as a special consultant for the city's secret division that deals with supernatural cases. She also works as a dominatrix at an S&M club, where she has gained a cult following for her extraordinary ability to tame men's twisted desires. These special talents, however, forbid her to lead an ordinary life. Every day she has to deal with overzealous fans/stalkers, and worse, lost spirits in desperate need of help.", + "posterPath": "/IYz5GtEEqTslfYtGLBUR5t8Nyh.jpg", + "backdropPath": "/rbs71nc90qtmhaEsepimg5YmPyk.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2004-06-25", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 8, + "popularity": 0.852 + }, + { + "id": 72503, + "title": "DIVE!!", + "originalTitle": "DIVE!!", + "overview": "The series revolves around the Mizuki Diving Club (MDC), which is on the verge of closing down after having financial troubles. The club's new coach persuades the club's parent company to stay open on one condition: that the club sends one of its members to next year's olympics as part of Japan's olympic team.", + "posterPath": "/v4UbmxXXg3NEpb7xKQg39ig7AY8.jpg", + "backdropPath": "/ut6QIuhd4UtJEYmiSfI5Y9bu6Or.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-07-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.333, + "voteCount": 9, + "popularity": 0.852 + }, + { + "id": 74190, + "title": "URAHARA", + "originalTitle": "URAHARA", + "overview": "Three high school girls are putting together a limited-time shop called \"PARK\" in Japan's Harajuku. One day, aliens come to Earth with the intent to steal the famed district's culture. At the same time, a mysterious girl appears. The three girls band together to defeat the alien threat and protect their beloved Harajuku.", + "posterPath": "/4CR516oxUFH6n4WnE9I8ASP8Dh3.jpg", + "backdropPath": "/61T2dC0MJGYwrcLRHfTuM3ZN1F2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2017-10-05", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 6, + "popularity": 0.8481 + }, + { + "id": 82257, + "title": "Cannon Busters", + "originalTitle": "キャノン・バスターズ", + "overview": "With a maintenance robot and a deadly fugitive tagging along, friendship droid S.A.M searches for its best friend, the heir to a kingdom under siege.", + "posterPath": "/21pFKgmMJOucGGIzKWBpkjT7FN1.jpg", + "backdropPath": "/mE1KFvIqEAv0V9AUUTFRvWFV0Km.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-08-14", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.917, + "voteCount": 42, + "popularity": 0.8455 + }, + { + "id": 34101, + "title": "The Story of Cinderella", + "originalTitle": "シンデレラ物語", + "overview": "Cinderella is the daughter of a wealthy duke who has remarried to provide her with a mother and sisters. When the Duke travels abroad, Cinderella discovers that her new family is anything but a family. With spoiled stepsisters and a harsh stepmother, Cindrella is forced to cook, clean and manage the household. Yet she remains cheerful, gentle and kind to her family, to her animal friends and to a mysterious boy, named Charles, who seems to have a connection with the prince of Emerald Castle. A whole new story on a classic fairytale.\n\nWhen Cinderella's cruel stepmother prevents her from attending the Royal Ball, she gets some unexpected help from the lovable mice Gus and Jaq, and from her Fairy Godmother.", + "posterPath": "/fBKxgDLHSFTDNJwHt93E3eFMntP.jpg", + "backdropPath": "/z1w7HByRFWqNCYmGuQFozgLXj3a.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1996-04-04", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 8, + "popularity": 0.8429 + }, + { + "id": 69240, + "title": "Chiruran 1/2", + "originalTitle": "ちるらん にぶんの壱", + "overview": "Strong, intense, and cute! The most laid-back Shinsengumi in history arrives!! An official spinoff series by Hashimoto Eiji (manga) and Umemura Shinya (story) of \"Chiruran Shinsengumi Requiem.\" Here's the laid-back everyday life of the Shinsengumi warriors.", + "posterPath": "/mss5vNYzzpblQ9KUdjjBnqBGyqx.jpg", + "backdropPath": "/uCjLBocgK5zYYVAd2GQ2TXQPNp6.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2017-01-10", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 5, + "popularity": 0.8421 + }, + { + "id": 53297, + "title": "Nyoron! Churuya-san", + "originalTitle": "にょろーん☆ちゅるやさん", + "overview": "Churuya is a girl with a strong passion for smoked cheese. But Kyon and the rest of the crew know this, and they make use of the weakness. They make her do all kinds of things with smoked cheese as a possible reward. But Churuya isn't aware of this evil plot, thus she maintains the effort for the sake of cheese. Each day is a struggle to get the beloved smoked cheese, but it's much harder than she could ever imagine!", + "posterPath": "/85BghSKcTxWPlyXPjmEHatVxG4r.jpg", + "backdropPath": "/sUduZFZfExYQE2WQFtFN8EdDPEy.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2009-02-14", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 13, + "popularity": 0.842 + }, + { + "id": 36251, + "title": "Sukisho!", + "originalTitle": "好きなものは好きだからしょうがない!!", + "overview": "Hashiba has an accident and has lost all of his memories. When Fujimori comes to his school as his new roommate, He tells Hashiba that he is called Ran. He and Hashiba both have a split personality which they developed in their youth.", + "posterPath": "/sLG01OGGMDCxKhsIyC9XdrJODer.jpg", + "backdropPath": "/6kKivhRhzKKOB8hE0YpP85C10QB.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2005-01-09", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 4.625, + "voteCount": 8, + "popularity": 0.8397 + }, + { + "id": 44422, + "title": "Phantom Quest Corp.", + "originalTitle": "幽幻怪社", + "overview": "Ayaka Kisaragi is a beautiful woman descended from a long line of Japanese exorcists. However, bored with their traditions, she started her own business, Phantom Quest Corp. Although she is very competent with her skills, Ayaka's own bad habits often cut into the company's meager earnings and interfere with paying the various experts whose help she usually depends upon.", + "posterPath": "/lkO9PLX8E2ur5RM1ZOk0cz5isIg.jpg", + "backdropPath": "/r3b6MLVKKTlVXQnENldQD1xyHKl.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery" + ], + "releaseDate": "1994-08-25", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 6.091, + "voteCount": 11, + "popularity": 0.8396 + }, + { + "id": 45078, + "title": "Chargeman Ken!", + "originalTitle": "チャージマン研!", + "overview": "It is the year 2074. In a world threatened by aliens... an unlikely hero emerges! Ken Izumi may look like an ordinary 10-year-old boy, but he secretly possesses weapons, armor, and accessories that transform him into the superheroic Chargeman Ken. Ken protects his mom, dad, little sister Caron, robot pal Barican, and the rest of mankind from the diabolical Juralians, shape-shifting alien invaders bent on terrorizing the earth. The only thing standing between the fragile human race and conquest by the Juralians is Chargeman Ken and his unquenchable thirst for fiery, atomic justice!", + "posterPath": "/8k9NShgGHGwvZKn080DCC9FjBRE.jpg", + "backdropPath": "/hINZjslDwUjWwMpOhKn1R07IujF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1974-04-01", + "releaseYear": "1974", + "originalLanguage": "ja", + "voteAverage": 2.5, + "voteCount": 6, + "popularity": 0.8352 + }, + { + "id": 128824, + "title": "Ippon Again!", + "originalTitle": "もういっぽん!", + "overview": "After one last tournament and an embarrassing loss in the final round, Michi decides to call it quits on the sport of judo. Between high school social activities and entrance exams, she’ll have no time to compete in the martial art she loves most, but putting aside old hobbies is a normal part of growing up. Still, the love of judo lingers—and it comes back full force when she meets her new classmate Towa, the girl who bested Michi in her final match! Towa wants to form a judo club at their school, but she’ll need new members to get it up and running. United by their love of judo, they’ll throw in their passions into the ring together and score ippon again!", + "posterPath": "/zKA8pMJ7JxgdvNLIMUV9L7G5FxP.jpg", + "backdropPath": "/tBfiCVZHqbWTy7pPhjmhazEtxy9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2023-01-09", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 6, + "popularity": 0.8351 + }, + { + "id": 36451, + "title": "Suzuka", + "originalTitle": "涼風", + "overview": "Yamato Akitsuki travels to Tokyo alone to study in one of the high schools located within the area. He lives in with his aunt who operates a public bath solely for the ladies in the local district and begins his normal high-school life. One day, he chances upon a girl in school and is immediately mesmerized by her beauty. He is shocked when he realizes later that the girl, Suzuka, is actually living next door to him. From then on, Yamato's ordinary life begins to change little by little.", + "posterPath": "/mfUnzEwrk0zrc5ixCE57okzqxQP.jpg", + "backdropPath": "/f0YU7zeddTjojqjMqly7CcrTmmV.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2005-07-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 10, + "popularity": 0.832 + }, + { + "id": 28223, + "title": "NieA_7", + "originalTitle": "NieA_7", + "overview": "Mayuko Chigasaki is an ordinary girl from the countryside, who now is attending university in big city Tokyo. She struggles each day to make ends meet while studying for her exams, barely scraping up the yen to afford bus fare to and from school. And at the end of the day, she comes home to a gluttonous, freeloading alien living in her closet!", + "posterPath": "/aINB40Si5rIXVGn8swwtiFM9j0r.jpg", + "backdropPath": "/eCvT7TYb5LgMLY4Q7mvhFNOUAWM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-04-26", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 18, + "popularity": 0.8316 + }, + { + "id": 35501, + "title": "Allison & Lillia", + "originalTitle": "アリソンとリリア", + "overview": "Allison and Will set out on a mission to discover the fabled \"peace treasure\" in a continent wrought with long-standing conflict between two kingdoms. Their belief and aspirations are carried on by their daughter, Lillia, who strives to bring the warring nations together as a united land. This animated show motivates young viewers to dream of a world that is rid of hostility and disputes brought on by differences in nationality or ideology.", + "posterPath": "/4CKH6zn3AnuGZ6xKlgzF40nmSRC.jpg", + "backdropPath": "/iZiKChhfGvZLcXLrjJbsFGmXJhM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2008-04-03", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 9, + "popularity": 0.8315 + }, + { + "id": 122204, + "title": "Liar, Liar", + "originalTitle": "ライアー・ライアー", + "overview": "Students battle to determine their rankings, with one student having to keep up the ultimate lie!", + "posterPath": "/7aJofa2IWoLVRu2UTRZ6ccqR553.jpg", + "backdropPath": "/eMClChpMUWH4Yr1R1J34UKb6JEu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-07-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 18, + "popularity": 0.8305 + }, + { + "id": 69283, + "title": "ēlDLIVE", + "originalTitle": "エルドライブ", + "overview": "Chuuta Kokonose is an orphan who lives with his aunt. For as long as he can remember, he's had a voice in his head, but other than that he's a normal boy—right until the day when a strange-looking thing follows him home and teleports him to a place filled with more fantastic creatures. It's a space police station, and Rein Brickke, the Chief of Solar System Department, tells him that he's been chosen by the computer as a possible candidate to join the police force. Misuzu Sonokata, a girl from Chuuta's school with an angelic face and ill temper who turns out to be one of Rein Brickke's subordinates, doesn't think him suitable for such a job. Chuuta, who was shocked at first, decides to take the aptitude test after being urged by the voice in his head and to prove Misuzu wrong.", + "posterPath": "/jUIlqhaCfrvsz6gzAFgFOattK0k.jpg", + "backdropPath": "/kjHZ4DqqMcQUa5J7zv2xt3kUDPh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-08", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.647, + "voteCount": 17, + "popularity": 0.8298 + }, + { + "id": 102432, + "title": "Magatsu Wahrheit: Zuerst", + "originalTitle": "禍つヴァールハイト -ZUERST-", + "overview": "Two young people living in the Wahrheit Empire are planning to relocate to the capital city: the shy Inumael who works as a transporter and left his beloved sister behind at his parents' home, and Leocadio, a naive new soldier of the Empire who spends his days in the imperial city thinking of his future as a soldier.\n\nIn the Empire, countless human beings were once extinguished from the world. The return of the \"light,\" the disaster that summoned a ferocious monster into the world, is predicted, and the remaining humans' spirits are devastated. Meanwhile, the fate of Inumael, Leocadio, and the history of the Empire will change drastically as a result of one weapon smuggling incident.", + "posterPath": "/o9hunbSF1UT7VIGs2gnVA3liqSh.jpg", + "backdropPath": "/fnOceLd6ejBK9cAITB07easFc7Q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2020-10-13", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 9, + "popularity": 0.8261 + }, + { + "id": 46227, + "title": "World War Blue", + "originalTitle": "蒼い世界の中心で", + "overview": "A parody of the console wars, the series tells the story of two nations, the Segua Kingdom and Ninteldo Empire, locked in a struggle for dominance over the land of Consume.", + "posterPath": "/knCtPd5fwgq2wAXm3YWqxW8xqLZ.jpg", + "backdropPath": "/wXGdkCWBcfOVxov1tBcOh3Bjy94.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2012-10-20", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 13, + "popularity": 0.8247 + }, + { + "id": 60424, + "title": "Freedom", + "originalTitle": "FREEDOM", + "overview": "In the year 2267, more than 160 years after the Skyport orbital station fell to Earth and wiped out all of humanity, Eden is a thriving lunar colony home to young Takeru, who tries to make the most of the brief hiatus of freedom granted to the colony's inhabitants between the end of compulsory education and the rite of becoming a full citizen.", + "posterPath": "/sUgZPacz3REU7b1WWeKdhmz00tZ.jpg", + "backdropPath": "/lKffjWJSjLpsCKyt37Wk8EyA4t2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-11-23", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 13, + "popularity": 0.8233 + }, + { + "id": 67580, + "title": "Demon Prince Enma", + "originalTitle": "鬼公子炎魔", + "overview": "A remake of Go Nagai’s 1973 lighthearted horror anime TV series Dororon Enma-kun. Enma, Yuki-hime and Kapaeru are demon hunters from another plane who have come to present day Japan to exterminate demons who possess humans and cause them to commit murder.", + "posterPath": "/5zdkugWKXMJjBHajlmLEC7c9S6e.jpg", + "backdropPath": "/k1XzsP9SaLTLW7aTfIfup2Ffeug.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2006-08-25", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 12, + "popularity": 0.8216 + }, + { + "id": 78474, + "title": "You Don't Know GUNMA Yet.", + "originalTitle": "お前はまだグンマを知らない", + "overview": "Nori Kamitsuki moved from Chiba to Gunma prefecture as he begins to attend high school. There, he has received a warning from his classmate that \"No one comes back alive from Gunma,\" and found more negative information as he looked it up on the net. In the midst of confusion and extreme culture shock, he has gotten himself involved with Gunma's rivals, Tochigi and Ibaraki prefecture.", + "posterPath": "/jP84jUiC2wtsZTYEUmHhbLkO9Sy.jpg", + "backdropPath": "/yNaEUp1P7XvDYzthDlPIYlcaB7N.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-04-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 5, + "popularity": 0.8205 + }, + { + "id": 67042, + "title": "Miyuki-chan in Wonderland", + "originalTitle": "不思議の国の美幸ちゃん", + "overview": "Miyuki, a cute girl, is in over her head. When late for school, she is suddenly transported to another world (Alice In Wonderland style), except that all the inhabitants of the other world are female...and they all seem to be in love with Miyuki. And the world behind her mirror is even weirder.", + "posterPath": "/1RTC7vgIf9iueCN3oZFSyIPghEl.jpg", + "backdropPath": "/pGFtpXgatmdfW706b4rpo8dZoaj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1995-06-21", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 10, + "popularity": 0.817 + }, + { + "id": 82828, + "title": "Himote House: A Share House of Super Psychic Girls", + "originalTitle": "ひもてはうす", + "overview": "From Kotaro Ishidate, tthe creator of some popular ad-lib animes such as Tesagure! Bukatsu-mono and gdgd Fairies. This new anime centers on five girls and one cat all living as housemates in Nakano, Tokyo: the three Himote sisters (Tokiyo, Kinami, and Kokoro) whose family manages the \"Himote House,\" Kokoro's classmates Tae and Minamo, and the cat Enishi. The girls live their daily lives trying to figure out ways to be popular, and they (and the cat) all possess a mysterious secret power...", + "posterPath": "/y9cW9C4tB8v9bgMIeqUJG9TADla.jpg", + "backdropPath": "/oTGi84SZrvzweAzCkj3Ju2uRdch.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-08", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 7, + "popularity": 0.8168 + }, + { + "id": 97067, + "title": "Squishy! Black Clover", + "originalTitle": "むぎゅっと!ブラッククローバー", + "overview": "In a world where magic is everything, Asta, who is the only person who can't use magic, and the magical genius Yuno go all out to become the Wizard King. This is a spin off of the anime series \"Black Clover\" with an unbelievable story and an amazing cast.", + "posterPath": "/wc421LF4gcEFDgKZFCyniYB0i8X.jpg", + "backdropPath": "/tUXGa0qZAk0U3bYIgnta47C8ZlY.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2019-07-01", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.1, + "voteCount": 7, + "popularity": 0.8166 + }, + { + "id": 128510, + "title": "Shin Ikki Tousen", + "originalTitle": "真・一騎当千", + "overview": "The reincarnation of Himiko, the former queen of Yamatai, has decided to wage war against all magatama wielders of Kanto. In order to recover her lost kingdom, she must gather the true Three Sacred Treasures of Japan.\n\nWhen Himiko's ally, Asaemon Yamada, ruthlessly attacks Nanyou Academy—which possesses the sacred sword Himiko is after—Chuubou Sonken, Hakufu Sonsaku's newfound sister, awakens her dragon but loses consciousness. Determined to save her sibling, Hakufu must recover her magatama at the Jofuku Temple—a legendary place where she will receive training that may cost her her life.\n\nAs the frontier between the living and the dead starts to vanish in Jofuku, the warriors of the Kanto region will have to unite in order to foil Himiko's mysterious plans.", + "posterPath": "/816zU3IELJlkmRqPt91uu9ty1Qf.jpg", + "backdropPath": "/qCrfz18gF0SLsE7VlHqLk1GGoHW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-05-17", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 10, + "popularity": 0.8157 + }, + { + "id": 82180, + "title": "Dogs: Bullets & Carnage", + "originalTitle": "ドッグズ/バレッツ&カーネイジ", + "overview": "The story evolves around four different chapters and four different main characters. These stories are adapted from the similair called manga book later renamed into Dogs: Bullets & Carnage as serialization began.", + "posterPath": "/iyC6Yhzw6hQ2lV6J7kUgTi4faBh.jpg", + "backdropPath": "/o2Am7ORKGRpj31jKUaR5Gl7sEZ0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2009-05-19", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 7, + "popularity": 0.8144 + }, + { + "id": 31741, + "title": "Black Blood Brothers", + "originalTitle": "BLACK BLOOD BROTHERS", + "overview": "Black Blood Brothers, also known as BBB, is a light novel series written by Kōhei Azano and illustrated by Yuuya Kusaka. In 2006, Studio Live and Group TAC produced an anime based on the series. It is directed by Hiroaki Yoshikawa. It was licensed for North American release by Funimation Entertainment, with the first DVD being released in February 2008.", + "posterPath": "/tAA1BKAqpRtnemHL8zF4cG7NtYn.jpg", + "backdropPath": "/1FiPbrqSAOMHZus9zE9HPQyG5Ve.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Drama" + ], + "releaseDate": "2006-09-08", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 24, + "popularity": 0.8126 + }, + { + "id": 46037, + "title": "Softenni", + "originalTitle": "そふてにっ", + "overview": "Playing Soft Tennis is supposed to be the focus of the Shiratama Soft Tennis Team. And for some of the girls, like farm girl/would-be champion Asuna, it mostly is. But when the team's worst player, Chitose, is also the team captain, could it be that the club is really more about hanging out and having a good time?\n\nTo be sure, aces Kurusu and exchange student Elizabeth, are great players. But they also seem more interested in cosplay and the team's dreamy adviser, while violence-prone Kotone might be more at home in a martial arts dojo.\n\nAnd it would certainly explain why they get into so many odd adventures involving things like giant bears, whales, and ghosts rather than playing!", + "posterPath": "/tglQITYUS0vG4mEcfynzMEKJvoi.jpg", + "backdropPath": "/6djLkqujDJ3aQZo1GCLPLvhZuhx.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-04-08", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 6.75, + "voteCount": 8, + "popularity": 0.8107 + }, + { + "id": 68641, + "title": "Venus Versus Virus", + "originalTitle": "ヴィーナス ヴァーサス ヴァイアラス", + "overview": "Venus Versus Virus revolves around the life of a young girl named Sumire Takahana who has had the power to see ghosts since she was a small child, though no one believes her. One night while running to her dorm building to make curfew, a broach flies out of no where and she pricks her finger on it and sees a demon. Suddenly, another girl clad in gothic lolita clothing arrives bearing a huge gun and kills the demon. Once the ordeal is overwith, the girl gives Sumire a flier for a local clothing store, Venus Vanguard. When Sumire comes to the store, the girl, whose name is Lucia Nabashi, she explains to her that because she pricked her finger on Lucia's broach, Sumire now has the power to see demons as well as ghosts. Additionally, Lucia now wants Sumire to help her rid the world of these demons called Virus that threaten to consume all of humanity.", + "posterPath": "/g8NnxLjaNTne96qtKGBL7cFtxbE.jpg", + "backdropPath": "/pLuTTpqMvzHo8UInUURRd18XsC7.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2007-01-12", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 7, + "popularity": 0.81 + }, + { + "id": 82247, + "title": "Macross II: Lovers Again", + "originalTitle": "超時空要塞マクロスII -Lovers Again-", + "overview": "A.D. 2089 - 80 years have passed since Space War I changed the lives of both human and Zentraedi races. Both races are at peace on Earth when a new alien race called the \"Marduk\" appear within the Solar System. While covering the first battle between the U.N. Spacy and the Marduk fleet, SNN rookie reporter Hibiki Kanzaki discovers Ishtar, an \"Emulator\" that enhances the Marduk's combat abilities through singing. Hibiki brings Ishtar to Earth to teach her the values of life and culture. Together with ace Valkyrie pilot Silvie Gena, Hibiki and Ishtar must find a way to save Earth from total destruction at the hands of the Marduk leader Ingues.", + "posterPath": "/66K2y79lk9joxDMSXsJyOuaGBlE.jpg", + "backdropPath": "/2L1599qfhaIgsoBe3rX57FTqp8E.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "1992-05-21", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 15, + "popularity": 0.8096 + }, + { + "id": 96737, + "title": "Book Girl: Memoire", + "originalTitle": "\"文学少女\" メモワール", + "overview": "Three-episode prequel to the upcoming movie told by three main heroines.", + "posterPath": "/vGfL9wHkNQ8NSXr66DAbNXHzLtL.jpg", + "backdropPath": "/nUIFeucxal4Pe1OhAld9lTMIhKL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2010-05-14", + "releaseYear": "2010", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 0.8071 + }, + { + "id": 79044, + "title": "They Are My Noble Masters", + "originalTitle": "君が主で執事が俺で", + "overview": "Uesugi Ren and his sister Mihato ran away from home because of domestic violence. When they at last reach the city they have a hard time finding work to earn some money. They eventually enter the service of the Kuonji family, making a pledge of absolute loyalty. Thus Ren's days of being a butler to the demanding Kuonji heir begins...", + "posterPath": "/grGacfAwNtsqPfrhNwcx34q7ftx.jpg", + "backdropPath": "/ojR7MmJ9prF5ws1RJMt0LZiDghQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2008-01-06", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 9, + "popularity": 0.8069 + }, + { + "id": 38313, + "title": "Battle Girls: Time Paradox", + "originalTitle": "戦国乙女~桃色パラドックス~", + "overview": "Hideyoshino is an average girl who always seems to find trouble wherever she goes. One day, Hideyoshino notice a blue light coming from inside a local Shrine and see a mysterious person performing a magic spell. In a stroke of bad luck, Hideyoshino trips and crashes into the shrine, prompting the magic spell to spiral out of control and sends her back in time to the Sengoku Era. But Hideyoshino realizes that everyone in the world is female. She then decides to help Oda Nobunaga find the Crimson Armor which is said to allow the person wearing the armor to conquer all of Japan.", + "posterPath": "/jsUe42l5b00FTsYmI3CurClo5SH.jpg", + "backdropPath": "/8eObATTLiDuNczZ3chWxKtv8RxM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2011-04-05", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 8, + "popularity": 0.8058 + }, + { + "id": 221148, + "title": "I Shall Survive Using Potions!", + "originalTitle": "ポーション頼みで生き延びます!", + "overview": "A fatal mistake leads to the ultimate deal for this clever office lady. After her accidental demise by the gods, Kaoru is offered to be reborn into a new world. She agrees, but with a few demands to help her survive, including a younger body and the ability to create insanely overpowered potions! Now, she’s ready to make the most out of her next life.", + "posterPath": "/rXejTl7hZEqHEUvPFI9WBZ9B0uQ.jpg", + "backdropPath": "/oldfeEOQpLM3sXq0p8kva1gZRHK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2023-10-08", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 23, + "popularity": 0.8036 + }, + { + "id": 105645, + "title": "Tenamonya Voyagers", + "originalTitle": "てなもんやボイジャーズ", + "overview": "Their school shut down, Ayako and Wakana are now stranded far from Earth. Enter Paraila, a wanted criminal, and they believe they can make it back.", + "posterPath": "/eOnkfcZ9KwRLpe9L1vX9nKOdt1m.jpg", + "backdropPath": "/nz8TI2O4ZJPYPOxwunApHhiKehU.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 10765, + 16 + ], + "genres": [ + "Comedy", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1999-06-25", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 5, + "popularity": 0.8018 + }, + { + "id": 82682, + "title": "The Girl in Twilight", + "originalTitle": "あかねさす少女", + "overview": "Girls who live in a provincial city perform a certain ritual. The girls are in the \"Crystal Radio Club.\" It is an interest circle that Asuka Tsuchimiya, a girl known for her cheerfulness, started with friends in her high school. That ritual was considered just an urban legend. However, with several conditions coincidentally falling into place, it stops being fun and games...", + "posterPath": "/df2BpzYyo4p4UrD12NGu1mKhkMc.jpg", + "backdropPath": "/v2tcrexw7naw4PASomwoHJRGEdS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2018-10-01", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.588, + "voteCount": 17, + "popularity": 0.7992 + }, + { + "id": 93655, + "title": "League of Nations Air Force Aviation Magic Band Luminous Witches", + "originalTitle": "連盟空軍航空魔法音楽隊ルミナスウィッチーズ", + "overview": "Morale matters just as much as launching a counterassault. Instead of standing on the front lines with the 501st Joint Fighter Wing, the Luminous Witches of the League of Nations Air Force bring smiles to civilians displaced in the human-Neuroi war.", + "posterPath": "/aDaRiIgWd407J0zrj6VzpiCmY2h.jpg", + "backdropPath": "/121cHD0ZV27fc6Ss41m0Ck6k1EK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-07-03", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 0.7989 + }, + { + "id": 83018, + "title": "Hybrid Child", + "originalTitle": "Hybrid Child", + "overview": "The Hybrid Child is an amazing doll that can grow if it is lavished with enough love and care from its owner. Neither fully machine nor fully human, the various Hybrid Child models develop strong emotional bonds with their owners.", + "posterPath": "/xwxHDoSJb6qMJJidlDAp1A9ziGQ.jpg", + "backdropPath": "/7HxJ7PLejbqkxkGh1bqT9VlbAOr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2014-10-29", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 13, + "popularity": 0.7987 + }, + { + "id": 84158, + "title": "BONJOUR♪Sweet Love Patisserie", + "originalTitle": "Bonjour♪恋味パティスリー", + "overview": "Sayuri Haruno dreams of becoming a pastry chef and enrolls in Fleurir Confectionary Academy, an elite school located in Tokyo’s trendy Aoyama district. At Fleurir, she finds herself surrounded by charming boys, each one distinctly unique... As Sayuri pours her heart and soul into making her dream a reality, she encounters many happenings…", + "posterPath": "/cF5j2sGnwHEE0jVbac7SAqUoZ6i.jpg", + "backdropPath": "/aYT5B45G1TDXol9umTve1xSkjAA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-10-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 10, + "popularity": 0.7953 + }, + { + "id": 77405, + "title": "Mega Man: Upon a Star", + "originalTitle": "ロックマン 星に願いを", + "overview": "Japan is in grave danger! Mega Man must prevent Dr. Wily from destroying Japan as we know it. But how?\n\nWith a little knowledge of Japanese culture and geography, Mega Man and his pals will try to stay one step ahead of the mad scientist. But will they be able to defeat Dr. Wily in time to save Children's Day? Or to avert the worst typhoon in history? Or to keep Mt. Fuji from erupting again?", + "posterPath": "/8fl21UkaSGYJNFPivagjdninjgi.jpg", + "backdropPath": "/sY2lbUlOeTvA0gLgvfuPLqYjBfu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10762, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Kids", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1993-06-08", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 5, + "popularity": 0.7953 + }, + { + "id": 14350, + "title": "Tokko", + "originalTitle": "TOKKO 特公", + "overview": "Tokko is a Japanese manga series written and illustrated by Tohru Fujisawa. It was serialized in Kodansha's Afternoon in 2003 and collected into 3 tankōbon volumes.\n\nAn anime adaptation directed by Masashi Abe, animated by AIC Spirits and Group Tac, first aired in Japan on April 15, 2006 and ran for 13 episodes. The manga was licensed in North America by Tokyopop, who released the first volume on July 15, 2008. The anime was licensed in the United States and United Kingdom by Manga Entertainment, with its first DVD released on March 20, 2007, and in Australasia by Madman Entertainment. In the US the SciFi Channel aired Tokko in 2007, in 2010 it aired on Chiller, while in Canada it was shown on Super Channel.", + "posterPath": "/8Ws4iReO1k1NDXMhKhQtdaDFvKR.jpg", + "backdropPath": "/8SkZLb9q6gwuvag91s9aAJlInLr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 80 + ], + "genres": [ + "Animation", + "Crime" + ], + "releaseDate": "2006-04-16", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 10, + "popularity": 0.7945 + }, + { + "id": 31098, + "title": "Beast Wars II: Super Lifeform Transformers", + "originalTitle": "ビーストウォーズII 超生命体トランスフォーマー", + "overview": "Beast Wars II refers to the 1998 Japanese Transformers television animated series, and the movie and toyline that resulted from it. The series was preceded by Beast Wars, and was followed by Beast Wars Neo.\n\nThe series has a much lighter tone and is aimed more towards children, whereas the more accessible Beast Wars was intended for a wider age range. The series also uses conventional animation rather than CGI like Beast Wars: Transformers. With the exceptions of the faction leaders, all of the characters within the series are either re-molds or re-colors of earlier Beast Wars figures or Generation 2/Machine Wars figures.\n\nIn addition to the 43 episodes, there is also a 50-minute movie, Beast Wars II: Lio Convoy's Close Call!, which takes place sometime between episodes 32 and 38.", + "posterPath": "/3Pj9UHvf5qvKDLzgZ2ekVkqIQp7.jpg", + "backdropPath": "/5zqIK3DSkw2YGijR3MZmJhspfng.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1998-04-01", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 5, + "popularity": 0.7932 + }, + { + "id": 33728, + "title": "Magical Pokaan", + "originalTitle": "錬金3級 まじかる?ぽか〜ん", + "overview": "The energetic werewolf Liru, the joyful witch-in-training Uma, the motherly android Aiko, and the seductive vampire Pachira—are princesses from the netherworld who have traveled to the human world in search of a new home.", + "posterPath": "/l09DBGlfomCZzD5jyMkj0CaE1Jw.jpg", + "backdropPath": "/tAj16goVV87MRe2Mx7bAVm8tjiN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2006-04-04", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 10, + "popularity": 0.7904 + }, + { + "id": 113380, + "title": "Maps", + "originalTitle": "マップス", + "overview": "While looking for the legendary Mapman, the last surviving member of the Nomad Star tribe, Lipumira finds him in Tokyo. His name is Gen Tokishima and he is the only one able to get one part of the starmap hidden within the Earth. After retrieving the piece, Gen must make a decision to follow Lipumira in her foolhardy search to find the remaining pieces of the starmap or stay on Earth. He makes his decision, only to find his girlfriend has beaten him to the spaceship as she wants to come as well. Unfortunately, as Gen learns the secret of the starmap, Lipumira's sisters have plans to stop her and will stop her at any cost.", + "posterPath": "/nRBglOmttkr5SII2E57FiaTHQcH.jpg", + "backdropPath": "/guLpWJx5OVUp7D2F25Cb8Ruqd30.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-07-08", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 6, + "popularity": 0.7898 + }, + { + "id": 130206, + "title": "Fantasia Sango – Realm of Legends", + "originalTitle": "幻想三國誌 -天元霊心記-", + "overview": "When the Three Kingdoms are ravaged by demons and monsters, four heroes with little in common must unite to fight the realm’s most vicious enemies.\n\nTogether the heroes unveil an insidious conspiracy while sharing the joys and sorrows of battling a mysterious organization intent on tearing them and the kingdoms apart.", + "posterPath": "/2s8yKCqFk6CSGWznH99FP4wIVy3.jpg", + "backdropPath": "/iSdtOR6EFCTqT154Y7XKJsF8tBW.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-01-11", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 9, + "popularity": 0.7879 + }, + { + "id": 77260, + "title": "Makai Ouji: Devils and Realist", + "originalTitle": "魔界王子", + "overview": "A brilliant, skeptical noble accidentally summons a powerful demon and is forced to choose Hell's next ruler, while demons and angels battle for his nomination.", + "posterPath": "/1mayvfdEDk3aedSBA0wGPTl2XBs.jpg", + "backdropPath": "/ch5TQGXWyzbzQIyQb9o3romUf8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2013-07-07", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 20, + "popularity": 0.7866 + }, + { + "id": 35205, + "title": "Harlock Saga - The Ring of the Nibelungs", + "originalTitle": "ハーロック・サーガ ニーベルングの指環 -ラインの黄金-", + "overview": "Harlock Saga is a six-part anime miniseries by Leiji Matsumoto. An adaptation of Das Rheingold, it tells the story of space pirate Captain Harlock and his crew as they try to stop a man who has stolen gold from the center of the galaxy and forged it into a powerful ring.", + "posterPath": "/f2Jgw8ekuZ8NZ3BDAVlmjRGPOh3.jpg", + "backdropPath": "/xCQLnprJLmotyRua4zLX0nK89Y9.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-01-25", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 5, + "popularity": 0.7848 + }, + { + "id": 61439, + "title": "Candy Boy", + "originalTitle": "キャンディ ボーイ", + "overview": "Yukino and Kanade Sakurai live together as high school students enjoying their daily life; until one day Sakuya Kamiyama confess her love for Kanade to Yukino, asking for her support. This makes Yukino to release her true feelings for her sister.", + "posterPath": "/7O68ST950n9zDAs2IgH4brDfGU2.jpg", + "backdropPath": "/1qNNH1d3vUi9hnA7bnzPltF8dqu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10749 + ], + "genres": [ + "Animation", + "Comedy", + "Romance" + ], + "releaseDate": "2008-05-02", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 4.1, + "voteCount": 15, + "popularity": 0.7846 + }, + { + "id": 130112, + "title": "\"Deji\" Meets Girl", + "originalTitle": "でーじミーツガール", + "overview": "Sixteen-year-old Maise Higa spends her summer days working part-time at her family's hotel, with absolutely nothing interesting to do. That is, until she meets Ichirou Suzuki—a mysterious boy who is seemingly haunted by strange supernatural occurrences. Upon interacting with him, Maise unexpectedly enters a different reality, where hotel rooms can transform into the deep ocean and banyan trees can spawn indoors out of nowhere. Intrigued, Maise accompanies Ichirou in his quest to uncover the secrets behind the inexplicable enigmas surrounding him.", + "posterPath": "/iUelX1DqtgTDYvlsK3TzWcbn2Hb.jpg", + "backdropPath": "/rvgdt7q2tGQUiAAMTPAWG7QA12l.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2021-10-02", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 10, + "popularity": 0.7844 + }, + { + "id": 88023, + "title": "The King of Fighters: Another Day", + "originalTitle": "ザ・キング・オブ・ファイターズ アナザーデイ", + "overview": "The four episodes are set in Southtown, the imaginary city well known to all fans as the stage of numerous death matches throughout the KOF series. Many past heroes of the saga make their appearance here, and the four plots intertwine to create a large-scale drama, that is also linked to the story of KOF Maximum Impact 2.", + "posterPath": "/wS5dElsRNhKJZux9Ghvhqcr0lt0.jpg", + "backdropPath": "/e354Jr2NVJ5oDjzEdbfaOskOM4k.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Drama" + ], + "releaseDate": "2005-12-02", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 8, + "popularity": 0.7827 + }, + { + "id": 44022, + "title": "Dragon Century", + "originalTitle": "竜世紀", + "overview": "The story of a young girl and a young dragon. Naturally, they are the best of friends, and naturally the rest of the world is against them both. However, when demons decide to trash their world, they side with those who have always been against them.", + "posterPath": "/5WwyKIi7upbjvTpL5FrMdOjTgx6.jpg", + "backdropPath": "/AgQQx191xdVz7hBwXAQuzO0aURl.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1988-10-26", + "releaseYear": "1988", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 6, + "popularity": 0.7815 + }, + { + "id": 66041, + "title": "From Today, It's My Turn!!", + "originalTitle": "今日から俺は!!", + "overview": "This story follows the adventures of Takashi and Itō. At first they are enemies but soon become friends. They are may seem like normal students, but really aren't all that normal. They are the two known troublemakers. They get into many fights with people.", + "posterPath": "/pv2EZfVjEPxaVd8oHj9pO9D1AVA.jpg", + "backdropPath": "/dQkKZr3EAlV10kwV0bkCcMTvCtT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 35 + ], + "genres": [ + "Animation", + "Drama", + "Comedy" + ], + "releaseDate": "1993-04-01", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 9, + "popularity": 0.7813 + }, + { + "id": 11856, + "title": "Miami Guns", + "originalTitle": "マイアミ☆ガンズ", + "overview": "Miami Guns is a manga and anime series. The anime takes place in Miami City, which is similar to Miami, Florida, except for several locale changes. It's mainly about the life of two female Miami City police officers having to stop crimes before they get worse. The setting thus has some similarities to that of the popular TV show Miami Vice.", + "posterPath": "/rlD9RCK5wh9sxaqPRmOynAYSE1X.jpg", + "backdropPath": "/iFziXhHmrfrzDeh44pKB9GheBOe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2000-02-05", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 5, + "popularity": 0.78 + }, + { + "id": 76120, + "title": "Dame×Prince Anime Caravan", + "originalTitle": "ダメプリ ANIME CARAVAN", + "overview": "The story follows Ani, a princess from the minor nation of Inako. Ani is sent to the signing ceremony that will bring peace to the rival nations of Mildonia, a mighty military country, and Selenfaren, a powerful theocracy. Ani is supposed to help steer the signing ceremony along, but she runs into trouble when she encounters a handful of obstinate princes.", + "posterPath": "/6OaqJemoz2j1nmuVATxr638xNyJ.jpg", + "backdropPath": "/chY93NxVc5VIA9BV6aU1a3UYzJQ.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 18, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Drama", + "Animation" + ], + "releaseDate": "2018-01-10", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 7, + "popularity": 0.7797 + }, + { + "id": 138683, + "title": "Sono Kinisasete yo: My My Mai", + "originalTitle": "その気にさせてよ♡myマイ舞", + "overview": "Mai runs a consulting business and is often times peoples last hope for help with their problems. She will use whatever means necessary to get her clients satisfaction.", + "posterPath": "/dgh9z3Mtm1SehKq1KdMwX10ALnj.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1993-12-16", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 4.286, + "voteCount": 7, + "popularity": 0.7774 + }, + { + "id": 254227, + "title": "Queen's Blade: Rebellion", + "originalTitle": "クイーンズブレイド リベリオン", + "overview": "The story is set four years after the first story-line and revolves around Annelotte, the rebelling knight princess who stands up to the tyranny of the new queen.", + "posterPath": "/8FsPsuEcX9m8f3ds90xN9zHKi1v.jpg", + "backdropPath": "/wpgwv3JSiBPPwVwgRPKj2glBCs9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-04-03", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 3.4, + "voteCount": 5, + "popularity": 0.7685 + }, + { + "id": 65933, + "title": "Endride", + "originalTitle": "エンドライド", + "overview": "Worlds collide when Shun Asanaga is transported to Endra, a kingdom beneath the Earth. To get home, he’ll have to help Prince Emilio regain his rightful throne by defeating King Delzaine. Can the two restore a kingdom and get Shun back home?", + "posterPath": "/uVq9JNRRZSuGJdcZFKIBqdrrimM.jpg", + "backdropPath": "/yPwlBoU9KE8gCpr6FmsnfmPldbP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2016-04-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 17, + "popularity": 0.7677 + }, + { + "id": 83122, + "title": "Kemurikusa", + "originalTitle": "ケムリクサ", + "overview": "A story about three sisters struggling to survive in a desolate world surrounded by decaying buildings and red fog. The story revolves around Rin, a girl with an updo. There's also Ritsu, the big sister who has cat ears and is always calm, and Rina, the innocent, cheerful one dressed in a maid's costume. Just what is it that these sisters are after in this mysterious world?", + "posterPath": "/o8RdaIzATv3pzHVtyIyvLS4rq1W.jpg", + "backdropPath": "/1EVZNFz2amAVpqAqtP1pK6Dvjjr.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-01-09", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 16, + "popularity": 0.766 + }, + { + "id": 68389, + "title": "Usakame", + "originalTitle": "うさかめ", + "overview": "The girls of the Usakame High tennis club, Kinako Tanaka, Ayako Suzuki, Kurumi Satou, and Nishi Nishiarai-Taishi, pursue their various dreams... The series depicts the mostly ordinary but slightly strange daily lives of four girls who devote themselves to practice.", + "posterPath": "/7nYKlDPpyGpKYu9E4ncKDdK43GD.jpg", + "backdropPath": "/ajMMM6e3rtpo6ArGyCeN2GBouhg.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-04-12", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.5, + "voteCount": 6, + "popularity": 0.7645 + }, + { + "id": 98747, + "title": "Iriya's Sky, Summer Of UFOs", + "originalTitle": "イリヤの空、UFOの夏", + "overview": "Asaba Naoyuki is an ordinary high school student. As a member of his school's press club, he's just spent the summer camping outside the local military base, in hopes of seeing the UFOs that are secretly kept there, according to local legend. Returning to school, he meets a strange girl, Iriya Kana, and gradually comes to realize that she is more than merely strange - and that a dark secret lies beneath the world that he knows.", + "posterPath": "/eyrATVU2P8T1PKpHZGUteYgsR3m.jpg", + "backdropPath": "/pPR27fLmynWSFyDQESuGeuimMF9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2005-02-25", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 0.7628 + }, + { + "id": 46673, + "title": "Samurai Girl Real Bout High School", + "originalTitle": "SAMURAI GIRL リアルバウトハイスクール", + "overview": "At Daimon High School, kids settle their disputes by dueling with each other in the school's official battle arena. Ryoko Mitsurugi, the samurai girl, is called upon by a mysterious Priestess to protect the Earth from an invasion coming from the alternate universe of Solvania. She must face battles that will test her skills, her friendships, and her heart.", + "posterPath": "/j3bRP7G80ERZpVl54WpdPrXjVMY.jpg", + "backdropPath": "/7yBgJ26DwR7AH43pwnrQ4OD9sN9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2001-07-30", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 0.7623 + }, + { + "id": 57036, + "title": "Electromagnetic Girlfriend", + "originalTitle": "電波的な彼女", + "overview": "Delinquent Juu Juuzawa is a lone wolf who does not see much use in befriending people. So when a girl named Ame Ochibana claims they are linked together from their previous lives, he is highly skeptical and doesn't want anything to do with her. Even stranger is that her fondest wish is to be his servant. Thinking that Ame must be delusional, he tries to distance himself from her. But when a classmate is murdered, Juu instead decides to keep her close, believing the strange girl to be the culprit. However, her intelligence and skill begin to prove invaluable as the two begin working together to solve the murder.", + "posterPath": "/dTifR1ZSxu6wZbzChjUCYDoSZPA.jpg", + "backdropPath": "/zgM1tWFNcBe4ZJYKQuPZ4IUsBPU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 9648 + ], + "genres": [ + "Animation", + "Drama", + "Mystery" + ], + "releaseDate": "2009-05-01", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 13, + "popularity": 0.7552 + }, + { + "id": 108977, + "title": "Scar on the Praeter", + "originalTitle": "プレイタの傷", + "overview": "In the wake of a rebellion in the Akatsuki Special Ward of Tokyo, agents known as the Scard rise up to become the protectors of peace. With Divine Tattoos that each possess unique powers, they’ll have to fight to preserve their own definitions of justice.", + "posterPath": "/dLX3gkONnNN23HgwCpTGiVwen6b.jpg", + "backdropPath": "/xjlfkkARk6ApJwLWNFQ8Sf5O4e0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2021-01-09", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 3.3, + "voteCount": 7, + "popularity": 0.753 + }, + { + "id": 93570, + "title": "Gal & Dino", + "originalTitle": "ギャルと恐竜", + "overview": "One day, Kaede, a gyaru, picks up a dinosaur and begins living with it. The short comedy depicts their daily lives together as the dinosaur consumes human food, watches TV, and enjoys fashionable things. Thus begins the story of a gal and a dinosaur cohabiting that transcends time.", + "posterPath": "/smkJFso7Lc370aj0M2GK5X8ydlk.jpg", + "backdropPath": "/hzXn0IfNhCNZTSrhuPm7h0pyB0B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-04-05", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.267, + "voteCount": 15, + "popularity": 0.7509 + }, + { + "id": 138273, + "title": "Rilakkuma's Theme Park Adventure", + "originalTitle": "リラックマと遊園地", + "overview": "Rilakkuma, Korilakkuma, Kiiroitori, and Kaoru are off on an adventure to the theme park, but with closing time imminent it leads to a series of fun mishaps and incidents as the group squeeze a day of fun into tiny amount of time.", + "posterPath": "/fkfai3HkZipOqwdHSBYgUB3FN0p.jpg", + "backdropPath": "/luEwmScnXLqGElalZKUuVMJoNEI.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 16 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Animation" + ], + "releaseDate": "2022-08-25", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 7.639, + "voteCount": 18, + "popularity": 0.7506 + }, + { + "id": 87473, + "title": "Yatogame-chan Kansatsu Nikki", + "originalTitle": "八十亀ちゃんかんさつにっき", + "overview": "Kaito Jin is a second year of high school student who moved to Aichi from Tokyo. He meets Monaka Yatogami, who has a heavy Nagoya dialect, and he learns about Nagoya through joining photography club.", + "posterPath": "/46wAXa5YKpYrwK2NyxprCOqVC66.jpg", + "backdropPath": "/8hKmysAkHRjNeAaMcpXXmWDXdCS.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-04-04", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 6, + "popularity": 0.7488 + }, + { + "id": 16576, + "title": "Don Dracula", + "originalTitle": "ドン・ドラキュラ", + "overview": "This is a horror comedy in which a Western-style house in Romania is bought and brought to Tokyo, with the inhabitants still inside. They are Don Dracula the vampire, his daughter Chocola and his servant Igor.", + "posterPath": "/3yFG7uMomcVQrqvVogdXYP9VdOE.jpg", + "backdropPath": "/bIAxTKwaZY90dinvpilYuecIyqy.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "1982-04-05", + "releaseYear": "1982", + "originalLanguage": "ja", + "voteAverage": 6.7, + "voteCount": 11, + "popularity": 0.7474 + }, + { + "id": 31715, + "title": "Strain: Strategic Armored Infantry", + "originalTitle": "奏光のストレイン", + "overview": "In the distant future, mankind is divided into two factions: Union and Deague. They have waged a war against each other for so long that no one remembers when it first began.\n\nSara Werec, the daughter of a respectable family, is a 16-year old girl who attends a Space Academy where she is training to become a pilot. Her brother, Ralph Werec, had been sent to the frontline to accomplish a special mission when she was 11 years old. The two of them had lost their parents when they were young and the bond between the two is very close. It is Sara’s dearest wish to be reunited with her brother. To do that, she must travel to the battlefield where he is.\n\nOne day, Sara’s planet is suddenly assaulted by Deague forces. To her surprise, her brother, Ralph, turns out to be one of the raiders who successfully kidnap a mysterious girl sleeping in a capsule.", + "posterPath": "/2WrCZULqB481U27oqAOtTLn5dqj.jpg", + "backdropPath": "/slBzY18bTsr9mSnj2iZI73ebpOh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-11-01", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 7, + "popularity": 0.7455 + }, + { + "id": 115931, + "title": "Starship Girl Yamamoto Yohko", + "originalTitle": "それゆけ!宇宙戦艦ヤマモト・ヨーコ", + "overview": "Meet Yohko Yamamoto - a cat-eyed, 15-year-old girl in the late 20th century with a love for videogames and Pocky. Because of her exceptional talent with arcade shooters, she's been recruited by Lawson to travel a thousand years into the future to pilot the prototype ship TA-29. Together with Ayano Elizabeth Hakuhoin, Madoka Midoh and Momiji Kagariya, Yohko leads the Terran team against Rouge and Ness' infamous Red Snappers in this epic space adventure.", + "posterPath": "/x1gVytl9YiNs2cUcSUWzdZdAqWx.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1996-03-06", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 7, + "popularity": 0.7425 + }, + { + "id": 22827, + "title": "Momo, Girl God of Death ~ Ballad of a Shinigami", + "originalTitle": "しにがみのバラッド。", + "overview": "A girl wrapped in white, her name is Momo... in her hand lies a blunt yet shiny scythe. By her side is a winged black cat by the name of Daniel. Carrying the souls of humans, the girl's existence parallels to that of a \"Death God\" or \"Shinigami\". At the instant when this white Death God touches the hearts of humans, the world is filled with kindness and grief.", + "posterPath": "/qS2j95cqfvSyDmLsfKmDtJQ2T0g.jpg", + "backdropPath": "/pteY5Pr4hrO8rJ4EDCpOKexEUb1.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2006-03-02", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 8, + "popularity": 0.7425 + }, + { + "id": 134580, + "title": "Estab-Life: Great Escape", + "originalTitle": "エスタブライフ グレイトエスケープ", + "overview": "The distant future. After reaching its peak, Earth's population fell into decline. AI was developed to help preserve the species and manage the ecosystem; a grand experiment in human diversity. Through genetic engineering, a diverse array of peoples, including beastfolk, magical beings, and more, was created to live in a diverse city separated into walled \"clusters\".\n\nEach cluster developed a unique culture, befitting of the people that lived there. Their lives, and the system, is continually maintained by the AI to ensure survival.", + "posterPath": "/i2gYUsPnzcY8caQGWoTUrpQYypu.jpg", + "backdropPath": "/7wKEIfF62WllJavkkSGRGEuYCR3.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2022-04-07", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 7, + "popularity": 0.7399 + }, + { + "id": 66016, + "title": "Ninja Boy", + "originalTitle": "伊賀野カバ丸", + "overview": "After the death of Saizou, Kabamaru's horribly strict grandfather and iga ninja-sensei (teacher), an old lady Ran Akoko claims that she received a letter from him asking her to take care of his grandson. So Kabamaru runs off with Lady Akoko to the big city Tokyo to gorge himself on yakisoba, Ramen, chow-mein and attend a regular school which turns out to have weird quirks of its own.", + "posterPath": "/cdPh9ewZ4CkF3oPfnJKWIuf9S1B.jpg", + "backdropPath": "/q1wgemnRNUAFVMgXam0yCJ3Jdta.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1983-10-20", + "releaseYear": "1983", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 8, + "popularity": 0.7398 + }, + { + "id": 68144, + "title": "Cheating Craft", + "originalTitle": "一课一练", + "overview": "In a world where exams decide your fate, two students clash—one cheats, one studies. The exam hall becomes a warzone.", + "posterPath": "/8xgSahlLxsIsfnXZHol0Qzj6d.jpg", + "backdropPath": "/mNf5yD2GrrZDTrDEsP3DyqvWevP.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2016-10-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 14, + "popularity": 0.7365 + }, + { + "id": 42510, + "title": "R-15", + "originalTitle": "R-15", + "overview": "At a school full of geniuses from varying fields of study, Taketo Akutagawa has a special – albeit different – genius as well: writing harem novels. Now amongst the other geniuses, he aims win the interclass competition and be recognized as the world’s greatest harem writer.", + "posterPath": "/5SjAtNsvP9U608YU8Yslo6Ezs0g.jpg", + "backdropPath": "/i1mNLSp7Xf0RRlKhdg0hzCaTog8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2011-07-10", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 4.625, + "voteCount": 8, + "popularity": 0.7357 + }, + { + "id": 88590, + "title": "Tokyo Marble Chocolate", + "originalTitle": "東京マーブルチョコレート", + "overview": "Chizuru loves Yuudai; Yuudai loves Chizuru. Yet neither of them can say it clearly because each is uncertain about the other’s feelings and is afraid of being hurt. Trapped by their insecurities in a relationship that’s going nowhere, they drift further and further apart. While Chizuru thinks this is the end of the road, Yuudai struggles desperately to overcome his cowardly nature before he loses what is most important to him. There are two stories to every relationship, but can love survive if they don’t meet halfway?", + "posterPath": "/8DjqvWGZQ90oixPwJiipKDGEIEE.jpg", + "backdropPath": "/tlb9HNvy9YDFrrASv3K3WuXz9wj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2007-12-19", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.5, + "voteCount": 8, + "popularity": 0.7352 + }, + { + "id": 85775, + "title": "Fire Emblem", + "originalTitle": "ファイアーエムブレム 紋章の謎", + "overview": "Forced into exile by the sudden betrayal of an ally, Prince Marth leads a retinue of loyal knights across the continent, targeting enemy factions and gathering powerful new allies on the way to reclaiming their kingdom.", + "posterPath": "/tg1QbkTrg1P8paX9yw8qK2UyDIy.jpg", + "backdropPath": "/sehzF4g9Luiagpfg2tpuRQOmfE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1996-01-26", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 5, + "popularity": 0.7349 + }, + { + "id": 43033, + "title": "Ajimu: Beach Story", + "originalTitle": "あじむ ~海岸物語~", + "overview": "One morning as he arrives at the train station on his way to school, 17-year-old Nakaido Hirosuke catches sight of a beautiful girl, Ajimu Yasuna, and immediately falls for her. The two of them get to know each other and become friends. As events and other people present obstacles for the potential couple to clear, their relationship begins to develop and their feelings become clear.", + "posterPath": "/semx3ZWINETi3HWB5MSTeC8EKFm.jpg", + "backdropPath": "/egu6ZjXNsneZleBF2wEFKOfdXBY.jpg", + "mediaType": "tv", + "genreIds": [ + 18, + 16 + ], + "genres": [ + "Drama", + "Animation" + ], + "releaseDate": "2001-06-15", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 5, + "popularity": 0.7332 + }, + { + "id": 76895, + "title": "Chocotto Sister", + "originalTitle": "ちょこッとSister", + "overview": "Haruma Kawagoe is an only child. A long time ago, around Christmas, his mother miscarried the child that would have been his baby sister. That night, young Haruma knelt down and offered up an earnest prayer: \"Please make my mother well again, and please give me a little sister.\" Years have passed, and Haruma has nearly forgotten about his prayer. But Santa did not... so one Christmas, when Haruma is least expecting it, he receives an unusual present — a sister named Choko.", + "posterPath": "/gtLKcQp3vRpmifCTth7KNS8hSuz.jpg", + "backdropPath": "/7YFahPSo08Pg5rBsvZ14sxDJFNZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2006-07-11", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.167, + "voteCount": 6, + "popularity": 0.7322 + }, + { + "id": 215402, + "title": "Phoenix: Eden17", + "originalTitle": "火の鳥 エデンの宙", + "overview": "In the age of space exploration, Romi and George flee a devastated Earth in search of a new world.", + "posterPath": "/zMhJg3twKFWzOWeUYN8XEQAtGlZ.jpg", + "backdropPath": "/1hAzei8mGggIobIuY8eD1Ah4ZN0.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2023-09-13", + "releaseYear": "2023", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 16, + "popularity": 0.7319 + }, + { + "id": 67041, + "title": "RG Veda", + "originalTitle": "聖伝-RG VEDA", + "overview": "At the dawn of time, the gods ruled the universe under the leadership of the mighty Tentei. But suddenly, the ferocious general, Taishakuten, appears, and destroys Tentei. Taishakuten declares that a new age has begun, and all who oppose him will die horribly. But legend says that a shimmering six-pointed star will rise into the heavens and restore the world to a golden age. The six points are six warriors, each with the power to move the stars and the hearts of all people...", + "posterPath": "/pnMiEUyRqjyFoKXDq5g3CuhaIHx.jpg", + "backdropPath": "/ixhfrMycFf9nFYD2tZrmITPwKgC.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1991-06-01", + "releaseYear": "1991", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 6, + "popularity": 0.7319 + }, + { + "id": 74186, + "title": "THE iDOLM@STER Side M", + "originalTitle": "アイドルマスター Side M", + "overview": "315 Production – a newly set up small talent agency – has assembled a group of aspiring male idols from various occupational fields. They include a former lawyer, a former doctor, former pilot and so on… Even though everyone hails from different backgrounds, they share a common dream: to be the top idol. And so, the stories of these male idols at 315 Production take centre stage…", + "posterPath": "/ss5xyuQWeND2RlAJpJ0BqUEKzef.jpg", + "backdropPath": "/AkOr6zM4n7XH1qwdh6djR0bW5ye.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2017-10-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 8, + "popularity": 0.7316 + }, + { + "id": 34089, + "title": "Smash Hit!", + "originalTitle": "ヒットをねらえ!", + "overview": "Mitsuki Ikuta works for the Houchiku Corporation, making movies. To all who know her, she is perceived as being a very infantile woman, still wearing childish fashions. A fan of the detective movie genre, she suddenly finds herself chosen to be the main producer of a new film—but it's a \"hero movie\" (a genre generally considered childish). Determined to succeed, regardless, she takes on the job.", + "posterPath": "/yXyKMfZkgShQTTToGoOP5QjtYea.jpg", + "backdropPath": "/2wO3yUpyDucXqqPQJww6XyJl3E1.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2004-03-09", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 4.143, + "voteCount": 7, + "popularity": 0.7309 + }, + { + "id": 29955, + "title": "Mutant Turtles: Superman Legend", + "originalTitle": "ミュータント タートルズ 超人伝説編", + "overview": "When the Teenage Mutant Ninja Turtles acquire Mutastones from Crys-Mu, the spirit of light, they acquire the ability to enhance themselves into Super Turtles for a duration of three minutes. Meanwhile, the evil Shredder and his minions Bebop and Rocksteady stumble upon the Dark Mutastone, which transforms them into Devil Shredder, Supermutant Bebop and Supermutant Rocksteady, respectively. But the Turtles have one more trick up their shells: all four of them can combine into their ultimate form—Turtle Saint.", + "posterPath": "/tUAkpZfNYlDctO0QzpvUofihFoo.jpg", + "backdropPath": "/ukYayucPeO2DiO6A3oHDel4EQZP.jpg", + "mediaType": "tv", + "genreIds": [ + 10765, + 10759, + 35, + 16 + ], + "genres": [ + "Sci-Fi & Fantasy", + "Action & Adventure", + "Comedy", + "Animation" + ], + "releaseDate": "1996-05-21", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.833, + "voteCount": 6, + "popularity": 0.7302 + }, + { + "id": 66856, + "title": "Locodol", + "originalTitle": "普通の女子校生が【ろこどる】やってみた。", + "overview": "", + "posterPath": "/6daShVAkknB1wJvQoIFmPQ015Sg.jpg", + "backdropPath": "/mUe1Rk9lx0Y9cqMyQCyQctvTh3T.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2014-07-04", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 7.9, + "voteCount": 9, + "popularity": 0.73 + }, + { + "id": 65337, + "title": "Long Riders!", + "originalTitle": "ろんぐらいだぁす!", + "overview": "Ami Kurata, a first-year university student who has no athletic ability, suddenly falls in love with a folding bicycle after seeing it in front of a train station. Inspired by her newfound love, she starts saving up to buy a bicycle and to learn cycling.", + "posterPath": "/aQ9rwavK1WuS8fEoG35pE646JlJ.jpg", + "backdropPath": "/4zP6Q5KRvxXUSbG75Eva7eIigdA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-10-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 5, + "popularity": 0.7173 + }, + { + "id": 95248, + "title": "Shikizakura", + "originalTitle": "シキザクラ", + "overview": "Shikizakura: where cherry blossoms are in full bloom while trees are colored with autumn leaves. In this special place, where the transient world meets the spirit world, a ritual to save humanity is about to begin…\n\nHigh school student Kakeru Miwa, by a strange turn of events, winds up being an irregular member of a power suit team tasked with battling Oni. These Oni possess humans and try to cling to the transient world. Only the power suit, Yoroi, which combines ancient secrets with the latest technology, can protect people from Oni. Kakeru decides to become a hero who will battle Oni and protect Ouka Myoujin, the shrine maiden fated with saving the world.", + "posterPath": "/gjN2M88fpPUBc5UbYRcgX30Care.jpg", + "backdropPath": "/n8rr6yQjttsf5qzIgVQhGphZDio.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama" + ], + "releaseDate": "2021-10-10", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 5, + "popularity": 0.7156 + }, + { + "id": 31666, + "title": "Gad Guard", + "originalTitle": "ガドガード", + "overview": "It’s the future, and humanity is worn out. Hajiki’s struggling to make ends meet on the hard-luck streets of Night Town, where everyone is fighting for the same thing: the Gad. If you’ve got a Gad, you’ve got the power of a robotic Techode at your disposal.", + "posterPath": "/lBIevnUbnmrNh6XbxN5PkBo9Hgf.jpg", + "backdropPath": "/wUelvA5j4L3MsG1BrRxXHRbxzb1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2003-04-16", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 6.9, + "voteCount": 10, + "popularity": 0.7148 + }, + { + "id": 219959, + "title": "Hanaukyou Maid Team", + "originalTitle": "花右京メイド隊", + "overview": "After his mother dies, 14-year-old Taro moves into his grandfather to the Hanaukyo mansion in Tokyo. Soon after he arrives, his grandfather disappears. He inherits the huge estate and his grandfather harem of beautiful young maids.\n\nAired as part of Anime Complex, but was cut short due to production issues. Rebooted, later, as \"Hanaukyo Maid Team: La Verite.\"", + "posterPath": "/jT0M9EhYRbV44ZT0KlkVpac28hO.jpg", + "backdropPath": "/j5rzQYOJLKeZ3IyYA7UBOtI8StE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2001-04-12", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 4.75, + "voteCount": 8, + "popularity": 0.7114 + }, + { + "id": 97626, + "title": "Mobile Suit Gundam MS IGLOO 2: Gravity Front", + "originalTitle": "機動戦士ガンダム MS IGLOO 2 重力戦線", + "overview": "The storyline takes place during the One Year War of the Universal Century. It explores the ground phase of the One Year War from the Earth Federation's point of view.", + "posterPath": "/eTepOmhWDxNJOkOjjSMkwXpzIU1.jpg", + "backdropPath": "/1nsC5nUuNI2DRCvntg2oOtPQTj0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10768 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "War & Politics" + ], + "releaseDate": "2008-10-24", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 5, + "popularity": 0.7095 + }, + { + "id": 65298, + "title": "Ojisan and Marshmallow", + "originalTitle": "おじさんとマシュマロ", + "overview": "Kusaka is an older man who loves marshmallows, and Wakabayashi is an OL (office lady) who loves Kusaka. Their relationship unfolds at their office.", + "posterPath": "/1y0qKcDdLvfudgP8ScarjZTGBp2.jpg", + "backdropPath": "/RLBhLZmRCikcvxzd6JBDefVEoz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 34, + "popularity": 0.7053 + }, + { + "id": 73946, + "title": "INUYASHIKI LAST HERO", + "originalTitle": "いぬやしき", + "overview": "Aliens replace middle-aged Inuyashiki's body with a combat robot. He uses it to fight high schooler Shishigami, who's using the same power selfishly.", + "posterPath": "/53cafnW5gwzrSUagSCwippMlfDa.jpg", + "backdropPath": "/nzhMMfyGBfuAo4GWKfn8SckGGbQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2017-10-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 8.027, + "voteCount": 295, + "popularity": 0.7047 + }, + { + "id": 37857, + "title": "Yumeria", + "originalTitle": "ゆめりあ", + "overview": "When Tomokazu Mikuri wakes up next to the girl of his dreams, it will be up to him and a fleet of lovely ladies to stop an alien invasion that could turn their lives into a living nightmare!", + "posterPath": "/8sHBJRKZ5tEG47AFqLoGEdh0eA6.jpg", + "backdropPath": "/yijpsR3NTV9uj2Mh3oT6A8Firs.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "2003-01-08", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 5.75, + "voteCount": 8, + "popularity": 0.7025 + }, + { + "id": 63084, + "title": "Ushio and Tora", + "originalTitle": "うしおととら", + "overview": "Ushio thinks his father's tale of an ancient ancestor impaling a demon on a temple altar stone with the legendary Beast Spear is nuts, but when he finds the monster in his own basement, Ushio has to take another look at the family legend! Fortunately, Ushio knows it's best to let sleeping dogs lie and leave captured demons where they are. Unfortunately, the release of the monster's evil energies begins to beckon other demons to Ushio's hometown! To save his friends and family from the invading spirits, Ushio is forced to release Tora from his captivity. But will the cure prove to be worse than the curse? Will Ushio end his life a Tora-snack? Or will the Beast Spear keep Tora in line long enough to save the city?", + "posterPath": "/akn5lFnFpdvXvZP0RRkHD1poTIc.jpg", + "backdropPath": "/zrSZGq6AFUPvtwW3LK5lyxCCvYN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1992-09-11", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 8, + "popularity": 0.7015 + }, + { + "id": 72525, + "title": "THE REFLECTION", + "originalTitle": "THE REFLECTION", + "overview": "After The Reflection, some of the people in all parts of the world are discovered with super powers. Some become heroes, and others villains. How did the Reflection happen? What was the cause of it? With many unsolved mysteries, the world is led into turmoil.", + "posterPath": "/A6lu63gmcN1UP6eq2MgqVHE8AXo.jpg", + "backdropPath": "/7H6YsmJZ6NwXFak6CfmZ8ygQbTP.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2017-07-22", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.15, + "voteCount": 10, + "popularity": 0.7003 + }, + { + "id": 94196, + "title": "Battle Athletes Victory", + "originalTitle": "バトルアスリーテス大運動会", + "overview": "Akari Kanzaki has just joined an all-girls academy in hopes of entering the University Satellite, an elite sports training facility. She wants to win the title of Cosmo Beauty - a title held years ago by her mother. It's not an easy task for her as fear, doubt and peer pressure get in her way, but friends, rivals and fans slowly encourage her to overcome her obstacles and become the best of the Battle Athletes.", + "posterPath": "/p9JUgmTRbSTDxySrUijISNsd8vX.jpg", + "backdropPath": "/4TRyQbMaWot6fCqjkLE1LpLdM7r.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1997-10-03", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 7, + "popularity": 0.6939 + }, + { + "id": 95039, + "title": "Murder Princess", + "originalTitle": "MURDER PRINCESS", + "overview": "On the 4th day of the Month of Jade, Cyndina Era 672, a coup d'état in Forland forces Princess Alita to flee her father's castle, when she encounters Falis, the strongest bounty hunter in history. It is rumoured that Falis killed a dragon and is accompanied by Dominikov.\n\nAn accident sends Alita and Falis falling off a cliff. In this near-death experience a light engulfs them, exchanging their souls. Falis, now in Alita's body, is asked to protect the country as \"princess\". And so Falis becomes the world's fiercest ruler, the Murder Princess.", + "posterPath": "/c2FfZZKjVoFqNQ12ltaaDzmkFr1.jpg", + "backdropPath": "/rJH73mBI5s7HWVba2ZfHD1ZI3We.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "2007-03-28", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.577, + "voteCount": 13, + "popularity": 0.6933 + }, + { + "id": 34780, + "title": "Dragon Half", + "originalTitle": "ドラゴンハーフ", + "overview": "Knights and Dragons are mortal enemies, right? And everyone knows what happens when a Knight meets a Dragon, right? Wrong! When a Knight and a Dragon meet and fall in love, the result is Mink, a precocious young female who's half human, half dragon and all trouble! Exactly how much trouble? Well, in consideration of the fact that having vestigial wings and a tail isn't a problem most teenage girls have to bear, one can perhaps cut our heroine a little slack.\n\nHowever, when Mink insists on compounding her difficulties to infinite proportions by falling in love with handsome pop star - and professional Dragon Slayer - Dick Saucer, she really has put her heart before her head! Talk about problem dates! Will this turn out to be a love story where the hero really does get the girl... on the end of his sword?", + "posterPath": "/7Jm1PpOJmxKxO32aK0oR8bWzYTb.jpg", + "backdropPath": "/kLGRq0dlioIOvQU1Es3gjZzWcQb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "1993-03-26", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 8, + "popularity": 0.6916 + }, + { + "id": 44202, + "title": "Iketeru Futari", + "originalTitle": "イケてる2人", + "overview": "Keisuke Saji is a rather energetic young man who is quite smitten with the mysterious Koizumi Akira who appears to hate men. And then there is also Saji's well-endowed childhood friend Yuki who sees Akira as a rival. So what will become of this love-triangle?", + "posterPath": "/id1UxifTa03rnoXry6sCgucpiGd.jpg", + "backdropPath": "/v2520uogfizQg5EC9kgJZ2Jql7q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "1999-02-02", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 6, + "popularity": 0.6913 + }, + { + "id": 67616, + "title": "Cheer Boys!!", + "originalTitle": "チア男子!!", + "overview": "Disheartened with judo, college student Haruki Bando was invited by his childhood friend Kazuma Hashimoto to create \"BREAKERS\", an unprecedented boys' cheerleading team. Those that came to join all were very characteristic in nature: argumentative Mizoguchi, voracious Ton, frivolous Kansai boys Gen and Ichiro, and Sho who has cheerleading experience.", + "posterPath": "/a5g8lIymedbfQAuYTzVfhdgPc0J.jpg", + "backdropPath": "/lWidQ4mtxpbLHTij3lePVp1tVSi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2016-07-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 12, + "popularity": 0.6894 + }, + { + "id": 46798, + "title": "Inferno Cop", + "originalTitle": "インフェルノコップ", + "overview": "The story deals with those in this world who dwell in the dark, invisible to the naked eye. From time to time, these figures bare their fangs and attack people. Inferno Cop is a messenger of justice who came from the depths of hell to protect people from them.", + "posterPath": "/qhxvFL1CZX1jqWMFC32CCtY2xIn.jpg", + "backdropPath": "/gDa9fIwuBf98ZqYmTGKhJEYGpE1.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759, + 80 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2012-12-25", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 31, + "popularity": 0.6893 + }, + { + "id": 132560, + "title": "Strait Jacket", + "originalTitle": "ストレイト・ジャケット", + "overview": "In a world where magic and science coexist, Leiot Steinberg is a tactical sorcerer who fights monsters that were once human beings.", + "posterPath": "/satFLfnrhTWHyABLNGohB3UBdcK.jpg", + "backdropPath": "/5lhdRe3Ivtywro2FG5GHN5KxA6B.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-11-25", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 8, + "popularity": 0.6862 + }, + { + "id": 67019, + "title": "Ozmafia!!", + "originalTitle": "オズマフィア", + "overview": "Having transferred into Oz Academy, Scarlet finds himself already in trouble. The three boys who save him in his time of need are named Caramia, Kyrie, and Axel", + "posterPath": "/9GVldPlw19glHYPOVycIhezZj5G.jpg", + "backdropPath": "/lbl3ykJSehiZvhyEi3Vboz5sg7O.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 6, + "popularity": 0.6847 + }, + { + "id": 92710, + "title": "Another World", + "originalTitle": "ANOTHER WORLD", + "overview": "Spin-off of the movie Hello World which is narrated from the point of view of the character of Naomi. The story is located 10 years in the future.", + "posterPath": "/cFw0rO72AImFaCkPBvVchm0dLWH.jpg", + "backdropPath": "/fgklHjMYhH9U0tenzEmNbHfaKpP.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-09-13", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.9, + "voteCount": 10, + "popularity": 0.6846 + }, + { + "id": 91587, + "title": "Null & Peta", + "originalTitle": "ぬるぺた", + "overview": "Girl genius \"Null\" has just lost her beloved big sister \"Peta\" in an accident. But don’t you worry! She’ll just use her naturally gifted intelligence to bring her big sister back as a robot! But is her newly-revived big sister just a little different than before? It’s time for the wacky comedy hijinks of little sister \"Null\" and big sister robot \"Peta\"! \"Big Sis! Your plug fell out of the wall!\"", + "posterPath": "/kGu6uY7GHKzYVHexCkAVyKPSfR1.jpg", + "backdropPath": "/wpZDysdfYM7VY0ik6y9ZQZuapZa.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Comedy" + ], + "releaseDate": "2019-10-04", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 9, + "popularity": 0.6836 + }, + { + "id": 125464, + "title": "Angel Densetsu", + "originalTitle": "エンジェル伝説", + "overview": "New kid in town Seiichirou Kitano is a noble, sensitive boy with \"the face of a devil and the kindness of an angel.\" Pushed into a world of drugs and crime simply because of the way he looks, he tries to make the world a better place without fighting.", + "posterPath": "/jQXIbP4VEGQbvJ3mLcv94GIcfeD.jpg", + "backdropPath": "/xFhfjKPNgTNrIs9lqBo32zaARTW.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1996-12-13", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 0.6831 + }, + { + "id": 9071, + "title": "Legend of Black Heaven", + "originalTitle": "課長王子: Hard Rock Save the Space", + "overview": "Life can crush your dreams. Oji is a middle-management drone whose only grip on sanity, in the drudgery of his corporate lifestyle, are the few shreds of hope surrounding his past life as the amazing guitarist of Black Heaven, a heavy metal band that almost made it. In his bleakest moment, the magic of performing is restored to him when a beautiful mysterious woman informs him that only his special sound can save the universe from an evil alien invasion. HARD ROCK SAVES SPACE!?", + "posterPath": "/eOX25VIvyMZAGFgHKtXpFf3I40A.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1999-07-08", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 0.6818 + }, + { + "id": 87464, + "title": "RobiHachi", + "originalTitle": "RobiHachi", + "overview": "Down-on-his-luck Robby Yarge is about to go from deep trouble to deep space! After a second encounter with Hatchi Kita ends with him on the run, Robby decides to make for Isekandar, a planet that promises happiness. But when he finds Hatchi stowed away on his ship, the two will make the journey across the stars together! Can these total opposites survive a trek through space?", + "posterPath": "/1uyonI8Ws5qWCRj7D4CYVnRpRvx.jpg", + "backdropPath": "/vmxdrsDQwiP88VAfr8ufkrnsuPS.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2019-04-08", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 0.681 + }, + { + "id": 44898, + "title": "Ozma", + "originalTitle": "オズマ", + "overview": "Ozma is a 2012 Japanese anime television series, based on an unused script from 1980 written by manga author Leiji Matsumoto.\n\nThe story is set on Earth in the future when abnormal activity on the sun devastates Earth's atmosphere and covers the entire planet in a sea of sand. Sam pursues Ozma, an enemy of his brother. One day, Sam encounters Maya, who is being chased by the Theseus army.", + "posterPath": "/oVpeA47pBOwOZlUFX83jVLOLxy3.jpg", + "backdropPath": "/iG0WZ0KHmXGkijPzYUjUjXhEJ85.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2012-03-16", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 6, + "popularity": 0.6804 + }, + { + "id": 104840, + "title": "Akane Maniax", + "originalTitle": "アカネマニアックス", + "overview": "Jouji Gouda, a new transfer student at Hakuryo High, instantly falls in love with Akane Suzumiya and boldly proposes to her, right on his first day at the new school. Although Akane finds him very annoying, hot-blooded and simple-minded this does not discourage Jouji, who keeps on trying to find ways to express his love to Akane.", + "posterPath": "/7Bp1AMPmyPbthIa8c6L26Xui6sH.jpg", + "backdropPath": "/aUOV7Xij21f1PXQhJ8dydYJCQs2.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2004-11-25", + "releaseYear": "2004", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 5, + "popularity": 0.6771 + }, + { + "id": 65382, + "title": "Girl Meets Bear", + "originalTitle": "くまみこ", + "overview": "The anime follows Machi, a middle school student who serves as a shrine maiden at a Shinto shrine and takes care of a bear, who lives on mountain in Japan's northern Tohoku region. The bear, Natsu, has the ability to talk and is Machi's guardian. When Machi explains to Natsu that she will attend a school in the city, he gives Machi a set of trials that she must pass in order to be able to survive city life.", + "posterPath": "/dcvMJHvPlQJOzP5jW57RxkVa85b.jpg", + "backdropPath": "/nRhveRFvxCDFBvpKZD2yg0JyDuY.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2016-04-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.7, + "voteCount": 14, + "popularity": 0.6762 + }, + { + "id": 44538, + "title": "Ayane's High Kick", + "originalTitle": "綾音ちゃんハイキック!", + "overview": "High schooler Ayane dreams of going pro as a female wrestler — until she meets an brilliant kickboxing trainer who has other plans for her trademark special move.", + "posterPath": "/awvVWTw8vZMFVsCqATX6OgzVCRl.jpg", + "backdropPath": "/rgj0NYW1w3rCIwoNBIM2nwtdcSM.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "1997-01-21", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 3.571, + "voteCount": 7, + "popularity": 0.6717 + }, + { + "id": 68405, + "title": "Honobono Log", + "originalTitle": "ほのぼのログ", + "overview": "Based on an illustration book by Naka Fukamachi. The anime offers heartwarming peeks at the lives of close couples and families.", + "posterPath": "/qhjAjkQibM2HhBEKiUgYWsENKux.jpg", + "backdropPath": "/2CWh6yHfu2HIiQ72zsJ98MYZQYl.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-07-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 10, + "popularity": 0.6705 + }, + { + "id": 126273, + "title": "Cobra The Animation: The Psycho-Gun", + "originalTitle": "COBRA THE ANIMATION ザ・サイコガン", + "overview": "Unknowingly Utopia More discovers an ancient record that holds to the key to the universe. With the universe in her grasp, the ruthless Gypsy Doc of the Pirate Guild has his eyes on the power she wields. That is until the legendary space pirate, Cobra, gets in his way and saves Utopia. The two must now work together to stop Gypsy Doc from taking over the universe.", + "posterPath": "/gQWHV1WuJTZgw3KtmWQWIszbX7N.jpg", + "backdropPath": "/ek2gvRzKzD16uiQAXwkkl16BkI7.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2008-08-28", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 6, + "popularity": 0.6648 + }, + { + "id": 204098, + "title": "Murai in Love", + "originalTitle": "村井の恋", + "overview": "Murai, a peculiar high school boy, is in love with his otaku teacher Tanaka. However, Tanaka rejects him, saying that she would never be interested in a boy with long, black hair. Murai then cuts his hair and dyes it blond, becoming the spitting image of Tanaka's favorite video game character.", + "posterPath": "/nIGIRxEiwWRi0CS90YqNBqpIcHo.jpg", + "backdropPath": "/9j86SbzeLkya3a9Ygo3IlUBGLI2.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2024-10-06", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 6.286, + "voteCount": 7, + "popularity": 0.6599 + }, + { + "id": 95766, + "title": "Show by Rock!! Mashumairesh!!", + "originalTitle": "SHOW BY ROCK!! ましゅまいれっしゅ!!", + "overview": "New Show by Rock!! TV Series featuring the new band Mashumairesh!!.", + "posterPath": "/xCWFkkZMxBs3rAOGN6wKT6TGvEW.jpg", + "backdropPath": "/pg7B41pnC8OkrUueZjpwTiGQo0O.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2020-01-09", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.375, + "voteCount": 8, + "popularity": 0.655 + }, + { + "id": 104332, + "title": "Green Legend Ran", + "originalTitle": "グリーンレジェンド乱", + "overview": "Two youths fight for survival on our hostile planet and find hope. The sea, the sky and the land had been completely polluted by mankind when mysterious objects fall from the heavens.", + "posterPath": "/5tJz732frQ1007woBGHAeYGjBCH.jpg", + "backdropPath": "/hfS52AscpmfIQR5bSPrdVDbXMs8.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "1992-11-25", + "releaseYear": "1992", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 5, + "popularity": 0.6549 + }, + { + "id": 44509, + "title": "Demonbane", + "originalTitle": "機神咆吼デモンベイン", + "overview": "Arkham City is being terrified by the dreadful crime organization called the Black Lodge. The War between Demonbane and Masterterion has just begun!", + "posterPath": "/13cCFI4unsBWB728ph3vCwnldlD.jpg", + "backdropPath": "/smtNOHz8ZSx42e7k7jJEYsLyow9.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10765 + ], + "genres": [ + "Animation", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2006-05-18", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 8.129, + "voteCount": 31, + "popularity": 0.6534 + }, + { + "id": 82795, + "title": "Between the Sky and Sea", + "originalTitle": "ソラとウミのアイダ", + "overview": "Set in Onomichi City, six girls dream of becoming Space Fishermen. They aim to capture god-eating monsters that leave fish vulnerable, as well as enemies which they encounter.", + "posterPath": "/5I2cVh7XmuV8kowLvLsGwfGcc56.jpg", + "backdropPath": "/k4HuJl5V1vulHgDSw6qUhPE4TDt.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-10-04", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.4, + "voteCount": 5, + "popularity": 0.653 + }, + { + "id": 69341, + "title": "Schoolgirl Strikers: Animation Channel", + "originalTitle": "スクールガールストライカーズ Animation Channel", + "overview": "It's the near future. The newly established girls' private school Goryoukan Academy has another face. This school has a special unit, Fifth force, who is assembled and selected from the school's student body in order to fight an enemy called Oburi.\n\nThis is a story about love, courage and friendship about the girls called Strikers.", + "posterPath": "/zejpUiN1xrvbkrSHGPT7vzQfy3i.jpg", + "backdropPath": "/ApUNoBfgOWMeWz70o1O77jn1OA1.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-01-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 3.667, + "voteCount": 6, + "popularity": 0.6491 + }, + { + "id": 60829, + "title": "Rowdy Sumo Wrestler Matsutaro!!", + "originalTitle": "暴れん坊力士!!松太郎", + "overview": "Matsutarō Sakaguchi is a giant roughneck man with strength far beyond ordinary people. He never uttered words like \"work hard,\" \"strive,\" and \"dream\" like the typical shōnen manga protagonist, and he is stronger than anyone and peerless in sumo wrestling. His greatest weakness, however, is his own carefree personality.", + "posterPath": "/ooB6hGsWN03bwfCQJgnO2QTdP5t.jpg", + "backdropPath": "/loaZVcKQbsiTbNWvjLiRGfvTCyf.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2014-04-06", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 5, + "popularity": 0.6488 + }, + { + "id": 74188, + "title": "Two Car", + "originalTitle": "つうかあ", + "overview": "Miyata Yuri and Meguro Megumi are two girls who enter the world of competitive motorcycle sidecar racing on Miyake Island. While they are the complete opposites of each other, and often butt heads, they complement each other well during races. The team will fight other motorcycle sidecar teams from all over Japan, each with their own opposing traits, such as honor student and working student, sadist and masochist, and a funny man and straight man.", + "posterPath": "/9C88oS7gwhp97aJ6BbkHqoHERqV.jpg", + "backdropPath": "/nc2ZJjSL0eADM02nX4z8StjqHZv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-10-07", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 3.8, + "voteCount": 5, + "popularity": 0.6483 + }, + { + "id": 35976, + "title": "Nurse Witch Komugi-chan Magikarte", + "originalTitle": "ナースウィッチ小麦ちゃんマジカルて", + "overview": "Ungrar, the King of Viruses, has escaped from his prison cell in Vaccine World. Maya, the Goddess of Vaccine World sends Mugimaru down to Earth to find a human to accept the powers of Vaccine World and become the Magical Nurse. He finds the best (and the only willing) person for the job when he meets Komugi Nakahara.", + "posterPath": "/xT6VOgVyRkJwhdcQ2HRuQOIzQNM.jpg", + "backdropPath": "/pb83CYfowi3QeT7chf8rl9T5wt8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2002-08-03", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 3.8, + "voteCount": 5, + "popularity": 0.6471 + }, + { + "id": 44587, + "title": "Ani*Kuri15", + "originalTitle": "アニ*クリ15", + "overview": "Ani-Kuri 15 is a series of fifteen 1-minute shorts that aired on the Japanese TV station, NHK between May 2007 and 2008. Intended as companion pieces to the AniKuri program and as filler between regularly scheduled programs, the shorts were broadcast in three seasons of 5 episodes. Each short was directed by a different director and the episodes were collected and uploaded to the official AniKuri15 website in 2008.", + "posterPath": "/6r6n7Z4dmIVrzbBr0uRISz2bzM.jpg", + "backdropPath": "/kV2Tn1hz5XagY5Z3Dv9AqwZWZCb.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35, + 18, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2007-05-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.73, + "voteCount": 37, + "popularity": 0.6432 + }, + { + "id": 77024, + "title": "Dojin Work", + "originalTitle": "ドージンワーク", + "overview": "Doujin Work follows the life of a young girl named Najimi Osana and her exposure into the doujin world. She was first tempted into becoming a doujin artist after seeing how much one of her friends can make at a convention. Najimi loves to draw, though soon learns contrary to what she expected that this new world is anything but easy. As she attends more conventions and meets more people, Najimi eventually manages to find a group of very interesting friends. These friends already have some experience in the field and help her out along the way so that she can someday make a name for herself creating doujinshi.", + "posterPath": "/oveZ6yG1N3Oi25Gpc8xIKJVMB14.jpg", + "backdropPath": "/q0OC9CXNzgqvDufd3ODmKUGGNaw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2007-07-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 6, + "popularity": 0.6425 + }, + { + "id": 28765, + "title": "New Century Legend Mars", + "originalTitle": "神世紀伝マーズ", + "overview": "Mars is discovered on a forming volcano island, Heisei; a man with no memory. In reality, Mars is from outer space, and is supposed to gather information to decide whether Earth should be destroyed or not. Along with the giant robot Gaia, and his mysterious images of a woman urging him not to destroy the world, Mars decides to fight for Earth rather than destroy it, even if it means fighting his own kind. But if Mars is killed, Gaia will explode, destroying Earth along with it.", + "posterPath": "/hNLGHUl85GjT1yThL6AOGraxWPC.jpg", + "backdropPath": "/exfYXiNbf9xGxO9tratPdDVSC2G.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2002-10-31", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 5, + "popularity": 0.6415 + }, + { + "id": 102500, + "title": "Saint☆Young Men", + "originalTitle": "聖☆おにいさん", + "overview": "Jesus Christ and Gautama Buddha, the founders of Christianity and Buddhism, are living together as roommates in a Tokyo apartment while taking a vacation on Earth. The comedy often involves jokes about Christianity, Buddhism, and all things related, as well as the main characters' attempts to hide their identities and understand modern society in Japan.\n\nThis is a 2 episode OVA preceding the movie of the same name.", + "posterPath": "/956DWCHL6zawuUBpTiZ2vKhevuJ.jpg", + "backdropPath": "/oeqFI7H3dAS1pIIWbS7gwUbLgvR.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-12-03", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 19, + "popularity": 0.6399 + }, + { + "id": 66854, + "title": "Saiyuki Gaiden", + "originalTitle": "最遊記外伝", + "overview": "500 years before Saiyuki, a heretic child with golden eyes is brought to Heaven and given into the reluctant care of a minor deity, Konzen, nephew of the Merciful Goddess, Kanzeon Bosatsu. Konzen eventually names him \"Goku\". Goku befriends two other minor gods, Marshal Tenpou and General Kenren of the Western Army of Heaven, and a boy who seems to be his age, the War Prince Nataku. Though Goku is happy in his new home, Heaven is not kind to heretics.", + "posterPath": "/mE0erbyDmvGIkyUJ7cVyrhUk2Q8.jpg", + "backdropPath": "/AVAJZ5LOvSjb7mKyRNGVNxFFPh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2011-03-25", + "releaseYear": "2011", + "originalLanguage": "ja", + "voteAverage": 4.714, + "voteCount": 7, + "popularity": 0.6386 + }, + { + "id": 66114, + "title": "Onigiri", + "originalTitle": "鬼斬", + "overview": "Onigiri thrusts its players into mystical Japan, a land filled with mythical creatures of Japanese legend. Starting as a lone Oni, players fight against the malevolent influence of the Kamikui as their miasma spreads over the land. 8 NPCs, each with their own distinct personality and skills, ally themselves with the player to help build a legend, and quell the evil that has arisen. As you grow stronger together, so do the bonds binding you to each other.", + "posterPath": "/mJwrMUfEh6pRYfY4eSTr2yMFEAE.jpg", + "backdropPath": "/dGplXovAEoS8yWUIzcJlmcAjs9S.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16 + ], + "genres": [ + "Action & Adventure", + "Animation" + ], + "releaseDate": "2016-04-07", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 8, + "popularity": 0.6353 + }, + { + "id": 88064, + "title": "Try Knights", + "originalTitle": "トライナイツ", + "overview": "Riku Haruma enters high school without a future in sight. He sees people playing like monsters on the ground, jumping higher than anyone else, running fast, deciding to try their best. There, he sees Akira Kariya playing rugby, a sport he was once passionate about but gave up due to his physique. While Akira is running roughly, Riku gives him a piece of advice without thinking. From that, Riku feels his dying passion for the sport set ablaze, and his future starts to brighten up...", + "posterPath": "/h4Sps1OqOvWMSoPGbtSL751PjhS.jpg", + "backdropPath": "/dn5cTia4DmlPz8InxCoHX2HDC7F.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2019-07-31", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 7, + "popularity": 0.634 + }, + { + "id": 95559, + "title": "Natsunagu!", + "originalTitle": "なつなぐ!", + "overview": "Natsuna Kunugi, a university student in Tokyo, visits Kumamoto in search of friends who she could not contact following the Kumamoto earthquakes. There, she meets local people who are full of compassion and uniqueness, including the energetic junior high school student, Izumi. A heartfelt coming-of-age story begins.", + "posterPath": "/oit7fDhDcMArQ8BdFhmtiNCGmQa.jpg", + "backdropPath": "/fAXxNQmhf3Gn0F2BwXtsXtJiTml.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2020-01-07", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 9, + "popularity": 0.6276 + }, + { + "id": 36158, + "title": "Ultraviolet: Code 044", + "originalTitle": "ウルトラヴァイオレット:コード044", + "overview": "044 becomes the strongest female soldier excelling in combat through gene manipulation using a virus. However, in exchange for her abilities, her days become numbered.", + "posterPath": "/kn3hzWSL3HIrrApz0UsXvnZFNHh.jpg", + "backdropPath": "/uYWXroHVYEEkaXjpOKua65yi1Xq.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-07-01", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 5, + "popularity": 0.6269 + }, + { + "id": 22474, + "title": "Power Stone", + "originalTitle": "パワーストーン", + "overview": "An ancient legend tells of a magical Powerstone that granted its owner any wish desired. Adventurers from all over the globe clash as they seek this mystical gem.", + "posterPath": "/f4iZjlXAYRAMZz6CiHhrDZeitCz.jpg", + "backdropPath": "/fgtOQ9SuyJ7AXAL6w4j6EYLXJfj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1999-04-03", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 4.9, + "voteCount": 6, + "popularity": 0.6258 + }, + { + "id": 44883, + "title": "Holy Knight", + "originalTitle": "ホーリーナイト", + "overview": "Holy Knight is the story of a young male vampire slayer who reluctantly falls in love with a beautiful female vampire exchange student and their personal struggles to avoid their bloody predestined conflict.", + "posterPath": "/kZzTXVq5hthmNJdeFjsBfVSjiId.jpg", + "backdropPath": "/cOnMJpAMNX5iXpDIoCE15nHx7Ot.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-03-21", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 12, + "popularity": 0.62 + }, + { + "id": 79287, + "title": "Yokohama Kaidashi Kikou", + "originalTitle": "ヨコハマ買い出し紀行", + "overview": "In a peaceful post-apocalyptic world where the coasts have been flooded, the robot Alpha is left in charge of a Cafe by her owner who went off travelling. One day, she receives a package containing a camera, which causes Alpha to take a closer look at the little things in life.", + "posterPath": "/pAUgoYiD5bMZuFVTOjPIyaa72fS.jpg", + "backdropPath": "/mRAxlNic5z6YZDFeZV3lineqfim.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1998-05-21", + "releaseYear": "1998", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 23, + "popularity": 0.6153 + }, + { + "id": 100068, + "title": "Patema Inverted: Beginning of the Day", + "originalTitle": "サカサマのパテマ Beginning of the Day", + "overview": "Despite leading a peaceful life as the princess of a subterraneous colony, teenage Patema longs to escape her cramped industrial confines and experience someplace different. While satiating her curiosity by exploring a region known as the \"danger zone,\" she is startled by a cloaked figure and falls into the darkness of an abyss.\n\nAwakening with the sky below her feet and the ground hanging above, Patema finds herself clinging to a fence at the mercy of a seemingly reversed gravity. Although a nearby student named Age is able to rescue her, they are left wondering which of the two is actually upside down.", + "posterPath": "/unGOydeAXSKPdFkFgIM8KUtmkvW.jpg", + "backdropPath": "/81Vwn5k8aMOos7Y2BdcFmaRxrcK.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2012-02-25", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 7.4, + "voteCount": 10, + "popularity": 0.6126 + }, + { + "id": 92992, + "title": "Moldiver", + "originalTitle": "モルダイバー", + "overview": "Tokyo, 2045 - Young Hiroshi Ozora, a Technical Development Engineer at frontier technology conglomerate ZIC, creates a super-suit which bends the laws of physics and makes him feasibly the strongest superhero of all time. Quickly his exploits earn him the name 'Captain Tokyo' as he becomes a media darling.\n\nAt the same time, the Dolls, a group of deadly, but glamorous teleporting female androids under the control of a mysterious evil scientist calling himself Dr. Machinegal, embark on a wierd crime spree. Moldiver foils their first attempt to steal a classic formula 1 race car from ZIC's race queen contest.\n\nThe winner of that contest just happens to be Mirai Ozora, college student, mall-rat and younger sister of Hiroshi. She's decided that its up to her to discover the secret identity of this mystery hero! And the answer could be more surprising than she ever imagined...", + "posterPath": "/d2wh9BRWL987rg11hFbuVSXWlXT.jpg", + "backdropPath": "/5NoRnSAtEfgVcSm1E1neznL3ZTz.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1993-02-25", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 5, + "popularity": 0.6123 + }, + { + "id": 121536, + "title": "Tight-rope", + "originalTitle": "タイトロープ", + "overview": "Tightrope tells the tale of the reluctant heir of a yakuza family and his childhood friend, and follows their love relationship that started budding in their school days and keeps developing slowly but surely.", + "posterPath": "/pxFT7mD8oTkNlYtw1DN2s47owxX.jpg", + "backdropPath": "/bb8RHw62UnCh7eSmXmhRSDt4CHm.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10759 + ], + "genres": [ + "Animation", + "Comedy", + "Action & Adventure" + ], + "releaseDate": "2012-05-30", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 5.3, + "voteCount": 10, + "popularity": 0.6065 + }, + { + "id": 115853, + "title": "Homeroom Affairs", + "originalTitle": "他人の関係", + "overview": "Tokiro Ehara is a brand new teacher to an all girls school. During his first day on the job, he comes across Miyako, a free thinking senior who will be hard to handle. Through Ehara-sensei, Miyako begins to learn the realities of an adult life, and through Miyako, Tokiro learns that nothing in life is as it seems.", + "posterPath": "/uR7DuoTh15XchjC7uO1Kkwnrqji.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 18 + ], + "genres": [ + "Comedy", + "Animation", + "Drama" + ], + "releaseDate": "1994-08-26", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 4.2, + "voteCount": 5, + "popularity": 0.6063 + }, + { + "id": 79436, + "title": "Ayakashi", + "originalTitle": "アヤカシ", + "overview": "Ayakashi is a metecious form of life, giving unusual forces to the carrier in an exchange on all his life-breath. Yu Kusaka is a student, losing will to live post mortem friend of childhood.", + "posterPath": "/zw804iLJi14gPedWC0le1efFmE4.jpg", + "backdropPath": "/kN20ZHpGMBb5F8BbgvevVp4bItq.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2007-12-03", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 7, + "popularity": 0.5991 + }, + { + "id": 126278, + "title": "Cobra The Animation: Time Drive", + "originalTitle": "COBRA THE ANIMATION タイム・ドライブ", + "overview": "Lady suddenly disappears without a trace. Cobra must race against time and dive into her past to find a way to save her. With assassins, dreams and old acquaintances Cobra will need to outsmart his new enemy. Who was Lady before she met Cobra? How did she get her metal body? Find out in Cobra Time Drive!", + "posterPath": "/u36XTNcxEAl2FLwAH6pKhGJnvg3.jpg", + "backdropPath": "/3BBCWMfACKTDpaaMh3FCZuWrzI3.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2009-04-24", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 7, + "popularity": 0.5977 + }, + { + "id": 89688, + "title": "Itsudatte My Santa!", + "originalTitle": "いつだってMyサンタ!", + "overview": "Mai, a Santa in training, appears in front of an unlucky boy named Santa on Christmas Eve, promising him that she will make him happy for one night.", + "posterPath": "/mrE9g6pgoIJldkj4HcWTrUn1rym.jpg", + "backdropPath": "/iuMj6fG3NZpTNVJY6IrnVX91QJ0.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-12-07", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 5, + "popularity": 0.5942 + }, + { + "id": 45157, + "title": "Rumiko Takahashi Anthology", + "originalTitle": "高橋留美子劇場", + "overview": "Shelter. Employment. Companionship. Rumiko Takahashi explores the stress that can befall people when these basic necessities become endangered. From penguins to wedding chapels to amnesiac husbands, each episode explores supposedly normal people under extreme situations with all of the dramatic skill and warped comedy that you expect from the world-famous creator of InuYasha, Ranma 1/2 and Urusei Yatsura! Rumiko Takahashi Anthology consists of thirteen independent series based on short stories from 1987-2000 by Takahashi Rumiko.", + "posterPath": "/w9iWKySakelL4Ugat27Cvtzc1Ce.jpg", + "backdropPath": "/bMbWR54zWBNKpS9qxWESkzVYcIn.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2003-07-06", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 6, + "popularity": 0.5895 + }, + { + "id": 20469, + "title": "Transformers: Robots in Disguise", + "originalTitle": "トランスフォーマ-・カーロボット", + "overview": "Only Koji and the Autobots can save the Earth from the evil Predacons! The Predacons have been battling the Autobots for thousands of years, but this time, they've kidnapped the world's greatest minds, including Dr. Onishi, a brilliant scientist. Optimus Prime, the leader of the Autobots has dispatched his troops to try to save Onishi and the others, enlisting the help of Koji, Onishi's son. But can these heroes outwit the evil Megatron, leader of the Predacons in time to save the Earth?", + "posterPath": "/yhqNODaL2cy4mjll8RsIdXS8YXv.jpg", + "backdropPath": "/63LMyxmGC6tIrWkxDK0ytpESiXb.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10762, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Kids", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2000-04-05", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 7.6, + "voteCount": 11, + "popularity": 0.5867 + }, + { + "id": 87306, + "title": "The Relative Worlds", + "originalTitle": "ソウタイセカイ", + "overview": "The story is set in Japan in 2020. The story centers on Shin Hazama, and a version of himself who led a different life in another Japan appears. A crack opens in the everyday life that he thought was impossible to change. Boys and girls have to decide what to think and choose when the world changes completely. The battle with another world and another self begins.", + "posterPath": "/u4clNQO7t5Ea8sTQrnGPGKXMvAA.jpg", + "backdropPath": "/fvfnB8F1tkEoGmAo7IIyCGEpB51.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2017-04-28", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 9.1, + "voteCount": 20, + "popularity": 0.5841 + }, + { + "id": 133387, + "title": "I'm Kodama Kawashiri", + "originalTitle": "あたしゃ川尻こだまだよ〜デンジャラスライフハッカーのただれた生活〜", + "overview": "The story depicts the lazy, unhealthy daily life of Kawajiri, who loves alcohol and anything greasy, salty, or sweet.", + "posterPath": "/5WbTGQQpqiQ8t2W2UDC9k1ThGE6.jpg", + "backdropPath": "/tN8OCeLW08RDRQtdpnYY3MQTh8i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2022-01-14", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 4.667, + "voteCount": 6, + "popularity": 0.5777 + }, + { + "id": 72823, + "title": "Military!", + "originalTitle": "みりたり!", + "overview": "The Krakozhia Dukedom and the Grania Republic are at war, and high school student Sōhei Yano wants no part of it. But when two Lieutenants show up in tanks at his door, his life becomes an exercise in dodging stray bullets!", + "posterPath": "/bOvdCJzphgpjm9ZUrLrRNJPGKMt.jpg", + "backdropPath": "/kQYfbeh0dbCNF33kvXaSJm6HHZQ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-01-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 12, + "popularity": 0.5725 + }, + { + "id": 53069, + "title": "Boku no Imouto wa \"Osaka Okan\"", + "originalTitle": "僕の妹は「大阪おかん」", + "overview": "Boku-no-imoutowa\"Osaka-okan\", is a 2012/2013 Japanese anime television series, that premiered on December 21, 2012 on BS Asahi. The series has been licensed for streaming by Crunchyroll.", + "posterPath": "/97duaJV0z5PAHz8rDbPOtgZcr61.jpg", + "backdropPath": "/AjDlCnQvegAiWbSVblYxwfk0tVT.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2012-12-22", + "releaseYear": "2012", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 6, + "popularity": 0.5703 + }, + { + "id": 35440, + "title": "Cosplay Complex", + "originalTitle": "こすぷれCOMPLEX", + "overview": "Cosplay Complex is a comedy anime original video animation that is centered around the after school cosplay club at East Oizumi Academy. The girls in the club practice so that they may one day be able to compete in cosplay competitions.", + "posterPath": "/rX5nLIraU9iKj9ZEe5GicqVrbLN.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2002-05-25", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 3, + "voteCount": 5, + "popularity": 0.5695 + }, + { + "id": 69605, + "title": "Urawa no Usagi-chan", + "originalTitle": "浦和の調ちゃん", + "overview": "An original anime to advertise Urawa City in Saitama, Japan.", + "posterPath": "/5e1HJSHsnfb1rYNHQSK2DtaseoL.jpg", + "backdropPath": "/uk6L7aiPEDGrQW83g1SjGkf5m8E.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-04-10", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 29, + "popularity": 0.5673 + }, + { + "id": 44428, + "title": "Hyper Doll", + "originalTitle": "楽勝!ハイパー♥ドール", + "overview": "Mew and Mica, two spacey, alien androids, pose as cute high school students to conceal their secret identities as the most undependable dynamic duo ever sent to defend the Earth!\n\nFrom super-sized jelly-fish to Ver Worm (a giant, supposedly intelligent worm), there is no villain too evil, too dastardly or too stupid for the Hyper Dolls to defeat! If they ever stop goofing off and eating on the job, the world would be in safe hands... Maybe.", + "posterPath": "/lIf2V5yo8xbNE87PHt4R3IlVRCn.jpg", + "backdropPath": "/a1b2aSq9HYLQS1poszx4QeIfuV0.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Comedy" + ], + "releaseDate": "1995-10-05", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 5.286, + "voteCount": 7, + "popularity": 0.5658 + }, + { + "id": 102177, + "title": "Jungle de Ikou!", + "originalTitle": "ジャングルDEいこう!", + "overview": "Natsumi Rokudou, a spunky 10 year old girl from Japan receives a strange statue from her dad who's an archaeologist. Little does Natsumi know that the statue houses Ongo, a terrible monster bent on world conquest. In a dream, a strange old man named Ahem warns Natsumi of Ongo's return, and gives her a necklace and tells her to do a sexually suggestive dance that will protect her from peril. Once Natsumi awakens, she finds Ongo on her bed...who's not too threatening looking. But now whenever danger rears it's ugly head, Natsumi must swallow her modesty, and do the embarrassing dance to transform into Mii, the large breasted flower spirit of New Guinea's past.", + "posterPath": "/4keBPopOGxSbokHDdXrbQwMyduz.jpg", + "backdropPath": "/ve823RQ03gL8dD4p2LVqr4m6Zqo.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1997-03-26", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 10, + "popularity": 0.5632 + }, + { + "id": 61530, + "title": "Inugami-san and Nekoyama-san", + "originalTitle": "犬神さんと猫山さん", + "overview": "The story revolves around Nekoyama Suzu, a timid, shy tsundere girl loves dogs, and Inugami Yachiyo, a super masochistic, air-headed, friendly girl who loves cats. One day, after a fateful meeting, the two find themselves attracted to each other. In response to Inugami's instinctive approaches, Nekoyama is always bashful. Their friend Aki has to work hard to make jabs at some of the situations of the two, and also to stop Inugami from going berserk.", + "posterPath": "/xEGAqvlfJwkkrp7KHR01P6nzWs4.jpg", + "backdropPath": "/v97Unl4rgA7swo8meYuKJlmkyxE.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 10749 + ], + "genres": [ + "Animation", + "Comedy", + "Romance" + ], + "releaseDate": "2014-04-11", + "releaseYear": "2014", + "originalLanguage": "ja", + "voteAverage": 4.2, + "voteCount": 13, + "popularity": 0.5613 + }, + { + "id": 44608, + "title": "Guardian of Darkness", + "originalTitle": "暗黒神伝承 武神", + "overview": "Guardian of Darkness is a three-episode OVA anime series released by J.C.Staff between March 1990 through January 1992. The episodes are licensed for release in North America by Central Park Media and in the United Kingdom by ADV Films UK division.", + "posterPath": "/a0yJoMIOE2b4bG7z0MOIysKAzo8.jpg", + "backdropPath": "/gdgFNpULezr6D12uO06M8Dxjnep.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10765 + ], + "genres": [ + "Animation", + "Drama", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1990-03-23", + "releaseYear": "1990", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 5, + "popularity": 0.5494 + }, + { + "id": 26968, + "title": "Soul Link", + "originalTitle": "ソウル リンク", + "overview": "Aizawa and his classmates of the Central Military Academy must find their way back to Earth after a terrorist attack.", + "posterPath": "/b7nfUHyQ7kHS3kbn8Up2vEsitOR.jpg", + "backdropPath": "/euHEPEfr2MaDMDj4VSHcSoFMbGF.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2006-04-01", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 5.167, + "voteCount": 6, + "popularity": 0.5486 + }, + { + "id": 45471, + "title": "Goku Midnight Eye", + "originalTitle": "MIDNIGHT EYE ゴクウ", + "overview": "Goku is a detective who has an \"eye of god\", a mysterious group gave him this artificial eye that enables him to control any computer.", + "posterPath": "/1kN3YsolJmetfSg9eCIIhuwz6J2.jpg", + "backdropPath": "/zSm2DkglaYhFuesB3dmEjaLtTD4.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "1989-01-27", + "releaseYear": "1989", + "originalLanguage": "ja", + "voteAverage": 7.1, + "voteCount": 8, + "popularity": 0.5465 + }, + { + "id": 67049, + "title": "JK-Meshi!", + "originalTitle": "JKめし!", + "overview": "Three high school girls have mastered the art of cooking simple, B-class dishes called JK meshi. The three girls — Reina, Ryouka, and Ruriko — are all classmates in their second year of high school. They often get distracted when studying for tests, and when they do, they cook JK meshi.", + "posterPath": "/j79Ufl1e30y9A6HdnzW9nCSrxOa.jpg", + "backdropPath": "/cuIhLg7b7OkP1U72lOlC9dRqMGC.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "2015-10-06", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 3.6, + "voteCount": 5, + "popularity": 0.5458 + }, + { + "id": 88490, + "title": "KING OF PRISM -Shiny Seven Stars-", + "originalTitle": "KING OF PRISM -Shiny Seven Stars-", + "overview": "After appearing in the Prism King Cup representing Edel Rose, and getting a glimpse of what it was like to a be a future Prism Star, Ichijo Shin entered Kakyoin Academy’s High School division in spring and became a first-year high school student. Koji, Hiro, and Kazuki from Over The Rainbow left Edel Rose and established a new agency. Meanwhile, after having the title of Prism King stolen by Hiro, the leader of Schwarz Rose, Norizuki Jin, proposes PRISM.1, which would decide a new king other than Prism King. He then announces that Schwarz Rose and Edel Rose will be competing with each other.", + "posterPath": "/m35LYM2UuJqpF5DFXdudi0hKMxd.jpg", + "backdropPath": "/5DQJaNsUpNYIoc64Ke7MPDfCG1L.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2019-04-15", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 7.667, + "voteCount": 6, + "popularity": 0.5439 + }, + { + "id": 67104, + "title": "8 Man After", + "originalTitle": "エイトマン AFTER", + "overview": "Private detective Hazama Itsuru is hired by Professor Tani to investigate a cyborg parts theft which eventually leads him to meet Sachiko Yokogawa, the original 8 Man's love interest. Living her new life working for the Biotecho Corp., Sachiko finds herself involved with a new 8 Man, who appears after Hazama is fatally wounded by an unknown cyborg. Amidst a violent urban background with cyber-junkies creating chaos around the city, this other 8 Man will fight criminals in a more aggressive way.", + "posterPath": "/oMDt2UYT9IUT7ouwmgtP3Qani2k.jpg", + "backdropPath": "/qWuenD9ZYuH7n02NHfJ7ZteSAu6.jpg", + "mediaType": "tv", + "genreIds": [ + 80, + 16, + 10759, + 10765 + ], + "genres": [ + "Crime", + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1993-08-21", + "releaseYear": "1993", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 7, + "popularity": 0.5414 + }, + { + "id": 77087, + "title": "Living for the Day After Tomorrow", + "originalTitle": "あさっての方向。", + "overview": "Karada is a young girl who hates being treated like a child and who wishes to be grown up. Shoko is an aloof, unhappy young woman who has just returned from overseas. When they meet by coincidence one night at a local shrine where they both like to make wishes, they exchange ages.", + "posterPath": "/sKddXdXJylM9DkNONPEdJz2gf2c.jpg", + "backdropPath": "/sg4tgizg5F8QogHlxDn2fD609I5.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2006-10-06", + "releaseYear": "2006", + "originalLanguage": "ja", + "voteAverage": 6.8, + "voteCount": 6, + "popularity": 0.5408 + }, + { + "id": 76614, + "title": "Cobra the Animation", + "originalTitle": "COBRA THE ANIMATION", + "overview": "When Utopia More discovers an ancient record that holds the key to unlocking the secrets of the universe, she becomes the target of the ruthless Gypsy Doc of the Pirate Guild. Utopia finds herself saved by the easy-going yet legendary space pirate, Cobra, whose custom made Psychogun makes him a force to be reckoned with. Together, the two of them attempt to stop Gypsy Doc (along with Cobra's revived arch-nemesis, Crystal Boy) and his efforts to steal the record and use its secrets to rule the universe.", + "posterPath": "/pCiMIGQpDlGBH3wvsYA2xtovFEw.jpg", + "backdropPath": "/ztVSf7K7HgXGMl1caDTtAhMvyOx.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 16, + 10765 + ], + "genres": [ + "Action & Adventure", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-08-29", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8, + "voteCount": 5, + "popularity": 0.5395 + }, + { + "id": 44567, + "title": "Koi Koi Seven", + "originalTitle": "こいこい7", + "overview": "Tetsuro is excited at getting a full scholarship at a new high school, far away from his family. What he does not know is that he will be the only boy in an all girl school, and that there is a girl head-over-heels in love with him, waiting for his arrival. But his special friendship with the very cute and dynamic Asuka also causes him to get into a lot of trouble with the powerful student council leadership, as they are at open war with Asuka and her five friends, a group of super amazon warriors called the Koi Koi Seven.", + "posterPath": "/yG8pzzL4WFW4ypWZwb7MHriHLPH.jpg", + "backdropPath": "/mrRfganilHnF6EL9vSURn2i1zSn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2005-04-04", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 7, + "popularity": 0.5376 + }, + { + "id": 105045, + "title": "Ninja Collection", + "originalTitle": "忍者コレクション", + "overview": "Yamishibai: Japanese Ghost Stories spin-off. The story will center on the Tōkeshū ninja group in Tokyo, the city where dreams and desires swirl like eddies in a river. With ancient techniques passed down through generations, the ninja are intent on wiping out the \"darkness\" enveloping people in the current Reiwa era.", + "posterPath": "/6J5dDvCdWwFgGrjUpl8ZD9g9rPO.jpg", + "backdropPath": "/tvFJjApIUxUl9EvCFV6gEnGsE14.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648 + ], + "genres": [ + "Animation", + "Mystery" + ], + "releaseDate": "2020-07-12", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 0.5375 + }, + { + "id": 67102, + "title": "Master of Mosquiton", + "originalTitle": "マスターモスキートン", + "overview": "In the 1920's, Inaho ressurrects a vampire named Mosquiton with her blood. He awakens and becomes her slave. Now, Inaho is after the O-Part, which will grant her immortality. However, a bunch of supernatural monsters are out to stop them from achieving their goal.", + "posterPath": "/w8yHhrfFVH7apMIzglEYirh927O.jpg", + "backdropPath": "/23LxwXNVVix9UTtayUJHS2ZnOmj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 35 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Comedy" + ], + "releaseDate": "1996-11-21", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 8, + "popularity": 0.5366 + }, + { + "id": 106404, + "title": "Area 88", + "originalTitle": "エリア8 8", + "overview": "Shin Kazama, tricked and forced into flying for the remote country of Aslan, can only escape the hell of war by earning money for shooting down enemy planes or die trying.", + "posterPath": "/4jwi0GXEz5IRPtjNQxPL9v48l8E.jpg", + "backdropPath": "/aBXMcKS4JzAFE1QuhJFnUnNYVbA.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 18 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Drama" + ], + "releaseDate": "1985-02-05", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 7, + "popularity": 0.5338 + }, + { + "id": 37181, + "title": "éX-Driver", + "originalTitle": "エクスドライバー", + "overview": "éX-Driver is a manga series by Kōsuke Fujishima, which was adapted into an anime series, produced by Bandai Visual and Actas. The anime series spanned 6 episodes, as well as a feature movie, entitled éX-Driver: The Movie. The complete anime series, including the movie, were broadcast by the anime television network, Animax, across its respective networks around the world, including East Asia, Southeast Asia, South Asia and other regions.", + "posterPath": "/FXwHlje0B7hF4m9YS1ff0vsUmC.jpg", + "backdropPath": "/hF0PGI1ugVbkybTxAR7WWQzB5tZ.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2000-07-25", + "releaseYear": "2000", + "originalLanguage": "ja", + "voteAverage": 6.429, + "voteCount": 7, + "popularity": 0.5313 + }, + { + "id": 256798, + "title": "Moriarty's Perfect Crime", + "originalTitle": "未来の黒幕系悪役令嬢モリアーティーの異世界完全犯罪白書", + "overview": "The archenemy of Sherlock Holmes, James Moriarty, reincarnates into the unfortunate and beautiful noblewoman, Sherry Moriarty, who suffers from bullying by noble girls. The story unfolds with the two Moriartys in a ruthless and tearless intellectual revenge drama...!", + "posterPath": "/b8A4WsC632nd6cekK1rxEofjQrd.jpg", + "backdropPath": "/4VmZtwMZ7Pl5tcDdF7RaG4Rfc4Q.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 10765 + ], + "genres": [ + "Animation", + "Mystery", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2024-07-20", + "releaseYear": "2024", + "originalLanguage": "ja", + "voteAverage": 9, + "voteCount": 6, + "popularity": 0.5292 + }, + { + "id": 90366, + "title": "This Boy Is a Professional Wizard", + "originalTitle": "この男子、魔法がお仕事です。", + "overview": "Chiharu is the wizard in charge of the magical crisis counter-measure division. His days are stressful until he meets Toyohi at his favorite bar, and the two hit it off. The two begin a budding relationship, until an accident at work causes Chiharu to devote more time to his work, and begin to push Toyohi away.", + "posterPath": "/vMqLG92pkPVUIS0J6yZIAHofDBD.jpg", + "backdropPath": "/x8y836LpFTWd1xibDIb920z1dnN.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 18 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Drama" + ], + "releaseDate": "2016-02-05", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.8, + "voteCount": 8, + "popularity": 0.528 + }, + { + "id": 90215, + "title": "Isekai Cheat Magician", + "originalTitle": "異世界チート魔術師", + "overview": "Nishimura Taichi is a typical, average high schooler, and Azuma Rin is a beautiful woman with the build of a model and excellent reflexes. The two live an ordinary high school life until one day, they're suddenly enveloped in a mysterious magic circle and transported to an unknown land.\n\nThat world is full of terrifying monsters, beastmen, dwarves, elves, and many other races right out of fantasy. To survive in this new world, Taichi and Rin decide to become adventurers, but when they take the aptitude test, they discover they both possess cheat-level magic.", + "posterPath": "/vtAJAku94Fm3OVsHx9w04XhsTk3.jpg", + "backdropPath": "/5Sr9nOKdh7g20qZPcwe9eS0WYR8.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2019-07-10", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 80, + "popularity": 0.5264 + }, + { + "id": 203340, + "title": "BanG Dream! Morfonication", + "originalTitle": "BanG Dream! Morfonication", + "overview": "Two special episodes featuring the violin rock band Morfonica.\n\nThe Morfonica members are excited for the concert-packed summer vacation. Meanwhile, Toko secretly plans what she calls the \"Summer Morfonica Plan\" with Nanami and Tsukushi.", + "posterPath": "/jKffjqgZPNG19WzDivyLMs7IYHR.jpg", + "backdropPath": "/jmJTiXzUcfCRCNw3cX6XOZtehgF.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2022-07-28", + "releaseYear": "2022", + "originalLanguage": "ja", + "voteAverage": 4, + "voteCount": 5, + "popularity": 0.5201 + }, + { + "id": 81655, + "title": "Papa to Kiss in the Dark", + "originalTitle": "パパとKISS IN THE DARK", + "overview": "Munakata Mira is in love with his father, the famous Hollywood actor Munakata Kyousuke. Unknown to the public, both of them are father and son as well as lovers. When Mira turns 15 and enters high school, he faces trouble with his childhood friend falling in love with him. Also, finding out he is adopted only distresses him further. Then there's the problem of Kyousuke probably marrying a famous actress, whose son seems to have an interest in Mira.", + "posterPath": "/4KZsDigfmYUB5PqeiYjoMkfYU3v.jpg", + "backdropPath": "/wANmIU5YHB6FZNRtSVcJNkDtdsj.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35, + 18 + ], + "genres": [ + "Animation", + "Comedy", + "Drama" + ], + "releaseDate": "2005-11-23", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 4.3, + "voteCount": 9, + "popularity": 0.5195 + }, + { + "id": 44271, + "title": "Galaxy Fraulein Yuna", + "originalTitle": "銀河お嬢様伝説ユナ", + "overview": "Yuna Kagurazaka, a clumsy and sweet sixteen year old girl, had her life drastically changed when she won an intergalactic contest for the person with the purest heart. Now, she is an intergalactic superhero and magical girl known as the Savior of Light. She pilots the mecha El Line to maintain the peace of the universe. But Yuna’s entire world is shaken when she is wrongfully accused of destroying a city with El Line. She is captured and taken prisoner by Misaki Ichijouin, a special agent from the Galaxy Alliance. However, Misaki soon realizes that she has been deceived, and teams up with the rest of Yuna’s friends to free the Savior and save the galaxy before an evil force is restored to power.", + "posterPath": "/tYTIw4trmrp34VNFBTTYh8vgltu.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 10765 + ], + "genres": [ + "Comedy", + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-09-21", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 4.167, + "voteCount": 6, + "popularity": 0.5164 + }, + { + "id": 44420, + "title": "Dream Dimension Hunter Fandora", + "originalTitle": "夢次元ハンターファンドラ", + "overview": "Lady Fandora possesses the Jewel of Lupia, which she uses to collect bounties on criminals. Accompanied by her shape-changing friend Que, they embark on a dimensional journey to try and find the elusive Yogu-sogos.", + "posterPath": "/yYydIrlO6hrDL4q3dcR1wxPelP1.jpg", + "backdropPath": "/32IaTr5T8H4MYtSAzuEXj60vU6L.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1985-09-21", + "releaseYear": "1985", + "originalLanguage": "ja", + "voteAverage": 3, + "voteCount": 5, + "popularity": 0.5133 + }, + { + "id": 87852, + "title": "Master of Martial Hearts", + "originalTitle": "絶対衝激 ~PLATONIC HEART~", + "overview": "Aya’s life takes a sadistic turn when she enters a girl-on-girl martial arts tournament. She’s out to prove she can take a pounding as well as the other knock-outs in this clandestine competition, and if she survives a series of fabric-shredding fights with titillating teachers, sultry stewardesses, and moe maidens, Aya’s wish will be granted by a mysterious jewel known as the Platonic Heart.", + "posterPath": "/vFvw0fo4U5tkBfC5ipylF3eJElD.jpg", + "backdropPath": "/w8shBSTWFRdT182nPszKoEj7bVL.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure" + ], + "releaseDate": "2008-10-09", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 6, + "popularity": 0.5117 + }, + { + "id": 74088, + "title": "Evil or Live", + "originalTitle": "理想禁区", + "overview": "Severe internet addiction has become an epidemic infecting the nation's youth, ultimately resulting in their extreme dependence on the world wide web. Those who are too far gone are enrolled at Elite Reeducation Academy in order to help them grow into successful adults. Li Xiang(Hibiki in Japanese) is one such teenager who awakens in the facility unaware of how he came to be there. He learns from the head instructor that he was knocked out and brought to the school at his mother's behest, concerned with how belligerent her son was becoming as a result of his internet addiction.\n\nStuck in a place more akin to a prison than an academy, and with no escape from the abuses of the instructors, Li Xiang decides to end his life by jumping from the roof. But as fate would have it, he meets a mysterious man named Shin who promises to give his life meaning...", + "posterPath": "/8XLljaPnmkGhOzRdZJpmhOquKKH.jpg", + "backdropPath": "/osfCEk2dgmKhEpFdnzb8mvy1PFc.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2017-10-10", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 5.25, + "voteCount": 8, + "popularity": 0.5008 + }, + { + "id": 62513, + "title": "Vampire Holmes", + "originalTitle": "ヴァンパイアホームズ", + "overview": "While crowded in daytime, this London neighborhood has been haunted by a “vampire killer” for many nights. The protagonist wakes up in a residence, with a man calling himself \"Holmes\" and claiming to have entered the house chasing after a vampire. Unknowingly, the door of the residence has been locked from the outside...", + "posterPath": "/mL7ydYZ746gCnvNy7qwUthwD6lA.jpg", + "backdropPath": "/fAA2b0SUrRcCKWYZavPfi2EoSWG.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 9648, + 35 + ], + "genres": [ + "Animation", + "Mystery", + "Comedy" + ], + "releaseDate": "2015-04-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 4.2, + "voteCount": 10, + "popularity": 0.5006 + }, + { + "id": 43141, + "title": "Bus Gamer", + "originalTitle": "ビズゲーマー", + "overview": "Three strangers join a secret corporate “Biz Game” for a massive cash prize—but to survive, they’ll have to trust each other first.", + "posterPath": "/x0MwtjK5Sa7g9XwkoFZ6IdFYdcl.jpg", + "backdropPath": "/aeP51yqJQ5I0xR6A53Gfyrsq2mp.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 80 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Crime" + ], + "releaseDate": "2008-03-14", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 7, + "popularity": 0.4989 + }, + { + "id": 44659, + "title": "Magical Play", + "originalTitle": "魔法遊戯 飛び出す!! ハナマル大冒険", + "overview": "Padudu is an apprentice witch, chosen to represent her town. Donning her magical fish costume, she sets off on her journey.", + "posterPath": "/7EvcdtdkhdsU10z3HN3XzZzXOQt.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2001-11-16", + "releaseYear": "2001", + "originalLanguage": "ja", + "voteAverage": 6, + "voteCount": 5, + "popularity": 0.4971 + }, + { + "id": 71134, + "title": "Manga Mito Kômon", + "originalTitle": "まんが水戸黄門", + "overview": "", + "posterPath": "/nlh5vHORBB9v1CBGuAsBieAHSS0.jpg", + "backdropPath": "/iHcZiqv7oLO8dkvecNXYISpi55z.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1981-09-03", + "releaseYear": "1981", + "originalLanguage": "ja", + "voteAverage": 5.4, + "voteCount": 5, + "popularity": 0.4959 + }, + { + "id": 49307, + "title": "Cyclops Girl Cypu", + "originalTitle": "サイクロプス少女さいぷ~", + "overview": "When Fuuka hit her second year of middle school, puberty kicked in. Now she's really tall and has huge boobs. Due to her hairstyle, her classmates call her \"Saipu\", after the cyclops. Her affection for her older brother was cute when she was a little girl and said she wanted to marry him. Now it just freaks him out, since she's decided she's adult enough to follow through on her childish promises.", + "posterPath": "/j9h1MKl8G2D88sX67xNoVaJe2e6.jpg", + "backdropPath": "/29CKrUyTxES06KkLDDvHnZih60a.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-03-12", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 44, + "popularity": 0.4873 + }, + { + "id": 49464, + "title": "Dog & Scissors", + "originalTitle": "犬とハサミは使いよう", + "overview": "A nonsense comical mystery. Kazuhito Harumi is a high school boy who loves books and is a fan of novelist Kirihime Natsuno. One day, he finds Kirihime writing at a cafe, about to be shot by a robber. He protects her from the attack but is killed instead. Through the supernatural power of a book-worm, he is reincarnated as a dachshund dog. Kazuhito (as a dog) writhes in a painful bookless life, when a sadistic woman carrying a pair of scissors offers him help. She is Kirihime herself.", + "posterPath": "/2BAVA7wKnkz8liwqlQMZY3WZFS3.jpg", + "backdropPath": "/regCVngRAi0Yrl4MelpdRo2IkRi.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2013-07-01", + "releaseYear": "2013", + "originalLanguage": "ja", + "voteAverage": 6.3, + "voteCount": 40, + "popularity": 0.4795 + }, + { + "id": 95709, + "title": "Penguin Musume♥Heart", + "originalTitle": "ペンギン娘♥はぁと", + "overview": "Sakura Nankyoku is a total otaku. Due to a fluke, she gets elected as her class' Student Council President. Everything takes off from there into a series of crazy misadventures revolving around Sakura, her family, and her classmates.", + "posterPath": "/mprKKcKMqx0ktHHIbODeDTSikIr.jpg", + "backdropPath": "/thUkFxjVaxVn2s6Un9uFtwFC9lh.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2008-04-19", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.9, + "voteCount": 9, + "popularity": 0.4691 + }, + { + "id": 118406, + "title": "Genius Party", + "originalTitle": "Genius Party", + "overview": "The seven short films making up GENIUS PARTY couldn’t be more diverse, linked only by a high standard of quality and inspiration. Atsuko Fukushima’s intro piece is a fantastic abstraction to soak up with the eyes. Masaaki Yuasa, of MIND GAME and CAT SOUP fame, brings his distinctive and deceptively simple graphic style and dream-state logic to the table with “Happy Machine,” his spin on a child’s earliest year. Shinji Kimura’s spookier “Deathtic 4,” meanwhile, seems to tap into the creepier corners of a child’s imagination and open up a toybox full of dark delights. Hideki Futamura’s “Limit Cycle” conjures up a vision of virtual reality, while Yuji Fukuyama’s \"Doorbell\" and \"Baby Blue\" by Shinichiro Watanabe use understated realism for very surreal purposes. And Shoji Kawamori, with “Shanghai Dragon,” takes the tropes and conventions of traditional anime out for very fun joyride.", + "posterPath": "/xztcNxxzPDS5NJylVkkZvYMQgz8.jpg", + "backdropPath": "/jTu8dPtWw8Xx02PONVg9cQ0xF4Y.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765, + 10759, + 18, + 35 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy", + "Action & Adventure", + "Drama", + "Comedy" + ], + "releaseDate": "2007-07-07", + "releaseYear": "2007", + "originalLanguage": "ja", + "voteAverage": 7.7, + "voteCount": 7, + "popularity": 0.4546 + }, + { + "id": 94214, + "title": "Days of Urashimasakatasen", + "originalTitle": "浦島坂田船の日常", + "overview": "", + "posterPath": "/zB7AEJfnCty7eldfLlUfcBZxT99.jpg", + "backdropPath": "/gjmWfAAQAxSoIgsZR5z2ophZQxe.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2019-10-02", + "releaseYear": "2019", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 6, + "popularity": 0.4503 + }, + { + "id": 158236, + "title": "Lord of Lords Ryu Knight: Adeu's Legend", + "originalTitle": "覇王大系リューナイト アデュー・レジェンド", + "overview": "In an old world clash between light and darkness (as always), the evil Lord Uongadis is sealed away under a gigantic monument called the Earth Blade. 20 years have passed since the wars, and now the threat of evil being brought back is greater than ever as demons try to revive their lord.", + "posterPath": "/w1WDTGlMg0HJTPeWQnh4QeuNDr8.jpg", + "backdropPath": "/4ese8tZyqrKlEvp9GLHAhbtPk0p.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759, + 10765 + ], + "genres": [ + "Animation", + "Action & Adventure", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1994-07-21", + "releaseYear": "1994", + "originalLanguage": "ja", + "voteAverage": 5.8, + "voteCount": 5, + "popularity": 0.4411 + }, + { + "id": 110792, + "title": "Idolls!", + "originalTitle": "アイドールズ!", + "overview": "Go for Hoi Hoi Hall! This is the passionate but relaxed 10 day story of struggling idols who fight to fill a 100 seat concert hall!", + "posterPath": "/g9vXLkUeZukspxhBfeJcZZzpuXw.jpg", + "backdropPath": "/8pcgtI2wuyyNFxt4Qq5jxOe2HAJ.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2021-01-08", + "releaseYear": "2021", + "originalLanguage": "ja", + "voteAverage": 5.7, + "voteCount": 7, + "popularity": 0.3908 + }, + { + "id": 95135, + "title": "Legend of Duo", + "originalTitle": "レジェンドオブ・デュオ", + "overview": "The fate of mankind is doomed in the early 21st century due to losing \"purana,\" an essence of living force supporting all life forms. Not willing to witness the extinction of mankind, a vampire named Duo disclosed the secret of purana to humans, saving the latter from destruction. However, just like Prometheus in Greek mythology got punished for bringing fire to mankind, Duo is punished for breaking the taboo. The vampire sent to punish him is Zieg, Duo's best friend, or, more than the best friend.", + "posterPath": "/zXorgKIrDe8xg8YcmXak6pUYht0.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 18 + ], + "genres": [ + "Animation", + "Drama" + ], + "releaseDate": "2005-04-21", + "releaseYear": "2005", + "originalLanguage": "ja", + "voteAverage": 3.2, + "voteCount": 5, + "popularity": 0.3812 + }, + { + "id": 44458, + "title": "Maiden Rose", + "originalTitle": "百日の薔薇", + "overview": "Soldier Klaus von Wolfstadt becomes a knight to enemy commander Taki Reizen, leading to a strong romantic bond tested by conflicts.", + "posterPath": "/bRQJHK7QP35w6D64JeUqI0Ccqs7.jpg", + "backdropPath": "/zYHMl1MUBRlGtgm551ZknVR4BUC.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10768 + ], + "genres": [ + "Animation", + "Drama", + "War & Politics" + ], + "releaseDate": "2009-05-29", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 7, + "popularity": 0.3791 + }, + { + "id": 256393, + "title": "Marulk's Daily Life", + "originalTitle": "マルルクちゃんの日常", + "overview": "A series of 4 shorts accompanying the release of \"Made in Abyss: Dawn of the Deep Soul\" in theaters, the shorts depict Marulk's everyday life.", + "posterPath": "/hUXcDfBhVCxmszXAwCONKnAetkw.jpg", + "backdropPath": "/lR9Qtq5l4SVIOQyVjiZliA1snUp.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2020-01-17", + "releaseYear": "2020", + "originalLanguage": "ja", + "voteAverage": 6.6, + "voteCount": 5, + "popularity": 0.3618 + }, + { + "id": 45223, + "title": "A Piece of Phantasmagoria", + "originalTitle": "ファンタスマゴリア", + "overview": "Within the realm of dreams there is a small planet called Phantasmagoria. These are tales from some exquisite locations found there. \n\nBased on Shigeru Tamura's illustrated book, Phantasmagoria, the series consists of fifteen episodes, each five minutes in length.", + "posterPath": "/xziKgKN9EqU2zLguTLANLpa8mng.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16, + 18, + 10762 + ], + "genres": [ + "Animation", + "Drama", + "Kids" + ], + "releaseDate": "1995-01-01", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 7.2, + "voteCount": 6, + "popularity": 0.3521 + }, + { + "id": 64754, + "title": "Kowabon", + "originalTitle": "こわぼん", + "overview": "In today's world full of wondrous technological innovation, the unnatural and mysterious sometimes appear even more horrifying than usual. But despite how far society has advanced, the fear of the unknown always remains.", + "posterPath": "/3DIrluWxqfiIAiF9wq2gMcDyMQy.jpg", + "backdropPath": "/kpWYbGypLhuEoF9Evn6QnGvYWUt.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-10-04", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 5.2, + "voteCount": 6, + "popularity": 0.35 + }, + { + "id": 88423, + "title": "Landlock", + "originalTitle": "ランドロック", + "overview": "The land of Zer’lue is in turmoil, ravaged by the technological might of Chairman Sana'ku and his evil, militaristic Zul’earth forces. In a rapidly unfolding story of treachery, deceit and betrayal, only one boy holds the power to defeat such overwhelming odds... a boy named Lue'der, who possesses a mysterious red eye and the ability to control the power of the wind itself. With the fate of the world at stake, Lue'der must learn to unlock his legendary power and battle against the evil which threatens to engulf his planet.", + "posterPath": "/i3vrXrieCXBsYoKUbBzM2TAqkgZ.jpg", + "backdropPath": "/pL58f9d1FaTwdYQUGoBAHlEv5gn.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10759 + ], + "genres": [ + "Animation", + "Action & Adventure" + ], + "releaseDate": "1996-06-21", + "releaseYear": "1996", + "originalLanguage": "ja", + "voteAverage": 8.2, + "voteCount": 6, + "popularity": 0.3285 + }, + { + "id": 67927, + "title": "Onara Gorou", + "originalTitle": "おなら吾郎", + "overview": "The everyday life of Gorou, the \"most admirable of farts,\" as he solves problems in ways that only a fart can.", + "posterPath": "/f52izXgjkfKYANYRctn6YGSASIo.jpg", + "backdropPath": "/seHRP8tpH9kHo6ftHy8vwaOYX5L.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-07-03", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 7, + "voteCount": 6, + "popularity": 0.326 + }, + { + "id": 90377, + "title": "Nurse Witch Komugi R", + "originalTitle": "ナースウィッチ小麦ちゃんR", + "overview": "Komugi Yoshida is an energetic but clumsy middle-school student who performs as an idol. Although her popularity is lacking, Komugi lives a dual life between her two worlds, until a mysterious creature named Usa-P appears before Komugi and grants her the powers of a Legendary Girl. Now Komugi has reluctantly become Magical Nurse, and must add a third life of fighting monsters to her already crowded lifestyle.", + "posterPath": "/tYicZFvSRqL5dbik9lJVAX9bL99.jpg", + "backdropPath": "/rOpszHrXW2rZESypWvcbOqKy42i.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2016-01-09", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 2.4, + "voteCount": 5, + "popularity": 0.3197 + }, + { + "id": 71066, + "title": "Room Mate", + "originalTitle": "Room Mate", + "overview": "You are the new manager for the apartment building where 3 guys live as roommates!", + "posterPath": "/8AaD1HV2yDpd2HTfgKbSTD6p66B.jpg", + "backdropPath": "/vqHmfZdlwzl3loHlWi8oiWFkHte.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2017-04-12", + "releaseYear": "2017", + "originalLanguage": "ja", + "voteAverage": 4.6, + "voteCount": 5, + "popularity": 0.3195 + }, + { + "id": 82985, + "title": "THE IDOLM@STER SideM Wakeatte Mini!", + "originalTitle": "アイドルマスター SideM 理由あってMini!", + "overview": "", + "posterPath": "/c8R4CVY4M5Tfd0iOT7cx4g40qa8.jpg", + "backdropPath": "/iC3CHwQGLeOhrARWgS4Ke3REGQH.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2018-10-09", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 6.2, + "voteCount": 5, + "popularity": 0.317 + }, + { + "id": 45212, + "title": "The Diary of Tortov Roddle", + "originalTitle": "或る旅人の日記", + "overview": "Follow Tortov as he journeys through very surreal, magical, picturesque landscapes, meeting interesting characters and circumstances on the way. Accompanied by his long-legged pig friend, Tortov takes us on an on-going adventure of peaceful contemplation.", + "posterPath": "/tdOlLOi40lm9fidlQyxojB3iHOI.jpg", + "backdropPath": "/fTnrdd3sSWg9GY4zgOHsdRZhTpr.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 18, + 10765, + 16 + ], + "genres": [ + "Action & Adventure", + "Drama", + "Sci-Fi & Fantasy", + "Animation" + ], + "releaseDate": "2003-03-19", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 17, + "popularity": 0.2951 + }, + { + "id": 123686, + "title": "My-Otome 0: S.ifr", + "originalTitle": "舞-乙HiME 0~S.ifr~", + "overview": "", + "posterPath": "/kkEprs2NCcMPDb24BCUw14ZAxpD.jpg", + "backdropPath": "/557zh4UVyPRh7BuLZBqe5aMMyBu.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "2008-02-22", + "releaseYear": "2008", + "originalLanguage": "ja", + "voteAverage": 8.9, + "voteCount": 7, + "popularity": 0.286 + }, + { + "id": 42670, + "title": "Magical Girl Pretty Sammy", + "originalTitle": "魔法少女プリティサミー", + "overview": "Sasami's always been kind of neat... but now she's been imbibed with a healthy dose of magic (which she plans to use to right the things wrong with the Earth, and, of course, help keep her brother Tenchi out of trouble). Naturally, there's going to be trouble: this time, it's the mysterious Pixy Misa... and Ryoko going at it against Ayeka (as usual) isn't making things any easier for her!", + "posterPath": "/zZO95DnTGSIdNzsOVdE70TaAykI.jpg", + "backdropPath": "/eiAmkjsVlF9DppV2JCBBd7jCmuv.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10765 + ], + "genres": [ + "Animation", + "Sci-Fi & Fantasy" + ], + "releaseDate": "1995-08-25", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 9.4, + "voteCount": 6, + "popularity": 0.2731 + }, + { + "id": 30986, + "title": "Speed Racer", + "originalTitle": "マッハGoGoGo", + "overview": "Speed ​​Racer is a teenage driver who races around the world in his super-technological car, the Mach 5, created by his father, a former racer. The car has several special features that help Speed ​​tackle difficult terrain and get rid of dishonest opponents—which happens frequently. He experiences these adventures alongside his girlfriend Trixie, his younger brother Spridle, and his pet monkey, Chim-Chim. Together, they face thrilling challenges and show that courage and fair play make all the difference.", + "posterPath": "/7o9x0cdLjNXLeKfPM7p8h7DBL9B.jpg", + "backdropPath": "/yOCxMtJ3wgQyXjP9j8zUhoixPrU.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 10751, + 10759, + 10765, + 10762, + 35 + ], + "genres": [ + "Animation", + "Family", + "Action & Adventure", + "Sci-Fi & Fantasy", + "Kids", + "Comedy" + ], + "releaseDate": "1967-09-23", + "releaseYear": "1967", + "originalLanguage": "ja", + "voteAverage": 7.5, + "voteCount": 131, + "popularity": 0.2466 + }, + { + "id": 78348, + "title": "Historias de la Biblia", + "originalTitle": "Historias de la Biblia", + "overview": "", + "posterPath": "/8QImBKpwJdb5iQwHwVrXXbZSAu8.jpg", + "backdropPath": "/A1PVHHuAyNJt6lZvx1FtuIUS333.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1997-01-05", + "releaseYear": "1997", + "originalLanguage": "ja", + "voteAverage": 7.8, + "voteCount": 8, + "popularity": 0.2199 + }, + { + "id": 90401, + "title": "Tabi Machi Late Show", + "originalTitle": "旅街レイトショー", + "overview": "", + "posterPath": "/4w5Jft6hvjf7v3nO1LtRBH5pDV1.jpg", + "backdropPath": "/dIwV8FPNaKXPSixJazKyIAEJKTf.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-01-08", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 5, + "voteCount": 7, + "popularity": 0.2087 + }, + { + "id": 77123, + "title": "Tantei Team KZ Jiken Note", + "originalTitle": "探偵チームKZ事件ノート", + "overview": "", + "posterPath": "/iMBYb0TFt62eWamHTlKeSwwJYRw.jpg", + "backdropPath": "/bGiVoj1zivVSaogi8qcTpfvclpf.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2015-10-07", + "releaseYear": "2015", + "originalLanguage": "ja", + "voteAverage": 6.667, + "voteCount": 6, + "popularity": 0.2071 + }, + { + "id": 88759, + "title": "青山剛昌短編集", + "originalTitle": "青山剛昌短編集", + "overview": "", + "posterPath": "/a8RLI9LWX0aheyfK8ohF6xxwrKy.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "1999-03-17", + "releaseYear": "1999", + "originalLanguage": "ja", + "voteAverage": 6.5, + "voteCount": 6, + "popularity": 0.207 + }, + { + "id": 35476, + "title": "Abunai Sisters", + "originalTitle": "Abunai Sisters: Koko & Mika", + "overview": "KOKO & MIKA are actresses by profession: popular and setting out to charm men with their dynamic and sexy bodies.", + "posterPath": "/w8vxXqYeVwrM8H778G9Y90GS2iu.jpg", + "backdropPath": "/bekXWL5KT7G1Nq9gfWPnpkd7zjK.jpg", + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2009-01-15", + "releaseYear": "2009", + "originalLanguage": "ja", + "voteAverage": 2.2, + "voteCount": 5, + "popularity": 0.2048 + }, + { + "id": 259101, + "title": "Love Hina Again", + "originalTitle": "ラブひな Again", + "overview": "Love Hina Again is a series of three OVA episodes following the original anime series, primarily adapts events from Volume 11 and Volume 12 with elements from Volume 13.", + "posterPath": "/xLqqR3lcMDvLukTtTpM5yXQwXwY.jpg", + "backdropPath": "/aJ47nHHbGoxnionbslSbwb17Jvm.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16, + 18 + ], + "genres": [ + "Comedy", + "Animation", + "Drama" + ], + "releaseDate": "2002-01-26", + "releaseYear": "2002", + "originalLanguage": "ja", + "voteAverage": 5.6, + "voteCount": 8, + "popularity": 0.2014 + }, + { + "id": 85426, + "title": "Mechanical Arms", + "originalTitle": "メカウデ", + "overview": "Hero was a high schooler living an ordinary life.\n\nOne day, he meets a very strong and intelligent mechanical arm named \"Mecha-ude\". After a strange turn of events, the \"Mecha-ude\" started living inside Hero's hoodie and the two's life full of trouble begins.\n\nAs the boy and his \"Mecha-ude\" fights together and strengthen their bonds, the two also meets new friends who also fights along with each of their own unique \"Mecha-ude\" partners.\n\nOut of those, one of the heroine has two \"Mecha-ude\" which appears out of her skirt. An active girl with a totally opposite characteristics from hero himself, he gradually becomes attracted to her.\n\nBut the two are confronted with other \"Mecha-ude\" users who are in search of the secret of \"Mecha-ude\" relentlessly.", + "posterPath": "/AfgI11ERuyGIE0gQsOqWU3Su1tN.jpg", + "backdropPath": "/f1WlxqtjuuzlEnG7L69LO7t2CJL.jpg", + "mediaType": "tv", + "genreIds": [ + 10759, + 10765, + 16, + 35 + ], + "genres": [ + "Action & Adventure", + "Sci-Fi & Fantasy", + "Animation", + "Comedy" + ], + "releaseDate": "2018-09-30", + "releaseYear": "2018", + "originalLanguage": "ja", + "voteAverage": 7.3, + "voteCount": 6, + "popularity": 0.1969 + }, + { + "id": 45401, + "title": "Elf Princess Rane", + "originalTitle": "妖精姫レーン", + "overview": "Fast-talking, reckless, slightly dense treasure hunter Gou has vowed to find the legendary Treasure of Salamander. Searching for it he meets Rane, a fairy from another world, who is looking for the Treasure of Four Hearts. Gou's childhood friend and well-off next door neighbour Mari is frustrated with Gou running after treasures, but befriends Lean another fairy, who also happens to be a witch wanting to kill Rane. And if that was not enough, Gou also has to deal with his triplet older sisters, Kazuki, Yuhki and Saki — a girl group, when not working on their daytime jobs. Gou and Rane's treasure hunt messes with a secret project led by Mari's father though, and it turns out Salamander is not what Gou thought it was in the first place...", + "posterPath": "/xO0a6av8pzCK5j3gy0yspyW8W9T.jpg", + "backdropPath": "/eCbvRUt7oW4jPCkFl6VmyVdZboN.jpg", + "mediaType": "tv", + "genreIds": [ + 35, + 16 + ], + "genres": [ + "Comedy", + "Animation" + ], + "releaseDate": "1995-10-27", + "releaseYear": "1995", + "originalLanguage": "ja", + "voteAverage": 3.2, + "voteCount": 5, + "popularity": 0.1599 + }, + { + "id": 65783, + "title": "Sushi Police", + "originalTitle": "スシポリス", + "overview": "Japanese food, especially sushi, has become an internationally beloved cuisine, especially with the announcement of the 2020 Tokyo Olympics. But there are always restaurants that look to capitalize off the reputation of traditional Japanese food. They serve dishes like rolls covered in cream cheese and teriyaki sauce, monstrosities that belong nowhere in a real sushi restaurant! Enter the Sushi Police. The defenders of Japanese culture and tradition, the World Food-culture Conservation Organization was created, and its 9th Unit was ordered to smite down any restaurant in the world that besmirch the name of sushi. They travel the globe in a giant ship-shaped blimp, literally landing on the offenders, leaving a destroyed restaurant in their wake.", + "posterPath": "/vSYyiifMe9k0wP2vnf0WT2O4oNE.jpg", + "backdropPath": null, + "mediaType": "tv", + "genreIds": [ + 16 + ], + "genres": [ + "Animation" + ], + "releaseDate": "2016-01-06", + "releaseYear": "2016", + "originalLanguage": "ja", + "voteAverage": 4.4, + "voteCount": 5, + "popularity": 0.1568 + }, + { + "id": 45491, + "title": "Guardian Hearts", + "originalTitle": "がぁーでぃあんHearts", + "overview": "Maya, Kurusu, and Chelsea hit it off really well when trying to get revenge on Guardian Hearts for making them suffer. Maya and company thought that Guardian Hearts usually appears when Kazuya is getting along with a girl. Not knowing that Guardian Hearts is actually Hina, they leave her alone with Kazuya in an attempt to lure out Guardian Hearts.", + "posterPath": "/dVmZOiONjg4X8lrpA9uIbM3HzmE.jpg", + "backdropPath": "/o6klyxY6AJxLCGxMGpNz4FML3Yw.jpg", + "mediaType": "tv", + "genreIds": [ + 16, + 35 + ], + "genres": [ + "Animation", + "Comedy" + ], + "releaseDate": "2003-05-23", + "releaseYear": "2003", + "originalLanguage": "ja", + "voteAverage": 3, + "voteCount": 5, + "popularity": 0.1367 + } + ], + "genres": { + "12": "Adventure", + "14": "Fantasy", + "16": "Animation", + "18": "Drama", + "27": "Horror", + "28": "Action", + "35": "Comedy", + "36": "History", + "37": "Western", + "53": "Thriller", + "80": "Crime", + "99": "Documentary", + "878": "Science Fiction", + "9648": "Mystery", + "10402": "Music", + "10749": "Romance", + "10751": "Family", + "10752": "War", + "10759": "Action & Adventure", + "10762": "Kids", + "10763": "News", + "10764": "Reality", + "10765": "Sci-Fi & Fantasy", + "10766": "Soap", + "10767": "Talk", + "10768": "War & Politics", + "10770": "TV Movie" + }, + "metadata": { + "generatedAt": "2025-12-06T00:04:24.710Z", + "counts": { + "movies": 4000, + "tv": 4000, + "anime": 3084, + "total": 11084 + } + } +} \ No newline at end of file diff --git a/apps/CineMatch/src/lib/country-codes.ts b/apps/CineMatch/src/lib/country-codes.ts new file mode 100644 index 00000000..d2ca1000 --- /dev/null +++ b/apps/CineMatch/src/lib/country-codes.ts @@ -0,0 +1,8 @@ +export const ISO2_TO_ISO3: Record = { + "AF": "AFG", "AX": "ALA", "AL": "ALB", "DZ": "DZA", "AS": "ASM", "AD": "AND", "AO": "AGO", "AI": "AIA", "AQ": "ATA", "AG": "ATG", "AR": "ARG", "AM": "ARM", "AW": "ABW", "AU": "AUS", "AT": "AUT", "AZ": "AZE", "BS": "BHS", "BH": "BHR", "BD": "BGD", "BB": "BRB", "BY": "BLR", "BE": "BEL", "BZ": "BLZ", "BJ": "BEN", "BM": "BMU", "BT": "BTN", "BO": "BOL", "BQ": "BES", "BA": "BIH", "BW": "BWA", "BV": "BVT", "BR": "BRA", "IO": "IOT", "BN": "BRN", "BG": "BGR", "BF": "BFA", "BI": "BDI", "CV": "CPV", "KH": "KHM", "CM": "CMR", "CA": "CAN", "KY": "CYM", "CF": "CAF", "TD": "TCD", "CL": "CHL", "CN": "CHN", "CX": "CXR", "CC": "CCK", "CO": "COL", "KM": "COM", "CG": "COG", "CD": "COD", "CK": "COK", "CR": "CRI", "CI": "CIV", "HR": "HRV", "CU": "CUB", "CW": "CUW", "CY": "CYP", "CZ": "CZE", "DK": "DNK", "DJ": "DJI", "DM": "DMA", "DO": "DOM", "EC": "ECU", "EG": "EGY", "SV": "SLV", "GQ": "GNQ", "ER": "ERI", "EE": "EST", "SZ": "SWZ", "ET": "ETH", "FK": "FLK", "FO": "FRO", "FJ": "FJI", "FI": "FIN", "FR": "FRA", "GF": "GUF", "PF": "PYF", "TF": "ATF", "GA": "GAB", "GM": "GMB", "GE": "GEO", "DE": "DEU", "GH": "GHA", "GI": "GIB", "GR": "GRC", "GL": "GRL", "GD": "GRD", "GP": "GLP", "GU": "GUM", "GT": "GTM", "GG": "GGY", "GN": "GIN", "GW": "GNB", "GY": "GUY", "HT": "HTI", "HM": "HMD", "VA": "VAT", "HN": "HND", "HK": "HKG", "HU": "HUN", "IS": "ISL", "IN": "IND", "ID": "IDN", "IR": "IRN", "IQ": "IRQ", "IE": "IRL", "IM": "IMN", "IL": "ISR", "IT": "ITA", "JM": "JAM", "JP": "JPN", "JE": "JEY", "JO": "JOR", "KZ": "KAZ", "KE": "KEN", "KI": "KIR", "KP": "PRK", "KR": "KOR", "KW": "KWT", "KG": "KGZ", "LA": "LAO", "LV": "LVA", "LB": "LBN", "LS": "LSO", "LR": "LBR", "LY": "LBY", "LI": "LIE", "LT": "LTU", "LU": "LUX", "MO": "MAC", "MG": "MDG", "MW": "MWI", "MY": "MYS", "MV": "MDV", "ML": "MLI", "MT": "MLT", "MH": "MHL", "MQ": "MTQ", "MR": "MRT", "MU": "MUS", "YT": "MYT", "MX": "MEX", "FM": "FSM", "MD": "MDA", "MC": "MCO", "MN": "MNG", "ME": "MNE", "MS": "MSR", "MA": "MAR", "MZ": "MOZ", "MM": "MMR", "NA": "NAM", "NR": "NRU", "NP": "NPL", "NL": "NLD", "NC": "NCL", "NZ": "NZL", "NI": "NIC", "NE": "NER", "NG": "NGA", "NU": "NIU", "NF": "NFK", "MK": "MKD", "MP": "MNP", "NO": "NOR", "OM": "OMN", "PK": "PAK", "PW": "PLW", "PS": "PSE", "PA": "PAN", "PG": "PNG", "PY": "PRY", "PE": "PER", "PH": "PHL", "PN": "PCN", "PL": "POL", "PT": "PRT", "PR": "PRI", "QA": "QAT", "RE": "REU", "RO": "ROU", "RU": "RUS", "RW": "RWA", "BL": "BLM", "SH": "SHN", "KN": "KNA", "LC": "LCA", "MF": "MAF", "PM": "SPM", "VC": "VCT", "WS": "WSM", "SM": "SMR", "ST": "STP", "SA": "SAU", "SN": "SEN", "RS": "SRB", "SC": "SYC", "SL": "SLE", "SG": "SGP", "SX": "SXM", "SK": "SVK", "SI": "SVN", "SB": "SLB", "SO": "SOM", "ZA": "ZAF", "GS": "SGS", "SS": "SSD", "ES": "ESP", "LK": "LKA", "SD": "SDN", "SR": "SUR", "SJ": "SJM", "SE": "SWE", "CH": "CHE", "SY": "SYR", "TW": "TWN", "TJ": "TJK", "TZ": "TZA", "TH": "THA", "TL": "TLS", "TG": "TGO", "TK": "TKL", "TO": "TON", "TT": "TTO", "TN": "TUN", "TR": "TUR", "TM": "TKM", "TC": "TCA", "TV": "TUV", "UG": "UGA", "UA": "UKR", "AE": "ARE", "GB": "GBR", "US": "USA", "UY": "URY", "UZ": "UZB", "VU": "VUT", "VE": "VEN", "VN": "VNM", "VG": "VGB", "VI": "VIR", "WF": "WLF", "EH": "ESH", "YE": "YEM", "ZM": "ZMB", "ZW": "ZWE" +}; + +export const ISO3_TO_ISO2: Record = Object.entries(ISO2_TO_ISO3).reduce((acc, [key, value]) => { + acc[value] = key; + return acc; +}, {} as Record); diff --git a/apps/CineMatch/src/lib/local-db.ts b/apps/CineMatch/src/lib/local-db.ts new file mode 100644 index 00000000..670059a2 --- /dev/null +++ b/apps/CineMatch/src/lib/local-db.ts @@ -0,0 +1,175 @@ + +import dbData from '@/data/db.json'; +import type { Movie, TVShow, MediaContent } from '@/types/media'; + +// Types for our local DB structure +interface LocalDB { + movies: any[]; + tv: any[]; + anime: any[]; + genres: Record; +} + +const db = dbData as LocalDB; + +// Helper to calculate relevance score (simple RAG-like scoring) +function calculateScore(item: any, preferences: any, favorite?: any): number { + let score = 0; + + // 1. Genre Match + // If we have a favorite movie, use its genres for boosting too + const targetGenres = preferences.genres || (favorite?.genreIds) || []; + if (targetGenres.length && item.genreIds) { + const matchCount = item.genreIds.filter((id: number) => targetGenres.includes(id)).length; + score += matchCount * 3; // Increased weight: 3 points per genre match + } + + // 2. Language Match (Strict for Anime, Exclusion for Western Animation) + if (preferences.withOriginalLanguage) { + if (item.originalLanguage === preferences.withOriginalLanguage) { + score += 5; // High boost for language match + } else if (preferences.strictLanguage) { + return -1; // Filter out if strict + } + } + + // Exclude languages (e.g., for Western Animation) + if (preferences.excludeOriginalLanguages) { + if (preferences.excludeOriginalLanguages.includes(item.originalLanguage)) { + return -1; + } + } + + // 3. Era/Year Match + if (preferences.yearMin && item.releaseYear) { + if (parseInt(item.releaseYear) >= preferences.yearMin) score += 3; + else return -1; // Strict filter + } + if (preferences.yearMax && item.releaseYear) { + if (parseInt(item.releaseYear) <= preferences.yearMax) score += 3; + else return -1; // Strict filter + } + + // 4. Intent Match + if (preferences.intent === 'learn') { + // Boost Documentary (99), History (36), War (10752) - often biopics/historical + if (item.genreIds?.some((id: number) => [99, 36, 10752].includes(id))) { + score += 10; // Massive boost for learning content + } else { + score -= 5; // Penalize non-learning content + } + } else if (preferences.intent === 'kill_time') { + // Boost Entertainment (Comedy, Action, Adventure, Sci-Fi, Fantasy, Horror, Romance, Thriller) + // Basically everything NOT Documentary/History + if (!item.genreIds?.some((id: number) => [99, 36].includes(id))) { + score += 2; + } + } + + // 5. Favorite Movie Boost (Rating & Reliability) + if (favorite) { + // Boost if rating is same or higher + if (item.voteAverage >= (favorite.voteAverage || 7)) { + score += 5; + } + + // Reliability Boost (Logarithmic scale of vote count) + // More votes = more reliable rating = higher confidence + if (item.voteCount > 0) { + score += Math.log10(item.voteCount); + } + } + + // 6. Popularity Boost (Base score) + score += (item.popularity || 0) / 100; + + return score; +} + +export const localDB = { + /** + * Search/Recommend from local data + */ + recommend: (options: { + type: 'movie' | 'tv' | 'anime' | 'all'; + genres?: number[]; + yearMin?: number; + yearMax?: number; + withOriginalLanguage?: string; + excludeOriginalLanguages?: string[]; + excludeGenres?: number[]; // New param for strict exclusion + intent?: 'learn' | 'kill_time'; + favorite?: any; // Pass full favorite object + limit?: number; + }) => { + let candidates: any[] = []; + + // Select source pool + if (options.type === 'movie') candidates = db.movies; + else if (options.type === 'tv') candidates = db.tv; + else if (options.type === 'anime') candidates = db.anime; + else candidates = [...db.movies, ...db.tv]; + + // Score and Filter + let ranked = candidates + .filter(item => { + // Hard Exclusion: Genres + if (options.excludeGenres && item.genreIds) { + if (item.genreIds.some((id: number) => options.excludeGenres!.includes(id))) { + return false; + } + } + return true; + }) + .map(item => ({ + item, + score: calculateScore(item, { + genres: options.genres, + yearMin: options.yearMin, + yearMax: options.yearMax, + withOriginalLanguage: options.withOriginalLanguage, + excludeOriginalLanguages: options.excludeOriginalLanguages, + strictLanguage: options.type === 'anime', // Strict language for anime + intent: options.intent + }, options.favorite) + })) + .filter(entry => entry.score > 0) // Remove filtered/irrelevant items + .sort((a, b) => (b.item.voteCount || 0) - (a.item.voteCount || 0)); // Sort by voteCount (desc) + + // Diversity Logic: Distinct Release Years for top N + const limit = options.limit || 10; + const finalResults: any[] = []; + const seenYears = new Set(); + + // First pass: Try to find unique years + for (const entry of ranked) { + if (finalResults.length >= limit) break; + + const year = entry.item.releaseYear; + if (year && !seenYears.has(year)) { + finalResults.push(entry.item); + seenYears.add(year); + } + } + + // Second pass: Fill if not enough unique years + if (finalResults.length < limit) { + for (const entry of ranked) { + if (finalResults.length >= limit) break; + if (!finalResults.includes(entry.item)) { + finalResults.push(entry.item); + } + } + } + + return finalResults; + }, + + /** + * Get item by ID + */ + getById: (id: number, type: 'movie' | 'tv') => { + const pool = type === 'movie' ? db.movies : [...db.tv, ...db.anime]; + return pool.find(item => item.id === id); + } +}; diff --git a/apps/CineMatch/src/lib/mock-tmdb.ts b/apps/CineMatch/src/lib/mock-tmdb.ts new file mode 100644 index 00000000..8159db8e --- /dev/null +++ b/apps/CineMatch/src/lib/mock-tmdb.ts @@ -0,0 +1,98 @@ +import type { Movie, TVShow, MediaContent } from '@/types/media'; + +export const MOCK_MOVIES: Movie[] = [ + { + id: 1, + title: "Inception", + overview: "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.", + posterPath: "/9gk7adHYeDvHkCSEqAvQNLV5Uge.jpg", + backdropPath: "/s3TBrRGB1jav7szbG0JHaxGNQlq.jpg", + releaseDate: "2010-07-15", + voteAverage: 8.4, + voteCount: 34567, + popularity: 100.5, + genreIds: [28, 878, 12], + mediaType: "movie", + originalLanguage: "en", + runtime: 148, + status: "Released", + tagline: "Your mind is the scene of the crime." + }, + { + id: 2, + title: "The Dark Knight", + overview: "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", + posterPath: "/qJ2tW6WMUDux911r6m7haRef0WH.jpg", + backdropPath: "/hkBaDkMWbLaf8B1lsWsKX7Ew3Xq.jpg", + releaseDate: "2008-07-14", + voteAverage: 8.5, + voteCount: 30678, + popularity: 95.2, + genreIds: [18, 28, 80, 53], + mediaType: "movie", + originalLanguage: "en", + runtime: 152, + status: "Released", + tagline: "Why So Serious?" + }, + { + id: 3, + title: "Interstellar", + overview: "The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", + posterPath: "/gEU2QniL6E8ahMcafCUyGdjIyns.jpg", + backdropPath: "/xJHokMbljvjADYdit5fK5VQsXEG.jpg", + releaseDate: "2014-11-05", + voteAverage: 8.4, + voteCount: 32561, + popularity: 120.8, + genreIds: [12, 18, 878], + mediaType: "movie", + originalLanguage: "en", + runtime: 169, + status: "Released", + tagline: "Mankind was born on Earth. It was never meant to die here." + } +]; + +export const MOCK_TV_SHOWS: TVShow[] = [ + { + id: 101, + title: "Breaking Bad", + overview: "When Walter White, a New Mexico chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of two years left to live. He becomes filled with a sense of fearlessness and an unrelenting desire to secure his family's financial future at any cost as he enters the dangerous world of drugs and crime.", + posterPath: "/ggFHVNu6YYI5L9pCfOacjizRGt.jpg", + backdropPath: "/tsRy63Mu5cu8etL1X7ZLyf7UP1M.jpg", + releaseDate: "2008-01-20", + voteAverage: 8.9, + voteCount: 12345, + popularity: 200.5, + genreIds: [18, 80], + mediaType: "tv", + originalLanguage: "en", + name: "Breaking Bad", + firstAirDate: "2008-01-20", + numberOfSeasons: 5, + numberOfEpisodes: 62, + status: "Ended", + inProduction: false + }, + { + id: 102, + title: "Stranger Things", + overview: "When a young boy vanishes, a small town uncovers a mystery involving secret experiments, terrifying supernatural forces, and one strange little girl.", + posterPath: "/49WJfeN0moxb9IPfGn8AIqMGskD.jpg", + backdropPath: "/56v2KjBlU4XaOv9rVYkJunU560l.jpg", + releaseDate: "2016-07-15", + voteAverage: 8.6, + voteCount: 15678, + popularity: 180.2, + genreIds: [18, 10765, 9648], + mediaType: "tv", + originalLanguage: "en", + name: "Stranger Things", + firstAirDate: "2016-07-15", + numberOfSeasons: 4, + numberOfEpisodes: 34, + status: "Returning Series", + inProduction: true + } +]; diff --git a/apps/CineMatch/src/lib/natural-language-search.ts b/apps/CineMatch/src/lib/natural-language-search.ts new file mode 100644 index 00000000..433d948e --- /dev/null +++ b/apps/CineMatch/src/lib/natural-language-search.ts @@ -0,0 +1,405 @@ +/** + * Natural Language Search Service + * Converts user prompts into semantic search queries using AI + */ + +import { generateObject, generateText } from 'ai'; +import { openai } from '@ai-sdk/openai'; +import { google } from '@ai-sdk/google'; +import { z } from 'zod'; +import type { SemanticSearchQuery, SearchIntent, SearchFilters, MediaContent, SearchResult } from '@/types/media'; +import { searchMulti, getSimilarMovies, getSimilarTVShows, discoverMovies, discoverTVShows } from './tmdb'; +import { searchByEmbedding, getContentEmbedding, calculateSimilarity } from './vector-db'; + +// Schema for parsed search intent +const SearchIntentSchema = z.object({ + mood: z.array(z.string()).optional().describe('Emotional tone or feeling (e.g., "exciting", "heartwarming", "dark")'), + themes: z.array(z.string()).optional().describe('Story themes (e.g., "redemption", "coming-of-age", "survival")'), + pacing: z.enum(['slow', 'medium', 'fast']).optional().describe('Preferred pacing of the content'), + era: z.string().optional().describe('Time period setting (e.g., "1980s", "modern", "futuristic")'), + setting: z.array(z.string()).optional().describe('Physical setting (e.g., "space", "urban", "underwater")'), + similar_to: z.array(z.string()).optional().describe('Similar movies/shows mentioned by user'), + avoid: z.array(z.string()).optional().describe('Elements to avoid (e.g., "gore", "jump scares")'), + genres: z.array(z.string()).optional().describe('Inferred genres from the query'), + keywords: z.array(z.string()).optional().describe('Key search terms extracted'), + mediaType: z.enum(['movie', 'tv', 'all']).optional().describe('Preferred media type'), +}); + +const SearchFiltersSchema = z.object({ + mediaType: z.enum(['movie', 'tv', 'all']).optional(), + genres: z.array(z.number()).optional(), + yearRange: z.object({ + min: z.number().optional(), + max: z.number().optional(), + }).optional(), + ratingMin: z.number().optional(), +}); + +// Server-side intent cache (survives across requests in same process) +const intentCache = new Map(); +const INTENT_CACHE_TTL_MS = 10 * 60 * 1000; // 10 minute TTL + +// Genre mapping for common genre names to TMDB IDs +const GENRE_MAP: Record = { + action: { movie: 28, tv: 10759 }, + adventure: { movie: 12, tv: 10759 }, + animation: { movie: 16, tv: 16 }, + comedy: { movie: 35, tv: 35 }, + crime: { movie: 80, tv: 80 }, + documentary: { movie: 99, tv: 99 }, + drama: { movie: 18, tv: 18 }, + family: { movie: 10751, tv: 10751 }, + fantasy: { movie: 14, tv: 10765 }, + horror: { movie: 27, tv: 9648 }, + mystery: { movie: 9648, tv: 9648 }, + romance: { movie: 10749, tv: 10749 }, + 'sci-fi': { movie: 878, tv: 10765 }, + 'science fiction': { movie: 878, tv: 10765 }, + thriller: { movie: 53, tv: 53 }, + war: { movie: 10752, tv: 10768 }, + western: { movie: 37, tv: 37 }, +}; + +/** + * Parse natural language query into structured search intent + */ +export async function parseSearchQuery(query: string): Promise { + // Normalize for cache key + const cacheKey = query.toLowerCase().trim(); + + // Check cache first + const cached = intentCache.get(cacheKey); + if (cached && Date.now() - cached.timestamp < INTENT_CACHE_TTL_MS) { + console.log(`📦 Intent cache hit for: "${query.slice(0, 30)}..."`); + return cached.result; + } + + try { + console.log(`🧠 AI parsing intent for: "${query.slice(0, 30)}..."`); + // Use AI to extract intent from natural language + const { object: intent } = await generateObject({ + model: openai('gpt-4o-mini'), + schema: SearchIntentSchema, + prompt: `Analyze this movie/TV show search query and extract the user's intent: + +Query: "${query}" + +Extract: +- Mood: What emotional experience are they seeking? +- Themes: What story themes are they interested in? +- Pacing: Do they want something slow-burn, fast-paced, or in between? +- Era: What time period setting do they prefer? +- Setting: Where should the story take place? +- Similar to: Are they referencing specific movies/shows? +- Avoid: What elements should be avoided? +- Genres: What genres fit this description? +- Keywords: What are the key search terms? +- Media type: Do they specifically want movies or TV shows? + +Be specific and extract as much relevant information as possible.`, + }); + + // Convert genre names to IDs + const genreIds = intent.genres?.flatMap(genre => { + const normalized = genre.toLowerCase(); + const mapping = GENRE_MAP[normalized]; + if (mapping) { + return [mapping.movie, mapping.tv].filter((v, i, a) => a.indexOf(v) === i); + } + return []; + }) || []; + + const result: SemanticSearchQuery = { + query, + intent: intent as SearchIntent, + filters: { + mediaType: intent.mediaType || 'all', + genres: genreIds.length > 0 ? genreIds : undefined, + }, + }; + + // Cache the result + intentCache.set(cacheKey, { result, timestamp: Date.now() }); + + return result; + } catch (error) { + console.error('Failed to parse search query with AI:', error); + // Fallback to basic query + return { query }; + } +} + +/** + * Perform semantic search combining TMDB and vector search + */ +export async function semanticSearch( + query: string, + userPreferences?: number[] +): Promise { + // Parse the natural language query + const semanticQuery = await parseSearchQuery(query); + + // Parallel search strategies + const [tmdbResults, vectorResults] = await Promise.all([ + performTMDBSearch(semanticQuery), + performVectorSearch(semanticQuery), + ]); + + // Merge and rank results + const mergedResults = mergeAndRankResults(tmdbResults, vectorResults, semanticQuery, userPreferences); + + return mergedResults; +} + +/** + * Perform TMDB-based search with intent understanding + */ +async function performTMDBSearch(query: SemanticSearchQuery): Promise { + const results: SearchResult[] = []; + + // Text search - prioritize direct title matches + if (query.query) { + const { results: textResults } = await searchMulti(query.query, query.filters); + + // Check if the query looks like a specific title (contains proper nouns or is in similar_to) + const queryLower = query.query.toLowerCase(); + const isLikelyTitleSearch = query.intent?.similar_to?.some( + ref => ref.toLowerCase() === queryLower || queryLower.includes(ref.toLowerCase()) + ); + + results.push(...textResults.map((content, index) => { + // Give highest score to exact/close title matches + const titleLower = content.title.toLowerCase(); + const isExactMatch = titleLower === queryLower; + const isCloseMatch = titleLower.includes(queryLower) || queryLower.includes(titleLower); + + let score = 0.8; + if (isExactMatch) { + score = 1.0; // Perfect match + } else if (isCloseMatch) { + score = 0.95; // Close match + } else if (index < 3) { + score = 0.85; // Top TMDB results + } + + return { + content, + relevanceScore: score, + matchReasons: isExactMatch || isCloseMatch ? ['Title match'] : ['Text match'], + }; + })); + } + + // Similar content search if references found (but DON'T overshadow direct matches) + if (query.intent?.similar_to?.length) { + // Search for the referenced content first + for (const ref of query.intent.similar_to.slice(0, 3)) { + const { results: refResults } = await searchMulti(ref); + if (refResults.length > 0) { + const firstMatch = refResults[0]; + + // Add the referenced content itself with high score + const alreadyExists = results.some(r => + r.content.id === firstMatch.id && r.content.mediaType === firstMatch.mediaType + ); + if (!alreadyExists) { + results.push({ + content: firstMatch, + relevanceScore: 0.98, // Very high, but below exact title match + matchReasons: ['Referenced title'], + }); + } + + // Then get similar content + const similar = firstMatch.mediaType === 'movie' + ? await getSimilarMovies(firstMatch.id) + : await getSimilarTVShows(firstMatch.id); + + results.push(...similar.map(content => ({ + content, + relevanceScore: 0.75, // Lower than direct matches + matchReasons: [`Similar to "${ref}"`], + }))); + } + } + } + + // Discovery-based search with filters + if (query.filters?.genres?.length) { + const movieGenres = query.filters.genres.filter(id => id < 10000); + const tvGenres = query.filters.genres.filter(id => id >= 10000 || GENRE_MAP.action?.tv === id); + + if (query.filters.mediaType !== 'tv' && movieGenres.length > 0) { + const { results: discoveredMovies } = await discoverMovies({ + genres: movieGenres, + ratingMin: query.filters.ratingMin, + }); + results.push(...discoveredMovies.map(content => ({ + content, + relevanceScore: 0.7, + matchReasons: ['Genre match'], + }))); + } + + if (query.filters.mediaType !== 'movie' && tvGenres.length > 0) { + const { results: discoveredShows } = await discoverTVShows({ + genres: tvGenres, + ratingMin: query.filters.ratingMin, + }); + results.push(...discoveredShows.map(content => ({ + content, + relevanceScore: 0.7, + matchReasons: ['Genre match'], + }))); + } + } + + return results; +} + +/** + * Perform vector similarity search + */ +async function performVectorSearch(query: SemanticSearchQuery): Promise { + try { + // Get embedding for the query + const queryEmbedding = await getContentEmbedding(query.query); + if (!queryEmbedding) return []; + + // Search vector database + const vectorResults = await searchByEmbedding(queryEmbedding, 20); + + return vectorResults.map(result => ({ + content: result.content, + relevanceScore: result.score, + matchReasons: ['Semantic similarity'], + similarityScore: result.score, + })); + } catch (error) { + console.error('Vector search failed:', error); + return []; + } +} + +/** + * Merge and rank results from multiple sources + */ +function mergeAndRankResults( + tmdbResults: SearchResult[], + vectorResults: SearchResult[], + query: SemanticSearchQuery, + userPreferences?: number[] +): SearchResult[] { + // Combine results, deduplicating by ID + const resultMap = new Map(); + + // Process TMDB results + for (const result of tmdbResults) { + const key = `${result.content.mediaType}-${result.content.id}`; + const existing = resultMap.get(key); + if (existing) { + existing.relevanceScore = Math.max(existing.relevanceScore, result.relevanceScore); + existing.matchReasons.push(...result.matchReasons); + } else { + resultMap.set(key, { ...result }); + } + } + + // Process vector results with higher weight + for (const result of vectorResults) { + const key = `${result.content.mediaType}-${result.content.id}`; + const existing = resultMap.get(key); + if (existing) { + // Boost score significantly for vector matches + existing.relevanceScore = Math.min(1, existing.relevanceScore + (result.similarityScore || 0) * 0.5); + existing.matchReasons.push(...result.matchReasons); + existing.similarityScore = result.similarityScore; + } else { + resultMap.set(key, { ...result, relevanceScore: (result.similarityScore || 0.5) * 0.8 }); + } + } + + // Convert to array and apply additional scoring + let results = Array.from(resultMap.values()); + + // Apply intent-based scoring + if (query.intent) { + results = results.map(result => { + let boost = 0; + + // Boost for matching themes (map themes to potential genre matches) + if (query.intent?.themes?.length) { + const themeGenres = query.intent.themes + .map((t: string) => GENRE_MAP[t.toLowerCase()]) + .filter(Boolean); + if (themeGenres.some((g: { movie?: number; tv?: number }) => + g?.movie && result.content.genreIds.includes(g.movie) + )) { + boost += 0.1; + result.matchReasons.push('Theme match'); + } + } + + // Popularity boost for highly rated content + if (result.content.voteAverage >= 7.5 && result.content.voteCount > 1000) { + boost += 0.05; + } + + return { + ...result, + relevanceScore: Math.min(1, result.relevanceScore + boost), + }; + }); + } + + // Apply user preference boost + if (userPreferences?.length) { + results = results.map(result => { + const genreMatch = result.content.genreIds.some(id => userPreferences.includes(id)); + if (genreMatch) { + return { + ...result, + relevanceScore: Math.min(1, result.relevanceScore + 0.1), + matchReasons: [...result.matchReasons, 'Matches your preferences'], + }; + } + return result; + }); + } + + // Sort by relevance and deduplicate match reasons + return results + .map(r => ({ + ...r, + matchReasons: [...new Set(r.matchReasons)], + })) + .sort((a, b) => b.relevanceScore - a.relevanceScore) + .slice(0, 50); +} + +/** + * Generate a natural language explanation for why content was recommended + */ +export async function explainRecommendation( + content: MediaContent, + userQuery: string, + matchReasons: string[] +): Promise { + try { + const { text } = await generateText({ + model: openai('gpt-4o-mini'), + prompt: `Generate a brief, engaging explanation for why "${content.title}" was recommended to a user who searched for: "${userQuery}" + +Match reasons: ${matchReasons.join(', ')} +Content overview: ${content.overview} +Rating: ${content.voteAverage}/10 + +Write a 1-2 sentence explanation that's conversational and highlights why this is a good match for their search. Don't mention the rating unless it's relevant.`, + }); + + return text; + } catch (error) { + // Fallback to simple explanation + return matchReasons[0] || 'Based on your search'; + } +} diff --git a/apps/CineMatch/src/lib/preferences.ts b/apps/CineMatch/src/lib/preferences.ts new file mode 100644 index 00000000..259e7296 --- /dev/null +++ b/apps/CineMatch/src/lib/preferences.ts @@ -0,0 +1,290 @@ +/** + * User Preference Tracking System + * Manages user preferences, watch history, and preference learning + */ + +import type { UserPreferences, WatchHistoryEntry, MediaContent, Recommendation } from '@/types/media'; + +// In-memory store for development (would be Firestore in production) +const userPreferencesStore = new Map(); + +// Preference learning weights +const LEARNING_WEIGHTS = { + watch_completed: 0.3, + watch_partial: 0.1, + explicit_like: 0.5, + explicit_dislike: -0.4, + high_rating: 0.4, + low_rating: -0.2, +}; + +/** + * Initialize or get user preferences + */ +export async function getUserPreferences(userId: string): Promise { + let prefs = userPreferencesStore.get(userId); + + if (!prefs) { + prefs = { + userId, + favoriteGenres: [], + likedContent: [], + dislikedContent: [], + watchHistory: [], + preferenceVector: undefined, + updatedAt: new Date(), + }; + userPreferencesStore.set(userId, prefs); + } + + return prefs; +} + +/** + * Save user preferences + */ +export async function saveUserPreferences(prefs: UserPreferences): Promise { + prefs.updatedAt = new Date(); + userPreferencesStore.set(prefs.userId, prefs); +} + +/** + * Record content view/watch + */ +export async function recordWatch( + userId: string, + contentId: number, + mediaType: 'movie' | 'tv', + progress: number, + rating?: number +): Promise { + const prefs = await getUserPreferences(userId); + + // Check if already in history + const existingIndex = prefs.watchHistory.findIndex( + h => h.contentId === contentId && h.mediaType === mediaType + ); + + const entry: WatchHistoryEntry = { + contentId, + mediaType, + watchedAt: new Date(), + progress, + rating, + completed: progress >= 0.9, + }; + + if (existingIndex >= 0) { + // Update existing entry + const existing = prefs.watchHistory[existingIndex]; + prefs.watchHistory[existingIndex] = { + ...entry, + progress: Math.max(existing.progress, progress), + rating: rating ?? existing.rating, + completed: existing.completed || entry.completed, + }; + } else { + // Add new entry + prefs.watchHistory.push(entry); + } + + // Keep only last 500 entries + if (prefs.watchHistory.length > 500) { + prefs.watchHistory = prefs.watchHistory.slice(-500); + } + + await saveUserPreferences(prefs); +} + +/** + * Record explicit like/dislike + */ +export async function recordFeedback( + userId: string, + contentId: number, + feedback: 'like' | 'dislike' +): Promise { + const prefs = await getUserPreferences(userId); + + if (feedback === 'like') { + if (!prefs.likedContent.includes(contentId)) { + prefs.likedContent.push(contentId); + } + // Remove from disliked if present + prefs.dislikedContent = prefs.dislikedContent.filter(id => id !== contentId); + } else { + if (!prefs.dislikedContent.includes(contentId)) { + prefs.dislikedContent.push(contentId); + } + // Remove from liked if present + prefs.likedContent = prefs.likedContent.filter(id => id !== contentId); + } + + await saveUserPreferences(prefs); +} + +/** + * Update favorite genres based on viewing behavior + */ +export async function updateGenrePreferences( + userId: string, + content: MediaContent, + signal: 'watch' | 'complete' | 'like' | 'dislike' | 'rate', + rating?: number +): Promise { + const prefs = await getUserPreferences(userId); + + // Calculate score impact + let impact = 0; + switch (signal) { + case 'watch': + impact = LEARNING_WEIGHTS.watch_partial; + break; + case 'complete': + impact = LEARNING_WEIGHTS.watch_completed; + break; + case 'like': + impact = LEARNING_WEIGHTS.explicit_like; + break; + case 'dislike': + impact = LEARNING_WEIGHTS.explicit_dislike; + break; + case 'rate': + impact = rating && rating >= 7 ? LEARNING_WEIGHTS.high_rating : LEARNING_WEIGHTS.low_rating; + break; + } + + // Update genre scores + const genreScores = new Map(); + + // Initialize with existing preferences + for (const genreId of prefs.favoriteGenres) { + genreScores.set(genreId, 1); + } + + // Apply impact to content genres + for (const genreId of content.genreIds) { + const current = genreScores.get(genreId) || 0; + genreScores.set(genreId, current + impact); + } + + // Sort by score and take top genres + const sortedGenres = Array.from(genreScores.entries()) + .filter(([_, score]) => score > 0) + .sort((a, b) => b[1] - a[1]) + .slice(0, 10) + .map(([id]) => id); + + prefs.favoriteGenres = sortedGenres; + await saveUserPreferences(prefs); +} + +/** + * Generate preference vector from user behavior + * This vector can be used for similarity matching with content embeddings + */ +export async function generatePreferenceVector(userId: string): Promise { + const prefs = await getUserPreferences(userId); + + if (prefs.watchHistory.length < 5) { + // Not enough data to generate meaningful vector + return undefined; + } + + // In production, this would aggregate content embeddings + // For now, return undefined to indicate not enough data + return undefined; +} + +/** + * Get personalized recommendations based on preferences + */ +export async function getPersonalizedScore( + userId: string, + content: MediaContent +): Promise { + const prefs = await getUserPreferences(userId); + let score = 0; + + // Boost for matching genres + const matchingGenres = content.genreIds.filter(id => prefs.favoriteGenres.includes(id)); + score += matchingGenres.length * 0.1; + + // Penalty if disliked + if (prefs.dislikedContent.includes(content.id)) { + score -= 0.5; + } + + // Small boost if already liked (for related content) + if (prefs.likedContent.includes(content.id)) { + score += 0.2; + } + + // Penalty if already watched recently + const recentWatch = prefs.watchHistory.find( + h => h.contentId === content.id && h.mediaType === content.mediaType + ); + if (recentWatch && recentWatch.completed) { + const daysSinceWatch = (Date.now() - recentWatch.watchedAt.getTime()) / (1000 * 60 * 60 * 24); + if (daysSinceWatch < 30) { + score -= 0.3; + } + } + + return Math.max(0, Math.min(1, score)); +} + +/** + * Calculate recommendation adjustments based on user feedback + */ +export async function adjustRecommendations( + userId: string, + recommendations: Recommendation[] +): Promise { + const prefs = await getUserPreferences(userId); + + return recommendations.map(rec => { + const personalizedScore = getPersonalizedScoreSync(prefs, rec.content); + const adjustedScore = rec.score + personalizedScore * 0.3; + + return { + ...rec, + score: Math.max(0, Math.min(1, adjustedScore)), + reasons: personalizedScore > 0 + ? [...rec.reasons, 'Matches your preferences'] + : rec.reasons, + }; + }).sort((a, b) => b.score - a.score); +} + +// Sync version for use in map operations +function getPersonalizedScoreSync(prefs: UserPreferences, content: MediaContent): number { + let score = 0; + + const matchingGenres = content.genreIds.filter(id => prefs.favoriteGenres.includes(id)); + score += matchingGenres.length * 0.1; + + if (prefs.dislikedContent.includes(content.id)) { + score -= 0.5; + } + + if (prefs.likedContent.includes(content.id)) { + score += 0.2; + } + + return score; +} + +/** + * Export user preferences (for data portability) + */ +export async function exportUserData(userId: string): Promise { + return userPreferencesStore.get(userId) || null; +} + +/** + * Delete user preferences (for GDPR compliance) + */ +export async function deleteUserData(userId: string): Promise { + userPreferencesStore.delete(userId); +} diff --git a/apps/CineMatch/src/lib/tmdb.ts b/apps/CineMatch/src/lib/tmdb.ts new file mode 100644 index 00000000..fc366b0c --- /dev/null +++ b/apps/CineMatch/src/lib/tmdb.ts @@ -0,0 +1,610 @@ +/** + * TMDB API Integration + * Provides typed access to The Movie Database API + */ + +import { TMDB } from 'tmdb-ts'; +import type { Movie, TVShow, MediaContent, Genre, SearchFilters } from '@/types/media'; +import { MOCK_MOVIES, MOCK_TV_SHOWS } from './mock-tmdb'; + +// Environment validation +const TMDB_ACCESS_TOKEN = process.env.NEXT_PUBLIC_TMDB_ACCESS_TOKEN; + +const IS_MOCK_MODE = !TMDB_ACCESS_TOKEN; + +if (IS_MOCK_MODE) { + console.warn('TMDB_ACCESS_TOKEN is not defined. Running in MOCK MODE.'); +} + +// Initialize TMDB client +export const tmdb = TMDB_ACCESS_TOKEN ? new TMDB(TMDB_ACCESS_TOKEN) : null; + +/** + * Image URL helpers + */ +export const TMDB_IMAGE_BASE = 'https://image.tmdb.org/t/p'; + +export const getImageUrl = (path: string | null, size: 'w500' | 'w780' | 'original' = 'w500'): string | null => { + if (!path) return null; + // If in mock mode and path is relative, return as is (assuming it might be a placeholder) + // But for real TMDB paths, we prepend base + return `${TMDB_IMAGE_BASE}/${size}${path}`; +}; + +export const getPosterUrl = (path: string | null): string | null => getImageUrl(path, 'w500'); +export const getBackdropUrl = (path: string | null): string | null => getImageUrl(path, 'w780'); + +/** + * Search for movies and TV shows + */ +export async function searchMulti( + query: string, + filters?: SearchFilters, + page = 1 +): Promise<{ results: MediaContent[]; totalPages: number; totalResults: number }> { + if (IS_MOCK_MODE) { + const all = [...MOCK_MOVIES, ...MOCK_TV_SHOWS]; + const filtered = all.filter(item => item.title.toLowerCase().includes(query.toLowerCase())); + return { results: filtered, totalPages: 1, totalResults: filtered.length }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const response = await tmdb.search.multi({ query, page }); + + // Filter and transform results + let results: MediaContent[] = response.results + .filter(item => item.media_type === 'movie' || item.media_type === 'tv') + .map(item => transformToMediaContent(item)); + + // Apply filters + if (filters) { + results = applyFilters(results, filters); + } + + return { + results, + totalPages: response.total_pages, + totalResults: response.total_results, + }; +} + +/** + * Get trending content + */ +export async function getTrending( + mediaType: 'movie' | 'tv' | 'all' = 'all', + timeWindow: 'day' | 'week' = 'week' +): Promise { + if (IS_MOCK_MODE) { + if (mediaType === 'movie') return MOCK_MOVIES; + if (mediaType === 'tv') return MOCK_TV_SHOWS; + return [...MOCK_MOVIES, ...MOCK_TV_SHOWS]; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const response = await tmdb.trending.trending(mediaType, timeWindow); + + return response.results.map(item => transformToMediaContent(item)); +} + +/** + * Get popular movies + */ +export async function getPopularMovies(page = 1): Promise<{ results: Movie[]; totalPages: number }> { + if (IS_MOCK_MODE) { + return { results: MOCK_MOVIES, totalPages: 1 }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const response = await tmdb.movies.popular({ page }); + + return { + results: response.results.map(movie => transformToMovie(movie)), + totalPages: response.total_pages, + }; +} + +/** + * Get popular TV shows + */ +export async function getPopularTVShows(page = 1): Promise<{ results: TVShow[]; totalPages: number }> { + if (IS_MOCK_MODE) { + return { results: MOCK_TV_SHOWS, totalPages: 1 }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const response = await tmdb.tvShows.popular({ page }); + + return { + results: response.results.map(show => transformToTVShow(show)), + totalPages: response.total_pages, + }; +} + +/** + * Get movie details (basic) + */ +export async function getMovieDetails(id: number): Promise { + if (IS_MOCK_MODE) { + return MOCK_MOVIES.find(m => m.id === id) || MOCK_MOVIES[0]; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const movie = await tmdb.movies.details(id); + return transformToMovie(movie); +} + +/** + * Get full movie details with appended data (credits, videos, similar, recommendations) + */ +export async function getFullMovieDetails(id: number): Promise<{ + movie: Movie; + credits: { cast: CastMember[]; crew: CrewMember[] }; + videos: Video[]; + similar: Movie[]; + recommendations: Movie[]; + genres: Genre[]; +}> { + if (IS_MOCK_MODE) { + const movie = MOCK_MOVIES.find(m => m.id === id) || MOCK_MOVIES[0]; + return { + movie, + credits: { cast: [], crew: [] }, + videos: [], + similar: MOCK_MOVIES.slice(0, 2), + recommendations: MOCK_MOVIES.slice(0, 2), + genres: [], + }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const movie = await tmdb.movies.details(id, [ + 'credits', + 'videos', + 'similar', + 'recommendations', + ] as any); + + return { + movie: transformToMovie(movie), + credits: { + cast: ((movie as any).credits?.cast || []).slice(0, 20).map((c: any) => ({ + id: c.id, + name: c.name, + character: c.character, + profilePath: c.profile_path, + order: c.order, + })), + crew: ((movie as any).credits?.crew || []).slice(0, 10).map((c: any) => ({ + id: c.id, + name: c.name, + job: c.job, + department: c.department, + profilePath: c.profile_path, + })), + }, + videos: ((movie as any).videos?.results || []).map((v: any) => ({ + id: v.id, + key: v.key, + name: v.name, + site: v.site, + type: v.type, + })), + similar: ((movie as any).similar?.results || []).slice(0, 12).map((m: any) => transformToMovie(m)), + recommendations: ((movie as any).recommendations?.results || []).slice(0, 12).map((m: any) => transformToMovie(m)), + genres: (movie as any).genres || [], + }; +} + +/** + * Get TV show details (basic) + */ +export async function getTVShowDetails(id: number): Promise { + if (IS_MOCK_MODE) { + return MOCK_TV_SHOWS.find(s => s.id === id) || MOCK_TV_SHOWS[0]; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const show = await tmdb.tvShows.details(id); + return transformToTVShow(show); +} + +/** + * Get full TV show details with appended data + */ +export async function getFullTVShowDetails(id: number): Promise<{ + show: TVShow; + credits: { cast: CastMember[]; crew: CrewMember[] }; + videos: Video[]; + similar: TVShow[]; + recommendations: TVShow[]; + genres: Genre[]; +}> { + if (IS_MOCK_MODE) { + const show = MOCK_TV_SHOWS.find(s => s.id === id) || MOCK_TV_SHOWS[0]; + return { + show, + credits: { cast: [], crew: [] }, + videos: [], + similar: MOCK_TV_SHOWS.slice(0, 2), + recommendations: MOCK_TV_SHOWS.slice(0, 2), + genres: [], + }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const show = await tmdb.tvShows.details(id, [ + 'credits', + 'videos', + 'similar', + 'recommendations', + ] as any); + + return { + show: transformToTVShow(show), + credits: { + cast: ((show as any).credits?.cast || []).slice(0, 20).map((c: any) => ({ + id: c.id, + name: c.name, + character: c.character, + profilePath: c.profile_path, + order: c.order, + })), + crew: ((show as any).credits?.crew || []).slice(0, 10).map((c: any) => ({ + id: c.id, + name: c.name, + job: c.job, + department: c.department, + profilePath: c.profile_path, + })), + }, + videos: ((show as any).videos?.results || []).map((v: any) => ({ + id: v.id, + key: v.key, + name: v.name, + site: v.site, + type: v.type, + })), + similar: ((show as any).similar?.results || []).slice(0, 12).map((s: any) => transformToTVShow(s)), + recommendations: ((show as any).recommendations?.results || []).slice(0, 12).map((s: any) => transformToTVShow(s)), + genres: (show as any).genres || [], + }; +} + +// Types for credits and videos +export interface CastMember { + id: number; + name: string; + character: string; + profilePath: string | null; + order: number; +} + +export interface CrewMember { + id: number; + name: string; + job: string; + department: string; + profilePath: string | null; +} + +export interface Video { + id: string; + key: string; + name: string; + site: string; + type: string; +} + +/** + * Get similar movies + */ +export async function getSimilarMovies(id: number, page = 1): Promise { + if (IS_MOCK_MODE) { + return MOCK_MOVIES; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const response = await tmdb.movies.similar(id, { page }); + return response.results.map(movie => transformToMovie(movie)); +} + +/** + * Get similar TV shows + */ +export async function getSimilarTVShows(id: number, page = 1): Promise { + if (IS_MOCK_MODE) { + return MOCK_TV_SHOWS; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const response = await tmdb.tvShows.similar(id, { page }); + return response.results.map(show => transformToTVShow(show)); +} + +/** + * Get all genres + */ +export async function getGenres(): Promise<{ movies: Genre[]; tv: Genre[] }> { + if (IS_MOCK_MODE) { + return { movies: [], tv: [] }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const [movieGenres, tvGenres] = await Promise.all([ + tmdb.genres.movies(), + tmdb.genres.tvShows(), + ]); + + return { + movies: movieGenres.genres, + tv: tvGenres.genres, + }; +} + +/** + * Discover movies with filters + */ +export async function discoverMovies( + options: { + genres?: number[]; + yearMin?: number; + yearMax?: number; + ratingMin?: number; + sortBy?: string; + page?: number; + withOriginalLanguage?: string; + withOriginCountry?: string; + } = {} +): Promise<{ results: Movie[]; totalPages: number }> { + if (IS_MOCK_MODE) { + return { results: MOCK_MOVIES, totalPages: 1 }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const params: Record = { + page: options.page || 1, + sort_by: options.sortBy || 'popularity.desc', + }; + + if (options.genres?.length) { + params.with_genres = options.genres.join(','); + } + if (options.yearMin) { + params['primary_release_date.gte'] = `${options.yearMin}-01-01`; + } + if (options.yearMax) { + params['primary_release_date.lte'] = `${options.yearMax}-12-31`; + } + if (options.ratingMin) { + params['vote_average.gte'] = options.ratingMin; + } + if (options.withOriginalLanguage) { + params.with_original_language = options.withOriginalLanguage; + } + if (options.withOriginCountry) { + params.with_origin_country = options.withOriginCountry; + } + + const response = await tmdb.discover.movie(params); + + return { + results: response.results.map(movie => transformToMovie(movie)), + totalPages: response.total_pages, + }; +} + +/** + * Discover TV shows with filters + */ +export async function discoverTVShows( + options: { + genres?: number[]; + yearMin?: number; + yearMax?: number; + ratingMin?: number; + sortBy?: string; + page?: number; + withOriginalLanguage?: string; + withOriginCountry?: string; + } = {} +): Promise<{ results: TVShow[]; totalPages: number }> { + if (IS_MOCK_MODE) { + return { results: MOCK_TV_SHOWS, totalPages: 1 }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + const params: Record = { + page: options.page || 1, + sort_by: options.sortBy || 'popularity.desc', + }; + + if (options.genres?.length) { + params.with_genres = options.genres.join(','); + } + if (options.yearMin) { + params['first_air_date.gte'] = `${options.yearMin}-01-01`; + } + if (options.yearMax) { + params['first_air_date.lte'] = `${options.yearMax}-12-31`; + } + if (options.ratingMin) { + params['vote_average.gte'] = options.ratingMin; + } + if (options.withOriginalLanguage) { + params.with_original_language = options.withOriginalLanguage; + } + if (options.withOriginCountry) { + params.with_origin_country = options.withOriginCountry; + } + + // Direct fetch as tmdb-ts may not support discover.tv + const queryParams = new URLSearchParams(); + Object.entries(params).forEach(([key, value]) => { + queryParams.append(key, String(value)); + }); + + const response = await fetch( + `https://api.themoviedb.org/3/discover/tv?${queryParams.toString()}`, + { + headers: { + Authorization: `Bearer ${TMDB_ACCESS_TOKEN}`, + 'Content-Type': 'application/json', + }, + } + ); + + if (!response.ok) { + throw new Error(`TMDB API error: ${response.status}`); + } + + const data = await response.json(); + + return { + results: data.results.map((show: any) => transformToTVShow(show)), + totalPages: data.total_pages, + }; +} + +// Helper: Transform TMDB response to MediaContent +function transformToMediaContent(item: any): MediaContent { + const isTV = item.media_type === 'tv' || 'first_air_date' in item; + + return { + id: item.id, + title: isTV ? item.name : item.title, + overview: item.overview || '', + posterPath: item.poster_path, + backdropPath: item.backdrop_path, + releaseDate: isTV ? item.first_air_date : item.release_date, + voteAverage: item.vote_average, + voteCount: item.vote_count, + popularity: item.popularity, + genreIds: item.genre_ids || (item.genres?.map((g: any) => g.id) ?? []), + mediaType: isTV ? 'tv' : 'movie', + originalLanguage: item.original_language || 'en', + originCountry: item.origin_country || (item.production_countries?.map((c: any) => c.iso_3166_1)) || [], + }; +} + +// Helper: Transform to Movie type +function transformToMovie(movie: any): Movie { + return { + ...transformToMediaContent({ ...movie, media_type: 'movie' }), + mediaType: 'movie', + runtime: movie.runtime, + budget: movie.budget, + revenue: movie.revenue, + tagline: movie.tagline, + status: movie.status, + }; +} + +// Helper: Transform to TVShow type +function transformToTVShow(show: any): TVShow { + return { + ...transformToMediaContent({ ...show, media_type: 'tv' }), + mediaType: 'tv', + name: show.name, + firstAirDate: show.first_air_date, + lastAirDate: show.last_air_date, + numberOfSeasons: show.number_of_seasons, + numberOfEpisodes: show.number_of_episodes, + episodeRunTime: show.episode_run_time, + status: show.status, + inProduction: show.in_production, + }; +} + +// Helper: Apply search filters +function applyFilters(results: MediaContent[], filters: SearchFilters): MediaContent[] { + return results.filter(item => { + // Media type filter + if (filters.mediaType && filters.mediaType !== 'all' && item.mediaType !== filters.mediaType) { + return false; + } + + // Genre filter + if (filters.genres?.length) { + const hasMatchingGenre = item.genreIds.some(id => filters.genres!.includes(id)); + if (!hasMatchingGenre) return false; + } + + // Year range filter + if (filters.yearRange) { + const year = new Date(item.releaseDate).getFullYear(); + if (filters.yearRange.min && year < filters.yearRange.min) return false; + if (filters.yearRange.max && year > filters.yearRange.max) return false; + } + + // Rating filter + if (filters.ratingMin && item.voteAverage < filters.ratingMin) { + return false; + } + + return true; + }); +} + +/** + * Get watch providers + */ +export async function getWatchProviders(id: number, type: 'movie' | 'tv'): Promise<{ + flatrate: { provider_id: number; provider_name: string; logo_path: string }[]; + rent: { provider_id: number; provider_name: string; logo_path: string }[]; + buy: { provider_id: number; provider_name: string; logo_path: string }[]; + link: string; +}> { + if (IS_MOCK_MODE) { + return { + flatrate: [ + { provider_id: 8, provider_name: 'Netflix', logo_path: '/t2yyOv40HZeVlLkYsCsPHnWLk4W.jpg' }, + { provider_id: 119, provider_name: 'Amazon Prime Video', logo_path: '/emthp39XA2YScoU8vk5kAFagel2.jpg' }, + ], + rent: [], + buy: [], + link: 'https://www.themoviedb.org', + }; + } + + if (!tmdb) throw new Error('TMDB client not initialized'); + + // Direct fetch as tmdb-ts might not have providers fully typed or accessible easily + const response = await fetch( + `https://api.themoviedb.org/3/${type}/${id}/watch/providers`, + { + headers: { + Authorization: `Bearer ${TMDB_ACCESS_TOKEN}`, + 'Content-Type': 'application/json', + }, + } + ); + + if (!response.ok) { + return { flatrate: [], rent: [], buy: [], link: '' }; + } + + const data = await response.json(); + // Default to US for now, or use a locale if available + const results = data.results?.US || data.results?.FR || {}; + + return { + flatrate: results.flatrate || [], + rent: results.rent || [], + buy: results.buy || [], + link: results.link || '', + }; +} diff --git a/apps/CineMatch/src/lib/vector-db.ts b/apps/CineMatch/src/lib/vector-db.ts new file mode 100644 index 00000000..375b9a05 --- /dev/null +++ b/apps/CineMatch/src/lib/vector-db.ts @@ -0,0 +1,457 @@ +/** + * Vector Search Integration with RuVector + * Uses the ruvector npm package for embedded vector database + * https://www.npmjs.com/package/ruvector + */ + +import { VectorDB } from 'ruvector'; +import type { MediaContent } from '@/types/media'; +import { google } from '@ai-sdk/google'; +import { embed } from 'ai'; + +// Embedding dimensions (text-embedding-3-small default, can be customized) +const EMBEDDING_DIMENSIONS = 768; + +// Storage path for persistent vector database +const STORAGE_PATH = process.env.RUVECTOR_STORAGE_PATH || './data/media-vectors.db'; + +// Max elements for the HNSW index +const MAX_ELEMENTS = 100000; + +// Singleton database instance +let db: InstanceType | null = null; + +// Server-side embedding cache (survives across requests in the same process) +const embeddingCache = new Map(); +const CACHE_TTL_MS = 5 * 60 * 1000; // 5 minute TTL + +/** + * Media content metadata stored alongside vectors + */ +interface MediaVectorMetadata { + contentId: number; + mediaType: 'movie' | 'tv'; + title: string; + overview: string; + genreIds: number[]; + voteAverage: number; + releaseDate: string; + posterPath: string | null; + originalLanguage?: string; +} + +/** + * Get or create the vector database instance + */ +export function getVectorDb(): InstanceType { + if (!db) { + db = new VectorDB({ + dimensions: EMBEDDING_DIMENSIONS, + maxElements: MAX_ELEMENTS, + storagePath: STORAGE_PATH, + }); + console.log(`✅ VectorDb initialized with ${EMBEDDING_DIMENSIONS} dimensions`); + } + return db; +} + +/** + * Check if the vector database is available + */ +export async function isVectorDbAvailable(): Promise { + try { + const database = getVectorDb(); + await database.len(); + return true; + } catch { + return false; + } +} + +/** + * Generate embedding for text content + * Uses OpenAI embeddings API or falls back to mock embedding + */ +export async function getContentEmbedding(text: string): Promise { + try { + // Normalize the text for cache key + const cacheKey = text.toLowerCase().trim(); + + // Check cache first + const cached = embeddingCache.get(cacheKey); + if (cached && Date.now() - cached.timestamp < CACHE_TTL_MS) { + console.log(`📦 Embedding cache hit for: "${text.slice(0, 30)}..."`); + return cached.embedding; + } + + const OPENAI_API_KEY = process.env.OPENAI_API_KEY; + const GOOGLE_API_KEY = process.env.GOOGLE_GENERATIVE_AI_API_KEY; + + if (OPENAI_API_KEY) { + console.log(`🔄 Generating embedding (OpenAI) for: "${text.slice(0, 30)}..."`); + const response = await fetch('https://api.openai.com/v1/embeddings', { + method: 'POST', + headers: { + 'Authorization': `Bearer ${OPENAI_API_KEY}`, + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + model: 'text-embedding-3-small', + input: text, + dimensions: EMBEDDING_DIMENSIONS, + }), + }); + + if (!response.ok) { + if (response.status === 401) { + console.warn('OpenAI API key invalid (401), trying fallback...'); + } else { + throw new Error(`OpenAI API error: ${response.status}`); + } + } else { + const data = await response.json(); + const embedding = new Float32Array(data.data[0].embedding); + cacheEmbedding(cacheKey, embedding); + return embedding; + } + } + + // Fallback to Gemini + if (GOOGLE_API_KEY) { + console.log(`🔄 Generating embedding (Gemini) for: "${text.slice(0, 30)}..."`); + try { + const { embedding } = await embed({ + model: google.textEmbeddingModel('text-embedding-004'), + value: text, + }); + + const float32Embedding = new Float32Array(embedding); + cacheEmbedding(cacheKey, float32Embedding); + return float32Embedding; + } catch (error) { + console.error('Gemini embedding failed:', error); + } + } + + console.warn('No valid API keys found, using mock embedding'); + return generateMockEmbedding(text); + + } catch (error) { + console.error('Failed to generate embedding:', error); + return null; + } +} + +function cacheEmbedding(key: string, embedding: Float32Array) { + embeddingCache.set(key, { embedding, timestamp: Date.now() }); + + // Clean old entries periodically (every 100 new entries) + if (embeddingCache.size > 100) { + const now = Date.now(); + for (const [k, value] of embeddingCache) { + if (now - value.timestamp > CACHE_TTL_MS) { + embeddingCache.delete(k); + } + } + } +} + +/** + * Generate a mock embedding for testing + * Creates a deterministic embedding based on text hash + */ +function generateMockEmbedding(text: string): Float32Array { + const embedding = new Float32Array(EMBEDDING_DIMENSIONS); + const textLower = text.toLowerCase(); + + for (let i = 0; i < textLower.length; i++) { + const charCode = textLower.charCodeAt(i); + const idx = (charCode + i) % EMBEDDING_DIMENSIONS; + embedding[idx] += Math.sin(charCode / 10) * 0.1; + } + + // Normalize the vector + let magnitude = 0; + for (let i = 0; i < embedding.length; i++) { + magnitude += embedding[i] * embedding[i]; + } + magnitude = Math.sqrt(magnitude); + + if (magnitude > 0) { + for (let i = 0; i < embedding.length; i++) { + embedding[i] /= magnitude; + } + } + + return embedding; +} + +/** + * Store media content embedding in the vector database + */ +export async function storeContentEmbedding( + content: MediaContent, + embedding: Float32Array +): Promise { + const database = getVectorDb(); + const id = `${content.mediaType}-${content.id}`; + + await database.insert({ + id, + vector: embedding, + metadata: { + contentId: content.id, + mediaType: content.mediaType, + title: content.title, + overview: content.overview, + genreIds: content.genreIds, + voteAverage: content.voteAverage, + releaseDate: content.releaseDate, + posterPath: content.posterPath, + originalLanguage: content.originalLanguage, + } as MediaVectorMetadata, + }); + + return id; +} + +/** + * Batch store content embeddings for better performance + */ +export async function batchStoreEmbeddings( + contents: Array<{ content: MediaContent; embedding: Float32Array }> +): Promise { + const database = getVectorDb(); + const ids: string[] = []; + + for (const { content, embedding } of contents) { + const id = `${content.mediaType}-${content.id}`; + ids.push(id); + + await database.insert({ + id, + vector: embedding, + metadata: { + contentId: content.id, + mediaType: content.mediaType, + title: content.title, + overview: content.overview, + genreIds: content.genreIds, + voteAverage: content.voteAverage, + releaseDate: content.releaseDate, + posterPath: content.posterPath, + originalLanguage: content.originalLanguage, + } as MediaVectorMetadata, + }); + } + + console.log(`✅ Stored ${ids.length} embeddings`); + return ids; +} + +/** + * Search for similar content by embedding vector + */ +export async function searchByEmbedding( + queryEmbedding: Float32Array, + k: number = 10, + threshold: number = 0.5, + filter?: { mediaType?: 'movie' | 'tv'; genres?: number[] } +): Promise> { + const database = getVectorDb(); + + const results = await database.search({ + vector: queryEmbedding, + k: k * 2, // Get more results to filter + threshold, + }); + + // Apply post-search filtering (ruvector doesn't have built-in metadata filtering) + type SearchResultItem = { id: string; score: number; metadata: Record }; + let filtered: SearchResultItem[] = (results as SearchResultItem[]).filter( + (r) => r.metadata && typeof r.metadata === 'object' && 'contentId' in r.metadata + ); + + if (filter?.mediaType) { + filtered = filtered.filter( + (r: SearchResultItem) => (r.metadata as unknown as MediaVectorMetadata).mediaType === filter.mediaType + ); + } + + if (filter?.genres && filter.genres.length > 0) { + filtered = filtered.filter((r: SearchResultItem) => { + const meta = r.metadata as unknown as MediaVectorMetadata; + return meta.genreIds && filter.genres!.some((g: number) => meta.genreIds.includes(g)); + }); + } + + return filtered.slice(0, k).map((result: SearchResultItem) => { + const meta = result.metadata as unknown as MediaVectorMetadata; + return { + content: { + id: meta.contentId, + title: meta.title || 'Unknown', + overview: meta.overview || '', + mediaType: meta.mediaType || 'movie', + genreIds: meta.genreIds || [], + voteAverage: meta.voteAverage || 0, + releaseDate: meta.releaseDate || '', + posterPath: meta.posterPath || null, + backdropPath: null, + voteCount: 0, + popularity: 0, + originalLanguage: meta.originalLanguage || 'en', + }, + score: result.score, + }; + }); +} + +/** + * Semantic search using natural language query + */ +export async function semanticSearch( + query: string, + k: number = 10, + filter?: { mediaType?: 'movie' | 'tv'; genres?: number[] } +): Promise> { + const embedding = await getContentEmbedding(query); + if (!embedding) { + return []; + } + + return searchByEmbedding(embedding, k, 0.3, filter); +} + +/** + * Find similar content to a given item + */ +export async function findSimilarContent( + contentId: number, + mediaType: 'movie' | 'tv', + k: number = 10 +): Promise> { + const database = getVectorDb(); + const id = `${mediaType}-${contentId}`; + + // Get the existing embedding + const existing = await database.get(id); + if (!existing) { + return []; + } + + // Search for similar (excluding self) + const results = await searchByEmbedding(existing.vector as Float32Array, k + 1, 0.3); + return results.filter((r) => r.content.id !== contentId).slice(0, k); +} + +/** + * Get a specific content vector by ID + */ +export async function getContentVector( + contentId: number, + mediaType: 'movie' | 'tv' +): Promise<{ vector: Float32Array; metadata: MediaVectorMetadata } | null> { + const database = getVectorDb(); + const id = `${mediaType}-${contentId}`; + + const result = await database.get(id); + if (!result) { + return null; + } + + return { + vector: result.vector as Float32Array, + metadata: result.metadata as MediaVectorMetadata, + }; +} + +/** + * Delete a content vector from the database + */ +export async function deleteContentVector( + contentId: number, + mediaType: 'movie' | 'tv' +): Promise { + const database = getVectorDb(); + const id = `${mediaType}-${contentId}`; + + return await database.delete(id); +} + +/** + * Get the total number of vectors in the database + */ +export async function getVectorCount(): Promise { + const database = getVectorDb(); + return await database.len(); +} + +/** + * Calculate cosine similarity between two embeddings + */ +export function calculateSimilarity( + embedding1: Float32Array, + embedding2: Float32Array +): number { + if (embedding1.length !== embedding2.length) { + throw new Error('Embeddings must have the same length'); + } + + let dotProduct = 0; + let magnitude1 = 0; + let magnitude2 = 0; + + for (let i = 0; i < embedding1.length; i++) { + dotProduct += embedding1[i] * embedding2[i]; + magnitude1 += embedding1[i] * embedding1[i]; + magnitude2 += embedding2[i] * embedding2[i]; + } + + magnitude1 = Math.sqrt(magnitude1); + magnitude2 = Math.sqrt(magnitude2); + + if (magnitude1 === 0 || magnitude2 === 0) { + return 0; + } + + return dotProduct / (magnitude1 * magnitude2); +} + +/** + * Create combined embedding from multiple text fields + * Useful for combining title, overview, and genres + */ +export async function createCombinedEmbedding( + content: MediaContent, + genreNames: string[] = [] +): Promise { + // Combine relevant text fields for richer embedding + const combinedText = [ + content.title, + content.overview, + genreNames.join(', '), + ] + .filter(Boolean) + .join(' | '); + + return getContentEmbedding(combinedText); +} + +/** + * Get database statistics + */ +export async function getDbStats(): Promise<{ + vectorCount: number; + dimensions: number; + storagePath: string; +}> { + const database = getVectorDb(); + const count = await database.len(); + + return { + vectorCount: count, + dimensions: EMBEDDING_DIMENSIONS, + storagePath: STORAGE_PATH, + }; +} diff --git a/apps/CineMatch/src/lib/vector-search.ts b/apps/CineMatch/src/lib/vector-search.ts new file mode 100644 index 00000000..7d607856 --- /dev/null +++ b/apps/CineMatch/src/lib/vector-search.ts @@ -0,0 +1,355 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +import { semanticSearch, findSimilarContent } from '@/lib/vector-db'; +import { discoverMovies, discoverTVShows, getTrending, getMovieDetails, getTVShowDetails } from '@/lib/tmdb'; +import type { MediaContent } from '@/types/media'; +import type { UserPreferences } from '@/store/match-store'; + +// ---- CONFIG ---- +const CANDIDATE_POOL_SIZE = 60; +const FINAL_K = 12; +const LINUCB_ALPHA = 0.7; +const SMALL_FEATURE_GENRE_DIM = 16; // consistent with your vector helpers +const USER_SMALL_DIM = 10 + SMALL_FEATURE_GENRE_DIM; // contentType/era/age/likes + top genre summary +// Note: final LinUCB dim = USER_SMALL_DIM + ITEM_SMALL_DIM +const ITEM_SMALL_DIM = 3 + SMALL_FEATURE_GENRE_DIM; // vote, pop, yearNorm + genres + +// ---- In-memory bandit store (persist externally for prod) ---- +type BanditState = { + A: number[][]; // d x d + b: number[]; // d + lastUpdated: number; +}; +const BANDIT_STORE: Record = {}; // key = userId + +// ---- Linear algebra helpers (small dims) ---- +function zeros(n: number) { return Array.from({ length: n }, () => 0); } +function eye(n: number) { + return Array.from({ length: n }, (_, i) => Array.from({ length: n }, (_, j) => (i === j ? 1 : 0))); +} +function matAdd(A: number[][], B: number[][]) { + return A.map((row, i) => row.map((v, j) => v + B[i][j])); +} +function vecAdd(a: number[], b: number[]) { return a.map((v, i) => v + b[i]); } +function matVecMul(A: number[][], v: number[]) { return A.map(row => row.reduce((s, x, i) => s + x * v[i], 0)); } +function vecOuter(a: number[], b: number[]) { return a.map(ai => b.map(bj => ai * bj)); } +// matrix inverse (Gaussian elimination) - ok for small dims (<128) +function invertMatrix(A: number[][]) { + const n = A.length; + const M = A.map((r, i) => r.slice().concat(eye(n)[i])); + for (let i = 0; i < n; i++) { + let pivot = M[i][i]; + if (Math.abs(pivot) < 1e-12) { + let swap = i + 1; + while (swap < n && Math.abs(M[swap][i]) < 1e-12) swap++; + if (swap === n) throw new Error('Singular matrix in invertMatrix'); + const tmp = M[i]; M[i] = M[swap]; M[swap] = tmp; + pivot = M[i][i]; + } + for (let j = i; j < 2 * n; j++) M[i][j] /= pivot; + for (let r = 0; r < n; r++) { + if (r === i) continue; + const factor = M[r][i]; + for (let c = i; c < 2 * n; c++) M[r][c] -= factor * M[i][c]; + } + } + return M.map(row => row.slice(n)); +} + +// ---- Feature builders ---- +function buildItemSmallFeatures(item: MediaContent): number[] { + const vote = (item.voteAverage ?? 0) / 10; + const pop = Math.tanh((item.popularity ?? 0) / 100); + const year = parseInt((item.releaseDate || '0').split('-')[0] || '0') || 0; + const yearNorm = year > 1900 ? Math.min((year - 1900) / 150, 1) : 0; + + const genreVec = new Array(SMALL_FEATURE_GENRE_DIM).fill(0); + (item.genreIds || []).forEach(g => { genreVec[g % SMALL_FEATURE_GENRE_DIM] += 1; }); + const gnorm = Math.sqrt(genreVec.reduce((s, x) => s + x * x, 0)) || 1; + for (let i = 0; i < genreVec.length; i++) genreVec[i] /= gnorm; + + return [vote, pop, yearNorm, ...genreVec].slice(0, ITEM_SMALL_DIM); // ensure fixed length +} + +function buildUserSmallFeatures(prefs: any, totalLikes: number, genreWeights: Record) { + // contentType one-hot (movie,tv,animation,anime,spectacle,short_film) -> 6 dims + const types = ['movie', 'tv', 'animation', 'anime', 'spectacle', 'short_film']; + const typeOneHot = types.map(t => (prefs.contentType === t ? 1 : 0)); + + const eraVec = [prefs.era === 'new' ? 1 : 0, prefs.era === 'classic' ? 1 : 0, (!prefs.era) ? 1 : 0]; + const ageBuckets = ['under_18', '18_30', '30_50', '50_plus']; + const ageVec = ageBuckets.map(b => prefs.age === b ? 1 : 0); + + const likesNorm = Math.tanh(totalLikes / 10); + + const topGenres = Object.entries(genreWeights || {}).sort((a, b) => Number(b[1]) - Number(a[1])).slice(0, 4).map(([id]) => Number(id)); + const genreVec = new Array(SMALL_FEATURE_GENRE_DIM).fill(0); + topGenres.forEach((g, i) => { genreVec[g % SMALL_FEATURE_GENRE_DIM] += (i === 0 ? 1 : 0.6); }); + const gnorm = Math.sqrt(genreVec.reduce((s, x) => s + x * x, 0)) || 1; + for (let i = 0; i < genreVec.length; i++) genreVec[i] /= gnorm; + + // assemble and limit to USER_SMALL_DIM + const vec = [...typeOneHot.slice(0, 6), ...eraVec.slice(0, 3), ...ageVec.slice(0, 4), likesNorm]; + // pad/trim then add genreVec + const base = vec.concat(genreVec).slice(0, USER_SMALL_DIM); + if (base.length < USER_SMALL_DIM) { + return base.concat(Array(USER_SMALL_DIM - base.length).fill(0)); + } + return base; +} + +// ---- Bandit helpers ---- +function ensureBanditState(userId: string, dim: number) { + if (!BANDIT_STORE[userId]) { + BANDIT_STORE[userId] = { + A: eye(dim), + b: zeros(dim), + lastUpdated: Date.now(), + }; + } else if (BANDIT_STORE[userId].A.length !== dim) { + BANDIT_STORE[userId] = { A: eye(dim), b: zeros(dim), lastUpdated: Date.now() }; + } +} + +function linUCBScore(userId: string, x: number[]) { + const state = BANDIT_STORE[userId]; + const Ainv = invertMatrix(state.A); + const theta = matVecMul(Ainv, state.b); + const xTtheta = x.reduce((s, xi, i) => s + xi * theta[i], 0); + const Ax = matVecMul(Ainv, x); + const xTAx = x.reduce((s, xi, i) => s + xi * Ax[i], 0); + const u = LINUCB_ALPHA * Math.sqrt(Math.max(0, xTAx)); + return xTtheta + u; +} + +function linUCBUpdate(userId: string, x: number[], reward: number) { + const state = BANDIT_STORE[userId]; + const outer = vecOuter(x, x); + state.A = matAdd(state.A, outer); + state.b = vecAdd(state.b, x.map(v => v * reward)); + state.lastUpdated = Date.now(); +} + +// ---- Recommendation pipeline ---- +/** + * recommendForUser + * - prefs: user preferences object (from your Zustand store) + * - userId: persistent id string + * - totalLikes / genreWeights: from store + * - page: current paging + */ +export async function recommendForUser( + userId: string, + prefs: any, + totalLikes: number, + genreWeights: Record, + page = 1, + k = FINAL_K +): Promise { + // 1) Determine Context (Countries, Genres) + const userCountry = prefs.userCountry || 'FR'; + let favoriteCountries: string[] = []; + + // Get favorite country from favorite content + if (prefs.favoriteMovieId) { + try { + const favId = prefs.favoriteMovieId; + const favType = prefs.favoriteMediaType || (prefs.contentType === 'tv' ? 'tv' : 'movie'); + const favContent = favType === 'tv' + ? await getTVShowDetails(favId) + : await getMovieDetails(favId); + + if (favContent.originCountry && favContent.originCountry.length > 0) { + favoriteCountries = favContent.originCountry; + } else if (favContent.originalLanguage) { + const langMap: Record = { + 'en': ['US', 'GB'], 'ja': ['JP'], 'ko': ['KR'], 'fr': ['FR'], 'es': ['ES', 'MX'], 'de': ['DE'], 'it': ['IT'] + }; + favoriteCountries = langMap[favContent.originalLanguage] || []; + } + } catch (e) { + console.warn('Failed to fetch favorite content details', e); + } + } + + // Top Genres + const topGenres = Object.entries(genreWeights || {}) + .sort((a, b) => Number(b[1]) - Number(a[1])) + .slice(0, 3) + .map(([id]) => Number(id)); + + // 2) Candidate Generation (Multi-Source) + const candidates: MediaContent[] = []; + const isTV = prefs.contentType === 'tv'; + const discoverFn = isTV ? discoverTVShows : discoverMovies; + + try { + // Source A: User Country (High Priority) + // Fetch more pages to ensure we have enough candidates from the selected country + const userCountryContent = await discoverFn({ + withOriginCountry: userCountry, + page: page, + sortBy: 'popularity.desc' + }); + candidates.push(...userCountryContent.results); + + // Source B: Favorite Country (if different from User Country) + for (const favCountry of favoriteCountries) { + if (favCountry !== userCountry) { + const favCountryContent = await discoverFn({ + withOriginCountry: favCountry, + page: page, + sortBy: 'popularity.desc' + }); + candidates.push(...favCountryContent.results); + } + } + + // Source C: Top Genres (Global) + if (topGenres.length > 0) { + const genreContent = await discoverFn({ + genres: [topGenres[0]], + page: page, + sortBy: 'popularity.desc' + }); + candidates.push(...genreContent.results); + } + + // Source D: Trending/Popular (Baseline) + const trending = await getTrending(isTV ? 'tv' : 'movie', 'week'); + candidates.push(...trending); + + } catch (e) { + console.error('Error fetching candidates:', e); + // Fallback to trending + const trending = await getTrending(isTV ? 'tv' : 'movie', 'week'); + candidates.push(...trending); + } + + // Deduplicate by ID + const seen = new Set(); + const uniqCandidates = candidates.filter(c => c && !seen.has(c.id) ? (seen.add(c.id), true) : false); + + if (uniqCandidates.length === 0) return []; + + // 3) Scoring & Filtering + const userSmall = buildUserSmallFeatures(prefs, totalLikes, genreWeights); + const d = userSmall.length + ITEM_SMALL_DIM; + ensureBanditState(userId, d); + + const scored = uniqCandidates.map(item => { + // Base LinUCB Score (Personalization) + const itemSmall = buildItemSmallFeatures(item); + const x = userSmall.concat(itemSmall); + let score = linUCBScore(userId, x); + + // Content-Based Boosting (Metadata) + const itemCountries = item.originCountry && item.originCountry.length > 0 + ? item.originCountry + : (item.originalLanguage === 'en' ? ['US', 'GB'] : [item.originalLanguage.toUpperCase()]); + + const isFavCountry = favoriteCountries.some(c => itemCountries.includes(c)); + const isUserCountry = userCountry && itemCountries.includes(userCountry); + const isAnime = prefs.contentType === 'anime' || item.genreIds?.includes(16); // 16 is Animation + + // Boosts + if (isFavCountry) score += 1.5; // Strongest boost for favorite content match + if (isUserCountry) score += 1.0; // Strong boost for selected country + if (topGenres.some(g => item.genreIds?.includes(g))) score += 0.5; // Genre boost + + // Penalties + if (!isAnime) { + if (!isFavCountry && !isUserCountry) { + // Severe penalty for content from random countries + score -= 5.0; + } + } + + return { item, score, x }; + }); + + // 4) Sort & Select + scored.sort((a, b) => b.score - a.score); + + const final: MediaContent[] = []; + const usedIds = new Set(); + + for (const candidate of scored) { + if (final.length >= k) break; + if (usedIds.has(candidate.item.id)) continue; + + // Strict Filter Check + if (!passesStrictFilter(candidate.item, prefs)) continue; + + final.push(candidate.item); + usedIds.add(candidate.item.id); + } + + // 5) Diversity (Distinct Years) + const distinct: MediaContent[] = []; + const seenYears = new Set(); + const rest: MediaContent[] = []; + + for (const it of final) { + const year = Number((it.releaseDate || '').split('-')[0]) || 0; + if (distinct.length < 10) { + if (year > 0 && !seenYears.has(year)) { + distinct.push(it); + seenYears.add(year); + } else { + rest.push(it); + } + } else { + rest.push(it); + } + } + + return [...distinct, ...rest].slice(0, k); +} + +// ---- Feedback recording: call on like/dislike to update bandit ---- +export async function recordFeedback( + userId: string, + prefs: any, + totalLikes: number, + genreWeights: Record, + item: MediaContent, + reward: number +) { + const userSmall = buildUserSmallFeatures(prefs, totalLikes, genreWeights); + const itemSmall = buildItemSmallFeatures(item); + const x = userSmall.concat(itemSmall); + ensureBanditState(userId, x.length); + linUCBUpdate(userId, x, reward); + // Optionally persist BANDIT_STORE[userId] to DB here + return true; +} + +// ---- Strict filter util (same logic as your UI) ---- +function passesStrictFilter(item: MediaContent, prefs: any) { + if (!prefs?.contentType) return true; + switch (prefs.contentType) { + case 'anime': + if (!item.genreIds?.includes(16) || item.originalLanguage !== 'ja') return false; + break; + case 'animation': + if (!item.genreIds?.includes(16) || ['ja', 'ko'].includes(item.originalLanguage)) return false; + break; + case 'tv': + if (item.mediaType !== 'tv' || item.genreIds?.includes(16)) return false; + break; + case 'movie': + if (item.mediaType !== 'movie' || item.genreIds?.includes(16)) return false; + break; + case 'spectacle': + if (!item.genreIds?.some(id => [35, 10402].includes(id))) return false; + break; + } + if (prefs.era === 'new') { + const year = Number((item.releaseDate || '').split('-')[0]) || 0; + if (year && year < 2015) return false; + } else if (prefs.era === 'classic') { + const year = Number((item.releaseDate || '').split('-')[0]) || 9999; + if (year && year >= 2015) return false; + } + return true; +} diff --git a/apps/CineMatch/src/store/match-store.ts b/apps/CineMatch/src/store/match-store.ts new file mode 100644 index 00000000..f947c545 --- /dev/null +++ b/apps/CineMatch/src/store/match-store.ts @@ -0,0 +1,123 @@ +import { create } from 'zustand'; +import { persist } from 'zustand/middleware'; +import type { Movie, TVShow } from '@/types/media'; + +export interface UserPreferences { + age?: 'under_18' | '18_30' | '30_50' | '50_plus'; + contentType?: 'movie' | 'tv' | 'animation' | 'anime' | 'spectacle' | 'short_film'; + favoriteMovieId?: number; + favoriteMediaType?: 'movie' | 'tv'; + intent?: 'learn' | 'kill_time'; + social?: 'alone' | 'friends' | 'family' | 'partner'; + era?: 'new' | 'classic'; + userCountry?: string; + isOnboarded: boolean; +} + +interface MatchState { + preferences: UserPreferences; + likedContent: (Movie | TVShow)[]; + dislikedContentIds: number[]; + lastLikedContentId?: number; + genreWeights: Record; // Genre ID -> Weight count + totalLikes: number; + recommendations: (Movie | TVShow)[]; + currentIndex: number; + page: number; + incrementPage: () => void; + + // Actions + setPreferences: (prefs: Partial) => void; + completeOnboarding: () => void; + likeContent: (content: Movie | TVShow) => void; + dislikeContent: (contentId: number) => void; + setRecommendations: (content: (Movie | TVShow)[]) => void; + appendRecommendations: (content: (Movie | TVShow)[]) => void; + nextCard: () => void; + reset: () => void; +} + +export const useMatchStore = create()( + persist( + (set) => ({ + preferences: { + isOnboarded: false, + userCountry: 'FR', + }, + likedContent: [], + dislikedContentIds: [], + genreWeights: {}, + totalLikes: 0, + recommendations: [], + currentIndex: 0, + page: 1, + + setPreferences: (prefs) => + set((state) => ({ + preferences: { ...state.preferences, ...prefs }, + })), + + completeOnboarding: () => + set((state) => ({ + preferences: { ...state.preferences, isOnboarded: true }, + })), + + likeContent: (content) => + set((state) => { + // Update genre weights + const newWeights = { ...state.genreWeights }; + content.genreIds.forEach(id => { + newWeights[id] = (newWeights[id] || 0) + 1; + }); + + return { + likedContent: [...state.likedContent, content], + lastLikedContentId: content.id, + genreWeights: newWeights, + totalLikes: state.totalLikes + 1, + currentIndex: state.currentIndex + 1, + }; + }), + + dislikeContent: (contentId) => + set((state) => ({ + dislikedContentIds: [...state.dislikedContentIds, contentId], + currentIndex: state.currentIndex + 1, + })), + + setRecommendations: (content) => + set({ recommendations: content, currentIndex: 0, page: 1 }), + + appendRecommendations: (content) => + set((state) => ({ + recommendations: [...state.recommendations, ...content], + page: state.page + 1, + })), + + incrementPage: () => + set((state) => ({ + page: state.page + 1, + })), + + nextCard: () => + set((state) => ({ + currentIndex: state.currentIndex + 1, + })), + + reset: () => + set({ + preferences: { isOnboarded: false }, + likedContent: [], + dislikedContentIds: [], + genreWeights: {}, + totalLikes: 0, + recommendations: [], + currentIndex: 0, + page: 1, + }), + }), + { + name: 'movie-match-storage', + } + ) +); diff --git a/apps/CineMatch/src/types/media.ts b/apps/CineMatch/src/types/media.ts new file mode 100644 index 00000000..85422053 --- /dev/null +++ b/apps/CineMatch/src/types/media.ts @@ -0,0 +1,170 @@ +/** + * Core type definitions for the CineMatch Platform + */ + +// Base media content type +export interface MediaContent { + id: number; + title: string; + overview: string; + posterPath: string | null; + backdropPath: string | null; + releaseDate: string; + voteAverage: number; + voteCount: number; + popularity: number; + genreIds: number[]; + mediaType: 'movie' | 'tv'; + originalLanguage: string; + originCountry?: string[]; +} + +// Extended movie type +export interface Movie extends MediaContent { + mediaType: 'movie'; + runtime?: number; + budget?: number; + revenue?: number; + tagline?: string; + status?: string; +} + +// Extended TV show type +export interface TVShow extends MediaContent { + mediaType: 'tv'; + name: string; // TV shows use 'name' instead of 'title' in TMDB + firstAirDate: string; + lastAirDate?: string; + numberOfSeasons?: number; + numberOfEpisodes?: number; + episodeRunTime?: number[]; + status?: string; + inProduction?: boolean; +} + +// Genre type +export interface Genre { + id: number; + name: string; +} + +// Search query with semantic understanding +export interface SemanticSearchQuery { + query: string; + intent?: SearchIntent; + filters?: SearchFilters; + embedding?: number[]; +} + +// Search intent derived from natural language +export interface SearchIntent { + mood?: string[]; // e.g., ["exciting", "suspenseful"] + themes?: string[]; // e.g., ["redemption", "love"] + pacing?: 'slow' | 'medium' | 'fast'; + era?: string; // e.g., "1980s", "modern" + setting?: string[]; // e.g., ["space", "urban"] + similar_to?: string[]; // e.g., ["Inception", "The Matrix"] + avoid?: string[]; // e.g., ["gore", "romance"] +} + +// Search filters +export interface SearchFilters { + mediaType?: 'movie' | 'tv' | 'all'; + genres?: number[]; + yearRange?: { min?: number; max?: number }; + ratingMin?: number; + language?: string; + region?: string; +} + +// Search results with relevance scoring +export interface SearchResult { + content: MediaContent; + relevanceScore: number; + matchReasons: string[]; + similarityScore?: number; +} + +// User preference profile +export interface UserPreferences { + userId: string; + favoriteGenres: number[]; + likedContent: number[]; + dislikedContent: number[]; + watchHistory: WatchHistoryEntry[]; + preferenceVector?: number[]; + updatedAt: Date; +} + +// Watch history entry +export interface WatchHistoryEntry { + contentId: number; + mediaType: 'movie' | 'tv'; + watchedAt: Date; + progress: number; // 0-1 percentage watched + rating?: number; // 1-10 user rating + completed: boolean; +} + +// Recommendation with explanation +export interface Recommendation { + content: MediaContent; + score: number; + reasons: string[]; + basedOn?: { + type: 'similar' | 'genre' | 'history' | 'trending'; + references: string[]; + }; +} + +// Content embedding for vector search +export interface ContentEmbedding { + contentId: number; + mediaType: 'movie' | 'tv'; + embedding: number[]; + metadata: { + title: string; + genres: string[]; + keywords: string[]; + synopsis: string; + }; + createdAt: Date; + model: string; +} + +// ARW Discovery manifest types +export interface ARWMediaManifest { + version: string; + profile: 'ARW-1'; + site: { + name: string; + description: string; + homepage: string; + contact?: string; + }; + content: ARWContentEntry[]; + actions: ARWAction[]; + policies: ARWPolicies; +} + +export interface ARWContentEntry { + url: string; + machine_view?: string; + purpose: 'search' | 'browse' | 'details' | 'recommendations'; + priority: 'high' | 'medium' | 'low'; +} + +export interface ARWAction { + id: string; + name: string; + endpoint: string; + method: 'GET' | 'POST'; + description: string; + schema?: object; +} + +export interface ARWPolicies { + training: { allowed: boolean; note?: string }; + inference: { allowed: boolean; restrictions?: string[] }; + attribution: { required: boolean; format?: string }; +} diff --git a/apps/CineMatch/tailwind.config.ts b/apps/CineMatch/tailwind.config.ts new file mode 100644 index 00000000..73c9638d --- /dev/null +++ b/apps/CineMatch/tailwind.config.ts @@ -0,0 +1,19 @@ +import type { Config } from 'tailwindcss'; + +export default { + content: [ + './src/pages/**/*.{js,ts,jsx,tsx,mdx}', + './src/components/**/*.{js,ts,jsx,tsx,mdx}', + './src/app/**/*.{js,ts,jsx,tsx,mdx}', + ], + darkMode: 'media', + theme: { + extend: { + colors: { + background: 'var(--background)', + foreground: 'var(--foreground)', + }, + }, + }, + plugins: [], +} satisfies Config; diff --git a/apps/CineMatch/tsconfig.json b/apps/CineMatch/tsconfig.json new file mode 100644 index 00000000..b034d76a --- /dev/null +++ b/apps/CineMatch/tsconfig.json @@ -0,0 +1,33 @@ +{ + "compilerOptions": { + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./src/*"], + "@/lib/*": ["./src/lib/*"], + "@/components/*": ["./src/components/*"], + "@/api/*": ["./src/api/*"], + "@/hooks/*": ["./src/hooks/*"], + "@/types/*": ["./src/types/*"] + }, + "target": "ES2022", + "forceConsistentCasingInFileNames": true + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} From 0d57237a051f9a92b14742f23326d7622ea4fd31 Mon Sep 17 00:00:00 2001 From: Emine A-Y Date: Sun, 7 Dec 2025 19:00:25 +0100 Subject: [PATCH 2/3] Added Chat with AI --- apps/CineMatch/next.config.mjs | 4 + apps/CineMatch/scripts/list-models.ts | 33 +++ apps/CineMatch/scripts/test-chat.ts | 28 ++ apps/CineMatch/scripts/test-flash-15.ts | 27 ++ apps/CineMatch/scripts/test-flash-25.ts | 27 ++ apps/CineMatch/scripts/test-flash-exp.ts | 27 ++ apps/CineMatch/src/app/api/chat/route.ts | 156 ++++++++++++ apps/CineMatch/src/app/chat/page.tsx | 239 ++++++++++++++++++ apps/CineMatch/src/app/page.tsx | 11 +- .../src/components/ChatRecommendationCard.tsx | 63 +++++ apps/CineMatch/src/store/match-store.ts | 26 ++ 11 files changed, 639 insertions(+), 2 deletions(-) create mode 100644 apps/CineMatch/scripts/list-models.ts create mode 100644 apps/CineMatch/scripts/test-chat.ts create mode 100644 apps/CineMatch/scripts/test-flash-15.ts create mode 100644 apps/CineMatch/scripts/test-flash-25.ts create mode 100644 apps/CineMatch/scripts/test-flash-exp.ts create mode 100644 apps/CineMatch/src/app/api/chat/route.ts create mode 100644 apps/CineMatch/src/app/chat/page.tsx create mode 100644 apps/CineMatch/src/components/ChatRecommendationCard.tsx diff --git a/apps/CineMatch/next.config.mjs b/apps/CineMatch/next.config.mjs index 55299720..3956bd6a 100644 --- a/apps/CineMatch/next.config.mjs +++ b/apps/CineMatch/next.config.mjs @@ -84,8 +84,12 @@ const nextConfig = { // Experimental features experimental: { + // Allow localtunnel and localhost.run for development + allowedDevOrigins: ['localhost:3005', '*.loca.lt', '*.localhost.run', '*.lhr.life'], + // Enable server actions serverActions: { + allowedOrigins: ['localhost:3005', '*.loca.lt', '*.localhost.run', '*.lhr.life'], bodySizeLimit: '2mb', }, // Exclude native modules from webpack bundling diff --git a/apps/CineMatch/scripts/list-models.ts b/apps/CineMatch/scripts/list-models.ts new file mode 100644 index 00000000..699a4c61 --- /dev/null +++ b/apps/CineMatch/scripts/list-models.ts @@ -0,0 +1,33 @@ +import dotenv from 'dotenv'; + +dotenv.config(); + +async function listModels() { + const key = process.env.GOOGLE_GENERATIVE_AI_API_KEY; + if (!key) { + console.error('❌ No API Key found'); + return; + } + + const url = `https://generativelanguage.googleapis.com/v1beta/models?key=${key}`; + + try { + const response = await fetch(url); + const data = await response.json(); + + if (data.models) { + console.log('✅ Available Models:'); + data.models.forEach((m: any) => { + if (m.supportedGenerationMethods.includes('generateContent')) { + console.log(`- ${m.name} (${m.displayName})`); + } + }); + } else { + console.error('❌ Failed to list models:', data); + } + } catch (error) { + console.error('❌ Error listing models:', error); + } +} + +listModels(); diff --git a/apps/CineMatch/scripts/test-chat.ts b/apps/CineMatch/scripts/test-chat.ts new file mode 100644 index 00000000..40f57b8a --- /dev/null +++ b/apps/CineMatch/scripts/test-chat.ts @@ -0,0 +1,28 @@ +import { google } from '@ai-sdk/google'; +import { generateText } from 'ai'; +import dotenv from 'dotenv'; + +dotenv.config(); + +async function testChat() { + console.log('🧪 Testing AI Chat (Gemini)...'); + console.log(`🔑 Gemini Key Present: ${process.env.GOOGLE_GENERATIVE_AI_API_KEY ? 'Yes' : 'No'}`); + + try { + const model = google('gemini-flash-latest'); + + const start = Date.now(); + const { text } = await generateText({ + model, + prompt: 'Hello, are you working?', + }); + const duration = Date.now() - start; + + console.log(`✅ Success! Response in ${duration}ms`); + console.log(`🤖 Response: ${text}`); + } catch (error) { + console.error('❌ Chat generation failed:', error); + } +} + +testChat(); diff --git a/apps/CineMatch/scripts/test-flash-15.ts b/apps/CineMatch/scripts/test-flash-15.ts new file mode 100644 index 00000000..8749638a --- /dev/null +++ b/apps/CineMatch/scripts/test-flash-15.ts @@ -0,0 +1,27 @@ +import { google } from '@ai-sdk/google'; +import { generateText } from 'ai'; +import dotenv from 'dotenv'; + +dotenv.config(); + +async function testChat() { + console.log('🧪 Testing AI Chat (Gemini 1.5 Flash 002)...'); + + try { + const model = google('gemini-1.5-flash-002'); + + const start = Date.now(); + const { text } = await generateText({ + model, + prompt: 'Hello, are you working?', + }); + const duration = Date.now() - start; + + console.log(`✅ Success! Response in ${duration}ms`); + console.log(`🤖 Response: ${text}`); + } catch (error) { + console.error('❌ Chat generation failed:', error); + } +} + +testChat(); diff --git a/apps/CineMatch/scripts/test-flash-25.ts b/apps/CineMatch/scripts/test-flash-25.ts new file mode 100644 index 00000000..c0abc749 --- /dev/null +++ b/apps/CineMatch/scripts/test-flash-25.ts @@ -0,0 +1,27 @@ +import { google } from '@ai-sdk/google'; +import { generateText } from 'ai'; +import dotenv from 'dotenv'; + +dotenv.config(); + +async function testChat() { + console.log('🧪 Testing AI Chat (Gemini 2.5 Flash)...'); + + try { + const model = google('gemini-2.5-flash'); + + const start = Date.now(); + const { text } = await generateText({ + model, + prompt: 'Hello, are you working?', + }); + const duration = Date.now() - start; + + console.log(`✅ Success! Response in ${duration}ms`); + console.log(`🤖 Response: ${text}`); + } catch (error) { + console.error('❌ Chat generation failed:', error); + } +} + +testChat(); diff --git a/apps/CineMatch/scripts/test-flash-exp.ts b/apps/CineMatch/scripts/test-flash-exp.ts new file mode 100644 index 00000000..3387a7fc --- /dev/null +++ b/apps/CineMatch/scripts/test-flash-exp.ts @@ -0,0 +1,27 @@ +import { google } from '@ai-sdk/google'; +import { generateText } from 'ai'; +import dotenv from 'dotenv'; + +dotenv.config(); + +async function testChat() { + console.log('🧪 Testing AI Chat (Gemini Flash Exp)...'); + + try { + const model = google('gemini-2.0-flash-exp'); + + const start = Date.now(); + const { text } = await generateText({ + model, + prompt: 'Hello, are you working?', + }); + const duration = Date.now() - start; + + console.log(`✅ Success! Response in ${duration}ms`); + console.log(`🤖 Response: ${text}`); + } catch (error) { + console.error('❌ Chat generation failed:', error); + } +} + +testChat(); diff --git a/apps/CineMatch/src/app/api/chat/route.ts b/apps/CineMatch/src/app/api/chat/route.ts new file mode 100644 index 00000000..79e4cd48 --- /dev/null +++ b/apps/CineMatch/src/app/api/chat/route.ts @@ -0,0 +1,156 @@ +import { google } from '@ai-sdk/google'; +import { openai } from '@ai-sdk/openai'; +import { generateText, convertToCoreMessages } from 'ai'; +import { NextResponse } from 'next/server'; +import { searchMulti, getMovieDetails, getTVShowDetails } from '@/lib/tmdb'; + +// Allow streaming responses up to 30 seconds +export const maxDuration = 30; + +export async function POST(req: Request) { + const { messages, context } = await req.json(); + + const preferences = context?.preferences || {}; + const likedContent = context?.likedContent || []; + const dislikedContent = context?.dislikedContent || []; + + // Resolve favoriteMovieId to a title if present + let favoriteMovieTitle = ''; + if (preferences.favoriteMovieId) { + try { + // Determine media type (default to movie if not specified) + const mediaType = preferences.favoriteMediaType || 'movie'; + + if (mediaType === 'movie') { + const movie = await getMovieDetails(preferences.favoriteMovieId); + favoriteMovieTitle = movie.title; + } else if (mediaType === 'tv') { + const show = await getTVShowDetails(preferences.favoriteMovieId); + favoriteMovieTitle = show.name; + } + } catch (e) { + console.error('Failed to fetch favorite content title:', e); + } + } + + const systemPrompt = ` + You are CineMatch AI, a helpful and enthusiastic movie recommendation assistant. + + User Context: + - Preferences: ${JSON.stringify(preferences, (key, value) => { + if (key === 'favoriteMovieId' || key === 'dislikedContentIds') return undefined; // Hide IDs to prevent hallucination + return value; + })} + ${favoriteMovieTitle ? `- Favorite Content (from Onboarding): ${favoriteMovieTitle}` : ''} + - Liked Movies (Titles): ${likedContent.length > 0 ? likedContent.join(', ') : 'None yet'} + - Disliked Content (Count): ${dislikedContent.length} items (IDs hidden) + + Your Goal: + - Recommend movies or TV shows based on the user's history and preferences. + - Be concise, friendly, and engaging. + - If the user asks "What should I watch?", suggest 2-3 titles that fit their taste, explaining why. + - If "Liked Movies" is empty, YOU MUST USE their onboarding preferences (Favorite Content, Intent, Genres) to suggest 3 titles immediately. + - Do NOT ask for more info unless absolutely necessary. Assume their onboarding choices are enough to start. + - Do NOT recommend movies they have explicitly disliked. + - Use emojis occasionally to keep it fun. 🍿🎬 + - IMPORTANT: Do NOT guess or hallucinate movie titles from IDs. Only refer to movies explicitly named in "Liked Movies" or "Favorite Content". + + TONE & STYLE: + - Be natural and conversational. Avoid robotic lists of user preferences. + - Instead of saying "Since you like [Genre] and want to [Intent]...", weave it in subtly like "If you're in the mood for a laugh..." or "For a gripping story..." + - Sound like a friend giving a recommendation, not a database query result. + + RESPONSE FORMAT: + You must return a JSON object with the following structure: + { + "message": "Your conversational response here...", + "recommendations": [ + { "title": "Movie/Show Title", "year": "YYYY" }, + ... + ] + } + Only include the "recommendations" array if you are explicitly suggesting specific movies. Otherwise, it can be empty. + IMPORTANT: Do not output markdown code blocks (like \`\`\`json). Just output the raw JSON string. + `; + + console.log('--- SYSTEM PROMPT ---\n', systemPrompt, '\n---------------------'); + + // Choose model based on available keys (prefer OpenAI, fallback to Gemini) + const model = process.env.OPENAI_API_KEY + ? openai('gpt-4o-mini') + : google('gemini-2.5-flash'); + + try { + const { text } = await generateText({ + model, + system: systemPrompt, + messages: convertToCoreMessages(messages), + maxRetries: 0, + }); + + console.log('Raw AI Response:', text); // Debug log + + // Parse the JSON response from the AI + let parsedResponse; + try { + // Clean up markdown code blocks if present + const cleanText = text.replace(/```json/g, '').replace(/```/g, '').trim(); + + // Find the first '{' and last '}' to extract JSON + const jsonMatch = cleanText.match(/\{[\s\S]*\}/); + if (jsonMatch) { + parsedResponse = JSON.parse(jsonMatch[0]); + } else { + console.warn('No JSON found in response, using raw text'); + parsedResponse = { message: text, recommendations: [] }; + } + } catch (e) { + console.warn('Failed to parse AI JSON response, falling back to raw text:', e); + parsedResponse = { message: text, recommendations: [] }; + } + + // Enrich recommendations with TMDB data + const enrichedRecommendations = []; + if (parsedResponse.recommendations && Array.isArray(parsedResponse.recommendations)) { + console.log('Searching for recommendations:', parsedResponse.recommendations); + for (const rec of parsedResponse.recommendations) { + try { + // Search for the movie using our shared library + const { results } = await searchMulti(rec.title); + + if (results && results.length > 0) { + // Filter for movie or tv (already done by searchMulti, but good to be safe) + // Optionally filter by year if provided + const match = results.find((r: any) => { + // Optional: Check year if we want to be strict + // if (rec.year && r.releaseDate) { + // return r.releaseDate.startsWith(rec.year); + // } + return true; + }); + + if (match) { + enrichedRecommendations.push(match); + } else { + console.log(`No matching movie/tv found in results for ${rec.title}`); + } + } else { + console.log(`No results found for ${rec.title}`); + } + } catch (err) { + console.error(`Failed to fetch details for ${rec.title}:`, err); + } + } + } + + return NextResponse.json({ + message: parsedResponse.message, + recommendations: enrichedRecommendations + }); + } catch (error: any) { + console.error('Chat generation error:', error); + const errorMessage = error.message || 'Failed to generate response'; + const status = errorMessage.includes('Quota') || errorMessage.includes('429') ? 429 : 500; + return NextResponse.json({ error: errorMessage }, { status }); + } +} diff --git a/apps/CineMatch/src/app/chat/page.tsx b/apps/CineMatch/src/app/chat/page.tsx new file mode 100644 index 00000000..86145993 --- /dev/null +++ b/apps/CineMatch/src/app/chat/page.tsx @@ -0,0 +1,239 @@ +'use client'; + +import { useState, useEffect, useRef } from 'react'; +import Link from 'next/link'; +import { ArrowLeft, Send, Sparkles, MessageSquare } from 'lucide-react'; +import { useMatchStore, ChatMessage } from '@/store/match-store'; +import { motion, AnimatePresence } from 'framer-motion'; +import { ChatRecommendationCard } from '@/components/ChatRecommendationCard'; +import { DetailsModal } from '@/components/DetailsModal'; +import type { Movie, TVShow } from '@/types/media'; + +const PLACEHOLDERS = [ + "What should I watch ?", + "Any content you would suggest ?", + "What media is worth watching ?" +]; + +export default function ChatPage() { + const { + preferences, + likedContent, + dislikedContentIds, + likeContent, + unlikeContent, + chatHistory, + addChatMessage + } = useMatchStore(); + + const [input, setInput] = useState(''); + const [isLoading, setIsLoading] = useState(false); + const [placeholderIndex, setPlaceholderIndex] = useState(0); + const [selectedContent, setSelectedContent] = useState(null); + const messagesEndRef = useRef(null); + + // Auto-scroll to bottom + const scrollToBottom = () => { + messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' }); + }; + + useEffect(() => { + scrollToBottom(); + }, [chatHistory, isLoading]); + + // Rotate placeholders + useEffect(() => { + const interval = setInterval(() => { + setPlaceholderIndex((prev) => (prev + 1) % PLACEHOLDERS.length); + }, 3000); + return () => clearInterval(interval); + }, []); + + const handleSubmit = async (e?: React.FormEvent) => { + e?.preventDefault(); + if (isLoading) return; + + const messageText = input.trim() || PLACEHOLDERS[placeholderIndex]; + if (!messageText) return; + + // Add user message + const userMsg: ChatMessage = { role: 'user', content: messageText }; + addChatMessage(userMsg); + setInput(''); + setIsLoading(true); + + try { + // Prepare messages for API (convert store messages to API format) + const apiMessages = chatHistory.concat(userMsg).map(m => ({ + role: m.role, + content: m.content + })); + + const response = await fetch('/api/chat', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + messages: apiMessages, + context: { + preferences, + likedContent: likedContent.map(c => c.title), + dislikedContent: dislikedContentIds // IDs only usually, but let's send what we have + } + }), + }); + + if (!response.ok) { + const errorData = await response.json().catch(() => ({})); + throw new Error(errorData.error || 'Failed to fetch response'); + } + + const data = await response.json(); + + // Add assistant message with recommendations + addChatMessage({ + role: 'assistant', + content: data.message, + recommendations: data.recommendations + }); + + } catch (error) { + console.error('Chat error:', error); + let errorMessage = error instanceof Error ? error.message : String(error); + if (errorMessage.includes('429') || errorMessage.includes('Quota')) { + errorMessage = "Please wait a minute and try again."; + } + addChatMessage({ role: 'assistant', content: errorMessage }); + } finally { + setIsLoading(false); + } + }; + + const handleToggleLike = (content: Movie | TVShow) => { + const isLiked = likedContent.some(c => c.id === content.id); + if (isLiked) { + unlikeContent(content.id); + } else { + likeContent(content); + } + }; + + const handleDetails = (content: Movie | TVShow) => { + setSelectedContent(content); + }; + + return ( +
+ {/* Header */} +
+ + + +
+ +

CineMatch AI

+
+
+ + {/* Chat Area */} +
+ {chatHistory.length === 0 ? ( +
+ +

Start chatting to get recommendations!

+

I know what you like and dislike, so I can give personalized recommendations.

+
+ ) : ( + chatHistory.map((msg, idx) => ( +
+
+

{msg.content}

+
+ + {/* Recommendations Carousel */} + {msg.recommendations && msg.recommendations.length > 0 && ( +
+
+ {msg.recommendations.map((rec) => ( + c.id === rec.id)} + onToggleLike={handleToggleLike} + onDetails={handleDetails} + /> + ))} +
+
+ )} +
+ )) + )} + + {isLoading && ( +
+
+ + + +
+
+ )} +
+
+ + {/* Input Area */} +
+
+
+ setInput(e.target.value)} + className="w-full bg-gray-900 border border-white/10 rounded-full px-4 py-3 pr-12 focus:outline-none focus:border-pink-500 transition-colors" + /> + {!input && ( +
+ + + {PLACEHOLDERS[placeholderIndex]} + + +
+ )} +
+ +
+
+ + {/* Details Modal */} + + {selectedContent && ( + setSelectedContent(null)} + /> + )} + +
+ ); +} diff --git a/apps/CineMatch/src/app/page.tsx b/apps/CineMatch/src/app/page.tsx index b0bf82c1..ebda5097 100644 --- a/apps/CineMatch/src/app/page.tsx +++ b/apps/CineMatch/src/app/page.tsx @@ -11,7 +11,7 @@ import { AnimatePresence } from 'framer-motion'; import { getSimilarMovies, getSimilarTVShows, getTrending, discoverMovies, discoverTVShows } from '@/lib/tmdb'; import Link from 'next/link'; -import { Info, RotateCcw, History } from 'lucide-react'; +import { Info, RotateCcw, History, MessageSquare } from 'lucide-react'; export default function Home() { const { @@ -327,7 +327,14 @@ export default function Home() {
{/* Controls */} -
+
+ + + + +
+ +
+

+ {content.title} +

+
+ {content.releaseDate ? new Date(content.releaseDate).getFullYear() : 'N/A'} +
+ + +
+ + ); +} diff --git a/apps/CineMatch/src/store/match-store.ts b/apps/CineMatch/src/store/match-store.ts index f947c545..d4a3dae4 100644 --- a/apps/CineMatch/src/store/match-store.ts +++ b/apps/CineMatch/src/store/match-store.ts @@ -14,6 +14,12 @@ export interface UserPreferences { isOnboarded: boolean; } +export interface ChatMessage { + role: 'user' | 'assistant'; + content: string; + recommendations?: (Movie | TVShow)[]; +} + interface MatchState { preferences: UserPreferences; likedContent: (Movie | TVShow)[]; @@ -25,16 +31,20 @@ interface MatchState { currentIndex: number; page: number; incrementPage: () => void; + chatHistory: ChatMessage[]; // Actions setPreferences: (prefs: Partial) => void; completeOnboarding: () => void; likeContent: (content: Movie | TVShow) => void; + unlikeContent: (contentId: number) => void; dislikeContent: (contentId: number) => void; setRecommendations: (content: (Movie | TVShow)[]) => void; appendRecommendations: (content: (Movie | TVShow)[]) => void; nextCard: () => void; reset: () => void; + addChatMessage: (message: ChatMessage) => void; + clearChatHistory: () => void; } export const useMatchStore = create()( @@ -51,6 +61,7 @@ export const useMatchStore = create()( recommendations: [], currentIndex: 0, page: 1, + chatHistory: [], setPreferences: (prefs) => set((state) => ({ @@ -85,6 +96,12 @@ export const useMatchStore = create()( currentIndex: state.currentIndex + 1, })), + unlikeContent: (contentId) => + set((state) => ({ + likedContent: state.likedContent.filter((c) => c.id !== contentId), + totalLikes: state.totalLikes - 1, + })), + setRecommendations: (content) => set({ recommendations: content, currentIndex: 0, page: 1 }), @@ -114,7 +131,16 @@ export const useMatchStore = create()( recommendations: [], currentIndex: 0, page: 1, + chatHistory: [], }), + + addChatMessage: (message) => + set((state) => ({ + chatHistory: [...state.chatHistory, message], + })), + + clearChatHistory: () => + set({ chatHistory: [] }), }), { name: 'movie-match-storage', From 3e9e56a14232f58b69d56da71337b202bb4e8028 Mon Sep 17 00:00:00 2001 From: Emine A-Y Date: Fri, 12 Dec 2025 17:33:57 +0100 Subject: [PATCH 3/3] Create .env file with configuration settings Add environment variables for TMDB, AI configurations, GCP, Firestore, and feature flags. --- apps/CineMatch/.env | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 apps/CineMatch/.env diff --git a/apps/CineMatch/.env b/apps/CineMatch/.env new file mode 100644 index 00000000..918b9da0 --- /dev/null +++ b/apps/CineMatch/.env @@ -0,0 +1,21 @@ +# TMDB API Configuration +NEXT_PUBLIC_TMDB_ACCESS_TOKEN=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJkY2VmNjllZmU2YzBkZjcxOTkwNTZhNWM3OTU5OTkxMyIsIm5iZiI6MTc2Mzg0NDMzNy41NjQsInN1YiI6IjY5MjIyMGYxNzkxMjYxOTRlMWI3NDM1YSIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.1IxRDR-05bK8HDVSDpj6Lt_2-0Fjz9W6eLYylsV9N_Q + +# AI/LLM Configuration (for natural language processing) +OPENAI_API_KEY= +GOOGLE_AI_API_KEY=AIzaSyBwkmqOt_Wr-9nh43RFKEC3_r-rB96uBlE +GOOGLE_GENERATIVE_AI_API_KEY=AIzaSyBwkmqOt_Wr-9nh43RFKEC3_r-rB96uBlE +# RuVector Configuration (embedded vector database) +# Storage path for persistent vector database (defaults to ./data/media-vectors.db) +RUVECTOR_STORAGE_PATH=./data/media-vectors.db + +# GCP Configuration +GCP_PROJECT_ID= +GCP_REGION=us- + +# Database (Firestore) +FIRESTORE_PROJECT_ID= + +# Feature Flags +ENABLE_PREFERENCE_LEARNING=true +ENABLE_ARW_DISCOVERY=true